Skip to content

Commit

Permalink
Merge pull request #21 from PagerDuty/next
Browse files Browse the repository at this point in the history
release: 0.1.5
  • Loading branch information
t1agob authored Jun 28, 2024
2 parents 7601e1d + d76f565 commit 2b89b86
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
Binary file modified .yarn/install-state.gz
Binary file not shown.
25 changes: 25 additions & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ export type PagerDutyTeam = {
summary?: string;
self?: string;
html_url?: string;
name: string;
}

/** @public */
Expand Down Expand Up @@ -252,3 +253,27 @@ export type PagerDutyOAuthConfig = {
region?: string;
subDomain: string;
}

/** @public */
export type PagerDutyEntityMapping = {
entityRef: string;
entityName?: string;
serviceId: string;
serviceName?: string;
integrationKey?: string;
serviceUrl?: string;
status?: "NotMapped" | "InSync" | "OutOfSync";
processedDate?: Date;
team?: string;
escalationPolicy?: string;
};

/** @public */
export type PagerDutyEntityMappingsResponse = {
mappings: PagerDutyEntityMapping[];
};

/** @public */
export type PagerDutyEntityMappingResponse = {
mapping: PagerDutyEntityMapping;
};
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -15276,8 +15276,8 @@ __metadata:
linkType: hard

"ws@npm:^8.11.0, ws@npm:^8.13.0":
version: 8.16.0
resolution: "ws@npm:8.16.0"
version: 8.17.1
resolution: "ws@npm:8.17.1"
peerDependencies:
bufferutil: ^4.0.1
utf-8-validate: ">=5.0.2"
Expand All @@ -15286,7 +15286,7 @@ __metadata:
optional: true
utf-8-validate:
optional: true
checksum: feb3eecd2bae82fa8a8beef800290ce437d8b8063bdc69712725f21aef77c49cb2ff45c6e5e7fce622248f9c7abaee506bae0a9064067ffd6935460c7357321b
checksum: 442badcce1f1178ec87a0b5372ae2e9771e07c4929a3180321901f226127f252441e8689d765aa5cfba5f50ac60dd830954afc5aeae81609aefa11d3ddf5cecf
languageName: node
linkType: hard

Expand Down

0 comments on commit 2b89b86

Please sign in to comment.