@datocms/cma-client
Version:
JS client for DatoCMS REST Content Management API
49 lines (45 loc) • 1.45 kB
text/typescript
import * as Utils from '@datocms/rest-client-utils';
import BaseResource from '../../BaseResource';
import type * as SchemaTypes from '../SchemaTypes';
import type * as SimpleSchemaTypes from '../SimpleSchemaTypes';
export default class AuditLogEvent extends BaseResource {
static readonly TYPE = 'audit_log_event' as const;
/**
* List Audit Log events
*
* Read more: https://www.datocms.com/docs/content-management-api/resources/audit-log_event/query
*
* @throws {ApiError}
* @throws {TimeoutError}
*/
query(body: SimpleSchemaTypes.AuditLogEventQuerySchema) {
return this.rawQuery(
Utils.serializeRequestBody<SchemaTypes.AuditLogEventQuerySchema>(body, {
type: 'audit_log_query',
attributes: ['filter', 'next_token', 'detailed_log'],
relationships: [],
}),
).then((body) =>
Utils.deserializeResponseBody<SimpleSchemaTypes.AuditLogEventQueryTargetSchema>(
body,
),
);
}
/**
* List Audit Log events
*
* Read more: https://www.datocms.com/docs/content-management-api/resources/audit-log_event/query
*
* @throws {ApiError}
* @throws {TimeoutError}
*/
rawQuery(
body: SchemaTypes.AuditLogEventQuerySchema,
): Promise<SchemaTypes.AuditLogEventQueryTargetSchema> {
return this.client.request<SchemaTypes.AuditLogEventQueryTargetSchema>({
method: 'POST',
url: '/audit-log-events/query',
body,
});
}
}