Commit iniziale
This commit is contained in:
23
node_modules/@azure/msal-common/dist/request/CommonRefreshTokenRequest.d.ts
generated
vendored
Normal file
23
node_modules/@azure/msal-common/dist/request/CommonRefreshTokenRequest.d.ts
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
import { BaseAuthRequest } from "./BaseAuthRequest.js";
|
||||
import { CcsCredential } from "../account/CcsCredential.js";
|
||||
import { StringDict } from "../utils/MsalTypes.js";
|
||||
/**
|
||||
* 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.
|
||||
* - forceCache - Force MSAL to cache a refresh token flow response when there is no account in the cache. Used for migration scenarios.
|
||||
* - tokenQueryParameters - String to string map of custom query parameters added to the /token call
|
||||
*/
|
||||
export type CommonRefreshTokenRequest = BaseAuthRequest & {
|
||||
refreshToken: string;
|
||||
ccsCredential?: CcsCredential;
|
||||
forceCache?: boolean;
|
||||
tokenBodyParameters?: StringDict;
|
||||
redirectUri?: string;
|
||||
};
|
||||
//# sourceMappingURL=CommonRefreshTokenRequest.d.ts.map
|
||||
Reference in New Issue
Block a user