diff --git a/src/types.ts b/src/types.ts index b006fc4..0193626 100644 --- a/src/types.ts +++ b/src/types.ts @@ -188,6 +188,14 @@ export type PagerDutyServicesResponse = { services: PagerDutyService[]; }; +/** @public */ +export type PagerDutyServicesAPIResponse = PagerDutyServicesResponse & { + offset: number; + limit: number; + total: number | null; + more: boolean; +}; + /** @public */ export type PagerDutyServiceResponse = { service: PagerDutyService;