tntd 1.4.31 → 1.4.33-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.
Files changed (1016) hide show
  1. package/components/Ellipsis/index.js +47 -15
  2. package/components/QueryForm/Field/SelectInput.js +3 -1
  3. package/components/QueryForm/README.md +4 -1
  4. package/components/QueryListScene/QueryForm.js +4 -4
  5. package/components/QueryListScene/createActions.js +4 -4
  6. package/dist/1.tntd.js +1 -1
  7. package/dist/stats.json +27465 -26665
  8. package/dist/tntd.css +1 -1
  9. package/dist/tntd.js +7 -10
  10. package/es/ArrayInput/icon.js +5 -5
  11. package/es/ArrayInput/index.js +79 -111
  12. package/es/AuthContext.js +1 -1
  13. package/es/Columns/index.js +33 -40
  14. package/es/DevelopmentLogin/LoginModal.js +33 -46
  15. package/es/DevelopmentLogin/index.js +14 -18
  16. package/es/Ellipsis/Svg/CopySVG.js +13 -13
  17. package/es/Ellipsis/Svg/TickSVG.js +8 -8
  18. package/es/Ellipsis/index.js +100 -79
  19. package/es/Handle/index.js +46 -64
  20. package/es/Icon/fonts/iconfont.js +7 -12
  21. package/es/Icon/index.js +12 -15
  22. package/es/Img/Contain.js +26 -31
  23. package/es/Img/Cover.js +43 -57
  24. package/es/Img/index.js +39 -48
  25. package/es/Layout/ActionsContext.js +3 -2
  26. package/es/Layout/AppList.js +39 -94
  27. package/es/Layout/Application.js +28 -74
  28. package/es/Layout/Avatar.js +30 -67
  29. package/es/Layout/CompatibleLanguage.js +41 -96
  30. package/es/Layout/EnterpriseLayout/Avatar.js +39 -77
  31. package/es/Layout/EnterpriseLayout/Language.js +16 -34
  32. package/es/Layout/EnterpriseLayout/Theme.js +18 -36
  33. package/es/Layout/EnterpriseLayout/index.js +14 -16
  34. package/es/Layout/GlobalNavigation/NavigationPopup.js +61 -172
  35. package/es/Layout/GlobalNavigation/index.js +22 -56
  36. package/es/Layout/Header.js +26 -47
  37. package/es/Layout/HeaderActions.js +45 -59
  38. package/es/Layout/HeaderNavs.js +24 -51
  39. package/es/Layout/HeaderTabs.js +53 -106
  40. package/es/Layout/Iconfont.js +1 -1
  41. package/es/Layout/Language.js +16 -34
  42. package/es/Layout/Layout.js +88 -110
  43. package/es/Layout/Logo.js +17 -33
  44. package/es/Layout/OrgAppList.js +64 -109
  45. package/es/Layout/SideMenu.js +67 -128
  46. package/es/Layout/Theme.js +25 -63
  47. package/es/Layout/index.js +28 -37
  48. package/es/Layout/paaslayout/CompactSideMenu.js +37 -76
  49. package/es/Layout/paaslayout/Header.js +23 -46
  50. package/es/Layout/paaslayout/Logo.js +4 -14
  51. package/es/Layout/paaslayout/SideMenu.js +41 -80
  52. package/es/Layout/paaslayout/index.js +77 -104
  53. package/es/Layout/storage.js +10 -9
  54. package/es/LoadingButton/index.js +18 -27
  55. package/es/Modal/index.js +42 -51
  56. package/es/Page/Box.js +36 -43
  57. package/es/Page/index.js +56 -71
  58. package/es/Page/utils.js +0 -5
  59. package/es/QueryForm/Field/Checkbox.js +7 -11
  60. package/es/QueryForm/Field/Select.js +34 -44
  61. package/es/QueryForm/Field/SelectInput.js +32 -45
  62. package/es/QueryForm/Field/fieldsMap.js +0 -1
  63. package/es/QueryForm/Field/index.js +46 -78
  64. package/es/QueryForm/README.md +4 -1
  65. package/es/QueryForm/createActions.js +6 -7
  66. package/es/QueryForm/index.js +79 -140
  67. package/es/QueryListScene/List.js +83 -139
  68. package/es/QueryListScene/QueryForm.js +54 -91
  69. package/es/QueryListScene/QueryListScene.js +29 -47
  70. package/es/QueryListScene/Title.js +3 -3
  71. package/es/QueryListScene/Toolbar.js +13 -14
  72. package/es/QueryListScene/createActions.js +4 -4
  73. package/es/Select/DropDownWrap.js +32 -55
  74. package/es/Select/index.js +140 -232
  75. package/es/Table/ResizableTable/index.js +29 -43
  76. package/es/Table/index.js +20 -19
  77. package/es/Title/index.js +23 -25
  78. package/es/locale.js +1 -5
  79. package/es/utils/checkAuth.js +6 -8
  80. package/es/utils/findMenuInfoByPath.js +0 -4
  81. package/es/utils/index.js +17 -27
  82. package/lib/ArrayInput/icon.js +7 -9
  83. package/lib/ArrayInput/index.js +82 -131
  84. package/lib/AuthContext.js +2 -6
  85. package/lib/Columns/index.js +36 -54
  86. package/lib/DevelopmentLogin/LoginModal.js +36 -63
  87. package/lib/DevelopmentLogin/index.js +21 -31
  88. package/lib/Ellipsis/Svg/CopySVG.js +15 -18
  89. package/lib/Ellipsis/Svg/TickSVG.js +10 -13
  90. package/lib/Ellipsis/index.js +105 -93
  91. package/lib/Handle/index.js +51 -87
  92. package/lib/Icon/fonts/iconfont.js +7 -12
  93. package/lib/Icon/iconList.js +1 -2
  94. package/lib/Icon/index.js +16 -26
  95. package/lib/Img/Contain.js +29 -40
  96. package/lib/Img/Cover.js +48 -72
  97. package/lib/Img/index.js +42 -58
  98. package/lib/Layout/ActionsContext.js +1 -5
  99. package/lib/Layout/AppList.js +45 -124
  100. package/lib/Layout/Application.js +31 -92
  101. package/lib/Layout/Avatar.js +36 -91
  102. package/lib/Layout/CompatibleLanguage.js +44 -116
  103. package/lib/Layout/EnterpriseLayout/Avatar.js +45 -105
  104. package/lib/Layout/EnterpriseLayout/Language.js +22 -54
  105. package/lib/Layout/EnterpriseLayout/Theme.js +21 -50
  106. package/lib/Layout/EnterpriseLayout/index.js +17 -27
  107. package/lib/Layout/GlobalNavigation/NavigationPopup.js +64 -192
  108. package/lib/Layout/GlobalNavigation/index.js +28 -80
  109. package/lib/Layout/Header.js +36 -68
  110. package/lib/Layout/HeaderActions.js +51 -81
  111. package/lib/Layout/HeaderNavs.js +30 -70
  112. package/lib/Layout/HeaderTabs.js +58 -127
  113. package/lib/Layout/Iconfont.js +4 -9
  114. package/lib/Layout/Language.js +22 -54
  115. package/lib/Layout/Layout.js +93 -134
  116. package/lib/Layout/Logo.js +26 -47
  117. package/lib/Layout/OrgAppList.js +69 -133
  118. package/lib/Layout/SideMenu.js +72 -151
  119. package/lib/Layout/Theme.js +28 -79
  120. package/lib/Layout/createActions.js +3 -9
  121. package/lib/Layout/images/index.js +5 -36
  122. package/lib/Layout/index.js +35 -63
  123. package/lib/Layout/paaslayout/CompactSideMenu.js +40 -90
  124. package/lib/Layout/paaslayout/Header.js +30 -60
  125. package/lib/Layout/paaslayout/Logo.js +11 -24
  126. package/lib/Layout/paaslayout/SideMenu.js +44 -93
  127. package/lib/Layout/paaslayout/index.js +82 -128
  128. package/lib/Layout/storage.js +26 -68
  129. package/lib/LoadingButton/index.js +21 -36
  130. package/lib/Modal/index.js +45 -62
  131. package/lib/Page/Box.js +38 -50
  132. package/lib/Page/index.js +58 -84
  133. package/lib/Page/utils.js +5 -16
  134. package/lib/QueryForm/Field/Checkbox.js +10 -19
  135. package/lib/QueryForm/Field/Select.js +39 -60
  136. package/lib/QueryForm/Field/SelectInput.js +37 -64
  137. package/lib/QueryForm/Field/fieldsMap.js +6 -23
  138. package/lib/QueryForm/Field/index.js +50 -91
  139. package/lib/QueryForm/README.md +4 -1
  140. package/lib/QueryForm/createActions.js +9 -16
  141. package/lib/QueryForm/index.js +83 -165
  142. package/lib/QueryForm/useForm.js +1 -6
  143. package/lib/QueryListScene/List.js +89 -153
  144. package/lib/QueryListScene/QueryForm.js +58 -101
  145. package/lib/QueryListScene/QueryListScene.js +31 -56
  146. package/lib/QueryListScene/Title.js +6 -11
  147. package/lib/QueryListScene/Toolbar.js +16 -22
  148. package/lib/QueryListScene/createActions.js +7 -13
  149. package/lib/QueryListScene/index.js +5 -19
  150. package/lib/QueryListScene/useActions.js +1 -6
  151. package/lib/Select/DropDownWrap.js +35 -63
  152. package/lib/Select/index.js +142 -245
  153. package/lib/Table/ResizableTable/index.js +31 -54
  154. package/lib/Table/index.js +21 -34
  155. package/lib/Title/index.js +26 -34
  156. package/lib/index.js +36 -57
  157. package/lib/locale.js +9 -25
  158. package/lib/utils/checkAuth.js +9 -16
  159. package/lib/utils/findMenuInfoByPath.js +3 -12
  160. package/lib/utils/index.js +26 -60
  161. package/package.json +3 -2
  162. package/common/temp/publish-home/.npm/_logs/2023-02-24T09_28_35_585Z-debug-0.log +0 -39
  163. package/common/temp/publish-home/.npm/_logs/2023-02-24T09_29_14_285Z-debug-0.log +0 -1426
  164. package/common/temp/publish-home/.npm/_logs/2023-03-07T06_11_25_569Z-debug-0.log +0 -39
  165. package/common/temp/publish-home/.npm/_logs/2023-03-07T06_11_28_924Z-debug-0.log +0 -1426
  166. package/common/temp/publish-home/.npm/_logs/2023-03-08T11_15_34_815Z-debug-0.log +0 -34
  167. package/common/temp/publish-home/.npm/_logs/2023-03-08T11_18_04_372Z-debug-0.log +0 -34
  168. package/common/temp/publish-home/.npm/_logs/2023-03-08T11_22_54_526Z-debug-0.log +0 -34
  169. package/common/temp/rush-recycler/install-run-1678274025679/@azure/abort-controller/dist/index.js +0 -239
  170. package/common/temp/rush-recycler/install-run-1678274025679/@azure/abort-controller/dist/index.js.map +0 -1
  171. package/common/temp/rush-recycler/install-run-1678274025679/@azure/core-auth/dist/index.js +0 -215
  172. package/common/temp/rush-recycler/install-run-1678274025679/@azure/core-auth/dist/index.js.map +0 -1
  173. package/common/temp/rush-recycler/install-run-1678274025679/@azure/core-client/dist/index.js +0 -2171
  174. package/common/temp/rush-recycler/install-run-1678274025679/@azure/core-client/dist/index.js.map +0 -1
  175. package/common/temp/rush-recycler/install-run-1678274025679/@azure/core-http/dist/index.js +0 -5500
  176. package/common/temp/rush-recycler/install-run-1678274025679/@azure/core-http/dist/index.js.map +0 -1
  177. package/common/temp/rush-recycler/install-run-1678274025679/@azure/core-lro/dist/index.js +0 -1171
  178. package/common/temp/rush-recycler/install-run-1678274025679/@azure/core-lro/dist/index.js.map +0 -1
  179. package/common/temp/rush-recycler/install-run-1678274025679/@azure/core-paging/dist/index.js +0 -104
  180. package/common/temp/rush-recycler/install-run-1678274025679/@azure/core-paging/dist/index.js.map +0 -1
  181. package/common/temp/rush-recycler/install-run-1678274025679/@azure/core-rest-pipeline/dist/index.js +0 -2282
  182. package/common/temp/rush-recycler/install-run-1678274025679/@azure/core-rest-pipeline/dist/index.js.map +0 -1
  183. package/common/temp/rush-recycler/install-run-1678274025679/@azure/core-tracing/dist/index.js +0 -184
  184. package/common/temp/rush-recycler/install-run-1678274025679/@azure/core-tracing/dist/index.js.map +0 -1
  185. package/common/temp/rush-recycler/install-run-1678274025679/@azure/core-util/dist/index.js +0 -217
  186. package/common/temp/rush-recycler/install-run-1678274025679/@azure/core-util/dist/index.js.map +0 -1
  187. package/common/temp/rush-recycler/install-run-1678274025679/@azure/identity/dist/index.js +0 -3727
  188. package/common/temp/rush-recycler/install-run-1678274025679/@azure/identity/dist/index.js.map +0 -1
  189. package/common/temp/rush-recycler/install-run-1678274025679/@azure/logger/dist/index.js +0 -208
  190. package/common/temp/rush-recycler/install-run-1678274025679/@azure/logger/dist/index.js.map +0 -1
  191. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/_virtual/_tslib.js +0 -117
  192. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/_virtual/_tslib.js.map +0 -1
  193. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/app/ClientApplication.d.ts +0 -333
  194. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/app/ClientApplication.d.ts.map +0 -1
  195. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/app/ClientApplication.js +0 -1039
  196. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/app/ClientApplication.js.map +0 -1
  197. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/app/IPublicClientApplication.d.ts +0 -46
  198. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/app/IPublicClientApplication.d.ts.map +0 -1
  199. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/app/IPublicClientApplication.js +0 -103
  200. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/app/IPublicClientApplication.js.map +0 -1
  201. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/app/PublicClientApplication.d.ts +0 -71
  202. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/app/PublicClientApplication.d.ts.map +0 -1
  203. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/app/PublicClientApplication.js +0 -278
  204. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/app/PublicClientApplication.js.map +0 -1
  205. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/broker/nativeBroker/NativeMessageHandler.d.ts +0 -60
  206. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/broker/nativeBroker/NativeMessageHandler.d.ts.map +0 -1
  207. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/broker/nativeBroker/NativeMessageHandler.js +0 -261
  208. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/broker/nativeBroker/NativeMessageHandler.js.map +0 -1
  209. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/broker/nativeBroker/NativeRequest.d.ts +0 -44
  210. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/broker/nativeBroker/NativeRequest.d.ts.map +0 -1
  211. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/broker/nativeBroker/NativeResponse.d.ts +0 -49
  212. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/broker/nativeBroker/NativeResponse.d.ts.map +0 -1
  213. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/AsyncMemoryStorage.d.ts +0 -52
  214. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/AsyncMemoryStorage.d.ts.map +0 -1
  215. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/AsyncMemoryStorage.js +0 -210
  216. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/AsyncMemoryStorage.js.map +0 -1
  217. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/BrowserCacheManager.d.ts +0 -319
  218. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/BrowserCacheManager.d.ts.map +0 -1
  219. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/BrowserCacheManager.js +0 -975
  220. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/BrowserCacheManager.js.map +0 -1
  221. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/BrowserStorage.d.ts +0 -12
  222. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/BrowserStorage.d.ts.map +0 -1
  223. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/BrowserStorage.js +0 -43
  224. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/BrowserStorage.js.map +0 -1
  225. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/CryptoKeyStore.d.ts +0 -18
  226. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/CryptoKeyStore.d.ts.map +0 -1
  227. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/CryptoKeyStore.js +0 -58
  228. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/CryptoKeyStore.js.map +0 -1
  229. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/DatabaseStorage.d.ts +0 -57
  230. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/DatabaseStorage.d.ts.map +0 -1
  231. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/DatabaseStorage.js +0 -262
  232. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/DatabaseStorage.js.map +0 -1
  233. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/IAsyncMemoryStorage.d.ts +0 -28
  234. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/IAsyncMemoryStorage.d.ts.map +0 -1
  235. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/ITokenCache.d.ts +0 -11
  236. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/ITokenCache.d.ts.map +0 -1
  237. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/IWindowStorage.d.ts +0 -28
  238. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/IWindowStorage.d.ts.map +0 -1
  239. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/MemoryStorage.d.ts +0 -12
  240. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/MemoryStorage.d.ts.map +0 -1
  241. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/MemoryStorage.js +0 -37
  242. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/MemoryStorage.js.map +0 -1
  243. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/TokenCache.d.ts +0 -77
  244. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/TokenCache.d.ts.map +0 -1
  245. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/TokenCache.js +0 -227
  246. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/cache/TokenCache.js.map +0 -1
  247. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/config/Configuration.d.ts +0 -196
  248. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/config/Configuration.d.ts.map +0 -1
  249. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/config/Configuration.js +0 -86
  250. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/config/Configuration.js.map +0 -1
  251. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/BrowserCrypto.d.ts +0 -62
  252. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/BrowserCrypto.d.ts.map +0 -1
  253. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/BrowserCrypto.js +0 -167
  254. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/BrowserCrypto.js.map +0 -1
  255. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/CryptoOps.d.ts +0 -74
  256. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/CryptoOps.d.ts.map +0 -1
  257. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/CryptoOps.js +0 -223
  258. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/CryptoOps.js.map +0 -1
  259. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/GuidGenerator.d.ts +0 -13
  260. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/GuidGenerator.d.ts.map +0 -1
  261. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/GuidGenerator.js +0 -93
  262. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/GuidGenerator.js.map +0 -1
  263. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/ISubtleCrypto.d.ts +0 -10
  264. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/ISubtleCrypto.d.ts.map +0 -1
  265. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/ModernBrowserCrypto.d.ts +0 -10
  266. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/ModernBrowserCrypto.d.ts.map +0 -1
  267. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/ModernBrowserCrypto.js +0 -55
  268. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/ModernBrowserCrypto.js.map +0 -1
  269. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/MsBrowserCrypto.d.ts +0 -10
  270. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/MsBrowserCrypto.d.ts.map +0 -1
  271. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/MsBrowserCrypto.js +0 -112
  272. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/MsBrowserCrypto.js.map +0 -1
  273. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/MsrBrowserCrypto.d.ts +0 -18
  274. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/MsrBrowserCrypto.d.ts.map +0 -1
  275. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/MsrBrowserCrypto.js +0 -59
  276. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/MsrBrowserCrypto.js.map +0 -1
  277. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/PkceGenerator.d.ts +0 -25
  278. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/PkceGenerator.d.ts.map +0 -1
  279. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/PkceGenerator.js +0 -87
  280. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/PkceGenerator.js.map +0 -1
  281. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/SignedHttpRequest.d.ts +0 -31
  282. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/SignedHttpRequest.d.ts.map +0 -1
  283. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/SignedHttpRequest.js +0 -70
  284. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/crypto/SignedHttpRequest.js.map +0 -1
  285. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/encode/Base64Decode.d.ts +0 -23
  286. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/encode/Base64Decode.d.ts.map +0 -1
  287. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/encode/Base64Decode.js +0 -82
  288. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/encode/Base64Decode.js.map +0 -1
  289. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/encode/Base64Encode.d.ts +0 -32
  290. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/encode/Base64Encode.d.ts.map +0 -1
  291. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/encode/Base64Encode.js +0 -88
  292. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/encode/Base64Encode.js.map +0 -1
  293. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/error/BrowserAuthError.d.ts +0 -375
  294. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/error/BrowserAuthError.d.ts.map +0 -1
  295. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/error/BrowserAuthError.js +0 -482
  296. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/error/BrowserAuthError.js.map +0 -1
  297. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/error/BrowserConfigurationAuthError.d.ts +0 -71
  298. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/error/BrowserConfigurationAuthError.d.ts.map +0 -1
  299. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/error/BrowserConfigurationAuthError.js +0 -107
  300. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/error/BrowserConfigurationAuthError.js.map +0 -1
  301. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/error/NativeAuthError.d.ts +0 -57
  302. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/error/NativeAuthError.d.ts.map +0 -1
  303. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/error/NativeAuthError.js +0 -97
  304. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/error/NativeAuthError.js.map +0 -1
  305. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/event/EventHandler.d.ts +0 -42
  306. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/event/EventHandler.d.ts.map +0 -1
  307. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/event/EventHandler.js +0 -127
  308. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/event/EventHandler.js.map +0 -1
  309. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/event/EventMessage.d.ts +0 -26
  310. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/event/EventMessage.d.ts.map +0 -1
  311. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/event/EventMessage.js +0 -71
  312. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/event/EventMessage.js.map +0 -1
  313. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/event/EventType.d.ts +0 -27
  314. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/event/EventType.d.ts.map +0 -1
  315. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/event/EventType.js +0 -36
  316. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/event/EventType.js.map +0 -1
  317. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/index.cjs.js +0 -17467
  318. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/index.cjs.js.map +0 -1
  319. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/index.d.ts +0 -36
  320. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/index.d.ts.map +0 -1
  321. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/index.js +0 -18
  322. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/index.js.map +0 -1
  323. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/BaseInteractionClient.d.ts +0 -53
  324. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/BaseInteractionClient.d.ts.map +0 -1
  325. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/BaseInteractionClient.js +0 -179
  326. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/BaseInteractionClient.js.map +0 -1
  327. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
  328. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
  329. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/HybridSpaAuthorizationCodeClient.js +0 -21
  330. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/HybridSpaAuthorizationCodeClient.js.map +0 -1
  331. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/NativeInteractionClient.d.ts +0 -86
  332. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/NativeInteractionClient.d.ts.map +0 -1
  333. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/NativeInteractionClient.js +0 -480
  334. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/NativeInteractionClient.js.map +0 -1
  335. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/PopupClient.d.ts +0 -112
  336. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/PopupClient.d.ts.map +0 -1
  337. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/PopupClient.js +0 -513
  338. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/PopupClient.js.map +0 -1
  339. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/RedirectClient.d.ts +0 -49
  340. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/RedirectClient.d.ts.map +0 -1
  341. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/RedirectClient.js +0 -353
  342. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/RedirectClient.js.map +0 -1
  343. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/SilentAuthCodeClient.d.ts +0 -23
  344. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
  345. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/SilentAuthCodeClient.js +0 -87
  346. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/SilentAuthCodeClient.js.map +0 -1
  347. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/SilentCacheClient.d.ts +0 -22
  348. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/SilentCacheClient.d.ts.map +0 -1
  349. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/SilentCacheClient.js +0 -108
  350. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/SilentCacheClient.js.map +0 -1
  351. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/SilentIframeClient.d.ts +0 -32
  352. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/SilentIframeClient.d.ts.map +0 -1
  353. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/SilentIframeClient.js +0 -158
  354. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/SilentIframeClient.js.map +0 -1
  355. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/SilentRefreshClient.d.ts +0 -20
  356. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/SilentRefreshClient.d.ts.map +0 -1
  357. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/SilentRefreshClient.js +0 -100
  358. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/SilentRefreshClient.js.map +0 -1
  359. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/StandardInteractionClient.d.ts +0 -60
  360. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/StandardInteractionClient.d.ts.map +0 -1
  361. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/StandardInteractionClient.js +0 -308
  362. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_client/StandardInteractionClient.js.map +0 -1
  363. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_handler/InteractionHandler.d.ts +0 -40
  364. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_handler/InteractionHandler.d.ts.map +0 -1
  365. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_handler/InteractionHandler.js +0 -162
  366. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_handler/InteractionHandler.js.map +0 -1
  367. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_handler/RedirectHandler.d.ts +0 -25
  368. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_handler/RedirectHandler.d.ts.map +0 -1
  369. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_handler/RedirectHandler.js +0 -145
  370. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_handler/RedirectHandler.js.map +0 -1
  371. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_handler/SilentHandler.d.ts +0 -48
  372. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_handler/SilentHandler.d.ts.map +0 -1
  373. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_handler/SilentHandler.js +0 -161
  374. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/interaction_handler/SilentHandler.js.map +0 -1
  375. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/internals.d.ts +0 -21
  376. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/internals.d.ts.map +0 -1
  377. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/internals.js +0 -23
  378. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/internals.js.map +0 -1
  379. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/navigation/INavigationClient.d.ts +0 -17
  380. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/navigation/INavigationClient.d.ts.map +0 -1
  381. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/navigation/NavigationClient.d.ts +0 -23
  382. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/navigation/NavigationClient.d.ts.map +0 -1
  383. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/navigation/NavigationClient.js +0 -48
  384. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/navigation/NavigationClient.js.map +0 -1
  385. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/navigation/NavigationOptions.d.ts +0 -13
  386. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/navigation/NavigationOptions.d.ts.map +0 -1
  387. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/network/FetchClient.d.ts +0 -27
  388. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/network/FetchClient.d.ts.map +0 -1
  389. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/network/FetchClient.js +0 -138
  390. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/network/FetchClient.js.map +0 -1
  391. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/network/XhrClient.d.ts +0 -41
  392. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/network/XhrClient.d.ts.map +0 -1
  393. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/network/XhrClient.js +0 -138
  394. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/network/XhrClient.js.map +0 -1
  395. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/packageMetadata.d.ts +0 -3
  396. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/packageMetadata.d.ts.map +0 -1
  397. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/packageMetadata.js +0 -8
  398. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/packageMetadata.js.map +0 -1
  399. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/request/AuthorizationCodeRequest.d.ts +0 -9
  400. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/request/AuthorizationCodeRequest.d.ts.map +0 -1
  401. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/request/AuthorizationUrlRequest.d.ts +0 -9
  402. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/request/AuthorizationUrlRequest.d.ts.map +0 -1
  403. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/request/EndSessionPopupRequest.d.ts +0 -19
  404. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/request/EndSessionPopupRequest.d.ts.map +0 -1
  405. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/request/EndSessionRequest.d.ts +0 -16
  406. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/request/EndSessionRequest.d.ts.map +0 -1
  407. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/request/PopupRequest.d.ts +0 -33
  408. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/request/PopupRequest.d.ts.map +0 -1
  409. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/request/PopupWindowAttributes.d.ts +0 -16
  410. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/request/PopupWindowAttributes.d.ts.map +0 -1
  411. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/request/RedirectRequest.d.ts +0 -34
  412. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/request/RedirectRequest.d.ts.map +0 -1
  413. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/request/SilentRequest.d.ts +0 -31
  414. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/request/SilentRequest.d.ts.map +0 -1
  415. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/request/SsoSilentRequest.d.ts +0 -27
  416. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/request/SsoSilentRequest.d.ts.map +0 -1
  417. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/telemetry/BrowserPerformanceClient.d.ts +0 -37
  418. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
  419. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/telemetry/BrowserPerformanceClient.js +0 -108
  420. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/telemetry/BrowserPerformanceClient.js.map +0 -1
  421. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/telemetry/BrowserPerformanceMeasurement.d.ts +0 -13
  422. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
  423. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/telemetry/BrowserPerformanceMeasurement.js +0 -66
  424. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/telemetry/BrowserPerformanceMeasurement.js.map +0 -1
  425. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/utils/BrowserConstants.d.ts +0 -163
  426. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/utils/BrowserConstants.d.ts.map +0 -1
  427. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/utils/BrowserConstants.js +0 -216
  428. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/utils/BrowserConstants.js.map +0 -1
  429. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/utils/BrowserProtocolUtils.d.ts +0 -19
  430. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/utils/BrowserProtocolUtils.d.ts.map +0 -1
  431. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/utils/BrowserProtocolUtils.js +0 -44
  432. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/utils/BrowserProtocolUtils.js.map +0 -1
  433. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/utils/BrowserStringUtils.d.ts +0 -27
  434. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/utils/BrowserStringUtils.d.ts.map +0 -1
  435. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/utils/BrowserStringUtils.js +0 -122
  436. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/utils/BrowserStringUtils.js.map +0 -1
  437. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/utils/BrowserUtils.d.ts +0 -66
  438. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/utils/BrowserUtils.d.ts.map +0 -1
  439. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/utils/BrowserUtils.js +0 -147
  440. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/utils/BrowserUtils.js.map +0 -1
  441. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/utils/MathUtils.d.ts +0 -12
  442. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/utils/MathUtils.d.ts.map +0 -1
  443. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/utils/MathUtils.js +0 -29
  444. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-browser/dist/utils/MathUtils.js.map +0 -1
  445. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/_virtual/_tslib.js +0 -90
  446. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/_virtual/_tslib.js.map +0 -1
  447. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/account/AccountInfo.d.ts +0 -32
  448. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/account/AccountInfo.d.ts.map +0 -1
  449. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/account/AuthToken.d.ts +0 -21
  450. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/account/AuthToken.d.ts.map +0 -1
  451. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/account/AuthToken.js +0 -57
  452. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/account/AuthToken.js.map +0 -1
  453. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/account/CcsCredential.d.ts +0 -9
  454. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/account/CcsCredential.d.ts.map +0 -1
  455. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/account/CcsCredential.js +0 -14
  456. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/account/CcsCredential.js.map +0 -1
  457. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/account/ClientCredentials.d.ts +0 -15
  458. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/account/ClientCredentials.d.ts.map +0 -1
  459. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/account/ClientInfo.d.ts +0 -20
  460. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/account/ClientInfo.d.ts.map +0 -1
  461. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/account/ClientInfo.js +0 -44
  462. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/account/ClientInfo.js.map +0 -1
  463. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/account/DecodedAuthToken.d.ts +0 -9
  464. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/account/DecodedAuthToken.d.ts.map +0 -1
  465. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/account/TokenClaims.d.ts +0 -61
  466. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/account/TokenClaims.d.ts.map +0 -1
  467. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/Authority.d.ts +0 -202
  468. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/Authority.d.ts.map +0 -1
  469. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/Authority.js +0 -688
  470. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/Authority.js.map +0 -1
  471. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/AuthorityFactory.d.ts +0 -29
  472. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/AuthorityFactory.d.ts.map +0 -1
  473. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/AuthorityFactory.js +0 -69
  474. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/AuthorityFactory.js.map +0 -1
  475. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/AuthorityMetadata.d.ts +0 -623
  476. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/AuthorityMetadata.d.ts.map +0 -1
  477. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/AuthorityMetadata.js +0 -12
  478. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/AuthorityMetadata.js.map +0 -1
  479. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/AuthorityOptions.d.ts +0 -19
  480. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/AuthorityOptions.d.ts.map +0 -1
  481. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/AuthorityOptions.js +0 -24
  482. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/AuthorityOptions.js.map +0 -1
  483. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/AuthorityType.d.ts +0 -9
  484. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/AuthorityType.d.ts.map +0 -1
  485. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/AuthorityType.js +0 -18
  486. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/AuthorityType.js.map +0 -1
  487. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/AzureRegion.d.ts +0 -2
  488. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/AzureRegion.d.ts.map +0 -1
  489. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/AzureRegionConfiguration.d.ts +0 -6
  490. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/AzureRegionConfiguration.d.ts.map +0 -1
  491. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/CloudDiscoveryMetadata.d.ts +0 -6
  492. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/CloudDiscoveryMetadata.d.ts.map +0 -1
  493. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/CloudInstanceDiscoveryResponse.d.ts +0 -10
  494. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/CloudInstanceDiscoveryResponse.d.ts.map +0 -1
  495. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/CloudInstanceDiscoveryResponse.js +0 -13
  496. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/CloudInstanceDiscoveryResponse.js.map +0 -1
  497. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/ImdsOptions.d.ts +0 -7
  498. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/ImdsOptions.d.ts.map +0 -1
  499. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/OpenIdConfigResponse.d.ts +0 -12
  500. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/OpenIdConfigResponse.d.ts.map +0 -1
  501. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/OpenIdConfigResponse.js +0 -15
  502. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/OpenIdConfigResponse.js.map +0 -1
  503. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/ProtocolMode.d.ts +0 -8
  504. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/ProtocolMode.d.ts.map +0 -1
  505. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/ProtocolMode.js +0 -17
  506. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/ProtocolMode.js.map +0 -1
  507. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/RegionDiscovery.d.ts +0 -28
  508. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/RegionDiscovery.d.ts.map +0 -1
  509. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/RegionDiscovery.js +0 -127
  510. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/RegionDiscovery.js.map +0 -1
  511. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/RegionDiscoveryMetadata.d.ts +0 -7
  512. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/authority/RegionDiscoveryMetadata.d.ts.map +0 -1
  513. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/CacheManager.d.ts +0 -393
  514. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/CacheManager.d.ts.map +0 -1
  515. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/CacheManager.js +0 -890
  516. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/CacheManager.js.map +0 -1
  517. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/AccessTokenEntity.d.ts +0 -57
  518. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/AccessTokenEntity.d.ts.map +0 -1
  519. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/AccessTokenEntity.js +0 -124
  520. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/AccessTokenEntity.js.map +0 -1
  521. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/AccountEntity.d.ts +0 -100
  522. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/AccountEntity.d.ts.map +0 -1
  523. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/AccountEntity.js +0 -247
  524. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/AccountEntity.js.map +0 -1
  525. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/AppMetadataEntity.d.ts +0 -40
  526. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/AppMetadataEntity.d.ts.map +0 -1
  527. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/AppMetadataEntity.js +0 -74
  528. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/AppMetadataEntity.js.map +0 -1
  529. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/AuthorityMetadataEntity.d.ts +0 -48
  530. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/AuthorityMetadataEntity.d.ts.map +0 -1
  531. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/AuthorityMetadataEntity.js +0 -82
  532. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/AuthorityMetadataEntity.js.map +0 -1
  533. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/CacheRecord.d.ts +0 -14
  534. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/CacheRecord.d.ts.map +0 -1
  535. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/CacheRecord.js +0 -19
  536. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/CacheRecord.js.map +0 -1
  537. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/CredentialEntity.d.ts +0 -94
  538. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/CredentialEntity.d.ts.map +0 -1
  539. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/CredentialEntity.js +0 -164
  540. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/CredentialEntity.js.map +0 -1
  541. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/IdTokenEntity.d.ts +0 -35
  542. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/IdTokenEntity.d.ts.map +0 -1
  543. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/IdTokenEntity.js +0 -70
  544. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/IdTokenEntity.js.map +0 -1
  545. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/RefreshTokenEntity.d.ts +0 -37
  546. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/RefreshTokenEntity.d.ts.map +0 -1
  547. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/RefreshTokenEntity.js +0 -73
  548. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/RefreshTokenEntity.js.map +0 -1
  549. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/ServerTelemetryEntity.d.ts +0 -13
  550. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/ServerTelemetryEntity.d.ts.map +0 -1
  551. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/ServerTelemetryEntity.js +0 -35
  552. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/ServerTelemetryEntity.js.map +0 -1
  553. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/ThrottlingEntity.d.ts +0 -14
  554. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/ThrottlingEntity.d.ts.map +0 -1
  555. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/ThrottlingEntity.js +0 -32
  556. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/entities/ThrottlingEntity.js.map +0 -1
  557. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/interface/ICacheManager.d.ts +0 -157
  558. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/interface/ICacheManager.d.ts.map +0 -1
  559. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/interface/ICachePlugin.d.ts +0 -6
  560. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/interface/ICachePlugin.d.ts.map +0 -1
  561. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/interface/ISerializableTokenCache.d.ts +0 -5
  562. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/interface/ISerializableTokenCache.d.ts.map +0 -1
  563. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/persistence/TokenCacheContext.d.ts +0 -24
  564. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/persistence/TokenCacheContext.d.ts.map +0 -1
  565. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/persistence/TokenCacheContext.js +0 -39
  566. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/persistence/TokenCacheContext.js.map +0 -1
  567. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/utils/CacheTypes.d.ts +0 -60
  568. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/cache/utils/CacheTypes.d.ts.map +0 -1
  569. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/AuthorizationCodeClient.d.ts +0 -76
  570. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/AuthorizationCodeClient.d.ts.map +0 -1
  571. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/AuthorizationCodeClient.js +0 -470
  572. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/AuthorizationCodeClient.js.map +0 -1
  573. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/BaseClient.d.ts +0 -45
  574. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/BaseClient.d.ts.map +0 -1
  575. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/BaseClient.js +0 -103
  576. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/BaseClient.js.map +0 -1
  577. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/ClientCredentialClient.d.ts +0 -39
  578. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/ClientCredentialClient.d.ts.map +0 -1
  579. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/ClientCredentialClient.js +0 -202
  580. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/ClientCredentialClient.js.map +0 -1
  581. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/DeviceCodeClient.d.ts +0 -52
  582. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/DeviceCodeClient.d.ts.map +0 -1
  583. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/DeviceCodeClient.js +0 -232
  584. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/DeviceCodeClient.js.map +0 -1
  585. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/OnBehalfOfClient.d.ts +0 -51
  586. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/OnBehalfOfClient.d.ts.map +0 -1
  587. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/OnBehalfOfClient.js +0 -244
  588. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/OnBehalfOfClient.js.map +0 -1
  589. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/RefreshTokenClient.d.ts +0 -40
  590. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/RefreshTokenClient.d.ts.map +0 -1
  591. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/RefreshTokenClient.js +0 -284
  592. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/RefreshTokenClient.js.map +0 -1
  593. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/SilentFlowClient.d.ts +0 -25
  594. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/SilentFlowClient.d.ts.map +0 -1
  595. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/SilentFlowClient.js +0 -136
  596. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/SilentFlowClient.js.map +0 -1
  597. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/UsernamePasswordClient.d.ts +0 -29
  598. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/UsernamePasswordClient.d.ts.map +0 -1
  599. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/UsernamePasswordClient.js +0 -120
  600. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/client/UsernamePasswordClient.js.map +0 -1
  601. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/config/AppTokenProvider.d.ts +0 -39
  602. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/config/AppTokenProvider.d.ts.map +0 -1
  603. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/config/ClientConfiguration.d.ts +0 -135
  604. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/config/ClientConfiguration.d.ts.map +0 -1
  605. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/config/ClientConfiguration.js +0 -105
  606. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/config/ClientConfiguration.js.map +0 -1
  607. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/crypto/ICrypto.d.ts +0 -63
  608. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/crypto/ICrypto.d.ts.map +0 -1
  609. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/crypto/ICrypto.js +0 -80
  610. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/crypto/ICrypto.js.map +0 -1
  611. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/crypto/IGuidGenerator.d.ts +0 -5
  612. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/crypto/IGuidGenerator.d.ts.map +0 -1
  613. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/crypto/JoseHeader.d.ts +0 -22
  614. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/crypto/JoseHeader.d.ts.map +0 -1
  615. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/crypto/JoseHeader.js +0 -45
  616. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/crypto/JoseHeader.js.map +0 -1
  617. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/crypto/PopTokenGenerator.d.ts +0 -56
  618. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/crypto/PopTokenGenerator.d.ts.map +0 -1
  619. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/crypto/PopTokenGenerator.js +0 -107
  620. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/crypto/PopTokenGenerator.js.map +0 -1
  621. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/crypto/SignedHttpRequest.d.ts +0 -12
  622. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/crypto/SignedHttpRequest.d.ts.map +0 -1
  623. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/AuthError.d.ts +0 -48
  624. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/AuthError.d.ts.map +0 -1
  625. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/AuthError.js +0 -61
  626. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/AuthError.js.map +0 -1
  627. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/ClientAuthError.d.ts +0 -389
  628. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/ClientAuthError.d.ts.map +0 -1
  629. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/ClientAuthError.js +0 -500
  630. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/ClientAuthError.js.map +0 -1
  631. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/ClientConfigurationError.d.ts +0 -199
  632. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/ClientConfigurationError.d.ts.map +0 -1
  633. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/ClientConfigurationError.js +0 -260
  634. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/ClientConfigurationError.js.map +0 -1
  635. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/InteractionRequiredAuthError.d.ts +0 -42
  636. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/InteractionRequiredAuthError.d.ts.map +0 -1
  637. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/InteractionRequiredAuthError.js +0 -80
  638. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/InteractionRequiredAuthError.js.map +0 -1
  639. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/JoseHeaderError.d.ts +0 -29
  640. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/JoseHeaderError.d.ts.map +0 -1
  641. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/JoseHeaderError.js +0 -50
  642. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/JoseHeaderError.js.map +0 -1
  643. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/ServerError.d.ts +0 -8
  644. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/ServerError.d.ts.map +0 -1
  645. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/ServerError.js +0 -25
  646. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/error/ServerError.js.map +0 -1
  647. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/index.cjs.js +0 -8611
  648. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/index.cjs.js.map +0 -1
  649. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/index.d.ts +0 -92
  650. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/index.d.ts.map +0 -1
  651. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/index.js +0 -55
  652. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/index.js.map +0 -1
  653. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/logger/Logger.d.ts +0 -95
  654. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/logger/Logger.d.ts.map +0 -1
  655. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/logger/Logger.js +0 -185
  656. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/logger/Logger.js.map +0 -1
  657. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/network/INetworkModule.d.ts +0 -31
  658. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/network/INetworkModule.d.ts.map +0 -1
  659. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/network/INetworkModule.js +0 -21
  660. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/network/INetworkModule.js.map +0 -1
  661. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/network/NetworkManager.d.ts +0 -21
  662. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/network/NetworkManager.d.ts.map +0 -1
  663. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/network/NetworkManager.js +0 -56
  664. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/network/NetworkManager.js.map +0 -1
  665. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/network/RequestThumbprint.d.ts +0 -17
  666. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/network/RequestThumbprint.d.ts.map +0 -1
  667. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/network/ThrottlingUtils.d.ts +0 -42
  668. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/network/ThrottlingUtils.d.ts.map +0 -1
  669. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/network/ThrottlingUtils.js +0 -101
  670. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/network/ThrottlingUtils.js.map +0 -1
  671. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/packageMetadata.d.ts +0 -3
  672. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/packageMetadata.d.ts.map +0 -1
  673. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/packageMetadata.js +0 -8
  674. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/packageMetadata.js.map +0 -1
  675. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/AuthenticationHeaderParser.d.ts +0 -20
  676. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/AuthenticationHeaderParser.d.ts.map +0 -1
  677. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/AuthenticationHeaderParser.js +0 -64
  678. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/AuthenticationHeaderParser.js.map +0 -1
  679. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/BaseAuthRequest.d.ts +0 -35
  680. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/BaseAuthRequest.d.ts.map +0 -1
  681. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/CommonAuthorizationCodeRequest.d.ts +0 -28
  682. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/CommonAuthorizationCodeRequest.d.ts.map +0 -1
  683. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/CommonAuthorizationUrlRequest.d.ts +0 -52
  684. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/CommonAuthorizationUrlRequest.d.ts.map +0 -1
  685. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/CommonClientCredentialRequest.d.ts +0 -17
  686. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/CommonClientCredentialRequest.d.ts.map +0 -1
  687. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/CommonDeviceCodeRequest.d.ts +0 -19
  688. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/CommonDeviceCodeRequest.d.ts.map +0 -1
  689. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/CommonEndSessionRequest.d.ts +0 -21
  690. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/CommonEndSessionRequest.d.ts.map +0 -1
  691. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/CommonOnBehalfOfRequest.d.ts +0 -13
  692. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/CommonOnBehalfOfRequest.d.ts.map +0 -1
  693. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/CommonRefreshTokenRequest.d.ts +0 -21
  694. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/CommonRefreshTokenRequest.d.ts.map +0 -1
  695. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/CommonSilentFlowRequest.d.ts +0 -20
  696. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/CommonSilentFlowRequest.d.ts.map +0 -1
  697. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/CommonUsernamePasswordRequest.d.ts +0 -17
  698. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/CommonUsernamePasswordRequest.d.ts.map +0 -1
  699. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/RequestParameterBuilder.d.ts +0 -217
  700. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/RequestParameterBuilder.d.ts.map +0 -1
  701. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/RequestParameterBuilder.js +0 -387
  702. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/RequestParameterBuilder.js.map +0 -1
  703. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/RequestValidator.d.ts +0 -34
  704. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/RequestValidator.d.ts.map +0 -1
  705. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/RequestValidator.js +0 -92
  706. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/RequestValidator.js.map +0 -1
  707. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/ScopeSet.d.ts +0 -83
  708. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/ScopeSet.d.ts.map +0 -1
  709. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/ScopeSet.js +0 -192
  710. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/request/ScopeSet.js.map +0 -1
  711. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/response/AuthenticationResult.d.ts +0 -40
  712. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/response/AuthenticationResult.d.ts.map +0 -1
  713. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/response/AuthorizationCodePayload.d.ts +0 -14
  714. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/response/AuthorizationCodePayload.d.ts.map +0 -1
  715. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/response/DeviceCodeResponse.d.ts +0 -26
  716. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/response/DeviceCodeResponse.d.ts.map +0 -1
  717. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/response/ExternalTokenResponse.d.ts +0 -16
  718. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/response/ExternalTokenResponse.d.ts.map +0 -1
  719. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/response/IMDSBadResponse.d.ts +0 -5
  720. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/response/IMDSBadResponse.d.ts.map +0 -1
  721. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/response/ResponseHandler.d.ts +0 -71
  722. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/response/ResponseHandler.d.ts.map +0 -1
  723. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/response/ResponseHandler.js +0 -302
  724. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/response/ResponseHandler.js.map +0 -1
  725. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/response/ServerAuthorizationCodeResponse.d.ts +0 -22
  726. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/response/ServerAuthorizationCodeResponse.d.ts.map +0 -1
  727. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/response/ServerAuthorizationTokenResponse.d.ts +0 -43
  728. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/response/ServerAuthorizationTokenResponse.d.ts.map +0 -1
  729. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/performance/IPerformanceClient.d.ts +0 -22
  730. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/performance/IPerformanceClient.d.ts.map +0 -1
  731. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/performance/IPerformanceMeasurement.d.ts +0 -6
  732. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/performance/IPerformanceMeasurement.d.ts.map +0 -1
  733. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/performance/PerformanceClient.d.ts +0 -125
  734. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/performance/PerformanceClient.d.ts.map +0 -1
  735. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/performance/PerformanceClient.js +0 -284
  736. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/performance/PerformanceClient.js.map +0 -1
  737. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/performance/PerformanceEvent.d.ts +0 -275
  738. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/performance/PerformanceEvent.d.ts.map +0 -1
  739. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/performance/PerformanceEvent.js +0 -128
  740. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/performance/PerformanceEvent.js.map +0 -1
  741. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/performance/StubPerformanceClient.d.ts +0 -13
  742. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/performance/StubPerformanceClient.d.ts.map +0 -1
  743. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/performance/StubPerformanceClient.js +0 -37
  744. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/performance/StubPerformanceClient.js.map +0 -1
  745. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/server/ServerTelemetryManager.d.ts +0 -67
  746. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/server/ServerTelemetryManager.d.ts.map +0 -1
  747. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/server/ServerTelemetryManager.js +0 -168
  748. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/server/ServerTelemetryManager.js.map +0 -1
  749. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/server/ServerTelemetryRequest.d.ts +0 -9
  750. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/telemetry/server/ServerTelemetryRequest.d.ts.map +0 -1
  751. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/url/IUri.d.ts +0 -13
  752. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/url/IUri.d.ts.map +0 -1
  753. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/url/UrlString.d.ts +0 -71
  754. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/url/UrlString.d.ts.map +0 -1
  755. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/url/UrlString.js +0 -241
  756. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/url/UrlString.js.map +0 -1
  757. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/utils/Constants.d.ts +0 -345
  758. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/utils/Constants.d.ts.map +0 -1
  759. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/utils/Constants.js +0 -386
  760. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/utils/Constants.js.map +0 -1
  761. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/utils/MsalTypes.d.ts +0 -7
  762. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/utils/MsalTypes.d.ts.map +0 -1
  763. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/utils/ProtocolUtils.d.ts +0 -43
  764. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/utils/ProtocolUtils.d.ts.map +0 -1
  765. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/utils/ProtocolUtils.js +0 -77
  766. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/utils/ProtocolUtils.js.map +0 -1
  767. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/utils/StringUtils.d.ts +0 -54
  768. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/utils/StringUtils.d.ts.map +0 -1
  769. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/utils/StringUtils.js +0 -129
  770. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/utils/StringUtils.js.map +0 -1
  771. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/utils/TimeUtils.d.ts +0 -28
  772. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/utils/TimeUtils.d.ts.map +0 -1
  773. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/utils/TimeUtils.js +0 -53
  774. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-common/dist/utils/TimeUtils.js.map +0 -1
  775. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/cache/ITokenCache.d.ts +0 -16
  776. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/cache/ITokenCache.d.ts.map +0 -1
  777. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/cache/NodeStorage.d.ts +0 -181
  778. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/cache/NodeStorage.d.ts.map +0 -1
  779. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/cache/TokenCache.d.ts +0 -91
  780. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/cache/TokenCache.d.ts.map +0 -1
  781. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/cache/distributed/DistributedCachePlugin.d.ts +0 -11
  782. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/cache/distributed/DistributedCachePlugin.d.ts.map +0 -1
  783. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/cache/distributed/ICacheClient.d.ts +0 -18
  784. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/cache/distributed/ICacheClient.d.ts.map +0 -1
  785. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/cache/distributed/IPartitionManager.d.ts +0 -33
  786. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/cache/distributed/IPartitionManager.d.ts.map +0 -1
  787. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/cache/serializer/Deserializer.d.ts +0 -43
  788. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/cache/serializer/Deserializer.d.ts.map +0 -1
  789. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/cache/serializer/Serializer.d.ts +0 -40
  790. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/cache/serializer/Serializer.d.ts.map +0 -1
  791. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/cache/serializer/SerializerTypes.d.ts +0 -102
  792. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/cache/serializer/SerializerTypes.d.ts.map +0 -1
  793. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/client/ClientApplication.d.ts +0 -143
  794. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/client/ClientApplication.d.ts.map +0 -1
  795. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/client/ClientAssertion.d.ts +0 -47
  796. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/client/ClientAssertion.d.ts.map +0 -1
  797. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/client/ConfidentialClientApplication.d.ts +0 -59
  798. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/client/ConfidentialClientApplication.d.ts.map +0 -1
  799. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/client/IConfidentialClientApplication.d.ts +0 -40
  800. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/client/IConfidentialClientApplication.d.ts.map +0 -1
  801. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/client/IPublicClientApplication.d.ts +0 -38
  802. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/client/IPublicClientApplication.d.ts.map +0 -1
  803. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/client/PublicClientApplication.d.ts +0 -46
  804. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/client/PublicClientApplication.d.ts.map +0 -1
  805. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/config/Configuration.d.ts +0 -91
  806. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/config/Configuration.d.ts.map +0 -1
  807. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/crypto/CryptoProvider.d.ts +0 -53
  808. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/crypto/CryptoProvider.d.ts.map +0 -1
  809. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/crypto/GuidGenerator.d.ts +0 -15
  810. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/crypto/GuidGenerator.d.ts.map +0 -1
  811. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/crypto/HashUtils.d.ts +0 -9
  812. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/crypto/HashUtils.d.ts.map +0 -1
  813. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/crypto/PkceGenerator.d.ts +0 -23
  814. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/crypto/PkceGenerator.d.ts.map +0 -1
  815. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/error/NodeAuthError.d.ts +0 -66
  816. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/error/NodeAuthError.d.ts.map +0 -1
  817. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/index.d.ts +0 -31
  818. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/index.d.ts.map +0 -1
  819. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/index.js +0 -8
  820. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/msal-node.cjs.development.js +0 -2581
  821. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/msal-node.cjs.development.js.map +0 -1
  822. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/msal-node.cjs.production.min.js +0 -2
  823. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/msal-node.cjs.production.min.js.map +0 -1
  824. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/msal-node.esm.js +0 -2470
  825. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/msal-node.esm.js.map +0 -1
  826. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/network/HttpClient.d.ts +0 -25
  827. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/network/HttpClient.d.ts.map +0 -1
  828. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/network/LoopbackClient.d.ts +0 -21
  829. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/network/LoopbackClient.d.ts.map +0 -1
  830. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/packageMetadata.d.ts +0 -3
  831. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/packageMetadata.d.ts.map +0 -1
  832. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/request/AuthorizationCodeRequest.d.ts +0 -22
  833. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/request/AuthorizationCodeRequest.d.ts.map +0 -1
  834. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/request/AuthorizationUrlRequest.d.ts +0 -34
  835. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/request/AuthorizationUrlRequest.d.ts.map +0 -1
  836. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/request/ClientCredentialRequest.d.ts +0 -16
  837. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/request/ClientCredentialRequest.d.ts.map +0 -1
  838. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/request/DeviceCodeRequest.d.ts +0 -16
  839. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/request/DeviceCodeRequest.d.ts.map +0 -1
  840. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/request/InteractiveRequest.d.ts +0 -8
  841. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/request/InteractiveRequest.d.ts.map +0 -1
  842. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/request/OnBehalfOfRequest.d.ts +0 -15
  843. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/request/OnBehalfOfRequest.d.ts.map +0 -1
  844. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/request/RefreshTokenRequest.d.ts +0 -18
  845. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/request/RefreshTokenRequest.d.ts.map +0 -1
  846. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/request/SilentFlowRequest.d.ts +0 -17
  847. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/request/SilentFlowRequest.d.ts.map +0 -1
  848. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/request/UsernamePasswordRequest.d.ts +0 -20
  849. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/request/UsernamePasswordRequest.d.ts.map +0 -1
  850. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/utils/Constants.d.ts +0 -93
  851. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/utils/Constants.d.ts.map +0 -1
  852. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/utils/EncodingUtils.d.ts +0 -27
  853. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/utils/EncodingUtils.d.ts.map +0 -1
  854. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/utils/NetworkUtils.d.ts +0 -5
  855. package/common/temp/rush-recycler/install-run-1678274025679/@azure/msal-node/dist/utils/NetworkUtils.d.ts.map +0 -1
  856. package/common/temp/rush-recycler/install-run-1678274025679/@azure/storage-blob/dist/index.js +0 -25339
  857. package/common/temp/rush-recycler/install-run-1678274025679/@azure/storage-blob/dist/index.js.map +0 -1
  858. package/common/temp/rush-recycler/install-run-1678274025679/@microsoft/rush-lib/dist/rush-lib.d.ts +0 -3652
  859. package/common/temp/rush-recycler/install-run-1678274025679/@microsoft/rush-lib/dist/tsdoc-metadata.json +0 -11
  860. package/common/temp/rush-recycler/install-run-1678274025679/@rushstack/heft-config-file/dist/heft-config-file.d.ts +0 -254
  861. package/common/temp/rush-recycler/install-run-1678274025679/@rushstack/heft-config-file/dist/tsdoc-metadata.json +0 -11
  862. package/common/temp/rush-recycler/install-run-1678274025679/@rushstack/node-core-library/dist/node-core-library.d.ts +0 -3717
  863. package/common/temp/rush-recycler/install-run-1678274025679/@rushstack/node-core-library/dist/tsdoc-metadata.json +0 -11
  864. package/common/temp/rush-recycler/install-run-1678274025679/@rushstack/package-deps-hash/dist/package-deps-hash.d.ts +0 -80
  865. package/common/temp/rush-recycler/install-run-1678274025679/@rushstack/package-deps-hash/dist/tsdoc-metadata.json +0 -11
  866. package/common/temp/rush-recycler/install-run-1678274025679/@rushstack/rig-package/dist/rig-package.d.ts +0 -198
  867. package/common/temp/rush-recycler/install-run-1678274025679/@rushstack/rig-package/dist/tsdoc-metadata.json +0 -11
  868. package/common/temp/rush-recycler/install-run-1678274025679/@rushstack/rush-amazon-s3-build-cache-plugin/dist/rush-amazon-s3-build-cache-plugin.d.ts +0 -150
  869. package/common/temp/rush-recycler/install-run-1678274025679/@rushstack/rush-azure-storage-build-cache-plugin/dist/rush-azure-storage-build-cache-plugin.d.ts +0 -93
  870. package/common/temp/rush-recycler/install-run-1678274025679/@rushstack/rush-sdk/dist/rush-lib.d.ts +0 -3652
  871. package/common/temp/rush-recycler/install-run-1678274025679/@rushstack/stream-collator/dist/stream-collator.d.ts +0 -124
  872. package/common/temp/rush-recycler/install-run-1678274025679/@rushstack/stream-collator/dist/tsdoc-metadata.json +0 -11
  873. package/common/temp/rush-recycler/install-run-1678274025679/@rushstack/terminal/dist/terminal.d.ts +0 -743
  874. package/common/temp/rush-recycler/install-run-1678274025679/@rushstack/terminal/dist/tsdoc-metadata.json +0 -11
  875. package/common/temp/rush-recycler/install-run-1678274025679/@rushstack/ts-command-line/dist/ts-command-line.d.ts +0 -998
  876. package/common/temp/rush-recycler/install-run-1678274025679/@rushstack/ts-command-line/dist/tsdoc-metadata.json +0 -11
  877. package/common/temp/rush-recycler/install-run-1678274025679/@tootallnate/once/dist/index.d.ts +0 -7
  878. package/common/temp/rush-recycler/install-run-1678274025679/@tootallnate/once/dist/index.js +0 -24
  879. package/common/temp/rush-recycler/install-run-1678274025679/@tootallnate/once/dist/index.js.map +0 -1
  880. package/common/temp/rush-recycler/install-run-1678274025679/@tootallnate/once/dist/overloaded-parameters.d.ts +0 -231
  881. package/common/temp/rush-recycler/install-run-1678274025679/@tootallnate/once/dist/overloaded-parameters.js +0 -3
  882. package/common/temp/rush-recycler/install-run-1678274025679/@tootallnate/once/dist/overloaded-parameters.js.map +0 -1
  883. package/common/temp/rush-recycler/install-run-1678274025679/@tootallnate/once/dist/types.d.ts +0 -17
  884. package/common/temp/rush-recycler/install-run-1678274025679/@tootallnate/once/dist/types.js +0 -3
  885. package/common/temp/rush-recycler/install-run-1678274025679/@tootallnate/once/dist/types.js.map +0 -1
  886. package/common/temp/rush-recycler/install-run-1678274025679/agent-base/dist/src/index.d.ts +0 -78
  887. package/common/temp/rush-recycler/install-run-1678274025679/agent-base/dist/src/index.js +0 -203
  888. package/common/temp/rush-recycler/install-run-1678274025679/agent-base/dist/src/index.js.map +0 -1
  889. package/common/temp/rush-recycler/install-run-1678274025679/agent-base/dist/src/promisify.d.ts +0 -4
  890. package/common/temp/rush-recycler/install-run-1678274025679/agent-base/dist/src/promisify.js +0 -18
  891. package/common/temp/rush-recycler/install-run-1678274025679/agent-base/dist/src/promisify.js.map +0 -1
  892. package/common/temp/rush-recycler/install-run-1678274025679/esprima/dist/esprima.js +0 -6709
  893. package/common/temp/rush-recycler/install-run-1678274025679/form-data/README.md.bak +0 -358
  894. package/common/temp/rush-recycler/install-run-1678274025679/http-proxy-agent/dist/agent.d.ts +0 -32
  895. package/common/temp/rush-recycler/install-run-1678274025679/http-proxy-agent/dist/agent.js +0 -145
  896. package/common/temp/rush-recycler/install-run-1678274025679/http-proxy-agent/dist/agent.js.map +0 -1
  897. package/common/temp/rush-recycler/install-run-1678274025679/http-proxy-agent/dist/index.d.ts +0 -21
  898. package/common/temp/rush-recycler/install-run-1678274025679/http-proxy-agent/dist/index.js +0 -14
  899. package/common/temp/rush-recycler/install-run-1678274025679/http-proxy-agent/dist/index.js.map +0 -1
  900. package/common/temp/rush-recycler/install-run-1678274025679/https-proxy-agent/dist/agent.d.ts +0 -30
  901. package/common/temp/rush-recycler/install-run-1678274025679/https-proxy-agent/dist/agent.js +0 -177
  902. package/common/temp/rush-recycler/install-run-1678274025679/https-proxy-agent/dist/agent.js.map +0 -1
  903. package/common/temp/rush-recycler/install-run-1678274025679/https-proxy-agent/dist/index.d.ts +0 -23
  904. package/common/temp/rush-recycler/install-run-1678274025679/https-proxy-agent/dist/index.js +0 -14
  905. package/common/temp/rush-recycler/install-run-1678274025679/https-proxy-agent/dist/index.js.map +0 -1
  906. package/common/temp/rush-recycler/install-run-1678274025679/https-proxy-agent/dist/parse-proxy-response.d.ts +0 -7
  907. package/common/temp/rush-recycler/install-run-1678274025679/https-proxy-agent/dist/parse-proxy-response.js +0 -66
  908. package/common/temp/rush-recycler/install-run-1678274025679/https-proxy-agent/dist/parse-proxy-response.js.map +0 -1
  909. package/common/temp/rush-recycler/install-run-1678274025679/immediate/dist/immediate.js +0 -75
  910. package/common/temp/rush-recycler/install-run-1678274025679/immediate/dist/immediate.min.js +0 -1
  911. package/common/temp/rush-recycler/install-run-1678274025679/js-yaml/dist/js-yaml.js +0 -3946
  912. package/common/temp/rush-recycler/install-run-1678274025679/js-yaml/dist/js-yaml.min.js +0 -1
  913. package/common/temp/rush-recycler/install-run-1678274025679/json5/dist/index.js +0 -1737
  914. package/common/temp/rush-recycler/install-run-1678274025679/json5/dist/index.min.js +0 -1
  915. package/common/temp/rush-recycler/install-run-1678274025679/json5/dist/index.min.mjs +0 -1
  916. package/common/temp/rush-recycler/install-run-1678274025679/json5/dist/index.mjs +0 -1426
  917. package/common/temp/rush-recycler/install-run-1678274025679/jsonpath-plus/dist/index-es.js +0 -1062
  918. package/common/temp/rush-recycler/install-run-1678274025679/jsonpath-plus/dist/index-es.min.js +0 -2
  919. package/common/temp/rush-recycler/install-run-1678274025679/jsonpath-plus/dist/index-es.min.js.map +0 -1
  920. package/common/temp/rush-recycler/install-run-1678274025679/jsonpath-plus/dist/index-umd.js +0 -1072
  921. package/common/temp/rush-recycler/install-run-1678274025679/jsonpath-plus/dist/index-umd.min.js +0 -2
  922. package/common/temp/rush-recycler/install-run-1678274025679/jsonpath-plus/dist/index-umd.min.js.map +0 -1
  923. package/common/temp/rush-recycler/install-run-1678274025679/jszip/dist/jszip.js +0 -11370
  924. package/common/temp/rush-recycler/install-run-1678274025679/jszip/dist/jszip.min.js +0 -13
  925. package/common/temp/rush-recycler/install-run-1678274025679/lie/dist/lie.js +0 -350
  926. package/common/temp/rush-recycler/install-run-1678274025679/lie/dist/lie.min.js +0 -1
  927. package/common/temp/rush-recycler/install-run-1678274025679/lie/dist/lie.polyfill.js +0 -358
  928. package/common/temp/rush-recycler/install-run-1678274025679/lie/dist/lie.polyfill.min.js +0 -1
  929. package/common/temp/rush-recycler/install-run-1678274025679/pako/dist/pako.js +0 -6818
  930. package/common/temp/rush-recycler/install-run-1678274025679/pako/dist/pako.min.js +0 -1
  931. package/common/temp/rush-recycler/install-run-1678274025679/pako/dist/pako_deflate.js +0 -3997
  932. package/common/temp/rush-recycler/install-run-1678274025679/pako/dist/pako_deflate.min.js +0 -1
  933. package/common/temp/rush-recycler/install-run-1678274025679/pako/dist/pako_inflate.js +0 -3300
  934. package/common/temp/rush-recycler/install-run-1678274025679/pako/dist/pako_inflate.min.js +0 -1
  935. package/common/temp/rush-recycler/install-run-1678274025679/psl/dist/psl.js +0 -10187
  936. package/common/temp/rush-recycler/install-run-1678274025679/psl/dist/psl.min.js +0 -1
  937. package/common/temp/rush-recycler/install-run-1678274025679/ramda/dist/ramda.js +0 -9716
  938. package/common/temp/rush-recycler/install-run-1678274025679/ramda/dist/ramda.min.js +0 -1
  939. package/common/temp/rush-recycler/install-run-1678274025679/sprintf-js/dist/angular-sprintf.min.js +0 -4
  940. package/common/temp/rush-recycler/install-run-1678274025679/sprintf-js/dist/angular-sprintf.min.js.map +0 -1
  941. package/common/temp/rush-recycler/install-run-1678274025679/sprintf-js/dist/angular-sprintf.min.map +0 -1
  942. package/common/temp/rush-recycler/install-run-1678274025679/sprintf-js/dist/sprintf.min.js +0 -4
  943. package/common/temp/rush-recycler/install-run-1678274025679/sprintf-js/dist/sprintf.min.js.map +0 -1
  944. package/common/temp/rush-recycler/install-run-1678274025679/sprintf-js/dist/sprintf.min.map +0 -1
  945. package/common/temp/rush-recycler/install-run-1678274025679/tunnel/.idea/encodings.xml +0 -6
  946. package/common/temp/rush-recycler/install-run-1678274025679/tunnel/.idea/modules.xml +0 -8
  947. package/common/temp/rush-recycler/install-run-1678274025679/tunnel/.idea/node-tunnel.iml +0 -12
  948. package/common/temp/rush-recycler/install-run-1678274025679/tunnel/.idea/vcs.xml +0 -6
  949. package/common/temp/rush-recycler/install-run-1678274025679/tunnel/.idea/workspace.xml +0 -797
  950. package/common/temp/rush-recycler/install-run-1678274025679/url-parse/dist/url-parse.js +0 -755
  951. package/common/temp/rush-recycler/install-run-1678274025679/url-parse/dist/url-parse.min.js +0 -1
  952. package/common/temp/rush-recycler/install-run-1678274025679/url-parse/dist/url-parse.min.js.map +0 -1
  953. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/bin/uuid +0 -2
  954. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-browser/index.js +0 -9
  955. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-browser/md5.js +0 -215
  956. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-browser/nil.js +0 -1
  957. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-browser/parse.js +0 -35
  958. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-browser/regex.js +0 -1
  959. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-browser/rng.js +0 -19
  960. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-browser/sha1.js +0 -96
  961. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-browser/stringify.js +0 -30
  962. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-browser/v1.js +0 -95
  963. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-browser/v3.js +0 -4
  964. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-browser/v35.js +0 -64
  965. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-browser/v4.js +0 -24
  966. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-browser/v5.js +0 -4
  967. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-browser/validate.js +0 -7
  968. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-browser/version.js +0 -11
  969. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-node/index.js +0 -9
  970. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-node/md5.js +0 -13
  971. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-node/nil.js +0 -1
  972. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-node/parse.js +0 -35
  973. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-node/regex.js +0 -1
  974. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-node/rng.js +0 -12
  975. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-node/sha1.js +0 -13
  976. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-node/stringify.js +0 -29
  977. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-node/v1.js +0 -95
  978. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-node/v3.js +0 -4
  979. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-node/v35.js +0 -64
  980. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-node/v4.js +0 -24
  981. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-node/v5.js +0 -4
  982. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-node/validate.js +0 -7
  983. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/esm-node/version.js +0 -11
  984. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/index.js +0 -79
  985. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/md5-browser.js +0 -223
  986. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/md5.js +0 -23
  987. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/nil.js +0 -8
  988. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/parse.js +0 -45
  989. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/regex.js +0 -8
  990. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/rng-browser.js +0 -26
  991. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/rng.js +0 -24
  992. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/sha1-browser.js +0 -104
  993. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/sha1.js +0 -23
  994. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/stringify.js +0 -39
  995. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/umd/uuid.min.js +0 -1
  996. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/umd/uuidNIL.min.js +0 -1
  997. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/umd/uuidParse.min.js +0 -1
  998. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/umd/uuidStringify.min.js +0 -1
  999. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/umd/uuidValidate.min.js +0 -1
  1000. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/umd/uuidVersion.min.js +0 -1
  1001. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/umd/uuidv1.min.js +0 -1
  1002. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/umd/uuidv3.min.js +0 -1
  1003. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/umd/uuidv4.min.js +0 -1
  1004. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/umd/uuidv5.min.js +0 -1
  1005. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/uuid-bin.js +0 -85
  1006. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/v1.js +0 -107
  1007. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/v3.js +0 -16
  1008. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/v35.js +0 -78
  1009. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/v4.js +0 -37
  1010. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/v5.js +0 -16
  1011. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/validate.js +0 -17
  1012. package/common/temp/rush-recycler/install-run-1678274025679/uuid/dist/version.js +0 -21
  1013. package/common/temp/rush-recycler/install-run-1678274025679/z-schema/dist/ZSchema-browser-min.js +0 -2
  1014. package/common/temp/rush-recycler/install-run-1678274025679/z-schema/dist/ZSchema-browser-min.js.map +0 -1
  1015. package/common/temp/rush-recycler/install-run-1678274025679/z-schema/dist/ZSchema-browser-test.js +0 -30407
  1016. package/common/temp/rush-recycler/install-run-1678274025679/z-schema/dist/ZSchema-browser.js +0 -12901
