Skip to content

Commit

Permalink
add optional refresh_token to SigninResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
pmcb55 committed Oct 20, 2020
1 parent 5469105 commit 0a0e715
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,9 @@ export interface SigninResponse {
new (url: string, delimiter?: string): SigninResponse;

access_token: string;
/** Refresh token returned from the OIDC provider (if requested, via the
* 'offline_access' scope) */
refresh_token?: string;
code: string;
error: string;
error_description: string;
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0a0e715

Please sign in to comment.