@datocms/cma-client
Version:
JS client for DatoCMS REST Content Management API
38 lines (34 loc) • 1.05 kB
text/typescript
import * as Utils from '@datocms/rest-client-utils';
import BaseResource from '../../BaseResource';
import type * as ApiTypes from '../ApiTypes';
import type * as RawApiTypes from '../RawApiTypes';
export default class PublicInfo extends BaseResource {
static readonly TYPE = 'public_info' as const;
/**
* Retrieve public site info
*
* Read more: https://www.datocms.com/docs/content-management-api/resources/public-info/self
*
* @throws {ApiError}
* @throws {TimeoutError}
*/
find() {
return this.rawFind().then((body) =>
Utils.deserializeResponseBody<ApiTypes.PublicInfoSelfTargetSchema>(body),
);
}
/**
* Retrieve public site info
*
* Read more: https://www.datocms.com/docs/content-management-api/resources/public-info/self
*
* @throws {ApiError}
* @throws {TimeoutError}
*/
rawFind(): Promise<RawApiTypes.PublicInfoSelfTargetSchema> {
return this.client.request<RawApiTypes.PublicInfoSelfTargetSchema>({
method: 'GET',
url: '/public-info',
});
}
}