@azure/msal-common
Advanced tools
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
| /* | ||
| * Copyright (c) Microsoft Corporation. All rights reserved. | ||
| * Licensed under the MIT License. | ||
| */ | ||
| import { ICrypto, JsonWebTokenAlgorithms } from "./ICrypto.js"; | ||
| import * as TimeUtils from "../utils/TimeUtils.js"; | ||
| import { | ||
| createClientConfigurationError, | ||
| ClientConfigurationErrorCodes, | ||
| } from "../error/ClientConfigurationError.js"; | ||
| /** | ||
| * RFC 9449 DPoP proof JWT payload claims. | ||
| * Not exported from any public package entry point. | ||
| * @internal | ||
| */ | ||
| export type DpopProofClaims = { | ||
| jti: string; | ||
| htm: string; | ||
| htu: string; | ||
| iat: number; | ||
| nonce?: string; | ||
| ath?: string; | ||
| }; | ||
| /** | ||
| * Parameters for building a token-endpoint DPoP proof. | ||
| * @internal | ||
| */ | ||
| export type DpopTokenProofParams = { | ||
| tokenEndpoint: string; | ||
| nonce?: string; | ||
| }; | ||
| /** | ||
| * Parameters for building a resource-endpoint DPoP proof. | ||
| * @internal | ||
| */ | ||
| export type DpopResourceProofParams = { | ||
| resourceUrl: string; | ||
| htm: string; | ||
| ath: string; | ||
| nonce?: string; | ||
| }; | ||
| /** | ||
| * Public JWK embedded in the DPoP proof header. | ||
| * @internal | ||
| */ | ||
| export type DpopPublicJwk = Record<string, unknown>; | ||
| /** | ||
| * RFC 9449 DPoP proof JWT header. | ||
| * @internal | ||
| */ | ||
| export type DpopProofHeader = { | ||
| typ: typeof DPOP_JWT_HEADER_TYPE; | ||
| alg: string; | ||
| jwk: DpopPublicJwk; | ||
| }; | ||
| /** | ||
| * Signs the ASCII DPoP JWT signing input with the declared JOSE alg | ||
| * and returns a base64url-encoded signature. | ||
| * @internal | ||
| */ | ||
| export type DpopProofSigner = { | ||
| alg: string; | ||
| sign: (signingInput: string, correlationId: string) => Promise<string>; | ||
| }; | ||
| /** | ||
| * Parameters shared by token and resource DPoP proof generation. | ||
| * @internal | ||
| */ | ||
| export type DpopProofGenerationParams = { | ||
| publicJwk: DpopPublicJwk; | ||
| signer: DpopProofSigner; | ||
| }; | ||
| const DPOP_HTM_REGEX = /^[!#$%&'*+\-.^_`|~0-9A-Za-z]+$/; | ||
| export const DPOP_JWT_HEADER_TYPE = "dpop+jwt"; | ||
| export const DPOP_JWT_HEADER_ALGORITHM = JsonWebTokenAlgorithms.ES256; | ||
| function buildProofHeader(params: DpopProofGenerationParams): DpopProofHeader { | ||
| return { | ||
| typ: DPOP_JWT_HEADER_TYPE, | ||
| alg: params.signer.alg, | ||
| jwk: params.publicJwk, | ||
| }; | ||
| } | ||
| function normalizeHtm(htm: string, correlationId: string): string { | ||
| if (typeof htm !== "string" || !DPOP_HTM_REGEX.test(htm)) { | ||
| throw createClientConfigurationError( | ||
| ClientConfigurationErrorCodes.invalidDpopHtm, | ||
| correlationId | ||
| ); | ||
| } | ||
| return htm.toUpperCase(); | ||
| } | ||
| /** | ||
| * Normalizes a URL for use as the DPoP htu claim. | ||
| * Per RFC 9449 §4.2, htu is the target URI without query and fragment components. | ||
| * WHATWG URL serialization handles RFC 3986 syntax- and scheme-based normalization | ||
| * such as lowercasing scheme/host and eliding default ports. | ||
| */ | ||
| function normalizeHtu(url: string, correlationId: string): string { | ||
| let parsedUrl: URL; | ||
| try { | ||
| parsedUrl = new URL(url); | ||
| } catch { | ||
| throw createClientConfigurationError( | ||
| ClientConfigurationErrorCodes.urlParseError, | ||
| correlationId | ||
| ); | ||
| } | ||
| if ( | ||
| !/^https:\/\//i.test(url) || | ||
| parsedUrl.protocol !== "https:" || | ||
| parsedUrl.username || | ||
| parsedUrl.password | ||
| ) { | ||
| throw createClientConfigurationError( | ||
| ClientConfigurationErrorCodes.invalidDpopHtu, | ||
| correlationId | ||
| ); | ||
| } | ||
| parsedUrl.search = ""; | ||
| parsedUrl.hash = ""; | ||
| return parsedUrl.href; | ||
| } | ||
| /** | ||
| * Builds RFC 9449 DPoP proof JWT payloads for token-endpoint and | ||
| * resource-endpoint proof bindings. | ||
| * | ||
| * Not exported from any public package entry point. | ||
| * This helper is internal-only until DPoP is wired into acquisition flows | ||
| * in a subsequent work item. | ||
| * | ||
| * DPoP proofs do not contain SHR fields (at, ts, m, u, p, q). | ||
| * @internal | ||
| */ | ||
| export class DpopProofGenerator { | ||
| private cryptoUtils: ICrypto; | ||
| constructor(cryptoUtils: ICrypto) { | ||
| this.cryptoUtils = cryptoUtils; | ||
| } | ||
| /** | ||
| * Builds RFC 9449 claims for a token-endpoint DPoP proof. | ||
| * - htm is always "POST" because token endpoint requests use HTTP POST (RFC 9449 §5). | ||
| * - htu is the normalized token endpoint URI (query and fragment stripped). | ||
| * - jti is a fresh CSPRNG-backed unique identifier for every proof. | ||
| */ | ||
| buildTokenProofClaims( | ||
| params: DpopTokenProofParams, | ||
| correlationId: string = "" | ||
| ): DpopProofClaims { | ||
| const claims: DpopProofClaims = { | ||
| jti: this.cryptoUtils.createNewGuid(), | ||
| htm: "POST", | ||
| htu: normalizeHtu(params.tokenEndpoint, correlationId), | ||
| iat: TimeUtils.nowSeconds(), | ||
| }; | ||
| if (params.nonce !== undefined) { | ||
| claims.nonce = params.nonce; | ||
| } | ||
| return claims; | ||
| } | ||
| /** | ||
| * Builds and signs a compact DPoP proof JWT for a token-endpoint request. | ||
| */ | ||
| async generateTokenProof( | ||
| params: DpopTokenProofParams & DpopProofGenerationParams, | ||
| correlationId: string = "" | ||
| ): Promise<string> { | ||
| return this.generateProof( | ||
| this.buildTokenProofClaims(params, correlationId), | ||
| params, | ||
| correlationId | ||
| ); | ||
| } | ||
| /** | ||
| * Builds RFC 9449 claims for a resource-endpoint DPoP proof. | ||
| * - htm is uppercased per RFC 9449 §4.2. | ||
| * - htu is the normalized resource URI (query and fragment stripped). | ||
| * - ath is the base64url-encoded SHA-256 hash of the ASCII access token. | ||
| * - jti is a fresh CSPRNG-backed unique identifier for every proof. | ||
| */ | ||
| buildResourceProofClaims( | ||
| params: DpopResourceProofParams, | ||
| correlationId: string = "" | ||
| ): DpopProofClaims { | ||
| const claims: DpopProofClaims = { | ||
| jti: this.cryptoUtils.createNewGuid(), | ||
| htm: normalizeHtm(params.htm, correlationId), | ||
| htu: normalizeHtu(params.resourceUrl, correlationId), | ||
| ath: params.ath, | ||
| iat: TimeUtils.nowSeconds(), | ||
| }; | ||
| if (params.nonce !== undefined) { | ||
| claims.nonce = params.nonce; | ||
| } | ||
| return claims; | ||
| } | ||
| /** | ||
| * Builds and signs a compact DPoP proof JWT for a resource request. | ||
| */ | ||
| async generateResourceProof( | ||
| params: DpopResourceProofParams & DpopProofGenerationParams, | ||
| correlationId: string = "" | ||
| ): Promise<string> { | ||
| return this.generateProof( | ||
| this.buildResourceProofClaims(params, correlationId), | ||
| params, | ||
| correlationId | ||
| ); | ||
| } | ||
| private async generateProof( | ||
| claims: DpopProofClaims, | ||
| params: DpopProofGenerationParams, | ||
| correlationId: string | ||
| ): Promise<string> { | ||
| const encodedHeader = this.cryptoUtils.base64UrlEncode( | ||
| JSON.stringify(buildProofHeader(params)) | ||
| ); | ||
| const encodedClaims = this.cryptoUtils.base64UrlEncode( | ||
| JSON.stringify(claims) | ||
| ); | ||
| const signingInput = `${encodedHeader}.${encodedClaims}`; | ||
| const signature = await params.signer.sign(signingInput, correlationId); | ||
| return `${signingInput}.${signature}`; | ||
| } | ||
| } |
| import { ICrypto } from "./ICrypto.js"; | ||
| /** | ||
| * RFC 9449 DPoP proof JWT payload claims. | ||
| * Not exported from any public package entry point. | ||
| * @internal | ||
| */ | ||
| export type DpopProofClaims = { | ||
| jti: string; | ||
| htm: string; | ||
| htu: string; | ||
| iat: number; | ||
| nonce?: string; | ||
| ath?: string; | ||
| }; | ||
| /** | ||
| * Parameters for building a token-endpoint DPoP proof. | ||
| * @internal | ||
| */ | ||
| export type DpopTokenProofParams = { | ||
| tokenEndpoint: string; | ||
| nonce?: string; | ||
| }; | ||
| /** | ||
| * Parameters for building a resource-endpoint DPoP proof. | ||
| * @internal | ||
| */ | ||
| export type DpopResourceProofParams = { | ||
| resourceUrl: string; | ||
| htm: string; | ||
| ath: string; | ||
| nonce?: string; | ||
| }; | ||
| /** | ||
| * Public JWK embedded in the DPoP proof header. | ||
| * @internal | ||
| */ | ||
| export type DpopPublicJwk = Record<string, unknown>; | ||
| /** | ||
| * RFC 9449 DPoP proof JWT header. | ||
| * @internal | ||
| */ | ||
| export type DpopProofHeader = { | ||
| typ: typeof DPOP_JWT_HEADER_TYPE; | ||
| alg: string; | ||
| jwk: DpopPublicJwk; | ||
| }; | ||
| /** | ||
| * Signs the ASCII DPoP JWT signing input with the declared JOSE alg | ||
| * and returns a base64url-encoded signature. | ||
| * @internal | ||
| */ | ||
| export type DpopProofSigner = { | ||
| alg: string; | ||
| sign: (signingInput: string, correlationId: string) => Promise<string>; | ||
| }; | ||
| /** | ||
| * Parameters shared by token and resource DPoP proof generation. | ||
| * @internal | ||
| */ | ||
| export type DpopProofGenerationParams = { | ||
| publicJwk: DpopPublicJwk; | ||
| signer: DpopProofSigner; | ||
| }; | ||
| export declare const DPOP_JWT_HEADER_TYPE = "dpop+jwt"; | ||
| export declare const DPOP_JWT_HEADER_ALGORITHM: "ES256"; | ||
| /** | ||
| * Builds RFC 9449 DPoP proof JWT payloads for token-endpoint and | ||
| * resource-endpoint proof bindings. | ||
| * | ||
| * Not exported from any public package entry point. | ||
| * This helper is internal-only until DPoP is wired into acquisition flows | ||
| * in a subsequent work item. | ||
| * | ||
| * DPoP proofs do not contain SHR fields (at, ts, m, u, p, q). | ||
| * @internal | ||
| */ | ||
| export declare class DpopProofGenerator { | ||
| private cryptoUtils; | ||
| constructor(cryptoUtils: ICrypto); | ||
| /** | ||
| * Builds RFC 9449 claims for a token-endpoint DPoP proof. | ||
| * - htm is always "POST" because token endpoint requests use HTTP POST (RFC 9449 §5). | ||
| * - htu is the normalized token endpoint URI (query and fragment stripped). | ||
| * - jti is a fresh CSPRNG-backed unique identifier for every proof. | ||
| */ | ||
| buildTokenProofClaims(params: DpopTokenProofParams, correlationId?: string): DpopProofClaims; | ||
| /** | ||
| * Builds and signs a compact DPoP proof JWT for a token-endpoint request. | ||
| */ | ||
| generateTokenProof(params: DpopTokenProofParams & DpopProofGenerationParams, correlationId?: string): Promise<string>; | ||
| /** | ||
| * Builds RFC 9449 claims for a resource-endpoint DPoP proof. | ||
| * - htm is uppercased per RFC 9449 §4.2. | ||
| * - htu is the normalized resource URI (query and fragment stripped). | ||
| * - ath is the base64url-encoded SHA-256 hash of the ASCII access token. | ||
| * - jti is a fresh CSPRNG-backed unique identifier for every proof. | ||
| */ | ||
| buildResourceProofClaims(params: DpopResourceProofParams, correlationId?: string): DpopProofClaims; | ||
| /** | ||
| * Builds and signs a compact DPoP proof JWT for a resource request. | ||
| */ | ||
| generateResourceProof(params: DpopResourceProofParams & DpopProofGenerationParams, correlationId?: string): Promise<string>; | ||
| private generateProof; | ||
| } | ||
| //# sourceMappingURL=DpopProofGenerator.d.ts.map |
| {"version":3,"file":"DpopProofGenerator.d.ts","sourceRoot":"","sources":["../../src/crypto/DpopProofGenerator.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAA0B,MAAM,cAAc,CAAC;AAO/D;;;;GAIG;AACH,MAAM,MAAM,eAAe,GAAG;IAC1B,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,oBAAoB,GAAG;IAC/B,aAAa,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,uBAAuB,GAAG;IAClC,WAAW,EAAE,MAAM,CAAC;IACpB,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,aAAa,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;AAEpD;;;GAGG;AACH,MAAM,MAAM,eAAe,GAAG;IAC1B,GAAG,EAAE,OAAO,oBAAoB,CAAC;IACjC,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,aAAa,CAAC;CACtB,CAAC;AAEF;;;;GAIG;AACH,MAAM,MAAM,eAAe,GAAG;IAC1B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,CAAC,YAAY,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC;CAC1E,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,yBAAyB,GAAG;IACpC,SAAS,EAAE,aAAa,CAAC;IACzB,MAAM,EAAE,eAAe,CAAC;CAC3B,CAAC;AAGF,eAAO,MAAM,oBAAoB,aAAa,CAAC;AAC/C,eAAO,MAAM,yBAAyB,SAA+B,CAAC;AAuDtE;;;;;;;;;;GAUG;AACH,qBAAa,kBAAkB;IAC3B,OAAO,CAAC,WAAW,CAAU;gBAEjB,WAAW,EAAE,OAAO;IAIhC;;;;;OAKG;IACH,qBAAqB,CACjB,MAAM,EAAE,oBAAoB,EAC5B,aAAa,GAAE,MAAW,GAC3B,eAAe;IAalB;;OAEG;IACG,kBAAkB,CACpB,MAAM,EAAE,oBAAoB,GAAG,yBAAyB,EACxD,aAAa,GAAE,MAAW,GAC3B,OAAO,CAAC,MAAM,CAAC;IAQlB;;;;;;OAMG;IACH,wBAAwB,CACpB,MAAM,EAAE,uBAAuB,EAC/B,aAAa,GAAE,MAAW,GAC3B,eAAe;IAclB;;OAEG;IACG,qBAAqB,CACvB,MAAM,EAAE,uBAAuB,GAAG,yBAAyB,EAC3D,aAAa,GAAE,MAAW,GAC3B,OAAO,CAAC,MAAM,CAAC;YAQJ,aAAa;CAgB9B"} |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { isKmsi } from './AuthToken.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { createClientAuthError } from '../error/ClientAuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { createClientAuthError } from '../error/ClientAuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { AuthorityType } from './AuthorityType.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { Authority, formatAuthorityUri } from './Authority.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { UrlString } from '../url/UrlString.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { IMDS_VERSION, HTTP_SUCCESS, RegionDiscoverySources, HTTP_BAD_REQUEST, IMDS_ENDPOINT, IMDS_TIMEOUT } from '../utils/Constants.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { updateAccountTenantProfileData } from '../account/AccountInfo.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { CACHE_ACCOUNT_TYPE_GENERIC, CACHE_KEY_SEPARATOR, CACHE_ACCOUNT_TYPE_ADFS, CACHE_ACCOUNT_TYPE_MSSTS } from '../../utils/Constants.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { extractTokenClaims } from '../../account/AuthToken.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { addClientId, addRedirectUri, addScopes, addResource, addAuthorizationCode, addLibraryInfo, addApplicationTelemetry, addThrottling, addServerTelemetry, addCodeVerifier, addClientSecret, addClientAssertion, addClientAssertionType, addGrantType, addClientInfo, addPopToken, addSshJwk, addCcsUpn, addCcsOid, addBrokerParameters, addExtraParameters, instrumentBrokerParams, addClaims, addPostLogoutRedirectUri, addCorrelationId, addIdTokenHint, addState, addLogoutHint, addInstanceAware } from '../request/RequestParameterBuilder.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { buildClientConfiguration, isOidcProtocolMode } from '../config/ClientConfiguration.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { buildClientConfiguration } from '../config/ClientConfiguration.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { DEFAULT_CRYPTO_IMPLEMENTATION } from '../crypto/ICrypto.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -10,2 +10,6 @@ import { createClientAuthError } from '../error/ClientAuthError.mjs'; | ||
| */ | ||
| /** | ||
| * Default crypto implementation used when a platform-specific implementation has | ||
| * not been provided. | ||
| */ | ||
| const DEFAULT_CRYPTO_IMPLEMENTATION = { | ||
@@ -12,0 +16,0 @@ createNewGuid: () => { |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"ICrypto.mjs","sources":["../../src/crypto/ICrypto.ts"],"sourcesContent":[null],"names":["ClientAuthErrorCodes.methodNotImplemented"],"mappings":";;;;;AAAA;;;AAGG;AA6FI,MAAM,6BAA6B,GAAY;IAClD,aAAa,EAAE,MAAa;QACxB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;IACD,YAAY,EAAE,MAAa;QACvB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;IACD,YAAY,EAAE,MAAa;QACvB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;IACD,eAAe,EAAE,MAAa;QAC1B,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;IACD,SAAS,EAAE,MAAa;QACpB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;AACD,IAAA,MAAM,sBAAsB,GAAA;QACxB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;AACD,IAAA,MAAM,qBAAqB,GAAA;QACvB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;AACD,IAAA,MAAM,aAAa,GAAA;QACf,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;AACD,IAAA,MAAM,OAAO,GAAA;QACT,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;AACD,IAAA,MAAM,UAAU,GAAA;QACZ,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;;;;;"} | ||
| {"version":3,"file":"ICrypto.mjs","sources":["../../src/crypto/ICrypto.ts"],"sourcesContent":[null],"names":["ClientAuthErrorCodes.methodNotImplemented"],"mappings":";;;;;AAAA;;;AAGG;AAqGH;;;AAGG;AACI,MAAM,6BAA6B,GAAY;IAClD,aAAa,EAAE,MAAa;QACxB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;IACD,YAAY,EAAE,MAAa;QACvB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;IACD,YAAY,EAAE,MAAa;QACvB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;IACD,eAAe,EAAE,MAAa;QAC1B,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;IACD,SAAS,EAAE,MAAa;QACpB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;AACD,IAAA,MAAM,sBAAsB,GAAA;QACxB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;AACD,IAAA,MAAM,qBAAqB,GAAA;QACvB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;AACD,IAAA,MAAM,aAAa,GAAA;QACf,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;AACD,IAAA,MAAM,OAAO,GAAA;QACT,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;AACD,IAAA,MAAM,UAAU,GAAA;QACZ,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;;;;;"} |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { createJoseHeaderError } from '../error/JoseHeaderError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { nowSeconds } from '../utils/TimeUtils.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { cacheErrorUnknown, cacheQuotaExceeded } from './CacheErrorCodes.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { AuthError } from './AuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { AuthError } from './AuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -32,4 +32,6 @@ /* | ||
| const invalidResponseMode = "invalid_response_mode"; | ||
| const invalidDpopHtm = "invalid_dpop_htm"; | ||
| const invalidDpopHtu = "invalid_dpop_htu"; | ||
| export { authorityMismatch, authorityUriInsecure, cannotAllowPlatformBroker, cannotSetOIDCOptions, claimsRequestParsingError, emptyInputScopesError, invalidAuthenticationHeader, invalidAuthorityMetadata, invalidClaims, invalidCloudDiscoveryMetadata, invalidCodeChallengeMethod, invalidPlatformBrokerConfiguration, invalidRequestMethodForEAR, invalidResponseMode, issuerValidationFailed, logoutRequestEmpty, missingNonceAuthenticationHeader, missingSshJwk, missingSshKid, pkceParamsMissing, redirectUriEmpty, tokenRequestEmpty, untrustedAuthority, urlEmptyError, urlParseError }; | ||
| export { authorityMismatch, authorityUriInsecure, cannotAllowPlatformBroker, cannotSetOIDCOptions, claimsRequestParsingError, emptyInputScopesError, invalidAuthenticationHeader, invalidAuthorityMetadata, invalidClaims, invalidCloudDiscoveryMetadata, invalidCodeChallengeMethod, invalidDpopHtm, invalidDpopHtu, invalidPlatformBrokerConfiguration, invalidRequestMethodForEAR, invalidResponseMode, issuerValidationFailed, logoutRequestEmpty, missingNonceAuthenticationHeader, missingSshJwk, missingSshKid, pkceParamsMissing, redirectUriEmpty, tokenRequestEmpty, untrustedAuthority, urlEmptyError, urlParseError }; | ||
| //# sourceMappingURL=ClientConfigurationErrorCodes.mjs.map |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"ClientConfigurationErrorCodes.mjs","sources":["../../src/error/ClientConfigurationErrorCodes.ts"],"sourcesContent":[null],"names":[],"mappings":";;AAAA;;;AAGG;AAEI,MAAM,gBAAgB,GAAG,qBAAqB;AAC9C,MAAM,yBAAyB,GAAG,+BAA+B;AACjE,MAAM,oBAAoB,GAAG,yBAAyB;AACtD,MAAM,aAAa,GAAG,kBAAkB;AACxC,MAAM,aAAa,GAAG,kBAAkB;AACxC,MAAM,qBAAqB,GAAG,2BAA2B;AACzD,MAAM,aAAa,GAAG,iBAAiB;AACvC,MAAM,iBAAiB,GAAG,sBAAsB;AAChD,MAAM,kBAAkB,GAAG,uBAAuB;AAClD,MAAM,0BAA0B,GAAG,gCAAgC;AACnE,MAAM,iBAAiB,GAAG,sBAAsB;AAChD,MAAM,6BAA6B,GAAG,mCAAmC;AACzE,MAAM,wBAAwB,GAAG,6BAA6B;AAC9D,MAAM,kBAAkB,GAAG,sBAAsB;AACjD,MAAM,aAAa,GAAG,kBAAkB;AACxC,MAAM,aAAa,GAAG,kBAAkB;AACxC,MAAM,gCAAgC,GACzC,sCAAsC;AACnC,MAAM,2BAA2B,GAAG,gCAAgC;AACpE,MAAM,oBAAoB,GAAG,yBAAyB;AACtD,MAAM,yBAAyB,GAAG,+BAA+B;AACjE,MAAM,iBAAiB,GAAG,qBAAqB;AAC/C,MAAM,0BAA0B,GAAG,iCAAiC;AACpE,MAAM,kCAAkC,GAC3C,wCAAwC;AACrC,MAAM,sBAAsB,GAAG,2BAA2B;AAC1D,MAAM,mBAAmB,GAAG;;;;"} | ||
| {"version":3,"file":"ClientConfigurationErrorCodes.mjs","sources":["../../src/error/ClientConfigurationErrorCodes.ts"],"sourcesContent":[null],"names":[],"mappings":";;AAAA;;;AAGG;AAEI,MAAM,gBAAgB,GAAG,qBAAqB;AAC9C,MAAM,yBAAyB,GAAG,+BAA+B;AACjE,MAAM,oBAAoB,GAAG,yBAAyB;AACtD,MAAM,aAAa,GAAG,kBAAkB;AACxC,MAAM,aAAa,GAAG,kBAAkB;AACxC,MAAM,qBAAqB,GAAG,2BAA2B;AACzD,MAAM,aAAa,GAAG,iBAAiB;AACvC,MAAM,iBAAiB,GAAG,sBAAsB;AAChD,MAAM,kBAAkB,GAAG,uBAAuB;AAClD,MAAM,0BAA0B,GAAG,gCAAgC;AACnE,MAAM,iBAAiB,GAAG,sBAAsB;AAChD,MAAM,6BAA6B,GAAG,mCAAmC;AACzE,MAAM,wBAAwB,GAAG,6BAA6B;AAC9D,MAAM,kBAAkB,GAAG,sBAAsB;AACjD,MAAM,aAAa,GAAG,kBAAkB;AACxC,MAAM,aAAa,GAAG,kBAAkB;AACxC,MAAM,gCAAgC,GACzC,sCAAsC;AACnC,MAAM,2BAA2B,GAAG,gCAAgC;AACpE,MAAM,oBAAoB,GAAG,yBAAyB;AACtD,MAAM,yBAAyB,GAAG,+BAA+B;AACjE,MAAM,iBAAiB,GAAG,qBAAqB;AAC/C,MAAM,0BAA0B,GAAG,iCAAiC;AACpE,MAAM,kCAAkC,GAC3C,wCAAwC;AACrC,MAAM,sBAAsB,GAAG,2BAA2B;AAC1D,MAAM,mBAAmB,GAAG,wBAAwB;AACpD,MAAM,cAAc,GAAG,mBAAmB;AAC1C,MAAM,cAAc,GAAG;;;;"} |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { AuthError } from './AuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { AuthError } from './AuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { AuthError } from './AuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { AuthError } from './AuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { AuthError } from './AuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import * as AADServerParamKeys from './constants/AADServerParamKeys.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import * as AADServerParamKeys from './constants/AADServerParamKeys.mjs'; |
| { | ||
| "timestamp": "2026-07-07T22:17:04.308Z", | ||
| "packageVersion": "16.11.1", | ||
| "timestamp": "2026-07-15T22:37:10.109Z", | ||
| "packageVersion": "16.11.2", | ||
| "totalStrings": 98, | ||
@@ -5,0 +5,0 @@ "mappings": { |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { createClientAuthError } from '../error/ClientAuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { THROTTLING_PREFIX, HeaderNames, DEFAULT_THROTTLE_TIME_SECONDS, DEFAULT_MAX_THROTTLE_TIME_SECONDS } from '../utils/Constants.mjs'; |
@@ -1,8 +0,8 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
| /* eslint-disable header/header */ | ||
| const name = "@azure/msal-common"; | ||
| const version = "16.11.1"; | ||
| const version = "16.11.2"; | ||
| export { name, version }; | ||
| //# sourceMappingURL=packageMetadata.mjs.map |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { addClientId, addScopes, addResource, addRedirectUri, addCorrelationId, addResponseMode, addClientInfo, addCliData, addPrompt, addDomainHint, addSid, addLoginHint, addCcsOid, addCcsUpn, addNonce, addState, addBrokerParameters, addClaims, addInstanceAware } from '../request/RequestParameterBuilder.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { CcsCredentialType } from '../account/CcsCredential.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { createClientConfigurationError } from '../error/ClientConfigurationError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { createClientAuthError } from '../error/ClientAuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { OIDC_DEFAULT_SCOPES, HeaderNames, CLIENT_INFO, PasswordGrantConstants, AuthenticationScheme, ResponseMode, X_MS_LIB_CAPABILITY_VALUE, ClaimsRequestKeys } from '../utils/Constants.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { createClientConfigurationError } from '../error/ClientConfigurationError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { updateAccountTenantProfileData, buildTenantProfile } from '../account/AccountInfo.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { getAndFlushLogsFromCache } from '../../logger/Logger.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { PerformanceEventStatus } from './PerformanceEvent.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { CacheOutcome, SERVER_TELEM_CACHE_KEY, CACHE_KEY_SEPARATOR, SERVER_TELEM_SCHEMA_VERSION, SERVER_TELEM_CATEGORY_SEPARATOR, SERVER_TELEM_VALUE_SEPARATOR, SERVER_TELEM_MAX_CACHED_ERRORS, SERVER_TELEM_UNKNOWN_ERROR, SERVER_TELEM_MAX_LAST_HEADER_BYTES, SERVER_TELEM_OVERFLOW_TRUE, SERVER_TELEM_OVERFLOW_FALSE } from '../../utils/Constants.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { createClientConfigurationError } from '../error/ClientConfigurationError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { RESOURCE_DELIM } from './Constants.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { createClientAuthError } from '../error/ClientAuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { isKmsi } from './AuthToken.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { createClientAuthError } from '../error/ClientAuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { createClientAuthError } from '../error/ClientAuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { AuthorityType } from './AuthorityType.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { Authority, formatAuthorityUri } from './Authority.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { UrlString } from '../url/UrlString.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { IMDS_VERSION, HTTP_SUCCESS, RegionDiscoverySources, HTTP_BAD_REQUEST, IMDS_ENDPOINT, IMDS_TIMEOUT } from '../utils/Constants.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { updateAccountTenantProfileData } from '../account/AccountInfo.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { CACHE_ACCOUNT_TYPE_GENERIC, CACHE_KEY_SEPARATOR, CACHE_ACCOUNT_TYPE_ADFS, CACHE_ACCOUNT_TYPE_MSSTS } from '../../utils/Constants.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { extractTokenClaims } from '../../account/AuthToken.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { addClientId, addRedirectUri, addScopes, addResource, addAuthorizationCode, addLibraryInfo, addApplicationTelemetry, addThrottling, addServerTelemetry, addCodeVerifier, addClientSecret, addClientAssertion, addClientAssertionType, addGrantType, addClientInfo, addPopToken, addSshJwk, addCcsUpn, addCcsOid, addBrokerParameters, addExtraParameters, instrumentBrokerParams, addClaims, addPostLogoutRedirectUri, addCorrelationId, addIdTokenHint, addState, addLogoutHint, addInstanceAware } from '../request/RequestParameterBuilder.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { buildClientConfiguration, isOidcProtocolMode } from '../config/ClientConfiguration.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { buildClientConfiguration } from '../config/ClientConfiguration.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { DEFAULT_CRYPTO_IMPLEMENTATION } from '../crypto/ICrypto.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -10,2 +10,6 @@ import { createClientAuthError } from '../error/ClientAuthError.mjs'; | ||
| */ | ||
| /** | ||
| * Default crypto implementation used when a platform-specific implementation has | ||
| * not been provided. | ||
| */ | ||
| const DEFAULT_CRYPTO_IMPLEMENTATION = { | ||
@@ -12,0 +16,0 @@ createNewGuid: () => { |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"ICrypto.mjs","sources":["../../src/crypto/ICrypto.ts"],"sourcesContent":[null],"names":["ClientAuthErrorCodes.methodNotImplemented"],"mappings":";;;;;AAAA;;;AAGG;AA6FI,MAAM,6BAA6B,GAAY;IAClD,aAAa,EAAE,MAAa;QACxB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;IACD,YAAY,EAAE,MAAa;QACvB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;IACD,YAAY,EAAE,MAAa;QACvB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;IACD,eAAe,EAAE,MAAa;QAC1B,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;IACD,SAAS,EAAE,MAAa;QACpB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;AACD,IAAA,MAAM,sBAAsB,GAAA;QACxB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;AACD,IAAA,MAAM,qBAAqB,GAAA;QACvB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;AACD,IAAA,MAAM,aAAa,GAAA;QACf,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;AACD,IAAA,MAAM,OAAO,GAAA;QACT,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;AACD,IAAA,MAAM,UAAU,GAAA;QACZ,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;;;;;"} | ||
| {"version":3,"file":"ICrypto.mjs","sources":["../../src/crypto/ICrypto.ts"],"sourcesContent":[null],"names":["ClientAuthErrorCodes.methodNotImplemented"],"mappings":";;;;;AAAA;;;AAGG;AAqGH;;;AAGG;AACI,MAAM,6BAA6B,GAAY;IAClD,aAAa,EAAE,MAAa;QACxB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;IACD,YAAY,EAAE,MAAa;QACvB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;IACD,YAAY,EAAE,MAAa;QACvB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;IACD,eAAe,EAAE,MAAa;QAC1B,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;IACD,SAAS,EAAE,MAAa;QACpB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;AACD,IAAA,MAAM,sBAAsB,GAAA;QACxB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;AACD,IAAA,MAAM,qBAAqB,GAAA;QACvB,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;AACD,IAAA,MAAM,aAAa,GAAA;QACf,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;AACD,IAAA,MAAM,OAAO,GAAA;QACT,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;AACD,IAAA,MAAM,UAAU,GAAA;QACZ,MAAM,qBAAqB,CACvBA,oBAAyC,EACzC,EAAE,CACL,CAAC;IACN,CAAC;;;;;"} |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { createJoseHeaderError } from '../error/JoseHeaderError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { nowSeconds } from '../utils/TimeUtils.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { cacheErrorUnknown, cacheQuotaExceeded } from './CacheErrorCodes.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { AuthError } from './AuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { AuthError } from './AuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -32,4 +32,6 @@ /* | ||
| const invalidResponseMode = "invalid_response_mode"; | ||
| const invalidDpopHtm = "invalid_dpop_htm"; | ||
| const invalidDpopHtu = "invalid_dpop_htu"; | ||
| export { authorityMismatch, authorityUriInsecure, cannotAllowPlatformBroker, cannotSetOIDCOptions, claimsRequestParsingError, emptyInputScopesError, invalidAuthenticationHeader, invalidAuthorityMetadata, invalidClaims, invalidCloudDiscoveryMetadata, invalidCodeChallengeMethod, invalidPlatformBrokerConfiguration, invalidRequestMethodForEAR, invalidResponseMode, issuerValidationFailed, logoutRequestEmpty, missingNonceAuthenticationHeader, missingSshJwk, missingSshKid, pkceParamsMissing, redirectUriEmpty, tokenRequestEmpty, untrustedAuthority, urlEmptyError, urlParseError }; | ||
| export { authorityMismatch, authorityUriInsecure, cannotAllowPlatformBroker, cannotSetOIDCOptions, claimsRequestParsingError, emptyInputScopesError, invalidAuthenticationHeader, invalidAuthorityMetadata, invalidClaims, invalidCloudDiscoveryMetadata, invalidCodeChallengeMethod, invalidDpopHtm, invalidDpopHtu, invalidPlatformBrokerConfiguration, invalidRequestMethodForEAR, invalidResponseMode, issuerValidationFailed, logoutRequestEmpty, missingNonceAuthenticationHeader, missingSshJwk, missingSshKid, pkceParamsMissing, redirectUriEmpty, tokenRequestEmpty, untrustedAuthority, urlEmptyError, urlParseError }; | ||
| //# sourceMappingURL=ClientConfigurationErrorCodes.mjs.map |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"ClientConfigurationErrorCodes.mjs","sources":["../../src/error/ClientConfigurationErrorCodes.ts"],"sourcesContent":[null],"names":[],"mappings":";;AAAA;;;AAGG;AAEI,MAAM,gBAAgB,GAAG,qBAAqB;AAC9C,MAAM,yBAAyB,GAAG,+BAA+B;AACjE,MAAM,oBAAoB,GAAG,yBAAyB;AACtD,MAAM,aAAa,GAAG,kBAAkB;AACxC,MAAM,aAAa,GAAG,kBAAkB;AACxC,MAAM,qBAAqB,GAAG,2BAA2B;AACzD,MAAM,aAAa,GAAG,iBAAiB;AACvC,MAAM,iBAAiB,GAAG,sBAAsB;AAChD,MAAM,kBAAkB,GAAG,uBAAuB;AAClD,MAAM,0BAA0B,GAAG,gCAAgC;AACnE,MAAM,iBAAiB,GAAG,sBAAsB;AAChD,MAAM,6BAA6B,GAAG,mCAAmC;AACzE,MAAM,wBAAwB,GAAG,6BAA6B;AAC9D,MAAM,kBAAkB,GAAG,sBAAsB;AACjD,MAAM,aAAa,GAAG,kBAAkB;AACxC,MAAM,aAAa,GAAG,kBAAkB;AACxC,MAAM,gCAAgC,GACzC,sCAAsC;AACnC,MAAM,2BAA2B,GAAG,gCAAgC;AACpE,MAAM,oBAAoB,GAAG,yBAAyB;AACtD,MAAM,yBAAyB,GAAG,+BAA+B;AACjE,MAAM,iBAAiB,GAAG,qBAAqB;AAC/C,MAAM,0BAA0B,GAAG,iCAAiC;AACpE,MAAM,kCAAkC,GAC3C,wCAAwC;AACrC,MAAM,sBAAsB,GAAG,2BAA2B;AAC1D,MAAM,mBAAmB,GAAG;;;;"} | ||
| {"version":3,"file":"ClientConfigurationErrorCodes.mjs","sources":["../../src/error/ClientConfigurationErrorCodes.ts"],"sourcesContent":[null],"names":[],"mappings":";;AAAA;;;AAGG;AAEI,MAAM,gBAAgB,GAAG,qBAAqB;AAC9C,MAAM,yBAAyB,GAAG,+BAA+B;AACjE,MAAM,oBAAoB,GAAG,yBAAyB;AACtD,MAAM,aAAa,GAAG,kBAAkB;AACxC,MAAM,aAAa,GAAG,kBAAkB;AACxC,MAAM,qBAAqB,GAAG,2BAA2B;AACzD,MAAM,aAAa,GAAG,iBAAiB;AACvC,MAAM,iBAAiB,GAAG,sBAAsB;AAChD,MAAM,kBAAkB,GAAG,uBAAuB;AAClD,MAAM,0BAA0B,GAAG,gCAAgC;AACnE,MAAM,iBAAiB,GAAG,sBAAsB;AAChD,MAAM,6BAA6B,GAAG,mCAAmC;AACzE,MAAM,wBAAwB,GAAG,6BAA6B;AAC9D,MAAM,kBAAkB,GAAG,sBAAsB;AACjD,MAAM,aAAa,GAAG,kBAAkB;AACxC,MAAM,aAAa,GAAG,kBAAkB;AACxC,MAAM,gCAAgC,GACzC,sCAAsC;AACnC,MAAM,2BAA2B,GAAG,gCAAgC;AACpE,MAAM,oBAAoB,GAAG,yBAAyB;AACtD,MAAM,yBAAyB,GAAG,+BAA+B;AACjE,MAAM,iBAAiB,GAAG,qBAAqB;AAC/C,MAAM,0BAA0B,GAAG,iCAAiC;AACpE,MAAM,kCAAkC,GAC3C,wCAAwC;AACrC,MAAM,sBAAsB,GAAG,2BAA2B;AAC1D,MAAM,mBAAmB,GAAG,wBAAwB;AACpD,MAAM,cAAc,GAAG,mBAAmB;AAC1C,MAAM,cAAc,GAAG;;;;"} |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { AuthError } from './AuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { AuthError } from './AuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { AuthError } from './AuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { AuthError } from './AuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { AuthError } from './AuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import * as AADServerParamKeys from './constants/AADServerParamKeys.mjs'; |
+1
-1
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import * as AADServerParamKeys from './constants/AADServerParamKeys.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { createClientAuthError } from '../error/ClientAuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { THROTTLING_PREFIX, HeaderNames, DEFAULT_THROTTLE_TIME_SECONDS, DEFAULT_MAX_THROTTLE_TIME_SECONDS } from '../utils/Constants.mjs'; |
@@ -1,8 +0,8 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
| /* eslint-disable header/header */ | ||
| const name = "@azure/msal-common"; | ||
| const version = "16.11.1"; | ||
| const version = "16.11.2"; | ||
| export { name, version }; | ||
| //# sourceMappingURL=packageMetadata.mjs.map |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { addClientId, addScopes, addResource, addRedirectUri, addCorrelationId, addResponseMode, addClientInfo, addCliData, addPrompt, addDomainHint, addSid, addLoginHint, addCcsOid, addCcsUpn, addNonce, addState, addBrokerParameters, addClaims, addInstanceAware } from '../request/RequestParameterBuilder.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { CcsCredentialType } from '../account/CcsCredential.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { createClientConfigurationError } from '../error/ClientConfigurationError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { createClientAuthError } from '../error/ClientAuthError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { OIDC_DEFAULT_SCOPES, HeaderNames, CLIENT_INFO, PasswordGrantConstants, AuthenticationScheme, ResponseMode, X_MS_LIB_CAPABILITY_VALUE, ClaimsRequestKeys } from '../utils/Constants.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { createClientConfigurationError } from '../error/ClientConfigurationError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { updateAccountTenantProfileData, buildTenantProfile } from '../account/AccountInfo.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { getAndFlushLogsFromCache } from '../../logger/Logger.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { PerformanceEventStatus } from './PerformanceEvent.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { CacheOutcome, SERVER_TELEM_CACHE_KEY, CACHE_KEY_SEPARATOR, SERVER_TELEM_SCHEMA_VERSION, SERVER_TELEM_CATEGORY_SEPARATOR, SERVER_TELEM_VALUE_SEPARATOR, SERVER_TELEM_MAX_CACHED_ERRORS, SERVER_TELEM_UNKNOWN_ERROR, SERVER_TELEM_MAX_LAST_HEADER_BYTES, SERVER_TELEM_OVERFLOW_TRUE, SERVER_TELEM_OVERFLOW_FALSE } from '../../utils/Constants.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { createClientConfigurationError } from '../error/ClientConfigurationError.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { RESOURCE_DELIM } from './Constants.mjs'; |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ /* |
@@ -1,2 +0,2 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
@@ -3,0 +3,0 @@ import { createClientAuthError } from '../error/ClientAuthError.mjs'; |
@@ -1,6 +0,6 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
| 'use strict'; | ||
| var indexNode = require('./index-node-Byp4nlZZ.js'); | ||
| var indexNode = require('./index-node-CqVflMt1.js'); | ||
@@ -7,0 +7,0 @@ /* |
@@ -1,6 +0,6 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
| 'use strict'; | ||
| var indexNode = require('./index-node-Byp4nlZZ.js'); | ||
| var indexNode = require('./index-node-CqVflMt1.js'); | ||
@@ -7,0 +7,0 @@ |
+2
-2
@@ -1,6 +0,6 @@ | ||
| /*! @azure/msal-common v16.11.1 2026-07-07 */ | ||
| /*! @azure/msal-common v16.11.2 2026-07-15 */ | ||
| 'use strict'; | ||
| 'use strict'; | ||
| var indexNode = require('./index-node-Byp4nlZZ.js'); | ||
| var indexNode = require('./index-node-CqVflMt1.js'); | ||
| var indexBrowser = require('./index-browser.cjs'); | ||
@@ -7,0 +7,0 @@ |
+1
-1
@@ -13,3 +13,3 @@ { | ||
| }, | ||
| "version": "16.11.1", | ||
| "version": "16.11.2", | ||
| "description": "Microsoft Authentication Library for js", | ||
@@ -16,0 +16,0 @@ "keywords": [ |
@@ -14,5 +14,3 @@ /* | ||
| /** | ||
| * The PkceCodes type describes the structure | ||
| * of objects that contain PKCE code | ||
| * challenge and verifier pairs | ||
| * PKCE code verifier and challenge pair used by authorization code flows. | ||
| */ | ||
@@ -24,2 +22,6 @@ export type PkceCodes = { | ||
| /** | ||
| * Parameters used by crypto implementations to build signed HTTP request | ||
| * proof-of-possession tokens. | ||
| */ | ||
| export type SignedHttpRequestParameters = Pick< | ||
@@ -37,2 +39,8 @@ BaseAuthRequest, | ||
| /** | ||
| * Shared JOSE algorithm literals used by MSAL package internals. | ||
| */ | ||
| export const JsonWebTokenAlgorithms = { | ||
| ES256: "ES256", | ||
| } as const; | ||
| /** | ||
| * Interface for crypto functions used by library | ||
@@ -100,2 +108,6 @@ */ | ||
| /** | ||
| * Default crypto implementation used when a platform-specific implementation has | ||
| * not been provided. | ||
| */ | ||
| export const DEFAULT_CRYPTO_IMPLEMENTATION: ICrypto = { | ||
@@ -102,0 +114,0 @@ createNewGuid: (): string => { |
@@ -33,1 +33,3 @@ /* | ||
| export const invalidResponseMode = "invalid_response_mode"; | ||
| export const invalidDpopHtm = "invalid_dpop_htm"; | ||
| export const invalidDpopHtu = "invalid_dpop_htu"; |
| /* eslint-disable header/header */ | ||
| export const name = "@azure/msal-common"; | ||
| export const version = "16.11.1"; | ||
| export const version = "16.11.2"; |
| import type { BaseAuthRequest } from "../request/BaseAuthRequest.js"; | ||
| import type { ShrOptions, SignedHttpRequest } from "./SignedHttpRequest.js"; | ||
| /** | ||
| * The PkceCodes type describes the structure | ||
| * of objects that contain PKCE code | ||
| * challenge and verifier pairs | ||
| * PKCE code verifier and challenge pair used by authorization code flows. | ||
| */ | ||
@@ -12,2 +10,6 @@ export type PkceCodes = { | ||
| }; | ||
| /** | ||
| * Parameters used by crypto implementations to build signed HTTP request | ||
| * proof-of-possession tokens. | ||
| */ | ||
| export type SignedHttpRequestParameters = Pick<BaseAuthRequest, "resourceRequestMethod" | "resourceRequestUri" | "shrClaims" | "shrNonce" | "shrOptions"> & { | ||
@@ -17,2 +19,8 @@ correlationId: string; | ||
| /** | ||
| * Shared JOSE algorithm literals used by MSAL package internals. | ||
| */ | ||
| export declare const JsonWebTokenAlgorithms: { | ||
| readonly ES256: "ES256"; | ||
| }; | ||
| /** | ||
| * Interface for crypto functions used by library | ||
@@ -72,3 +80,7 @@ */ | ||
| } | ||
| /** | ||
| * Default crypto implementation used when a platform-specific implementation has | ||
| * not been provided. | ||
| */ | ||
| export declare const DEFAULT_CRYPTO_IMPLEMENTATION: ICrypto; | ||
| //# sourceMappingURL=ICrypto.d.ts.map |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"ICrypto.d.ts","sourceRoot":"","sources":["../../src/crypto/ICrypto.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,KAAK,EAAE,UAAU,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAE5E;;;;GAIG;AACH,MAAM,MAAM,SAAS,GAAG;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,MAAM,MAAM,2BAA2B,GAAG,IAAI,CAC1C,eAAe,EACb,uBAAuB,GACvB,oBAAoB,GACpB,WAAW,GACX,UAAU,GACV,YAAY,CACjB,GAAG;IACA,aAAa,EAAE,MAAM,CAAC;CACzB,CAAC;AAEF;;GAEG;AACH,MAAM,WAAW,OAAO;IACpB;;OAEG;IACH,aAAa,IAAI,MAAM,CAAC;IACxB;;;OAGG;IACH,YAAY,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IACpC;;;OAGG;IACH,YAAY,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IACpC;;OAEG;IACH,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IACvC;;;;OAIG;IACH,SAAS,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAC;IACpC;;;OAGG;IACH,sBAAsB,CAClB,OAAO,EAAE,2BAA2B,GACrC,OAAO,CAAC,MAAM,CAAC,CAAC;IACnB;;;;OAIG;IACH,qBAAqB,CAAC,GAAG,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACzE;;;OAGG;IACH,aAAa,CAAC,aAAa,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACvD;;;OAGG;IACH,OAAO,CACH,OAAO,EAAE,iBAAiB,EAC1B,GAAG,EAAE,MAAM,EACX,UAAU,CAAC,EAAE,UAAU,EACvB,aAAa,CAAC,EAAE,MAAM,GACvB,OAAO,CAAC,MAAM,CAAC,CAAC;IACnB;;;OAGG;IACH,UAAU,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;CAClD;AAED,eAAO,MAAM,6BAA6B,EAAE,OA6D3C,CAAC"} | ||
| {"version":3,"file":"ICrypto.d.ts","sourceRoot":"","sources":["../../src/crypto/ICrypto.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AACrE,OAAO,KAAK,EAAE,UAAU,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAE5E;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,2BAA2B,GAAG,IAAI,CAC1C,eAAe,EACb,uBAAuB,GACvB,oBAAoB,GACpB,WAAW,GACX,UAAU,GACV,YAAY,CACjB,GAAG;IACA,aAAa,EAAE,MAAM,CAAC;CACzB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,sBAAsB;;CAEzB,CAAC;AACX;;GAEG;AACH,MAAM,WAAW,OAAO;IACpB;;OAEG;IACH,aAAa,IAAI,MAAM,CAAC;IACxB;;;OAGG;IACH,YAAY,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IACpC;;;OAGG;IACH,YAAY,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IACpC;;OAEG;IACH,eAAe,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IACvC;;;;OAIG;IACH,SAAS,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAC;IACpC;;;OAGG;IACH,sBAAsB,CAClB,OAAO,EAAE,2BAA2B,GACrC,OAAO,CAAC,MAAM,CAAC,CAAC;IACnB;;;;OAIG;IACH,qBAAqB,CAAC,GAAG,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACzE;;;OAGG;IACH,aAAa,CAAC,aAAa,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IACvD;;;OAGG;IACH,OAAO,CACH,OAAO,EAAE,iBAAiB,EAC1B,GAAG,EAAE,MAAM,EACX,UAAU,CAAC,EAAE,UAAU,EACvB,aAAa,CAAC,EAAE,MAAM,GACvB,OAAO,CAAC,MAAM,CAAC,CAAC;IACnB;;;OAGG;IACH,UAAU,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;CAClD;AAED;;;GAGG;AACH,eAAO,MAAM,6BAA6B,EAAE,OA6D3C,CAAC"} |
@@ -26,2 +26,4 @@ export declare const redirectUriEmpty = "redirect_uri_empty"; | ||
| export declare const invalidResponseMode = "invalid_response_mode"; | ||
| export declare const invalidDpopHtm = "invalid_dpop_htm"; | ||
| export declare const invalidDpopHtu = "invalid_dpop_htu"; | ||
| //# sourceMappingURL=ClientConfigurationErrorCodes.d.ts.map |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"ClientConfigurationErrorCodes.d.ts","sourceRoot":"","sources":["../../src/error/ClientConfigurationErrorCodes.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,gBAAgB,uBAAuB,CAAC;AACrD,eAAO,MAAM,yBAAyB,iCAAiC,CAAC;AACxE,eAAO,MAAM,oBAAoB,2BAA2B,CAAC;AAC7D,eAAO,MAAM,aAAa,oBAAoB,CAAC;AAC/C,eAAO,MAAM,aAAa,oBAAoB,CAAC;AAC/C,eAAO,MAAM,qBAAqB,6BAA6B,CAAC;AAChE,eAAO,MAAM,aAAa,mBAAmB,CAAC;AAC9C,eAAO,MAAM,iBAAiB,wBAAwB,CAAC;AACvD,eAAO,MAAM,kBAAkB,yBAAyB,CAAC;AACzD,eAAO,MAAM,0BAA0B,kCAAkC,CAAC;AAC1E,eAAO,MAAM,iBAAiB,wBAAwB,CAAC;AACvD,eAAO,MAAM,6BAA6B,qCAAqC,CAAC;AAChF,eAAO,MAAM,wBAAwB,+BAA+B,CAAC;AACrE,eAAO,MAAM,kBAAkB,wBAAwB,CAAC;AACxD,eAAO,MAAM,aAAa,oBAAoB,CAAC;AAC/C,eAAO,MAAM,aAAa,oBAAoB,CAAC;AAC/C,eAAO,MAAM,gCAAgC,wCACJ,CAAC;AAC1C,eAAO,MAAM,2BAA2B,kCAAkC,CAAC;AAC3E,eAAO,MAAM,oBAAoB,2BAA2B,CAAC;AAC7D,eAAO,MAAM,yBAAyB,iCAAiC,CAAC;AACxE,eAAO,MAAM,iBAAiB,uBAAuB,CAAC;AACtD,eAAO,MAAM,0BAA0B,mCAAmC,CAAC;AAC3E,eAAO,MAAM,kCAAkC,0CACJ,CAAC;AAC5C,eAAO,MAAM,sBAAsB,6BAA6B,CAAC;AACjE,eAAO,MAAM,mBAAmB,0BAA0B,CAAC"} | ||
| {"version":3,"file":"ClientConfigurationErrorCodes.d.ts","sourceRoot":"","sources":["../../src/error/ClientConfigurationErrorCodes.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,gBAAgB,uBAAuB,CAAC;AACrD,eAAO,MAAM,yBAAyB,iCAAiC,CAAC;AACxE,eAAO,MAAM,oBAAoB,2BAA2B,CAAC;AAC7D,eAAO,MAAM,aAAa,oBAAoB,CAAC;AAC/C,eAAO,MAAM,aAAa,oBAAoB,CAAC;AAC/C,eAAO,MAAM,qBAAqB,6BAA6B,CAAC;AAChE,eAAO,MAAM,aAAa,mBAAmB,CAAC;AAC9C,eAAO,MAAM,iBAAiB,wBAAwB,CAAC;AACvD,eAAO,MAAM,kBAAkB,yBAAyB,CAAC;AACzD,eAAO,MAAM,0BAA0B,kCAAkC,CAAC;AAC1E,eAAO,MAAM,iBAAiB,wBAAwB,CAAC;AACvD,eAAO,MAAM,6BAA6B,qCAAqC,CAAC;AAChF,eAAO,MAAM,wBAAwB,+BAA+B,CAAC;AACrE,eAAO,MAAM,kBAAkB,wBAAwB,CAAC;AACxD,eAAO,MAAM,aAAa,oBAAoB,CAAC;AAC/C,eAAO,MAAM,aAAa,oBAAoB,CAAC;AAC/C,eAAO,MAAM,gCAAgC,wCACJ,CAAC;AAC1C,eAAO,MAAM,2BAA2B,kCAAkC,CAAC;AAC3E,eAAO,MAAM,oBAAoB,2BAA2B,CAAC;AAC7D,eAAO,MAAM,yBAAyB,iCAAiC,CAAC;AACxE,eAAO,MAAM,iBAAiB,uBAAuB,CAAC;AACtD,eAAO,MAAM,0BAA0B,mCAAmC,CAAC;AAC3E,eAAO,MAAM,kCAAkC,0CACJ,CAAC;AAC5C,eAAO,MAAM,sBAAsB,6BAA6B,CAAC;AACjE,eAAO,MAAM,mBAAmB,0BAA0B,CAAC;AAC3D,eAAO,MAAM,cAAc,qBAAqB,CAAC;AACjD,eAAO,MAAM,cAAc,qBAAqB,CAAC"} |
| export declare const name = "@azure/msal-common"; | ||
| export declare const version = "16.11.1"; | ||
| export declare const version = "16.11.2"; | ||
| //# sourceMappingURL=packageMetadata.d.ts.map |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
2793286
0.51%662
0.46%48397
0.78%