17 lines
1.1 KiB
TypeScript
17 lines
1.1 KiB
TypeScript
|
import { BaseAuthRequest } from "./BaseAuthRequest";
|
||
|
import { AuthenticationScheme } from "../utils/Constants";
|
||
|
/**
|
||
|
* CommonRefreshTokenRequest
|
||
|
* - scopes - Array of scopes the application is requesting access to.
|
||
|
* - claims - A stringified claims request which will be added to all /authorize and /token calls
|
||
|
* - authority - URL of the authority, the security token service (STS) from which MSAL will acquire tokens.
|
||
|
* - correlationId - Unique GUID set per request to trace a request end-to-end for telemetry purposes.
|
||
|
* - refreshToken - A refresh token returned from a previous request to the Identity provider.
|
||
|
* - resourceRequestMethod - HTTP Request type used to request data from the resource (i.e. "GET", "POST", etc.). Used for proof-of-possession flows.
|
||
|
* - resourceRequestUri - URI that token will be used for. Used for proof-of-possession flows.
|
||
|
*/
|
||
|
export declare type CommonRefreshTokenRequest = BaseAuthRequest & {
|
||
|
refreshToken: string;
|
||
|
authenticationScheme: AuthenticationScheme;
|
||
|
};
|
||
|
//# sourceMappingURL=CommonRefreshTokenRequest.d.ts.map
|