@@ -1 +0,0 @@
1
- !function(e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).URLParse=e()}(function(){return function n(r,s,a){function i(o,e){if(!s[o]){if(!r[o]){var t="function"==typeof require&&require;if(!e&&t)return t(o,!0);if(p)return p(o,!0);throw(e=new Error("Cannot find module '"+o+"'")).code="MODULE_NOT_FOUND",e}t=s[o]={exports:{}},r[o][0].call(t.exports,function(e){return i(r[o][1][e]||e)},t,t.exports,n,r,s,a)}return s[o].exports}for(var p="function"==typeof require&&require,e=0;e<a.length;e++)i(a[e]);return i}({1:[function(e,t,o){!function(a){!function(){"use strict";var f=e("requires-port"),h=e("querystringify"),o=/^[\x00-\x20\u00a0\u1680\u2000-\u200a\u2028\u2029\u202f\u205f\u3000\ufeff]+/,d=/[\n\r\t]/g,s=/^[A-Za-z][A-Za-z0-9+-.]*:\/\//,i=/:\d+$/,p=/^([a-z][a-z0-9.+-]*:)?(\/\/)?([\\/]+)?([\S\s]*)/i,v=/^[a-zA-Z]:/;function m(e){return(e||"").toString().replace(o,"")}var w=[["#","hash"],["?","query"],function(e,o){return g(o.protocol)?e.replace(/\\/g,"/"):e},["/","pathname"],["@","auth",1],[NaN,"host",void 0,1,1],[/:(\d*)$/,"port",void 0,1],[NaN,"hostname",void 0,1,1]],r={hash:1,query:1};function y(e){var o,t="undefined"!=typeof window?window:void 0!==a?a:"undefined"!=typeof self?self:{},t=t.location||{},n={},t=typeof(e=e||t);if("blob:"===e.protocol)n=new C(unescape(e.pathname),{});else if("string"==t)for(o in n=new C(e,{}),r)delete n[o];else if("object"==t){for(o in e)o in r||(n[o]=e[o]);void 0===n.slashes&&(n.slashes=s.test(e.href))}return n}function g(e){return"file:"===e||"ftp:"===e||"http:"===e||"https:"===e||"ws:"===e||"wss:"===e}function b(e,o){e=(e=m(e)).replace(d,""),o=o||{};var t,e=p.exec(e),n=e[1]?e[1].toLowerCase():"",r=!!e[2],s=!!e[3],a=0;return r?a=s?(t=e[2]+e[3]+e[4],e[2].length+e[3].length):(t=e[2]+e[4],e[2].length):s?(t=e[3]+e[4],a=e[3].length):t=e[4],"file:"===n?2<=a&&(t=t.slice(2)):g(n)?t=e[4]:n?r&&(t=t.slice(2)):2<=a&&g(o.protocol)&&(t=e[4]),{protocol:n,slashes:r||g(n),slashesCount:a,rest:t}}function C(e,o,t){if(e=(e=m(e)).replace(d,""),!(this instanceof C))return new C(e,o,t);var n,r,s,a,i,u=w.slice(),p=typeof o,c=this,l=0;for("object"!=p&&"string"!=p&&(t=o,o=null),t&&"function"!=typeof t&&(t=h.parse),n=!(p=b(e||"",o=y(o))).protocol&&!p.slashes,c.slashes=p.slashes||n&&o.slashes,c.protocol=p.protocol||o.protocol||"",e=p.rest,("file:"===p.protocol&&(2!==p.slashesCount||v.test(e))||!p.slashes&&(p.protocol||p.slashesCount<2||!g(c.protocol)))&&(u[3]=[/(.*)/,"pathname"]);l<u.length;l++)"function"!=typeof(s=u[l])?(r=s[0],i=s[1],r!=r?c[i]=e:"string"==typeof r?~(a="@"===r?e.lastIndexOf(r):e.indexOf(r))&&(e="number"==typeof s[2]?(c[i]=e.slice(0,a),e.slice(a+s[2])):(c[i]=e.slice(a),e.slice(0,a))):(a=r.exec(e))&&(c[i]=a[1],e=e.slice(0,a.index)),c[i]=c[i]||n&&s[3]&&o[i]||"",s[4]&&(c[i]=c[i].toLowerCase())):e=s(e,c);t&&(c.query=t(c.query)),n&&o.slashes&&"/"!==c.pathname.charAt(0)&&(""!==c.pathname||""!==o.pathname)&&(c.pathname=function(e,o){if(""===e)return o;for(var t=(o||"/").split("/").slice(0,-1).concat(e.split("/")),n=t.length,o=t[n-1],r=!1,s=0;n--;)"."===t[n]?t.splice(n,1):".."===t[n]?(t.splice(n,1),s++):s&&(0===n&&(r=!0),t.splice(n,1),s--);return r&&t.unshift(""),"."!==o&&".."!==o||t.push(""),t.join("/")}(c.pathname,o.pathname)),"/"!==c.pathname.charAt(0)&&g(c.protocol)&&(c.pathname="/"+c.pathname),f(c.port,c.protocol)||(c.host=c.hostname,c.port=""),c.username=c.password="",c.auth&&(~(a=c.auth.indexOf(":"))?(c.username=c.auth.slice(0,a),c.username=encodeURIComponent(decodeURIComponent(c.username)),c.password=c.auth.slice(a+1),c.password=encodeURIComponent(decodeURIComponent(c.password))):c.username=encodeURIComponent(decodeURIComponent(c.auth)),c.auth=c.password?c.username+":"+c.password:c.username),c.origin="file:"!==c.protocol&&g(c.protocol)&&c.host?c.protocol+"//"+c.host:"null",c.href=c.toString()}C.prototype={set:function(e,o,t){var n=this;switch(e){case"query":"string"==typeof o&&o.length&&(o=(t||h.parse)(o)),n[e]=o;break;case"port":n[e]=o,f(o,n.protocol)?o&&(n.host=n.hostname+":"+o):(n.host=n.hostname,n[e]="");break;case"hostname":n[e]=o,n.port&&(o+=":"+n.port),n.host=o;break;case"host":n[e]=o,i.test(o)?(o=o.split(":"),n.port=o.pop(),n.hostname=o.join(":")):(n.hostname=o,n.port="");break;case"protocol":n.protocol=o.toLowerCase(),n.slashes=!t;break;case"pathname":case"hash":o?(r="pathname"===e?"/":"#",n[e]=o.charAt(0)!==r?r+o:o):n[e]=o;break;case"username":case"password":n[e]=encodeURIComponent(o);break;case"auth":var r=o.indexOf(":");~r?(n.username=o.slice(0,r),n.username=encodeURIComponent(decodeURIComponent(n.username)),n.password=o.slice(r+1),n.password=encodeURIComponent(decodeURIComponent(n.password))):n.username=encodeURIComponent(decodeURIComponent(o))}for(var s=0;s<w.length;s++){var a=w[s];a[4]&&(n[a[1]]=n[a[1]].toLowerCase())}return n.auth=n.password?n.username+":"+n.password:n.username,n.origin="file:"!==n.protocol&&g(n.protocol)&&n.host?n.protocol+"//"+n.host:"null",n.href=n.toString(),n},toString:function(e){e&&"function"==typeof e||(e=h.stringify);var o=this,t=o.host,n=((n=o.protocol)&&":"!==n.charAt(n.length-1)&&(n+=":"),n+(o.protocol&&o.slashes||g(o.protocol)?"//":""));return o.username?(n+=o.username,o.password&&(n+=":"+o.password),n+="@"):o.password?n=n+(":"+o.password)+"@":"file:"!==o.protocol&&g(o.protocol)&&!t&&"/"!==o.pathname&&(n+="@"),(":"===t[t.length-1]||i.test(o.hostname)&&!o.port)&&(t+=":"),n+=t+o.pathname,(t="object"==typeof o.query?e(o.query):o.query)&&(n+="?"!==t.charAt(0)?"?"+t:t),o.hash&&(n+=o.hash),n}},C.extractProtocol=b,C.location=y,C.trimLeft=m,C.qs=h,t.exports=C}.call(this)}.call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{querystringify:2,"requires-port":3}],2:[function(e,o,t){"use strict";var s=Object.prototype.hasOwnProperty;function a(e){try{return decodeURIComponent(e.replace(/\+/g," "))}catch(e){return null}}function i(e){try{return encodeURIComponent(e)}catch(e){return null}}t.stringify=function(e,o){var t,n,r=[];for(n in"string"!=typeof(o=o||"")&&(o="?"),e)s.call(e,n)&&((t=e[n])||null!=t&&!isNaN(t)||(t=""),n=i(n),t=i(t),null!==n&&null!==t&&r.push(n+"="+t));return r.length?o+r.join("&"):""},t.parse=function(e){for(var o=/([^=?#&]+)=?([^&]*)/g,t={};r=o.exec(e);){var n=a(r[1]),r=a(r[2]);null===n||null===r||n in t||(t[n]=r)}return t}},{}],3:[function(e,o,t){"use strict";o.exports=function(e,o){if(o=o.split(":")[0],!(e=+e))return!1;switch(o){case"http":case"ws":return 80!==e;case"https":case"wss":return 443!==e;case"ftp":return 21!==e;case"gopher":return 70!==e;case"file":return!1}return 0!==e}},{}]},{},[1])(1)});
@@ -1 +0,0 @@
1
- {"version":3,"sources":["dist/url-parse.js"],"names":["f","exports","module","define","amd","window","global","self","this","URLParse","r","e","n","t","o","i","c","require","u","a","Error","code","p","call","length","1","required","qs","controlOrWhitespace","CRHTLF","slashes","port","protocolre","windowsDriveLetter","trimLeft","str","toString","replace","rules","address","url","isSpecial","protocol","NaN","undefined","ignore","hash","query","lolcation","loc","key","globalVar","location","finaldestination","type","Url","unescape","pathname","test","href","scheme","extractProtocol","rest","match","exec","toLowerCase","forwardSlashes","otherSlashes","slashesCount","slice","parser","relative","parse","instruction","index","instructions","extracted","lastIndexOf","indexOf","charAt","base","path","split","concat","last","unshift","up","splice","push","join","resolve","host","hostname","username","password","auth","encodeURIComponent","decodeURIComponent","origin","prototype","set","part","value","fn","pop","char","ins","stringify","result","querystringify","requires-port","2","has","Object","hasOwnProperty","decode","input","encode","obj","prefix","pairs","isNaN","3"],"mappings":"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"}
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node
2
- require('../uuid-bin');
@@ -1,9 +0,0 @@
1
- export { default as v1 } from './v1.js';
2
- export { default as v3 } from './v3.js';
3
- export { default as v4 } from './v4.js';
4
- export { default as v5 } from './v5.js';
5
- export { default as NIL } from './nil.js';
6
- export { default as version } from './version.js';
7
- export { default as validate } from './validate.js';
8
- export { default as stringify } from './stringify.js';
9
- export { default as parse } from './parse.js';
@@ -1,215 +0,0 @@
1
- /*
2
- * Browser-compatible JavaScript MD5
3
- *
4
- * Modification of JavaScript MD5
5
- * https://github.com/blueimp/JavaScript-MD5
6
- *
7
- * Copyright 2011, Sebastian Tschan
8
- * https://blueimp.net
9
- *
10
- * Licensed under the MIT license:
11
- * https://opensource.org/licenses/MIT
12
- *
13
- * Based on
14
- * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message
15
- * Digest Algorithm, as defined in RFC 1321.
16
- * Version 2.2 Copyright (C) Paul Johnston 1999 - 2009
17
- * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet
18
- * Distributed under the BSD License
19
- * See http://pajhome.org.uk/crypt/md5 for more info.
20
- */
21
- function md5(bytes) {
22
- if (typeof bytes === 'string') {
23
- var msg = unescape(encodeURIComponent(bytes)); // UTF8 escape
24
-
25
- bytes = new Uint8Array(msg.length);
26
-
27
- for (var i = 0; i < msg.length; ++i) {
28
- bytes[i] = msg.charCodeAt(i);
29
- }
30
- }
31
-
32
- return md5ToHexEncodedArray(wordsToMd5(bytesToWords(bytes), bytes.length * 8));
33
- }
34
- /*
35
- * Convert an array of little-endian words to an array of bytes
36
- */
37
-
38
-
39
- function md5ToHexEncodedArray(input) {
40
- var output = [];
41
- var length32 = input.length * 32;
42
- var hexTab = '0123456789abcdef';
43
-
44
- for (var i = 0; i < length32; i += 8) {
45
- var x = input[i >> 5] >>> i % 32 & 0xff;
46
- var hex = parseInt(hexTab.charAt(x >>> 4 & 0x0f) + hexTab.charAt(x & 0x0f), 16);
47
- output.push(hex);
48
- }
49
-
50
- return output;
51
- }
52
- /**
53
- * Calculate output length with padding and bit length
54
- */
55
-
56
-
57
- function getOutputLength(inputLength8) {
58
- return (inputLength8 + 64 >>> 9 << 4) + 14 + 1;
59
- }
60
- /*
61
- * Calculate the MD5 of an array of little-endian words, and a bit length.
62
- */
63
-
64
-
65
- function wordsToMd5(x, len) {
66
- /* append padding */
67
- x[len >> 5] |= 0x80 << len % 32;
68
- x[getOutputLength(len) - 1] = len;
69
- var a = 1732584193;
70
- var b = -271733879;
71
- var c = -1732584194;
72
- var d = 271733878;
73
-
74
- for (var i = 0; i < x.length; i += 16) {
75
- var olda = a;
76
- var oldb = b;
77
- var oldc = c;
78
- var oldd = d;
79
- a = md5ff(a, b, c, d, x[i], 7, -680876936);
80
- d = md5ff(d, a, b, c, x[i + 1], 12, -389564586);
81
- c = md5ff(c, d, a, b, x[i + 2], 17, 606105819);
82
- b = md5ff(b, c, d, a, x[i + 3], 22, -1044525330);
83
- a = md5ff(a, b, c, d, x[i + 4], 7, -176418897);
84
- d = md5ff(d, a, b, c, x[i + 5], 12, 1200080426);
85
- c = md5ff(c, d, a, b, x[i + 6], 17, -1473231341);
86
- b = md5ff(b, c, d, a, x[i + 7], 22, -45705983);
87
- a = md5ff(a, b, c, d, x[i + 8], 7, 1770035416);
88
- d = md5ff(d, a, b, c, x[i + 9], 12, -1958414417);
89
- c = md5ff(c, d, a, b, x[i + 10], 17, -42063);
90
- b = md5ff(b, c, d, a, x[i + 11], 22, -1990404162);
91
- a = md5ff(a, b, c, d, x[i + 12], 7, 1804603682);
92
- d = md5ff(d, a, b, c, x[i + 13], 12, -40341101);
93
- c = md5ff(c, d, a, b, x[i + 14], 17, -1502002290);
94
- b = md5ff(b, c, d, a, x[i + 15], 22, 1236535329);
95
- a = md5gg(a, b, c, d, x[i + 1], 5, -165796510);
96
- d = md5gg(d, a, b, c, x[i + 6], 9, -1069501632);
97
- c = md5gg(c, d, a, b, x[i + 11], 14, 643717713);
98
- b = md5gg(b, c, d, a, x[i], 20, -373897302);
99
- a = md5gg(a, b, c, d, x[i + 5], 5, -701558691);
100
- d = md5gg(d, a, b, c, x[i + 10], 9, 38016083);
101
- c = md5gg(c, d, a, b, x[i + 15], 14, -660478335);
102
- b = md5gg(b, c, d, a, x[i + 4], 20, -405537848);
103
- a = md5gg(a, b, c, d, x[i + 9], 5, 568446438);
104
- d = md5gg(d, a, b, c, x[i + 14], 9, -1019803690);
105
- c = md5gg(c, d, a, b, x[i + 3], 14, -187363961);
106
- b = md5gg(b, c, d, a, x[i + 8], 20, 1163531501);
107
- a = md5gg(a, b, c, d, x[i + 13], 5, -1444681467);
108
- d = md5gg(d, a, b, c, x[i + 2], 9, -51403784);
109
- c = md5gg(c, d, a, b, x[i + 7], 14, 1735328473);
110
- b = md5gg(b, c, d, a, x[i + 12], 20, -1926607734);
111
- a = md5hh(a, b, c, d, x[i + 5], 4, -378558);
112
- d = md5hh(d, a, b, c, x[i + 8], 11, -2022574463);
113
- c = md5hh(c, d, a, b, x[i + 11], 16, 1839030562);
114
- b = md5hh(b, c, d, a, x[i + 14], 23, -35309556);
115
- a = md5hh(a, b, c, d, x[i + 1], 4, -1530992060);
116
- d = md5hh(d, a, b, c, x[i + 4], 11, 1272893353);
117
- c = md5hh(c, d, a, b, x[i + 7], 16, -155497632);
118
- b = md5hh(b, c, d, a, x[i + 10], 23, -1094730640);
119
- a = md5hh(a, b, c, d, x[i + 13], 4, 681279174);
120
- d = md5hh(d, a, b, c, x[i], 11, -358537222);
121
- c = md5hh(c, d, a, b, x[i + 3], 16, -722521979);
122
- b = md5hh(b, c, d, a, x[i + 6], 23, 76029189);
123
- a = md5hh(a, b, c, d, x[i + 9], 4, -640364487);
124
- d = md5hh(d, a, b, c, x[i + 12], 11, -421815835);
125
- c = md5hh(c, d, a, b, x[i + 15], 16, 530742520);
126
- b = md5hh(b, c, d, a, x[i + 2], 23, -995338651);
127
- a = md5ii(a, b, c, d, x[i], 6, -198630844);
128
- d = md5ii(d, a, b, c, x[i + 7], 10, 1126891415);
129
- c = md5ii(c, d, a, b, x[i + 14], 15, -1416354905);
130
- b = md5ii(b, c, d, a, x[i + 5], 21, -57434055);
131
- a = md5ii(a, b, c, d, x[i + 12], 6, 1700485571);
132
- d = md5ii(d, a, b, c, x[i + 3], 10, -1894986606);
133
- c = md5ii(c, d, a, b, x[i + 10], 15, -1051523);
134
- b = md5ii(b, c, d, a, x[i + 1], 21, -2054922799);
135
- a = md5ii(a, b, c, d, x[i + 8], 6, 1873313359);
136
- d = md5ii(d, a, b, c, x[i + 15], 10, -30611744);
137
- c = md5ii(c, d, a, b, x[i + 6], 15, -1560198380);
138
- b = md5ii(b, c, d, a, x[i + 13], 21, 1309151649);
139
- a = md5ii(a, b, c, d, x[i + 4], 6, -145523070);
140
- d = md5ii(d, a, b, c, x[i + 11], 10, -1120210379);
141
- c = md5ii(c, d, a, b, x[i + 2], 15, 718787259);
142
- b = md5ii(b, c, d, a, x[i + 9], 21, -343485551);
143
- a = safeAdd(a, olda);
144
- b = safeAdd(b, oldb);
145
- c = safeAdd(c, oldc);
146
- d = safeAdd(d, oldd);
147
- }
148
-
149
- return [a, b, c, d];
150
- }
151
- /*
152
- * Convert an array bytes to an array of little-endian words
153
- * Characters >255 have their high-byte silently ignored.
154
- */
155
-
156
-
157
- function bytesToWords(input) {
158
- if (input.length === 0) {
159
- return [];
160
- }
161
-
162
- var length8 = input.length * 8;
163
- var output = new Uint32Array(getOutputLength(length8));
164
-
165
- for (var i = 0; i < length8; i += 8) {
166
- output[i >> 5] |= (input[i / 8] & 0xff) << i % 32;
167
- }
168
-
169
- return output;
170
- }
171
- /*
172
- * Add integers, wrapping at 2^32. This uses 16-bit operations internally
173
- * to work around bugs in some JS interpreters.
174
- */
175
-
176
-
177
- function safeAdd(x, y) {
178
- var lsw = (x & 0xffff) + (y & 0xffff);
179
- var msw = (x >> 16) + (y >> 16) + (lsw >> 16);
180
- return msw << 16 | lsw & 0xffff;
181
- }
182
- /*
183
- * Bitwise rotate a 32-bit number to the left.
184
- */
185
-
186
-
187
- function bitRotateLeft(num, cnt) {
188
- return num << cnt | num >>> 32 - cnt;
189
- }
190
- /*
191
- * These functions implement the four basic operations the algorithm uses.
192
- */
193
-
194
-
195
- function md5cmn(q, a, b, x, s, t) {
196
- return safeAdd(bitRotateLeft(safeAdd(safeAdd(a, q), safeAdd(x, t)), s), b);
197
- }
198
-
199
- function md5ff(a, b, c, d, x, s, t) {
200
- return md5cmn(b & c | ~b & d, a, b, x, s, t);
201
- }
202
-
203
- function md5gg(a, b, c, d, x, s, t) {
204
- return md5cmn(b & d | c & ~d, a, b, x, s, t);
205
- }
206
-
207
- function md5hh(a, b, c, d, x, s, t) {
208
- return md5cmn(b ^ c ^ d, a, b, x, s, t);
209
- }
210
-
211
- function md5ii(a, b, c, d, x, s, t) {
212
- return md5cmn(c ^ (b | ~d), a, b, x, s, t);
213
- }
214
-
215
- export default md5;
@@ -1 +0,0 @@
1
- export default '00000000-0000-0000-0000-000000000000';
@@ -1,35 +0,0 @@
1
- import validate from './validate.js';
2
-
3
- function parse(uuid) {
4
- if (!validate(uuid)) {
5
- throw TypeError('Invalid UUID');
6
- }
7
-
8
- var v;
9
- var arr = new Uint8Array(16); // Parse ########-....-....-....-............
10
-
11
- arr[0] = (v = parseInt(uuid.slice(0, 8), 16)) >>> 24;
12
- arr[1] = v >>> 16 & 0xff;
13
- arr[2] = v >>> 8 & 0xff;
14
- arr[3] = v & 0xff; // Parse ........-####-....-....-............
15
-
16
- arr[4] = (v = parseInt(uuid.slice(9, 13), 16)) >>> 8;
17
- arr[5] = v & 0xff; // Parse ........-....-####-....-............
18
-
19
- arr[6] = (v = parseInt(uuid.slice(14, 18), 16)) >>> 8;
20
- arr[7] = v & 0xff; // Parse ........-....-....-####-............
21
-
22
- arr[8] = (v = parseInt(uuid.slice(19, 23), 16)) >>> 8;
23
- arr[9] = v & 0xff; // Parse ........-....-....-....-############
24
- // (Use "/" to avoid 32-bit truncation when bit-shifting high-order bytes)
25
-
26
- arr[10] = (v = parseInt(uuid.slice(24, 36), 16)) / 0x10000000000 & 0xff;
27
- arr[11] = v / 0x100000000 & 0xff;
28
- arr[12] = v >>> 24 & 0xff;
29
- arr[13] = v >>> 16 & 0xff;
30
- arr[14] = v >>> 8 & 0xff;
31
- arr[15] = v & 0xff;
32
- return arr;
33
- }
34
-
35
- export default parse;
@@ -1 +0,0 @@
1
- export default /^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i;
@@ -1,19 +0,0 @@
1
- // Unique ID creation requires a high quality random # generator. In the browser we therefore
2
- // require the crypto API and do not support built-in fallback to lower quality random number
3
- // generators (like Math.random()).
4
- var getRandomValues;
5
- var rnds8 = new Uint8Array(16);
6
- export default function rng() {
7
- // lazy load so that environments that need to polyfill have a chance to do so
8
- if (!getRandomValues) {
9
- // getRandomValues needs to be invoked in a context where "this" is a Crypto implementation. Also,
10
- // find the complete implementation of crypto (msCrypto) on IE11.
11
- getRandomValues = typeof crypto !== 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto) || typeof msCrypto !== 'undefined' && typeof msCrypto.getRandomValues === 'function' && msCrypto.getRandomValues.bind(msCrypto);
12
-
13
- if (!getRandomValues) {
14
- throw new Error('crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported');
15
- }
16
- }
17
-
18
- return getRandomValues(rnds8);
19
- }
@@ -1,96 +0,0 @@
1
- // Adapted from Chris Veness' SHA1 code at
2
- // http://www.movable-type.co.uk/scripts/sha1.html
3
- function f(s, x, y, z) {
4
- switch (s) {
5
- case 0:
6
- return x & y ^ ~x & z;
7
-
8
- case 1:
9
- return x ^ y ^ z;
10
-
11
- case 2:
12
- return x & y ^ x & z ^ y & z;
13
-
14
- case 3:
15
- return x ^ y ^ z;
16
- }
17
- }
18
-
19
- function ROTL(x, n) {
20
- return x << n | x >>> 32 - n;
21
- }
22
-
23
- function sha1(bytes) {
24
- var K = [0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6];
25
- var H = [0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476, 0xc3d2e1f0];
26
-
27
- if (typeof bytes === 'string') {
28
- var msg = unescape(encodeURIComponent(bytes)); // UTF8 escape
29
-
30
- bytes = [];
31
-
32
- for (var i = 0; i < msg.length; ++i) {
33
- bytes.push(msg.charCodeAt(i));
34
- }
35
- } else if (!Array.isArray(bytes)) {
36
- // Convert Array-like to Array
37
- bytes = Array.prototype.slice.call(bytes);
38
- }
39
-
40
- bytes.push(0x80);
41
- var l = bytes.length / 4 + 2;
42
- var N = Math.ceil(l / 16);
43
- var M = new Array(N);
44
-
45
- for (var _i = 0; _i < N; ++_i) {
46
- var arr = new Uint32Array(16);
47
-
48
- for (var j = 0; j < 16; ++j) {
49
- arr[j] = bytes[_i * 64 + j * 4] << 24 | bytes[_i * 64 + j * 4 + 1] << 16 | bytes[_i * 64 + j * 4 + 2] << 8 | bytes[_i * 64 + j * 4 + 3];
50
- }
51
-
52
- M[_i] = arr;
53
- }
54
-
55
- M[N - 1][14] = (bytes.length - 1) * 8 / Math.pow(2, 32);
56
- M[N - 1][14] = Math.floor(M[N - 1][14]);
57
- M[N - 1][15] = (bytes.length - 1) * 8 & 0xffffffff;
58
-
59
- for (var _i2 = 0; _i2 < N; ++_i2) {
60
- var W = new Uint32Array(80);
61
-
62
- for (var t = 0; t < 16; ++t) {
63
- W[t] = M[_i2][t];
64
- }
65
-
66
- for (var _t = 16; _t < 80; ++_t) {
67
- W[_t] = ROTL(W[_t - 3] ^ W[_t - 8] ^ W[_t - 14] ^ W[_t - 16], 1);
68
- }
69
-
70
- var a = H[0];
71
- var b = H[1];
72
- var c = H[2];
73
- var d = H[3];
74
- var e = H[4];
75
-
76
- for (var _t2 = 0; _t2 < 80; ++_t2) {
77
- var s = Math.floor(_t2 / 20);
78
- var T = ROTL(a, 5) + f(s, b, c, d) + e + K[s] + W[_t2] >>> 0;
79
- e = d;
80
- d = c;
81
- c = ROTL(b, 30) >>> 0;
82
- b = a;
83
- a = T;
84
- }
85
-
86
- H[0] = H[0] + a >>> 0;
87
- H[1] = H[1] + b >>> 0;
88
- H[2] = H[2] + c >>> 0;
89
- H[3] = H[3] + d >>> 0;
90
- H[4] = H[4] + e >>> 0;
91
- }
92
-
93
- return [H[0] >> 24 & 0xff, H[0] >> 16 & 0xff, H[0] >> 8 & 0xff, H[0] & 0xff, H[1] >> 24 & 0xff, H[1] >> 16 & 0xff, H[1] >> 8 & 0xff, H[1] & 0xff, H[2] >> 24 & 0xff, H[2] >> 16 & 0xff, H[2] >> 8 & 0xff, H[2] & 0xff, H[3] >> 24 & 0xff, H[3] >> 16 & 0xff, H[3] >> 8 & 0xff, H[3] & 0xff, H[4] >> 24 & 0xff, H[4] >> 16 & 0xff, H[4] >> 8 & 0xff, H[4] & 0xff];
94
- }
95
-
96
- export default sha1;
@@ -1,30 +0,0 @@
1
- import validate from './validate.js';
2
- /**
3
- * Convert array of 16 byte values to UUID string format of the form:
4
- * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
5
- */
6
-
7
- var byteToHex = [];
8
-
9
- for (var i = 0; i < 256; ++i) {
10
- byteToHex.push((i + 0x100).toString(16).substr(1));
11
- }
12
-
13
- function stringify(arr) {
14
- var offset = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
15
- // Note: Be careful editing this code! It's been tuned for performance
16
- // and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434
17
- var uuid = (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase(); // Consistency check for valid UUID. If this throws, it's likely due to one
18
- // of the following:
19
- // - One or more input array values don't map to a hex octet (leading to
20
- // "undefined" in the uuid)
21
- // - Invalid input values for the RFC `version` or `variant` fields
22
-
23
- if (!validate(uuid)) {
24
- throw TypeError('Stringified UUID is invalid');
25
- }
26
-
27
- return uuid;
28
- }
29
-
30
- export default stringify;
@@ -1,95 +0,0 @@
1
- import rng from './rng.js';
2
- import stringify from './stringify.js'; // **`v1()` - Generate time-based UUID**
3
- //
4
- // Inspired by https://github.com/LiosK/UUID.js
5
- // and http://docs.python.org/library/uuid.html
6
-
7
- var _nodeId;
8
-
9
- var _clockseq; // Previous uuid creation time
10
-
11
-
12
- var _lastMSecs = 0;
13
- var _lastNSecs = 0; // See https://github.com/uuidjs/uuid for API details
14
-
15
- function v1(options, buf, offset) {
16
- var i = buf && offset || 0;
17
- var b = buf || new Array(16);
18
- options = options || {};
19
- var node = options.node || _nodeId;
20
- var clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq; // node and clockseq need to be initialized to random values if they're not
21
- // specified. We do this lazily to minimize issues related to insufficient
22
- // system entropy. See #189
23
-
24
- if (node == null || clockseq == null) {
25
- var seedBytes = options.random || (options.rng || rng)();
26
-
27
- if (node == null) {
28
- // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1)
29
- node = _nodeId = [seedBytes[0] | 0x01, seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]];
30
- }
31
-
32
- if (clockseq == null) {
33
- // Per 4.2.2, randomize (14 bit) clockseq
34
- clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff;
35
- }
36
- } // UUID timestamps are 100 nano-second units since the Gregorian epoch,
37
- // (1582-10-15 00:00). JSNumbers aren't precise enough for this, so
38
- // time is handled internally as 'msecs' (integer milliseconds) and 'nsecs'
39
- // (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00.
40
-
41
-
42
- var msecs = options.msecs !== undefined ? options.msecs : Date.now(); // Per 4.2.1.2, use count of uuid's generated during the current clock
43
- // cycle to simulate higher resolution clock
44
-
45
- var nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1; // Time since last uuid creation (in msecs)
46
-
47
- var dt = msecs - _lastMSecs + (nsecs - _lastNSecs) / 10000; // Per 4.2.1.2, Bump clockseq on clock regression
48
-
49
- if (dt < 0 && options.clockseq === undefined) {
50
- clockseq = clockseq + 1 & 0x3fff;
51
- } // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new
52
- // time interval
53
-
54
-
55
- if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) {
56
- nsecs = 0;
57
- } // Per 4.2.1.2 Throw error if too many uuids are requested
58
-
59
-
60
- if (nsecs >= 10000) {
61
- throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");
62
- }
63
-
64
- _lastMSecs = msecs;
65
- _lastNSecs = nsecs;
66
- _clockseq = clockseq; // Per 4.1.4 - Convert from unix epoch to Gregorian epoch
67
-
68
- msecs += 12219292800000; // `time_low`
69
-
70
- var tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000;
71
- b[i++] = tl >>> 24 & 0xff;
72
- b[i++] = tl >>> 16 & 0xff;
73
- b[i++] = tl >>> 8 & 0xff;
74
- b[i++] = tl & 0xff; // `time_mid`
75
-
76
- var tmh = msecs / 0x100000000 * 10000 & 0xfffffff;
77
- b[i++] = tmh >>> 8 & 0xff;
78
- b[i++] = tmh & 0xff; // `time_high_and_version`
79
-
80
- b[i++] = tmh >>> 24 & 0xf | 0x10; // include version
81
-
82
- b[i++] = tmh >>> 16 & 0xff; // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant)
83
-
84
- b[i++] = clockseq >>> 8 | 0x80; // `clock_seq_low`
85
-
86
- b[i++] = clockseq & 0xff; // `node`
87
-
88
- for (var n = 0; n < 6; ++n) {
89
- b[i + n] = node[n];
90
- }
91
-
92
- return buf || stringify(b);
93
- }
94
-
95
- export default v1;
@@ -1,4 +0,0 @@
1
- import v35 from './v35.js';
2
- import md5 from './md5.js';
3
- var v3 = v35('v3', 0x30, md5);
4
- export default v3;
@@ -1,64 +0,0 @@
1
- import stringify from './stringify.js';
2
- import parse from './parse.js';
3
-
4
- function stringToBytes(str) {
5
- str = unescape(encodeURIComponent(str)); // UTF8 escape
6
-
7
- var bytes = [];
8
-
9
- for (var i = 0; i < str.length; ++i) {
10
- bytes.push(str.charCodeAt(i));
11
- }
12
-
13
- return bytes;
14
- }
15
-
16
- export var DNS = '6ba7b810-9dad-11d1-80b4-00c04fd430c8';
17
- export var URL = '6ba7b811-9dad-11d1-80b4-00c04fd430c8';
18
- export default function (name, version, hashfunc) {
19
- function generateUUID(value, namespace, buf, offset) {
20
- if (typeof value === 'string') {
21
- value = stringToBytes(value);
22
- }
23
-
24
- if (typeof namespace === 'string') {
25
- namespace = parse(namespace);
26
- }
27
-
28
- if (namespace.length !== 16) {
29
- throw TypeError('Namespace must be array-like (16 iterable integer values, 0-255)');
30
- } // Compute hash of namespace and value, Per 4.3
31
- // Future: Use spread syntax when supported on all platforms, e.g. `bytes =
32
- // hashfunc([...namespace, ... value])`
33
-
34
-
35
- var bytes = new Uint8Array(16 + value.length);
36
- bytes.set(namespace);
37
- bytes.set(value, namespace.length);
38
- bytes = hashfunc(bytes);
39
- bytes[6] = bytes[6] & 0x0f | version;
40
- bytes[8] = bytes[8] & 0x3f | 0x80;
41
-
42
- if (buf) {
43
- offset = offset || 0;
44
-
45
- for (var i = 0; i < 16; ++i) {
46
- buf[offset + i] = bytes[i];
47
- }
48
-
49
- return buf;
50
- }
51
-
52
- return stringify(bytes);
53
- } // Function#name is not settable on some platforms (#270)
54
-
55
-
56
- try {
57
- generateUUID.name = name; // eslint-disable-next-line no-empty
58
- } catch (err) {} // For CommonJS default export support
59
-
60
-
61
- generateUUID.DNS = DNS;
62
- generateUUID.URL = URL;
63
- return generateUUID;
64
- }
@@ -1,24 +0,0 @@
1
- import rng from './rng.js';
2
- import stringify from './stringify.js';
3
-
4
- function v4(options, buf, offset) {
5
- options = options || {};
6
- var rnds = options.random || (options.rng || rng)(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`
7
-
8
- rnds[6] = rnds[6] & 0x0f | 0x40;
9
- rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided
10
-
11
- if (buf) {
12
- offset = offset || 0;
13
-
14
- for (var i = 0; i < 16; ++i) {
15
- buf[offset + i] = rnds[i];
16
- }
17
-
18
- return buf;
19
- }
20
-
21
- return stringify(rnds);
22
- }
23
-
24
- export default v4;
@@ -1,4 +0,0 @@
1
- import v35 from './v35.js';
2
- import sha1 from './sha1.js';
3
- var v5 = v35('v5', 0x50, sha1);
4
- export default v5;
@@ -1,7 +0,0 @@
1
- import REGEX from './regex.js';
2
-
3
- function validate(uuid) {
4
- return typeof uuid === 'string' && REGEX.test(uuid);
5
- }
6
-
7
- export default validate;