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

13 lines
852 B
TypeScript
Raw Normal View History

2021-07-15 20:10:20 +00:00
import { BaseAuthRequest } from "./BaseAuthRequest";
/**
* - scopes - Array of scopes the application is requesting access to.
* - 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.
* - oboAssertion - The access token that was sent to the middle-tier API. This token must have an audience of the app making this OBO request.
* - skipCache - Skip token cache lookup and force request to authority to get a a new token. Defaults to false.
*/
export declare type CommonOnBehalfOfRequest = BaseAuthRequest & {
oboAssertion: string;
skipCache?: boolean;
};
//# sourceMappingURL=CommonOnBehalfOfRequest.d.ts.map