Estructura inicial del proyecto
This commit is contained in:
26
backend/node_modules/@azure/msal-common/src/request/NativeRequest.ts
generated
vendored
Normal file
26
backend/node_modules/@azure/msal-common/src/request/NativeRequest.ts
generated
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
/*
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License.
|
||||
*/
|
||||
|
||||
import { StringDict } from "../utils/MsalTypes.js";
|
||||
|
||||
export type NativeRequest = {
|
||||
clientId: string;
|
||||
authority: string;
|
||||
correlationId: string;
|
||||
redirectUri: string;
|
||||
scopes: Array<string>;
|
||||
claims?: string;
|
||||
authenticationScheme?: string;
|
||||
resourceRequestMethod?: string;
|
||||
resourceRequestUri?: string;
|
||||
shrNonce?: string;
|
||||
accountId?: string;
|
||||
forceRefresh?: boolean;
|
||||
resource?: string;
|
||||
extraParameters?: StringDict;
|
||||
extraScopesToConsent?: Array<string>;
|
||||
loginHint?: string;
|
||||
prompt?: string;
|
||||
};
|
||||
Reference in New Issue
Block a user