n4auth/node_modules/@azure/msal-common/dist/request/CommonSilentFlowRequest.d.ts

18 lines
1.3 KiB
TypeScript
Raw Normal View History

2021-07-15 20:10:20 +00:00
import { AccountInfo } from "../account/AccountInfo";
import { BaseAuthRequest } from "./BaseAuthRequest";
/**
* SilentFlow parameters passed by the user to retrieve credentials silently
* - 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. When included on a silent request, cache lookup will be skipped and token will be refreshed.
* - authority - Url of the authority which the application acquires tokens from.
* - correlationId - Unique GUID set per request to trace a request end-to-end for telemetry purposes.
* - account - Account entity to lookup the credentials.
* - forceRefresh - Forces silent requests to make network calls if true.
* - 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 CommonSilentFlowRequest = BaseAuthRequest & {
account: AccountInfo;
forceRefresh: boolean;
};
//# sourceMappingURL=CommonSilentFlowRequest.d.ts.map