Skip to content

Commit

Permalink
Merge pull request #27 from karimStekelenburg/fix/access-token-respon…
Browse files Browse the repository at this point in the history
…se-type

fix: add scope to AccessTokenResponse
  • Loading branch information
nklomp authored Jan 25, 2023
2 parents 2c5c3a9 + e6a1ccd commit 8b16518
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/types/Authorization.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export interface OpenIDResponse<T> {

export interface AccessTokenResponse {
access_token: string;
scope?: string;
token_type?: string;
expires_in?: number; // in seconds
c_nonce?: string;
Expand Down

0 comments on commit 8b16518

Please sign in to comment.