@azure/msal-browser 3.5.0 → 3.5.1-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app/IPublicClientApplication.d.ts +51 -51
- package/dist/app/IPublicClientApplication.mjs +102 -102
- package/dist/app/PublicClientApplication.d.ts +268 -268
- package/dist/app/PublicClientApplication.mjs +333 -333
- package/dist/app/PublicClientNext.d.ts +273 -273
- package/dist/app/PublicClientNext.mjs +351 -351
- package/dist/broker/nativeBroker/NativeMessageHandler.d.ts +62 -62
- package/dist/broker/nativeBroker/NativeMessageHandler.mjs +254 -254
- package/dist/broker/nativeBroker/NativeRequest.d.ts +44 -44
- package/dist/broker/nativeBroker/NativeResponse.d.ts +48 -48
- package/dist/broker/nativeBroker/NativeStatusCodes.d.ts +7 -7
- package/dist/broker/nativeBroker/NativeStatusCodes.mjs +11 -11
- package/dist/cache/AsyncMemoryStorage.d.ts +51 -51
- package/dist/cache/AsyncMemoryStorage.mjs +132 -132
- package/dist/cache/BrowserCacheManager.d.ts +383 -383
- package/dist/cache/BrowserCacheManager.mjs +1262 -1262
- package/dist/cache/BrowserStorage.d.ts +11 -11
- package/dist/cache/BrowserStorage.mjs +32 -32
- package/dist/cache/CryptoKeyStore.d.ts +18 -18
- package/dist/cache/CryptoKeyStore.mjs +40 -40
- package/dist/cache/DatabaseStorage.d.ts +56 -56
- package/dist/cache/DatabaseStorage.mjs +190 -190
- package/dist/cache/IAsyncMemoryStorage.d.ts +27 -27
- package/dist/cache/ITokenCache.d.ts +11 -11
- package/dist/cache/IWindowStorage.d.ts +27 -27
- package/dist/cache/MemoryStorage.d.ts +11 -11
- package/dist/cache/MemoryStorage.mjs +31 -31
- package/dist/cache/TokenCache.d.ts +77 -77
- package/dist/cache/TokenCache.mjs +224 -224
- package/dist/config/Configuration.d.ts +206 -206
- package/dist/config/Configuration.mjs +128 -128
- package/dist/controllers/ControllerFactory.d.ts +4 -4
- package/dist/controllers/ControllerFactory.mjs +29 -29
- package/dist/controllers/IController.d.ts +61 -61
- package/dist/controllers/NestedAppAuthController.d.ts +95 -95
- package/dist/controllers/NestedAppAuthController.d.ts.map +1 -1
- package/dist/controllers/NestedAppAuthController.mjs +335 -333
- package/dist/controllers/NestedAppAuthController.mjs.map +1 -1
- package/dist/controllers/StandardController.d.ts +407 -407
- package/dist/controllers/StandardController.d.ts.map +1 -1
- package/dist/controllers/StandardController.mjs +1293 -1291
- package/dist/controllers/StandardController.mjs.map +1 -1
- package/dist/controllers/UnknownOperatingContextController.d.ts +87 -87
- package/dist/controllers/UnknownOperatingContextController.mjs +264 -264
- package/dist/crypto/BrowserCrypto.d.ts +44 -44
- package/dist/crypto/BrowserCrypto.mjs +93 -93
- package/dist/crypto/CryptoOps.d.ts +63 -63
- package/dist/crypto/CryptoOps.mjs +145 -145
- package/dist/crypto/PkceGenerator.d.ts +8 -8
- package/dist/crypto/PkceGenerator.mjs +54 -54
- package/dist/crypto/SignedHttpRequest.d.ts +30 -30
- package/dist/crypto/SignedHttpRequest.mjs +39 -39
- package/dist/encode/Base64Decode.d.ts +9 -9
- package/dist/encode/Base64Decode.mjs +36 -36
- package/dist/encode/Base64Encode.d.ts +19 -19
- package/dist/encode/Base64Encode.mjs +43 -43
- package/dist/error/BrowserAuthError.d.ts +250 -250
- package/dist/error/BrowserAuthError.mjs +258 -258
- package/dist/error/BrowserAuthErrorCodes.d.ts +45 -45
- package/dist/error/BrowserAuthErrorCodes.mjs +49 -49
- package/dist/error/BrowserConfigurationAuthError.d.ts +33 -33
- package/dist/error/BrowserConfigurationAuthError.mjs +40 -40
- package/dist/error/BrowserConfigurationAuthErrorCodes.d.ts +3 -3
- package/dist/error/BrowserConfigurationAuthErrorCodes.mjs +7 -7
- package/dist/error/NativeAuthError.d.ts +29 -29
- package/dist/error/NativeAuthError.mjs +60 -60
- package/dist/error/NativeAuthErrorCodes.d.ts +2 -2
- package/dist/error/NativeAuthErrorCodes.mjs +6 -6
- package/dist/error/NestedAppAuthError.d.ts +14 -14
- package/dist/error/NestedAppAuthError.mjs +23 -23
- package/dist/event/EventHandler.d.ts +41 -41
- package/dist/event/EventHandler.mjs +119 -119
- package/dist/event/EventMessage.d.ts +25 -25
- package/dist/event/EventMessage.mjs +68 -68
- package/dist/event/EventType.d.ts +28 -28
- package/dist/event/EventType.mjs +31 -31
- package/dist/index.d.ts +39 -39
- package/dist/index.mjs +1 -1
- package/dist/interaction_client/BaseInteractionClient.d.ts +54 -54
- package/dist/interaction_client/BaseInteractionClient.mjs +152 -152
- package/dist/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +4 -4
- package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs +10 -10
- package/dist/interaction_client/NativeInteractionClient.d.ts +140 -140
- package/dist/interaction_client/NativeInteractionClient.mjs +548 -548
- package/dist/interaction_client/PopupClient.d.ts +105 -105
- package/dist/interaction_client/PopupClient.mjs +432 -432
- package/dist/interaction_client/RedirectClient.d.ts +49 -49
- package/dist/interaction_client/RedirectClient.mjs +311 -311
- package/dist/interaction_client/SilentAuthCodeClient.d.ts +23 -23
- package/dist/interaction_client/SilentAuthCodeClient.mjs +57 -57
- package/dist/interaction_client/SilentCacheClient.d.ts +24 -24
- package/dist/interaction_client/SilentCacheClient.mjs +61 -61
- package/dist/interaction_client/SilentIframeClient.d.ts +32 -32
- package/dist/interaction_client/SilentIframeClient.mjs +96 -96
- package/dist/interaction_client/SilentRefreshClient.d.ts +20 -20
- package/dist/interaction_client/SilentRefreshClient.mjs +43 -43
- package/dist/interaction_client/StandardInteractionClient.d.ts +54 -54
- package/dist/interaction_client/StandardInteractionClient.mjs +222 -222
- package/dist/interaction_handler/InteractionHandler.d.ts +33 -33
- package/dist/interaction_handler/InteractionHandler.mjs +93 -93
- package/dist/interaction_handler/RedirectHandler.d.ts +32 -32
- package/dist/interaction_handler/RedirectHandler.mjs +134 -134
- package/dist/interaction_handler/SilentHandler.d.ts +13 -13
- package/dist/interaction_handler/SilentHandler.mjs +133 -133
- package/dist/naa/AccountInfo.d.ts +11 -12
- package/dist/naa/AccountInfo.d.ts.map +1 -1
- package/dist/naa/AccountRequests.d.ts +9 -9
- package/dist/naa/AuthBridge.d.ts +5 -5
- package/dist/naa/BridgeCapabilities.d.ts +3 -3
- package/dist/naa/BridgeError.d.ts +9 -9
- package/dist/naa/BridgeError.d.ts.map +1 -1
- package/dist/naa/BridgeError.mjs +7 -7
- package/dist/naa/BridgeError.mjs.map +1 -1
- package/dist/naa/BridgeProxy.d.ts +72 -71
- package/dist/naa/BridgeProxy.d.ts.map +1 -1
- package/dist/naa/BridgeProxy.mjs +152 -149
- package/dist/naa/BridgeProxy.mjs.map +1 -1
- package/dist/naa/BridgeRequest.d.ts +6 -6
- package/dist/naa/BridgeRequestEnvelope.d.ts +13 -13
- package/dist/naa/BridgeResponseEnvelope.d.ts +10 -10
- package/dist/naa/BridgeStatusCode.d.ts +10 -10
- package/dist/naa/BridgeStatusCode.mjs +15 -15
- package/dist/naa/IBridgeProxy.d.ts +12 -10
- package/dist/naa/IBridgeProxy.d.ts.map +1 -1
- package/dist/naa/InitializeBridgeResponse.d.ts +6 -6
- package/dist/naa/InitializeBridgeResponse.d.ts.map +1 -1
- package/dist/naa/TokenRequest.d.ts +19 -21
- package/dist/naa/TokenRequest.d.ts.map +1 -1
- package/dist/naa/TokenResponse.d.ts +15 -16
- package/dist/naa/TokenResponse.d.ts.map +1 -1
- package/dist/naa/mapping/NestedAppAuthAdapter.d.ts +23 -25
- package/dist/naa/mapping/NestedAppAuthAdapter.d.ts.map +1 -1
- package/dist/naa/mapping/NestedAppAuthAdapter.mjs +142 -170
- package/dist/naa/mapping/NestedAppAuthAdapter.mjs.map +1 -1
- package/dist/navigation/INavigationClient.d.ts +16 -16
- package/dist/navigation/NavigationClient.d.ts +22 -22
- package/dist/navigation/NavigationClient.mjs +40 -40
- package/dist/navigation/NavigationOptions.d.ts +12 -12
- package/dist/network/FetchClient.d.ts +26 -26
- package/dist/network/FetchClient.mjs +99 -99
- package/dist/operatingcontext/BaseOperatingContext.d.ts +40 -40
- package/dist/operatingcontext/BaseOperatingContext.mjs +44 -44
- package/dist/operatingcontext/StandardOperatingContext.d.ts +25 -25
- package/dist/operatingcontext/StandardOperatingContext.mjs +43 -43
- package/dist/operatingcontext/TeamsAppOperatingContext.d.ts +32 -32
- package/dist/operatingcontext/TeamsAppOperatingContext.d.ts.map +1 -1
- package/dist/operatingcontext/TeamsAppOperatingContext.mjs +85 -82
- package/dist/operatingcontext/TeamsAppOperatingContext.mjs.map +1 -1
- package/dist/operatingcontext/UnknownOperatingContext.d.ts +25 -25
- package/dist/operatingcontext/UnknownOperatingContext.mjs +42 -42
- package/dist/packageMetadata.d.ts +2 -2
- package/dist/packageMetadata.d.ts.map +1 -1
- package/dist/packageMetadata.mjs +4 -4
- package/dist/packageMetadata.mjs.map +1 -1
- package/dist/request/AuthorizationCodeRequest.d.ts +8 -8
- package/dist/request/AuthorizationUrlRequest.d.ts +8 -8
- package/dist/request/ClearCacheRequest.d.ts +10 -10
- package/dist/request/EndSessionPopupRequest.d.ts +18 -18
- package/dist/request/EndSessionRequest.d.ts +15 -15
- package/dist/request/PopupRequest.d.ts +34 -34
- package/dist/request/PopupWindowAttributes.d.ts +15 -15
- package/dist/request/RedirectRequest.d.ts +35 -35
- package/dist/request/SilentRequest.d.ts +32 -32
- package/dist/request/SsoSilentRequest.d.ts +29 -29
- package/dist/response/AuthenticationResult.d.ts +4 -4
- package/dist/response/ResponseHandler.d.ts +7 -7
- package/dist/response/ResponseHandler.mjs +36 -36
- package/dist/telemetry/BrowserPerformanceClient.d.ts +36 -36
- package/dist/telemetry/BrowserPerformanceClient.mjs +125 -125
- package/dist/telemetry/BrowserPerformanceMeasurement.d.ts +21 -21
- package/dist/telemetry/BrowserPerformanceMeasurement.mjs +92 -92
- package/dist/utils/BrowserConstants.d.ts +176 -176
- package/dist/utils/BrowserConstants.mjs +204 -204
- package/dist/utils/BrowserProtocolUtils.d.ts +11 -11
- package/dist/utils/BrowserProtocolUtils.mjs +21 -21
- package/dist/utils/BrowserUtils.d.ts +56 -56
- package/dist/utils/BrowserUtils.mjs +125 -125
- package/lib/msal-browser.cjs +17922 -17928
- package/lib/msal-browser.cjs.map +1 -1
- package/lib/msal-browser.js +17922 -17928
- package/lib/msal-browser.js.map +1 -1
- package/lib/msal-browser.min.js +59 -59
- package/package.json +102 -102
- package/src/controllers/NestedAppAuthController.ts +8 -3
- package/src/controllers/StandardController.ts +3 -1
- package/src/naa/AccountInfo.ts +3 -4
- package/src/naa/BridgeError.ts +4 -4
- package/src/naa/BridgeProxy.ts +6 -2
- package/src/naa/IBridgeProxy.ts +2 -0
- package/src/naa/InitializeBridgeResponse.ts +1 -1
- package/src/naa/TokenRequest.ts +0 -2
- package/src/naa/TokenResponse.ts +1 -2
- package/src/naa/mapping/NestedAppAuthAdapter.ts +72 -80
- package/src/operatingcontext/TeamsAppOperatingContext.ts +4 -1
- package/src/packageMetadata.ts +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NestedAppAuthAdapter.d.ts","sourceRoot":"","sources":["../../../src/naa/mapping/NestedAppAuthAdapter.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,WAAW,IAAI,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC/D,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAChE,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAC1D,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACjD,OAAO,EACH,WAAW,IAAI,eAAe,EAC9B,SAAS,EACT,eAAe,EACf,wBAAwB,EACxB,4BAA4B,EAC5B,WAAW,
|
|
1
|
+
{"version":3,"file":"NestedAppAuthAdapter.d.ts","sourceRoot":"","sources":["../../../src/naa/mapping/NestedAppAuthAdapter.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,WAAW,IAAI,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC/D,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAChE,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAC1D,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACjD,OAAO,EACH,WAAW,IAAI,eAAe,EAC9B,SAAS,EACT,eAAe,EACf,wBAAwB,EACxB,4BAA4B,EAC5B,WAAW,EACX,OAAO,EACP,MAAM,EAEN,WAAW,EAMd,MAAM,oBAAoB,CAAC;AAG5B,OAAO,EAAE,oBAAoB,EAAE,MAAM,qCAAqC,CAAC;AAG3E,qBAAa,oBAAoB;IAC7B,SAAS,CAAC,MAAM,EAAE,OAAO,CAAC;IAC1B,SAAS,CAAC,MAAM,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,QAAQ,EAAE,MAAM,CAAC;IAC3B,SAAS,CAAC,kBAAkB,EAAE,MAAM,EAAE,CAAC;gBAGnC,QAAQ,EAAE,MAAM,EAChB,kBAAkB,EAAE,MAAM,EAAE,EAC5B,MAAM,EAAE,OAAO,EACf,MAAM,EAAE,MAAM;IAQX,iBAAiB,CACpB,OAAO,EAAE,YAAY,GAAG,eAAe,GACxC,YAAY;IAmCR,oBAAoB,CACvB,OAAO,EAAE,YAAY,EACrB,QAAQ,EAAE,aAAa,EACvB,YAAY,EAAE,MAAM,GACrB,oBAAoB;IA4DhB,kBAAkB,CACrB,WAAW,EAAE,cAAc,EAC3B,aAAa,CAAC,EAAE,WAAW,GAC5B,eAAe;IAqClB;;;;OAIG;IACI,eAAe,CAClB,KAAK,EAAE,OAAO,GAEZ,SAAS,GACT,eAAe,GACf,wBAAwB,GACxB,WAAW,GACX,4BAA4B;CAwCrC"}
|
|
@@ -1,177 +1,149 @@
|
|
|
1
|
-
/*! @azure/msal-browser v3.5.
|
|
1
|
+
/*! @azure/msal-browser v3.5.1-beta.1 2023-11-14 */
|
|
2
2
|
'use strict';
|
|
3
|
-
import {
|
|
3
|
+
import { RequestParameterBuilder, StringUtils, AuthenticationScheme, createClientAuthError, ClientAuthErrorCodes, AuthToken, AuthError, InteractionRequiredAuthError, ServerError, ClientAuthError } from '@azure/msal-common';
|
|
4
4
|
import { isBridgeError } from '../BridgeError.mjs';
|
|
5
5
|
import { BridgeStatusCode } from '../BridgeStatusCode.mjs';
|
|
6
6
|
|
|
7
|
-
/*
|
|
8
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
9
|
-
* Licensed under the MIT License.
|
|
10
|
-
*/
|
|
11
|
-
class NestedAppAuthAdapter {
|
|
12
|
-
constructor(clientId, clientCapabilities, crypto, logger) {
|
|
13
|
-
this.clientId = clientId;
|
|
14
|
-
this.clientCapabilities = clientCapabilities;
|
|
15
|
-
this.crypto = crypto;
|
|
16
|
-
this.logger = logger;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
let extraParams;
|
|
20
|
-
if (request.extraQueryParameters === undefined) {
|
|
21
|
-
extraParams = new Map();
|
|
22
|
-
}
|
|
23
|
-
else {
|
|
24
|
-
extraParams = new Map(Object.entries(request.extraQueryParameters));
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
*
|
|
117
|
-
*
|
|
118
|
-
*
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
* @returns AuthError, ClientAuthError, ClientConfigurationError, ServerError, InteractionRequiredError
|
|
148
|
-
*/
|
|
149
|
-
fromBridgeError(error) {
|
|
150
|
-
if (isBridgeError(error)) {
|
|
151
|
-
switch (error.status) {
|
|
152
|
-
case BridgeStatusCode.USER_CANCEL:
|
|
153
|
-
return new ClientAuthError(ClientAuthErrorCodes.userCanceled);
|
|
154
|
-
case BridgeStatusCode.NO_NETWORK:
|
|
155
|
-
return new ClientAuthError(ClientAuthErrorCodes.noNetworkConnectivity);
|
|
156
|
-
case BridgeStatusCode.ACCOUNT_UNAVAILABLE:
|
|
157
|
-
return new ClientAuthError(ClientAuthErrorCodes.noAccountFound);
|
|
158
|
-
case BridgeStatusCode.DISABLED:
|
|
159
|
-
return new ClientAuthError(ClientAuthErrorCodes.nestedAppAuthBridgeDisabled);
|
|
160
|
-
case BridgeStatusCode.NESTED_APP_AUTH_UNAVAILABLE:
|
|
161
|
-
return new ClientAuthError(error.code, error.description);
|
|
162
|
-
case BridgeStatusCode.TRANSIENT_ERROR:
|
|
163
|
-
case BridgeStatusCode.PERSISTENT_ERROR:
|
|
164
|
-
return new ServerError(error.code, error.description);
|
|
165
|
-
case BridgeStatusCode.USER_INTERACTION_REQUIRED:
|
|
166
|
-
return new InteractionRequiredAuthError(error.code, error.description);
|
|
167
|
-
default:
|
|
168
|
-
return new AuthError(error.code, error.description);
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
else {
|
|
172
|
-
return new AuthError("unknown_error", "An unknown error occurred");
|
|
173
|
-
}
|
|
174
|
-
}
|
|
7
|
+
/*
|
|
8
|
+
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
9
|
+
* Licensed under the MIT License.
|
|
10
|
+
*/
|
|
11
|
+
class NestedAppAuthAdapter {
|
|
12
|
+
constructor(clientId, clientCapabilities, crypto, logger) {
|
|
13
|
+
this.clientId = clientId;
|
|
14
|
+
this.clientCapabilities = clientCapabilities;
|
|
15
|
+
this.crypto = crypto;
|
|
16
|
+
this.logger = logger;
|
|
17
|
+
}
|
|
18
|
+
toNaaTokenRequest(request) {
|
|
19
|
+
let extraParams;
|
|
20
|
+
if (request.extraQueryParameters === undefined) {
|
|
21
|
+
extraParams = new Map();
|
|
22
|
+
}
|
|
23
|
+
else {
|
|
24
|
+
extraParams = new Map(Object.entries(request.extraQueryParameters));
|
|
25
|
+
}
|
|
26
|
+
const requestBuilder = new RequestParameterBuilder();
|
|
27
|
+
const claims = requestBuilder.addClientCapabilitiesToClaims(request.claims, this.clientCapabilities);
|
|
28
|
+
const tokenRequest = {
|
|
29
|
+
userObjectId: request.account?.homeAccountId,
|
|
30
|
+
clientId: this.clientId,
|
|
31
|
+
authority: request.authority,
|
|
32
|
+
scope: request.scopes.join(" "),
|
|
33
|
+
correlationId: request.correlationId !== undefined
|
|
34
|
+
? request.correlationId
|
|
35
|
+
: this.crypto.createNewGuid(),
|
|
36
|
+
nonce: request.nonce,
|
|
37
|
+
claims: !StringUtils.isEmptyObj(claims) ? claims : undefined,
|
|
38
|
+
state: request.state,
|
|
39
|
+
authenticationScheme: request.authenticationScheme || AuthenticationScheme.BEARER,
|
|
40
|
+
extraParameters: extraParams,
|
|
41
|
+
};
|
|
42
|
+
return tokenRequest;
|
|
43
|
+
}
|
|
44
|
+
fromNaaTokenResponse(request, response, reqTimestamp) {
|
|
45
|
+
if (!response.id_token || !response.access_token) {
|
|
46
|
+
throw createClientAuthError(ClientAuthErrorCodes.nullOrEmptyToken);
|
|
47
|
+
}
|
|
48
|
+
const expiresOn = new Date((reqTimestamp + (response.expires_in || 0)) * 1000);
|
|
49
|
+
const idTokenClaims = AuthToken.extractTokenClaims(response.id_token, this.crypto.base64Decode);
|
|
50
|
+
const account = this.fromNaaAccountInfo(response.account, idTokenClaims);
|
|
51
|
+
const authenticationResult = {
|
|
52
|
+
authority: response.authority || account.environment,
|
|
53
|
+
uniqueId: account.localAccountId,
|
|
54
|
+
tenantId: account.tenantId,
|
|
55
|
+
scopes: response.scope.split(" "),
|
|
56
|
+
account,
|
|
57
|
+
idToken: response.id_token !== undefined ? response.id_token : "",
|
|
58
|
+
idTokenClaims,
|
|
59
|
+
accessToken: response.access_token,
|
|
60
|
+
fromCache: true,
|
|
61
|
+
expiresOn: expiresOn,
|
|
62
|
+
tokenType: request.authenticationScheme || AuthenticationScheme.BEARER,
|
|
63
|
+
correlationId: request.correlationId,
|
|
64
|
+
extExpiresOn: expiresOn,
|
|
65
|
+
state: request.state,
|
|
66
|
+
};
|
|
67
|
+
return authenticationResult;
|
|
68
|
+
}
|
|
69
|
+
/*
|
|
70
|
+
* export type AccountInfo = {
|
|
71
|
+
* homeAccountId: string;
|
|
72
|
+
* environment: string;
|
|
73
|
+
* tenantId: string;
|
|
74
|
+
* username: string;
|
|
75
|
+
* localAccountId: string;
|
|
76
|
+
* name?: string;
|
|
77
|
+
* idToken?: string;
|
|
78
|
+
* idTokenClaims?: TokenClaims & {
|
|
79
|
+
* [key: string]:
|
|
80
|
+
* | string
|
|
81
|
+
* | number
|
|
82
|
+
* | string[]
|
|
83
|
+
* | object
|
|
84
|
+
* | undefined
|
|
85
|
+
* | unknown;
|
|
86
|
+
* };
|
|
87
|
+
* nativeAccountId?: string;
|
|
88
|
+
* authorityType?: string;
|
|
89
|
+
* };
|
|
90
|
+
*/
|
|
91
|
+
fromNaaAccountInfo(fromAccount, idTokenClaims) {
|
|
92
|
+
const effectiveIdTokenClaims = idTokenClaims || fromAccount.idTokenClaims;
|
|
93
|
+
const localAccountId = fromAccount.localAccountId ||
|
|
94
|
+
effectiveIdTokenClaims?.oid ||
|
|
95
|
+
effectiveIdTokenClaims?.sub ||
|
|
96
|
+
"";
|
|
97
|
+
const tenantId = fromAccount.tenantId || effectiveIdTokenClaims?.tid || "";
|
|
98
|
+
const homeAccountId = fromAccount.homeAccountId || `${localAccountId}.${tenantId}`;
|
|
99
|
+
const username = fromAccount.username ||
|
|
100
|
+
effectiveIdTokenClaims?.preferred_username ||
|
|
101
|
+
"";
|
|
102
|
+
const name = fromAccount.name || effectiveIdTokenClaims?.name;
|
|
103
|
+
const account = {
|
|
104
|
+
homeAccountId,
|
|
105
|
+
environment: fromAccount.environment,
|
|
106
|
+
tenantId,
|
|
107
|
+
username,
|
|
108
|
+
localAccountId,
|
|
109
|
+
name,
|
|
110
|
+
idToken: fromAccount.idToken,
|
|
111
|
+
idTokenClaims: effectiveIdTokenClaims,
|
|
112
|
+
};
|
|
113
|
+
return account;
|
|
114
|
+
}
|
|
115
|
+
/**
|
|
116
|
+
*
|
|
117
|
+
* @param error BridgeError
|
|
118
|
+
* @returns AuthError, ClientAuthError, ClientConfigurationError, ServerError, InteractionRequiredError
|
|
119
|
+
*/
|
|
120
|
+
fromBridgeError(error) {
|
|
121
|
+
if (isBridgeError(error)) {
|
|
122
|
+
switch (error.status) {
|
|
123
|
+
case BridgeStatusCode.USER_CANCEL:
|
|
124
|
+
return new ClientAuthError(ClientAuthErrorCodes.userCanceled);
|
|
125
|
+
case BridgeStatusCode.NO_NETWORK:
|
|
126
|
+
return new ClientAuthError(ClientAuthErrorCodes.noNetworkConnectivity);
|
|
127
|
+
case BridgeStatusCode.ACCOUNT_UNAVAILABLE:
|
|
128
|
+
return new ClientAuthError(ClientAuthErrorCodes.noAccountFound);
|
|
129
|
+
case BridgeStatusCode.DISABLED:
|
|
130
|
+
return new ClientAuthError(ClientAuthErrorCodes.nestedAppAuthBridgeDisabled);
|
|
131
|
+
case BridgeStatusCode.NESTED_APP_AUTH_UNAVAILABLE:
|
|
132
|
+
return new ClientAuthError(error.code ||
|
|
133
|
+
ClientAuthErrorCodes.nestedAppAuthBridgeDisabled, error.description);
|
|
134
|
+
case BridgeStatusCode.TRANSIENT_ERROR:
|
|
135
|
+
case BridgeStatusCode.PERSISTENT_ERROR:
|
|
136
|
+
return new ServerError(error.code, error.description);
|
|
137
|
+
case BridgeStatusCode.USER_INTERACTION_REQUIRED:
|
|
138
|
+
return new InteractionRequiredAuthError(error.code, error.description);
|
|
139
|
+
default:
|
|
140
|
+
return new AuthError(error.code, error.description);
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
else {
|
|
144
|
+
return new AuthError("unknown_error", "An unknown error occurred");
|
|
145
|
+
}
|
|
146
|
+
}
|
|
175
147
|
}
|
|
176
148
|
|
|
177
149
|
export { NestedAppAuthAdapter };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NestedAppAuthAdapter.mjs","sources":["../../../src/naa/mapping/NestedAppAuthAdapter.ts"],"sourcesContent":[null],"names":[],"mappings":";;;;;;AAKA;AACA;AACA;AACA;
|
|
1
|
+
{"version":3,"file":"NestedAppAuthAdapter.mjs","sources":["../../../src/naa/mapping/NestedAppAuthAdapter.ts"],"sourcesContent":[null],"names":[],"mappings":";;;;;;AAKA;AACA;AACA;AACA;AAwBA,MAAA,oBAAiC,CAAA;AAC7B,IAAA,WAAU,CAAA,QAAQ,EAAA,kBAAQ,EAAA,MAAA,EAAA,MAAA,EAAA;AAC1B,QAAA,IAAA,CAAS,QAAS,GAAA,QAAO,CAAA;AACzB,QAAA,IAAA,CAAS,kBAAkB,GAAA,kBAAA,CAAA;AAC3B,QAAA,IAAA,CAAS,MAAC,GAAA,MAAA,CAAA;AAGN,QAAA,IAAA,CAAA,MAAA,GAAA,MAAU,CAAA;AAWP,KAAA;AAqCA,IAAA,iBAAA,CAAA,OACH,EAAA;QA+DqB,IAAA,WACrB,CAAW;AAuCf,QAAA,IAAA,OAAA,CAAA,oBAAA,KAAA,SAAA,EAAA;;;;AAIG,YAAA,WAAA,GAAA,IAAA,GAAA,CAAA,MAAA,CAAA,OAAA,CAAA,OAAA,CAAA,oBAAA,CAAA,CAAA,CAAA;AACI,SAAA;AA+CV,QAAA,MAAA,cAAA,GAAA,IAAA,uBAAA,EAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { NavigationOptions } from "./NavigationOptions";
|
|
2
|
-
export interface INavigationClient {
|
|
3
|
-
/**
|
|
4
|
-
* Navigates to other pages within the same web application
|
|
5
|
-
* Return false if this doesn't cause the page to reload i.e. Client-side navigation
|
|
6
|
-
* @param url
|
|
7
|
-
* @param options
|
|
8
|
-
*/
|
|
9
|
-
navigateInternal(url: string, options: NavigationOptions): Promise<boolean>;
|
|
10
|
-
/**
|
|
11
|
-
* Navigates to other pages outside the web application i.e. the Identity Provider
|
|
12
|
-
* @param url
|
|
13
|
-
* @param options
|
|
14
|
-
*/
|
|
15
|
-
navigateExternal(url: string, options: NavigationOptions): Promise<boolean>;
|
|
16
|
-
}
|
|
1
|
+
import { NavigationOptions } from "./NavigationOptions";
|
|
2
|
+
export interface INavigationClient {
|
|
3
|
+
/**
|
|
4
|
+
* Navigates to other pages within the same web application
|
|
5
|
+
* Return false if this doesn't cause the page to reload i.e. Client-side navigation
|
|
6
|
+
* @param url
|
|
7
|
+
* @param options
|
|
8
|
+
*/
|
|
9
|
+
navigateInternal(url: string, options: NavigationOptions): Promise<boolean>;
|
|
10
|
+
/**
|
|
11
|
+
* Navigates to other pages outside the web application i.e. the Identity Provider
|
|
12
|
+
* @param url
|
|
13
|
+
* @param options
|
|
14
|
+
*/
|
|
15
|
+
navigateExternal(url: string, options: NavigationOptions): Promise<boolean>;
|
|
16
|
+
}
|
|
17
17
|
//# sourceMappingURL=INavigationClient.d.ts.map
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { INavigationClient } from "./INavigationClient";
|
|
2
|
-
import { NavigationOptions } from "./NavigationOptions";
|
|
3
|
-
export declare class NavigationClient implements INavigationClient {
|
|
4
|
-
/**
|
|
5
|
-
* Navigates to other pages within the same web application
|
|
6
|
-
* @param url
|
|
7
|
-
* @param options
|
|
8
|
-
*/
|
|
9
|
-
navigateInternal(url: string, options: NavigationOptions): Promise<boolean>;
|
|
10
|
-
/**
|
|
11
|
-
* Navigates to other pages outside the web application i.e. the Identity Provider
|
|
12
|
-
* @param url
|
|
13
|
-
* @param options
|
|
14
|
-
*/
|
|
15
|
-
navigateExternal(url: string, options: NavigationOptions): Promise<boolean>;
|
|
16
|
-
/**
|
|
17
|
-
* Default navigation implementation invoked by the internal and external functions
|
|
18
|
-
* @param url
|
|
19
|
-
* @param options
|
|
20
|
-
*/
|
|
21
|
-
private static defaultNavigateWindow;
|
|
22
|
-
}
|
|
1
|
+
import { INavigationClient } from "./INavigationClient";
|
|
2
|
+
import { NavigationOptions } from "./NavigationOptions";
|
|
3
|
+
export declare class NavigationClient implements INavigationClient {
|
|
4
|
+
/**
|
|
5
|
+
* Navigates to other pages within the same web application
|
|
6
|
+
* @param url
|
|
7
|
+
* @param options
|
|
8
|
+
*/
|
|
9
|
+
navigateInternal(url: string, options: NavigationOptions): Promise<boolean>;
|
|
10
|
+
/**
|
|
11
|
+
* Navigates to other pages outside the web application i.e. the Identity Provider
|
|
12
|
+
* @param url
|
|
13
|
+
* @param options
|
|
14
|
+
*/
|
|
15
|
+
navigateExternal(url: string, options: NavigationOptions): Promise<boolean>;
|
|
16
|
+
/**
|
|
17
|
+
* Default navigation implementation invoked by the internal and external functions
|
|
18
|
+
* @param url
|
|
19
|
+
* @param options
|
|
20
|
+
*/
|
|
21
|
+
private static defaultNavigateWindow;
|
|
22
|
+
}
|
|
23
23
|
//# sourceMappingURL=NavigationClient.d.ts.map
|
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
/*! @azure/msal-browser v3.5.
|
|
1
|
+
/*! @azure/msal-browser v3.5.1-beta.1 2023-11-14 */
|
|
2
2
|
'use strict';
|
|
3
|
-
/*
|
|
4
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5
|
-
* Licensed under the MIT License.
|
|
6
|
-
*/
|
|
7
|
-
class NavigationClient {
|
|
8
|
-
/**
|
|
9
|
-
* Navigates to other pages within the same web application
|
|
10
|
-
* @param url
|
|
11
|
-
* @param options
|
|
12
|
-
*/
|
|
13
|
-
navigateInternal(url, options) {
|
|
14
|
-
return NavigationClient.defaultNavigateWindow(url, options);
|
|
15
|
-
}
|
|
16
|
-
/**
|
|
17
|
-
* Navigates to other pages outside the web application i.e. the Identity Provider
|
|
18
|
-
* @param url
|
|
19
|
-
* @param options
|
|
20
|
-
*/
|
|
21
|
-
navigateExternal(url, options) {
|
|
22
|
-
return NavigationClient.defaultNavigateWindow(url, options);
|
|
23
|
-
}
|
|
24
|
-
/**
|
|
25
|
-
* Default navigation implementation invoked by the internal and external functions
|
|
26
|
-
* @param url
|
|
27
|
-
* @param options
|
|
28
|
-
*/
|
|
29
|
-
static defaultNavigateWindow(url, options) {
|
|
30
|
-
if (options.noHistory) {
|
|
31
|
-
window.location.replace(url);
|
|
32
|
-
}
|
|
33
|
-
else {
|
|
34
|
-
window.location.assign(url);
|
|
35
|
-
}
|
|
36
|
-
return new Promise((resolve) => {
|
|
37
|
-
setTimeout(() => {
|
|
38
|
-
resolve(true);
|
|
39
|
-
}, options.timeout);
|
|
40
|
-
});
|
|
41
|
-
}
|
|
3
|
+
/*
|
|
4
|
+
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
5
|
+
* Licensed under the MIT License.
|
|
6
|
+
*/
|
|
7
|
+
class NavigationClient {
|
|
8
|
+
/**
|
|
9
|
+
* Navigates to other pages within the same web application
|
|
10
|
+
* @param url
|
|
11
|
+
* @param options
|
|
12
|
+
*/
|
|
13
|
+
navigateInternal(url, options) {
|
|
14
|
+
return NavigationClient.defaultNavigateWindow(url, options);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* Navigates to other pages outside the web application i.e. the Identity Provider
|
|
18
|
+
* @param url
|
|
19
|
+
* @param options
|
|
20
|
+
*/
|
|
21
|
+
navigateExternal(url, options) {
|
|
22
|
+
return NavigationClient.defaultNavigateWindow(url, options);
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Default navigation implementation invoked by the internal and external functions
|
|
26
|
+
* @param url
|
|
27
|
+
* @param options
|
|
28
|
+
*/
|
|
29
|
+
static defaultNavigateWindow(url, options) {
|
|
30
|
+
if (options.noHistory) {
|
|
31
|
+
window.location.replace(url);
|
|
32
|
+
}
|
|
33
|
+
else {
|
|
34
|
+
window.location.assign(url);
|
|
35
|
+
}
|
|
36
|
+
return new Promise((resolve) => {
|
|
37
|
+
setTimeout(() => {
|
|
38
|
+
resolve(true);
|
|
39
|
+
}, options.timeout);
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
export { NavigationClient };
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { ApiId } from "../utils/BrowserConstants";
|
|
2
|
-
/**
|
|
3
|
-
* Additional information passed to the navigateInternal and navigateExternal functions
|
|
4
|
-
*/
|
|
5
|
-
export type NavigationOptions = {
|
|
6
|
-
/** The Id of the API that initiated navigation */
|
|
7
|
-
apiId: ApiId;
|
|
8
|
-
/** Suggested timeout (ms) based on the configuration provided to PublicClientApplication */
|
|
9
|
-
timeout: number;
|
|
10
|
-
/** When set to true the url should not be added to the browser history */
|
|
11
|
-
noHistory: boolean;
|
|
12
|
-
};
|
|
1
|
+
import { ApiId } from "../utils/BrowserConstants";
|
|
2
|
+
/**
|
|
3
|
+
* Additional information passed to the navigateInternal and navigateExternal functions
|
|
4
|
+
*/
|
|
5
|
+
export type NavigationOptions = {
|
|
6
|
+
/** The Id of the API that initiated navigation */
|
|
7
|
+
apiId: ApiId;
|
|
8
|
+
/** Suggested timeout (ms) based on the configuration provided to PublicClientApplication */
|
|
9
|
+
timeout: number;
|
|
10
|
+
/** When set to true the url should not be added to the browser history */
|
|
11
|
+
noHistory: boolean;
|
|
12
|
+
};
|
|
13
13
|
//# sourceMappingURL=NavigationOptions.d.ts.map
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
import { INetworkModule, NetworkRequestOptions, NetworkResponse } from "@azure/msal-common";
|
|
2
|
-
/**
|
|
3
|
-
* This class implements the Fetch API for GET and POST requests. See more here: https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API
|
|
4
|
-
*/
|
|
5
|
-
export declare class FetchClient implements INetworkModule {
|
|
6
|
-
/**
|
|
7
|
-
* Fetch Client for REST endpoints - Get request
|
|
8
|
-
* @param url
|
|
9
|
-
* @param headers
|
|
10
|
-
* @param body
|
|
11
|
-
*/
|
|
12
|
-
sendGetRequestAsync<T>(url: string, options?: NetworkRequestOptions): Promise<NetworkResponse<T>>;
|
|
13
|
-
/**
|
|
14
|
-
* Fetch Client for REST endpoints - Post request
|
|
15
|
-
* @param url
|
|
16
|
-
* @param headers
|
|
17
|
-
* @param body
|
|
18
|
-
*/
|
|
19
|
-
sendPostRequestAsync<T>(url: string, options?: NetworkRequestOptions): Promise<NetworkResponse<T>>;
|
|
20
|
-
/**
|
|
21
|
-
* Get Fetch API Headers object from string map
|
|
22
|
-
* @param inputHeaders
|
|
23
|
-
*/
|
|
24
|
-
private getFetchHeaders;
|
|
25
|
-
private getHeaderDict;
|
|
26
|
-
}
|
|
1
|
+
import { INetworkModule, NetworkRequestOptions, NetworkResponse } from "@azure/msal-common";
|
|
2
|
+
/**
|
|
3
|
+
* This class implements the Fetch API for GET and POST requests. See more here: https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API
|
|
4
|
+
*/
|
|
5
|
+
export declare class FetchClient implements INetworkModule {
|
|
6
|
+
/**
|
|
7
|
+
* Fetch Client for REST endpoints - Get request
|
|
8
|
+
* @param url
|
|
9
|
+
* @param headers
|
|
10
|
+
* @param body
|
|
11
|
+
*/
|
|
12
|
+
sendGetRequestAsync<T>(url: string, options?: NetworkRequestOptions): Promise<NetworkResponse<T>>;
|
|
13
|
+
/**
|
|
14
|
+
* Fetch Client for REST endpoints - Post request
|
|
15
|
+
* @param url
|
|
16
|
+
* @param headers
|
|
17
|
+
* @param body
|
|
18
|
+
*/
|
|
19
|
+
sendPostRequestAsync<T>(url: string, options?: NetworkRequestOptions): Promise<NetworkResponse<T>>;
|
|
20
|
+
/**
|
|
21
|
+
* Get Fetch API Headers object from string map
|
|
22
|
+
* @param inputHeaders
|
|
23
|
+
*/
|
|
24
|
+
private getFetchHeaders;
|
|
25
|
+
private getHeaderDict;
|
|
26
|
+
}
|
|
27
27
|
//# sourceMappingURL=FetchClient.d.ts.map
|