Socket
Socket
Sign inDemoInstall

@azure/msal-common

Package Overview
Dependencies
Maintainers
3
Versions
121
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@azure/msal-common - npm Package Compare versions

Comparing version 14.0.0-alpha.2 to 14.0.0-beta.0

2

dist/account/AuthToken.js

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { ClientAuthError } from '../error/ClientAuthError.js';

@@ -5,6 +5,7 @@ export type CcsCredential = {

};
export declare enum CcsCredentialType {
HOME_ACCOUNT_ID = "home_account_id",
UPN = "UPN"
}
export declare const CcsCredentialType: {
readonly HOME_ACCOUNT_ID: "home_account_id";
readonly UPN: "UPN";
};
export type CcsCredentialType = typeof CcsCredentialType[keyof typeof CcsCredentialType];
//# sourceMappingURL=CcsCredential.d.ts.map

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -7,9 +7,8 @@ /*

*/
var CcsCredentialType;
(function (CcsCredentialType) {
CcsCredentialType["HOME_ACCOUNT_ID"] = "home_account_id";
CcsCredentialType["UPN"] = "UPN";
})(CcsCredentialType || (CcsCredentialType = {}));
const CcsCredentialType = {
HOME_ACCOUNT_ID: "home_account_id",
UPN: "UPN",
};
export { CcsCredentialType };
//# sourceMappingURL=CcsCredential.js.map

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { ClientAuthError } from '../error/ClientAuthError.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { AuthorityType } from './AuthorityType.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { Authority } from './Authority.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ /*

@@ -11,10 +11,11 @@ import { ProtocolMode } from "./ProtocolMode";

};
export declare enum AzureCloudInstance {
None = 0,
AzurePublic = "https://login.microsoftonline.com",
AzurePpe = "https://login.windows-ppe.net",
AzureChina = "https://login.chinacloudapi.cn",
AzureGermany = "https://login.microsoftonline.de",
AzureUsGovernment = "https://login.microsoftonline.us"
}
export declare const AzureCloudInstance: {
readonly None: "none";
readonly AzurePublic: "https://login.microsoftonline.com";
readonly AzurePpe: "https://login.windows-ppe.net";
readonly AzureChina: "https://login.chinacloudapi.cn";
readonly AzureGermany: "https://login.microsoftonline.de";
readonly AzureUsGovernment: "https://login.microsoftonline.us";
};
export type AzureCloudInstance = typeof AzureCloudInstance[keyof typeof AzureCloudInstance];
//# sourceMappingURL=AuthorityOptions.d.ts.map

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -7,19 +7,18 @@ /*

*/
var AzureCloudInstance;
(function (AzureCloudInstance) {
const AzureCloudInstance = {
// AzureCloudInstance is not specified.
AzureCloudInstance[AzureCloudInstance["None"] = 0] = "None";
None: "none",
// Microsoft Azure public cloud
AzureCloudInstance["AzurePublic"] = "https://login.microsoftonline.com";
AzurePublic: "https://login.microsoftonline.com",
// Microsoft PPE
AzureCloudInstance["AzurePpe"] = "https://login.windows-ppe.net";
AzurePpe: "https://login.windows-ppe.net",
// Microsoft Chinese national cloud
AzureCloudInstance["AzureChina"] = "https://login.chinacloudapi.cn";
AzureChina: "https://login.chinacloudapi.cn",
// Microsoft German national cloud ("Black Forest")
AzureCloudInstance["AzureGermany"] = "https://login.microsoftonline.de";
AzureGermany: "https://login.microsoftonline.de",
// US Government cloud
AzureCloudInstance["AzureUsGovernment"] = "https://login.microsoftonline.us";
})(AzureCloudInstance || (AzureCloudInstance = {}));
AzureUsGovernment: "https://login.microsoftonline.us",
};
export { AzureCloudInstance };
//# sourceMappingURL=AuthorityOptions.js.map
/**
* Authority types supported by MSAL.
*/
export declare enum AuthorityType {
Default = 0,
Adfs = 1,
Dsts = 2,
Ciam = 3
}
export declare const AuthorityType: {
readonly Default: 0;
readonly Adfs: 1;
readonly Dsts: 2;
readonly Ciam: 3;
};
export type AuthorityType = typeof AuthorityType[keyof typeof AuthorityType];
//# sourceMappingURL=AuthorityType.d.ts.map

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -10,11 +10,10 @@ /*

*/
var AuthorityType;
(function (AuthorityType) {
AuthorityType[AuthorityType["Default"] = 0] = "Default";
AuthorityType[AuthorityType["Adfs"] = 1] = "Adfs";
AuthorityType[AuthorityType["Dsts"] = 2] = "Dsts";
AuthorityType[AuthorityType["Ciam"] = 3] = "Ciam";
})(AuthorityType || (AuthorityType = {}));
const AuthorityType = {
Default: 0,
Adfs: 1,
Dsts: 2,
Ciam: 3
};
export { AuthorityType };
//# sourceMappingURL=AuthorityType.js.map

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ /*

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ /*

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ /*

/**
* Protocol modes supported by MSAL.
*/
export declare enum ProtocolMode {
AAD = "AAD",
OIDC = "OIDC"
}
export declare const ProtocolMode: {
readonly AAD: "AAD";
readonly OIDC: "OIDC";
};
export type ProtocolMode = typeof ProtocolMode[keyof typeof ProtocolMode];
//# sourceMappingURL=ProtocolMode.d.ts.map

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -10,9 +10,8 @@ /*

*/
var ProtocolMode;
(function (ProtocolMode) {
ProtocolMode["AAD"] = "AAD";
ProtocolMode["OIDC"] = "OIDC";
})(ProtocolMode || (ProtocolMode = {}));
const ProtocolMode = {
AAD: "AAD",
OIDC: "OIDC",
};
export { ProtocolMode };
//# sourceMappingURL=ProtocolMode.js.map

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { Constants, ResponseCodes, RegionDiscoverySources } from '../utils/Constants.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { Separators, CredentialType, AuthenticationScheme, THE_FAMILY_ID, APP_METADATA, AUTHORITY_METADATA_CONSTANTS } from '../utils/Constants.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { CredentialEntity } from './CredentialEntity.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { Separators, CacheAccountType, CacheType, Constants } from '../../utils/Constants.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { Separators, APP_METADATA } from '../../utils/Constants.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { AUTHORITY_METADATA_CONSTANTS } from '../../utils/Constants.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ /*

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { CredentialType, CacheType, Separators, Constants, AuthenticationScheme } from '../../utils/Constants.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { CredentialEntity } from './CredentialEntity.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { CredentialEntity } from './CredentialEntity.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { SERVER_TELEM_CONSTANTS } from '../../utils/Constants.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { ThrottlingConstants } from '../../utils/Constants.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ /*

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { BaseClient } from './BaseClient.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { buildClientConfiguration } from '../config/ClientConfiguration.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { BaseClient } from './BaseClient.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { BaseClient } from './BaseClient.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { DEFAULT_CRYPTO_IMPLEMENTATION } from '../crypto/ICrypto.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { AuthError } from '../error/AuthError.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { JoseHeaderError } from '../error/JoseHeaderError.js';

@@ -19,6 +19,7 @@ import { ICrypto, SignedHttpRequestParameters } from "./ICrypto";

};
declare enum KeyLocation {
SW = "sw",
UHW = "uhw"
}
declare const KeyLocation: {
readonly SW: "sw";
readonly UHW: "uhw";
};
export type KeyLocation = typeof KeyLocation[keyof typeof KeyLocation];
export declare class PopTokenGenerator {

@@ -25,0 +26,0 @@ private cryptoUtils;

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -11,7 +11,6 @@ import { TimeUtils } from '../utils/TimeUtils.js';

*/
var KeyLocation;
(function (KeyLocation) {
KeyLocation["SW"] = "sw";
KeyLocation["UHW"] = "uhw";
})(KeyLocation || (KeyLocation = {}));
const KeyLocation = {
SW: "sw",
UHW: "uhw",
};
class PopTokenGenerator {

@@ -18,0 +17,0 @@ constructor(cryptoUtils, performanceClient) {

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { Constants } from '../utils/Constants.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { AuthError } from './AuthError.js';

@@ -98,2 +98,6 @@ import { ClientAuthError } from "./ClientAuthError";

};
authorityMismatch: {
code: string;
desc: string;
};
};

@@ -199,3 +203,7 @@ /**

static createInvalidAuthenticationHeaderError(invalidHeaderName: string, details: string): ClientConfigurationError;
/**
* Create an error when the authority provided in request does not match authority provided in account or MSAL.js configuration.
*/
static createAuthorityMismatchError(): ClientConfigurationError;
}
//# sourceMappingURL=ClientConfigurationError.d.ts.map

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -103,4 +103,8 @@ import { ClientAuthError } from './ClientAuthError.js';

code: "invalid_authentication_header",
desc: "Invalid authentication header provided",
desc: "Invalid authentication header provided"
},
authorityMismatch: {
code: "authority_mismatch",
desc: "Authority mismatch error. Authority provided in login request or PublicClientApplication config does not match the environment of the provided account. Please use a matching account or make an interactive request to login to this authority."
}
};

@@ -254,2 +258,8 @@ /**

}
/**
* Create an error when the authority provided in request does not match authority provided in account or MSAL.js configuration.
*/
static createAuthorityMismatchError() {
return new ClientConfigurationError(ClientConfigurationErrorMessage.authorityMismatch.code, ClientConfigurationErrorMessage.authorityMismatch.desc);
}
}

@@ -256,0 +266,0 @@

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { Constants } from '../utils/Constants.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { AuthError } from './AuthError.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { AuthError } from './AuthError.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ export { AuthorizationCodeClient } from './client/AuthorizationCodeClient.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { StringUtils } from '../utils/StringUtils.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { AuthError } from '../error/AuthError.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { ThrottlingUtils } from './ThrottlingUtils.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { ThrottlingConstants, Constants, HeaderNames } from '../utils/Constants.js';

export declare const name = "@azure/msal-common";
export declare const version = "14.0.0-alpha.2";
export declare const version = "14.0.0-beta.0";
//# sourceMappingURL=packageMetadata.d.ts.map

@@ -1,8 +0,8 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';
/* eslint-disable header/header */
const name = "@azure/msal-common";
const version = "14.0.0-alpha.2";
const version = "14.0.0-beta.0";
export { name, version };
//# sourceMappingURL=packageMetadata.js.map

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { ClientConfigurationError } from '../error/ClientConfigurationError.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { AADServerParamKeys, Constants, ResponseMode, SSOTypes, HeaderNames, CLIENT_INFO, ClaimsRequestKeys, PasswordGrantConstants, AuthenticationScheme, ThrottlingConstants, OIDC_DEFAULT_SCOPES } from '../utils/Constants.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -86,4 +86,3 @@ import { StringUtils } from '../utils/StringUtils.js';

