Skip to content

Commit

Permalink
Merge pull request #15 from PagerDuty/feat/add-support-for-service-li…
Browse files Browse the repository at this point in the history
…sting

feat: add support for service listing
  • Loading branch information
t1agob committed May 23, 2024
2 parents 21921eb + 0b0a50a commit 5e77a19
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 5e77a19

Please sign in to comment.