Skip to content

Commit

Permalink
Merge pull request #5 from PagerDuty/feat/add-support-for-scoped-oauth
Browse files Browse the repository at this point in the history
feat(oauth): adds type to allow oauth support
  • Loading branch information
t1agob authored Feb 12, 2024
2 parents 7b786d7 + b6b2173 commit 286f21d
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 @@ -168,3 +168,11 @@ export class HttpError extends Error {

status: number;
}

/** @public */
export type PagerDutyOAuthConfig = {
clientId: string;
clientSecret: string;
region?: string;
subDomain: string;
}

0 comments on commit 286f21d

Please sign in to comment.