Skip to content

Commit

Permalink
Merge pull request #27 from PagerDuty/next
Browse files Browse the repository at this point in the history
release: 0.2.1
  • Loading branch information
t1agob committed Jul 24, 2024
2 parents c0e771d + f422c30 commit 63bc46d
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -290,3 +290,33 @@ export type PagerDutyEntityMappingsResponse = {
export type PagerDutyEntityMappingResponse = {
mapping: PagerDutyEntityMapping;
};

/** @public */
export type PagerDutyServiceDependencyReference = {
id: string;
type: string;
}

/** @public */
export type PagerDutyServiceDependency = {
id?: string,
type?: string,
supporting_service: PagerDutyServiceDependencyReference,
dependent_service: PagerDutyServiceDependencyReference,
}

/** @public */
export type PagerDutyServiceDependencyResponse = {
relationships: PagerDutyServiceDependency[];
}

/** @public */
export type PagerDutySetting = {
id: string;
value: "backstage" | "pagerduty" | "both" | "disabled";
}

/** @public */
export type PagerDutySettings = {
settings: PagerDutySetting[];
}

0 comments on commit 63bc46d

Please sign in to comment.