UNPKG

@azure/msal-browser

Version:
40 lines (38 loc) 1.23 kB
/*! @azure/msal-browser v5.6.3 2026-04-01 */ 'use strict'; /* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * Temporary cache keys for MSAL, deleted after any request. */ const TemporaryCacheKeys = { ORIGIN_URI: "request.origin", URL_HASH: "urlHash", REQUEST_PARAMS: "request.params", VERIFIER: "code.verifier", INTERACTION_STATUS_KEY: "interaction.status", NATIVE_REQUEST: "request.native", }; /** * API Codes for Telemetry purposes. * Before adding a new code you must claim it in the MSAL Telemetry tracker as these number spaces are shared across all MSALs * 0-99 Silent Flow * 800-899 Auth Code Flow * 900-999 Misc */ const ApiId = { handleRedirectPromise: 865}; /* * Interaction type of the API - used for state and telemetry */ var InteractionType; (function (InteractionType) { InteractionType["Redirect"] = "redirect"; InteractionType["Popup"] = "popup"; InteractionType["Silent"] = "silent"; InteractionType["None"] = "none"; })(InteractionType || (InteractionType = {})); export { ApiId, InteractionType, TemporaryCacheKeys }; //# sourceMappingURL=BrowserConstants.mjs.map