// remove empty string parameters
return Object.fromEntries(Object.entries(eQParams).filter(([key, value]) => value !== "") // eslint-disable-line @typescript-eslint/no-unused-vars
);
return Object.fromEntries(Object.entries(eQParams).filter(kv => kv[1] !== ""));
}

@@ -90,0 +89,0 @@ }

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { ClientConfigurationError } from '../error/ClientConfigurationError.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { buildClientInfo } from '../account/ClientInfo.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { IntFields, PerformanceEventStatus } from './PerformanceEvent.js';

@@ -7,3 +7,3 @@ /**

*/
export declare enum PerformanceEvents {
export declare const PerformanceEvents: {
/**

@@ -13,3 +13,3 @@ * acquireTokenByCode API (msal-browser and msal-node).

*/
AcquireTokenByCode = "acquireTokenByCode",
readonly AcquireTokenByCode: "acquireTokenByCode";
/**

@@ -19,3 +19,3 @@ * acquireTokenByRefreshToken API (msal-browser and msal-node).

*/
AcquireTokenByRefreshToken = "acquireTokenByRefreshToken",
readonly AcquireTokenByRefreshToken: "acquireTokenByRefreshToken";
/**

@@ -25,3 +25,3 @@ * acquireTokenSilent API (msal-browser and msal-node).

*/
AcquireTokenSilent = "acquireTokenSilent",
readonly AcquireTokenSilent: "acquireTokenSilent";
/**

@@ -31,3 +31,3 @@ * acquireTokenSilentAsync (msal-browser).

*/
AcquireTokenSilentAsync = "acquireTokenSilentAsync",
readonly AcquireTokenSilentAsync: "acquireTokenSilentAsync";
/**

@@ -37,3 +37,3 @@ * acquireTokenPopup (msal-browser).

*/
AcquireTokenPopup = "acquireTokenPopup",
readonly AcquireTokenPopup: "acquireTokenPopup";
/**

@@ -43,3 +43,3 @@ * getPublicKeyThumbprint API in CryptoOpts class (msal-browser).

*/
CryptoOptsGetPublicKeyThumbprint = "cryptoOptsGetPublicKeyThumbprint",
readonly CryptoOptsGetPublicKeyThumbprint: "cryptoOptsGetPublicKeyThumbprint";
/**

@@ -49,3 +49,3 @@ * signJwt API in CryptoOpts class (msal-browser).

*/
CryptoOptsSignJwt = "cryptoOptsSignJwt",
readonly CryptoOptsSignJwt: "cryptoOptsSignJwt";
/**

@@ -55,3 +55,3 @@ * acquireToken API in the SilentCacheClient class (msal-browser).

*/
SilentCacheClientAcquireToken = "silentCacheClientAcquireToken",
readonly SilentCacheClientAcquireToken: "silentCacheClientAcquireToken";
/**

@@ -61,3 +61,3 @@ * acquireToken API in the SilentIframeClient class (msal-browser).

*/
SilentIframeClientAcquireToken = "silentIframeClientAcquireToken",
readonly SilentIframeClientAcquireToken: "silentIframeClientAcquireToken";
/**

@@ -67,3 +67,3 @@ * acquireToken API in SilentRereshClient (msal-browser).

*/
SilentRefreshClientAcquireToken = "silentRefreshClientAcquireToken",
readonly SilentRefreshClientAcquireToken: "silentRefreshClientAcquireToken";
/**

@@ -73,3 +73,3 @@ * ssoSilent API (msal-browser).

*/
SsoSilent = "ssoSilent",
readonly SsoSilent: "ssoSilent";
/**

@@ -79,3 +79,3 @@ * getDiscoveredAuthority API in StandardInteractionClient class (msal-browser).

*/
StandardInteractionClientGetDiscoveredAuthority = "standardInteractionClientGetDiscoveredAuthority",
readonly StandardInteractionClientGetDiscoveredAuthority: "standardInteractionClientGetDiscoveredAuthority";
/**

@@ -85,3 +85,3 @@ * acquireToken APIs in msal-browser.

*/
FetchAccountIdWithNativeBroker = "fetchAccountIdWithNativeBroker",
readonly FetchAccountIdWithNativeBroker: "fetchAccountIdWithNativeBroker";
/**

@@ -91,39 +91,39 @@ * acquireToken API in NativeInteractionClient class (msal-browser).

*/
NativeInteractionClientAcquireToken = "nativeInteractionClientAcquireToken",
readonly NativeInteractionClientAcquireToken: "nativeInteractionClientAcquireToken";
/**
* Time spent creating default headers for requests to token endpoint
*/
BaseClientCreateTokenRequestHeaders = "baseClientCreateTokenRequestHeaders",
readonly BaseClientCreateTokenRequestHeaders: "baseClientCreateTokenRequestHeaders";
/**
* Used to measure the time taken for completing embedded-broker handshake (PW-Broker).
*/
BrokerHandhshake = "brokerHandshake",
readonly BrokerHandhshake: "brokerHandshake";
/**
* acquireTokenByRefreshToken API in BrokerClientApplication (PW-Broker) .
*/
AcquireTokenByRefreshTokenInBroker = "acquireTokenByRefreshTokenInBroker",
readonly AcquireTokenByRefreshTokenInBroker: "acquireTokenByRefreshTokenInBroker";
/**
* Time taken for token acquisition by broker
*/
AcquireTokenByBroker = "acquireTokenByBroker",
readonly AcquireTokenByBroker: "acquireTokenByBroker";
/**
* Time spent on the network for refresh token acquisition
*/
RefreshTokenClientExecuteTokenRequest = "refreshTokenClientExecuteTokenRequest",
readonly RefreshTokenClientExecuteTokenRequest: "refreshTokenClientExecuteTokenRequest";
/**
* Time taken for acquiring refresh token , records RT size
*/
RefreshTokenClientAcquireToken = "refreshTokenClientAcquireToken",
readonly RefreshTokenClientAcquireToken: "refreshTokenClientAcquireToken";
/**
* Time taken for acquiring cached refresh token
*/
RefreshTokenClientAcquireTokenWithCachedRefreshToken = "refreshTokenClientAcquireTokenWithCachedRefreshToken",
readonly RefreshTokenClientAcquireTokenWithCachedRefreshToken: "refreshTokenClientAcquireTokenWithCachedRefreshToken";
/**
* acquireTokenByRefreshToken API in RefreshTokenClient (msal-common).
*/
RefreshTokenClientAcquireTokenByRefreshToken = "refreshTokenClientAcquireTokenByRefreshToken",
readonly RefreshTokenClientAcquireTokenByRefreshToken: "refreshTokenClientAcquireTokenByRefreshToken";
/**
* Helper function to create token request body in RefreshTokenClient (msal-common).
*/
RefreshTokenClientCreateTokenRequestBody = "refreshTokenClientCreateTokenRequestBody",
readonly RefreshTokenClientCreateTokenRequestBody: "refreshTokenClientCreateTokenRequestBody";
/**

@@ -133,3 +133,3 @@ * acquireTokenFromCache (msal-browser).

*/
AcquireTokenFromCache = "acquireTokenFromCache",
readonly AcquireTokenFromCache: "acquireTokenFromCache";
/**

@@ -139,79 +139,80 @@ * acquireTokenBySilentIframe (msal-browser).

*/
AcquireTokenBySilentIframe = "acquireTokenBySilentIframe",
readonly AcquireTokenBySilentIframe: "acquireTokenBySilentIframe";
/**
* Internal API for initializing base request in BaseInteractionClient (msal-browser)
*/
InitializeBaseRequest = "initializeBaseRequest",
readonly InitializeBaseRequest: "initializeBaseRequest";
/**
* Internal API for initializing silent request in SilentCacheClient (msal-browser)
*/
InitializeSilentRequest = "initializeSilentRequest",
InitializeClientApplication = "initializeClientApplication",
readonly InitializeSilentRequest: "initializeSilentRequest";
readonly InitializeClientApplication: "initializeClientApplication";
/**
* Helper function in SilentIframeClient class (msal-browser).
*/
SilentIframeClientTokenHelper = "silentIframeClientTokenHelper",
readonly SilentIframeClientTokenHelper: "silentIframeClientTokenHelper";
/**
* SilentHandler
*/
SilentHandlerInitiateAuthRequest = "silentHandlerInitiateAuthRequest",
SilentHandlerMonitorIframeForHash = "silentHandlerMonitorIframeForHash",
SilentHandlerLoadFrame = "silentHandlerLoadFrame",
readonly SilentHandlerInitiateAuthRequest: "silentHandlerInitiateAuthRequest";
readonly SilentHandlerMonitorIframeForHash: "silentHandlerMonitorIframeForHash";
readonly SilentHandlerLoadFrame: "silentHandlerLoadFrame";
/**
* Helper functions in StandardInteractionClient class (msal-browser)
*/
StandardInteractionClientCreateAuthCodeClient = "standardInteractionClientCreateAuthCodeClient",
StandardInteractionClientGetClientConfiguration = "standardInteractionClientGetClientConfiguration",
StandardInteractionClientInitializeAuthorizationRequest = "standardInteractionClientInitializeAuthorizationRequest",
StandardInteractionClientInitializeAuthorizationCodeRequest = "standardInteractionClientInitializeAuthorizationCodeRequest",
readonly StandardInteractionClientCreateAuthCodeClient: "standardInteractionClientCreateAuthCodeClient";
readonly StandardInteractionClientGetClientConfiguration: "standardInteractionClientGetClientConfiguration";
readonly StandardInteractionClientInitializeAuthorizationRequest: "standardInteractionClientInitializeAuthorizationRequest";
readonly StandardInteractionClientInitializeAuthorizationCodeRequest: "standardInteractionClientInitializeAuthorizationCodeRequest";
/**
* getAuthCodeUrl API (msal-browser and msal-node).
*/
GetAuthCodeUrl = "getAuthCodeUrl",
readonly GetAuthCodeUrl: "getAuthCodeUrl";
/**
* Functions from InteractionHandler (msal-browser)
*/
HandleCodeResponseFromServer = "handleCodeResponseFromServer",
HandleCodeResponseFromHash = "handleCodeResponseFromHash",
UpdateTokenEndpointAuthority = "updateTokenEndpointAuthority",
readonly HandleCodeResponseFromServer: "handleCodeResponseFromServer";
readonly HandleCodeResponseFromHash: "handleCodeResponseFromHash";
readonly UpdateTokenEndpointAuthority: "updateTokenEndpointAuthority";
/**
* APIs in Authorization Code Client (msal-common)
*/
AuthClientAcquireToken = "authClientAcquireToken",
AuthClientExecuteTokenRequest = "authClientExecuteTokenRequest",
AuthClientCreateTokenRequestBody = "authClientCreateTokenRequestBody",
AuthClientCreateQueryString = "authClientCreateQueryString",
readonly AuthClientAcquireToken: "authClientAcquireToken";
readonly AuthClientExecuteTokenRequest: "authClientExecuteTokenRequest";
readonly AuthClientCreateTokenRequestBody: "authClientCreateTokenRequestBody";
readonly AuthClientCreateQueryString: "authClientCreateQueryString";
/**
* Generate functions in PopTokenGenerator (msal-common)
*/
PopTokenGenerateCnf = "popTokenGenerateCnf",
PopTokenGenerateKid = "popTokenGenerateKid",
readonly PopTokenGenerateCnf: "popTokenGenerateCnf";
readonly PopTokenGenerateKid: "popTokenGenerateKid";
/**
* handleServerTokenResponse API in ResponseHandler (msal-common)
*/
HandleServerTokenResponse = "handleServerTokenResponse",
readonly HandleServerTokenResponse: "handleServerTokenResponse";
/**
* Authority functions
*/
AuthorityFactoryCreateDiscoveredInstance = "authorityFactoryCreateDiscoveredInstance",
AuthorityResolveEndpointsAsync = "authorityResolveEndpointsAsync",
AuthorityGetCloudDiscoveryMetadataFromNetwork = "authorityGetCloudDiscoveryMetadataFromNetwork",
AuthorityUpdateCloudDiscoveryMetadata = "authorityUpdateCloudDiscoveryMetadata",
AuthorityGetEndpointMetadataFromNetwork = "authorityGetEndpointMetadataFromNetwork",
AuthorityUpdateEndpointMetadata = "authorityUpdateEndpointMetadata",
AuthorityUpdateMetadataWithRegionalInformation = "authorityUpdateMetadataWithRegionalInformation",
readonly AuthorityFactoryCreateDiscoveredInstance: "authorityFactoryCreateDiscoveredInstance";
readonly AuthorityResolveEndpointsAsync: "authorityResolveEndpointsAsync";
readonly AuthorityGetCloudDiscoveryMetadataFromNetwork: "authorityGetCloudDiscoveryMetadataFromNetwork";
readonly AuthorityUpdateCloudDiscoveryMetadata: "authorityUpdateCloudDiscoveryMetadata";
readonly AuthorityGetEndpointMetadataFromNetwork: "authorityGetEndpointMetadataFromNetwork";
readonly AuthorityUpdateEndpointMetadata: "authorityUpdateEndpointMetadata";
readonly AuthorityUpdateMetadataWithRegionalInformation: "authorityUpdateMetadataWithRegionalInformation";
/**
* Region Discovery functions
*/
RegionDiscoveryDetectRegion = "regionDiscoveryDetectRegion",
RegionDiscoveryGetRegionFromIMDS = "regionDiscoveryGetRegionFromIMDS",
RegionDiscoveryGetCurrentVersion = "regionDiscoveryGetCurrentVersion",
AcquireTokenByCodeAsync = "acquireTokenByCodeAsync",
GetEndpointMetadataFromNetwork = "getEndpointMetadataFromNetwork",
GetCloudDiscoveryMetadataFromNetworkMeasurement = "getCloudDiscoveryMetadataFromNetworkMeasurement",
HandleRedirectPromiseMeasurement = "handleRedirectPromiseMeasurement",
UpdateCloudDiscoveryMetadataMeasurement = "updateCloudDiscoveryMetadataMeasurement",
UsernamePasswordClientAcquireToken = "usernamePasswordClientAcquireToken",
NativeMessageHandlerHandshake = "nativeMessageHandlerHandshake"
}
readonly RegionDiscoveryDetectRegion: "regionDiscoveryDetectRegion";
readonly RegionDiscoveryGetRegionFromIMDS: "regionDiscoveryGetRegionFromIMDS";
readonly RegionDiscoveryGetCurrentVersion: "regionDiscoveryGetCurrentVersion";
readonly AcquireTokenByCodeAsync: "acquireTokenByCodeAsync";
readonly GetEndpointMetadataFromNetwork: "getEndpointMetadataFromNetwork";
readonly GetCloudDiscoveryMetadataFromNetworkMeasurement: "getCloudDiscoveryMetadataFromNetworkMeasurement";
readonly HandleRedirectPromiseMeasurement: "handleRedirectPromiseMeasurement";
readonly UpdateCloudDiscoveryMetadataMeasurement: "updateCloudDiscoveryMetadataMeasurement";
readonly UsernamePasswordClientAcquireToken: "usernamePasswordClientAcquireToken";
readonly NativeMessageHandlerHandshake: "nativeMessageHandlerHandshake";
};
export type PerformanceEvents = typeof PerformanceEvents[keyof typeof PerformanceEvents];
/**

@@ -223,7 +224,8 @@ * State of the performance event.

*/
export declare enum PerformanceEventStatus {
NotStarted = 0,
InProgress = 1,
Completed = 2
}
export declare const PerformanceEventStatus: {
readonly NotStarted: 0;
readonly InProgress: 1;
readonly Completed: 2;
};
export type PerformanceEventStatus = typeof PerformanceEventStatus[keyof typeof PerformanceEventStatus];
/**

@@ -230,0 +232,0 @@ * Fields whose value will not change throughout a request

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -13,4 +13,3 @@ /*

*/
var PerformanceEvents;
(function (PerformanceEvents) {
const PerformanceEvents = {
/**

@@ -20,3 +19,3 @@ * acquireTokenByCode API (msal-browser and msal-node).

*/
PerformanceEvents["AcquireTokenByCode"] = "acquireTokenByCode";
AcquireTokenByCode: "acquireTokenByCode",
/**

@@ -26,3 +25,3 @@ * acquireTokenByRefreshToken API (msal-browser and msal-node).

*/
PerformanceEvents["AcquireTokenByRefreshToken"] = "acquireTokenByRefreshToken";
AcquireTokenByRefreshToken: "acquireTokenByRefreshToken",
/**

@@ -32,3 +31,3 @@ * acquireTokenSilent API (msal-browser and msal-node).

*/
PerformanceEvents["AcquireTokenSilent"] = "acquireTokenSilent";
AcquireTokenSilent: "acquireTokenSilent",
/**

@@ -38,3 +37,3 @@ * acquireTokenSilentAsync (msal-browser).

*/
PerformanceEvents["AcquireTokenSilentAsync"] = "acquireTokenSilentAsync";
AcquireTokenSilentAsync: "acquireTokenSilentAsync",
/**

@@ -44,3 +43,3 @@ * acquireTokenPopup (msal-browser).

*/
PerformanceEvents["AcquireTokenPopup"] = "acquireTokenPopup";
AcquireTokenPopup: "acquireTokenPopup",
/**

@@ -50,3 +49,3 @@ * getPublicKeyThumbprint API in CryptoOpts class (msal-browser).

*/
PerformanceEvents["CryptoOptsGetPublicKeyThumbprint"] = "cryptoOptsGetPublicKeyThumbprint";
CryptoOptsGetPublicKeyThumbprint: "cryptoOptsGetPublicKeyThumbprint",
/**

@@ -56,3 +55,3 @@ * signJwt API in CryptoOpts class (msal-browser).

*/
PerformanceEvents["CryptoOptsSignJwt"] = "cryptoOptsSignJwt";
CryptoOptsSignJwt: "cryptoOptsSignJwt",
/**

@@ -62,3 +61,3 @@ * acquireToken API in the SilentCacheClient class (msal-browser).

*/
PerformanceEvents["SilentCacheClientAcquireToken"] = "silentCacheClientAcquireToken";
SilentCacheClientAcquireToken: "silentCacheClientAcquireToken",
/**

@@ -68,3 +67,3 @@ * acquireToken API in the SilentIframeClient class (msal-browser).

*/
PerformanceEvents["SilentIframeClientAcquireToken"] = "silentIframeClientAcquireToken";
SilentIframeClientAcquireToken: "silentIframeClientAcquireToken",
/**

@@ -74,3 +73,3 @@ * acquireToken API in SilentRereshClient (msal-browser).

*/
PerformanceEvents["SilentRefreshClientAcquireToken"] = "silentRefreshClientAcquireToken";
SilentRefreshClientAcquireToken: "silentRefreshClientAcquireToken",
/**

@@ -80,3 +79,3 @@ * ssoSilent API (msal-browser).

*/
PerformanceEvents["SsoSilent"] = "ssoSilent";
SsoSilent: "ssoSilent",
/**

@@ -86,3 +85,3 @@ * getDiscoveredAuthority API in StandardInteractionClient class (msal-browser).

*/
PerformanceEvents["StandardInteractionClientGetDiscoveredAuthority"] = "standardInteractionClientGetDiscoveredAuthority";
StandardInteractionClientGetDiscoveredAuthority: "standardInteractionClientGetDiscoveredAuthority",
/**

@@ -92,3 +91,3 @@ * acquireToken APIs in msal-browser.

*/
PerformanceEvents["FetchAccountIdWithNativeBroker"] = "fetchAccountIdWithNativeBroker";
FetchAccountIdWithNativeBroker: "fetchAccountIdWithNativeBroker",
/**

@@ -98,39 +97,39 @@ * acquireToken API in NativeInteractionClient class (msal-browser).

*/
PerformanceEvents["NativeInteractionClientAcquireToken"] = "nativeInteractionClientAcquireToken";
NativeInteractionClientAcquireToken: "nativeInteractionClientAcquireToken",
/**
* Time spent creating default headers for requests to token endpoint
*/
PerformanceEvents["BaseClientCreateTokenRequestHeaders"] = "baseClientCreateTokenRequestHeaders";
BaseClientCreateTokenRequestHeaders: "baseClientCreateTokenRequestHeaders",
/**
* Used to measure the time taken for completing embedded-broker handshake (PW-Broker).
*/
PerformanceEvents["BrokerHandhshake"] = "brokerHandshake";
BrokerHandhshake: "brokerHandshake",
/**
* acquireTokenByRefreshToken API in BrokerClientApplication (PW-Broker) .
*/
PerformanceEvents["AcquireTokenByRefreshTokenInBroker"] = "acquireTokenByRefreshTokenInBroker";
AcquireTokenByRefreshTokenInBroker: "acquireTokenByRefreshTokenInBroker",
/**
* Time taken for token acquisition by broker
*/
PerformanceEvents["AcquireTokenByBroker"] = "acquireTokenByBroker";
AcquireTokenByBroker: "acquireTokenByBroker",
/**
* Time spent on the network for refresh token acquisition
*/
PerformanceEvents["RefreshTokenClientExecuteTokenRequest"] = "refreshTokenClientExecuteTokenRequest";
RefreshTokenClientExecuteTokenRequest: "refreshTokenClientExecuteTokenRequest",
/**
* Time taken for acquiring refresh token , records RT size
*/
PerformanceEvents["RefreshTokenClientAcquireToken"] = "refreshTokenClientAcquireToken";
RefreshTokenClientAcquireToken: "refreshTokenClientAcquireToken",
/**
* Time taken for acquiring cached refresh token
*/
PerformanceEvents["RefreshTokenClientAcquireTokenWithCachedRefreshToken"] = "refreshTokenClientAcquireTokenWithCachedRefreshToken";
RefreshTokenClientAcquireTokenWithCachedRefreshToken: "refreshTokenClientAcquireTokenWithCachedRefreshToken",
/**
* acquireTokenByRefreshToken API in RefreshTokenClient (msal-common).
*/
PerformanceEvents["RefreshTokenClientAcquireTokenByRefreshToken"] = "refreshTokenClientAcquireTokenByRefreshToken";
RefreshTokenClientAcquireTokenByRefreshToken: "refreshTokenClientAcquireTokenByRefreshToken",
/**
* Helper function to create token request body in RefreshTokenClient (msal-common).
*/
PerformanceEvents["RefreshTokenClientCreateTokenRequestBody"] = "refreshTokenClientCreateTokenRequestBody";
RefreshTokenClientCreateTokenRequestBody: "refreshTokenClientCreateTokenRequestBody",
/**

@@ -140,3 +139,3 @@ * acquireTokenFromCache (msal-browser).

*/
PerformanceEvents["AcquireTokenFromCache"] = "acquireTokenFromCache";
AcquireTokenFromCache: "acquireTokenFromCache",
/**

@@ -146,79 +145,79 @@ * acquireTokenBySilentIframe (msal-browser).

*/
PerformanceEvents["AcquireTokenBySilentIframe"] = "acquireTokenBySilentIframe";
AcquireTokenBySilentIframe: "acquireTokenBySilentIframe",
/**
* Internal API for initializing base request in BaseInteractionClient (msal-browser)
*/
PerformanceEvents["InitializeBaseRequest"] = "initializeBaseRequest";
InitializeBaseRequest: "initializeBaseRequest",
/**
* Internal API for initializing silent request in SilentCacheClient (msal-browser)
*/
PerformanceEvents["InitializeSilentRequest"] = "initializeSilentRequest";
PerformanceEvents["InitializeClientApplication"] = "initializeClientApplication";
InitializeSilentRequest: "initializeSilentRequest",
InitializeClientApplication: "initializeClientApplication",
/**
* Helper function in SilentIframeClient class (msal-browser).
*/
PerformanceEvents["SilentIframeClientTokenHelper"] = "silentIframeClientTokenHelper";
SilentIframeClientTokenHelper: "silentIframeClientTokenHelper",
/**
* SilentHandler
*/
PerformanceEvents["SilentHandlerInitiateAuthRequest"] = "silentHandlerInitiateAuthRequest";
PerformanceEvents["SilentHandlerMonitorIframeForHash"] = "silentHandlerMonitorIframeForHash";
PerformanceEvents["SilentHandlerLoadFrame"] = "silentHandlerLoadFrame";
SilentHandlerInitiateAuthRequest: "silentHandlerInitiateAuthRequest",
SilentHandlerMonitorIframeForHash: "silentHandlerMonitorIframeForHash",
SilentHandlerLoadFrame: "silentHandlerLoadFrame",
/**
* Helper functions in StandardInteractionClient class (msal-browser)
*/
PerformanceEvents["StandardInteractionClientCreateAuthCodeClient"] = "standardInteractionClientCreateAuthCodeClient";
PerformanceEvents["StandardInteractionClientGetClientConfiguration"] = "standardInteractionClientGetClientConfiguration";
PerformanceEvents["StandardInteractionClientInitializeAuthorizationRequest"] = "standardInteractionClientInitializeAuthorizationRequest";
PerformanceEvents["StandardInteractionClientInitializeAuthorizationCodeRequest"] = "standardInteractionClientInitializeAuthorizationCodeRequest";
StandardInteractionClientCreateAuthCodeClient: "standardInteractionClientCreateAuthCodeClient",
StandardInteractionClientGetClientConfiguration: "standardInteractionClientGetClientConfiguration",
StandardInteractionClientInitializeAuthorizationRequest: "standardInteractionClientInitializeAuthorizationRequest",
StandardInteractionClientInitializeAuthorizationCodeRequest: "standardInteractionClientInitializeAuthorizationCodeRequest",
/**
* getAuthCodeUrl API (msal-browser and msal-node).
*/
PerformanceEvents["GetAuthCodeUrl"] = "getAuthCodeUrl";
GetAuthCodeUrl: "getAuthCodeUrl",
/**
* Functions from InteractionHandler (msal-browser)
*/
PerformanceEvents["HandleCodeResponseFromServer"] = "handleCodeResponseFromServer";
PerformanceEvents["HandleCodeResponseFromHash"] = "handleCodeResponseFromHash";
PerformanceEvents["UpdateTokenEndpointAuthority"] = "updateTokenEndpointAuthority";
HandleCodeResponseFromServer: "handleCodeResponseFromServer",
HandleCodeResponseFromHash: "handleCodeResponseFromHash",
UpdateTokenEndpointAuthority: "updateTokenEndpointAuthority",
/**
* APIs in Authorization Code Client (msal-common)
*/
PerformanceEvents["AuthClientAcquireToken"] = "authClientAcquireToken";
PerformanceEvents["AuthClientExecuteTokenRequest"] = "authClientExecuteTokenRequest";
PerformanceEvents["AuthClientCreateTokenRequestBody"] = "authClientCreateTokenRequestBody";
PerformanceEvents["AuthClientCreateQueryString"] = "authClientCreateQueryString";
AuthClientAcquireToken: "authClientAcquireToken",
AuthClientExecuteTokenRequest: "authClientExecuteTokenRequest",
AuthClientCreateTokenRequestBody: "authClientCreateTokenRequestBody",
AuthClientCreateQueryString: "authClientCreateQueryString",
/**
* Generate functions in PopTokenGenerator (msal-common)
*/
PerformanceEvents["PopTokenGenerateCnf"] = "popTokenGenerateCnf";
PerformanceEvents["PopTokenGenerateKid"] = "popTokenGenerateKid";
PopTokenGenerateCnf: "popTokenGenerateCnf",
PopTokenGenerateKid: "popTokenGenerateKid",
/**
* handleServerTokenResponse API in ResponseHandler (msal-common)
*/
PerformanceEvents["HandleServerTokenResponse"] = "handleServerTokenResponse";
HandleServerTokenResponse: "handleServerTokenResponse",
/**
* Authority functions
*/
PerformanceEvents["AuthorityFactoryCreateDiscoveredInstance"] = "authorityFactoryCreateDiscoveredInstance";
PerformanceEvents["AuthorityResolveEndpointsAsync"] = "authorityResolveEndpointsAsync";
PerformanceEvents["AuthorityGetCloudDiscoveryMetadataFromNetwork"] = "authorityGetCloudDiscoveryMetadataFromNetwork";
PerformanceEvents["AuthorityUpdateCloudDiscoveryMetadata"] = "authorityUpdateCloudDiscoveryMetadata";
PerformanceEvents["AuthorityGetEndpointMetadataFromNetwork"] = "authorityGetEndpointMetadataFromNetwork";
PerformanceEvents["AuthorityUpdateEndpointMetadata"] = "authorityUpdateEndpointMetadata";
PerformanceEvents["AuthorityUpdateMetadataWithRegionalInformation"] = "authorityUpdateMetadataWithRegionalInformation";
AuthorityFactoryCreateDiscoveredInstance: "authorityFactoryCreateDiscoveredInstance",
AuthorityResolveEndpointsAsync: "authorityResolveEndpointsAsync",
AuthorityGetCloudDiscoveryMetadataFromNetwork: "authorityGetCloudDiscoveryMetadataFromNetwork",
AuthorityUpdateCloudDiscoveryMetadata: "authorityUpdateCloudDiscoveryMetadata",
AuthorityGetEndpointMetadataFromNetwork: "authorityGetEndpointMetadataFromNetwork",
AuthorityUpdateEndpointMetadata: "authorityUpdateEndpointMetadata",
AuthorityUpdateMetadataWithRegionalInformation: "authorityUpdateMetadataWithRegionalInformation",
/**
* Region Discovery functions
*/
PerformanceEvents["RegionDiscoveryDetectRegion"] = "regionDiscoveryDetectRegion";
PerformanceEvents["RegionDiscoveryGetRegionFromIMDS"] = "regionDiscoveryGetRegionFromIMDS";
PerformanceEvents["RegionDiscoveryGetCurrentVersion"] = "regionDiscoveryGetCurrentVersion";
PerformanceEvents["AcquireTokenByCodeAsync"] = "acquireTokenByCodeAsync";
PerformanceEvents["GetEndpointMetadataFromNetwork"] = "getEndpointMetadataFromNetwork";
PerformanceEvents["GetCloudDiscoveryMetadataFromNetworkMeasurement"] = "getCloudDiscoveryMetadataFromNetworkMeasurement";
PerformanceEvents["HandleRedirectPromiseMeasurement"] = "handleRedirectPromiseMeasurement";
PerformanceEvents["UpdateCloudDiscoveryMetadataMeasurement"] = "updateCloudDiscoveryMetadataMeasurement";
PerformanceEvents["UsernamePasswordClientAcquireToken"] = "usernamePasswordClientAcquireToken";
PerformanceEvents["NativeMessageHandlerHandshake"] = "nativeMessageHandlerHandshake";
})(PerformanceEvents || (PerformanceEvents = {}));
RegionDiscoveryDetectRegion: "regionDiscoveryDetectRegion",
RegionDiscoveryGetRegionFromIMDS: "regionDiscoveryGetRegionFromIMDS",
RegionDiscoveryGetCurrentVersion: "regionDiscoveryGetCurrentVersion",
AcquireTokenByCodeAsync: "acquireTokenByCodeAsync",
GetEndpointMetadataFromNetwork: "getEndpointMetadataFromNetwork",
GetCloudDiscoveryMetadataFromNetworkMeasurement: "getCloudDiscoveryMetadataFromNetworkMeasurement",
HandleRedirectPromiseMeasurement: "handleRedirectPromiseMeasurement",
UpdateCloudDiscoveryMetadataMeasurement: "updateCloudDiscoveryMetadataMeasurement",
UsernamePasswordClientAcquireToken: "usernamePasswordClientAcquireToken",
NativeMessageHandlerHandshake: "nativeMessageHandlerHandshake",
};
/**

@@ -230,8 +229,7 @@ * State of the performance event.

*/
var PerformanceEventStatus;
(function (PerformanceEventStatus) {
PerformanceEventStatus[PerformanceEventStatus["NotStarted"] = 0] = "NotStarted";
PerformanceEventStatus[PerformanceEventStatus["InProgress"] = 1] = "InProgress";
PerformanceEventStatus[PerformanceEventStatus["Completed"] = 2] = "Completed";
})(PerformanceEventStatus || (PerformanceEventStatus = {}));
const PerformanceEventStatus = {
NotStarted: 0,
InProgress: 1,
Completed: 2,
};
const IntFields = new Set([

@@ -238,0 +236,0 @@ "accessTokenSize",

import { IPerformanceClient } from "./IPerformanceClient";
import { IPerformanceMeasurement } from "./IPerformanceMeasurement";
import { PerformanceClient } from "./PerformanceClient";
import { PerformanceEvents } from "./PerformanceEvent";
export declare class StubPerformanceMeasurement implements IPerformanceMeasurement {

@@ -13,9 +12,6 @@ startMeasurement(): void;

startPerformanceMeasurement(): IPerformanceMeasurement;
calculateQueuedTime(preQueueTime: number, currentTime: number): number;
addQueueMeasurement(eventName: PerformanceEvents, // eslint-disable-line @typescript-eslint/no-unused-vars
correlationId: string, // eslint-disable-line @typescript-eslint/no-unused-vars
queueTime: number): void;
setPreQueueTime(eventName: PerformanceEvents, // eslint-disable-line @typescript-eslint/no-unused-vars
correlationId?: string | undefined): void;
calculateQueuedTime(): number;
addQueueMeasurement(): void;
setPreQueueTime(): void;
}
//# sourceMappingURL=StubPerformanceClient.d.ts.map

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -10,9 +10,5 @@ import { PerformanceClient } from './PerformanceClient.js';

class StubPerformanceMeasurement {
/* eslint-disable-next-line @typescript-eslint/no-empty-function */
startMeasurement() { }
/* eslint-disable-next-line @typescript-eslint/no-empty-function */
endMeasurement() { }
flushMeasurement() {
return null;
}
startMeasurement() { return; }
endMeasurement() { return; }
flushMeasurement() { return null; }
}

@@ -26,17 +22,7 @@ class StubPerformanceClient extends PerformanceClient {

}
/* eslint-disable-next-line @typescript-eslint/no-unused-vars */
calculateQueuedTime(preQueueTime, currentTime) {
calculateQueuedTime() {
return 0;
}
addQueueMeasurement(eventName, // eslint-disable-line @typescript-eslint/no-unused-vars
correlationId, // eslint-disable-line @typescript-eslint/no-unused-vars
queueTime // eslint-disable-line @typescript-eslint/no-unused-vars
) {
return;
}
setPreQueueTime(eventName, // eslint-disable-line @typescript-eslint/no-unused-vars
correlationId // eslint-disable-line @typescript-eslint/no-unused-vars
) {
return;
}
addQueueMeasurement() { return; }
setPreQueueTime() { return; }
}

@@ -43,0 +29,0 @@

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { CacheOutcome, Constants, SERVER_TELEM_CONSTANTS, Separators } from '../../utils/Constants.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { ClientConfigurationError } from '../error/ClientConfigurationError.js';

@@ -49,91 +49,96 @@ export declare const Constants: {

*/
export declare enum HeaderNames {
CONTENT_TYPE = "Content-Type",
RETRY_AFTER = "Retry-After",
CCS_HEADER = "X-AnchorMailbox",
WWWAuthenticate = "WWW-Authenticate",
AuthenticationInfo = "Authentication-Info",
X_MS_REQUEST_ID = "x-ms-request-id",
X_MS_HTTP_VERSION = "x-ms-httpver"
}
export declare const HeaderNames: {
readonly CONTENT_TYPE: "Content-Type";
readonly RETRY_AFTER: "Retry-After";
readonly CCS_HEADER: "X-AnchorMailbox";
readonly WWWAuthenticate: "WWW-Authenticate";
readonly AuthenticationInfo: "Authentication-Info";
readonly X_MS_REQUEST_ID: "x-ms-request-id";
readonly X_MS_HTTP_VERSION: "x-ms-httpver";
};
export type HeaderNames = typeof HeaderNames[keyof typeof HeaderNames];
/**
* Persistent cache keys MSAL which stay while user is logged in.
*/
export declare enum PersistentCacheKeys {
ID_TOKEN = "idtoken",
CLIENT_INFO = "client.info",
ADAL_ID_TOKEN = "adal.idtoken",
ERROR = "error",
ERROR_DESC = "error.description",
ACTIVE_ACCOUNT = "active-account",
ACTIVE_ACCOUNT_FILTERS = "active-account-filters"
}
export declare const PersistentCacheKeys: {
readonly ID_TOKEN: "idtoken";
readonly CLIENT_INFO: "client.info";
readonly ADAL_ID_TOKEN: "adal.idtoken";
readonly ERROR: "error";
readonly ERROR_DESC: "error.description";
readonly ACTIVE_ACCOUNT: "active-account";
readonly ACTIVE_ACCOUNT_FILTERS: "active-account-filters";
};
export type PersistentCacheKeys = typeof PersistentCacheKeys[keyof typeof PersistentCacheKeys];
/**
* String constants related to AAD Authority
*/
export declare enum AADAuthorityConstants {
COMMON = "common",
ORGANIZATIONS = "organizations",
CONSUMERS = "consumers"
}
export declare const AADAuthorityConstants: {
readonly COMMON: "common";
readonly ORGANIZATIONS: "organizations";
readonly CONSUMERS: "consumers";
};
export type AADAuthorityConstants = typeof AADAuthorityConstants[keyof typeof AADAuthorityConstants];
/**
* Keys in the hashParams sent by AAD Server
*/
export declare enum AADServerParamKeys {
CLIENT_ID = "client_id",
REDIRECT_URI = "redirect_uri",
RESPONSE_TYPE = "response_type",
RESPONSE_MODE = "response_mode",
GRANT_TYPE = "grant_type",
CLAIMS = "claims",
SCOPE = "scope",
ERROR = "error",
ERROR_DESCRIPTION = "error_description",
ACCESS_TOKEN = "access_token",
ID_TOKEN = "id_token",
REFRESH_TOKEN = "refresh_token",
EXPIRES_IN = "expires_in",
STATE = "state",
NONCE = "nonce",
PROMPT = "prompt",
SESSION_STATE = "session_state",
CLIENT_INFO = "client_info",
CODE = "code",
CODE_CHALLENGE = "code_challenge",
CODE_CHALLENGE_METHOD = "code_challenge_method",
CODE_VERIFIER = "code_verifier",
CLIENT_REQUEST_ID = "client-request-id",
X_CLIENT_SKU = "x-client-SKU",
X_CLIENT_VER = "x-client-VER",
X_CLIENT_OS = "x-client-OS",
X_CLIENT_CPU = "x-client-CPU",
X_CLIENT_CURR_TELEM = "x-client-current-telemetry",
X_CLIENT_LAST_TELEM = "x-client-last-telemetry",
X_MS_LIB_CAPABILITY = "x-ms-lib-capability",
X_APP_NAME = "x-app-name",
X_APP_VER = "x-app-ver",
POST_LOGOUT_URI = "post_logout_redirect_uri",
ID_TOKEN_HINT = "id_token_hint",
DEVICE_CODE = "device_code",
CLIENT_SECRET = "client_secret",
CLIENT_ASSERTION = "client_assertion",
CLIENT_ASSERTION_TYPE = "client_assertion_type",
TOKEN_TYPE = "token_type",
REQ_CNF = "req_cnf",
OBO_ASSERTION = "assertion",
REQUESTED_TOKEN_USE = "requested_token_use",
ON_BEHALF_OF = "on_behalf_of",
FOCI = "foci",
CCS_HEADER = "X-AnchorMailbox",
RETURN_SPA_CODE = "return_spa_code",
NATIVE_BROKER = "nativebroker",
LOGOUT_HINT = "logout_hint"
}
export declare const AADServerParamKeys: {
readonly CLIENT_ID: "client_id";
readonly REDIRECT_URI: "redirect_uri";
readonly RESPONSE_TYPE: "response_type";
readonly RESPONSE_MODE: "response_mode";
readonly GRANT_TYPE: "grant_type";
readonly CLAIMS: "claims";
readonly SCOPE: "scope";
readonly ERROR: "error";
readonly ERROR_DESCRIPTION: "error_description";
readonly ACCESS_TOKEN: "access_token";
readonly ID_TOKEN: "id_token";
readonly REFRESH_TOKEN: "refresh_token";
readonly EXPIRES_IN: "expires_in";
readonly STATE: "state";
readonly NONCE: "nonce";
readonly PROMPT: "prompt";
readonly SESSION_STATE: "session_state";
readonly CLIENT_INFO: "client_info";
readonly CODE: "code";
readonly CODE_CHALLENGE: "code_challenge";
readonly CODE_CHALLENGE_METHOD: "code_challenge_method";
readonly CODE_VERIFIER: "code_verifier";
readonly CLIENT_REQUEST_ID: "client-request-id";
readonly X_CLIENT_SKU: "x-client-SKU";
readonly X_CLIENT_VER: "x-client-VER";
readonly X_CLIENT_OS: "x-client-OS";
readonly X_CLIENT_CPU: "x-client-CPU";
readonly X_CLIENT_CURR_TELEM: "x-client-current-telemetry";
readonly X_CLIENT_LAST_TELEM: "x-client-last-telemetry";
readonly X_MS_LIB_CAPABILITY: "x-ms-lib-capability";
readonly X_APP_NAME: "x-app-name";
readonly X_APP_VER: "x-app-ver";
readonly POST_LOGOUT_URI: "post_logout_redirect_uri";
readonly ID_TOKEN_HINT: "id_token_hint";
readonly DEVICE_CODE: "device_code";
readonly CLIENT_SECRET: "client_secret";
readonly CLIENT_ASSERTION: "client_assertion";
readonly CLIENT_ASSERTION_TYPE: "client_assertion_type";
readonly TOKEN_TYPE: "token_type";
readonly REQ_CNF: "req_cnf";
readonly OBO_ASSERTION: "assertion";
readonly REQUESTED_TOKEN_USE: "requested_token_use";
readonly ON_BEHALF_OF: "on_behalf_of";
readonly FOCI: "foci";
readonly CCS_HEADER: "X-AnchorMailbox";
readonly RETURN_SPA_CODE: "return_spa_code";
readonly NATIVE_BROKER: "nativebroker";
readonly LOGOUT_HINT: "logout_hint";
};
export type AADServerParamKeys = typeof AADServerParamKeys[keyof typeof AADServerParamKeys];
/**
* Claims request keys
*/
export declare enum ClaimsRequestKeys {
ACCESS_TOKEN = "access_token",
XMS_CC = "xms_cc"
}
export declare const ClaimsRequestKeys: {
readonly ACCESS_TOKEN: "access_token";
readonly XMS_CC: "xms_cc";
};
export type ClaimsRequestKeys = typeof ClaimsRequestKeys[keyof typeof ClaimsRequestKeys];
/**

@@ -155,13 +160,14 @@ * we considered making this "enum" in the request instead of string, however it looks like the allowed list of

*/
export declare enum SSOTypes {
ACCOUNT = "account",
SID = "sid",
LOGIN_HINT = "login_hint",
ID_TOKEN = "id_token",
DOMAIN_HINT = "domain_hint",
ORGANIZATIONS = "organizations",
CONSUMERS = "consumers",
ACCOUNT_ID = "accountIdentifier",
HOMEACCOUNT_ID = "homeAccountIdentifier"
}
export declare const SSOTypes: {
readonly ACCOUNT: "account";
readonly SID: "sid";
readonly LOGIN_HINT: "login_hint";
readonly ID_TOKEN: "id_token";
readonly DOMAIN_HINT: "domain_hint";
readonly ORGANIZATIONS: "organizations";
readonly CONSUMERS: "consumers";
readonly ACCOUNT_ID: "accountIdentifier";
readonly HOMEACCOUNT_ID: "homeAccountIdentifier";
};
export type SSOTypes = typeof SSOTypes[keyof typeof SSOTypes];
/**

@@ -175,66 +181,66 @@ * allowed values for codeVerifier

/**
* The method used to encode the code verifier for the code challenge parameter. can be one
* of plain or s256. if excluded, code challenge is assumed to be plaintext. for more
* information, see the pkce rcf: https://tools.ietf.org/html/rfc7636
*/
export declare const CodeChallengeMethodValuesArray: string[];
/**
* allowed values for response_mode
*/
export declare enum ResponseMode {
QUERY = "query",
FRAGMENT = "fragment",
FORM_POST = "form_post"
}
export declare const ResponseMode: {
readonly QUERY: "query";
readonly FRAGMENT: "fragment";
readonly FORM_POST: "form_post";
};
export type ResponseMode = typeof ResponseMode[keyof typeof ResponseMode];
/**
* allowed grant_type
*/
export declare enum GrantType {
IMPLICIT_GRANT = "implicit",
AUTHORIZATION_CODE_GRANT = "authorization_code",
CLIENT_CREDENTIALS_GRANT = "client_credentials",
RESOURCE_OWNER_PASSWORD_GRANT = "password",
REFRESH_TOKEN_GRANT = "refresh_token",
DEVICE_CODE_GRANT = "device_code",
JWT_BEARER = "urn:ietf:params:oauth:grant-type:jwt-bearer"
}
export declare const GrantType: {
readonly IMPLICIT_GRANT: "implicit";
readonly AUTHORIZATION_CODE_GRANT: "authorization_code";
readonly CLIENT_CREDENTIALS_GRANT: "client_credentials";
readonly RESOURCE_OWNER_PASSWORD_GRANT: "password";
readonly REFRESH_TOKEN_GRANT: "refresh_token";
readonly DEVICE_CODE_GRANT: "device_code";
readonly JWT_BEARER: "urn:ietf:params:oauth:grant-type:jwt-bearer";
};
export type GrantType = typeof GrantType[keyof typeof GrantType];
/**
* Account types in Cache
*/
export declare enum CacheAccountType {
MSSTS_ACCOUNT_TYPE = "MSSTS",
ADFS_ACCOUNT_TYPE = "ADFS",
MSAV1_ACCOUNT_TYPE = "MSA",
GENERIC_ACCOUNT_TYPE = "Generic"
}
export declare const CacheAccountType: {
readonly MSSTS_ACCOUNT_TYPE: "MSSTS";
readonly ADFS_ACCOUNT_TYPE: "ADFS";
readonly MSAV1_ACCOUNT_TYPE: "MSA";
readonly GENERIC_ACCOUNT_TYPE: "Generic";
};
export type CacheAccountType = typeof CacheAccountType[keyof typeof CacheAccountType];
/**
* Separators used in cache
*/
export declare enum Separators {
CACHE_KEY_SEPARATOR = "-",
CLIENT_INFO_SEPARATOR = "."
}
export declare const Separators: {
readonly CACHE_KEY_SEPARATOR: "-";
readonly CLIENT_INFO_SEPARATOR: ".";
};
export type Separators = typeof Separators[keyof typeof Separators];
/**
* Credential Type stored in the cache
*/
export declare enum CredentialType {
ID_TOKEN = "IdToken",
ACCESS_TOKEN = "AccessToken",
ACCESS_TOKEN_WITH_AUTH_SCHEME = "AccessToken_With_AuthScheme",
REFRESH_TOKEN = "RefreshToken"
}
export declare const CredentialType: {
readonly ID_TOKEN: "IdToken";
readonly ACCESS_TOKEN: "AccessToken";
readonly ACCESS_TOKEN_WITH_AUTH_SCHEME: "AccessToken_With_AuthScheme";
readonly REFRESH_TOKEN: "RefreshToken";
};
export type CredentialType = typeof CredentialType[keyof typeof CredentialType];
/**
* Combine all cache types
*/
export declare enum CacheType {
ADFS = 1001,
MSA = 1002,
MSSTS = 1003,
GENERIC = 1004,
ACCESS_TOKEN = 2001,
REFRESH_TOKEN = 2002,
ID_TOKEN = 2003,
APP_METADATA = 3001,
UNDEFINED = 9999
}
export declare const CacheType: {
readonly ADFS: 1001;
readonly MSA: 1002;
readonly MSSTS: 1003;
readonly GENERIC: 1004;
readonly ACCESS_TOKEN: 2001;
readonly REFRESH_TOKEN: 2002;
readonly ID_TOKEN: 2003;
readonly APP_METADATA: 3001;
readonly UNDEFINED: 9999;
};
export type CacheType = typeof CacheType[keyof typeof CacheType];
/**

@@ -250,8 +256,9 @@ * More Cache related constants

};
export declare enum AuthorityMetadataSource {
CONFIG = "config",
CACHE = "cache",
NETWORK = "network",
HARDCODED_VALUES = "hardcoded_values"
}
export declare const AuthorityMetadataSource: {
readonly CONFIG: "config";
readonly CACHE: "cache";
readonly NETWORK: "network";
readonly HARDCODED_VALUES: "hardcoded_values";
};
export type AuthorityMetadataSource = typeof AuthorityMetadataSource[keyof typeof AuthorityMetadataSource];
export declare const SERVER_TELEM_CONSTANTS: {

@@ -272,7 +279,8 @@ SCHEMA_VERSION: number;

*/
export declare enum AuthenticationScheme {
BEARER = "Bearer",
POP = "pop",
SSH = "ssh-cert"
}
export declare const AuthenticationScheme: {
readonly BEARER: "Bearer";
readonly POP: "pop";
readonly SSH: "ssh-cert";
};
export type AuthenticationScheme = typeof AuthenticationScheme[keyof typeof AuthenticationScheme];
/**

@@ -294,45 +302,51 @@ * Constants related to throttling

*/
export declare enum PasswordGrantConstants {
username = "username",
password = "password"
}
export declare const PasswordGrantConstants: {
readonly username: "username";
readonly password: "password";
};
export type PasswordGrantConstants = typeof PasswordGrantConstants[keyof typeof PasswordGrantConstants];
/**
* Response codes
*/
export declare enum ResponseCodes {
httpSuccess = 200,
httpBadRequest = 400
}
export declare const ResponseCodes: {
readonly httpSuccess: 200;
readonly httpBadRequest: 400;
};
export type ResponseCodes = typeof ResponseCodes[keyof typeof ResponseCodes];
/**
* Region Discovery Sources
*/
export declare enum RegionDiscoverySources {
FAILED_AUTO_DETECTION = "1",
INTERNAL_CACHE = "2",
ENVIRONMENT_VARIABLE = "3",
IMDS = "4"
}
export declare const RegionDiscoverySources: {
readonly FAILED_AUTO_DETECTION: "1";
readonly INTERNAL_CACHE: "2";
readonly ENVIRONMENT_VARIABLE: "3";
readonly IMDS: "4";
};
export type RegionDiscoverySources = typeof RegionDiscoverySources[keyof typeof RegionDiscoverySources];
/**
* Region Discovery Outcomes
*/
export declare enum RegionDiscoveryOutcomes {
CONFIGURED_MATCHES_DETECTED = "1",
CONFIGURED_NO_AUTO_DETECTION = "2",
CONFIGURED_NOT_DETECTED = "3",
AUTO_DETECTION_REQUESTED_SUCCESSFUL = "4",
AUTO_DETECTION_REQUESTED_FAILED = "5"
}
export declare enum CacheOutcome {
NO_CACHE_HIT = "0",
FORCE_REFRESH = "1",
NO_CACHED_ACCESS_TOKEN = "2",
CACHED_ACCESS_TOKEN_EXPIRED = "3",
REFRESH_CACHED_ACCESS_TOKEN = "4"
}
export declare enum JsonTypes {
Jwt = "JWT",
Jwk = "JWK",
Pop = "pop"
}
export declare const RegionDiscoveryOutcomes: {
readonly CONFIGURED_MATCHES_DETECTED: "1";
readonly CONFIGURED_NO_AUTO_DETECTION: "2";
readonly CONFIGURED_NOT_DETECTED: "3";
readonly AUTO_DETECTION_REQUESTED_SUCCESSFUL: "4";
readonly AUTO_DETECTION_REQUESTED_FAILED: "5";
};
export type RegionDiscoveryOutcomes = typeof RegionDiscoveryOutcomes[keyof typeof RegionDiscoveryOutcomes];
export declare const CacheOutcome: {
readonly NO_CACHE_HIT: "0";
readonly FORCE_REFRESH: "1";
readonly NO_CACHED_ACCESS_TOKEN: "2";
readonly CACHED_ACCESS_TOKEN_EXPIRED: "3";
readonly REFRESH_CACHED_ACCESS_TOKEN: "4";
};
export type CacheOutcome = typeof CacheOutcome[keyof typeof CacheOutcome];
export declare const JsonTypes: {
readonly Jwt: "JWT";
readonly Jwk: "JWK";
readonly Pop: "pop";
};
export type JsonTypes = typeof JsonTypes[keyof typeof JsonTypes];
export declare const ONE_DAY_IN_MS = 86400000;
//# sourceMappingURL=Constants.d.ts.map

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -75,96 +75,91 @@ /*

*/
var HeaderNames;
(function (HeaderNames) {
HeaderNames["CONTENT_TYPE"] = "Content-Type";
HeaderNames["RETRY_AFTER"] = "Retry-After";
HeaderNames["CCS_HEADER"] = "X-AnchorMailbox";
HeaderNames["WWWAuthenticate"] = "WWW-Authenticate";
HeaderNames["AuthenticationInfo"] = "Authentication-Info";
HeaderNames["X_MS_REQUEST_ID"] = "x-ms-request-id";
HeaderNames["X_MS_HTTP_VERSION"] = "x-ms-httpver";
})(HeaderNames || (HeaderNames = {}));
const HeaderNames = {
CONTENT_TYPE: "Content-Type",
RETRY_AFTER: "Retry-After",
CCS_HEADER: "X-AnchorMailbox",
WWWAuthenticate: "WWW-Authenticate",
AuthenticationInfo: "Authentication-Info",
X_MS_REQUEST_ID: "x-ms-request-id",
X_MS_HTTP_VERSION: "x-ms-httpver",
};
/**
* Persistent cache keys MSAL which stay while user is logged in.
*/
var PersistentCacheKeys;
(function (PersistentCacheKeys) {
PersistentCacheKeys["ID_TOKEN"] = "idtoken";
PersistentCacheKeys["CLIENT_INFO"] = "client.info";
PersistentCacheKeys["ADAL_ID_TOKEN"] = "adal.idtoken";
PersistentCacheKeys["ERROR"] = "error";
PersistentCacheKeys["ERROR_DESC"] = "error.description";
PersistentCacheKeys["ACTIVE_ACCOUNT"] = "active-account";
PersistentCacheKeys["ACTIVE_ACCOUNT_FILTERS"] = "active-account-filters";
})(PersistentCacheKeys || (PersistentCacheKeys = {}));
const PersistentCacheKeys = {
ID_TOKEN: "idtoken",
CLIENT_INFO: "client.info",
ADAL_ID_TOKEN: "adal.idtoken",
ERROR: "error",
ERROR_DESC: "error.description",
ACTIVE_ACCOUNT: "active-account",
ACTIVE_ACCOUNT_FILTERS: "active-account-filters", // new cache entry for active_account for a more robust version for browser
};
/**
* String constants related to AAD Authority
*/
var AADAuthorityConstants;
(function (AADAuthorityConstants) {
AADAuthorityConstants["COMMON"] = "common";
AADAuthorityConstants["ORGANIZATIONS"] = "organizations";
AADAuthorityConstants["CONSUMERS"] = "consumers";
})(AADAuthorityConstants || (AADAuthorityConstants = {}));
const AADAuthorityConstants = {
COMMON: "common",
ORGANIZATIONS: "organizations",
CONSUMERS: "consumers",
};
/**
* Keys in the hashParams sent by AAD Server
*/
var AADServerParamKeys;
(function (AADServerParamKeys) {
AADServerParamKeys["CLIENT_ID"] = "client_id";
AADServerParamKeys["REDIRECT_URI"] = "redirect_uri";
AADServerParamKeys["RESPONSE_TYPE"] = "response_type";
AADServerParamKeys["RESPONSE_MODE"] = "response_mode";
AADServerParamKeys["GRANT_TYPE"] = "grant_type";
AADServerParamKeys["CLAIMS"] = "claims";
AADServerParamKeys["SCOPE"] = "scope";
AADServerParamKeys["ERROR"] = "error";
AADServerParamKeys["ERROR_DESCRIPTION"] = "error_description";
AADServerParamKeys["ACCESS_TOKEN"] = "access_token";
AADServerParamKeys["ID_TOKEN"] = "id_token";
AADServerParamKeys["REFRESH_TOKEN"] = "refresh_token";
AADServerParamKeys["EXPIRES_IN"] = "expires_in";
AADServerParamKeys["STATE"] = "state";
AADServerParamKeys["NONCE"] = "nonce";
AADServerParamKeys["PROMPT"] = "prompt";
AADServerParamKeys["SESSION_STATE"] = "session_state";
AADServerParamKeys["CLIENT_INFO"] = "client_info";
AADServerParamKeys["CODE"] = "code";
AADServerParamKeys["CODE_CHALLENGE"] = "code_challenge";
AADServerParamKeys["CODE_CHALLENGE_METHOD"] = "code_challenge_method";
AADServerParamKeys["CODE_VERIFIER"] = "code_verifier";
AADServerParamKeys["CLIENT_REQUEST_ID"] = "client-request-id";
AADServerParamKeys["X_CLIENT_SKU"] = "x-client-SKU";
AADServerParamKeys["X_CLIENT_VER"] = "x-client-VER";
AADServerParamKeys["X_CLIENT_OS"] = "x-client-OS";
AADServerParamKeys["X_CLIENT_CPU"] = "x-client-CPU";
AADServerParamKeys["X_CLIENT_CURR_TELEM"] = "x-client-current-telemetry";
AADServerParamKeys["X_CLIENT_LAST_TELEM"] = "x-client-last-telemetry";
AADServerParamKeys["X_MS_LIB_CAPABILITY"] = "x-ms-lib-capability";
AADServerParamKeys["X_APP_NAME"] = "x-app-name";
AADServerParamKeys["X_APP_VER"] = "x-app-ver";
AADServerParamKeys["POST_LOGOUT_URI"] = "post_logout_redirect_uri";
AADServerParamKeys["ID_TOKEN_HINT"] = "id_token_hint";
AADServerParamKeys["DEVICE_CODE"] = "device_code";
AADServerParamKeys["CLIENT_SECRET"] = "client_secret";
AADServerParamKeys["CLIENT_ASSERTION"] = "client_assertion";
AADServerParamKeys["CLIENT_ASSERTION_TYPE"] = "client_assertion_type";
AADServerParamKeys["TOKEN_TYPE"] = "token_type";
AADServerParamKeys["REQ_CNF"] = "req_cnf";
AADServerParamKeys["OBO_ASSERTION"] = "assertion";
AADServerParamKeys["REQUESTED_TOKEN_USE"] = "requested_token_use";
AADServerParamKeys["ON_BEHALF_OF"] = "on_behalf_of";
AADServerParamKeys["FOCI"] = "foci";
AADServerParamKeys["CCS_HEADER"] = "X-AnchorMailbox";
AADServerParamKeys["RETURN_SPA_CODE"] = "return_spa_code";
AADServerParamKeys["NATIVE_BROKER"] = "nativebroker";
AADServerParamKeys["LOGOUT_HINT"] = "logout_hint";
})(AADServerParamKeys || (AADServerParamKeys = {}));
const AADServerParamKeys = {
CLIENT_ID: "client_id",
REDIRECT_URI: "redirect_uri",
RESPONSE_TYPE: "response_type",
RESPONSE_MODE: "response_mode",
GRANT_TYPE: "grant_type",
CLAIMS: "claims",
SCOPE: "scope",
ERROR: "error",
ERROR_DESCRIPTION: "error_description",
ACCESS_TOKEN: "access_token",
ID_TOKEN: "id_token",
REFRESH_TOKEN: "refresh_token",
EXPIRES_IN: "expires_in",
STATE: "state",
NONCE: "nonce",
PROMPT: "prompt",
SESSION_STATE: "session_state",
CLIENT_INFO: "client_info",
CODE: "code",
CODE_CHALLENGE: "code_challenge",
CODE_CHALLENGE_METHOD: "code_challenge_method",
CODE_VERIFIER: "code_verifier",
CLIENT_REQUEST_ID: "client-request-id",
X_CLIENT_SKU: "x-client-SKU",
X_CLIENT_VER: "x-client-VER",
X_CLIENT_OS: "x-client-OS",
X_CLIENT_CPU: "x-client-CPU",
X_CLIENT_CURR_TELEM: "x-client-current-telemetry",
X_CLIENT_LAST_TELEM: "x-client-last-telemetry",
X_MS_LIB_CAPABILITY: "x-ms-lib-capability",
X_APP_NAME: "x-app-name",
X_APP_VER: "x-app-ver",
POST_LOGOUT_URI: "post_logout_redirect_uri",
ID_TOKEN_HINT: "id_token_hint",
DEVICE_CODE: "device_code",
CLIENT_SECRET: "client_secret",
CLIENT_ASSERTION: "client_assertion",
CLIENT_ASSERTION_TYPE: "client_assertion_type",
TOKEN_TYPE: "token_type",
REQ_CNF: "req_cnf",
OBO_ASSERTION: "assertion",
REQUESTED_TOKEN_USE: "requested_token_use",
ON_BEHALF_OF: "on_behalf_of",
FOCI: "foci",
CCS_HEADER: "X-AnchorMailbox",
RETURN_SPA_CODE: "return_spa_code",
NATIVE_BROKER: "nativebroker",
LOGOUT_HINT: "logout_hint",
};
/**
* Claims request keys
*/
var ClaimsRequestKeys;
(function (ClaimsRequestKeys) {
ClaimsRequestKeys["ACCESS_TOKEN"] = "access_token";
ClaimsRequestKeys["XMS_CC"] = "xms_cc";
})(ClaimsRequestKeys || (ClaimsRequestKeys = {}));
const ClaimsRequestKeys = {
ACCESS_TOKEN: "access_token",
XMS_CC: "xms_cc",
};
/**

@@ -186,14 +181,13 @@ * we considered making this "enum" in the request instead of string, however it looks like the allowed list of

*/
var SSOTypes;
(function (SSOTypes) {
SSOTypes["ACCOUNT"] = "account";
SSOTypes["SID"] = "sid";
SSOTypes["LOGIN_HINT"] = "login_hint";
SSOTypes["ID_TOKEN"] = "id_token";
SSOTypes["DOMAIN_HINT"] = "domain_hint";
SSOTypes["ORGANIZATIONS"] = "organizations";
SSOTypes["CONSUMERS"] = "consumers";
SSOTypes["ACCOUNT_ID"] = "accountIdentifier";
SSOTypes["HOMEACCOUNT_ID"] = "homeAccountIdentifier";
})(SSOTypes || (SSOTypes = {}));
const SSOTypes = {
ACCOUNT: "account",
SID: "sid",
LOGIN_HINT: "login_hint",
ID_TOKEN: "id_token",
DOMAIN_HINT: "domain_hint",
ORGANIZATIONS: "organizations",
CONSUMERS: "consumers",
ACCOUNT_ID: "accountIdentifier",
HOMEACCOUNT_ID: "homeAccountIdentifier",
};
/**

@@ -209,64 +203,58 @@ * allowed values for codeVerifier

*/
var ResponseMode;
(function (ResponseMode) {
ResponseMode["QUERY"] = "query";
ResponseMode["FRAGMENT"] = "fragment";
ResponseMode["FORM_POST"] = "form_post";
})(ResponseMode || (ResponseMode = {}));
const ResponseMode = {
QUERY: "query",
FRAGMENT: "fragment",
FORM_POST: "form_post",
};
/**
* allowed grant_type
*/
var GrantType;
(function (GrantType) {
GrantType["IMPLICIT_GRANT"] = "implicit";
GrantType["AUTHORIZATION_CODE_GRANT"] = "authorization_code";
GrantType["CLIENT_CREDENTIALS_GRANT"] = "client_credentials";
GrantType["RESOURCE_OWNER_PASSWORD_GRANT"] = "password";
GrantType["REFRESH_TOKEN_GRANT"] = "refresh_token";
GrantType["DEVICE_CODE_GRANT"] = "device_code";
GrantType["JWT_BEARER"] = "urn:ietf:params:oauth:grant-type:jwt-bearer";
})(GrantType || (GrantType = {}));
const GrantType = {
IMPLICIT_GRANT: "implicit",
AUTHORIZATION_CODE_GRANT: "authorization_code",
CLIENT_CREDENTIALS_GRANT: "client_credentials",
RESOURCE_OWNER_PASSWORD_GRANT: "password",
REFRESH_TOKEN_GRANT: "refresh_token",
DEVICE_CODE_GRANT: "device_code",
JWT_BEARER: "urn:ietf:params:oauth:grant-type:jwt-bearer",
};
/**
* Account types in Cache
*/
var CacheAccountType;
(function (CacheAccountType) {
CacheAccountType["MSSTS_ACCOUNT_TYPE"] = "MSSTS";
CacheAccountType["ADFS_ACCOUNT_TYPE"] = "ADFS";
CacheAccountType["MSAV1_ACCOUNT_TYPE"] = "MSA";
CacheAccountType["GENERIC_ACCOUNT_TYPE"] = "Generic";
})(CacheAccountType || (CacheAccountType = {}));
const CacheAccountType = {
MSSTS_ACCOUNT_TYPE: "MSSTS",
ADFS_ACCOUNT_TYPE: "ADFS",
MSAV1_ACCOUNT_TYPE: "MSA",
GENERIC_ACCOUNT_TYPE: "Generic", // NTLM, Kerberos, FBA, Basic etc
};
/**
* Separators used in cache
*/
var Separators;
(function (Separators) {
Separators["CACHE_KEY_SEPARATOR"] = "-";
Separators["CLIENT_INFO_SEPARATOR"] = ".";
})(Separators || (Separators = {}));
const Separators = {
CACHE_KEY_SEPARATOR: "-",
CLIENT_INFO_SEPARATOR: ".",
};
/**
* Credential Type stored in the cache
*/
var CredentialType;
(function (CredentialType) {
CredentialType["ID_TOKEN"] = "IdToken";
CredentialType["ACCESS_TOKEN"] = "AccessToken";
CredentialType["ACCESS_TOKEN_WITH_AUTH_SCHEME"] = "AccessToken_With_AuthScheme";
CredentialType["REFRESH_TOKEN"] = "RefreshToken";
})(CredentialType || (CredentialType = {}));
const CredentialType = {
ID_TOKEN: "IdToken",
ACCESS_TOKEN: "AccessToken",
ACCESS_TOKEN_WITH_AUTH_SCHEME: "AccessToken_With_AuthScheme",
REFRESH_TOKEN: "RefreshToken",
};
/**
* Combine all cache types
*/
var CacheType;
(function (CacheType) {
CacheType[CacheType["ADFS"] = 1001] = "ADFS";
CacheType[CacheType["MSA"] = 1002] = "MSA";
CacheType[CacheType["MSSTS"] = 1003] = "MSSTS";
CacheType[CacheType["GENERIC"] = 1004] = "GENERIC";
CacheType[CacheType["ACCESS_TOKEN"] = 2001] = "ACCESS_TOKEN";
CacheType[CacheType["REFRESH_TOKEN"] = 2002] = "REFRESH_TOKEN";
CacheType[CacheType["ID_TOKEN"] = 2003] = "ID_TOKEN";
CacheType[CacheType["APP_METADATA"] = 3001] = "APP_METADATA";
CacheType[CacheType["UNDEFINED"] = 9999] = "UNDEFINED";
})(CacheType || (CacheType = {}));
const CacheType = {
ADFS: 1001,
MSA: 1002,
MSSTS: 1003,
GENERIC: 1004,
ACCESS_TOKEN: 2001,
REFRESH_TOKEN: 2002,
ID_TOKEN: 2003,
APP_METADATA: 3001,
UNDEFINED: 9999,
};
/**

@@ -282,9 +270,8 @@ * More Cache related constants

};
var AuthorityMetadataSource;
(function (AuthorityMetadataSource) {
AuthorityMetadataSource["CONFIG"] = "config";
AuthorityMetadataSource["CACHE"] = "cache";
AuthorityMetadataSource["NETWORK"] = "network";
AuthorityMetadataSource["HARDCODED_VALUES"] = "hardcoded_values";
})(AuthorityMetadataSource || (AuthorityMetadataSource = {}));
const AuthorityMetadataSource = {
CONFIG: "config",
CACHE: "cache",
NETWORK: "network",
HARDCODED_VALUES: "hardcoded_values",
};
const SERVER_TELEM_CONSTANTS = {

@@ -305,8 +292,7 @@ SCHEMA_VERSION: 5,

*/
var AuthenticationScheme;
(function (AuthenticationScheme) {
AuthenticationScheme["BEARER"] = "Bearer";
AuthenticationScheme["POP"] = "pop";
AuthenticationScheme["SSH"] = "ssh-cert";
})(AuthenticationScheme || (AuthenticationScheme = {}));
const AuthenticationScheme = {
BEARER: "Bearer",
POP: "pop",
SSH: "ssh-cert",
};
/**

@@ -332,50 +318,44 @@ * Constants related to throttling

*/
var PasswordGrantConstants;
(function (PasswordGrantConstants) {
PasswordGrantConstants["username"] = "username";
PasswordGrantConstants["password"] = "password";
})(PasswordGrantConstants || (PasswordGrantConstants = {}));
const PasswordGrantConstants = {
username: "username",
password: "password",
};
/**
* Response codes
*/
var ResponseCodes;
(function (ResponseCodes) {
ResponseCodes[ResponseCodes["httpSuccess"] = 200] = "httpSuccess";
ResponseCodes[ResponseCodes["httpBadRequest"] = 400] = "httpBadRequest";
})(ResponseCodes || (ResponseCodes = {}));
const ResponseCodes = {
httpSuccess: 200,
httpBadRequest: 400,
};
/**
* Region Discovery Sources
*/
var RegionDiscoverySources;
(function (RegionDiscoverySources) {
RegionDiscoverySources["FAILED_AUTO_DETECTION"] = "1";
RegionDiscoverySources["INTERNAL_CACHE"] = "2";
RegionDiscoverySources["ENVIRONMENT_VARIABLE"] = "3";
RegionDiscoverySources["IMDS"] = "4";
})(RegionDiscoverySources || (RegionDiscoverySources = {}));
const RegionDiscoverySources = {
FAILED_AUTO_DETECTION: "1",
INTERNAL_CACHE: "2",
ENVIRONMENT_VARIABLE: "3",
IMDS: "4",
};
/**
* Region Discovery Outcomes
*/
var RegionDiscoveryOutcomes;
(function (RegionDiscoveryOutcomes) {
RegionDiscoveryOutcomes["CONFIGURED_MATCHES_DETECTED"] = "1";
RegionDiscoveryOutcomes["CONFIGURED_NO_AUTO_DETECTION"] = "2";
RegionDiscoveryOutcomes["CONFIGURED_NOT_DETECTED"] = "3";
RegionDiscoveryOutcomes["AUTO_DETECTION_REQUESTED_SUCCESSFUL"] = "4";
RegionDiscoveryOutcomes["AUTO_DETECTION_REQUESTED_FAILED"] = "5";
})(RegionDiscoveryOutcomes || (RegionDiscoveryOutcomes = {}));
var CacheOutcome;
(function (CacheOutcome) {
CacheOutcome["NO_CACHE_HIT"] = "0";
CacheOutcome["FORCE_REFRESH"] = "1";
CacheOutcome["NO_CACHED_ACCESS_TOKEN"] = "2";
CacheOutcome["CACHED_ACCESS_TOKEN_EXPIRED"] = "3";
CacheOutcome["REFRESH_CACHED_ACCESS_TOKEN"] = "4";
})(CacheOutcome || (CacheOutcome = {}));
var JsonTypes;
(function (JsonTypes) {
JsonTypes["Jwt"] = "JWT";
JsonTypes["Jwk"] = "JWK";
JsonTypes["Pop"] = "pop";
})(JsonTypes || (JsonTypes = {}));
const RegionDiscoveryOutcomes = {
CONFIGURED_MATCHES_DETECTED: "1",
CONFIGURED_NO_AUTO_DETECTION: "2",
CONFIGURED_NOT_DETECTED: "3",
AUTO_DETECTION_REQUESTED_SUCCESSFUL: "4",
AUTO_DETECTION_REQUESTED_FAILED: "5",
};
const CacheOutcome = {
NO_CACHE_HIT: "0",
FORCE_REFRESH: "1",
NO_CACHED_ACCESS_TOKEN: "2",
CACHED_ACCESS_TOKEN_EXPIRED: "3",
REFRESH_CACHED_ACCESS_TOKEN: "4",
};
const JsonTypes = {
Jwt: "JWT",
Jwk: "JWK",
Pop: "pop",
};
const ONE_DAY_IN_MS = 86400000;

@@ -382,0 +362,0 @@

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { StringUtils } from './StringUtils.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ import { ClientAuthError } from '../error/ClientAuthError.js';

@@ -1,2 +0,2 @@

/*! @azure/msal-common v14.0.0-alpha.2 2023-05-17 */
/*! @azure/msal-common v14.0.0-beta.0 2023-06-19 */
'use strict';

@@ -3,0 +3,0 @@ /*

@@ -13,3 +13,3 @@ {

},
"version": "14.0.0-alpha.2",
"version": "14.0.0-beta.0",
"description": "Microsoft Authentication Library for js",

@@ -55,2 +55,9 @@ "keywords": [

},
"beachball": {
"disallowedChangeTypes": [
"patch",
"minor",
"major"
]
},
"devDependencies": {

@@ -57,0 +64,0 @@ "@babel/core": "^7.7.2",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc