@azure/msal-browser 3.0.0-alpha.0 → 3.0.0-alpha.2

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.
Files changed (467) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +213 -213
  3. package/dist/app/IPublicClientApplication.d.ts +45 -45
  4. package/dist/app/IPublicClientApplication.js +96 -96
  5. package/dist/app/PublicClientApplication.d.ts +244 -244
  6. package/dist/app/PublicClientApplication.js +307 -307
  7. package/dist/broker/nativeBroker/NativeMessageHandler.d.ts +63 -63
  8. package/dist/broker/nativeBroker/NativeMessageHandler.js +255 -255
  9. package/dist/broker/nativeBroker/NativeRequest.d.ts +43 -43
  10. package/dist/broker/nativeBroker/NativeResponse.d.ts +48 -48
  11. package/dist/cache/AsyncMemoryStorage.d.ts +51 -51
  12. package/dist/cache/AsyncMemoryStorage.js +132 -132
  13. package/dist/cache/BrowserCacheManager.d.ts +377 -377
  14. package/dist/cache/BrowserCacheManager.js +1276 -1276
  15. package/dist/cache/BrowserStorage.d.ts +11 -11
  16. package/dist/cache/BrowserStorage.js +35 -35
  17. package/dist/cache/CryptoKeyStore.d.ts +17 -17
  18. package/dist/cache/CryptoKeyStore.js +41 -41
  19. package/dist/cache/DatabaseStorage.d.ts +56 -56
  20. package/dist/cache/DatabaseStorage.js +190 -190
  21. package/dist/cache/IAsyncMemoryStorage.d.ts +27 -27
  22. package/dist/cache/ITokenCache.d.ts +10 -10
  23. package/dist/cache/IWindowStorage.d.ts +27 -27
  24. package/dist/cache/MemoryStorage.d.ts +11 -11
  25. package/dist/cache/MemoryStorage.js +31 -31
  26. package/dist/cache/TokenCache.d.ts +76 -76
  27. package/dist/cache/TokenCache.js +225 -225
  28. package/dist/config/Configuration.d.ts +203 -203
  29. package/dist/config/Configuration.js +101 -101
  30. package/dist/controllers/ControllerFactory.d.ts +9 -9
  31. package/dist/controllers/ControllerFactory.js +37 -37
  32. package/dist/controllers/IController.d.ts +66 -66
  33. package/dist/controllers/StandardController.d.ts +413 -413
  34. package/dist/controllers/StandardController.js +1272 -1272
  35. package/dist/crypto/BrowserCrypto.d.ts +61 -61
  36. package/dist/crypto/BrowserCrypto.js +131 -131
  37. package/dist/crypto/CryptoOps.d.ts +73 -73
  38. package/dist/crypto/CryptoOps.js +150 -150
  39. package/dist/crypto/GuidGenerator.d.ts +12 -12
  40. package/dist/crypto/GuidGenerator.js +96 -96
  41. package/dist/crypto/ISubtleCrypto.d.ts +9 -9
  42. package/dist/crypto/ModernBrowserCrypto.d.ts +9 -9
  43. package/dist/crypto/ModernBrowserCrypto.js +24 -24
  44. package/dist/crypto/MsBrowserCrypto.d.ts +9 -9
  45. package/dist/crypto/MsBrowserCrypto.js +79 -79
  46. package/dist/crypto/MsrBrowserCrypto.d.ts +17 -17
  47. package/dist/crypto/MsrBrowserCrypto.js +28 -28
  48. package/dist/crypto/PkceGenerator.d.ts +24 -24
  49. package/dist/crypto/PkceGenerator.js +58 -58
  50. package/dist/crypto/SignedHttpRequest.d.ts +30 -30
  51. package/dist/crypto/SignedHttpRequest.js +39 -39
  52. package/dist/encode/Base64Decode.d.ts +22 -22
  53. package/dist/encode/Base64Decode.js +73 -73
  54. package/dist/encode/Base64Encode.d.ts +31 -31
  55. package/dist/encode/Base64Encode.js +79 -79
  56. package/dist/error/BrowserAuthError.d.ts +382 -382
  57. package/dist/error/BrowserAuthError.js +483 -483
  58. package/dist/error/BrowserConfigurationAuthError.d.ts +70 -70
  59. package/dist/error/BrowserConfigurationAuthError.js +96 -96
  60. package/dist/error/NativeAuthError.d.ts +56 -56
  61. package/dist/error/NativeAuthError.js +88 -88
  62. package/dist/event/EventHandler.d.ts +41 -41
  63. package/dist/event/EventHandler.js +119 -119
  64. package/dist/event/EventMessage.d.ts +25 -25
  65. package/dist/event/EventMessage.js +67 -67
  66. package/dist/event/EventType.d.ts +26 -26
  67. package/dist/event/EventType.js +31 -31
  68. package/dist/index.d.ts +35 -35
  69. package/dist/index.js +1 -1
  70. package/dist/interaction_client/BaseInteractionClient.d.ts +52 -52
  71. package/dist/interaction_client/BaseInteractionClient.js +138 -138
  72. package/dist/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +4 -4
  73. package/dist/interaction_client/HybridSpaAuthorizationCodeClient.js +10 -10
  74. package/dist/interaction_client/NativeInteractionClient.d.ts +148 -148
  75. package/dist/interaction_client/NativeInteractionClient.js +516 -516
  76. package/dist/interaction_client/PopupClient.d.ts +111 -111
  77. package/dist/interaction_client/PopupClient.js +476 -476
  78. package/dist/interaction_client/RedirectClient.d.ts +48 -48
  79. package/dist/interaction_client/RedirectClient.js +290 -290
  80. package/dist/interaction_client/SilentAuthCodeClient.d.ts +22 -22
  81. package/dist/interaction_client/SilentAuthCodeClient.js +62 -62
  82. package/dist/interaction_client/SilentCacheClient.d.ts +21 -21
  83. package/dist/interaction_client/SilentCacheClient.js +67 -67
  84. package/dist/interaction_client/SilentIframeClient.d.ts +31 -31
  85. package/dist/interaction_client/SilentIframeClient.js +127 -127
  86. package/dist/interaction_client/SilentRefreshClient.d.ts +19 -19
  87. package/dist/interaction_client/SilentRefreshClient.js +62 -62
  88. package/dist/interaction_client/StandardInteractionClient.d.ts +59 -59
  89. package/dist/interaction_client/StandardInteractionClient.js +259 -259
  90. package/dist/interaction_handler/InteractionHandler.d.ts +39 -39
  91. package/dist/interaction_handler/InteractionHandler.js +127 -127
  92. package/dist/interaction_handler/RedirectHandler.d.ts +24 -24
  93. package/dist/interaction_handler/RedirectHandler.js +118 -118
  94. package/dist/interaction_handler/SilentHandler.d.ts +47 -47
  95. package/dist/interaction_handler/SilentHandler.js +162 -162
  96. package/dist/internals.d.ts +23 -23
  97. package/dist/internals.js +4 -4
  98. package/dist/navigation/INavigationClient.d.ts +16 -16
  99. package/dist/navigation/NavigationClient.d.ts +22 -22
  100. package/dist/navigation/NavigationClient.js +40 -40
  101. package/dist/navigation/NavigationOptions.d.ts +12 -12
  102. package/dist/network/FetchClient.d.ts +26 -26
  103. package/dist/network/FetchClient.js +99 -99
  104. package/dist/network/XhrClient.d.ts +40 -40
  105. package/dist/network/XhrClient.js +117 -117
  106. package/dist/operatingcontext/BaseOperatingContext.d.ts +40 -40
  107. package/dist/operatingcontext/BaseOperatingContext.js +44 -44
  108. package/dist/operatingcontext/StandardOperatingContext.d.ts +25 -25
  109. package/dist/operatingcontext/StandardOperatingContext.js +43 -43
  110. package/dist/operatingcontext/TeamsAppOperatingContext.d.ts +25 -25
  111. package/dist/operatingcontext/TeamsAppOperatingContext.js +42 -42
  112. package/dist/packageMetadata.d.ts +2 -2
  113. package/dist/packageMetadata.js +4 -4
  114. package/dist/request/AuthorizationCodeRequest.d.ts +8 -8
  115. package/dist/request/AuthorizationUrlRequest.d.ts +8 -8
  116. package/dist/request/EndSessionPopupRequest.d.ts +18 -18
  117. package/dist/request/EndSessionRequest.d.ts +15 -15
  118. package/dist/request/PopupRequest.d.ts +32 -32
  119. package/dist/request/PopupWindowAttributes.d.ts +15 -15
  120. package/dist/request/RedirectRequest.d.ts +33 -33
  121. package/dist/request/SilentRequest.d.ts +30 -30
  122. package/dist/request/SsoSilentRequest.d.ts +26 -26
  123. package/dist/telemetry/BrowserPerformanceClient.d.ts +38 -38
  124. package/dist/telemetry/BrowserPerformanceClient.js +124 -124
  125. package/dist/telemetry/BrowserPerformanceMeasurement.d.ts +21 -21
  126. package/dist/telemetry/BrowserPerformanceMeasurement.js +92 -92
  127. package/dist/utils/BrowserConstants.d.ts +166 -166
  128. package/dist/utils/BrowserConstants.js +214 -214
  129. package/dist/utils/BrowserProtocolUtils.d.ts +18 -18
  130. package/dist/utils/BrowserProtocolUtils.js +34 -34
  131. package/dist/utils/BrowserStringUtils.d.ts +26 -26
  132. package/dist/utils/BrowserStringUtils.js +149 -149
  133. package/dist/utils/BrowserUtils.d.ts +65 -65
  134. package/dist/utils/BrowserUtils.js +138 -138
  135. package/dist/utils/MathUtils.d.ts +11 -11
  136. package/dist/utils/MathUtils.js +21 -21
  137. package/lib/msal-browser.cjs.js +18383 -0
  138. package/lib/msal-browser.cjs.js.map +1 -0
  139. package/lib/msal-browser.js +18389 -0
  140. package/lib/msal-browser.js.map +1 -0
  141. package/lib/msal-browser.min.js +74 -0
  142. package/package.json +97 -98
  143. package/node_modules/@azure/msal-common/LICENSE +0 -21
  144. package/node_modules/@azure/msal-common/README.md +0 -62
  145. package/node_modules/@azure/msal-common/dist/account/AccountInfo.d.ts +0 -32
  146. package/node_modules/@azure/msal-common/dist/account/AccountInfo.d.ts.map +0 -1
  147. package/node_modules/@azure/msal-common/dist/account/AuthToken.d.ts +0 -21
  148. package/node_modules/@azure/msal-common/dist/account/AuthToken.d.ts.map +0 -1
  149. package/node_modules/@azure/msal-common/dist/account/AuthToken.js +0 -56
  150. package/node_modules/@azure/msal-common/dist/account/AuthToken.js.map +0 -1
  151. package/node_modules/@azure/msal-common/dist/account/CcsCredential.d.ts +0 -9
  152. package/node_modules/@azure/msal-common/dist/account/CcsCredential.d.ts.map +0 -1
  153. package/node_modules/@azure/msal-common/dist/account/CcsCredential.js +0 -14
  154. package/node_modules/@azure/msal-common/dist/account/CcsCredential.js.map +0 -1
  155. package/node_modules/@azure/msal-common/dist/account/ClientCredentials.d.ts +0 -15
  156. package/node_modules/@azure/msal-common/dist/account/ClientCredentials.d.ts.map +0 -1
  157. package/node_modules/@azure/msal-common/dist/account/ClientInfo.d.ts +0 -20
  158. package/node_modules/@azure/msal-common/dist/account/ClientInfo.d.ts.map +0 -1
  159. package/node_modules/@azure/msal-common/dist/account/ClientInfo.js +0 -46
  160. package/node_modules/@azure/msal-common/dist/account/ClientInfo.js.map +0 -1
  161. package/node_modules/@azure/msal-common/dist/account/DecodedAuthToken.d.ts +0 -9
  162. package/node_modules/@azure/msal-common/dist/account/DecodedAuthToken.d.ts.map +0 -1
  163. package/node_modules/@azure/msal-common/dist/account/TokenClaims.d.ts +0 -66
  164. package/node_modules/@azure/msal-common/dist/account/TokenClaims.d.ts.map +0 -1
  165. package/node_modules/@azure/msal-common/dist/authority/Authority.d.ts +0 -216
  166. package/node_modules/@azure/msal-common/dist/authority/Authority.d.ts.map +0 -1
  167. package/node_modules/@azure/msal-common/dist/authority/Authority.js +0 -688
  168. package/node_modules/@azure/msal-common/dist/authority/Authority.js.map +0 -1
  169. package/node_modules/@azure/msal-common/dist/authority/AuthorityFactory.d.ts +0 -31
  170. package/node_modules/@azure/msal-common/dist/authority/AuthorityFactory.d.ts.map +0 -1
  171. package/node_modules/@azure/msal-common/dist/authority/AuthorityFactory.js +0 -58
  172. package/node_modules/@azure/msal-common/dist/authority/AuthorityFactory.js.map +0 -1
  173. package/node_modules/@azure/msal-common/dist/authority/AuthorityMetadata.d.ts +0 -623
  174. package/node_modules/@azure/msal-common/dist/authority/AuthorityMetadata.d.ts.map +0 -1
  175. package/node_modules/@azure/msal-common/dist/authority/AuthorityMetadata.js +0 -881
  176. package/node_modules/@azure/msal-common/dist/authority/AuthorityMetadata.js.map +0 -1
  177. package/node_modules/@azure/msal-common/dist/authority/AuthorityOptions.d.ts +0 -19
  178. package/node_modules/@azure/msal-common/dist/authority/AuthorityOptions.d.ts.map +0 -1
  179. package/node_modules/@azure/msal-common/dist/authority/AuthorityOptions.js +0 -24
  180. package/node_modules/@azure/msal-common/dist/authority/AuthorityOptions.js.map +0 -1
  181. package/node_modules/@azure/msal-common/dist/authority/AuthorityType.d.ts +0 -10
  182. package/node_modules/@azure/msal-common/dist/authority/AuthorityType.d.ts.map +0 -1
  183. package/node_modules/@azure/msal-common/dist/authority/AuthorityType.js +0 -19
  184. package/node_modules/@azure/msal-common/dist/authority/AuthorityType.js.map +0 -1
  185. package/node_modules/@azure/msal-common/dist/authority/AzureRegion.d.ts +0 -2
  186. package/node_modules/@azure/msal-common/dist/authority/AzureRegion.d.ts.map +0 -1
  187. package/node_modules/@azure/msal-common/dist/authority/AzureRegionConfiguration.d.ts +0 -6
  188. package/node_modules/@azure/msal-common/dist/authority/AzureRegionConfiguration.d.ts.map +0 -1
  189. package/node_modules/@azure/msal-common/dist/authority/CloudDiscoveryMetadata.d.ts +0 -6
  190. package/node_modules/@azure/msal-common/dist/authority/CloudDiscoveryMetadata.d.ts.map +0 -1
  191. package/node_modules/@azure/msal-common/dist/authority/CloudInstanceDiscoveryErrorResponse.d.ts +0 -14
  192. package/node_modules/@azure/msal-common/dist/authority/CloudInstanceDiscoveryErrorResponse.d.ts.map +0 -1
  193. package/node_modules/@azure/msal-common/dist/authority/CloudInstanceDiscoveryErrorResponse.js +0 -13
  194. package/node_modules/@azure/msal-common/dist/authority/CloudInstanceDiscoveryErrorResponse.js.map +0 -1
  195. package/node_modules/@azure/msal-common/dist/authority/CloudInstanceDiscoveryResponse.d.ts +0 -10
  196. package/node_modules/@azure/msal-common/dist/authority/CloudInstanceDiscoveryResponse.d.ts.map +0 -1
  197. package/node_modules/@azure/msal-common/dist/authority/CloudInstanceDiscoveryResponse.js +0 -13
  198. package/node_modules/@azure/msal-common/dist/authority/CloudInstanceDiscoveryResponse.js.map +0 -1
  199. package/node_modules/@azure/msal-common/dist/authority/ImdsOptions.d.ts +0 -6
  200. package/node_modules/@azure/msal-common/dist/authority/ImdsOptions.d.ts.map +0 -1
  201. package/node_modules/@azure/msal-common/dist/authority/OpenIdConfigResponse.d.ts +0 -12
  202. package/node_modules/@azure/msal-common/dist/authority/OpenIdConfigResponse.d.ts.map +0 -1
  203. package/node_modules/@azure/msal-common/dist/authority/OpenIdConfigResponse.js +0 -15
  204. package/node_modules/@azure/msal-common/dist/authority/OpenIdConfigResponse.js.map +0 -1
  205. package/node_modules/@azure/msal-common/dist/authority/ProtocolMode.d.ts +0 -8
  206. package/node_modules/@azure/msal-common/dist/authority/ProtocolMode.d.ts.map +0 -1
  207. package/node_modules/@azure/msal-common/dist/authority/ProtocolMode.js +0 -17
  208. package/node_modules/@azure/msal-common/dist/authority/ProtocolMode.js.map +0 -1
  209. package/node_modules/@azure/msal-common/dist/authority/RegionDiscovery.d.ts +0 -31
  210. package/node_modules/@azure/msal-common/dist/authority/RegionDiscovery.d.ts.map +0 -1
  211. package/node_modules/@azure/msal-common/dist/authority/RegionDiscovery.js +0 -116
  212. package/node_modules/@azure/msal-common/dist/authority/RegionDiscovery.js.map +0 -1
  213. package/node_modules/@azure/msal-common/dist/authority/RegionDiscoveryMetadata.d.ts +0 -7
  214. package/node_modules/@azure/msal-common/dist/authority/RegionDiscoveryMetadata.d.ts.map +0 -1
  215. package/node_modules/@azure/msal-common/dist/broker/nativeBroker/INativeBrokerPlugin.d.ts +0 -16
  216. package/node_modules/@azure/msal-common/dist/broker/nativeBroker/INativeBrokerPlugin.d.ts.map +0 -1
  217. package/node_modules/@azure/msal-common/dist/cache/CacheManager.d.ts +0 -444
  218. package/node_modules/@azure/msal-common/dist/cache/CacheManager.d.ts.map +0 -1
  219. package/node_modules/@azure/msal-common/dist/cache/CacheManager.js +0 -1024
  220. package/node_modules/@azure/msal-common/dist/cache/CacheManager.js.map +0 -1
  221. package/node_modules/@azure/msal-common/dist/cache/entities/AccessTokenEntity.d.ts +0 -57
  222. package/node_modules/@azure/msal-common/dist/cache/entities/AccessTokenEntity.d.ts.map +0 -1
  223. package/node_modules/@azure/msal-common/dist/cache/entities/AccessTokenEntity.js +0 -123
  224. package/node_modules/@azure/msal-common/dist/cache/entities/AccessTokenEntity.js.map +0 -1
  225. package/node_modules/@azure/msal-common/dist/cache/entities/AccountEntity.d.ts +0 -100
  226. package/node_modules/@azure/msal-common/dist/cache/entities/AccountEntity.d.ts.map +0 -1
  227. package/node_modules/@azure/msal-common/dist/cache/entities/AccountEntity.js +0 -259
  228. package/node_modules/@azure/msal-common/dist/cache/entities/AccountEntity.js.map +0 -1
  229. package/node_modules/@azure/msal-common/dist/cache/entities/AppMetadataEntity.d.ts +0 -40
  230. package/node_modules/@azure/msal-common/dist/cache/entities/AppMetadataEntity.d.ts.map +0 -1
  231. package/node_modules/@azure/msal-common/dist/cache/entities/AppMetadataEntity.js +0 -73
  232. package/node_modules/@azure/msal-common/dist/cache/entities/AppMetadataEntity.js.map +0 -1
  233. package/node_modules/@azure/msal-common/dist/cache/entities/AuthorityMetadataEntity.d.ts +0 -48
  234. package/node_modules/@azure/msal-common/dist/cache/entities/AuthorityMetadataEntity.d.ts.map +0 -1
  235. package/node_modules/@azure/msal-common/dist/cache/entities/AuthorityMetadataEntity.js +0 -85
  236. package/node_modules/@azure/msal-common/dist/cache/entities/AuthorityMetadataEntity.js.map +0 -1
  237. package/node_modules/@azure/msal-common/dist/cache/entities/CacheRecord.d.ts +0 -14
  238. package/node_modules/@azure/msal-common/dist/cache/entities/CacheRecord.d.ts.map +0 -1
  239. package/node_modules/@azure/msal-common/dist/cache/entities/CacheRecord.js +0 -18
  240. package/node_modules/@azure/msal-common/dist/cache/entities/CacheRecord.js.map +0 -1
  241. package/node_modules/@azure/msal-common/dist/cache/entities/CredentialEntity.d.ts +0 -89
  242. package/node_modules/@azure/msal-common/dist/cache/entities/CredentialEntity.d.ts.map +0 -1
  243. package/node_modules/@azure/msal-common/dist/cache/entities/CredentialEntity.js +0 -144
  244. package/node_modules/@azure/msal-common/dist/cache/entities/CredentialEntity.js.map +0 -1
  245. package/node_modules/@azure/msal-common/dist/cache/entities/IdTokenEntity.d.ts +0 -35
  246. package/node_modules/@azure/msal-common/dist/cache/entities/IdTokenEntity.d.ts.map +0 -1
  247. package/node_modules/@azure/msal-common/dist/cache/entities/IdTokenEntity.js +0 -64
  248. package/node_modules/@azure/msal-common/dist/cache/entities/IdTokenEntity.js.map +0 -1
  249. package/node_modules/@azure/msal-common/dist/cache/entities/RefreshTokenEntity.d.ts +0 -37
  250. package/node_modules/@azure/msal-common/dist/cache/entities/RefreshTokenEntity.d.ts.map +0 -1
  251. package/node_modules/@azure/msal-common/dist/cache/entities/RefreshTokenEntity.js +0 -67
  252. package/node_modules/@azure/msal-common/dist/cache/entities/RefreshTokenEntity.js.map +0 -1
  253. package/node_modules/@azure/msal-common/dist/cache/entities/ServerTelemetryEntity.d.ts +0 -13
  254. package/node_modules/@azure/msal-common/dist/cache/entities/ServerTelemetryEntity.d.ts.map +0 -1
  255. package/node_modules/@azure/msal-common/dist/cache/entities/ServerTelemetryEntity.js +0 -34
  256. package/node_modules/@azure/msal-common/dist/cache/entities/ServerTelemetryEntity.js.map +0 -1
  257. package/node_modules/@azure/msal-common/dist/cache/entities/ThrottlingEntity.d.ts +0 -14
  258. package/node_modules/@azure/msal-common/dist/cache/entities/ThrottlingEntity.d.ts.map +0 -1
  259. package/node_modules/@azure/msal-common/dist/cache/entities/ThrottlingEntity.js +0 -30
  260. package/node_modules/@azure/msal-common/dist/cache/entities/ThrottlingEntity.js.map +0 -1
  261. package/node_modules/@azure/msal-common/dist/cache/interface/ICacheManager.d.ts +0 -166
  262. package/node_modules/@azure/msal-common/dist/cache/interface/ICacheManager.d.ts.map +0 -1
  263. package/node_modules/@azure/msal-common/dist/cache/interface/ICachePlugin.d.ts +0 -6
  264. package/node_modules/@azure/msal-common/dist/cache/interface/ICachePlugin.d.ts.map +0 -1
  265. package/node_modules/@azure/msal-common/dist/cache/interface/ISerializableTokenCache.d.ts +0 -5
  266. package/node_modules/@azure/msal-common/dist/cache/interface/ISerializableTokenCache.d.ts.map +0 -1
  267. package/node_modules/@azure/msal-common/dist/cache/persistence/TokenCacheContext.d.ts +0 -24
  268. package/node_modules/@azure/msal-common/dist/cache/persistence/TokenCacheContext.d.ts.map +0 -1
  269. package/node_modules/@azure/msal-common/dist/cache/persistence/TokenCacheContext.js +0 -30
  270. package/node_modules/@azure/msal-common/dist/cache/persistence/TokenCacheContext.js.map +0 -1
  271. package/node_modules/@azure/msal-common/dist/cache/utils/CacheTypes.d.ts +0 -63
  272. package/node_modules/@azure/msal-common/dist/cache/utils/CacheTypes.d.ts.map +0 -1
  273. package/node_modules/@azure/msal-common/dist/client/AuthorizationCodeClient.d.ts +0 -72
  274. package/node_modules/@azure/msal-common/dist/client/AuthorizationCodeClient.d.ts.map +0 -1
  275. package/node_modules/@azure/msal-common/dist/client/AuthorizationCodeClient.js +0 -453
  276. package/node_modules/@azure/msal-common/dist/client/AuthorizationCodeClient.js.map +0 -1
  277. package/node_modules/@azure/msal-common/dist/client/BaseClient.d.ts +0 -51
  278. package/node_modules/@azure/msal-common/dist/client/BaseClient.d.ts.map +0 -1
  279. package/node_modules/@azure/msal-common/dist/client/BaseClient.js +0 -107
  280. package/node_modules/@azure/msal-common/dist/client/BaseClient.js.map +0 -1
  281. package/node_modules/@azure/msal-common/dist/client/RefreshTokenClient.d.ts +0 -35
  282. package/node_modules/@azure/msal-common/dist/client/RefreshTokenClient.d.ts.map +0 -1
  283. package/node_modules/@azure/msal-common/dist/client/RefreshTokenClient.js +0 -260
  284. package/node_modules/@azure/msal-common/dist/client/RefreshTokenClient.js.map +0 -1
  285. package/node_modules/@azure/msal-common/dist/client/SilentFlowClient.d.ts +0 -25
  286. package/node_modules/@azure/msal-common/dist/client/SilentFlowClient.d.ts.map +0 -1
  287. package/node_modules/@azure/msal-common/dist/client/SilentFlowClient.js +0 -108
  288. package/node_modules/@azure/msal-common/dist/client/SilentFlowClient.js.map +0 -1
  289. package/node_modules/@azure/msal-common/dist/config/AppTokenProvider.d.ts +0 -39
  290. package/node_modules/@azure/msal-common/dist/config/AppTokenProvider.d.ts.map +0 -1
  291. package/node_modules/@azure/msal-common/dist/config/ClientConfiguration.d.ts +0 -134
  292. package/node_modules/@azure/msal-common/dist/config/ClientConfiguration.d.ts.map +0 -1
  293. package/node_modules/@azure/msal-common/dist/config/ClientConfiguration.js +0 -101
  294. package/node_modules/@azure/msal-common/dist/config/ClientConfiguration.js.map +0 -1
  295. package/node_modules/@azure/msal-common/dist/crypto/ICrypto.d.ts +0 -63
  296. package/node_modules/@azure/msal-common/dist/crypto/ICrypto.d.ts.map +0 -1
  297. package/node_modules/@azure/msal-common/dist/crypto/ICrypto.js +0 -49
  298. package/node_modules/@azure/msal-common/dist/crypto/ICrypto.js.map +0 -1
  299. package/node_modules/@azure/msal-common/dist/crypto/IGuidGenerator.d.ts +0 -5
  300. package/node_modules/@azure/msal-common/dist/crypto/IGuidGenerator.d.ts.map +0 -1
  301. package/node_modules/@azure/msal-common/dist/crypto/JoseHeader.d.ts +0 -22
  302. package/node_modules/@azure/msal-common/dist/crypto/JoseHeader.d.ts.map +0 -1
  303. package/node_modules/@azure/msal-common/dist/crypto/JoseHeader.js +0 -44
  304. package/node_modules/@azure/msal-common/dist/crypto/JoseHeader.js.map +0 -1
  305. package/node_modules/@azure/msal-common/dist/crypto/PopTokenGenerator.d.ts +0 -58
  306. package/node_modules/@azure/msal-common/dist/crypto/PopTokenGenerator.d.ts.map +0 -1
  307. package/node_modules/@azure/msal-common/dist/crypto/PopTokenGenerator.js +0 -92
  308. package/node_modules/@azure/msal-common/dist/crypto/PopTokenGenerator.js.map +0 -1
  309. package/node_modules/@azure/msal-common/dist/crypto/SignedHttpRequest.d.ts +0 -12
  310. package/node_modules/@azure/msal-common/dist/crypto/SignedHttpRequest.d.ts.map +0 -1
  311. package/node_modules/@azure/msal-common/dist/error/AuthError.d.ts +0 -48
  312. package/node_modules/@azure/msal-common/dist/error/AuthError.d.ts.map +0 -1
  313. package/node_modules/@azure/msal-common/dist/error/AuthError.js +0 -58
  314. package/node_modules/@azure/msal-common/dist/error/AuthError.js.map +0 -1
  315. package/node_modules/@azure/msal-common/dist/error/ClientAuthError.d.ts +0 -413
  316. package/node_modules/@azure/msal-common/dist/error/ClientAuthError.d.ts.map +0 -1
  317. package/node_modules/@azure/msal-common/dist/error/ClientAuthError.js +0 -526
  318. package/node_modules/@azure/msal-common/dist/error/ClientAuthError.js.map +0 -1
  319. package/node_modules/@azure/msal-common/dist/error/ClientConfigurationError.d.ts +0 -199
  320. package/node_modules/@azure/msal-common/dist/error/ClientConfigurationError.d.ts.map +0 -1
  321. package/node_modules/@azure/msal-common/dist/error/ClientConfigurationError.js +0 -256
  322. package/node_modules/@azure/msal-common/dist/error/ClientConfigurationError.js.map +0 -1
  323. package/node_modules/@azure/msal-common/dist/error/InteractionRequiredAuthError.d.ts +0 -60
  324. package/node_modules/@azure/msal-common/dist/error/InteractionRequiredAuthError.d.ts.map +0 -1
  325. package/node_modules/@azure/msal-common/dist/error/InteractionRequiredAuthError.js +0 -86
  326. package/node_modules/@azure/msal-common/dist/error/InteractionRequiredAuthError.js.map +0 -1
  327. package/node_modules/@azure/msal-common/dist/error/JoseHeaderError.d.ts +0 -29
  328. package/node_modules/@azure/msal-common/dist/error/JoseHeaderError.d.ts.map +0 -1
  329. package/node_modules/@azure/msal-common/dist/error/JoseHeaderError.js +0 -46
  330. package/node_modules/@azure/msal-common/dist/error/JoseHeaderError.js.map +0 -1
  331. package/node_modules/@azure/msal-common/dist/error/ServerError.d.ts +0 -8
  332. package/node_modules/@azure/msal-common/dist/error/ServerError.d.ts.map +0 -1
  333. package/node_modules/@azure/msal-common/dist/error/ServerError.js +0 -21
  334. package/node_modules/@azure/msal-common/dist/error/ServerError.js.map +0 -1
  335. package/node_modules/@azure/msal-common/dist/index.cjs.js +0 -8975
  336. package/node_modules/@azure/msal-common/dist/index.cjs.js.map +0 -1
  337. package/node_modules/@azure/msal-common/dist/index.d.ts +0 -94
  338. package/node_modules/@azure/msal-common/dist/index.d.ts.map +0 -1
  339. package/node_modules/@azure/msal-common/dist/index.js +0 -54
  340. package/node_modules/@azure/msal-common/dist/index.js.map +0 -1
  341. package/node_modules/@azure/msal-common/dist/logger/Logger.d.ts +0 -96
  342. package/node_modules/@azure/msal-common/dist/logger/Logger.d.ts.map +0 -1
  343. package/node_modules/@azure/msal-common/dist/logger/Logger.js +0 -205
  344. package/node_modules/@azure/msal-common/dist/logger/Logger.js.map +0 -1
  345. package/node_modules/@azure/msal-common/dist/network/INetworkModule.d.ts +0 -30
  346. package/node_modules/@azure/msal-common/dist/network/INetworkModule.d.ts.map +0 -1
  347. package/node_modules/@azure/msal-common/dist/network/INetworkModule.js +0 -21
  348. package/node_modules/@azure/msal-common/dist/network/INetworkModule.js.map +0 -1
  349. package/node_modules/@azure/msal-common/dist/network/NetworkManager.d.ts +0 -33
  350. package/node_modules/@azure/msal-common/dist/network/NetworkManager.d.ts.map +0 -1
  351. package/node_modules/@azure/msal-common/dist/network/NetworkManager.js +0 -42
  352. package/node_modules/@azure/msal-common/dist/network/NetworkManager.js.map +0 -1
  353. package/node_modules/@azure/msal-common/dist/network/RequestThumbprint.d.ts +0 -17
  354. package/node_modules/@azure/msal-common/dist/network/RequestThumbprint.d.ts.map +0 -1
  355. package/node_modules/@azure/msal-common/dist/network/ThrottlingUtils.d.ts +0 -42
  356. package/node_modules/@azure/msal-common/dist/network/ThrottlingUtils.d.ts.map +0 -1
  357. package/node_modules/@azure/msal-common/dist/network/ThrottlingUtils.js +0 -102
  358. package/node_modules/@azure/msal-common/dist/network/ThrottlingUtils.js.map +0 -1
  359. package/node_modules/@azure/msal-common/dist/packageMetadata.d.ts +0 -3
  360. package/node_modules/@azure/msal-common/dist/packageMetadata.d.ts.map +0 -1
  361. package/node_modules/@azure/msal-common/dist/packageMetadata.js +0 -8
  362. package/node_modules/@azure/msal-common/dist/packageMetadata.js.map +0 -1
  363. package/node_modules/@azure/msal-common/dist/request/AuthenticationHeaderParser.d.ts +0 -20
  364. package/node_modules/@azure/msal-common/dist/request/AuthenticationHeaderParser.d.ts.map +0 -1
  365. package/node_modules/@azure/msal-common/dist/request/AuthenticationHeaderParser.js +0 -63
  366. package/node_modules/@azure/msal-common/dist/request/AuthenticationHeaderParser.js.map +0 -1
  367. package/node_modules/@azure/msal-common/dist/request/BaseAuthRequest.d.ts +0 -38
  368. package/node_modules/@azure/msal-common/dist/request/BaseAuthRequest.d.ts.map +0 -1
  369. package/node_modules/@azure/msal-common/dist/request/CommonAuthorizationCodeRequest.d.ts +0 -28
  370. package/node_modules/@azure/msal-common/dist/request/CommonAuthorizationCodeRequest.d.ts.map +0 -1
  371. package/node_modules/@azure/msal-common/dist/request/CommonAuthorizationUrlRequest.d.ts +0 -51
  372. package/node_modules/@azure/msal-common/dist/request/CommonAuthorizationUrlRequest.d.ts.map +0 -1
  373. package/node_modules/@azure/msal-common/dist/request/CommonClientCredentialRequest.d.ts +0 -18
  374. package/node_modules/@azure/msal-common/dist/request/CommonClientCredentialRequest.d.ts.map +0 -1
  375. package/node_modules/@azure/msal-common/dist/request/CommonDeviceCodeRequest.d.ts +0 -22
  376. package/node_modules/@azure/msal-common/dist/request/CommonDeviceCodeRequest.d.ts.map +0 -1
  377. package/node_modules/@azure/msal-common/dist/request/CommonEndSessionRequest.d.ts +0 -22
  378. package/node_modules/@azure/msal-common/dist/request/CommonEndSessionRequest.d.ts.map +0 -1
  379. package/node_modules/@azure/msal-common/dist/request/CommonOnBehalfOfRequest.d.ts +0 -14
  380. package/node_modules/@azure/msal-common/dist/request/CommonOnBehalfOfRequest.d.ts.map +0 -1
  381. package/node_modules/@azure/msal-common/dist/request/CommonRefreshTokenRequest.d.ts +0 -20
  382. package/node_modules/@azure/msal-common/dist/request/CommonRefreshTokenRequest.d.ts.map +0 -1
  383. package/node_modules/@azure/msal-common/dist/request/CommonSilentFlowRequest.d.ts +0 -19
  384. package/node_modules/@azure/msal-common/dist/request/CommonSilentFlowRequest.d.ts.map +0 -1
  385. package/node_modules/@azure/msal-common/dist/request/CommonUsernamePasswordRequest.d.ts +0 -18
  386. package/node_modules/@azure/msal-common/dist/request/CommonUsernamePasswordRequest.d.ts.map +0 -1
  387. package/node_modules/@azure/msal-common/dist/request/NativeRequest.d.ts +0 -20
  388. package/node_modules/@azure/msal-common/dist/request/NativeRequest.d.ts.map +0 -1
  389. package/node_modules/@azure/msal-common/dist/request/NativeSignOutRequest.d.ts +0 -6
  390. package/node_modules/@azure/msal-common/dist/request/NativeSignOutRequest.d.ts.map +0 -1
  391. package/node_modules/@azure/msal-common/dist/request/RequestParameterBuilder.d.ts +0 -217
  392. package/node_modules/@azure/msal-common/dist/request/RequestParameterBuilder.d.ts.map +0 -1
  393. package/node_modules/@azure/msal-common/dist/request/RequestParameterBuilder.js +0 -385
  394. package/node_modules/@azure/msal-common/dist/request/RequestParameterBuilder.js.map +0 -1
  395. package/node_modules/@azure/msal-common/dist/request/RequestValidator.d.ts +0 -34
  396. package/node_modules/@azure/msal-common/dist/request/RequestValidator.d.ts.map +0 -1
  397. package/node_modules/@azure/msal-common/dist/request/RequestValidator.js +0 -92
  398. package/node_modules/@azure/msal-common/dist/request/RequestValidator.js.map +0 -1
  399. package/node_modules/@azure/msal-common/dist/request/ScopeSet.d.ts +0 -89
  400. package/node_modules/@azure/msal-common/dist/request/ScopeSet.d.ts.map +0 -1
  401. package/node_modules/@azure/msal-common/dist/request/ScopeSet.js +0 -207
  402. package/node_modules/@azure/msal-common/dist/request/ScopeSet.js.map +0 -1
  403. package/node_modules/@azure/msal-common/dist/response/AuthenticationResult.d.ts +0 -40
  404. package/node_modules/@azure/msal-common/dist/response/AuthenticationResult.d.ts.map +0 -1
  405. package/node_modules/@azure/msal-common/dist/response/AuthorizationCodePayload.d.ts +0 -14
  406. package/node_modules/@azure/msal-common/dist/response/AuthorizationCodePayload.d.ts.map +0 -1
  407. package/node_modules/@azure/msal-common/dist/response/DeviceCodeResponse.d.ts +0 -26
  408. package/node_modules/@azure/msal-common/dist/response/DeviceCodeResponse.d.ts.map +0 -1
  409. package/node_modules/@azure/msal-common/dist/response/ExternalTokenResponse.d.ts +0 -16
  410. package/node_modules/@azure/msal-common/dist/response/ExternalTokenResponse.d.ts.map +0 -1
  411. package/node_modules/@azure/msal-common/dist/response/IMDSBadResponse.d.ts +0 -5
  412. package/node_modules/@azure/msal-common/dist/response/IMDSBadResponse.d.ts.map +0 -1
  413. package/node_modules/@azure/msal-common/dist/response/ResponseHandler.d.ts +0 -73
  414. package/node_modules/@azure/msal-common/dist/response/ResponseHandler.d.ts.map +0 -1
  415. package/node_modules/@azure/msal-common/dist/response/ResponseHandler.js +0 -325
  416. package/node_modules/@azure/msal-common/dist/response/ResponseHandler.js.map +0 -1
  417. package/node_modules/@azure/msal-common/dist/response/ServerAuthorizationCodeResponse.d.ts +0 -26
  418. package/node_modules/@azure/msal-common/dist/response/ServerAuthorizationCodeResponse.d.ts.map +0 -1
  419. package/node_modules/@azure/msal-common/dist/response/ServerAuthorizationTokenResponse.d.ts +0 -45
  420. package/node_modules/@azure/msal-common/dist/response/ServerAuthorizationTokenResponse.d.ts.map +0 -1
  421. package/node_modules/@azure/msal-common/dist/telemetry/performance/IPerformanceClient.d.ts +0 -43
  422. package/node_modules/@azure/msal-common/dist/telemetry/performance/IPerformanceClient.d.ts.map +0 -1
  423. package/node_modules/@azure/msal-common/dist/telemetry/performance/IPerformanceMeasurement.d.ts +0 -6
  424. package/node_modules/@azure/msal-common/dist/telemetry/performance/IPerformanceMeasurement.d.ts.map +0 -1
  425. package/node_modules/@azure/msal-common/dist/telemetry/performance/PerformanceClient.d.ts +0 -190
  426. package/node_modules/@azure/msal-common/dist/telemetry/performance/PerformanceClient.d.ts.map +0 -1
  427. package/node_modules/@azure/msal-common/dist/telemetry/performance/PerformanceClient.js +0 -413
  428. package/node_modules/@azure/msal-common/dist/telemetry/performance/PerformanceClient.js.map +0 -1
  429. package/node_modules/@azure/msal-common/dist/telemetry/performance/PerformanceEvent.d.ts +0 -440
  430. package/node_modules/@azure/msal-common/dist/telemetry/performance/PerformanceEvent.d.ts.map +0 -1
  431. package/node_modules/@azure/msal-common/dist/telemetry/performance/PerformanceEvent.js +0 -232
  432. package/node_modules/@azure/msal-common/dist/telemetry/performance/PerformanceEvent.js.map +0 -1
  433. package/node_modules/@azure/msal-common/dist/telemetry/performance/StubPerformanceClient.d.ts +0 -20
  434. package/node_modules/@azure/msal-common/dist/telemetry/performance/StubPerformanceClient.d.ts.map +0 -1
  435. package/node_modules/@azure/msal-common/dist/telemetry/performance/StubPerformanceClient.js +0 -43
  436. package/node_modules/@azure/msal-common/dist/telemetry/performance/StubPerformanceClient.js.map +0 -1
  437. package/node_modules/@azure/msal-common/dist/telemetry/server/ServerTelemetryManager.d.ts +0 -66
  438. package/node_modules/@azure/msal-common/dist/telemetry/server/ServerTelemetryManager.d.ts.map +0 -1
  439. package/node_modules/@azure/msal-common/dist/telemetry/server/ServerTelemetryManager.js +0 -206
  440. package/node_modules/@azure/msal-common/dist/telemetry/server/ServerTelemetryManager.js.map +0 -1
  441. package/node_modules/@azure/msal-common/dist/telemetry/server/ServerTelemetryRequest.d.ts +0 -9
  442. package/node_modules/@azure/msal-common/dist/telemetry/server/ServerTelemetryRequest.d.ts.map +0 -1
  443. package/node_modules/@azure/msal-common/dist/url/IUri.d.ts +0 -13
  444. package/node_modules/@azure/msal-common/dist/url/IUri.d.ts.map +0 -1
  445. package/node_modules/@azure/msal-common/dist/url/UrlString.d.ts +0 -71
  446. package/node_modules/@azure/msal-common/dist/url/UrlString.d.ts.map +0 -1
  447. package/node_modules/@azure/msal-common/dist/url/UrlString.js +0 -252
  448. package/node_modules/@azure/msal-common/dist/url/UrlString.js.map +0 -1
  449. package/node_modules/@azure/msal-common/dist/utils/Constants.d.ts +0 -332
  450. package/node_modules/@azure/msal-common/dist/utils/Constants.d.ts.map +0 -1
  451. package/node_modules/@azure/msal-common/dist/utils/Constants.js +0 -378
  452. package/node_modules/@azure/msal-common/dist/utils/Constants.js.map +0 -1
  453. package/node_modules/@azure/msal-common/dist/utils/MsalTypes.d.ts +0 -7
  454. package/node_modules/@azure/msal-common/dist/utils/MsalTypes.d.ts.map +0 -1
  455. package/node_modules/@azure/msal-common/dist/utils/ProtocolUtils.d.ts +0 -43
  456. package/node_modules/@azure/msal-common/dist/utils/ProtocolUtils.d.ts.map +0 -1
  457. package/node_modules/@azure/msal-common/dist/utils/ProtocolUtils.js +0 -80
  458. package/node_modules/@azure/msal-common/dist/utils/ProtocolUtils.js.map +0 -1
  459. package/node_modules/@azure/msal-common/dist/utils/StringUtils.d.ts +0 -54
  460. package/node_modules/@azure/msal-common/dist/utils/StringUtils.d.ts.map +0 -1
  461. package/node_modules/@azure/msal-common/dist/utils/StringUtils.js +0 -131
  462. package/node_modules/@azure/msal-common/dist/utils/StringUtils.js.map +0 -1
  463. package/node_modules/@azure/msal-common/dist/utils/TimeUtils.d.ts +0 -28
  464. package/node_modules/@azure/msal-common/dist/utils/TimeUtils.d.ts.map +0 -1
  465. package/node_modules/@azure/msal-common/dist/utils/TimeUtils.js +0 -50
  466. package/node_modules/@azure/msal-common/dist/utils/TimeUtils.js.map +0 -1
  467. package/node_modules/@azure/msal-common/package.json +0 -79
@@ -1,6 +0,0 @@
1
- export type NativeSignOutRequest = {
2
- clientId: string;
3
- accountId: string;
4
- correlationId: string;
5
- };
6
- //# sourceMappingURL=NativeSignOutRequest.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"NativeSignOutRequest.d.ts","sourceRoot":"","sources":["../../src/request/NativeSignOutRequest.ts"],"names":[],"mappings":"AAKA,MAAM,MAAM,oBAAoB,GAAG;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;CACzB,CAAC"}
@@ -1,217 +0,0 @@
1
- import { ResponseMode } from "../utils/Constants";
2
- import { StringDict } from "../utils/MsalTypes";
3
- import { ApplicationTelemetry, LibraryInfo } from "../config/ClientConfiguration";
4
- import { ServerTelemetryManager } from "../telemetry/server/ServerTelemetryManager";
5
- import { ClientInfo } from "../account/ClientInfo";
6
- export declare class RequestParameterBuilder {
7
- private parameters;
8
- constructor();
9
- /**
10
- * add response_type = code
11
- */
12
- addResponseTypeCode(): void;
13
- /**
14
- * add response_type = token id_token
15
- */
16
- addResponseTypeForTokenAndIdToken(): void;
17
- /**
18
- * add response_mode. defaults to query.
19
- * @param responseMode
20
- */
21
- addResponseMode(responseMode?: ResponseMode): void;
22
- /**
23
- * Add flag to indicate STS should attempt to use WAM if available
24
- */
25
- addNativeBroker(): void;
26
- /**
27
- * add scopes. set addOidcScopes to false to prevent default scopes in non-user scenarios
28
- * @param scopeSet
29
- * @param addOidcScopes
30
- */
31
- addScopes(scopes: string[], addOidcScopes?: boolean): void;
32
- /**
33
- * add clientId
34
- * @param clientId
35
- */
36
- addClientId(clientId: string): void;
37
- /**
38
- * add redirect_uri
39
- * @param redirectUri
40
- */
41
- addRedirectUri(redirectUri: string): void;
42
- /**
43
- * add post logout redirectUri
44
- * @param redirectUri
45
- */
46
- addPostLogoutRedirectUri(redirectUri: string): void;
47
- /**
48
- * add id_token_hint to logout request
49
- * @param idTokenHint
50
- */
51
- addIdTokenHint(idTokenHint: string): void;
52
- /**
53
- * add domain_hint
54
- * @param domainHint
55
- */
56
- addDomainHint(domainHint: string): void;
57
- /**
58
- * add login_hint
59
- * @param loginHint
60
- */
61
- addLoginHint(loginHint: string): void;
62
- /**
63
- * Adds the CCS (Cache Credential Service) query parameter for login_hint
64
- * @param loginHint
65
- */
66
- addCcsUpn(loginHint: string): void;
67
- /**
68
- * Adds the CCS (Cache Credential Service) query parameter for account object
69
- * @param loginHint
70
- */
71
- addCcsOid(clientInfo: ClientInfo): void;
72
- /**
73
- * add sid
74
- * @param sid
75
- */
76
- addSid(sid: string): void;
77
- /**
78
- * add claims
79
- * @param claims
80
- */
81
- addClaims(claims?: string, clientCapabilities?: Array<string>): void;
82
- /**
83
- * add correlationId
84
- * @param correlationId
85
- */
86
- addCorrelationId(correlationId: string): void;
87
- /**
88
- * add library info query params
89
- * @param libraryInfo
90
- */
91
- addLibraryInfo(libraryInfo: LibraryInfo): void;
92
- /**
93
- * Add client telemetry parameters
94
- * @param appTelemetry
95
- */
96
- addApplicationTelemetry(appTelemetry: ApplicationTelemetry): void;
97
- /**
98
- * add prompt
99
- * @param prompt
100
- */
101
- addPrompt(prompt: string): void;
102
- /**
103
- * add state
104
- * @param state
105
- */
106
- addState(state: string): void;
107
- /**
108
- * add nonce
109
- * @param nonce
110
- */
111
- addNonce(nonce: string): void;
112
- /**
113
- * add code_challenge and code_challenge_method
114
- * - throw if either of them are not passed
115
- * @param codeChallenge
116
- * @param codeChallengeMethod
117
- */
118
- addCodeChallengeParams(codeChallenge: string, codeChallengeMethod: string): void;
119
- /**
120
- * add the `authorization_code` passed by the user to exchange for a token
121
- * @param code
122
- */
123
- addAuthorizationCode(code: string): void;
124
- /**
125
- * add the `authorization_code` passed by the user to exchange for a token
126
- * @param code
127
- */
128
- addDeviceCode(code: string): void;
129
- /**
130
- * add the `refreshToken` passed by the user
131
- * @param refreshToken
132
- */
133
- addRefreshToken(refreshToken: string): void;
134
- /**
135
- * add the `code_verifier` passed by the user to exchange for a token
136
- * @param codeVerifier
137
- */
138
- addCodeVerifier(codeVerifier: string): void;
139
- /**
140
- * add client_secret
141
- * @param clientSecret
142
- */
143
- addClientSecret(clientSecret: string): void;
144
- /**
145
- * add clientAssertion for confidential client flows
146
- * @param clientAssertion
147
- */
148
- addClientAssertion(clientAssertion: string): void;
149
- /**
150
- * add clientAssertionType for confidential client flows
151
- * @param clientAssertionType
152
- */
153
- addClientAssertionType(clientAssertionType: string): void;
154
- /**
155
- * add OBO assertion for confidential client flows
156
- * @param clientAssertion
157
- */
158
- addOboAssertion(oboAssertion: string): void;
159
- /**
160
- * add grant type
161
- * @param grantType
162
- */
163
- addRequestTokenUse(tokenUse: string): void;
164
- /**
165
- * add grant type
166
- * @param grantType
167
- */
168
- addGrantType(grantType: string): void;
169
- /**
170
- * add client info
171
- *
172
- */
173
- addClientInfo(): void;
174
- /**
175
- * add extraQueryParams
176
- * @param eQParams
177
- */
178
- addExtraQueryParameters(eQParams: StringDict): void;
179
- addClientCapabilitiesToClaims(claims?: string, clientCapabilities?: Array<string>): string;
180
- /**
181
- * adds `username` for Password Grant flow
182
- * @param username
183
- */
184
- addUsername(username: string): void;
185
- /**
186
- * adds `password` for Password Grant flow
187
- * @param password
188
- */
189
- addPassword(password: string): void;
190
- /**
191
- * add pop_jwk to query params
192
- * @param cnfString
193
- */
194
- addPopToken(cnfString: string): void;
195
- /**
196
- * add SSH JWK and key ID to query params
197
- */
198
- addSshJwk(sshJwkString: string): void;
199
- /**
200
- * add server telemetry fields
201
- * @param serverTelemetryManager
202
- */
203
- addServerTelemetry(serverTelemetryManager: ServerTelemetryManager): void;
204
- /**
205
- * Adds parameter that indicates to the server that throttling is supported
206
- */
207
- addThrottling(): void;
208
- /**
209
- * Adds logout_hint parameter for "silent" logout which prevent server account picker
210
- */
211
- addLogoutHint(logoutHint: string): void;
212
- /**
213
- * Utility to create a URL from the params map
214
- */
215
- createQueryString(): string;
216
- }
217
- //# sourceMappingURL=RequestParameterBuilder.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"RequestParameterBuilder.d.ts","sourceRoot":"","sources":["../../src/request/RequestParameterBuilder.ts"],"names":[],"mappings":"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"}
@@ -1,385 +0,0 @@
1
- /*! @azure/msal-common v14.0.0 2023-05-03 */
2
- 'use strict';
3
- import { AADServerParamKeys, Constants, ResponseMode, SSOTypes, HeaderNames, CLIENT_INFO, ClaimsRequestKeys, PasswordGrantConstants, AuthenticationScheme, ThrottlingConstants, OIDC_DEFAULT_SCOPES } from '../utils/Constants.js';
4
- import { ScopeSet } from './ScopeSet.js';
5
- import { ClientConfigurationError } from '../error/ClientConfigurationError.js';
6
- import { RequestValidator } from './RequestValidator.js';
7
- import { StringUtils } from '../utils/StringUtils.js';
8
-
9
- /*
10
- * Copyright (c) Microsoft Corporation. All rights reserved.
11
- * Licensed under the MIT License.
12
- */
13
- class RequestParameterBuilder {
14
- constructor() {
15
- this.parameters = new Map();
16
- }
17
- /**
18
- * add response_type = code
19
- */
20
- addResponseTypeCode() {
21
- this.parameters.set(AADServerParamKeys.RESPONSE_TYPE, encodeURIComponent(Constants.CODE_RESPONSE_TYPE));
22
- }
23
- /**
24
- * add response_type = token id_token
25
- */
26
- addResponseTypeForTokenAndIdToken() {
27
- this.parameters.set(AADServerParamKeys.RESPONSE_TYPE, encodeURIComponent(`${Constants.TOKEN_RESPONSE_TYPE} ${Constants.ID_TOKEN_RESPONSE_TYPE}`));
28
- }
29
- /**
30
- * add response_mode. defaults to query.
31
- * @param responseMode
32
- */
33
- addResponseMode(responseMode) {
34
- this.parameters.set(AADServerParamKeys.RESPONSE_MODE, encodeURIComponent(responseMode ? responseMode : ResponseMode.QUERY));
35
- }
36
- /**
37
- * Add flag to indicate STS should attempt to use WAM if available
38
- */
39
- addNativeBroker() {
40
- this.parameters.set(AADServerParamKeys.NATIVE_BROKER, encodeURIComponent("1"));
41
- }
42
- /**
43
- * add scopes. set addOidcScopes to false to prevent default scopes in non-user scenarios
44
- * @param scopeSet
45
- * @param addOidcScopes
46
- */
47
- addScopes(scopes, addOidcScopes = true) {
48
- const requestScopes = addOidcScopes
49
- ? [...(scopes || []), ...OIDC_DEFAULT_SCOPES]
50
- : scopes || [];
51
- const scopeSet = new ScopeSet(requestScopes);
52
- this.parameters.set(AADServerParamKeys.SCOPE, encodeURIComponent(scopeSet.printScopes()));
53
- }
54
- /**
55
- * add clientId
56
- * @param clientId
57
- */
58
- addClientId(clientId) {
59
- this.parameters.set(AADServerParamKeys.CLIENT_ID, encodeURIComponent(clientId));
60
- }
61
- /**
62
- * add redirect_uri
63
- * @param redirectUri
64
- */
65
- addRedirectUri(redirectUri) {
66
- RequestValidator.validateRedirectUri(redirectUri);
67
- this.parameters.set(AADServerParamKeys.REDIRECT_URI, encodeURIComponent(redirectUri));
68
- }
69
- /**
70
- * add post logout redirectUri
71
- * @param redirectUri
72
- */
73
- addPostLogoutRedirectUri(redirectUri) {
74
- RequestValidator.validateRedirectUri(redirectUri);
75
- this.parameters.set(AADServerParamKeys.POST_LOGOUT_URI, encodeURIComponent(redirectUri));
76
- }
77
- /**
78
- * add id_token_hint to logout request
79
- * @param idTokenHint
80
- */
81
- addIdTokenHint(idTokenHint) {
82
- this.parameters.set(AADServerParamKeys.ID_TOKEN_HINT, encodeURIComponent(idTokenHint));
83
- }
84
- /**
85
- * add domain_hint
86
- * @param domainHint
87
- */
88
- addDomainHint(domainHint) {
89
- this.parameters.set(SSOTypes.DOMAIN_HINT, encodeURIComponent(domainHint));
90
- }
91
- /**
92
- * add login_hint
93
- * @param loginHint
94
- */
95
- addLoginHint(loginHint) {
96
- this.parameters.set(SSOTypes.LOGIN_HINT, encodeURIComponent(loginHint));
97
- }
98
- /**
99
- * Adds the CCS (Cache Credential Service) query parameter for login_hint
100
- * @param loginHint
101
- */
102
- addCcsUpn(loginHint) {
103
- this.parameters.set(HeaderNames.CCS_HEADER, encodeURIComponent(`UPN:${loginHint}`));
104
- }
105
- /**
106
- * Adds the CCS (Cache Credential Service) query parameter for account object
107
- * @param loginHint
108
- */
109
- addCcsOid(clientInfo) {
110
- this.parameters.set(HeaderNames.CCS_HEADER, encodeURIComponent(`Oid:${clientInfo.uid}@${clientInfo.utid}`));
111
- }
112
- /**
113
- * add sid
114
- * @param sid
115
- */
116
- addSid(sid) {
117
- this.parameters.set(SSOTypes.SID, encodeURIComponent(sid));
118
- }
119
- /**
120
- * add claims
121
- * @param claims
122
- */
123
- addClaims(claims, clientCapabilities) {
124
- const mergedClaims = this.addClientCapabilitiesToClaims(claims, clientCapabilities);
125
- RequestValidator.validateClaims(mergedClaims);
126
- this.parameters.set(AADServerParamKeys.CLAIMS, encodeURIComponent(mergedClaims));
127
- }
128
- /**
129
- * add correlationId
130
- * @param correlationId
131
- */
132
- addCorrelationId(correlationId) {
133
- this.parameters.set(AADServerParamKeys.CLIENT_REQUEST_ID, encodeURIComponent(correlationId));
134
- }
135
- /**
136
- * add library info query params
137
- * @param libraryInfo
138
- */
139
- addLibraryInfo(libraryInfo) {
140
- // Telemetry Info
141
- this.parameters.set(AADServerParamKeys.X_CLIENT_SKU, libraryInfo.sku);
142
- this.parameters.set(AADServerParamKeys.X_CLIENT_VER, libraryInfo.version);
143
- if (libraryInfo.os) {
144
- this.parameters.set(AADServerParamKeys.X_CLIENT_OS, libraryInfo.os);
145
- }
146
- if (libraryInfo.cpu) {
147
- this.parameters.set(AADServerParamKeys.X_CLIENT_CPU, libraryInfo.cpu);
148
- }
149
- }
150
- /**
151
- * Add client telemetry parameters
152
- * @param appTelemetry
153
- */
154
- addApplicationTelemetry(appTelemetry) {
155
- if (appTelemetry?.appName) {
156
- this.parameters.set(AADServerParamKeys.X_APP_NAME, appTelemetry.appName);
157
- }
158
- if (appTelemetry?.appVersion) {
159
- this.parameters.set(AADServerParamKeys.X_APP_VER, appTelemetry.appVersion);
160
- }
161
- }
162
- /**
163
- * add prompt
164
- * @param prompt
165
- */
166
- addPrompt(prompt) {
167
- RequestValidator.validatePrompt(prompt);
168
- this.parameters.set(`${AADServerParamKeys.PROMPT}`, encodeURIComponent(prompt));
169
- }
170
- /**
171
- * add state
172
- * @param state
173
- */
174
- addState(state) {
175
- if (!StringUtils.isEmpty(state)) {
176
- this.parameters.set(AADServerParamKeys.STATE, encodeURIComponent(state));
177
- }
178
- }
179
- /**
180
- * add nonce
181
- * @param nonce
182
- */
183
- addNonce(nonce) {
184
- this.parameters.set(AADServerParamKeys.NONCE, encodeURIComponent(nonce));
185
- }
186
- /**
187
- * add code_challenge and code_challenge_method
188
- * - throw if either of them are not passed
189
- * @param codeChallenge
190
- * @param codeChallengeMethod
191
- */
192
- addCodeChallengeParams(codeChallenge, codeChallengeMethod) {
193
- RequestValidator.validateCodeChallengeParams(codeChallenge, codeChallengeMethod);
194
- if (codeChallenge && codeChallengeMethod) {
195
- this.parameters.set(AADServerParamKeys.CODE_CHALLENGE, encodeURIComponent(codeChallenge));
196
- this.parameters.set(AADServerParamKeys.CODE_CHALLENGE_METHOD, encodeURIComponent(codeChallengeMethod));
197
- }
198
- else {
199
- throw ClientConfigurationError.createInvalidCodeChallengeParamsError();
200
- }
201
- }
202
- /**
203
- * add the `authorization_code` passed by the user to exchange for a token
204
- * @param code
205
- */
206
- addAuthorizationCode(code) {
207
- this.parameters.set(AADServerParamKeys.CODE, encodeURIComponent(code));
208
- }
209
- /**
210
- * add the `authorization_code` passed by the user to exchange for a token
211
- * @param code
212
- */
213
- addDeviceCode(code) {
214
- this.parameters.set(AADServerParamKeys.DEVICE_CODE, encodeURIComponent(code));
215
- }
216
- /**
217
- * add the `refreshToken` passed by the user
218
- * @param refreshToken
219
- */
220
- addRefreshToken(refreshToken) {
221
- this.parameters.set(AADServerParamKeys.REFRESH_TOKEN, encodeURIComponent(refreshToken));
222
- }
223
- /**
224
- * add the `code_verifier` passed by the user to exchange for a token
225
- * @param codeVerifier
226
- */
227
- addCodeVerifier(codeVerifier) {
228
- this.parameters.set(AADServerParamKeys.CODE_VERIFIER, encodeURIComponent(codeVerifier));
229
- }
230
- /**
231
- * add client_secret
232
- * @param clientSecret
233
- */
234
- addClientSecret(clientSecret) {
235
- this.parameters.set(AADServerParamKeys.CLIENT_SECRET, encodeURIComponent(clientSecret));
236
- }
237
- /**
238
- * add clientAssertion for confidential client flows
239
- * @param clientAssertion
240
- */
241
- addClientAssertion(clientAssertion) {
242
- if (!StringUtils.isEmpty(clientAssertion)) {
243
- this.parameters.set(AADServerParamKeys.CLIENT_ASSERTION, encodeURIComponent(clientAssertion));
244
- }
245
- }
246
- /**
247
- * add clientAssertionType for confidential client flows
248
- * @param clientAssertionType
249
- */
250
- addClientAssertionType(clientAssertionType) {
251
- if (!StringUtils.isEmpty(clientAssertionType)) {
252
- this.parameters.set(AADServerParamKeys.CLIENT_ASSERTION_TYPE, encodeURIComponent(clientAssertionType));
253
- }
254
- }
255
- /**
256
- * add OBO assertion for confidential client flows
257
- * @param clientAssertion
258
- */
259
- addOboAssertion(oboAssertion) {
260
- this.parameters.set(AADServerParamKeys.OBO_ASSERTION, encodeURIComponent(oboAssertion));
261
- }
262
- /**
263
- * add grant type
264
- * @param grantType
265
- */
266
- addRequestTokenUse(tokenUse) {
267
- this.parameters.set(AADServerParamKeys.REQUESTED_TOKEN_USE, encodeURIComponent(tokenUse));
268
- }
269
- /**
270
- * add grant type
271
- * @param grantType
272
- */
273
- addGrantType(grantType) {
274
- this.parameters.set(AADServerParamKeys.GRANT_TYPE, encodeURIComponent(grantType));
275
- }
276
- /**
277
- * add client info
278
- *
279
- */
280
- addClientInfo() {
281
- this.parameters.set(CLIENT_INFO, "1");
282
- }
283
- /**
284
- * add extraQueryParams
285
- * @param eQParams
286
- */
287
- addExtraQueryParameters(eQParams) {
288
- const sanitizedEQParams = RequestValidator.sanitizeEQParams(eQParams, this.parameters);
289
- Object.keys(sanitizedEQParams).forEach((key) => {
290
- this.parameters.set(key, eQParams[key]);
291
- });
292
- }
293
- addClientCapabilitiesToClaims(claims, clientCapabilities) {
294
- let mergedClaims;
295
- // Parse provided claims into JSON object or initialize empty object
296
- if (!claims) {
297
- mergedClaims = {};
298
- }
299
- else {
300
- try {
301
- mergedClaims = JSON.parse(claims);
302
- }
303
- catch (e) {
304
- throw ClientConfigurationError.createInvalidClaimsRequestError();
305
- }
306
- }
307
- if (clientCapabilities && clientCapabilities.length > 0) {
308
- if (!mergedClaims.hasOwnProperty(ClaimsRequestKeys.ACCESS_TOKEN)) {
309
- // Add access_token key to claims object
310
- mergedClaims[ClaimsRequestKeys.ACCESS_TOKEN] = {};
311
- }
312
- // Add xms_cc claim with provided clientCapabilities to access_token key
313
- mergedClaims[ClaimsRequestKeys.ACCESS_TOKEN][ClaimsRequestKeys.XMS_CC] = {
314
- values: clientCapabilities,
315
- };
316
- }
317
- return JSON.stringify(mergedClaims);
318
- }
319
- /**
320
- * adds `username` for Password Grant flow
321
- * @param username
322
- */
323
- addUsername(username) {
324
- this.parameters.set(PasswordGrantConstants.username, encodeURIComponent(username));
325
- }
326
- /**
327
- * adds `password` for Password Grant flow
328
- * @param password
329
- */
330
- addPassword(password) {
331
- this.parameters.set(PasswordGrantConstants.password, encodeURIComponent(password));
332
- }
333
- /**
334
- * add pop_jwk to query params
335
- * @param cnfString
336
- */
337
- addPopToken(cnfString) {
338
- if (!StringUtils.isEmpty(cnfString)) {
339
- this.parameters.set(AADServerParamKeys.TOKEN_TYPE, AuthenticationScheme.POP);
340
- this.parameters.set(AADServerParamKeys.REQ_CNF, encodeURIComponent(cnfString));
341
- }
342
- }
343
- /**
344
- * add SSH JWK and key ID to query params
345
- */
346
- addSshJwk(sshJwkString) {
347
- if (!StringUtils.isEmpty(sshJwkString)) {
348
- this.parameters.set(AADServerParamKeys.TOKEN_TYPE, AuthenticationScheme.SSH);
349
- this.parameters.set(AADServerParamKeys.REQ_CNF, encodeURIComponent(sshJwkString));
350
- }
351
- }
352
- /**
353
- * add server telemetry fields
354
- * @param serverTelemetryManager
355
- */
356
- addServerTelemetry(serverTelemetryManager) {
357
- this.parameters.set(AADServerParamKeys.X_CLIENT_CURR_TELEM, serverTelemetryManager.generateCurrentRequestHeaderValue());
358
- this.parameters.set(AADServerParamKeys.X_CLIENT_LAST_TELEM, serverTelemetryManager.generateLastRequestHeaderValue());
359
- }
360
- /**
361
- * Adds parameter that indicates to the server that throttling is supported
362
- */
363
- addThrottling() {
364
- this.parameters.set(AADServerParamKeys.X_MS_LIB_CAPABILITY, ThrottlingConstants.X_MS_LIB_CAPABILITY_VALUE);
365
- }
366
- /**
367
- * Adds logout_hint parameter for "silent" logout which prevent server account picker
368
- */
369
- addLogoutHint(logoutHint) {
370
- this.parameters.set(AADServerParamKeys.LOGOUT_HINT, encodeURIComponent(logoutHint));
371
- }
372
- /**
373
- * Utility to create a URL from the params map
374
- */
375
- createQueryString() {
376
- const queryParameterArray = new Array();
377
- this.parameters.forEach((value, key) => {
378
- queryParameterArray.push(`${key}=${value}`);
379
- });
380
- return queryParameterArray.join("&");
381
- }
382
- }
383
-
384
- export { RequestParameterBuilder };
385
- //# sourceMappingURL=RequestParameterBuilder.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"RequestParameterBuilder.js","sources":["../../src/request/RequestParameterBuilder.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
@@ -1,34 +0,0 @@
1
- import { StringDict } from "../utils/MsalTypes";
2
- /**
3
- * Validates server consumable params from the "request" objects
4
- */
5
- export declare class RequestValidator {
6
- /**
7
- * Utility to check if the `redirectUri` in the request is a non-null value
8
- * @param redirectUri
9
- */
10
- static validateRedirectUri(redirectUri: string): void;
11
- /**
12
- * Utility to validate prompt sent by the user in the request
13
- * @param prompt
14
- */
15
- static validatePrompt(prompt: string): void;
16
- static validateClaims(claims: string): void;
17
- /**
18
- * Utility to validate code_challenge and code_challenge_method
19
- * @param codeChallenge
20
- * @param codeChallengeMethod
21
- */
22
- static validateCodeChallengeParams(codeChallenge: string, codeChallengeMethod: string): void;
23
- /**
24
- * Utility to validate code_challenge_method
25
- * @param codeChallengeMethod
26
- */
27
- static validateCodeChallengeMethod(codeChallengeMethod: string): void;
28
- /**
29
- * Removes unnecessary, duplicate, and empty string query parameters from extraQueryParameters
30
- * @param request
31
- */
32
- static sanitizeEQParams(eQParams: StringDict, queryParams: Map<string, string>): StringDict;
33
- }
34
- //# sourceMappingURL=RequestValidator.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"RequestValidator.d.ts","sourceRoot":"","sources":["../../src/request/RequestValidator.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;GAEG;AACH,qBAAa,gBAAgB;IACzB;;;OAGG;IACH,MAAM,CAAC,mBAAmB,CAAC,WAAW,EAAE,MAAM,GAAG,IAAI;IAMrD;;;OAGG;IACH,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAY3C,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAQ3C;;;;OAIG;IACH,MAAM,CAAC,2BAA2B,CAC9B,aAAa,EAAE,MAAM,EACrB,mBAAmB,EAAE,MAAM,GAC5B,IAAI;IAWP;;;OAGG;IACH,MAAM,CAAC,2BAA2B,CAAC,mBAAmB,EAAE,MAAM,GAAG,IAAI;IAWrE;;;OAGG;IACH,MAAM,CAAC,gBAAgB,CACnB,QAAQ,EAAE,UAAU,EACpB,WAAW,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,GACjC,UAAU;CAiBhB"}