@datocms/cma-client
Version:
JS client for DatoCMS REST Content Management API
156 lines (145 loc) • 4.32 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 WebhookCall extends BaseResource {
static readonly TYPE = 'webhook_call' as const;
/**
* List all webhooks calls
*
* Read more: https://www.datocms.com/docs/content-management-api/resources/webhook-call/instances
*
* @throws {ApiError}
* @throws {TimeoutError}
*/
list(queryParams?: ApiTypes.WebhookCallInstancesHrefSchema) {
return this.rawList(queryParams).then((body) =>
Utils.deserializeResponseBody<ApiTypes.WebhookCallInstancesTargetSchema>(
body,
),
);
}
/**
* List all webhooks calls
*
* Read more: https://www.datocms.com/docs/content-management-api/resources/webhook-call/instances
*
* @throws {ApiError}
* @throws {TimeoutError}
*/
rawList(
queryParams?: RawApiTypes.WebhookCallInstancesHrefSchema,
): Promise<RawApiTypes.WebhookCallInstancesTargetSchema> {
return this.client.request<RawApiTypes.WebhookCallInstancesTargetSchema>({
method: 'GET',
url: '/webhook_calls',
queryParams,
});
}
/**
* Async iterator to auto-paginate over elements returned by list()
*
* Read more: https://www.datocms.com/docs/content-management-api/resources/webhook-call/instances
*
* @throws {ApiError}
* @throws {TimeoutError}
*/
async *listPagedIterator(
queryParams?: Utils.OmitFromKnownKeys<
ApiTypes.WebhookCallInstancesHrefSchema,
'page'
>,
iteratorOptions?: Utils.IteratorOptions,
) {
for await (const element of this.rawListPagedIterator(
queryParams,
iteratorOptions,
)) {
yield Utils.deserializeJsonEntity<
ApiTypes.WebhookCallInstancesTargetSchema[0]
>(element);
}
}
/**
* Async iterator to auto-paginate over elements returned by rawList()
*
* Read more: https://www.datocms.com/docs/content-management-api/resources/webhook-call/instances
*
* @throws {ApiError}
* @throws {TimeoutError}
*/
rawListPagedIterator(
queryParams?: Utils.OmitFromKnownKeys<
RawApiTypes.WebhookCallInstancesHrefSchema,
'page'
>,
iteratorOptions?: Utils.IteratorOptions,
) {
Utils.warnOnPageQueryParam(queryParams);
return Utils.rawPageIterator<
RawApiTypes.WebhookCallInstancesTargetSchema['data'][0]
>(
{
defaultLimit: 30,
maxLimit: 500,
},
(page: RawApiTypes.WebhookCallInstancesHrefSchema['page']) =>
this.rawList({ ...queryParams, page }),
iteratorOptions,
);
}
/**
* Retrieve a webhook call
*
* Read more: https://www.datocms.com/docs/content-management-api/resources/webhook-call/self
*
* @throws {ApiError}
* @throws {TimeoutError}
*/
find(webhookCallId: string | ApiTypes.WebhookCallData) {
return this.rawFind(Utils.toId(webhookCallId)).then((body) =>
Utils.deserializeResponseBody<ApiTypes.WebhookCallSelfTargetSchema>(body),
);
}
/**
* Retrieve a webhook call
*
* Read more: https://www.datocms.com/docs/content-management-api/resources/webhook-call/self
*
* @throws {ApiError}
* @throws {TimeoutError}
*/
rawFind(
webhookCallId: string,
): Promise<RawApiTypes.WebhookCallSelfTargetSchema> {
return this.client.request<RawApiTypes.WebhookCallSelfTargetSchema>({
method: 'GET',
url: `/webhook_calls/${webhookCallId}`,
});
}
/**
* Re-send the webhook call
*
* Read more: https://www.datocms.com/docs/content-management-api/resources/webhook-call/resend_webhook
*
* @throws {ApiError}
* @throws {TimeoutError}
*/
resendWebhook(webhookCallId: string | ApiTypes.WebhookCallData) {
return this.rawResendWebhook(Utils.toId(webhookCallId));
}
/**
* Re-send the webhook call
*
* Read more: https://www.datocms.com/docs/content-management-api/resources/webhook-call/resend_webhook
*
* @throws {ApiError}
* @throws {TimeoutError}
*/
rawResendWebhook(webhookCallId: string): Promise<void> {
return this.client.request<void>({
method: 'POST',
url: `/webhook_calls/${webhookCallId}/resend_webhook`,
});
}
}