Skip to content

Commit

Permalink
fix: authts#435 allow passing post_logout_redirect_uri to signoutRedi…
Browse files Browse the repository at this point in the history
…rect
  • Loading branch information
pamapa committed Mar 23, 2022
1 parent c9fcaa0 commit ad209f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/oidc-client-ts.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export class ErrorTimeout extends Error {
export type ExtraSigninRequestArgs = Pick<CreateSigninRequestArgs, "extraQueryParams" | "extraTokenParams" | "state">;

// @public (undocumented)
export type ExtraSignoutRequestArgs = Pick<CreateSignoutRequestArgs, "extraQueryParams" | "state" | "id_token_hint">;
export type ExtraSignoutRequestArgs = Pick<CreateSignoutRequestArgs, "extraQueryParams" | "state" | "id_token_hint" | "post_logout_redirect_uri">;

// Warning: (ae-forgotten-export) The symbol "Mandatory" needs to be exported by the entry point index.d.ts
//
Expand Down
2 changes: 1 addition & 1 deletion src/UserManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export type ExtraSigninRequestArgs = Pick<CreateSigninRequestArgs, "extraQueryPa
/**
* @public
*/
export type ExtraSignoutRequestArgs = Pick<CreateSignoutRequestArgs, "extraQueryParams" | "state" | "id_token_hint">;
export type ExtraSignoutRequestArgs = Pick<CreateSignoutRequestArgs, "extraQueryParams" | "state" | "id_token_hint" | "post_logout_redirect_uri">;

/**
* @public
Expand Down

0 comments on commit ad209f3

Please sign in to comment.