@gemeentenijmegen/webapp 0.0.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 (5665) hide show
  1. package/.jsii +4519 -0
  2. package/API.md +762 -0
  3. package/LICENSE +287 -0
  4. package/README.md +1 -0
  5. package/assets/webapp/auth/auth.lambda/index.js +12295 -0
  6. package/assets/webapp/configuration-layer/authentication.json +1 -0
  7. package/assets/webapp/login/login.lambda/index.js +10242 -0
  8. package/assets/webapp/logout/logout.lambda/index.js +1141 -0
  9. package/lib/index.d.ts +4 -0
  10. package/lib/index.js +17 -0
  11. package/lib/webapp/Api.d.ts +63 -0
  12. package/lib/webapp/Api.js +140 -0
  13. package/lib/webapp/Cloudfront.d.ts +86 -0
  14. package/lib/webapp/Cloudfront.js +259 -0
  15. package/lib/webapp/OIDCConnectionProfile.d.ts +40 -0
  16. package/lib/webapp/OIDCConnectionProfile.js +3 -0
  17. package/lib/webapp/SessionsTable.d.ts +10 -0
  18. package/lib/webapp/SessionsTable.js +22 -0
  19. package/lib/webapp/Webapp.d.ts +20 -0
  20. package/lib/webapp/Webapp.js +57 -0
  21. package/lib/webapp/WebappOptions.d.ts +69 -0
  22. package/lib/webapp/WebappOptions.js +3 -0
  23. package/lib/webapp/Webpage.d.ts +49 -0
  24. package/lib/webapp/Webpage.js +91 -0
  25. package/lib/webapp/auth/AuthRequestHandler.d.ts +15 -0
  26. package/lib/webapp/auth/AuthRequestHandler.js +77 -0
  27. package/lib/webapp/auth/auth-function.d.ts +13 -0
  28. package/lib/webapp/auth/auth-function.js +23 -0
  29. package/lib/webapp/auth/auth.lambda.d.ts +2 -0
  30. package/lib/webapp/auth/auth.lambda.js +36 -0
  31. package/lib/webapp/login/login-function.d.ts +13 -0
  32. package/lib/webapp/login/login-function.js +23 -0
  33. package/lib/webapp/login/login.lambda.d.ts +2 -0
  34. package/lib/webapp/login/login.lambda.js +29 -0
  35. package/lib/webapp/login/loginRequestHandler.d.ts +19 -0
  36. package/lib/webapp/login/loginRequestHandler.js +63 -0
  37. package/lib/webapp/logout/handleLogoutRequest.d.ts +2 -0
  38. package/lib/webapp/logout/handleLogoutRequest.js +27 -0
  39. package/lib/webapp/logout/logout-function.d.ts +13 -0
  40. package/lib/webapp/logout/logout-function.js +23 -0
  41. package/lib/webapp/logout/logout.lambda.d.ts +1 -0
  42. package/lib/webapp/logout/logout.lambda.js +24 -0
  43. package/lib/webapp/util/Files.d.ts +13 -0
  44. package/lib/webapp/util/Files.js +29 -0
  45. package/lib/webapp/util/OpenIDConnect.d.ts +46 -0
  46. package/lib/webapp/util/OpenIDConnect.js +120 -0
  47. package/lib/webapp/util/render.d.ts +11 -0
  48. package/lib/webapp/util/render.js +33 -0
  49. package/node_modules/@aws-crypto/crc32/CHANGELOG.md +76 -0
  50. package/node_modules/@aws-crypto/crc32/LICENSE +201 -0
  51. package/node_modules/@aws-crypto/crc32/README.md +16 -0
  52. package/node_modules/@aws-crypto/crc32/build/aws_crc32.d.ts +7 -0
  53. package/node_modules/@aws-crypto/crc32/build/aws_crc32.js +31 -0
  54. package/node_modules/@aws-crypto/crc32/build/aws_crc32.js.map +1 -0
  55. package/node_modules/@aws-crypto/crc32/build/index.d.ts +7 -0
  56. package/node_modules/@aws-crypto/crc32/build/index.js +108 -0
  57. package/node_modules/@aws-crypto/crc32/build/index.js.map +1 -0
  58. package/node_modules/@aws-crypto/crc32/node_modules/tslib/CopyrightNotice.txt +15 -0
  59. package/node_modules/@aws-crypto/crc32/node_modules/tslib/LICENSE.txt +12 -0
  60. package/node_modules/@aws-crypto/crc32/node_modules/tslib/README.md +142 -0
  61. package/node_modules/@aws-crypto/crc32/node_modules/tslib/modules/index.js +51 -0
  62. package/node_modules/@aws-crypto/crc32/node_modules/tslib/modules/package.json +3 -0
  63. package/node_modules/@aws-crypto/crc32/node_modules/tslib/package.json +37 -0
  64. package/node_modules/@aws-crypto/crc32/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
  65. package/node_modules/@aws-crypto/crc32/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
  66. package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.d.ts +37 -0
  67. package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.es6.html +1 -0
  68. package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.es6.js +218 -0
  69. package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.html +1 -0
  70. package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.js +284 -0
  71. package/node_modules/@aws-crypto/crc32/package.json +28 -0
  72. package/node_modules/@aws-crypto/crc32/src/aws_crc32.ts +24 -0
  73. package/node_modules/@aws-crypto/crc32/src/index.ts +92 -0
  74. package/node_modules/@aws-crypto/crc32/tsconfig.json +23 -0
  75. package/node_modules/@aws-crypto/ie11-detection/CHANGELOG.md +46 -0
  76. package/node_modules/@aws-crypto/ie11-detection/LICENSE +202 -0
  77. package/node_modules/@aws-crypto/ie11-detection/README.md +20 -0
  78. package/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.d.ts +19 -0
  79. package/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js +3 -0
  80. package/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js.map +1 -0
  81. package/node_modules/@aws-crypto/ie11-detection/build/Key.d.ts +12 -0
  82. package/node_modules/@aws-crypto/ie11-detection/build/Key.js +3 -0
  83. package/node_modules/@aws-crypto/ie11-detection/build/Key.js.map +1 -0
  84. package/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.d.ts +12 -0
  85. package/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js +3 -0
  86. package/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js.map +1 -0
  87. package/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.d.ts +33 -0
  88. package/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js +3 -0
  89. package/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js.map +1 -0
  90. package/node_modules/@aws-crypto/ie11-detection/build/MsWindow.d.ts +21 -0
  91. package/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js +32 -0
  92. package/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js.map +1 -0
  93. package/node_modules/@aws-crypto/ie11-detection/build/index.d.ts +5 -0
  94. package/node_modules/@aws-crypto/ie11-detection/build/index.js +9 -0
  95. package/node_modules/@aws-crypto/ie11-detection/build/index.js.map +1 -0
  96. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/CopyrightNotice.txt +15 -0
  97. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/LICENSE.txt +12 -0
  98. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/README.md +142 -0
  99. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/modules/index.js +51 -0
  100. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/modules/package.json +3 -0
  101. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/package.json +37 -0
  102. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
  103. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
  104. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.d.ts +37 -0
  105. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.html +1 -0
  106. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.js +218 -0
  107. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.html +1 -0
  108. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.js +284 -0
  109. package/node_modules/@aws-crypto/ie11-detection/package.json +26 -0
  110. package/node_modules/@aws-crypto/ie11-detection/src/CryptoOperation.ts +21 -0
  111. package/node_modules/@aws-crypto/ie11-detection/src/Key.ts +12 -0
  112. package/node_modules/@aws-crypto/ie11-detection/src/KeyOperation.ts +13 -0
  113. package/node_modules/@aws-crypto/ie11-detection/src/MsSubtleCrypto.ts +88 -0
  114. package/node_modules/@aws-crypto/ie11-detection/src/MsWindow.ts +59 -0
  115. package/node_modules/@aws-crypto/ie11-detection/src/index.ts +5 -0
  116. package/node_modules/@aws-crypto/ie11-detection/tsconfig.json +17 -0
  117. package/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +88 -0
  118. package/node_modules/@aws-crypto/sha256-browser/LICENSE +202 -0
  119. package/node_modules/@aws-crypto/sha256-browser/README.md +31 -0
  120. package/node_modules/@aws-crypto/sha256-browser/build/constants.d.ts +10 -0
  121. package/node_modules/@aws-crypto/sha256-browser/build/constants.js +43 -0
  122. package/node_modules/@aws-crypto/sha256-browser/build/constants.js.map +1 -0
  123. package/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.d.ts +8 -0
  124. package/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js +35 -0
  125. package/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js.map +1 -0
  126. package/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.d.ts +9 -0
  127. package/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js +80 -0
  128. package/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js.map +1 -0
  129. package/node_modules/@aws-crypto/sha256-browser/build/index.d.ts +3 -0
  130. package/node_modules/@aws-crypto/sha256-browser/build/index.js +10 -0
  131. package/node_modules/@aws-crypto/sha256-browser/build/index.js.map +1 -0
  132. package/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.d.ts +2 -0
  133. package/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js +11 -0
  134. package/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js.map +1 -0
  135. package/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.d.ts +10 -0
  136. package/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js +56 -0
  137. package/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js.map +1 -0
  138. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/CopyrightNotice.txt +15 -0
  139. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/LICENSE.txt +12 -0
  140. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/README.md +142 -0
  141. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/modules/index.js +51 -0
  142. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/modules/package.json +3 -0
  143. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/package.json +37 -0
  144. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
  145. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
  146. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.d.ts +37 -0
  147. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.html +1 -0
  148. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.js +218 -0
  149. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.html +1 -0
  150. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.js +284 -0
  151. package/node_modules/@aws-crypto/sha256-browser/package.json +33 -0
  152. package/node_modules/@aws-crypto/sha256-browser/src/constants.ts +41 -0
  153. package/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +34 -0
  154. package/node_modules/@aws-crypto/sha256-browser/src/ie11Sha256.ts +108 -0
  155. package/node_modules/@aws-crypto/sha256-browser/src/index.ts +3 -0
  156. package/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +9 -0
  157. package/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +71 -0
  158. package/node_modules/@aws-crypto/sha256-browser/tsconfig.json +22 -0
  159. package/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +86 -0
  160. package/node_modules/@aws-crypto/sha256-js/LICENSE +201 -0
  161. package/node_modules/@aws-crypto/sha256-js/README.md +29 -0
  162. package/node_modules/@aws-crypto/sha256-js/build/RawSha256.d.ts +17 -0
  163. package/node_modules/@aws-crypto/sha256-js/build/RawSha256.js +124 -0
  164. package/node_modules/@aws-crypto/sha256-js/build/RawSha256.js.map +1 -0
  165. package/node_modules/@aws-crypto/sha256-js/build/constants.d.ts +20 -0
  166. package/node_modules/@aws-crypto/sha256-js/build/constants.js +98 -0
  167. package/node_modules/@aws-crypto/sha256-js/build/constants.js.map +1 -0
  168. package/node_modules/@aws-crypto/sha256-js/build/index.d.ts +1 -0
  169. package/node_modules/@aws-crypto/sha256-js/build/index.js +5 -0
  170. package/node_modules/@aws-crypto/sha256-js/build/index.js.map +1 -0
  171. package/node_modules/@aws-crypto/sha256-js/build/jsSha256.d.ts +12 -0
  172. package/node_modules/@aws-crypto/sha256-js/build/jsSha256.js +85 -0
  173. package/node_modules/@aws-crypto/sha256-js/build/jsSha256.js.map +1 -0
  174. package/node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.d.ts +5 -0
  175. package/node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.js +322 -0
  176. package/node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.js.map +1 -0
  177. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/CopyrightNotice.txt +15 -0
  178. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/LICENSE.txt +12 -0
  179. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/README.md +142 -0
  180. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/modules/index.js +51 -0
  181. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/modules/package.json +3 -0
  182. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/package.json +37 -0
  183. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
  184. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
  185. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.d.ts +37 -0
  186. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.html +1 -0
  187. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js +218 -0
  188. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.html +1 -0
  189. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.js +284 -0
  190. package/node_modules/@aws-crypto/sha256-js/package.json +28 -0
  191. package/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +164 -0
  192. package/node_modules/@aws-crypto/sha256-js/src/constants.ts +98 -0
  193. package/node_modules/@aws-crypto/sha256-js/src/index.ts +1 -0
  194. package/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +94 -0
  195. package/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +401 -0
  196. package/node_modules/@aws-crypto/sha256-js/tsconfig.json +17 -0
  197. package/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +46 -0
  198. package/node_modules/@aws-crypto/supports-web-crypto/LICENSE +202 -0
  199. package/node_modules/@aws-crypto/supports-web-crypto/README.md +32 -0
  200. package/node_modules/@aws-crypto/supports-web-crypto/build/index.d.ts +1 -0
  201. package/node_modules/@aws-crypto/supports-web-crypto/build/index.js +5 -0
  202. package/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.d.ts +4 -0
  203. package/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js +69 -0
  204. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/CopyrightNotice.txt +15 -0
  205. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/LICENSE.txt +12 -0
  206. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/README.md +142 -0
  207. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/modules/index.js +51 -0
  208. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/modules/package.json +3 -0
  209. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/package.json +37 -0
  210. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
  211. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
  212. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.d.ts +37 -0
  213. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.html +1 -0
  214. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js +218 -0
  215. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.html +1 -0
  216. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.js +284 -0
  217. package/node_modules/@aws-crypto/supports-web-crypto/package.json +26 -0
  218. package/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +1 -0
  219. package/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +76 -0
  220. package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +16 -0
  221. package/node_modules/@aws-crypto/util/CHANGELOG.md +47 -0
  222. package/node_modules/@aws-crypto/util/LICENSE +201 -0
  223. package/node_modules/@aws-crypto/util/README.md +16 -0
  224. package/node_modules/@aws-crypto/util/build/convertToBuffer.d.ts +2 -0
  225. package/node_modules/@aws-crypto/util/build/convertToBuffer.js +24 -0
  226. package/node_modules/@aws-crypto/util/build/convertToBuffer.js.map +1 -0
  227. package/node_modules/@aws-crypto/util/build/index.d.ts +4 -0
  228. package/node_modules/@aws-crypto/util/build/index.js +14 -0
  229. package/node_modules/@aws-crypto/util/build/index.js.map +1 -0
  230. package/node_modules/@aws-crypto/util/build/isEmptyData.d.ts +2 -0
  231. package/node_modules/@aws-crypto/util/build/isEmptyData.js +13 -0
  232. package/node_modules/@aws-crypto/util/build/isEmptyData.js.map +1 -0
  233. package/node_modules/@aws-crypto/util/build/numToUint8.d.ts +1 -0
  234. package/node_modules/@aws-crypto/util/build/numToUint8.js +15 -0
  235. package/node_modules/@aws-crypto/util/build/numToUint8.js.map +1 -0
  236. package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.d.ts +1 -0
  237. package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js +20 -0
  238. package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js.map +1 -0
  239. package/node_modules/@aws-crypto/util/node_modules/tslib/CopyrightNotice.txt +15 -0
  240. package/node_modules/@aws-crypto/util/node_modules/tslib/LICENSE.txt +12 -0
  241. package/node_modules/@aws-crypto/util/node_modules/tslib/README.md +142 -0
  242. package/node_modules/@aws-crypto/util/node_modules/tslib/modules/index.js +51 -0
  243. package/node_modules/@aws-crypto/util/node_modules/tslib/modules/package.json +3 -0
  244. package/node_modules/@aws-crypto/util/node_modules/tslib/package.json +37 -0
  245. package/node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
  246. package/node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
  247. package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.d.ts +37 -0
  248. package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.html +1 -0
  249. package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.js +218 -0
  250. package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.html +1 -0
  251. package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.js +284 -0
  252. package/node_modules/@aws-crypto/util/package.json +31 -0
  253. package/node_modules/@aws-crypto/util/src/convertToBuffer.ts +30 -0
  254. package/node_modules/@aws-crypto/util/src/index.ts +7 -0
  255. package/node_modules/@aws-crypto/util/src/isEmptyData.ts +12 -0
  256. package/node_modules/@aws-crypto/util/src/numToUint8.ts +11 -0
  257. package/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +16 -0
  258. package/node_modules/@aws-crypto/util/tsconfig.json +23 -0
  259. package/node_modules/@aws-lambda-powertools/commons/LICENSE +14 -0
  260. package/node_modules/@aws-lambda-powertools/commons/README.md +120 -0
  261. package/node_modules/@aws-lambda-powertools/commons/lib/Utility.d.ts +72 -0
  262. package/node_modules/@aws-lambda-powertools/commons/lib/Utility.d.ts.map +1 -0
  263. package/node_modules/@aws-lambda-powertools/commons/lib/Utility.js +89 -0
  264. package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/index.d.ts +3 -0
  265. package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/index.d.ts.map +1 -0
  266. package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/index.js +7 -0
  267. package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/userAgentMiddleware.d.ts +10 -0
  268. package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/userAgentMiddleware.d.ts.map +1 -0
  269. package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/userAgentMiddleware.js +59 -0
  270. package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/utils.d.ts +8 -0
  271. package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/utils.d.ts.map +1 -0
  272. package/node_modules/@aws-lambda-powertools/commons/lib/awsSdk/utils.js +24 -0
  273. package/node_modules/@aws-lambda-powertools/commons/lib/config/ConfigService.d.ts +50 -0
  274. package/node_modules/@aws-lambda-powertools/commons/lib/config/ConfigService.d.ts.map +1 -0
  275. package/node_modules/@aws-lambda-powertools/commons/lib/config/ConfigService.js +15 -0
  276. package/node_modules/@aws-lambda-powertools/commons/lib/config/EnvironmentVariablesService.d.ts +76 -0
  277. package/node_modules/@aws-lambda-powertools/commons/lib/config/EnvironmentVariablesService.d.ts.map +1 -0
  278. package/node_modules/@aws-lambda-powertools/commons/lib/config/EnvironmentVariablesService.js +107 -0
  279. package/node_modules/@aws-lambda-powertools/commons/lib/config/index.d.ts +3 -0
  280. package/node_modules/@aws-lambda-powertools/commons/lib/config/index.d.ts.map +1 -0
  281. package/node_modules/@aws-lambda-powertools/commons/lib/config/index.js +18 -0
  282. package/node_modules/@aws-lambda-powertools/commons/lib/index.d.ts +9 -0
  283. package/node_modules/@aws-lambda-powertools/commons/lib/index.d.ts.map +1 -0
  284. package/node_modules/@aws-lambda-powertools/commons/lib/index.js +37 -0
  285. package/node_modules/@aws-lambda-powertools/commons/lib/middleware/cleanupMiddlewares.d.ts +50 -0
  286. package/node_modules/@aws-lambda-powertools/commons/lib/middleware/cleanupMiddlewares.d.ts.map +1 -0
  287. package/node_modules/@aws-lambda-powertools/commons/lib/middleware/cleanupMiddlewares.js +71 -0
  288. package/node_modules/@aws-lambda-powertools/commons/lib/middleware/constants.d.ts +12 -0
  289. package/node_modules/@aws-lambda-powertools/commons/lib/middleware/constants.d.ts.map +1 -0
  290. package/node_modules/@aws-lambda-powertools/commons/lib/middleware/constants.js +18 -0
  291. package/node_modules/@aws-lambda-powertools/commons/lib/middleware/index.d.ts +3 -0
  292. package/node_modules/@aws-lambda-powertools/commons/lib/middleware/index.d.ts.map +1 -0
  293. package/node_modules/@aws-lambda-powertools/commons/lib/middleware/index.js +18 -0
  294. package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/contexts/hello-world.d.ts +4 -0
  295. package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/contexts/hello-world.d.ts.map +1 -0
  296. package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/contexts/hello-world.js +18 -0
  297. package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/contexts/index.d.ts +2 -0
  298. package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/contexts/index.d.ts.map +1 -0
  299. package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/contexts/index.js +17 -0
  300. package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/events/custom/index.d.ts +6 -0
  301. package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/events/custom/index.d.ts.map +1 -0
  302. package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/events/custom/index.js +8 -0
  303. package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/events/index.d.ts +2 -0
  304. package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/events/index.d.ts.map +1 -0
  305. package/node_modules/@aws-lambda-powertools/commons/lib/samples/resources/events/index.js +27 -0
  306. package/node_modules/@aws-lambda-powertools/commons/lib/types/awsSdk.d.ts +27 -0
  307. package/node_modules/@aws-lambda-powertools/commons/lib/types/awsSdk.d.ts.map +1 -0
  308. package/node_modules/@aws-lambda-powertools/commons/lib/types/awsSdk.js +2 -0
  309. package/node_modules/@aws-lambda-powertools/commons/lib/types/middy.d.ts +40 -0
  310. package/node_modules/@aws-lambda-powertools/commons/lib/types/middy.d.ts.map +1 -0
  311. package/node_modules/@aws-lambda-powertools/commons/lib/types/middy.js +2 -0
  312. package/node_modules/@aws-lambda-powertools/commons/lib/types/utils.d.ts +33 -0
  313. package/node_modules/@aws-lambda-powertools/commons/lib/types/utils.d.ts.map +1 -0
  314. package/node_modules/@aws-lambda-powertools/commons/lib/types/utils.js +57 -0
  315. package/node_modules/@aws-lambda-powertools/commons/lib/utils/lambda/LambdaInterface.d.ts +8 -0
  316. package/node_modules/@aws-lambda-powertools/commons/lib/utils/lambda/LambdaInterface.d.ts.map +1 -0
  317. package/node_modules/@aws-lambda-powertools/commons/lib/utils/lambda/LambdaInterface.js +2 -0
  318. package/node_modules/@aws-lambda-powertools/commons/lib/utils/lambda/index.d.ts +2 -0
  319. package/node_modules/@aws-lambda-powertools/commons/lib/utils/lambda/index.d.ts.map +1 -0
  320. package/node_modules/@aws-lambda-powertools/commons/lib/utils/lambda/index.js +17 -0
  321. package/node_modules/@aws-lambda-powertools/commons/lib/version.d.ts +2 -0
  322. package/node_modules/@aws-lambda-powertools/commons/lib/version.d.ts.map +1 -0
  323. package/node_modules/@aws-lambda-powertools/commons/lib/version.js +5 -0
  324. package/node_modules/@aws-lambda-powertools/commons/package.json +30 -0
  325. package/node_modules/@aws-lambda-powertools/logger/LICENSE +14 -0
  326. package/node_modules/@aws-lambda-powertools/logger/README.md +117 -0
  327. package/node_modules/@aws-lambda-powertools/logger/lib/Logger.d.ts +546 -0
  328. package/node_modules/@aws-lambda-powertools/logger/lib/Logger.d.ts.map +1 -0
  329. package/node_modules/@aws-lambda-powertools/logger/lib/Logger.js +856 -0
  330. package/node_modules/@aws-lambda-powertools/logger/lib/config/ConfigServiceInterface.d.ts +77 -0
  331. package/node_modules/@aws-lambda-powertools/logger/lib/config/ConfigServiceInterface.d.ts.map +1 -0
  332. package/node_modules/@aws-lambda-powertools/logger/lib/config/ConfigServiceInterface.js +2 -0
  333. package/node_modules/@aws-lambda-powertools/logger/lib/config/EnvironmentVariablesService.d.ts +94 -0
  334. package/node_modules/@aws-lambda-powertools/logger/lib/config/EnvironmentVariablesService.d.ts.map +1 -0
  335. package/node_modules/@aws-lambda-powertools/logger/lib/config/EnvironmentVariablesService.js +123 -0
  336. package/node_modules/@aws-lambda-powertools/logger/lib/config/index.d.ts +3 -0
  337. package/node_modules/@aws-lambda-powertools/logger/lib/config/index.d.ts.map +1 -0
  338. package/node_modules/@aws-lambda-powertools/logger/lib/config/index.js +18 -0
  339. package/node_modules/@aws-lambda-powertools/logger/lib/formatter/LogFormatter.d.ts +41 -0
  340. package/node_modules/@aws-lambda-powertools/logger/lib/formatter/LogFormatter.d.ts.map +1 -0
  341. package/node_modules/@aws-lambda-powertools/logger/lib/formatter/LogFormatter.js +75 -0
  342. package/node_modules/@aws-lambda-powertools/logger/lib/formatter/LogFormatterInterface.d.ts +22 -0
  343. package/node_modules/@aws-lambda-powertools/logger/lib/formatter/LogFormatterInterface.d.ts.map +1 -0
  344. package/node_modules/@aws-lambda-powertools/logger/lib/formatter/LogFormatterInterface.js +2 -0
  345. package/node_modules/@aws-lambda-powertools/logger/lib/formatter/PowertoolLogFormatter.d.ts +21 -0
  346. package/node_modules/@aws-lambda-powertools/logger/lib/formatter/PowertoolLogFormatter.d.ts.map +1 -0
  347. package/node_modules/@aws-lambda-powertools/logger/lib/formatter/PowertoolLogFormatter.js +35 -0
  348. package/node_modules/@aws-lambda-powertools/logger/lib/formatter/index.d.ts +4 -0
  349. package/node_modules/@aws-lambda-powertools/logger/lib/formatter/index.d.ts.map +1 -0
  350. package/node_modules/@aws-lambda-powertools/logger/lib/formatter/index.js +19 -0
  351. package/node_modules/@aws-lambda-powertools/logger/lib/helpers.d.ts +10 -0
  352. package/node_modules/@aws-lambda-powertools/logger/lib/helpers.d.ts.map +1 -0
  353. package/node_modules/@aws-lambda-powertools/logger/lib/helpers.js +11 -0
  354. package/node_modules/@aws-lambda-powertools/logger/lib/index.d.ts +5 -0
  355. package/node_modules/@aws-lambda-powertools/logger/lib/index.d.ts.map +1 -0
  356. package/node_modules/@aws-lambda-powertools/logger/lib/index.js +20 -0
  357. package/node_modules/@aws-lambda-powertools/logger/lib/log/LogItem.d.ts +16 -0
  358. package/node_modules/@aws-lambda-powertools/logger/lib/log/LogItem.d.ts.map +1 -0
  359. package/node_modules/@aws-lambda-powertools/logger/lib/log/LogItem.js +43 -0
  360. package/node_modules/@aws-lambda-powertools/logger/lib/log/LogItemInterface.d.ts +7 -0
  361. package/node_modules/@aws-lambda-powertools/logger/lib/log/LogItemInterface.d.ts.map +1 -0
  362. package/node_modules/@aws-lambda-powertools/logger/lib/log/LogItemInterface.js +2 -0
  363. package/node_modules/@aws-lambda-powertools/logger/lib/log/index.d.ts +3 -0
  364. package/node_modules/@aws-lambda-powertools/logger/lib/log/index.d.ts.map +1 -0
  365. package/node_modules/@aws-lambda-powertools/logger/lib/log/index.js +18 -0
  366. package/node_modules/@aws-lambda-powertools/logger/lib/middleware/index.d.ts +2 -0
  367. package/node_modules/@aws-lambda-powertools/logger/lib/middleware/index.d.ts.map +1 -0
  368. package/node_modules/@aws-lambda-powertools/logger/lib/middleware/index.js +17 -0
  369. package/node_modules/@aws-lambda-powertools/logger/lib/middleware/middy.d.ts +30 -0
  370. package/node_modules/@aws-lambda-powertools/logger/lib/middleware/middy.d.ts.map +1 -0
  371. package/node_modules/@aws-lambda-powertools/logger/lib/middleware/middy.js +69 -0
  372. package/node_modules/@aws-lambda-powertools/logger/lib/types/Log.d.ts +20 -0
  373. package/node_modules/@aws-lambda-powertools/logger/lib/types/Log.d.ts.map +1 -0
  374. package/node_modules/@aws-lambda-powertools/logger/lib/types/Log.js +2 -0
  375. package/node_modules/@aws-lambda-powertools/logger/lib/types/Logger.d.ts +58 -0
  376. package/node_modules/@aws-lambda-powertools/logger/lib/types/Logger.d.ts.map +1 -0
  377. package/node_modules/@aws-lambda-powertools/logger/lib/types/Logger.js +2 -0
  378. package/node_modules/@aws-lambda-powertools/logger/lib/types/formats/PowertoolLog.d.ts +82 -0
  379. package/node_modules/@aws-lambda-powertools/logger/lib/types/formats/PowertoolLog.d.ts.map +1 -0
  380. package/node_modules/@aws-lambda-powertools/logger/lib/types/formats/PowertoolLog.js +2 -0
  381. package/node_modules/@aws-lambda-powertools/logger/lib/types/formats/index.d.ts +2 -0
  382. package/node_modules/@aws-lambda-powertools/logger/lib/types/formats/index.d.ts.map +1 -0
  383. package/node_modules/@aws-lambda-powertools/logger/lib/types/formats/index.js +17 -0
  384. package/node_modules/@aws-lambda-powertools/logger/lib/types/index.d.ts +3 -0
  385. package/node_modules/@aws-lambda-powertools/logger/lib/types/index.d.ts.map +1 -0
  386. package/node_modules/@aws-lambda-powertools/logger/lib/types/index.js +18 -0
  387. package/node_modules/@aws-lambda-powertools/logger/package.json +44 -0
  388. package/node_modules/@aws-sdk/client-dynamodb/LICENSE +201 -0
  389. package/node_modules/@aws-sdk/client-dynamodb/README.md +654 -0
  390. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/DynamoDB.js +1 -0
  391. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/DynamoDBClient.js +1 -0
  392. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/auth/httpAuthExtensionConfiguration.js +1 -0
  393. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  394. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/BatchExecuteStatementCommand.js +1 -0
  395. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/BatchGetItemCommand.js +1 -0
  396. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/BatchWriteItemCommand.js +1 -0
  397. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/CreateBackupCommand.js +1 -0
  398. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/CreateGlobalTableCommand.js +1 -0
  399. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/CreateTableCommand.js +1 -0
  400. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DeleteBackupCommand.js +1 -0
  401. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DeleteItemCommand.js +1 -0
  402. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DeleteTableCommand.js +1 -0
  403. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeBackupCommand.js +1 -0
  404. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeContinuousBackupsCommand.js +1 -0
  405. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeContributorInsightsCommand.js +1 -0
  406. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeEndpointsCommand.js +1 -0
  407. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeExportCommand.js +1 -0
  408. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeGlobalTableCommand.js +1 -0
  409. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeGlobalTableSettingsCommand.js +1 -0
  410. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeImportCommand.js +1 -0
  411. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeKinesisStreamingDestinationCommand.js +1 -0
  412. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeLimitsCommand.js +1 -0
  413. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeTableCommand.js +1 -0
  414. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeTableReplicaAutoScalingCommand.js +1 -0
  415. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DescribeTimeToLiveCommand.js +1 -0
  416. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/DisableKinesisStreamingDestinationCommand.js +1 -0
  417. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/EnableKinesisStreamingDestinationCommand.js +1 -0
  418. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ExecuteStatementCommand.js +1 -0
  419. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ExecuteTransactionCommand.js +1 -0
  420. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ExportTableToPointInTimeCommand.js +1 -0
  421. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/GetItemCommand.js +1 -0
  422. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ImportTableCommand.js +1 -0
  423. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListBackupsCommand.js +1 -0
  424. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListContributorInsightsCommand.js +1 -0
  425. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListExportsCommand.js +1 -0
  426. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListGlobalTablesCommand.js +1 -0
  427. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListImportsCommand.js +1 -0
  428. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListTablesCommand.js +1 -0
  429. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ListTagsOfResourceCommand.js +1 -0
  430. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/PutItemCommand.js +1 -0
  431. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/QueryCommand.js +1 -0
  432. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/RestoreTableFromBackupCommand.js +1 -0
  433. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/RestoreTableToPointInTimeCommand.js +1 -0
  434. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/ScanCommand.js +1 -0
  435. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/TagResourceCommand.js +1 -0
  436. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/TransactGetItemsCommand.js +1 -0
  437. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/TransactWriteItemsCommand.js +1 -0
  438. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UntagResourceCommand.js +1 -0
  439. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateContinuousBackupsCommand.js +1 -0
  440. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateContributorInsightsCommand.js +1 -0
  441. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateGlobalTableCommand.js +1 -0
  442. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateGlobalTableSettingsCommand.js +1 -0
  443. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateItemCommand.js +1 -0
  444. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateKinesisStreamingDestinationCommand.js +1 -0
  445. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateTableCommand.js +1 -0
  446. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateTableReplicaAutoScalingCommand.js +1 -0
  447. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/UpdateTimeToLiveCommand.js +1 -0
  448. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/commands/index.js +1 -0
  449. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/endpoint/EndpointParameters.js +1 -0
  450. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/endpoint/endpointResolver.js +12 -0
  451. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/endpoint/ruleset.js +7 -0
  452. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/extensionConfiguration.js +1 -0
  453. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/index.js +6772 -0
  454. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/models/DynamoDBServiceException.js +1 -0
  455. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/models/index.js +1 -0
  456. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/models/models_0.js +1 -0
  457. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/Interfaces.js +1 -0
  458. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/ListContributorInsightsPaginator.js +1 -0
  459. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/ListExportsPaginator.js +1 -0
  460. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/ListImportsPaginator.js +1 -0
  461. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/ListTablesPaginator.js +1 -0
  462. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/QueryPaginator.js +1 -0
  463. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/ScanPaginator.js +1 -0
  464. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/pagination/index.js +1 -0
  465. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/protocols/Aws_json1_0.js +1 -0
  466. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.browser.js +40 -0
  467. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.js +52 -0
  468. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.native.js +15 -0
  469. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.shared.js +34 -0
  470. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeExtensions.js +1 -0
  471. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/waiters/index.js +1 -0
  472. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/waiters/waitForTableExists.js +1 -0
  473. package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/waiters/waitForTableNotExists.js +1 -0
  474. package/node_modules/@aws-sdk/client-dynamodb/dist-es/DynamoDB.js +115 -0
  475. package/node_modules/@aws-sdk/client-dynamodb/dist-es/DynamoDBClient.js +57 -0
  476. package/node_modules/@aws-sdk/client-dynamodb/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  477. package/node_modules/@aws-sdk/client-dynamodb/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  478. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/BatchExecuteStatementCommand.js +24 -0
  479. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/BatchGetItemCommand.js +24 -0
  480. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/BatchWriteItemCommand.js +24 -0
  481. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/CreateBackupCommand.js +24 -0
  482. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/CreateGlobalTableCommand.js +24 -0
  483. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/CreateTableCommand.js +24 -0
  484. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteBackupCommand.js +24 -0
  485. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteItemCommand.js +24 -0
  486. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteTableCommand.js +24 -0
  487. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeBackupCommand.js +24 -0
  488. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeContinuousBackupsCommand.js +24 -0
  489. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeContributorInsightsCommand.js +24 -0
  490. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeEndpointsCommand.js +24 -0
  491. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeExportCommand.js +24 -0
  492. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeGlobalTableCommand.js +24 -0
  493. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeGlobalTableSettingsCommand.js +24 -0
  494. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeImportCommand.js +24 -0
  495. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeKinesisStreamingDestinationCommand.js +24 -0
  496. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeLimitsCommand.js +24 -0
  497. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeTableCommand.js +24 -0
  498. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeTableReplicaAutoScalingCommand.js +24 -0
  499. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeTimeToLiveCommand.js +24 -0
  500. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DisableKinesisStreamingDestinationCommand.js +24 -0
  501. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/EnableKinesisStreamingDestinationCommand.js +24 -0
  502. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ExecuteStatementCommand.js +24 -0
  503. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ExecuteTransactionCommand.js +24 -0
  504. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ExportTableToPointInTimeCommand.js +24 -0
  505. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/GetItemCommand.js +24 -0
  506. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ImportTableCommand.js +24 -0
  507. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListBackupsCommand.js +24 -0
  508. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListContributorInsightsCommand.js +24 -0
  509. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListExportsCommand.js +24 -0
  510. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListGlobalTablesCommand.js +24 -0
  511. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListImportsCommand.js +24 -0
  512. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListTablesCommand.js +24 -0
  513. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListTagsOfResourceCommand.js +24 -0
  514. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/PutItemCommand.js +24 -0
  515. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/QueryCommand.js +24 -0
  516. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/RestoreTableFromBackupCommand.js +24 -0
  517. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/RestoreTableToPointInTimeCommand.js +24 -0
  518. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ScanCommand.js +24 -0
  519. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/TagResourceCommand.js +24 -0
  520. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/TransactGetItemsCommand.js +24 -0
  521. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/TransactWriteItemsCommand.js +24 -0
  522. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UntagResourceCommand.js +24 -0
  523. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateContinuousBackupsCommand.js +24 -0
  524. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateContributorInsightsCommand.js +24 -0
  525. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateGlobalTableCommand.js +24 -0
  526. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateGlobalTableSettingsCommand.js +24 -0
  527. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateItemCommand.js +24 -0
  528. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateKinesisStreamingDestinationCommand.js +24 -0
  529. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateTableCommand.js +24 -0
  530. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateTableReplicaAutoScalingCommand.js +24 -0
  531. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateTimeToLiveCommand.js +24 -0
  532. package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/index.js +54 -0
  533. package/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoint/EndpointParameters.js +14 -0
  534. package/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoint/endpointResolver.js +8 -0
  535. package/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoint/ruleset.js +4 -0
  536. package/node_modules/@aws-sdk/client-dynamodb/dist-es/extensionConfiguration.js +1 -0
  537. package/node_modules/@aws-sdk/client-dynamodb/dist-es/index.js +8 -0
  538. package/node_modules/@aws-sdk/client-dynamodb/dist-es/models/DynamoDBServiceException.js +8 -0
  539. package/node_modules/@aws-sdk/client-dynamodb/dist-es/models/index.js +1 -0
  540. package/node_modules/@aws-sdk/client-dynamodb/dist-es/models/models_0.js +640 -0
  541. package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/Interfaces.js +1 -0
  542. package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ListContributorInsightsPaginator.js +4 -0
  543. package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ListExportsPaginator.js +4 -0
  544. package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ListImportsPaginator.js +4 -0
  545. package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ListTablesPaginator.js +4 -0
  546. package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/QueryPaginator.js +4 -0
  547. package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ScanPaginator.js +4 -0
  548. package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/index.js +7 -0
  549. package/node_modules/@aws-sdk/client-dynamodb/dist-es/protocols/Aws_json1_0.js +4494 -0
  550. package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.browser.js +35 -0
  551. package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.js +47 -0
  552. package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.native.js +11 -0
  553. package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.shared.js +30 -0
  554. package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeExtensions.js +21 -0
  555. package/node_modules/@aws-sdk/client-dynamodb/dist-es/waiters/index.js +2 -0
  556. package/node_modules/@aws-sdk/client-dynamodb/dist-es/waiters/waitForTableExists.js +34 -0
  557. package/node_modules/@aws-sdk/client-dynamodb/dist-es/waiters/waitForTableNotExists.js +25 -0
  558. package/node_modules/@aws-sdk/client-dynamodb/dist-types/DynamoDB.d.ts +404 -0
  559. package/node_modules/@aws-sdk/client-dynamodb/dist-types/DynamoDBClient.d.ts +248 -0
  560. package/node_modules/@aws-sdk/client-dynamodb/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  561. package/node_modules/@aws-sdk/client-dynamodb/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  562. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchExecuteStatementCommand.d.ts +213 -0
  563. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchGetItemCommand.d.ts +339 -0
  564. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchWriteItemCommand.d.ts +377 -0
  565. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateBackupCommand.d.ts +132 -0
  566. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateGlobalTableCommand.d.ts +183 -0
  567. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateTableCommand.d.ts +372 -0
  568. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteBackupCommand.d.ts +171 -0
  569. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteItemCommand.d.ts +270 -0
  570. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteTableCommand.d.ts +270 -0
  571. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeBackupCommand.d.ts +151 -0
  572. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeContinuousBackupsCommand.d.ts +85 -0
  573. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeContributorInsightsCommand.d.ts +77 -0
  574. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeEndpointsCommand.d.ts +62 -0
  575. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeExportCommand.d.ts +106 -0
  576. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeGlobalTableCommand.d.ts +108 -0
  577. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeGlobalTableSettingsCommand.d.ts +170 -0
  578. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeImportCommand.d.ts +139 -0
  579. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeKinesisStreamingDestinationCommand.d.ts +75 -0
  580. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeLimitsCommand.d.ts +150 -0
  581. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTableCommand.d.ts +262 -0
  582. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTableReplicaAutoScalingCommand.d.ts +152 -0
  583. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTimeToLiveCommand.d.ts +70 -0
  584. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DisableKinesisStreamingDestinationCommand.d.ts +98 -0
  585. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/EnableKinesisStreamingDestinationCommand.d.ts +100 -0
  586. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExecuteStatementCommand.d.ts +228 -0
  587. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExecuteTransactionCommand.d.ts +519 -0
  588. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExportTableToPointInTimeCommand.d.ts +133 -0
  589. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/GetItemCommand.d.ts +242 -0
  590. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ImportTableCommand.d.ts +223 -0
  591. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListBackupsCommand.d.ts +91 -0
  592. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListContributorInsightsCommand.d.ts +75 -0
  593. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListExportsCommand.d.ts +86 -0
  594. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListGlobalTablesCommand.d.ts +87 -0
  595. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListImportsCommand.d.ts +92 -0
  596. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListTablesCommand.d.ts +88 -0
  597. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListTagsOfResourceCommand.d.ts +77 -0
  598. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/PutItemCommand.d.ts +285 -0
  599. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/QueryCommand.d.ts +316 -0
  600. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/RestoreTableFromBackupCommand.d.ts +300 -0
  601. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/RestoreTableToPointInTimeCommand.d.ts +332 -0
  602. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ScanCommand.d.ts +314 -0
  603. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TagResourceCommand.d.ts +97 -0
  604. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TransactGetItemsCommand.d.ts +475 -0
  605. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TransactWriteItemsCommand.d.ts +644 -0
  606. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UntagResourceCommand.d.ts +92 -0
  607. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateContinuousBackupsCommand.d.ts +91 -0
  608. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateContributorInsightsCommand.d.ts +75 -0
  609. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateGlobalTableCommand.d.ts +158 -0
  610. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateGlobalTableSettingsCommand.d.ts +264 -0
  611. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateItemCommand.d.ts +297 -0
  612. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateKinesisStreamingDestinationCommand.d.ts +97 -0
  613. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTableCommand.d.ts +394 -0
  614. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTableReplicaAutoScalingCommand.d.ts +221 -0
  615. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTimeToLiveCommand.d.ts +119 -0
  616. package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/index.d.ts +54 -0
  617. package/node_modules/@aws-sdk/client-dynamodb/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  618. package/node_modules/@aws-sdk/client-dynamodb/dist-types/endpoint/endpointResolver.d.ts +5 -0
  619. package/node_modules/@aws-sdk/client-dynamodb/dist-types/endpoint/ruleset.d.ts +2 -0
  620. package/node_modules/@aws-sdk/client-dynamodb/dist-types/extensionConfiguration.d.ts +9 -0
  621. package/node_modules/@aws-sdk/client-dynamodb/dist-types/index.d.ts +32 -0
  622. package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/DynamoDBServiceException.d.ts +13 -0
  623. package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/index.d.ts +1 -0
  624. package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/models_0.d.ts +10435 -0
  625. package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/Interfaces.d.ts +8 -0
  626. package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ListContributorInsightsPaginator.d.ts +7 -0
  627. package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ListExportsPaginator.d.ts +7 -0
  628. package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ListImportsPaginator.d.ts +7 -0
  629. package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ListTablesPaginator.d.ts +7 -0
  630. package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/QueryPaginator.d.ts +7 -0
  631. package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ScanPaginator.d.ts +7 -0
  632. package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/index.d.ts +7 -0
  633. package/node_modules/@aws-sdk/client-dynamodb/dist-types/protocols/Aws_json1_0.d.ts +488 -0
  634. package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.browser.d.ts +51 -0
  635. package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.d.ts +51 -0
  636. package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.native.d.ts +50 -0
  637. package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.shared.d.ts +21 -0
  638. package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeExtensions.d.ts +17 -0
  639. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/DynamoDB.d.ts +941 -0
  640. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/DynamoDBClient.d.ts +445 -0
  641. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  642. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  643. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +30 -0
  644. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchGetItemCommand.d.ts +26 -0
  645. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchWriteItemCommand.d.ts +26 -0
  646. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateBackupCommand.d.ts +26 -0
  647. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateGlobalTableCommand.d.ts +29 -0
  648. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateTableCommand.d.ts +26 -0
  649. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +26 -0
  650. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteItemCommand.d.ts +26 -0
  651. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +26 -0
  652. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeBackupCommand.d.ts +26 -0
  653. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeContinuousBackupsCommand.d.ts +30 -0
  654. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeContributorInsightsCommand.d.ts +30 -0
  655. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +30 -0
  656. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeExportCommand.d.ts +26 -0
  657. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeGlobalTableCommand.d.ts +30 -0
  658. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeGlobalTableSettingsCommand.d.ts +30 -0
  659. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeImportCommand.d.ts +26 -0
  660. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeKinesisStreamingDestinationCommand.d.ts +30 -0
  661. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeLimitsCommand.d.ts +26 -0
  662. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +26 -0
  663. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTableReplicaAutoScalingCommand.d.ts +30 -0
  664. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTimeToLiveCommand.d.ts +30 -0
  665. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DisableKinesisStreamingDestinationCommand.d.ts +30 -0
  666. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/EnableKinesisStreamingDestinationCommand.d.ts +30 -0
  667. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +29 -0
  668. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +30 -0
  669. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExportTableToPointInTimeCommand.d.ts +30 -0
  670. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/GetItemCommand.d.ts +22 -0
  671. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ImportTableCommand.d.ts +26 -0
  672. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListBackupsCommand.d.ts +26 -0
  673. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListContributorInsightsCommand.d.ts +30 -0
  674. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListExportsCommand.d.ts +26 -0
  675. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListGlobalTablesCommand.d.ts +29 -0
  676. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListImportsCommand.d.ts +26 -0
  677. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListTablesCommand.d.ts +26 -0
  678. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListTagsOfResourceCommand.d.ts +30 -0
  679. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/PutItemCommand.d.ts +22 -0
  680. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/QueryCommand.d.ts +22 -0
  681. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/RestoreTableFromBackupCommand.d.ts +30 -0
  682. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/RestoreTableToPointInTimeCommand.d.ts +30 -0
  683. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ScanCommand.d.ts +22 -0
  684. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TagResourceCommand.d.ts +24 -0
  685. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TransactGetItemsCommand.d.ts +29 -0
  686. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TransactWriteItemsCommand.d.ts +30 -0
  687. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +24 -0
  688. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateContinuousBackupsCommand.d.ts +30 -0
  689. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateContributorInsightsCommand.d.ts +30 -0
  690. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateGlobalTableCommand.d.ts +29 -0
  691. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateGlobalTableSettingsCommand.d.ts +30 -0
  692. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateItemCommand.d.ts +26 -0
  693. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateKinesisStreamingDestinationCommand.d.ts +30 -0
  694. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +26 -0
  695. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTableReplicaAutoScalingCommand.d.ts +30 -0
  696. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTimeToLiveCommand.d.ts +29 -0
  697. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/index.d.ts +54 -0
  698. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  699. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  700. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  701. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  702. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/index.d.ts +11 -0
  703. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/DynamoDBServiceException.d.ts +8 -0
  704. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/index.d.ts +1 -0
  705. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/models_0.d.ts +1858 -0
  706. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  707. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListContributorInsightsPaginator.d.ts +11 -0
  708. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListExportsPaginator.d.ts +11 -0
  709. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListImportsPaginator.d.ts +11 -0
  710. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -0
  711. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/QueryPaginator.d.ts +11 -0
  712. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ScanPaginator.d.ts +8 -0
  713. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/index.d.ts +7 -0
  714. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +650 -0
  715. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.browser.d.ts +102 -0
  716. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.d.ts +102 -0
  717. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.native.d.ts +93 -0
  718. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  719. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  720. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/index.d.ts +2 -0
  721. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/waitForTableExists.d.ts +11 -0
  722. package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/waitForTableNotExists.d.ts +11 -0
  723. package/node_modules/@aws-sdk/client-dynamodb/dist-types/waiters/index.d.ts +2 -0
  724. package/node_modules/@aws-sdk/client-dynamodb/dist-types/waiters/waitForTableExists.d.ts +14 -0
  725. package/node_modules/@aws-sdk/client-dynamodb/dist-types/waiters/waitForTableNotExists.d.ts +14 -0
  726. package/node_modules/@aws-sdk/client-dynamodb/package.json +105 -0
  727. package/node_modules/@aws-sdk/client-secrets-manager/LICENSE +201 -0
  728. package/node_modules/@aws-sdk/client-secrets-manager/README.md +415 -0
  729. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/SecretsManager.js +1 -0
  730. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/SecretsManagerClient.js +1 -0
  731. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/BatchGetSecretValueCommand.js +1 -0
  732. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/CancelRotateSecretCommand.js +1 -0
  733. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/CreateSecretCommand.js +1 -0
  734. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/DeleteResourcePolicyCommand.js +1 -0
  735. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/DeleteSecretCommand.js +1 -0
  736. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/DescribeSecretCommand.js +1 -0
  737. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/GetRandomPasswordCommand.js +1 -0
  738. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/GetResourcePolicyCommand.js +1 -0
  739. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/GetSecretValueCommand.js +1 -0
  740. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/ListSecretVersionIdsCommand.js +1 -0
  741. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/ListSecretsCommand.js +1 -0
  742. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/PutResourcePolicyCommand.js +1 -0
  743. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/PutSecretValueCommand.js +1 -0
  744. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/RemoveRegionsFromReplicationCommand.js +1 -0
  745. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/ReplicateSecretToRegionsCommand.js +1 -0
  746. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/RestoreSecretCommand.js +1 -0
  747. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/RotateSecretCommand.js +1 -0
  748. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/StopReplicationToReplicaCommand.js +1 -0
  749. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/TagResourceCommand.js +1 -0
  750. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/UntagResourceCommand.js +1 -0
  751. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/UpdateSecretCommand.js +1 -0
  752. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/UpdateSecretVersionStageCommand.js +1 -0
  753. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/ValidateResourcePolicyCommand.js +1 -0
  754. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/commands/index.js +1 -0
  755. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/endpoint/EndpointParameters.js +1 -0
  756. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/endpoint/endpointResolver.js +12 -0
  757. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/endpoint/ruleset.js +7 -0
  758. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/extensionConfiguration.js +1 -0
  759. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/index.js +2468 -0
  760. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/models/SecretsManagerServiceException.js +1 -0
  761. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/models/index.js +1 -0
  762. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/models/models_0.js +1 -0
  763. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/pagination/BatchGetSecretValuePaginator.js +1 -0
  764. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/pagination/Interfaces.js +1 -0
  765. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/pagination/ListSecretVersionIdsPaginator.js +1 -0
  766. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/pagination/ListSecretsPaginator.js +1 -0
  767. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/pagination/index.js +1 -0
  768. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/protocols/Aws_json1_1.js +1 -0
  769. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeConfig.browser.js +39 -0
  770. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeConfig.js +50 -0
  771. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeConfig.native.js +15 -0
  772. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeConfig.shared.js +24 -0
  773. package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeExtensions.js +1 -0
  774. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/SecretsManager.js +53 -0
  775. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/SecretsManagerClient.js +39 -0
  776. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/BatchGetSecretValueCommand.js +25 -0
  777. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/CancelRotateSecretCommand.js +24 -0
  778. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/CreateSecretCommand.js +25 -0
  779. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/DeleteResourcePolicyCommand.js +24 -0
  780. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/DeleteSecretCommand.js +24 -0
  781. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/DescribeSecretCommand.js +24 -0
  782. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/GetRandomPasswordCommand.js +25 -0
  783. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/GetResourcePolicyCommand.js +24 -0
  784. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/GetSecretValueCommand.js +25 -0
  785. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/ListSecretVersionIdsCommand.js +24 -0
  786. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/ListSecretsCommand.js +24 -0
  787. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/PutResourcePolicyCommand.js +24 -0
  788. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/PutSecretValueCommand.js +25 -0
  789. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/RemoveRegionsFromReplicationCommand.js +24 -0
  790. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/ReplicateSecretToRegionsCommand.js +24 -0
  791. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/RestoreSecretCommand.js +24 -0
  792. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/RotateSecretCommand.js +24 -0
  793. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/StopReplicationToReplicaCommand.js +24 -0
  794. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/TagResourceCommand.js +24 -0
  795. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/UntagResourceCommand.js +24 -0
  796. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/UpdateSecretCommand.js +25 -0
  797. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/UpdateSecretVersionStageCommand.js +24 -0
  798. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/ValidateResourcePolicyCommand.js +24 -0
  799. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/index.js +23 -0
  800. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/endpoint/EndpointParameters.js +14 -0
  801. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/endpoint/endpointResolver.js +8 -0
  802. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/endpoint/ruleset.js +4 -0
  803. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/extensionConfiguration.js +1 -0
  804. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/index.js +7 -0
  805. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/models/SecretsManagerServiceException.js +8 -0
  806. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/models/index.js +1 -0
  807. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/models/models_0.js +209 -0
  808. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/pagination/BatchGetSecretValuePaginator.js +4 -0
  809. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/pagination/Interfaces.js +1 -0
  810. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/pagination/ListSecretVersionIdsPaginator.js +4 -0
  811. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/pagination/ListSecretsPaginator.js +4 -0
  812. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/pagination/index.js +4 -0
  813. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/protocols/Aws_json1_1.js +1527 -0
  814. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeConfig.browser.js +34 -0
  815. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeConfig.js +45 -0
  816. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeConfig.native.js +11 -0
  817. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeConfig.shared.js +20 -0
  818. package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeExtensions.js +18 -0
  819. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/SecretsManager.d.ts +196 -0
  820. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/SecretsManagerClient.d.ts +217 -0
  821. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/BatchGetSecretValueCommand.d.ts +184 -0
  822. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/CancelRotateSecretCommand.d.ts +122 -0
  823. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/CreateSecretCommand.d.ts +190 -0
  824. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/DeleteResourcePolicyCommand.d.ts +111 -0
  825. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/DeleteSecretCommand.d.ts +136 -0
  826. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/DescribeSecretCommand.d.ts +161 -0
  827. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/GetRandomPasswordCommand.d.ts +117 -0
  828. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/GetResourcePolicyCommand.d.ts +115 -0
  829. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/GetSecretValueCommand.d.ts +138 -0
  830. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ListSecretVersionIdsCommand.d.ts +136 -0
  831. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ListSecretsCommand.d.ts +180 -0
  832. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/PutResourcePolicyCommand.d.ts +123 -0
  833. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/PutSecretValueCommand.d.ts +160 -0
  834. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/RemoveRegionsFromReplicationCommand.d.ts +104 -0
  835. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ReplicateSecretToRegionsCommand.d.ts +137 -0
  836. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/RestoreSecretCommand.d.ts +111 -0
  837. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/RotateSecretCommand.d.ts +151 -0
  838. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/StopReplicationToReplicaCommand.d.ts +93 -0
  839. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/TagResourceCommand.d.ts +126 -0
  840. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/UntagResourceCommand.d.ts +116 -0
  841. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/UpdateSecretCommand.d.ts +194 -0
  842. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/UpdateSecretVersionStageCommand.d.ts +171 -0
  843. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ValidateResourcePolicyCommand.d.ts +134 -0
  844. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/index.d.ts +23 -0
  845. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  846. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/endpoint/endpointResolver.d.ts +5 -0
  847. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/endpoint/ruleset.d.ts +2 -0
  848. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/extensionConfiguration.d.ts +8 -0
  849. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/index.d.ts +40 -0
  850. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/models/SecretsManagerServiceException.d.ts +13 -0
  851. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/models/index.d.ts +1 -0
  852. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/models/models_0.d.ts +1959 -0
  853. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/pagination/BatchGetSecretValuePaginator.d.ts +7 -0
  854. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/pagination/Interfaces.d.ts +8 -0
  855. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/pagination/ListSecretVersionIdsPaginator.d.ts +7 -0
  856. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/pagination/ListSecretsPaginator.d.ts +7 -0
  857. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/pagination/index.d.ts +4 -0
  858. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/protocols/Aws_json1_1.d.ts +209 -0
  859. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeConfig.browser.d.ts +46 -0
  860. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeConfig.d.ts +46 -0
  861. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeConfig.native.d.ts +45 -0
  862. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeConfig.shared.d.ts +19 -0
  863. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeExtensions.d.ts +17 -0
  864. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/SecretsManager.d.ts +398 -0
  865. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/SecretsManagerClient.d.ts +257 -0
  866. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/BatchGetSecretValueCommand.d.ts +30 -0
  867. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/CancelRotateSecretCommand.d.ts +30 -0
  868. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/CreateSecretCommand.d.ts +26 -0
  869. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +30 -0
  870. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/DeleteSecretCommand.d.ts +26 -0
  871. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/DescribeSecretCommand.d.ts +29 -0
  872. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/GetRandomPasswordCommand.d.ts +30 -0
  873. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +30 -0
  874. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/GetSecretValueCommand.d.ts +29 -0
  875. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/ListSecretVersionIdsCommand.d.ts +30 -0
  876. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/ListSecretsCommand.d.ts +26 -0
  877. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +30 -0
  878. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/PutSecretValueCommand.d.ts +29 -0
  879. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/RemoveRegionsFromReplicationCommand.d.ts +30 -0
  880. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/ReplicateSecretToRegionsCommand.d.ts +30 -0
  881. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/RestoreSecretCommand.d.ts +29 -0
  882. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/RotateSecretCommand.d.ts +26 -0
  883. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/StopReplicationToReplicaCommand.d.ts +30 -0
  884. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/TagResourceCommand.d.ts +24 -0
  885. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +24 -0
  886. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/UpdateSecretCommand.d.ts +26 -0
  887. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/UpdateSecretVersionStageCommand.d.ts +30 -0
  888. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/ValidateResourcePolicyCommand.d.ts +30 -0
  889. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/index.d.ts +23 -0
  890. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  891. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  892. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  893. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
  894. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/index.d.ts +10 -0
  895. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/models/SecretsManagerServiceException.d.ts +8 -0
  896. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/models/index.d.ts +1 -0
  897. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/models/models_0.d.ts +445 -0
  898. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/pagination/BatchGetSecretValuePaginator.d.ts +11 -0
  899. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  900. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/pagination/ListSecretVersionIdsPaginator.d.ts +11 -0
  901. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/pagination/ListSecretsPaginator.d.ts +11 -0
  902. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/pagination/index.d.ts +4 -0
  903. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +281 -0
  904. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
  905. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
  906. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
  907. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
  908. package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  909. package/node_modules/@aws-sdk/client-secrets-manager/package.json +103 -0
  910. package/node_modules/@aws-sdk/client-ssm/LICENSE +201 -0
  911. package/node_modules/@aws-sdk/client-ssm/README.md +1352 -0
  912. package/node_modules/@aws-sdk/client-ssm/dist-cjs/SSM.js +1 -0
  913. package/node_modules/@aws-sdk/client-ssm/dist-cjs/SSMClient.js +1 -0
  914. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/AddTagsToResourceCommand.js +1 -0
  915. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/AssociateOpsItemRelatedItemCommand.js +1 -0
  916. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CancelCommandCommand.js +1 -0
  917. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CancelMaintenanceWindowExecutionCommand.js +1 -0
  918. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateActivationCommand.js +1 -0
  919. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateAssociationBatchCommand.js +1 -0
  920. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateAssociationCommand.js +1 -0
  921. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateDocumentCommand.js +1 -0
  922. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateMaintenanceWindowCommand.js +1 -0
  923. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateOpsItemCommand.js +1 -0
  924. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateOpsMetadataCommand.js +1 -0
  925. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreatePatchBaselineCommand.js +1 -0
  926. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/CreateResourceDataSyncCommand.js +1 -0
  927. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteActivationCommand.js +1 -0
  928. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteAssociationCommand.js +1 -0
  929. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteDocumentCommand.js +1 -0
  930. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteInventoryCommand.js +1 -0
  931. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteMaintenanceWindowCommand.js +1 -0
  932. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteOpsItemCommand.js +1 -0
  933. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteOpsMetadataCommand.js +1 -0
  934. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteParameterCommand.js +1 -0
  935. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteParametersCommand.js +1 -0
  936. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeletePatchBaselineCommand.js +1 -0
  937. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteResourceDataSyncCommand.js +1 -0
  938. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeleteResourcePolicyCommand.js +1 -0
  939. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeregisterManagedInstanceCommand.js +1 -0
  940. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeregisterPatchBaselineForPatchGroupCommand.js +1 -0
  941. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeregisterTargetFromMaintenanceWindowCommand.js +1 -0
  942. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DeregisterTaskFromMaintenanceWindowCommand.js +1 -0
  943. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeActivationsCommand.js +1 -0
  944. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAssociationCommand.js +1 -0
  945. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAssociationExecutionTargetsCommand.js +1 -0
  946. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAssociationExecutionsCommand.js +1 -0
  947. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAutomationExecutionsCommand.js +1 -0
  948. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAutomationStepExecutionsCommand.js +1 -0
  949. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeAvailablePatchesCommand.js +1 -0
  950. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeDocumentCommand.js +1 -0
  951. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeDocumentPermissionCommand.js +1 -0
  952. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeEffectiveInstanceAssociationsCommand.js +1 -0
  953. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeEffectivePatchesForPatchBaselineCommand.js +1 -0
  954. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstanceAssociationsStatusCommand.js +1 -0
  955. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstanceInformationCommand.js +1 -0
  956. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstancePatchStatesCommand.js +1 -0
  957. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstancePatchStatesForPatchGroupCommand.js +1 -0
  958. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInstancePatchesCommand.js +1 -0
  959. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeInventoryDeletionsCommand.js +1 -0
  960. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.js +1 -0
  961. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowExecutionTasksCommand.js +1 -0
  962. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowExecutionsCommand.js +1 -0
  963. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowScheduleCommand.js +1 -0
  964. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowTargetsCommand.js +1 -0
  965. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowTasksCommand.js +1 -0
  966. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowsCommand.js +1 -0
  967. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeMaintenanceWindowsForTargetCommand.js +1 -0
  968. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeOpsItemsCommand.js +1 -0
  969. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeParametersCommand.js +1 -0
  970. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribePatchBaselinesCommand.js +1 -0
  971. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribePatchGroupStateCommand.js +1 -0
  972. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribePatchGroupsCommand.js +1 -0
  973. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribePatchPropertiesCommand.js +1 -0
  974. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DescribeSessionsCommand.js +1 -0
  975. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/DisassociateOpsItemRelatedItemCommand.js +1 -0
  976. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetAutomationExecutionCommand.js +1 -0
  977. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetCalendarStateCommand.js +1 -0
  978. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetCommandInvocationCommand.js +1 -0
  979. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetConnectionStatusCommand.js +1 -0
  980. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetDefaultPatchBaselineCommand.js +1 -0
  981. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetDeployablePatchSnapshotForInstanceCommand.js +1 -0
  982. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetDocumentCommand.js +1 -0
  983. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetInventoryCommand.js +1 -0
  984. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetInventorySchemaCommand.js +1 -0
  985. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowCommand.js +1 -0
  986. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowExecutionCommand.js +1 -0
  987. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowExecutionTaskCommand.js +1 -0
  988. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.js +1 -0
  989. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetMaintenanceWindowTaskCommand.js +1 -0
  990. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetOpsItemCommand.js +1 -0
  991. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetOpsMetadataCommand.js +1 -0
  992. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetOpsSummaryCommand.js +1 -0
  993. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetParameterCommand.js +1 -0
  994. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetParameterHistoryCommand.js +1 -0
  995. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetParametersByPathCommand.js +1 -0
  996. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetParametersCommand.js +1 -0
  997. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetPatchBaselineCommand.js +1 -0
  998. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetPatchBaselineForPatchGroupCommand.js +1 -0
  999. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetResourcePoliciesCommand.js +1 -0
  1000. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/GetServiceSettingCommand.js +1 -0
  1001. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/LabelParameterVersionCommand.js +1 -0
  1002. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListAssociationVersionsCommand.js +1 -0
  1003. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListAssociationsCommand.js +1 -0
  1004. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListCommandInvocationsCommand.js +1 -0
  1005. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListCommandsCommand.js +1 -0
  1006. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListComplianceItemsCommand.js +1 -0
  1007. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListComplianceSummariesCommand.js +1 -0
  1008. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListDocumentMetadataHistoryCommand.js +1 -0
  1009. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListDocumentVersionsCommand.js +1 -0
  1010. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListDocumentsCommand.js +1 -0
  1011. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListInventoryEntriesCommand.js +1 -0
  1012. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListOpsItemEventsCommand.js +1 -0
  1013. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListOpsItemRelatedItemsCommand.js +1 -0
  1014. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListOpsMetadataCommand.js +1 -0
  1015. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListResourceComplianceSummariesCommand.js +1 -0
  1016. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListResourceDataSyncCommand.js +1 -0
  1017. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ListTagsForResourceCommand.js +1 -0
  1018. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ModifyDocumentPermissionCommand.js +1 -0
  1019. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/PutComplianceItemsCommand.js +1 -0
  1020. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/PutInventoryCommand.js +1 -0
  1021. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/PutParameterCommand.js +1 -0
  1022. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/PutResourcePolicyCommand.js +1 -0
  1023. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RegisterDefaultPatchBaselineCommand.js +1 -0
  1024. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RegisterPatchBaselineForPatchGroupCommand.js +1 -0
  1025. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RegisterTargetWithMaintenanceWindowCommand.js +1 -0
  1026. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RegisterTaskWithMaintenanceWindowCommand.js +1 -0
  1027. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/RemoveTagsFromResourceCommand.js +1 -0
  1028. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ResetServiceSettingCommand.js +1 -0
  1029. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/ResumeSessionCommand.js +1 -0
  1030. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/SendAutomationSignalCommand.js +1 -0
  1031. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/SendCommandCommand.js +1 -0
  1032. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StartAssociationsOnceCommand.js +1 -0
  1033. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StartAutomationExecutionCommand.js +1 -0
  1034. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StartChangeRequestExecutionCommand.js +1 -0
  1035. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StartSessionCommand.js +1 -0
  1036. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/StopAutomationExecutionCommand.js +1 -0
  1037. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/TerminateSessionCommand.js +1 -0
  1038. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UnlabelParameterVersionCommand.js +1 -0
  1039. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateAssociationCommand.js +1 -0
  1040. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateAssociationStatusCommand.js +1 -0
  1041. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateDocumentCommand.js +1 -0
  1042. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateDocumentDefaultVersionCommand.js +1 -0
  1043. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateDocumentMetadataCommand.js +1 -0
  1044. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateMaintenanceWindowCommand.js +1 -0
  1045. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateMaintenanceWindowTargetCommand.js +1 -0
  1046. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateMaintenanceWindowTaskCommand.js +1 -0
  1047. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateManagedInstanceRoleCommand.js +1 -0
  1048. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateOpsItemCommand.js +1 -0
  1049. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateOpsMetadataCommand.js +1 -0
  1050. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdatePatchBaselineCommand.js +1 -0
  1051. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateResourceDataSyncCommand.js +1 -0
  1052. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/UpdateServiceSettingCommand.js +1 -0
  1053. package/node_modules/@aws-sdk/client-ssm/dist-cjs/commands/index.js +1 -0
  1054. package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/EndpointParameters.js +1 -0
  1055. package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +12 -0
  1056. package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/ruleset.js +7 -0
  1057. package/node_modules/@aws-sdk/client-ssm/dist-cjs/extensionConfiguration.js +1 -0
  1058. package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +16367 -0
  1059. package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/SSMServiceException.js +1 -0
  1060. package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/index.js +1 -0
  1061. package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/models_0.js +1 -0
  1062. package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/models_1.js +1 -0
  1063. package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/models_2.js +1 -0
  1064. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeActivationsPaginator.js +1 -0
  1065. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAssociationExecutionTargetsPaginator.js +1 -0
  1066. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAssociationExecutionsPaginator.js +1 -0
  1067. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAutomationExecutionsPaginator.js +1 -0
  1068. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAutomationStepExecutionsPaginator.js +1 -0
  1069. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeAvailablePatchesPaginator.js +1 -0
  1070. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeEffectiveInstanceAssociationsPaginator.js +1 -0
  1071. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.js +1 -0
  1072. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstanceAssociationsStatusPaginator.js +1 -0
  1073. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstanceInformationPaginator.js +1 -0
  1074. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.js +1 -0
  1075. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstancePatchStatesPaginator.js +1 -0
  1076. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInstancePatchesPaginator.js +1 -0
  1077. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeInventoryDeletionsPaginator.js +1 -0
  1078. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.js +1 -0
  1079. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.js +1 -0
  1080. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowExecutionsPaginator.js +1 -0
  1081. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowSchedulePaginator.js +1 -0
  1082. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowTargetsPaginator.js +1 -0
  1083. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowTasksPaginator.js +1 -0
  1084. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowsForTargetPaginator.js +1 -0
  1085. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeMaintenanceWindowsPaginator.js +1 -0
  1086. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeOpsItemsPaginator.js +1 -0
  1087. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeParametersPaginator.js +1 -0
  1088. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribePatchBaselinesPaginator.js +1 -0
  1089. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribePatchGroupsPaginator.js +1 -0
  1090. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribePatchPropertiesPaginator.js +1 -0
  1091. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/DescribeSessionsPaginator.js +1 -0
  1092. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetInventoryPaginator.js +1 -0
  1093. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetInventorySchemaPaginator.js +1 -0
  1094. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetOpsSummaryPaginator.js +1 -0
  1095. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetParameterHistoryPaginator.js +1 -0
  1096. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetParametersByPathPaginator.js +1 -0
  1097. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/GetResourcePoliciesPaginator.js +1 -0
  1098. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/Interfaces.js +1 -0
  1099. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListAssociationVersionsPaginator.js +1 -0
  1100. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListAssociationsPaginator.js +1 -0
  1101. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListCommandInvocationsPaginator.js +1 -0
  1102. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListCommandsPaginator.js +1 -0
  1103. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListComplianceItemsPaginator.js +1 -0
  1104. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListComplianceSummariesPaginator.js +1 -0
  1105. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListDocumentVersionsPaginator.js +1 -0
  1106. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListDocumentsPaginator.js +1 -0
  1107. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListOpsItemEventsPaginator.js +1 -0
  1108. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListOpsItemRelatedItemsPaginator.js +1 -0
  1109. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListOpsMetadataPaginator.js +1 -0
  1110. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListResourceComplianceSummariesPaginator.js +1 -0
  1111. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/ListResourceDataSyncPaginator.js +1 -0
  1112. package/node_modules/@aws-sdk/client-ssm/dist-cjs/pagination/index.js +1 -0
  1113. package/node_modules/@aws-sdk/client-ssm/dist-cjs/protocols/Aws_json1_1.js +1 -0
  1114. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.browser.js +39 -0
  1115. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +50 -0
  1116. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.native.js +15 -0
  1117. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +24 -0
  1118. package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeExtensions.js +1 -0
  1119. package/node_modules/@aws-sdk/client-ssm/dist-cjs/waiters/index.js +1 -0
  1120. package/node_modules/@aws-sdk/client-ssm/dist-cjs/waiters/waitForCommandExecuted.js +1 -0
  1121. package/node_modules/@aws-sdk/client-ssm/dist-es/SSM.js +285 -0
  1122. package/node_modules/@aws-sdk/client-ssm/dist-es/SSMClient.js +39 -0
  1123. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/AddTagsToResourceCommand.js +24 -0
  1124. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/AssociateOpsItemRelatedItemCommand.js +24 -0
  1125. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelCommandCommand.js +24 -0
  1126. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelMaintenanceWindowExecutionCommand.js +24 -0
  1127. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateActivationCommand.js +24 -0
  1128. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationBatchCommand.js +25 -0
  1129. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationCommand.js +25 -0
  1130. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateDocumentCommand.js +24 -0
  1131. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateMaintenanceWindowCommand.js +25 -0
  1132. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsItemCommand.js +24 -0
  1133. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsMetadataCommand.js +24 -0
  1134. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreatePatchBaselineCommand.js +25 -0
  1135. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateResourceDataSyncCommand.js +24 -0
  1136. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteActivationCommand.js +24 -0
  1137. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteAssociationCommand.js +24 -0
  1138. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteDocumentCommand.js +24 -0
  1139. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteInventoryCommand.js +24 -0
  1140. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteMaintenanceWindowCommand.js +24 -0
  1141. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsItemCommand.js +24 -0
  1142. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsMetadataCommand.js +24 -0
  1143. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParameterCommand.js +24 -0
  1144. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParametersCommand.js +24 -0
  1145. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeletePatchBaselineCommand.js +24 -0
  1146. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourceDataSyncCommand.js +24 -0
  1147. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourcePolicyCommand.js +24 -0
  1148. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterManagedInstanceCommand.js +24 -0
  1149. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterPatchBaselineForPatchGroupCommand.js +24 -0
  1150. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTargetFromMaintenanceWindowCommand.js +24 -0
  1151. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTaskFromMaintenanceWindowCommand.js +24 -0
  1152. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeActivationsCommand.js +24 -0
  1153. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationCommand.js +25 -0
  1154. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionTargetsCommand.js +24 -0
  1155. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionsCommand.js +24 -0
  1156. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationExecutionsCommand.js +24 -0
  1157. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationStepExecutionsCommand.js +24 -0
  1158. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAvailablePatchesCommand.js +24 -0
  1159. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentCommand.js +24 -0
  1160. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentPermissionCommand.js +24 -0
  1161. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectiveInstanceAssociationsCommand.js +24 -0
  1162. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectivePatchesForPatchBaselineCommand.js +24 -0
  1163. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceAssociationsStatusCommand.js +24 -0
  1164. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceInformationCommand.js +24 -0
  1165. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesCommand.js +25 -0
  1166. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesForPatchGroupCommand.js +25 -0
  1167. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchesCommand.js +24 -0
  1168. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInventoryDeletionsCommand.js +24 -0
  1169. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.js +25 -0
  1170. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTasksCommand.js +24 -0
  1171. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionsCommand.js +24 -0
  1172. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowScheduleCommand.js +24 -0
  1173. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTargetsCommand.js +25 -0
  1174. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTasksCommand.js +25 -0
  1175. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsCommand.js +25 -0
  1176. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsForTargetCommand.js +24 -0
  1177. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeOpsItemsCommand.js +24 -0
  1178. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeParametersCommand.js +24 -0
  1179. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchBaselinesCommand.js +24 -0
  1180. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupStateCommand.js +24 -0
  1181. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupsCommand.js +24 -0
  1182. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchPropertiesCommand.js +24 -0
  1183. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeSessionsCommand.js +24 -0
  1184. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DisassociateOpsItemRelatedItemCommand.js +24 -0
  1185. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetAutomationExecutionCommand.js +24 -0
  1186. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCalendarStateCommand.js +24 -0
  1187. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCommandInvocationCommand.js +24 -0
  1188. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetConnectionStatusCommand.js +24 -0
  1189. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDefaultPatchBaselineCommand.js +24 -0
  1190. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDeployablePatchSnapshotForInstanceCommand.js +25 -0
  1191. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDocumentCommand.js +24 -0
  1192. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventoryCommand.js +24 -0
  1193. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventorySchemaCommand.js +24 -0
  1194. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowCommand.js +25 -0
  1195. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionCommand.js +24 -0
  1196. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskCommand.js +25 -0
  1197. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.js +25 -0
  1198. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowTaskCommand.js +25 -0
  1199. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsItemCommand.js +24 -0
  1200. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsMetadataCommand.js +24 -0
  1201. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsSummaryCommand.js +24 -0
  1202. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterCommand.js +25 -0
  1203. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterHistoryCommand.js +25 -0
  1204. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersByPathCommand.js +25 -0
  1205. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersCommand.js +25 -0
  1206. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineCommand.js +25 -0
  1207. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineForPatchGroupCommand.js +24 -0
  1208. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetResourcePoliciesCommand.js +24 -0
  1209. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetServiceSettingCommand.js +24 -0
  1210. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/LabelParameterVersionCommand.js +24 -0
  1211. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationVersionsCommand.js +25 -0
  1212. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationsCommand.js +24 -0
  1213. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandInvocationsCommand.js +24 -0
  1214. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandsCommand.js +25 -0
  1215. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceItemsCommand.js +24 -0
  1216. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceSummariesCommand.js +24 -0
  1217. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentMetadataHistoryCommand.js +24 -0
  1218. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentVersionsCommand.js +24 -0
  1219. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentsCommand.js +24 -0
  1220. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListInventoryEntriesCommand.js +24 -0
  1221. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemEventsCommand.js +24 -0
  1222. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemRelatedItemsCommand.js +24 -0
  1223. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsMetadataCommand.js +24 -0
  1224. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceComplianceSummariesCommand.js +24 -0
  1225. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceDataSyncCommand.js +24 -0
  1226. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListTagsForResourceCommand.js +24 -0
  1227. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ModifyDocumentPermissionCommand.js +24 -0
  1228. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutComplianceItemsCommand.js +24 -0
  1229. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutInventoryCommand.js +24 -0
  1230. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutParameterCommand.js +25 -0
  1231. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutResourcePolicyCommand.js +24 -0
  1232. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterDefaultPatchBaselineCommand.js +24 -0
  1233. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterPatchBaselineForPatchGroupCommand.js +24 -0
  1234. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTargetWithMaintenanceWindowCommand.js +25 -0
  1235. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTaskWithMaintenanceWindowCommand.js +25 -0
  1236. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RemoveTagsFromResourceCommand.js +24 -0
  1237. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResetServiceSettingCommand.js +24 -0
  1238. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResumeSessionCommand.js +24 -0
  1239. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendAutomationSignalCommand.js +24 -0
  1240. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendCommandCommand.js +25 -0
  1241. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAssociationsOnceCommand.js +24 -0
  1242. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAutomationExecutionCommand.js +24 -0
  1243. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartChangeRequestExecutionCommand.js +24 -0
  1244. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartSessionCommand.js +24 -0
  1245. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StopAutomationExecutionCommand.js +24 -0
  1246. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/TerminateSessionCommand.js +24 -0
  1247. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UnlabelParameterVersionCommand.js +24 -0
  1248. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationCommand.js +25 -0
  1249. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationStatusCommand.js +25 -0
  1250. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentCommand.js +24 -0
  1251. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentDefaultVersionCommand.js +24 -0
  1252. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentMetadataCommand.js +24 -0
  1253. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowCommand.js +25 -0
  1254. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTargetCommand.js +25 -0
  1255. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTaskCommand.js +25 -0
  1256. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateManagedInstanceRoleCommand.js +24 -0
  1257. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsItemCommand.js +24 -0
  1258. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsMetadataCommand.js +24 -0
  1259. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdatePatchBaselineCommand.js +25 -0
  1260. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateResourceDataSyncCommand.js +24 -0
  1261. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateServiceSettingCommand.js +24 -0
  1262. package/node_modules/@aws-sdk/client-ssm/dist-es/commands/index.js +139 -0
  1263. package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/EndpointParameters.js +14 -0
  1264. package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/endpointResolver.js +8 -0
  1265. package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/ruleset.js +4 -0
  1266. package/node_modules/@aws-sdk/client-ssm/dist-es/extensionConfiguration.js +1 -0
  1267. package/node_modules/@aws-sdk/client-ssm/dist-es/index.js +8 -0
  1268. package/node_modules/@aws-sdk/client-ssm/dist-es/models/SSMServiceException.js +8 -0
  1269. package/node_modules/@aws-sdk/client-ssm/dist-es/models/index.js +3 -0
  1270. package/node_modules/@aws-sdk/client-ssm/dist-es/models/models_0.js +1304 -0
  1271. package/node_modules/@aws-sdk/client-ssm/dist-es/models/models_1.js +1050 -0
  1272. package/node_modules/@aws-sdk/client-ssm/dist-es/models/models_2.js +170 -0
  1273. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeActivationsPaginator.js +4 -0
  1274. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAssociationExecutionTargetsPaginator.js +4 -0
  1275. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAssociationExecutionsPaginator.js +4 -0
  1276. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAutomationExecutionsPaginator.js +4 -0
  1277. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAutomationStepExecutionsPaginator.js +4 -0
  1278. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeAvailablePatchesPaginator.js +4 -0
  1279. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeEffectiveInstanceAssociationsPaginator.js +4 -0
  1280. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.js +4 -0
  1281. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstanceAssociationsStatusPaginator.js +4 -0
  1282. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstanceInformationPaginator.js +4 -0
  1283. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.js +4 -0
  1284. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstancePatchStatesPaginator.js +4 -0
  1285. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInstancePatchesPaginator.js +4 -0
  1286. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeInventoryDeletionsPaginator.js +4 -0
  1287. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.js +4 -0
  1288. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.js +4 -0
  1289. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowExecutionsPaginator.js +4 -0
  1290. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowSchedulePaginator.js +4 -0
  1291. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowTargetsPaginator.js +4 -0
  1292. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowTasksPaginator.js +4 -0
  1293. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowsForTargetPaginator.js +4 -0
  1294. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeMaintenanceWindowsPaginator.js +4 -0
  1295. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeOpsItemsPaginator.js +4 -0
  1296. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeParametersPaginator.js +4 -0
  1297. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribePatchBaselinesPaginator.js +4 -0
  1298. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribePatchGroupsPaginator.js +4 -0
  1299. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribePatchPropertiesPaginator.js +4 -0
  1300. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/DescribeSessionsPaginator.js +4 -0
  1301. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetInventoryPaginator.js +4 -0
  1302. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetInventorySchemaPaginator.js +4 -0
  1303. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetOpsSummaryPaginator.js +4 -0
  1304. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetParameterHistoryPaginator.js +4 -0
  1305. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetParametersByPathPaginator.js +4 -0
  1306. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/GetResourcePoliciesPaginator.js +4 -0
  1307. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/Interfaces.js +1 -0
  1308. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListAssociationVersionsPaginator.js +4 -0
  1309. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListAssociationsPaginator.js +4 -0
  1310. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListCommandInvocationsPaginator.js +4 -0
  1311. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListCommandsPaginator.js +4 -0
  1312. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListComplianceItemsPaginator.js +4 -0
  1313. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListComplianceSummariesPaginator.js +4 -0
  1314. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListDocumentVersionsPaginator.js +4 -0
  1315. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListDocumentsPaginator.js +4 -0
  1316. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListOpsItemEventsPaginator.js +4 -0
  1317. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListOpsItemRelatedItemsPaginator.js +4 -0
  1318. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListOpsMetadataPaginator.js +4 -0
  1319. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListResourceComplianceSummariesPaginator.js +4 -0
  1320. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListResourceDataSyncPaginator.js +4 -0
  1321. package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/index.js +48 -0
  1322. package/node_modules/@aws-sdk/client-ssm/dist-es/protocols/Aws_json1_1.js +9406 -0
  1323. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.browser.js +34 -0
  1324. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.js +45 -0
  1325. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.native.js +11 -0
  1326. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.shared.js +20 -0
  1327. package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeExtensions.js +18 -0
  1328. package/node_modules/@aws-sdk/client-ssm/dist-es/waiters/index.js +1 -0
  1329. package/node_modules/@aws-sdk/client-ssm/dist-es/waiters/waitForCommandExecuted.js +97 -0
  1330. package/node_modules/@aws-sdk/client-ssm/dist-types/SSM.d.ts +1018 -0
  1331. package/node_modules/@aws-sdk/client-ssm/dist-types/SSMClient.d.ts +343 -0
  1332. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AddTagsToResourceCommand.d.ts +126 -0
  1333. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AssociateOpsItemRelatedItemCommand.d.ts +82 -0
  1334. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelCommandCommand.d.ts +89 -0
  1335. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelMaintenanceWindowExecutionCommand.d.ts +69 -0
  1336. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateActivationCommand.d.ts +91 -0
  1337. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationBatchCommand.d.ts +358 -0
  1338. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationCommand.d.ts +299 -0
  1339. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateDocumentCommand.d.ts +174 -0
  1340. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateMaintenanceWindowCommand.d.ts +95 -0
  1341. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsItemCommand.d.ts +115 -0
  1342. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsMetadataCommand.d.ts +87 -0
  1343. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreatePatchBaselineCommand.d.ts +132 -0
  1344. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateResourceDataSyncCommand.d.ts +115 -0
  1345. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteActivationCommand.d.ts +72 -0
  1346. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteAssociationCommand.d.ts +96 -0
  1347. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteDocumentCommand.d.ts +74 -0
  1348. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteInventoryCommand.d.ts +90 -0
  1349. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteMaintenanceWindowCommand.d.ts +61 -0
  1350. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsItemCommand.d.ts +90 -0
  1351. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsMetadataCommand.d.ts +65 -0
  1352. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParameterCommand.d.ts +63 -0
  1353. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParametersCommand.d.ts +69 -0
  1354. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeletePatchBaselineCommand.d.ts +65 -0
  1355. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourceDataSyncCommand.d.ts +68 -0
  1356. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourcePolicyCommand.d.ts +73 -0
  1357. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterManagedInstanceCommand.d.ts +81 -0
  1358. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +66 -0
  1359. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +74 -0
  1360. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +69 -0
  1361. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeActivationsCommand.d.ts +98 -0
  1362. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationCommand.d.ts +194 -0
  1363. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionTargetsCommand.d.ts +95 -0
  1364. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionsCommand.d.ts +102 -0
  1365. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationExecutionsCommand.d.ts +196 -0
  1366. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationStepExecutionsCommand.d.ts +170 -0
  1367. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAvailablePatchesCommand.d.ts +103 -0
  1368. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentCommand.d.ts +135 -0
  1369. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentPermissionCommand.d.ts +89 -0
  1370. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +94 -0
  1371. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +117 -0
  1372. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceAssociationsStatusCommand.d.ts +106 -0
  1373. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceInformationCommand.d.ts +146 -0
  1374. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesCommand.d.ts +94 -0
  1375. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +105 -0
  1376. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchesCommand.d.ts +109 -0
  1377. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInventoryDeletionsCommand.d.ts +91 -0
  1378. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +95 -0
  1379. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +103 -0
  1380. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +83 -0
  1381. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +93 -0
  1382. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +95 -0
  1383. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTasksCommand.d.ts +127 -0
  1384. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsCommand.d.ts +86 -0
  1385. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +78 -0
  1386. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeOpsItemsCommand.d.ts +102 -0
  1387. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeParametersCommand.d.ts +125 -0
  1388. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchBaselinesCommand.d.ts +79 -0
  1389. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupStateCommand.d.ts +75 -0
  1390. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupsCommand.d.ts +82 -0
  1391. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchPropertiesCommand.d.ts +133 -0
  1392. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeSessionsCommand.d.ts +94 -0
  1393. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DisassociateOpsItemRelatedItemCommand.d.ts +76 -0
  1394. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAutomationExecutionCommand.d.ts +259 -0
  1395. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCalendarStateCommand.d.ts +84 -0
  1396. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCommandInvocationCommand.d.ts +116 -0
  1397. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetConnectionStatusCommand.d.ts +63 -0
  1398. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDefaultPatchBaselineCommand.d.ts +65 -0
  1399. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +134 -0
  1400. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDocumentCommand.d.ts +97 -0
  1401. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventoryCommand.d.ts +147 -0
  1402. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventorySchemaCommand.d.ts +85 -0
  1403. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowCommand.d.ts +81 -0
  1404. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionCommand.d.ts +74 -0
  1405. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +103 -0
  1406. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +80 -0
  1407. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowTaskCommand.d.ts +158 -0
  1408. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsItemCommand.d.ts +112 -0
  1409. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsMetadataCommand.d.ts +75 -0
  1410. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsSummaryCommand.d.ts +144 -0
  1411. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterCommand.d.ts +85 -0
  1412. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterHistoryCommand.d.ts +104 -0
  1413. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersByPathCommand.d.ts +109 -0
  1414. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersCommand.d.ts +86 -0
  1415. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineCommand.d.ts +126 -0
  1416. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineForPatchGroupCommand.d.ts +64 -0
  1417. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetResourcePoliciesCommand.d.ts +74 -0
  1418. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetServiceSettingCommand.d.ts +85 -0
  1419. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/LabelParameterVersionCommand.d.ts +117 -0
  1420. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationVersionsCommand.d.ts +137 -0
  1421. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationsCommand.d.ts +108 -0
  1422. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandInvocationsCommand.d.ts +148 -0
  1423. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandsCommand.d.ts +163 -0
  1424. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceItemsCommand.d.ts +111 -0
  1425. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceSummariesCommand.d.ts +106 -0
  1426. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentMetadataHistoryCommand.d.ts +93 -0
  1427. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentVersionsCommand.d.ts +83 -0
  1428. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentsCommand.d.ts +116 -0
  1429. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListInventoryEntriesCommand.d.ts +111 -0
  1430. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemEventsCommand.d.ts +95 -0
  1431. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemRelatedItemsCommand.d.ts +94 -0
  1432. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsMetadataCommand.d.ts +83 -0
  1433. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceComplianceSummariesCommand.d.ts +115 -0
  1434. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceDataSyncCommand.d.ts +116 -0
  1435. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListTagsForResourceCommand.d.ts +75 -0
  1436. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ModifyDocumentPermissionCommand.d.ts +88 -0
  1437. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutComplianceItemsCommand.d.ts +154 -0
  1438. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutInventoryCommand.d.ts +134 -0
  1439. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutParameterCommand.d.ts +141 -0
  1440. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutResourcePolicyCommand.d.ts +83 -0
  1441. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterDefaultPatchBaselineCommand.d.ts +74 -0
  1442. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +82 -0
  1443. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +90 -0
  1444. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +164 -0
  1445. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +73 -0
  1446. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResetServiceSettingCommand.d.ts +89 -0
  1447. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResumeSessionCommand.d.ts +74 -0
  1448. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendAutomationSignalCommand.d.ts +77 -0
  1449. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendCommandCommand.d.ts +220 -0
  1450. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAssociationsOnceCommand.d.ts +65 -0
  1451. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAutomationExecutionCommand.d.ts +145 -0
  1452. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartChangeRequestExecutionCommand.d.ts +154 -0
  1453. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartSessionCommand.d.ts +89 -0
  1454. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StopAutomationExecutionCommand.d.ts +67 -0
  1455. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/TerminateSessionCommand.d.ts +63 -0
  1456. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UnlabelParameterVersionCommand.d.ts +80 -0
  1457. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationCommand.d.ts +289 -0
  1458. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationStatusCommand.d.ts +202 -0
  1459. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentCommand.d.ts +173 -0
  1460. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentDefaultVersionCommand.d.ts +80 -0
  1461. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentMetadataCommand.d.ts +80 -0
  1462. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowCommand.d.ts +98 -0
  1463. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTargetCommand.d.ts +117 -0
  1464. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTaskCommand.d.ts +287 -0
  1465. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateManagedInstanceRoleCommand.d.ts +82 -0
  1466. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsItemCommand.d.ts +115 -0
  1467. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsMetadataCommand.d.ts +83 -0
  1468. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdatePatchBaselineCommand.d.ts +176 -0
  1469. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateResourceDataSyncCommand.d.ts +95 -0
  1470. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateServiceSettingCommand.d.ts +80 -0
  1471. package/node_modules/@aws-sdk/client-ssm/dist-types/commands/index.d.ts +139 -0
  1472. package/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  1473. package/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/endpointResolver.d.ts +5 -0
  1474. package/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/ruleset.d.ts +2 -0
  1475. package/node_modules/@aws-sdk/client-ssm/dist-types/extensionConfiguration.d.ts +8 -0
  1476. package/node_modules/@aws-sdk/client-ssm/dist-types/index.d.ts +51 -0
  1477. package/node_modules/@aws-sdk/client-ssm/dist-types/models/SSMServiceException.d.ts +13 -0
  1478. package/node_modules/@aws-sdk/client-ssm/dist-types/models/index.d.ts +3 -0
  1479. package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_0.d.ts +7976 -0
  1480. package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_1.d.ts +9465 -0
  1481. package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_2.d.ts +1739 -0
  1482. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeActivationsPaginator.d.ts +7 -0
  1483. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAssociationExecutionTargetsPaginator.d.ts +7 -0
  1484. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAssociationExecutionsPaginator.d.ts +7 -0
  1485. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAutomationExecutionsPaginator.d.ts +7 -0
  1486. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAutomationStepExecutionsPaginator.d.ts +7 -0
  1487. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeAvailablePatchesPaginator.d.ts +7 -0
  1488. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeEffectiveInstanceAssociationsPaginator.d.ts +7 -0
  1489. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.d.ts +7 -0
  1490. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstanceAssociationsStatusPaginator.d.ts +7 -0
  1491. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstanceInformationPaginator.d.ts +7 -0
  1492. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.d.ts +7 -0
  1493. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstancePatchStatesPaginator.d.ts +7 -0
  1494. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInstancePatchesPaginator.d.ts +7 -0
  1495. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeInventoryDeletionsPaginator.d.ts +7 -0
  1496. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.d.ts +7 -0
  1497. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.d.ts +7 -0
  1498. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowExecutionsPaginator.d.ts +7 -0
  1499. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowSchedulePaginator.d.ts +7 -0
  1500. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowTargetsPaginator.d.ts +7 -0
  1501. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowTasksPaginator.d.ts +7 -0
  1502. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowsForTargetPaginator.d.ts +7 -0
  1503. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeMaintenanceWindowsPaginator.d.ts +7 -0
  1504. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeOpsItemsPaginator.d.ts +7 -0
  1505. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeParametersPaginator.d.ts +7 -0
  1506. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribePatchBaselinesPaginator.d.ts +7 -0
  1507. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribePatchGroupsPaginator.d.ts +7 -0
  1508. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribePatchPropertiesPaginator.d.ts +7 -0
  1509. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/DescribeSessionsPaginator.d.ts +7 -0
  1510. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetInventoryPaginator.d.ts +7 -0
  1511. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetInventorySchemaPaginator.d.ts +7 -0
  1512. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetOpsSummaryPaginator.d.ts +7 -0
  1513. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetParameterHistoryPaginator.d.ts +7 -0
  1514. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetParametersByPathPaginator.d.ts +7 -0
  1515. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/GetResourcePoliciesPaginator.d.ts +7 -0
  1516. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/Interfaces.d.ts +8 -0
  1517. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListAssociationVersionsPaginator.d.ts +7 -0
  1518. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListAssociationsPaginator.d.ts +7 -0
  1519. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListCommandInvocationsPaginator.d.ts +7 -0
  1520. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListCommandsPaginator.d.ts +7 -0
  1521. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListComplianceItemsPaginator.d.ts +7 -0
  1522. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListComplianceSummariesPaginator.d.ts +7 -0
  1523. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListDocumentVersionsPaginator.d.ts +7 -0
  1524. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListDocumentsPaginator.d.ts +7 -0
  1525. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListOpsItemEventsPaginator.d.ts +7 -0
  1526. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListOpsItemRelatedItemsPaginator.d.ts +7 -0
  1527. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListOpsMetadataPaginator.d.ts +7 -0
  1528. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListResourceComplianceSummariesPaginator.d.ts +7 -0
  1529. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListResourceDataSyncPaginator.d.ts +7 -0
  1530. package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/index.d.ts +48 -0
  1531. package/node_modules/@aws-sdk/client-ssm/dist-types/protocols/Aws_json1_1.d.ts +1253 -0
  1532. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.browser.d.ts +46 -0
  1533. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.d.ts +46 -0
  1534. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.native.d.ts +45 -0
  1535. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.shared.d.ts +19 -0
  1536. package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeExtensions.d.ts +17 -0
  1537. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSM.d.ts +2482 -0
  1538. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSMClient.d.ts +949 -0
  1539. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AddTagsToResourceCommand.d.ts +30 -0
  1540. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AssociateOpsItemRelatedItemCommand.d.ts +30 -0
  1541. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelCommandCommand.d.ts +26 -0
  1542. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelMaintenanceWindowExecutionCommand.d.ts +30 -0
  1543. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateActivationCommand.d.ts +29 -0
  1544. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationBatchCommand.d.ts +30 -0
  1545. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationCommand.d.ts +30 -0
  1546. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateDocumentCommand.d.ts +29 -0
  1547. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateMaintenanceWindowCommand.d.ts +30 -0
  1548. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsItemCommand.d.ts +29 -0
  1549. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsMetadataCommand.d.ts +30 -0
  1550. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreatePatchBaselineCommand.d.ts +30 -0
  1551. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateResourceDataSyncCommand.d.ts +30 -0
  1552. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteActivationCommand.d.ts +29 -0
  1553. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +30 -0
  1554. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteDocumentCommand.d.ts +29 -0
  1555. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteInventoryCommand.d.ts +29 -0
  1556. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteMaintenanceWindowCommand.d.ts +30 -0
  1557. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsItemCommand.d.ts +29 -0
  1558. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsMetadataCommand.d.ts +30 -0
  1559. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParameterCommand.d.ts +29 -0
  1560. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParametersCommand.d.ts +29 -0
  1561. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeletePatchBaselineCommand.d.ts +30 -0
  1562. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourceDataSyncCommand.d.ts +30 -0
  1563. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +30 -0
  1564. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterManagedInstanceCommand.d.ts +30 -0
  1565. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +30 -0
  1566. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +30 -0
  1567. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +30 -0
  1568. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeActivationsCommand.d.ts +30 -0
  1569. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationCommand.d.ts +30 -0
  1570. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionTargetsCommand.d.ts +30 -0
  1571. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionsCommand.d.ts +30 -0
  1572. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationExecutionsCommand.d.ts +30 -0
  1573. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationStepExecutionsCommand.d.ts +30 -0
  1574. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAvailablePatchesCommand.d.ts +30 -0
  1575. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentCommand.d.ts +29 -0
  1576. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentPermissionCommand.d.ts +30 -0
  1577. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +30 -0
  1578. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +30 -0
  1579. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceAssociationsStatusCommand.d.ts +30 -0
  1580. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceInformationCommand.d.ts +30 -0
  1581. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesCommand.d.ts +30 -0
  1582. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +30 -0
  1583. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchesCommand.d.ts +30 -0
  1584. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInventoryDeletionsCommand.d.ts +30 -0
  1585. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +30 -0
  1586. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +30 -0
  1587. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +30 -0
  1588. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +30 -0
  1589. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +30 -0
  1590. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTasksCommand.d.ts +28 -0
  1591. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsCommand.d.ts +30 -0
  1592. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +30 -0
  1593. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeOpsItemsCommand.d.ts +29 -0
  1594. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +30 -0
  1595. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchBaselinesCommand.d.ts +30 -0
  1596. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupStateCommand.d.ts +30 -0
  1597. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupsCommand.d.ts +30 -0
  1598. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchPropertiesCommand.d.ts +30 -0
  1599. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeSessionsCommand.d.ts +29 -0
  1600. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DisassociateOpsItemRelatedItemCommand.d.ts +30 -0
  1601. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetAutomationExecutionCommand.d.ts +30 -0
  1602. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCalendarStateCommand.d.ts +29 -0
  1603. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCommandInvocationCommand.d.ts +30 -0
  1604. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetConnectionStatusCommand.d.ts +30 -0
  1605. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDefaultPatchBaselineCommand.d.ts +30 -0
  1606. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +30 -0
  1607. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDocumentCommand.d.ts +26 -0
  1608. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventoryCommand.d.ts +27 -0
  1609. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventorySchemaCommand.d.ts +30 -0
  1610. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowCommand.d.ts +30 -0
  1611. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionCommand.d.ts +30 -0
  1612. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +30 -0
  1613. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +30 -0
  1614. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowTaskCommand.d.ts +30 -0
  1615. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsItemCommand.d.ts +26 -0
  1616. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsMetadataCommand.d.ts +29 -0
  1617. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsSummaryCommand.d.ts +27 -0
  1618. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterCommand.d.ts +26 -0
  1619. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterHistoryCommand.d.ts +30 -0
  1620. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersByPathCommand.d.ts +30 -0
  1621. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersCommand.d.ts +26 -0
  1622. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineCommand.d.ts +29 -0
  1623. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineForPatchGroupCommand.d.ts +30 -0
  1624. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +30 -0
  1625. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetServiceSettingCommand.d.ts +30 -0
  1626. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/LabelParameterVersionCommand.d.ts +30 -0
  1627. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationVersionsCommand.d.ts +30 -0
  1628. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +29 -0
  1629. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandInvocationsCommand.d.ts +30 -0
  1630. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandsCommand.d.ts +26 -0
  1631. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceItemsCommand.d.ts +30 -0
  1632. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceSummariesCommand.d.ts +30 -0
  1633. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentMetadataHistoryCommand.d.ts +30 -0
  1634. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentVersionsCommand.d.ts +30 -0
  1635. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentsCommand.d.ts +26 -0
  1636. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListInventoryEntriesCommand.d.ts +30 -0
  1637. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemEventsCommand.d.ts +30 -0
  1638. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemRelatedItemsCommand.d.ts +30 -0
  1639. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsMetadataCommand.d.ts +29 -0
  1640. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceComplianceSummariesCommand.d.ts +30 -0
  1641. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceDataSyncCommand.d.ts +30 -0
  1642. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +30 -0
  1643. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ModifyDocumentPermissionCommand.d.ts +30 -0
  1644. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutComplianceItemsCommand.d.ts +30 -0
  1645. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutInventoryCommand.d.ts +26 -0
  1646. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutParameterCommand.d.ts +26 -0
  1647. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +30 -0
  1648. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterDefaultPatchBaselineCommand.d.ts +30 -0
  1649. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +30 -0
  1650. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +30 -0
  1651. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +30 -0
  1652. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RemoveTagsFromResourceCommand.d.ts +30 -0
  1653. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResetServiceSettingCommand.d.ts +30 -0
  1654. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResumeSessionCommand.d.ts +29 -0
  1655. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendAutomationSignalCommand.d.ts +30 -0
  1656. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendCommandCommand.d.ts +26 -0
  1657. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAssociationsOnceCommand.d.ts +30 -0
  1658. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAutomationExecutionCommand.d.ts +30 -0
  1659. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartChangeRequestExecutionCommand.d.ts +30 -0
  1660. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartSessionCommand.d.ts +26 -0
  1661. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StopAutomationExecutionCommand.d.ts +30 -0
  1662. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/TerminateSessionCommand.d.ts +27 -0
  1663. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UnlabelParameterVersionCommand.d.ts +30 -0
  1664. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationCommand.d.ts +30 -0
  1665. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationStatusCommand.d.ts +30 -0
  1666. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentCommand.d.ts +29 -0
  1667. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentDefaultVersionCommand.d.ts +30 -0
  1668. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentMetadataCommand.d.ts +30 -0
  1669. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowCommand.d.ts +30 -0
  1670. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTargetCommand.d.ts +30 -0
  1671. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTaskCommand.d.ts +30 -0
  1672. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateManagedInstanceRoleCommand.d.ts +30 -0
  1673. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsItemCommand.d.ts +29 -0
  1674. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsMetadataCommand.d.ts +30 -0
  1675. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdatePatchBaselineCommand.d.ts +30 -0
  1676. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateResourceDataSyncCommand.d.ts +30 -0
  1677. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateServiceSettingCommand.d.ts +30 -0
  1678. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/index.d.ts +139 -0
  1679. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  1680. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  1681. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  1682. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
  1683. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/index.d.ts +11 -0
  1684. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/SSMServiceException.d.ts +8 -0
  1685. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/index.d.ts +3 -0
  1686. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_0.d.ts +2121 -0
  1687. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_1.d.ts +2279 -0
  1688. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_2.d.ts +415 -0
  1689. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeActivationsPaginator.d.ts +11 -0
  1690. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAssociationExecutionTargetsPaginator.d.ts +11 -0
  1691. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAssociationExecutionsPaginator.d.ts +11 -0
  1692. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAutomationExecutionsPaginator.d.ts +11 -0
  1693. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAutomationStepExecutionsPaginator.d.ts +11 -0
  1694. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeAvailablePatchesPaginator.d.ts +11 -0
  1695. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeEffectiveInstanceAssociationsPaginator.d.ts +11 -0
  1696. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.d.ts +11 -0
  1697. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstanceAssociationsStatusPaginator.d.ts +11 -0
  1698. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstanceInformationPaginator.d.ts +11 -0
  1699. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.d.ts +11 -0
  1700. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstancePatchStatesPaginator.d.ts +11 -0
  1701. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInstancePatchesPaginator.d.ts +11 -0
  1702. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeInventoryDeletionsPaginator.d.ts +11 -0
  1703. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.d.ts +11 -0
  1704. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.d.ts +11 -0
  1705. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowExecutionsPaginator.d.ts +11 -0
  1706. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowSchedulePaginator.d.ts +11 -0
  1707. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowTargetsPaginator.d.ts +11 -0
  1708. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowTasksPaginator.d.ts +11 -0
  1709. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowsForTargetPaginator.d.ts +11 -0
  1710. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeMaintenanceWindowsPaginator.d.ts +11 -0
  1711. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeOpsItemsPaginator.d.ts +11 -0
  1712. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeParametersPaginator.d.ts +11 -0
  1713. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribePatchBaselinesPaginator.d.ts +11 -0
  1714. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribePatchGroupsPaginator.d.ts +11 -0
  1715. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribePatchPropertiesPaginator.d.ts +11 -0
  1716. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/DescribeSessionsPaginator.d.ts +11 -0
  1717. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetInventoryPaginator.d.ts +11 -0
  1718. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetInventorySchemaPaginator.d.ts +11 -0
  1719. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetOpsSummaryPaginator.d.ts +11 -0
  1720. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetParameterHistoryPaginator.d.ts +11 -0
  1721. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetParametersByPathPaginator.d.ts +11 -0
  1722. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/GetResourcePoliciesPaginator.d.ts +11 -0
  1723. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
  1724. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListAssociationVersionsPaginator.d.ts +11 -0
  1725. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListAssociationsPaginator.d.ts +11 -0
  1726. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListCommandInvocationsPaginator.d.ts +11 -0
  1727. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListCommandsPaginator.d.ts +11 -0
  1728. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListComplianceItemsPaginator.d.ts +11 -0
  1729. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListComplianceSummariesPaginator.d.ts +11 -0
  1730. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListDocumentVersionsPaginator.d.ts +11 -0
  1731. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListDocumentsPaginator.d.ts +11 -0
  1732. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListOpsItemEventsPaginator.d.ts +11 -0
  1733. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListOpsItemRelatedItemsPaginator.d.ts +11 -0
  1734. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListOpsMetadataPaginator.d.ts +11 -0
  1735. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListResourceComplianceSummariesPaginator.d.ts +11 -0
  1736. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListResourceDataSyncPaginator.d.ts +11 -0
  1737. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/index.d.ts +48 -0
  1738. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +1673 -0
  1739. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
  1740. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
  1741. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
  1742. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
  1743. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  1744. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/waiters/index.d.ts +1 -0
  1745. package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/waiters/waitForCommandExecuted.d.ts +11 -0
  1746. package/node_modules/@aws-sdk/client-ssm/dist-types/waiters/index.d.ts +1 -0
  1747. package/node_modules/@aws-sdk/client-ssm/dist-types/waiters/waitForCommandExecuted.d.ts +14 -0
  1748. package/node_modules/@aws-sdk/client-ssm/package.json +104 -0
  1749. package/node_modules/@aws-sdk/client-sso/LICENSE +201 -0
  1750. package/node_modules/@aws-sdk/client-sso/README.md +252 -0
  1751. package/node_modules/@aws-sdk/client-sso/dist-cjs/SSO.js +1 -0
  1752. package/node_modules/@aws-sdk/client-sso/dist-cjs/SSOClient.js +1 -0
  1753. package/node_modules/@aws-sdk/client-sso/dist-cjs/commands/GetRoleCredentialsCommand.js +1 -0
  1754. package/node_modules/@aws-sdk/client-sso/dist-cjs/commands/ListAccountRolesCommand.js +1 -0
  1755. package/node_modules/@aws-sdk/client-sso/dist-cjs/commands/ListAccountsCommand.js +1 -0
  1756. package/node_modules/@aws-sdk/client-sso/dist-cjs/commands/LogoutCommand.js +1 -0
  1757. package/node_modules/@aws-sdk/client-sso/dist-cjs/commands/index.js +1 -0
  1758. package/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/EndpointParameters.js +1 -0
  1759. package/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/endpointResolver.js +12 -0
  1760. package/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js +7 -0
  1761. package/node_modules/@aws-sdk/client-sso/dist-cjs/extensionConfiguration.js +1 -0
  1762. package/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +692 -0
  1763. package/node_modules/@aws-sdk/client-sso/dist-cjs/models/SSOServiceException.js +1 -0
  1764. package/node_modules/@aws-sdk/client-sso/dist-cjs/models/index.js +1 -0
  1765. package/node_modules/@aws-sdk/client-sso/dist-cjs/models/models_0.js +1 -0
  1766. package/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/Interfaces.js +1 -0
  1767. package/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/ListAccountRolesPaginator.js +1 -0
  1768. package/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/ListAccountsPaginator.js +1 -0
  1769. package/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/index.js +1 -0
  1770. package/node_modules/@aws-sdk/client-sso/dist-cjs/protocols/Aws_restJson1.js +1 -0
  1771. package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +38 -0
  1772. package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +47 -0
  1773. package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.native.js +15 -0
  1774. package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js +24 -0
  1775. package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeExtensions.js +1 -0
  1776. package/node_modules/@aws-sdk/client-sso/dist-es/SSO.js +15 -0
  1777. package/node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js +36 -0
  1778. package/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +25 -0
  1779. package/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +25 -0
  1780. package/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +25 -0
  1781. package/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +25 -0
  1782. package/node_modules/@aws-sdk/client-sso/dist-es/commands/index.js +4 -0
  1783. package/node_modules/@aws-sdk/client-sso/dist-es/endpoint/EndpointParameters.js +14 -0
  1784. package/node_modules/@aws-sdk/client-sso/dist-es/endpoint/endpointResolver.js +8 -0
  1785. package/node_modules/@aws-sdk/client-sso/dist-es/endpoint/ruleset.js +4 -0
  1786. package/node_modules/@aws-sdk/client-sso/dist-es/extensionConfiguration.js +1 -0
  1787. package/node_modules/@aws-sdk/client-sso/dist-es/index.js +7 -0
  1788. package/node_modules/@aws-sdk/client-sso/dist-es/models/SSOServiceException.js +8 -0
  1789. package/node_modules/@aws-sdk/client-sso/dist-es/models/index.js +1 -0
  1790. package/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +75 -0
  1791. package/node_modules/@aws-sdk/client-sso/dist-es/pagination/Interfaces.js +1 -0
  1792. package/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountRolesPaginator.js +4 -0
  1793. package/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountsPaginator.js +4 -0
  1794. package/node_modules/@aws-sdk/client-sso/dist-es/pagination/index.js +3 -0
  1795. package/node_modules/@aws-sdk/client-sso/dist-es/protocols/Aws_restJson1.js +335 -0
  1796. package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +33 -0
  1797. package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +42 -0
  1798. package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.native.js +11 -0
  1799. package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js +20 -0
  1800. package/node_modules/@aws-sdk/client-sso/dist-es/runtimeExtensions.js +18 -0
  1801. package/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +53 -0
  1802. package/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +181 -0
  1803. package/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +81 -0
  1804. package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +82 -0
  1805. package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +84 -0
  1806. package/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +81 -0
  1807. package/node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts +4 -0
  1808. package/node_modules/@aws-sdk/client-sso/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  1809. package/node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointResolver.d.ts +5 -0
  1810. package/node_modules/@aws-sdk/client-sso/dist-types/endpoint/ruleset.d.ts +2 -0
  1811. package/node_modules/@aws-sdk/client-sso/dist-types/extensionConfiguration.d.ts +8 -0
  1812. package/node_modules/@aws-sdk/client-sso/dist-types/index.d.ts +30 -0
  1813. package/node_modules/@aws-sdk/client-sso/dist-types/models/SSOServiceException.d.ts +13 -0
  1814. package/node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts +1 -0
  1815. package/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +266 -0
  1816. package/node_modules/@aws-sdk/client-sso/dist-types/pagination/Interfaces.d.ts +8 -0
  1817. package/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountRolesPaginator.d.ts +7 -0
  1818. package/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountsPaginator.d.ts +7 -0
  1819. package/node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts +3 -0
  1820. package/node_modules/@aws-sdk/client-sso/dist-types/protocols/Aws_restJson1.d.ts +38 -0
  1821. package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +39 -0
  1822. package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +39 -0
  1823. package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +38 -0
  1824. package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +19 -0
  1825. package/node_modules/@aws-sdk/client-sso/dist-types/runtimeExtensions.d.ts +17 -0
  1826. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +73 -0
  1827. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +131 -0
  1828. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +30 -0
  1829. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +29 -0
  1830. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +26 -0
  1831. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +22 -0
  1832. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts +4 -0
  1833. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  1834. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  1835. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  1836. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
  1837. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +10 -0
  1838. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/SSOServiceException.d.ts +8 -0
  1839. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/index.d.ts +1 -0
  1840. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +93 -0
  1841. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
  1842. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +11 -0
  1843. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +11 -0
  1844. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts +3 -0
  1845. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -0
  1846. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +73 -0
  1847. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +73 -0
  1848. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +64 -0
  1849. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
  1850. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  1851. package/node_modules/@aws-sdk/client-sso/package.json +98 -0
  1852. package/node_modules/@aws-sdk/client-sts/LICENSE +201 -0
  1853. package/node_modules/@aws-sdk/client-sts/README.md +273 -0
  1854. package/node_modules/@aws-sdk/client-sts/dist-cjs/STS.js +1 -0
  1855. package/node_modules/@aws-sdk/client-sts/dist-cjs/STSClient.js +56 -0
  1856. package/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  1857. package/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthSchemeProvider.js +67 -0
  1858. package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleCommand.js +29 -0
  1859. package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithSAMLCommand.js +1 -0
  1860. package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithWebIdentityCommand.js +29 -0
  1861. package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/DecodeAuthorizationMessageCommand.js +1 -0
  1862. package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetAccessKeyInfoCommand.js +1 -0
  1863. package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetCallerIdentityCommand.js +1 -0
  1864. package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetFederationTokenCommand.js +1 -0
  1865. package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetSessionTokenCommand.js +1 -0
  1866. package/node_modules/@aws-sdk/client-sts/dist-cjs/commands/index.js +1 -0
  1867. package/node_modules/@aws-sdk/client-sts/dist-cjs/defaultRoleAssumers.js +1 -0
  1868. package/node_modules/@aws-sdk/client-sts/dist-cjs/defaultStsRoleAssumers.js +78 -0
  1869. package/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/EndpointParameters.js +20 -0
  1870. package/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/endpointResolver.js +12 -0
  1871. package/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/ruleset.js +7 -0
  1872. package/node_modules/@aws-sdk/client-sts/dist-cjs/extensionConfiguration.js +1 -0
  1873. package/node_modules/@aws-sdk/client-sts/dist-cjs/index.js +277 -0
  1874. package/node_modules/@aws-sdk/client-sts/dist-cjs/models/STSServiceException.js +12 -0
  1875. package/node_modules/@aws-sdk/client-sts/dist-cjs/models/index.js +1 -0
  1876. package/node_modules/@aws-sdk/client-sts/dist-cjs/models/models_0.js +149 -0
  1877. package/node_modules/@aws-sdk/client-sts/dist-cjs/protocols/Aws_query.js +1084 -0
  1878. package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.browser.js +39 -0
  1879. package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js +64 -0
  1880. package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.native.js +15 -0
  1881. package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.shared.js +40 -0
  1882. package/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeExtensions.js +25 -0
  1883. package/node_modules/@aws-sdk/client-sts/dist-es/STS.js +23 -0
  1884. package/node_modules/@aws-sdk/client-sts/dist-es/STSClient.js +52 -0
  1885. package/node_modules/@aws-sdk/client-sts/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  1886. package/node_modules/@aws-sdk/client-sts/dist-es/auth/httpAuthSchemeProvider.js +60 -0
  1887. package/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleCommand.js +25 -0
  1888. package/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithSAMLCommand.js +25 -0
  1889. package/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithWebIdentityCommand.js +25 -0
  1890. package/node_modules/@aws-sdk/client-sts/dist-es/commands/DecodeAuthorizationMessageCommand.js +24 -0
  1891. package/node_modules/@aws-sdk/client-sts/dist-es/commands/GetAccessKeyInfoCommand.js +24 -0
  1892. package/node_modules/@aws-sdk/client-sts/dist-es/commands/GetCallerIdentityCommand.js +24 -0
  1893. package/node_modules/@aws-sdk/client-sts/dist-es/commands/GetFederationTokenCommand.js +25 -0
  1894. package/node_modules/@aws-sdk/client-sts/dist-es/commands/GetSessionTokenCommand.js +25 -0
  1895. package/node_modules/@aws-sdk/client-sts/dist-es/commands/index.js +8 -0
  1896. package/node_modules/@aws-sdk/client-sts/dist-es/defaultRoleAssumers.js +22 -0
  1897. package/node_modules/@aws-sdk/client-sts/dist-es/defaultStsRoleAssumers.js +72 -0
  1898. package/node_modules/@aws-sdk/client-sts/dist-es/endpoint/EndpointParameters.js +16 -0
  1899. package/node_modules/@aws-sdk/client-sts/dist-es/endpoint/endpointResolver.js +8 -0
  1900. package/node_modules/@aws-sdk/client-sts/dist-es/endpoint/ruleset.js +4 -0
  1901. package/node_modules/@aws-sdk/client-sts/dist-es/extensionConfiguration.js +1 -0
  1902. package/node_modules/@aws-sdk/client-sts/dist-es/index.js +7 -0
  1903. package/node_modules/@aws-sdk/client-sts/dist-es/models/STSServiceException.js +8 -0
  1904. package/node_modules/@aws-sdk/client-sts/dist-es/models/index.js +1 -0
  1905. package/node_modules/@aws-sdk/client-sts/dist-es/models/models_0.js +130 -0
  1906. package/node_modules/@aws-sdk/client-sts/dist-es/protocols/Aws_query.js +1065 -0
  1907. package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.browser.js +34 -0
  1908. package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.js +59 -0
  1909. package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.native.js +11 -0
  1910. package/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.shared.js +36 -0
  1911. package/node_modules/@aws-sdk/client-sts/dist-es/runtimeExtensions.js +21 -0
  1912. package/node_modules/@aws-sdk/client-sts/dist-types/STS.d.ts +69 -0
  1913. package/node_modules/@aws-sdk/client-sts/dist-types/STSClient.d.ts +182 -0
  1914. package/node_modules/@aws-sdk/client-sts/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  1915. package/node_modules/@aws-sdk/client-sts/dist-types/auth/httpAuthSchemeProvider.d.ts +71 -0
  1916. package/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleCommand.d.ts +256 -0
  1917. package/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithSAMLCommand.d.ts +281 -0
  1918. package/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithWebIdentityCommand.d.ts +290 -0
  1919. package/node_modules/@aws-sdk/client-sts/dist-types/commands/DecodeAuthorizationMessageCommand.d.ts +114 -0
  1920. package/node_modules/@aws-sdk/client-sts/dist-types/commands/GetAccessKeyInfoCommand.d.ts +74 -0
  1921. package/node_modules/@aws-sdk/client-sts/dist-types/commands/GetCallerIdentityCommand.d.ts +115 -0
  1922. package/node_modules/@aws-sdk/client-sts/dist-types/commands/GetFederationTokenCommand.d.ts +229 -0
  1923. package/node_modules/@aws-sdk/client-sts/dist-types/commands/GetSessionTokenCommand.d.ts +153 -0
  1924. package/node_modules/@aws-sdk/client-sts/dist-types/commands/index.d.ts +8 -0
  1925. package/node_modules/@aws-sdk/client-sts/dist-types/defaultRoleAssumers.d.ts +20 -0
  1926. package/node_modules/@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers.d.ts +35 -0
  1927. package/node_modules/@aws-sdk/client-sts/dist-types/endpoint/EndpointParameters.d.ts +46 -0
  1928. package/node_modules/@aws-sdk/client-sts/dist-types/endpoint/endpointResolver.d.ts +5 -0
  1929. package/node_modules/@aws-sdk/client-sts/dist-types/endpoint/ruleset.d.ts +2 -0
  1930. package/node_modules/@aws-sdk/client-sts/dist-types/extensionConfiguration.d.ts +9 -0
  1931. package/node_modules/@aws-sdk/client-sts/dist-types/index.d.ts +18 -0
  1932. package/node_modules/@aws-sdk/client-sts/dist-types/models/STSServiceException.d.ts +13 -0
  1933. package/node_modules/@aws-sdk/client-sts/dist-types/models/index.d.ts +1 -0
  1934. package/node_modules/@aws-sdk/client-sts/dist-types/models/models_0.d.ts +1213 -0
  1935. package/node_modules/@aws-sdk/client-sts/dist-types/protocols/Aws_query.d.ts +74 -0
  1936. package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.browser.d.ts +57 -0
  1937. package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts +55 -0
  1938. package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.native.d.ts +56 -0
  1939. package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.shared.d.ts +32 -0
  1940. package/node_modules/@aws-sdk/client-sts/dist-types/runtimeExtensions.d.ts +17 -0
  1941. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STS.d.ts +141 -0
  1942. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STSClient.d.ts +165 -0
  1943. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  1944. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +54 -0
  1945. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleCommand.d.ts +26 -0
  1946. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithSAMLCommand.d.ts +30 -0
  1947. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithWebIdentityCommand.d.ts +30 -0
  1948. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/DecodeAuthorizationMessageCommand.d.ts +30 -0
  1949. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetAccessKeyInfoCommand.d.ts +29 -0
  1950. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetCallerIdentityCommand.d.ts +30 -0
  1951. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetFederationTokenCommand.d.ts +30 -0
  1952. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetSessionTokenCommand.d.ts +29 -0
  1953. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/index.d.ts +8 -0
  1954. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultRoleAssumers.d.ts +22 -0
  1955. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultStsRoleAssumers.d.ts +25 -0
  1956. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +57 -0
  1957. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  1958. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  1959. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  1960. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/index.d.ts +10 -0
  1961. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/STSServiceException.d.ts +8 -0
  1962. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/index.d.ts +1 -0
  1963. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/models_0.d.ts +206 -0
  1964. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/protocols/Aws_query.d.ts +101 -0
  1965. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.browser.d.ts +128 -0
  1966. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts +117 -0
  1967. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.native.d.ts +119 -0
  1968. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.shared.d.ts +51 -0
  1969. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  1970. package/node_modules/@aws-sdk/client-sts/package.json +103 -0
  1971. package/node_modules/@aws-sdk/core/CHANGELOG.md +174 -0
  1972. package/node_modules/@aws-sdk/core/README.md +5 -0
  1973. package/node_modules/@aws-sdk/core/api-extractor.json +4 -0
  1974. package/node_modules/@aws-sdk/core/dist-cjs/client/emitWarningIfUnsupportedVersion.js +1 -0
  1975. package/node_modules/@aws-sdk/core/dist-cjs/client/index.js +1 -0
  1976. package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +1 -0
  1977. package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/aws_sdk/index.js +1 -0
  1978. package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js +1 -0
  1979. package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/index.js +1 -0
  1980. package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/getDateHeader.js +1 -0
  1981. package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/getSkewCorrectedDate.js +1 -0
  1982. package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js +1 -0
  1983. package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/index.js +1 -0
  1984. package/node_modules/@aws-sdk/core/dist-cjs/httpAuthSchemes/utils/isClockSkewed.js +1 -0
  1985. package/node_modules/@aws-sdk/core/dist-cjs/index.js +316 -0
  1986. package/node_modules/@aws-sdk/core/dist-cjs/protocols/coercing-serializers.js +1 -0
  1987. package/node_modules/@aws-sdk/core/dist-cjs/protocols/index.js +1 -0
  1988. package/node_modules/@aws-sdk/core/dist-cjs/protocols/json/awsExpectUnion.js +1 -0
  1989. package/node_modules/@aws-sdk/core/dist-es/client/emitWarningIfUnsupportedVersion.js +13 -0
  1990. package/node_modules/@aws-sdk/core/dist-es/client/index.js +1 -0
  1991. package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +55 -0
  1992. package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/aws_sdk/index.js +2 -0
  1993. package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js +78 -0
  1994. package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/index.js +1 -0
  1995. package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/getDateHeader.js +2 -0
  1996. package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/getSkewCorrectedDate.js +1 -0
  1997. package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js +8 -0
  1998. package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/index.js +3 -0
  1999. package/node_modules/@aws-sdk/core/dist-es/httpAuthSchemes/utils/isClockSkewed.js +2 -0
  2000. package/node_modules/@aws-sdk/core/dist-es/index.js +3 -0
  2001. package/node_modules/@aws-sdk/core/dist-es/protocols/coercing-serializers.js +53 -0
  2002. package/node_modules/@aws-sdk/core/dist-es/protocols/index.js +2 -0
  2003. package/node_modules/@aws-sdk/core/dist-es/protocols/json/awsExpectUnion.js +10 -0
  2004. package/node_modules/@aws-sdk/core/dist-types/client/emitWarningIfUnsupportedVersion.d.ts +9 -0
  2005. package/node_modules/@aws-sdk/core/dist-types/client/index.d.ts +1 -0
  2006. package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +17 -0
  2007. package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/aws_sdk/index.d.ts +2 -0
  2008. package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +95 -0
  2009. package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/index.d.ts +1 -0
  2010. package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/getDateHeader.d.ts +4 -0
  2011. package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +8 -0
  2012. package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +10 -0
  2013. package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/index.d.ts +3 -0
  2014. package/node_modules/@aws-sdk/core/dist-types/httpAuthSchemes/utils/isClockSkewed.d.ts +9 -0
  2015. package/node_modules/@aws-sdk/core/dist-types/index.d.ts +3 -0
  2016. package/node_modules/@aws-sdk/core/dist-types/protocols/coercing-serializers.d.ts +18 -0
  2017. package/node_modules/@aws-sdk/core/dist-types/protocols/index.d.ts +2 -0
  2018. package/node_modules/@aws-sdk/core/dist-types/protocols/json/awsExpectUnion.d.ts +7 -0
  2019. package/node_modules/@aws-sdk/core/dist-types/ts3.4/client/emitWarningIfUnsupportedVersion.d.ts +1 -0
  2020. package/node_modules/@aws-sdk/core/dist-types/ts3.4/client/index.d.ts +1 -0
  2021. package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +21 -0
  2022. package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/aws_sdk/index.d.ts +2 -0
  2023. package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +55 -0
  2024. package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/index.d.ts +1 -0
  2025. package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/getDateHeader.d.ts +1 -0
  2026. package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +1 -0
  2027. package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +4 -0
  2028. package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/index.d.ts +3 -0
  2029. package/node_modules/@aws-sdk/core/dist-types/ts3.4/httpAuthSchemes/utils/isClockSkewed.d.ts +4 -0
  2030. package/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +3 -0
  2031. package/node_modules/@aws-sdk/core/dist-types/ts3.4/protocols/coercing-serializers.d.ts +3 -0
  2032. package/node_modules/@aws-sdk/core/dist-types/ts3.4/protocols/index.d.ts +2 -0
  2033. package/node_modules/@aws-sdk/core/dist-types/ts3.4/protocols/json/awsExpectUnion.d.ts +3 -0
  2034. package/node_modules/@aws-sdk/core/jest.config.js +6 -0
  2035. package/node_modules/@aws-sdk/core/package.json +57 -0
  2036. package/node_modules/@aws-sdk/core/scripts/lint.js +24 -0
  2037. package/node_modules/@aws-sdk/core/src/client/emitWarningIfUnsupportedVersion.spec.ts +70 -0
  2038. package/node_modules/@aws-sdk/core/src/client/emitWarningIfUnsupportedVersion.ts +25 -0
  2039. package/node_modules/@aws-sdk/core/src/client/index.ts +1 -0
  2040. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.ts +132 -0
  2041. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/aws_sdk/index.ts +2 -0
  2042. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.ts +236 -0
  2043. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/index.ts +1 -0
  2044. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getDateHeader.ts +7 -0
  2045. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getSkewCorrectedDate.spec.ts +17 -0
  2046. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getSkewCorrectedDate.ts +8 -0
  2047. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getUpdatedSystemClockOffset.spec.ts +37 -0
  2048. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/getUpdatedSystemClockOffset.ts +18 -0
  2049. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/index.ts +3 -0
  2050. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/isClockSkewed.spec.ts +32 -0
  2051. package/node_modules/@aws-sdk/core/src/httpAuthSchemes/utils/isClockSkewed.ts +12 -0
  2052. package/node_modules/@aws-sdk/core/src/index.ts +3 -0
  2053. package/node_modules/@aws-sdk/core/src/protocols/coercing-serializers.spec.ts +76 -0
  2054. package/node_modules/@aws-sdk/core/src/protocols/coercing-serializers.ts +72 -0
  2055. package/node_modules/@aws-sdk/core/src/protocols/index.ts +2 -0
  2056. package/node_modules/@aws-sdk/core/src/protocols/json/awsExpectUnion.spec.ts +30 -0
  2057. package/node_modules/@aws-sdk/core/src/protocols/json/awsExpectUnion.ts +17 -0
  2058. package/node_modules/@aws-sdk/core/tsconfig.cjs.json +9 -0
  2059. package/node_modules/@aws-sdk/core/tsconfig.cjs.tsbuildinfo +1 -0
  2060. package/node_modules/@aws-sdk/core/tsconfig.es.json +9 -0
  2061. package/node_modules/@aws-sdk/core/tsconfig.es.tsbuildinfo +1 -0
  2062. package/node_modules/@aws-sdk/core/tsconfig.types.json +9 -0
  2063. package/node_modules/@aws-sdk/core/tsconfig.types.tsbuildinfo +1 -0
  2064. package/node_modules/@aws-sdk/credential-provider-env/LICENSE +201 -0
  2065. package/node_modules/@aws-sdk/credential-provider-env/README.md +11 -0
  2066. package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/fromEnv.js +1 -0
  2067. package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +66 -0
  2068. package/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +23 -0
  2069. package/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -0
  2070. package/node_modules/@aws-sdk/credential-provider-env/dist-types/fromEnv.d.ts +29 -0
  2071. package/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +4 -0
  2072. package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +7 -0
  2073. package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +1 -0
  2074. package/node_modules/@aws-sdk/credential-provider-env/package.json +60 -0
  2075. package/node_modules/@aws-sdk/credential-provider-ini/LICENSE +201 -0
  2076. package/node_modules/@aws-sdk/credential-provider-ini/README.md +11 -0
  2077. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/fromIni.js +1 -0
  2078. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +175 -0
  2079. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveAssumeRoleCredentials.js +1 -0
  2080. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveCredentialSource.js +1 -0
  2081. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveProcessCredentials.js +1 -0
  2082. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveProfileData.js +1 -0
  2083. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveSsoCredentials.js +1 -0
  2084. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveStaticCredentials.js +1 -0
  2085. package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/resolveWebIdentityCredentials.js +1 -0
  2086. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +6 -0
  2087. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -0
  2088. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +47 -0
  2089. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +17 -0
  2090. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +6 -0
  2091. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +28 -0
  2092. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +12 -0
  2093. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js +11 -0
  2094. package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +12 -0
  2095. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +41 -0
  2096. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +4 -0
  2097. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +44 -0
  2098. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts +11 -0
  2099. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts +17 -0
  2100. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +6 -0
  2101. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +9 -0
  2102. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts +18 -0
  2103. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveWebIdentityCredentials.d.ts +18 -0
  2104. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +20 -0
  2105. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +1 -0
  2106. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +17 -0
  2107. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +5 -0
  2108. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProcessCredentials.d.ts +11 -0
  2109. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +8 -0
  2110. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +5 -0
  2111. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +13 -0
  2112. package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts +14 -0
  2113. package/node_modules/@aws-sdk/credential-provider-ini/package.json +66 -0
  2114. package/node_modules/@aws-sdk/credential-provider-node/LICENSE +201 -0
  2115. package/node_modules/@aws-sdk/credential-provider-node/README.md +104 -0
  2116. package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/defaultProvider.js +1 -0
  2117. package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +73 -0
  2118. package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/remoteProvider.js +1 -0
  2119. package/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +11 -0
  2120. package/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -0
  2121. package/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +14 -0
  2122. package/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +42 -0
  2123. package/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +1 -0
  2124. package/node_modules/@aws-sdk/credential-provider-node/dist-types/remoteProvider.d.ts +4 -0
  2125. package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +14 -0
  2126. package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +1 -0
  2127. package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/remoteProvider.d.ts +6 -0
  2128. package/node_modules/@aws-sdk/credential-provider-node/package.json +67 -0
  2129. package/node_modules/@aws-sdk/credential-provider-process/LICENSE +201 -0
  2130. package/node_modules/@aws-sdk/credential-provider-process/README.md +11 -0
  2131. package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/ProcessCredentials.js +1 -0
  2132. package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/fromProcess.js +1 -0
  2133. package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/getValidatedProcessCredentials.js +1 -0
  2134. package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +96 -0
  2135. package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/resolveProcessCredentials.js +1 -0
  2136. package/node_modules/@aws-sdk/credential-provider-process/dist-es/ProcessCredentials.js +1 -0
  2137. package/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +6 -0
  2138. package/node_modules/@aws-sdk/credential-provider-process/dist-es/getValidatedProcessCredentials.js +22 -0
  2139. package/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -0
  2140. package/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +33 -0
  2141. package/node_modules/@aws-sdk/credential-provider-process/dist-types/ProcessCredentials.d.ts +11 -0
  2142. package/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +14 -0
  2143. package/node_modules/@aws-sdk/credential-provider-process/dist-types/getValidatedProcessCredentials.d.ts +6 -0
  2144. package/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +4 -0
  2145. package/node_modules/@aws-sdk/credential-provider-process/dist-types/resolveProcessCredentials.d.ts +5 -0
  2146. package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/ProcessCredentials.d.ts +8 -0
  2147. package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +6 -0
  2148. package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/getValidatedProcessCredentials.d.ts +6 -0
  2149. package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +1 -0
  2150. package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/resolveProcessCredentials.d.ts +5 -0
  2151. package/node_modules/@aws-sdk/credential-provider-process/package.json +61 -0
  2152. package/node_modules/@aws-sdk/credential-provider-sso/LICENSE +201 -0
  2153. package/node_modules/@aws-sdk/credential-provider-sso/README.md +11 -0
  2154. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/fromSSO.js +1 -0
  2155. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +177 -0
  2156. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/isSsoProfile.js +1 -0
  2157. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/resolveSSOCredentials.js +1 -0
  2158. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/types.js +1 -0
  2159. package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/validateSsoProfile.js +1 -0
  2160. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +57 -0
  2161. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +4 -0
  2162. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/isSsoProfile.js +6 -0
  2163. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +51 -0
  2164. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/types.js +1 -0
  2165. package/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +9 -0
  2166. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +67 -0
  2167. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +16 -0
  2168. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/isSsoProfile.d.ts +6 -0
  2169. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +6 -0
  2170. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +16 -0
  2171. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +4 -0
  2172. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/isSsoProfile.d.ts +3 -0
  2173. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +11 -0
  2174. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/types.d.ts +14 -0
  2175. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/validateSsoProfile.d.ts +4 -0
  2176. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts +22 -0
  2177. package/node_modules/@aws-sdk/credential-provider-sso/dist-types/validateSsoProfile.d.ts +5 -0
  2178. package/node_modules/@aws-sdk/credential-provider-sso/package.json +63 -0
  2179. package/node_modules/@aws-sdk/credential-provider-web-identity/LICENSE +201 -0
  2180. package/node_modules/@aws-sdk/credential-provider-web-identity/README.md +11 -0
  2181. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +25 -0
  2182. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +21 -0
  2183. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +27 -0
  2184. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +20 -0
  2185. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +17 -0
  2186. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -0
  2187. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +17 -0
  2188. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +135 -0
  2189. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +8 -0
  2190. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +11 -0
  2191. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +35 -0
  2192. package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +2 -0
  2193. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +68 -0
  2194. package/node_modules/@aws-sdk/endpoint-cache/LICENSE +201 -0
  2195. package/node_modules/@aws-sdk/endpoint-cache/README.md +17 -0
  2196. package/node_modules/@aws-sdk/endpoint-cache/dist-cjs/Endpoint.js +1 -0
  2197. package/node_modules/@aws-sdk/endpoint-cache/dist-cjs/EndpointCache.js +1 -0
  2198. package/node_modules/@aws-sdk/endpoint-cache/dist-cjs/index.js +135 -0
  2199. package/node_modules/@aws-sdk/endpoint-cache/dist-es/Endpoint.js +1 -0
  2200. package/node_modules/@aws-sdk/endpoint-cache/dist-es/EndpointCache.js +53 -0
  2201. package/node_modules/@aws-sdk/endpoint-cache/dist-es/index.js +2 -0
  2202. package/node_modules/@aws-sdk/endpoint-cache/dist-types/Endpoint.d.ts +13 -0
  2203. package/node_modules/@aws-sdk/endpoint-cache/dist-types/EndpointCache.d.ts +56 -0
  2204. package/node_modules/@aws-sdk/endpoint-cache/dist-types/index.d.ts +8 -0
  2205. package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/Endpoint.d.ts +4 -0
  2206. package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/EndpointCache.d.ts +14 -0
  2207. package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/index.d.ts +2 -0
  2208. package/node_modules/@aws-sdk/endpoint-cache/package.json +53 -0
  2209. package/node_modules/@aws-sdk/middleware-endpoint-discovery/LICENSE +201 -0
  2210. package/node_modules/@aws-sdk/middleware-endpoint-discovery/README.md +4 -0
  2211. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/configurations.js +1 -0
  2212. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/endpointDiscoveryMiddleware.js +1 -0
  2213. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/getCacheKey.js +1 -0
  2214. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/getEndpointDiscoveryPlugin.js +1 -0
  2215. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/index.js +227 -0
  2216. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/resolveEndpointDiscoveryConfig.js +1 -0
  2217. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/updateDiscoveredEndpointInCache.js +1 -0
  2218. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/configurations.js +27 -0
  2219. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/endpointDiscoveryMiddleware.js +45 -0
  2220. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/getCacheKey.js +13 -0
  2221. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/getEndpointDiscoveryPlugin.js +22 -0
  2222. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/index.js +3 -0
  2223. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/resolveEndpointDiscoveryConfig.js +10 -0
  2224. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/updateDiscoveredEndpointInCache.js +57 -0
  2225. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/configurations.d.ts +2 -0
  2226. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/endpointDiscoveryMiddleware.d.ts +4 -0
  2227. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/getCacheKey.d.ts +9 -0
  2228. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/getEndpointDiscoveryPlugin.d.ts +18 -0
  2229. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/index.d.ts +3 -0
  2230. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/resolveEndpointDiscoveryConfig.d.ts +54 -0
  2231. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/configurations.d.ts +4 -0
  2232. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/endpointDiscoveryMiddleware.d.ts +17 -0
  2233. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/getCacheKey.d.ts +10 -0
  2234. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/getEndpointDiscoveryPlugin.d.ts +41 -0
  2235. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/index.d.ts +3 -0
  2236. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/resolveEndpointDiscoveryConfig.d.ts +28 -0
  2237. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/updateDiscoveredEndpointInCache.d.ts +15 -0
  2238. package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/updateDiscoveredEndpointInCache.d.ts +8 -0
  2239. package/node_modules/@aws-sdk/middleware-endpoint-discovery/package.json +57 -0
  2240. package/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
  2241. package/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
  2242. package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +70 -0
  2243. package/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +33 -0
  2244. package/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +20 -0
  2245. package/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +29 -0
  2246. package/node_modules/@aws-sdk/middleware-host-header/package.json +55 -0
  2247. package/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
  2248. package/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
  2249. package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +79 -0
  2250. package/node_modules/@aws-sdk/middleware-logger/dist-cjs/loggerMiddleware.js +1 -0
  2251. package/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +1 -0
  2252. package/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +42 -0
  2253. package/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +1 -0
  2254. package/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +4 -0
  2255. package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -0
  2256. package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +17 -0
  2257. package/node_modules/@aws-sdk/middleware-logger/package.json +56 -0
  2258. package/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
  2259. package/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
  2260. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +67 -0
  2261. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +34 -0
  2262. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +18 -0
  2263. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +18 -0
  2264. package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +55 -0
  2265. package/node_modules/@aws-sdk/middleware-signing/LICENSE +201 -0
  2266. package/node_modules/@aws-sdk/middleware-signing/README.md +4 -0
  2267. package/node_modules/@aws-sdk/middleware-signing/dist-cjs/awsAuthConfiguration.js +1 -0
  2268. package/node_modules/@aws-sdk/middleware-signing/dist-cjs/awsAuthMiddleware.js +1 -0
  2269. package/node_modules/@aws-sdk/middleware-signing/dist-cjs/index.js +227 -0
  2270. package/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/getSkewCorrectedDate.js +1 -0
  2271. package/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/getUpdatedSystemClockOffset.js +1 -0
  2272. package/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/isClockSkewed.js +1 -0
  2273. package/node_modules/@aws-sdk/middleware-signing/dist-es/awsAuthConfiguration.js +103 -0
  2274. package/node_modules/@aws-sdk/middleware-signing/dist-es/awsAuthMiddleware.js +55 -0
  2275. package/node_modules/@aws-sdk/middleware-signing/dist-es/index.js +2 -0
  2276. package/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js +1 -0
  2277. package/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js +8 -0
  2278. package/node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js +2 -0
  2279. package/node_modules/@aws-sdk/middleware-signing/dist-types/awsAuthConfiguration.d.ts +99 -0
  2280. package/node_modules/@aws-sdk/middleware-signing/dist-types/awsAuthMiddleware.d.ts +6 -0
  2281. package/node_modules/@aws-sdk/middleware-signing/dist-types/index.d.ts +2 -0
  2282. package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/awsAuthConfiguration.d.ts +68 -0
  2283. package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/awsAuthMiddleware.d.ts +19 -0
  2284. package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/index.d.ts +2 -0
  2285. package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getSkewCorrectedDate.d.ts +1 -0
  2286. package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getUpdatedSystemClockOffset.d.ts +4 -0
  2287. package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/isClockSkewed.d.ts +4 -0
  2288. package/node_modules/@aws-sdk/middleware-signing/dist-types/utils/getSkewCorrectedDate.d.ts +6 -0
  2289. package/node_modules/@aws-sdk/middleware-signing/dist-types/utils/getUpdatedSystemClockOffset.d.ts +8 -0
  2290. package/node_modules/@aws-sdk/middleware-signing/dist-types/utils/isClockSkewed.d.ts +7 -0
  2291. package/node_modules/@aws-sdk/middleware-signing/package.json +59 -0
  2292. package/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
  2293. package/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
  2294. package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/configurations.js +1 -0
  2295. package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/constants.js +1 -0
  2296. package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +122 -0
  2297. package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/user-agent-middleware.js +1 -0
  2298. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +6 -0
  2299. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +7 -0
  2300. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +2 -0
  2301. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +72 -0
  2302. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +31 -0
  2303. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts +7 -0
  2304. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +2 -0
  2305. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +17 -0
  2306. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +7 -0
  2307. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -0
  2308. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +20 -0
  2309. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +17 -0
  2310. package/node_modules/@aws-sdk/middleware-user-agent/package.json +57 -0
  2311. package/node_modules/@aws-sdk/region-config-resolver/LICENSE +201 -0
  2312. package/node_modules/@aws-sdk/region-config-resolver/README.md +12 -0
  2313. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/extensions/index.js +1 -0
  2314. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +115 -0
  2315. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/config.js +1 -0
  2316. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/getRealRegion.js +1 -0
  2317. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/index.js +1 -0
  2318. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/isFipsRegion.js +1 -0
  2319. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +1 -0
  2320. package/node_modules/@aws-sdk/region-config-resolver/dist-es/extensions/index.js +25 -0
  2321. package/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +2 -0
  2322. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/config.js +12 -0
  2323. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
  2324. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/index.js +2 -0
  2325. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
  2326. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/resolveRegionConfig.js +25 -0
  2327. package/node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts +16 -0
  2328. package/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +2 -0
  2329. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/config.d.ts +17 -0
  2330. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/getRealRegion.d.ts +4 -0
  2331. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/index.d.ts +8 -0
  2332. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +4 -0
  2333. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +37 -0
  2334. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/extensions/index.d.ts +14 -0
  2335. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +2 -0
  2336. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +8 -0
  2337. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +1 -0
  2338. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +2 -0
  2339. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +1 -0
  2340. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +14 -0
  2341. package/node_modules/@aws-sdk/region-config-resolver/package.json +58 -0
  2342. package/node_modules/@aws-sdk/token-providers/LICENSE +201 -0
  2343. package/node_modules/@aws-sdk/token-providers/README.md +53 -0
  2344. package/node_modules/@aws-sdk/token-providers/dist-cjs/bundle/client-sso-oidc-browser.js +1032 -0
  2345. package/node_modules/@aws-sdk/token-providers/dist-cjs/bundle/client-sso-oidc-node.js +1038 -0
  2346. package/node_modules/@aws-sdk/token-providers/dist-cjs/constants.js +1 -0
  2347. package/node_modules/@aws-sdk/token-providers/dist-cjs/fromSso.js +1 -0
  2348. package/node_modules/@aws-sdk/token-providers/dist-cjs/fromStatic.js +1 -0
  2349. package/node_modules/@aws-sdk/token-providers/dist-cjs/getNewSsoOidcToken.js +1 -0
  2350. package/node_modules/@aws-sdk/token-providers/dist-cjs/getSsoOidcClient.js +1 -0
  2351. package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +211 -0
  2352. package/node_modules/@aws-sdk/token-providers/dist-cjs/nodeProvider.js +1 -0
  2353. package/node_modules/@aws-sdk/token-providers/dist-cjs/validateTokenExpiry.js +1 -0
  2354. package/node_modules/@aws-sdk/token-providers/dist-cjs/validateTokenKey.js +1 -0
  2355. package/node_modules/@aws-sdk/token-providers/dist-cjs/writeSSOTokenToFile.js +1 -0
  2356. package/node_modules/@aws-sdk/token-providers/dist-es/bundle/client-sso-oidc-browser.js +1010 -0
  2357. package/node_modules/@aws-sdk/token-providers/dist-es/bundle/client-sso-oidc-node.js +1017 -0
  2358. package/node_modules/@aws-sdk/token-providers/dist-es/constants.js +2 -0
  2359. package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +78 -0
  2360. package/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +7 -0
  2361. package/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +11 -0
  2362. package/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +10 -0
  2363. package/node_modules/@aws-sdk/token-providers/dist-es/index.js +4 -0
  2364. package/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +5 -0
  2365. package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +7 -0
  2366. package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +7 -0
  2367. package/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +8 -0
  2368. package/node_modules/@aws-sdk/token-providers/dist-types/bundle/client-sso-oidc-browser.d.ts +191 -0
  2369. package/node_modules/@aws-sdk/token-providers/dist-types/bundle/client-sso-oidc-node.d.ts +191 -0
  2370. package/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +8 -0
  2371. package/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +8 -0
  2372. package/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +8 -0
  2373. package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +5 -0
  2374. package/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +5 -0
  2375. package/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +4 -0
  2376. package/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +18 -0
  2377. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/bundle/client-sso-oidc-browser.d.ts +235 -0
  2378. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/bundle/client-sso-oidc-node.d.ts +235 -0
  2379. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +3 -0
  2380. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +4 -0
  2381. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +7 -0
  2382. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +5 -0
  2383. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +1 -0
  2384. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +4 -0
  2385. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +5 -0
  2386. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +2 -0
  2387. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +5 -0
  2388. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +5 -0
  2389. package/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +5 -0
  2390. package/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +4 -0
  2391. package/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +5 -0
  2392. package/node_modules/@aws-sdk/token-providers/package.json +103 -0
  2393. package/node_modules/@aws-sdk/types/LICENSE +201 -0
  2394. package/node_modules/@aws-sdk/types/README.md +4 -0
  2395. package/node_modules/@aws-sdk/types/dist-cjs/abort.js +1 -0
  2396. package/node_modules/@aws-sdk/types/dist-cjs/auth.js +1 -0
  2397. package/node_modules/@aws-sdk/types/dist-cjs/blob/blob-types.js +1 -0
  2398. package/node_modules/@aws-sdk/types/dist-cjs/checksum.js +1 -0
  2399. package/node_modules/@aws-sdk/types/dist-cjs/client.js +1 -0
  2400. package/node_modules/@aws-sdk/types/dist-cjs/command.js +1 -0
  2401. package/node_modules/@aws-sdk/types/dist-cjs/connection.js +1 -0
  2402. package/node_modules/@aws-sdk/types/dist-cjs/credentials.js +1 -0
  2403. package/node_modules/@aws-sdk/types/dist-cjs/crypto.js +1 -0
  2404. package/node_modules/@aws-sdk/types/dist-cjs/dns.js +1 -0
  2405. package/node_modules/@aws-sdk/types/dist-cjs/encode.js +1 -0
  2406. package/node_modules/@aws-sdk/types/dist-cjs/endpoint.js +1 -0
  2407. package/node_modules/@aws-sdk/types/dist-cjs/eventStream.js +1 -0
  2408. package/node_modules/@aws-sdk/types/dist-cjs/extensions/index.js +1 -0
  2409. package/node_modules/@aws-sdk/types/dist-cjs/http.js +1 -0
  2410. package/node_modules/@aws-sdk/types/dist-cjs/identity/AnonymousIdentity.js +1 -0
  2411. package/node_modules/@aws-sdk/types/dist-cjs/identity/AwsCredentialIdentity.js +1 -0
  2412. package/node_modules/@aws-sdk/types/dist-cjs/identity/Identity.js +1 -0
  2413. package/node_modules/@aws-sdk/types/dist-cjs/identity/LoginIdentity.js +1 -0
  2414. package/node_modules/@aws-sdk/types/dist-cjs/identity/TokenIdentity.js +1 -0
  2415. package/node_modules/@aws-sdk/types/dist-cjs/identity/index.js +1 -0
  2416. package/node_modules/@aws-sdk/types/dist-cjs/index.js +466 -0
  2417. package/node_modules/@aws-sdk/types/dist-cjs/logger.js +1 -0
  2418. package/node_modules/@aws-sdk/types/dist-cjs/middleware.js +1 -0
  2419. package/node_modules/@aws-sdk/types/dist-cjs/pagination.js +1 -0
  2420. package/node_modules/@aws-sdk/types/dist-cjs/profile.js +1 -0
  2421. package/node_modules/@aws-sdk/types/dist-cjs/request.js +1 -0
  2422. package/node_modules/@aws-sdk/types/dist-cjs/response.js +1 -0
  2423. package/node_modules/@aws-sdk/types/dist-cjs/retry.js +1 -0
  2424. package/node_modules/@aws-sdk/types/dist-cjs/serde.js +1 -0
  2425. package/node_modules/@aws-sdk/types/dist-cjs/shapes.js +1 -0
  2426. package/node_modules/@aws-sdk/types/dist-cjs/signature.js +1 -0
  2427. package/node_modules/@aws-sdk/types/dist-cjs/stream.js +1 -0
  2428. package/node_modules/@aws-sdk/types/dist-cjs/token.js +1 -0
  2429. package/node_modules/@aws-sdk/types/dist-cjs/transfer.js +1 -0
  2430. package/node_modules/@aws-sdk/types/dist-cjs/uri.js +1 -0
  2431. package/node_modules/@aws-sdk/types/dist-cjs/util.js +1 -0
  2432. package/node_modules/@aws-sdk/types/dist-cjs/waiter.js +1 -0
  2433. package/node_modules/@aws-sdk/types/dist-es/abort.js +1 -0
  2434. package/node_modules/@aws-sdk/types/dist-es/auth.js +1 -0
  2435. package/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +1 -0
  2436. package/node_modules/@aws-sdk/types/dist-es/checksum.js +1 -0
  2437. package/node_modules/@aws-sdk/types/dist-es/client.js +1 -0
  2438. package/node_modules/@aws-sdk/types/dist-es/command.js +1 -0
  2439. package/node_modules/@aws-sdk/types/dist-es/connection.js +1 -0
  2440. package/node_modules/@aws-sdk/types/dist-es/credentials.js +1 -0
  2441. package/node_modules/@aws-sdk/types/dist-es/crypto.js +1 -0
  2442. package/node_modules/@aws-sdk/types/dist-es/dns.js +5 -0
  2443. package/node_modules/@aws-sdk/types/dist-es/encode.js +1 -0
  2444. package/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -0
  2445. package/node_modules/@aws-sdk/types/dist-es/eventStream.js +1 -0
  2446. package/node_modules/@aws-sdk/types/dist-es/extensions/index.js +1 -0
  2447. package/node_modules/@aws-sdk/types/dist-es/http.js +1 -0
  2448. package/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +1 -0
  2449. package/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +1 -0
  2450. package/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +1 -0
  2451. package/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +1 -0
  2452. package/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +1 -0
  2453. package/node_modules/@aws-sdk/types/dist-es/identity/index.js +5 -0
  2454. package/node_modules/@aws-sdk/types/dist-es/index.js +32 -0
  2455. package/node_modules/@aws-sdk/types/dist-es/logger.js +1 -0
  2456. package/node_modules/@aws-sdk/types/dist-es/middleware.js +1 -0
  2457. package/node_modules/@aws-sdk/types/dist-es/pagination.js +1 -0
  2458. package/node_modules/@aws-sdk/types/dist-es/profile.js +1 -0
  2459. package/node_modules/@aws-sdk/types/dist-es/request.js +1 -0
  2460. package/node_modules/@aws-sdk/types/dist-es/response.js +1 -0
  2461. package/node_modules/@aws-sdk/types/dist-es/retry.js +1 -0
  2462. package/node_modules/@aws-sdk/types/dist-es/serde.js +1 -0
  2463. package/node_modules/@aws-sdk/types/dist-es/shapes.js +1 -0
  2464. package/node_modules/@aws-sdk/types/dist-es/signature.js +1 -0
  2465. package/node_modules/@aws-sdk/types/dist-es/stream.js +1 -0
  2466. package/node_modules/@aws-sdk/types/dist-es/token.js +1 -0
  2467. package/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
  2468. package/node_modules/@aws-sdk/types/dist-es/uri.js +1 -0
  2469. package/node_modules/@aws-sdk/types/dist-es/util.js +1 -0
  2470. package/node_modules/@aws-sdk/types/dist-es/waiter.js +1 -0
  2471. package/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -0
  2472. package/node_modules/@aws-sdk/types/dist-types/auth.d.ts +1 -0
  2473. package/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -0
  2474. package/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -0
  2475. package/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -0
  2476. package/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -0
  2477. package/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -0
  2478. package/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +17 -0
  2479. package/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -0
  2480. package/node_modules/@aws-sdk/types/dist-types/dns.d.ts +85 -0
  2481. package/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -0
  2482. package/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +1 -0
  2483. package/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -0
  2484. package/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +8 -0
  2485. package/node_modules/@aws-sdk/types/dist-types/http.d.ts +33 -0
  2486. package/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +6 -0
  2487. package/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +1 -0
  2488. package/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -0
  2489. package/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +18 -0
  2490. package/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +1 -0
  2491. package/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -0
  2492. package/node_modules/@aws-sdk/types/dist-types/index.d.ts +32 -0
  2493. package/node_modules/@aws-sdk/types/dist-types/logger.d.ts +22 -0
  2494. package/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +1 -0
  2495. package/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -0
  2496. package/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -0
  2497. package/node_modules/@aws-sdk/types/dist-types/request.d.ts +7 -0
  2498. package/node_modules/@aws-sdk/types/dist-types/response.d.ts +7 -0
  2499. package/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -0
  2500. package/node_modules/@aws-sdk/types/dist-types/serde.d.ts +24 -0
  2501. package/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -0
  2502. package/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -0
  2503. package/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -0
  2504. package/node_modules/@aws-sdk/types/dist-types/token.d.ts +17 -0
  2505. package/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +1 -0
  2506. package/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +1 -0
  2507. package/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +5 -0
  2508. package/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +2 -0
  2509. package/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +1 -0
  2510. package/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +1 -0
  2511. package/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +1 -0
  2512. package/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +6 -0
  2513. package/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +4 -0
  2514. package/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +7 -0
  2515. package/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +19 -0
  2516. package/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +6 -0
  2517. package/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +9 -0
  2518. package/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +24 -0
  2519. package/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +5 -0
  2520. package/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +17 -0
  2521. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +2 -0
  2522. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +4 -0
  2523. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +1 -0
  2524. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +6 -0
  2525. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +1 -0
  2526. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +5 -0
  2527. package/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +32 -0
  2528. package/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +15 -0
  2529. package/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +40 -0
  2530. package/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +1 -0
  2531. package/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +6 -0
  2532. package/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +4 -0
  2533. package/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +4 -0
  2534. package/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +12 -0
  2535. package/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +16 -0
  2536. package/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +6 -0
  2537. package/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +15 -0
  2538. package/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +4 -0
  2539. package/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +4 -0
  2540. package/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +7 -0
  2541. package/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +1 -0
  2542. package/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +14 -0
  2543. package/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +1 -0
  2544. package/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -0
  2545. package/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -0
  2546. package/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -0
  2547. package/node_modules/@aws-sdk/types/package.json +56 -0
  2548. package/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
  2549. package/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
  2550. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/aws.js +1 -0
  2551. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +424 -0
  2552. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/index.js +1 -0
  2553. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/isVirtualHostableS3Bucket.js +1 -0
  2554. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/parseArn.js +1 -0
  2555. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partition.js +1 -0
  2556. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +216 -0
  2557. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/isIpAddress.js +1 -0
  2558. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/resolveEndpoint.js +1 -0
  2559. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/EndpointError.js +1 -0
  2560. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/EndpointRuleObject.js +1 -0
  2561. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/ErrorRuleObject.js +1 -0
  2562. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/RuleSetObject.js +1 -0
  2563. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/TreeRuleObject.js +1 -0
  2564. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/index.js +1 -0
  2565. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/shared.js +1 -0
  2566. package/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +10 -0
  2567. package/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +5 -0
  2568. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
  2569. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
  2570. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +15 -0
  2571. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +41 -0
  2572. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +216 -0
  2573. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -0
  2574. package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -0
  2575. package/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -0
  2576. package/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
  2577. package/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
  2578. package/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
  2579. package/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
  2580. package/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
  2581. package/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
  2582. package/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +1 -0
  2583. package/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +5 -0
  2584. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
  2585. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
  2586. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
  2587. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +38 -0
  2588. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -0
  2589. package/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -0
  2590. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +1 -0
  2591. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +5 -0
  2592. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
  2593. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
  2594. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
  2595. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +28 -0
  2596. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
  2597. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -0
  2598. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -0
  2599. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +6 -0
  2600. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -0
  2601. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +5 -0
  2602. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -0
  2603. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
  2604. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +12 -0
  2605. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -0
  2606. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -0
  2607. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -0
  2608. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -0
  2609. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -0
  2610. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
  2611. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -0
  2612. package/node_modules/@aws-sdk/util-endpoints/package.json +56 -0
  2613. package/node_modules/@aws-sdk/util-locate-window/LICENSE +201 -0
  2614. package/node_modules/@aws-sdk/util-locate-window/README.md +4 -0
  2615. package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +39 -0
  2616. package/node_modules/@aws-sdk/util-locate-window/dist-es/index.js +10 -0
  2617. package/node_modules/@aws-sdk/util-locate-window/dist-types/index.d.ts +6 -0
  2618. package/node_modules/@aws-sdk/util-locate-window/dist-types/ts3.4/index.d.ts +1 -0
  2619. package/node_modules/@aws-sdk/util-locate-window/package.json +52 -0
  2620. package/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
  2621. package/node_modules/@aws-sdk/util-user-agent-browser/README.md +10 -0
  2622. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +2 -0
  2623. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +23 -0
  2624. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +17 -0
  2625. package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/configurations.js +1 -0
  2626. package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +17 -0
  2627. package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +13 -0
  2628. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +7 -0
  2629. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +9 -0
  2630. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +9 -0
  2631. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -0
  2632. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +6 -0
  2633. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +6 -0
  2634. package/node_modules/@aws-sdk/util-user-agent-browser/package.json +53 -0
  2635. package/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
  2636. package/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
  2637. package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/crt-availability.js +1 -0
  2638. package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +94 -0
  2639. package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/is-crt-available.js +1 -0
  2640. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/crt-availability.js +3 -0
  2641. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +39 -0
  2642. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +7 -0
  2643. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts +9 -0
  2644. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +20 -0
  2645. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +5 -0
  2646. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/crt-availability.d.ts +3 -0
  2647. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +12 -0
  2648. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -0
  2649. package/node_modules/@aws-sdk/util-user-agent-node/package.json +63 -0
  2650. package/node_modules/@aws-sdk/util-utf8-browser/LICENSE +201 -0
  2651. package/node_modules/@aws-sdk/util-utf8-browser/README.md +8 -0
  2652. package/node_modules/@aws-sdk/util-utf8-browser/package.json +50 -0
  2653. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/.eslintignore +5 -0
  2654. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/.jsii +3976 -0
  2655. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/README.md +126 -0
  2656. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/architecture.png +0 -0
  2657. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/lib/index.d.ts +86 -0
  2658. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/lib/index.js +90 -0
  2659. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/package.json +91 -0
  2660. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-add-secondary-index.d.ts +13 -0
  2661. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-add-secondary-index.expected.json +262 -0
  2662. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-add-secondary-index.js +40 -0
  2663. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithExistingVpc.d.ts +13 -0
  2664. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithExistingVpc.expected.json +1012 -0
  2665. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithExistingVpc.js +46 -0
  2666. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithVpc.d.ts +13 -0
  2667. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithVpc.expected.json +609 -0
  2668. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-deployFunctionWithVpc.js +36 -0
  2669. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-no-arguments.d.ts +13 -0
  2670. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-no-arguments.expected.json +233 -0
  2671. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-no-arguments.js +32 -0
  2672. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-set-billing-mode.d.ts +13 -0
  2673. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-set-billing-mode.expected.json +246 -0
  2674. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-set-billing-mode.js +41 -0
  2675. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-use-existing-func.d.ts +13 -0
  2676. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-use-existing-func.expected.json +233 -0
  2677. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/integ.lamddb-use-existing-func.js +33 -0
  2678. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/lambda/index.js +8 -0
  2679. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/lambda-dynamodb.test.d.ts +13 -0
  2680. package/node_modules/@aws-solutions-constructs/aws-lambda-dynamodb/test/lambda-dynamodb.test.js +774 -0
  2681. package/node_modules/@aws-solutions-constructs/core/.eslintignore +7 -0
  2682. package/node_modules/@aws-solutions-constructs/core/.jsii +7978 -0
  2683. package/node_modules/@aws-solutions-constructs/core/README.md +80 -0
  2684. package/node_modules/@aws-solutions-constructs/core/index.d.ts +74 -0
  2685. package/node_modules/@aws-solutions-constructs/core/index.js +87 -0
  2686. package/node_modules/@aws-solutions-constructs/core/lib/alb-defaults.d.ts +17 -0
  2687. package/node_modules/@aws-solutions-constructs/core/lib/alb-defaults.js +31 -0
  2688. package/node_modules/@aws-solutions-constructs/core/lib/alb-helper.d.ts +61 -0
  2689. package/node_modules/@aws-solutions-constructs/core/lib/alb-helper.js +210 -0
  2690. package/node_modules/@aws-solutions-constructs/core/lib/apigateway-defaults.d.ts +62 -0
  2691. package/node_modules/@aws-solutions-constructs/core/lib/apigateway-defaults.js +139 -0
  2692. package/node_modules/@aws-solutions-constructs/core/lib/apigateway-helper.d.ts +103 -0
  2693. package/node_modules/@aws-solutions-constructs/core/lib/apigateway-helper.js +293 -0
  2694. package/node_modules/@aws-solutions-constructs/core/lib/cloudfront-distribution-defaults.d.ts +29 -0
  2695. package/node_modules/@aws-solutions-constructs/core/lib/cloudfront-distribution-defaults.js +100 -0
  2696. package/node_modules/@aws-solutions-constructs/core/lib/cloudfront-distribution-helper.d.ts +62 -0
  2697. package/node_modules/@aws-solutions-constructs/core/lib/cloudfront-distribution-helper.js +202 -0
  2698. package/node_modules/@aws-solutions-constructs/core/lib/cloudwatch-log-group-defaults.d.ts +17 -0
  2699. package/node_modules/@aws-solutions-constructs/core/lib/cloudwatch-log-group-defaults.js +31 -0
  2700. package/node_modules/@aws-solutions-constructs/core/lib/cloudwatch-log-group-helper.d.ts +18 -0
  2701. package/node_modules/@aws-solutions-constructs/core/lib/cloudwatch-log-group-helper.js +54 -0
  2702. package/node_modules/@aws-solutions-constructs/core/lib/cognito-defaults.d.ts +23 -0
  2703. package/node_modules/@aws-solutions-constructs/core/lib/cognito-defaults.js +41 -0
  2704. package/node_modules/@aws-solutions-constructs/core/lib/cognito-helper.d.ts +40 -0
  2705. package/node_modules/@aws-solutions-constructs/core/lib/cognito-helper.js +125 -0
  2706. package/node_modules/@aws-solutions-constructs/core/lib/dynamodb-table-defaults.d.ts +16 -0
  2707. package/node_modules/@aws-solutions-constructs/core/lib/dynamodb-table-defaults.js +42 -0
  2708. package/node_modules/@aws-solutions-constructs/core/lib/dynamodb-table-helper.d.ts +77 -0
  2709. package/node_modules/@aws-solutions-constructs/core/lib/dynamodb-table-helper.js +90 -0
  2710. package/node_modules/@aws-solutions-constructs/core/lib/elasticache-defaults.d.ts +27 -0
  2711. package/node_modules/@aws-solutions-constructs/core/lib/elasticache-defaults.js +42 -0
  2712. package/node_modules/@aws-solutions-constructs/core/lib/elasticache-helper.d.ts +34 -0
  2713. package/node_modules/@aws-solutions-constructs/core/lib/elasticache-helper.js +78 -0
  2714. package/node_modules/@aws-solutions-constructs/core/lib/elasticsearch-defaults.d.ts +19 -0
  2715. package/node_modules/@aws-solutions-constructs/core/lib/elasticsearch-defaults.js +69 -0
  2716. package/node_modules/@aws-solutions-constructs/core/lib/elasticsearch-helper.d.ts +40 -0
  2717. package/node_modules/@aws-solutions-constructs/core/lib/elasticsearch-helper.js +254 -0
  2718. package/node_modules/@aws-solutions-constructs/core/lib/eventbridge-helper.d.ts +37 -0
  2719. package/node_modules/@aws-solutions-constructs/core/lib/eventbridge-helper.js +46 -0
  2720. package/node_modules/@aws-solutions-constructs/core/lib/events-rule-defaults.d.ts +17 -0
  2721. package/node_modules/@aws-solutions-constructs/core/lib/events-rule-defaults.js +27 -0
  2722. package/node_modules/@aws-solutions-constructs/core/lib/fargate-defaults.d.ts +41 -0
  2723. package/node_modules/@aws-solutions-constructs/core/lib/fargate-defaults.js +72 -0
  2724. package/node_modules/@aws-solutions-constructs/core/lib/fargate-helper.d.ts +48 -0
  2725. package/node_modules/@aws-solutions-constructs/core/lib/fargate-helper.js +194 -0
  2726. package/node_modules/@aws-solutions-constructs/core/lib/glue-database-defaults.d.ts +17 -0
  2727. package/node_modules/@aws-solutions-constructs/core/lib/glue-database-defaults.js +30 -0
  2728. package/node_modules/@aws-solutions-constructs/core/lib/glue-database-helper.d.ts +23 -0
  2729. package/node_modules/@aws-solutions-constructs/core/lib/glue-database-helper.js +33 -0
  2730. package/node_modules/@aws-solutions-constructs/core/lib/glue-job-defaults.d.ts +19 -0
  2731. package/node_modules/@aws-solutions-constructs/core/lib/glue-job-defaults.js +41 -0
  2732. package/node_modules/@aws-solutions-constructs/core/lib/glue-job-helper.d.ts +125 -0
  2733. package/node_modules/@aws-solutions-constructs/core/lib/glue-job-helper.js +210 -0
  2734. package/node_modules/@aws-solutions-constructs/core/lib/glue-table-defaults.d.ts +17 -0
  2735. package/node_modules/@aws-solutions-constructs/core/lib/glue-table-defaults.js +63 -0
  2736. package/node_modules/@aws-solutions-constructs/core/lib/glue-table-helper.d.ts +38 -0
  2737. package/node_modules/@aws-solutions-constructs/core/lib/glue-table-helper.js +68 -0
  2738. package/node_modules/@aws-solutions-constructs/core/lib/iot-topic-rule-defaults.d.ts +17 -0
  2739. package/node_modules/@aws-solutions-constructs/core/lib/iot-topic-rule-defaults.js +31 -0
  2740. package/node_modules/@aws-solutions-constructs/core/lib/kendra-defaults.d.ts +17 -0
  2741. package/node_modules/@aws-solutions-constructs/core/lib/kendra-defaults.js +28 -0
  2742. package/node_modules/@aws-solutions-constructs/core/lib/kendra-helper.d.ts +36 -0
  2743. package/node_modules/@aws-solutions-constructs/core/lib/kendra-helper.js +216 -0
  2744. package/node_modules/@aws-solutions-constructs/core/lib/kinesis-analytics-defaults.d.ts +15 -0
  2745. package/node_modules/@aws-solutions-constructs/core/lib/kinesis-analytics-defaults.js +20 -0
  2746. package/node_modules/@aws-solutions-constructs/core/lib/kinesis-analytics-helper.d.ts +33 -0
  2747. package/node_modules/@aws-solutions-constructs/core/lib/kinesis-analytics-helper.js +60 -0
  2748. package/node_modules/@aws-solutions-constructs/core/lib/kinesis-firehose-s3-defaults.d.ts +18 -0
  2749. package/node_modules/@aws-solutions-constructs/core/lib/kinesis-firehose-s3-defaults.js +44 -0
  2750. package/node_modules/@aws-solutions-constructs/core/lib/kinesis-streams-defaults.d.ts +15 -0
  2751. package/node_modules/@aws-solutions-constructs/core/lib/kinesis-streams-defaults.js +25 -0
  2752. package/node_modules/@aws-solutions-constructs/core/lib/kinesis-streams-helper.d.ts +42 -0
  2753. package/node_modules/@aws-solutions-constructs/core/lib/kinesis-streams-helper.js +88 -0
  2754. package/node_modules/@aws-solutions-constructs/core/lib/kms-defaults.d.ts +15 -0
  2755. package/node_modules/@aws-solutions-constructs/core/lib/kms-defaults.js +20 -0
  2756. package/node_modules/@aws-solutions-constructs/core/lib/kms-helper.d.ts +18 -0
  2757. package/node_modules/@aws-solutions-constructs/core/lib/kms-helper.js +35 -0
  2758. package/node_modules/@aws-solutions-constructs/core/lib/lambda-defaults.d.ts +18 -0
  2759. package/node_modules/@aws-solutions-constructs/core/lib/lambda-defaults.js +32 -0
  2760. package/node_modules/@aws-solutions-constructs/core/lib/lambda-event-source-mapping-defaults.d.ts +32 -0
  2761. package/node_modules/@aws-solutions-constructs/core/lib/lambda-event-source-mapping-defaults.js +80 -0
  2762. package/node_modules/@aws-solutions-constructs/core/lib/lambda-helper.d.ts +60 -0
  2763. package/node_modules/@aws-solutions-constructs/core/lib/lambda-helper.js +197 -0
  2764. package/node_modules/@aws-solutions-constructs/core/lib/mediastore-defaults.d.ts +17 -0
  2765. package/node_modules/@aws-solutions-constructs/core/lib/mediastore-defaults.js +72 -0
  2766. package/node_modules/@aws-solutions-constructs/core/lib/mediastore-helper.d.ts +23 -0
  2767. package/node_modules/@aws-solutions-constructs/core/lib/mediastore-helper.js +50 -0
  2768. package/node_modules/@aws-solutions-constructs/core/lib/opensearch-defaults.d.ts +19 -0
  2769. package/node_modules/@aws-solutions-constructs/core/lib/opensearch-defaults.js +72 -0
  2770. package/node_modules/@aws-solutions-constructs/core/lib/opensearch-helper.d.ts +44 -0
  2771. package/node_modules/@aws-solutions-constructs/core/lib/opensearch-helper.js +265 -0
  2772. package/node_modules/@aws-solutions-constructs/core/lib/override-warning-service.d.ts +20 -0
  2773. package/node_modules/@aws-solutions-constructs/core/lib/override-warning-service.js +96 -0
  2774. package/node_modules/@aws-solutions-constructs/core/lib/s3-bucket-defaults.d.ts +19 -0
  2775. package/node_modules/@aws-solutions-constructs/core/lib/s3-bucket-defaults.js +39 -0
  2776. package/node_modules/@aws-solutions-constructs/core/lib/s3-bucket-helper.d.ts +69 -0
  2777. package/node_modules/@aws-solutions-constructs/core/lib/s3-bucket-helper.js +233 -0
  2778. package/node_modules/@aws-solutions-constructs/core/lib/s3-oac-origin.d.ts +33 -0
  2779. package/node_modules/@aws-solutions-constructs/core/lib/s3-oac-origin.js +70 -0
  2780. package/node_modules/@aws-solutions-constructs/core/lib/sagemaker-defaults.d.ts +29 -0
  2781. package/node_modules/@aws-solutions-constructs/core/lib/sagemaker-defaults.js +67 -0
  2782. package/node_modules/@aws-solutions-constructs/core/lib/sagemaker-helper.d.ts +119 -0
  2783. package/node_modules/@aws-solutions-constructs/core/lib/sagemaker-helper.js +388 -0
  2784. package/node_modules/@aws-solutions-constructs/core/lib/secretsmanager-defaults.d.ts +15 -0
  2785. package/node_modules/@aws-solutions-constructs/core/lib/secretsmanager-defaults.js +21 -0
  2786. package/node_modules/@aws-solutions-constructs/core/lib/secretsmanager-helper.d.ts +29 -0
  2787. package/node_modules/@aws-solutions-constructs/core/lib/secretsmanager-helper.js +57 -0
  2788. package/node_modules/@aws-solutions-constructs/core/lib/security-group-helper.d.ts +28 -0
  2789. package/node_modules/@aws-solutions-constructs/core/lib/security-group-helper.js +76 -0
  2790. package/node_modules/@aws-solutions-constructs/core/lib/sns-defaults.d.ts +15 -0
  2791. package/node_modules/@aws-solutions-constructs/core/lib/sns-defaults.js +18 -0
  2792. package/node_modules/@aws-solutions-constructs/core/lib/sns-helper.d.ts +73 -0
  2793. package/node_modules/@aws-solutions-constructs/core/lib/sns-helper.js +142 -0
  2794. package/node_modules/@aws-solutions-constructs/core/lib/sqs-defaults.d.ts +18 -0
  2795. package/node_modules/@aws-solutions-constructs/core/lib/sqs-defaults.js +33 -0
  2796. package/node_modules/@aws-solutions-constructs/core/lib/sqs-helper.d.ts +101 -0
  2797. package/node_modules/@aws-solutions-constructs/core/lib/sqs-helper.js +180 -0
  2798. package/node_modules/@aws-solutions-constructs/core/lib/ssm-string-parameter-helper.d.ts +24 -0
  2799. package/node_modules/@aws-solutions-constructs/core/lib/ssm-string-parameter-helper.js +34 -0
  2800. package/node_modules/@aws-solutions-constructs/core/lib/step-function-defaults.d.ts +18 -0
  2801. package/node_modules/@aws-solutions-constructs/core/lib/step-function-defaults.js +34 -0
  2802. package/node_modules/@aws-solutions-constructs/core/lib/step-function-helper.d.ts +32 -0
  2803. package/node_modules/@aws-solutions-constructs/core/lib/step-function-helper.js +140 -0
  2804. package/node_modules/@aws-solutions-constructs/core/lib/utils.d.ts +95 -0
  2805. package/node_modules/@aws-solutions-constructs/core/lib/utils.js +233 -0
  2806. package/node_modules/@aws-solutions-constructs/core/lib/vpc-defaults.d.ts +25 -0
  2807. package/node_modules/@aws-solutions-constructs/core/lib/vpc-defaults.js +65 -0
  2808. package/node_modules/@aws-solutions-constructs/core/lib/vpc-helper.d.ts +67 -0
  2809. package/node_modules/@aws-solutions-constructs/core/lib/vpc-helper.js +228 -0
  2810. package/node_modules/@aws-solutions-constructs/core/lib/waf-defaults.d.ts +36 -0
  2811. package/node_modules/@aws-solutions-constructs/core/lib/waf-defaults.js +71 -0
  2812. package/node_modules/@aws-solutions-constructs/core/lib/waf-helper.d.ts +33 -0
  2813. package/node_modules/@aws-solutions-constructs/core/lib/waf-helper.js +47 -0
  2814. package/node_modules/@aws-solutions-constructs/core/node_modules/ansi-regex/index.js +4 -0
  2815. package/node_modules/@aws-solutions-constructs/core/node_modules/ansi-regex/license +21 -0
  2816. package/node_modules/@aws-solutions-constructs/core/node_modules/ansi-regex/package.json +64 -0
  2817. package/node_modules/@aws-solutions-constructs/core/node_modules/ansi-regex/readme.md +39 -0
  2818. package/node_modules/@aws-solutions-constructs/core/node_modules/aproba/LICENSE +14 -0
  2819. package/node_modules/@aws-solutions-constructs/core/node_modules/aproba/README.md +94 -0
  2820. package/node_modules/@aws-solutions-constructs/core/node_modules/aproba/index.js +105 -0
  2821. package/node_modules/@aws-solutions-constructs/core/node_modules/aproba/package.json +34 -0
  2822. package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/CHANGES.md +37 -0
  2823. package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/LICENSE +5 -0
  2824. package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/README.md +195 -0
  2825. package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/index.js +4 -0
  2826. package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/package.json +35 -0
  2827. package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/tracker-base.js +11 -0
  2828. package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/tracker-group.js +107 -0
  2829. package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/tracker-stream.js +36 -0
  2830. package/node_modules/@aws-solutions-constructs/core/node_modules/are-we-there-yet/tracker.js +30 -0
  2831. package/node_modules/@aws-solutions-constructs/core/node_modules/code-point-at/index.js +32 -0
  2832. package/node_modules/@aws-solutions-constructs/core/node_modules/code-point-at/license +21 -0
  2833. package/node_modules/@aws-solutions-constructs/core/node_modules/code-point-at/package.json +38 -0
  2834. package/node_modules/@aws-solutions-constructs/core/node_modules/code-point-at/readme.md +32 -0
  2835. package/node_modules/@aws-solutions-constructs/core/node_modules/console-control-strings/LICENSE +13 -0
  2836. package/node_modules/@aws-solutions-constructs/core/node_modules/console-control-strings/README.md +145 -0
  2837. package/node_modules/@aws-solutions-constructs/core/node_modules/console-control-strings/index.js +125 -0
  2838. package/node_modules/@aws-solutions-constructs/core/node_modules/console-control-strings/package.json +27 -0
  2839. package/node_modules/@aws-solutions-constructs/core/node_modules/core-util-is/LICENSE +19 -0
  2840. package/node_modules/@aws-solutions-constructs/core/node_modules/core-util-is/README.md +3 -0
  2841. package/node_modules/@aws-solutions-constructs/core/node_modules/core-util-is/lib/util.js +107 -0
  2842. package/node_modules/@aws-solutions-constructs/core/node_modules/core-util-is/package.json +38 -0
  2843. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/.circleci/config.yml +76 -0
  2844. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/.eslintrc +72 -0
  2845. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/.vscode/launch.json +30 -0
  2846. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/.vscode/tasks.json +12 -0
  2847. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/ChangeLog.md +63 -0
  2848. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/LICENSE +7 -0
  2849. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/Readme.md +239 -0
  2850. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/dist/deep-diff.min.js +1 -0
  2851. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/dist/deep-diff.min.js.map +1 -0
  2852. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/apply-diff-from-any.js +39 -0
  2853. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/array-change.js +45 -0
  2854. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/capture_change_apply_elsewhere.js +53 -0
  2855. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/diff-ignoring-fun.js +88 -0
  2856. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/diff-scenarios.js +49 -0
  2857. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/example1.js +41 -0
  2858. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-111.js +6 -0
  2859. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-113-1.js +14 -0
  2860. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-113-2.js +11 -0
  2861. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-115.js +17 -0
  2862. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-124.js +8 -0
  2863. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-125.js +19 -0
  2864. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-126.js +33 -0
  2865. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-35.js +11 -0
  2866. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-47.js +17 -0
  2867. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-48.js +48 -0
  2868. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-62.js +14 -0
  2869. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-70.js +6 -0
  2870. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-71.js +15 -0
  2871. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-72.js +21 -0
  2872. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-74.js +9 -0
  2873. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-78.js +24 -0
  2874. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-83.js +11 -0
  2875. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/issue-88.js +26 -0
  2876. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/performance.js +64 -0
  2877. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/examples/practice-data.json +2501 -0
  2878. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/index.js +526 -0
  2879. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/package.json +74 -0
  2880. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/test/.eslintrc +10 -0
  2881. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/test/tests.html +34 -0
  2882. package/node_modules/@aws-solutions-constructs/core/node_modules/deep-diff/test/tests.js +759 -0
  2883. package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/.editorconfig +7 -0
  2884. package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/.eslintcache +1 -0
  2885. package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/changelog.md +167 -0
  2886. package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/dist/cjs.js +133 -0
  2887. package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/dist/umd.js +139 -0
  2888. package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/index.d.ts +20 -0
  2889. package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/index.js +106 -0
  2890. package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/license.txt +21 -0
  2891. package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/package.json +42 -0
  2892. package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/readme.md +264 -0
  2893. package/node_modules/@aws-solutions-constructs/core/node_modules/deepmerge/rollup.config.js +22 -0
  2894. package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/.npmignore +1 -0
  2895. package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/History.md +22 -0
  2896. package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/License +20 -0
  2897. package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/Makefile +8 -0
  2898. package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/Readme.md +94 -0
  2899. package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/index.js +121 -0
  2900. package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/package.json +13 -0
  2901. package/node_modules/@aws-solutions-constructs/core/node_modules/delegates/test/index.js +94 -0
  2902. package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  2903. package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/README.md +73 -0
  2904. package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/es2015/index.js +6 -0
  2905. package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/es2015/text.js +6 -0
  2906. package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/index.d.ts +23 -0
  2907. package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/index.js +6 -0
  2908. package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/package.json +50 -0
  2909. package/node_modules/@aws-solutions-constructs/core/node_modules/emoji-regex/text.js +6 -0
  2910. package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/CHANGELOG.md +160 -0
  2911. package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/LICENSE +13 -0
  2912. package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/README.md +399 -0
  2913. package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/base-theme.js +14 -0
  2914. package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/error.js +24 -0
  2915. package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/has-color.js +12 -0
  2916. package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/index.js +233 -0
  2917. package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/package.json +63 -0
  2918. package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/plumbing.js +48 -0
  2919. package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/process.js +3 -0
  2920. package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/progress-bar.js +35 -0
  2921. package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/render-template.js +181 -0
  2922. package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/set-immediate.js +7 -0
  2923. package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/set-interval.js +3 -0
  2924. package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/spin.js +5 -0
  2925. package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/template-item.js +73 -0
  2926. package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/theme-set.js +115 -0
  2927. package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/themes.js +54 -0
  2928. package/node_modules/@aws-solutions-constructs/core/node_modules/gauge/wide-truncate.js +25 -0
  2929. package/node_modules/@aws-solutions-constructs/core/node_modules/has-unicode/LICENSE +14 -0
  2930. package/node_modules/@aws-solutions-constructs/core/node_modules/has-unicode/README.md +43 -0
  2931. package/node_modules/@aws-solutions-constructs/core/node_modules/has-unicode/index.js +16 -0
  2932. package/node_modules/@aws-solutions-constructs/core/node_modules/has-unicode/package.json +30 -0
  2933. package/node_modules/@aws-solutions-constructs/core/node_modules/inherits/LICENSE +16 -0
  2934. package/node_modules/@aws-solutions-constructs/core/node_modules/inherits/README.md +42 -0
  2935. package/node_modules/@aws-solutions-constructs/core/node_modules/inherits/inherits.js +9 -0
  2936. package/node_modules/@aws-solutions-constructs/core/node_modules/inherits/inherits_browser.js +27 -0
  2937. package/node_modules/@aws-solutions-constructs/core/node_modules/inherits/package.json +29 -0
  2938. package/node_modules/@aws-solutions-constructs/core/node_modules/is-fullwidth-code-point/index.js +46 -0
  2939. package/node_modules/@aws-solutions-constructs/core/node_modules/is-fullwidth-code-point/license +21 -0
  2940. package/node_modules/@aws-solutions-constructs/core/node_modules/is-fullwidth-code-point/package.json +45 -0
  2941. package/node_modules/@aws-solutions-constructs/core/node_modules/is-fullwidth-code-point/readme.md +39 -0
  2942. package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/.npmignore +1 -0
  2943. package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/.travis.yml +4 -0
  2944. package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/Makefile +6 -0
  2945. package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/README.md +60 -0
  2946. package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/component.json +19 -0
  2947. package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/index.js +5 -0
  2948. package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/package.json +45 -0
  2949. package/node_modules/@aws-solutions-constructs/core/node_modules/isarray/test.js +20 -0
  2950. package/node_modules/@aws-solutions-constructs/core/node_modules/npmlog/LICENSE +15 -0
  2951. package/node_modules/@aws-solutions-constructs/core/node_modules/npmlog/README.md +216 -0
  2952. package/node_modules/@aws-solutions-constructs/core/node_modules/npmlog/log.js +309 -0
  2953. package/node_modules/@aws-solutions-constructs/core/node_modules/npmlog/package.json +28 -0
  2954. package/node_modules/@aws-solutions-constructs/core/node_modules/number-is-nan/index.js +4 -0
  2955. package/node_modules/@aws-solutions-constructs/core/node_modules/number-is-nan/license +21 -0
  2956. package/node_modules/@aws-solutions-constructs/core/node_modules/number-is-nan/package.json +35 -0
  2957. package/node_modules/@aws-solutions-constructs/core/node_modules/number-is-nan/readme.md +28 -0
  2958. package/node_modules/@aws-solutions-constructs/core/node_modules/object-assign/index.js +90 -0
  2959. package/node_modules/@aws-solutions-constructs/core/node_modules/object-assign/license +21 -0
  2960. package/node_modules/@aws-solutions-constructs/core/node_modules/object-assign/package.json +42 -0
  2961. package/node_modules/@aws-solutions-constructs/core/node_modules/object-assign/readme.md +61 -0
  2962. package/node_modules/@aws-solutions-constructs/core/node_modules/process-nextick-args/index.js +45 -0
  2963. package/node_modules/@aws-solutions-constructs/core/node_modules/process-nextick-args/license.md +19 -0
  2964. package/node_modules/@aws-solutions-constructs/core/node_modules/process-nextick-args/package.json +25 -0
  2965. package/node_modules/@aws-solutions-constructs/core/node_modules/process-nextick-args/readme.md +18 -0
  2966. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/.travis.yml +34 -0
  2967. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  2968. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/GOVERNANCE.md +136 -0
  2969. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/LICENSE +47 -0
  2970. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/README.md +58 -0
  2971. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  2972. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/duplex-browser.js +1 -0
  2973. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/duplex.js +1 -0
  2974. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
  2975. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
  2976. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
  2977. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/_stream_transform.js +214 -0
  2978. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/_stream_writable.js +685 -0
  2979. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/internal/streams/BufferList.js +78 -0
  2980. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/internal/streams/destroy.js +84 -0
  2981. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
  2982. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
  2983. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/package.json +52 -0
  2984. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/passthrough.js +1 -0
  2985. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/readable-browser.js +7 -0
  2986. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/readable.js +19 -0
  2987. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/transform.js +1 -0
  2988. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/writable-browser.js +1 -0
  2989. package/node_modules/@aws-solutions-constructs/core/node_modules/readable-stream/writable.js +8 -0
  2990. package/node_modules/@aws-solutions-constructs/core/node_modules/safe-buffer/LICENSE +21 -0
  2991. package/node_modules/@aws-solutions-constructs/core/node_modules/safe-buffer/README.md +584 -0
  2992. package/node_modules/@aws-solutions-constructs/core/node_modules/safe-buffer/index.d.ts +187 -0
  2993. package/node_modules/@aws-solutions-constructs/core/node_modules/safe-buffer/index.js +62 -0
  2994. package/node_modules/@aws-solutions-constructs/core/node_modules/safe-buffer/package.json +37 -0
  2995. package/node_modules/@aws-solutions-constructs/core/node_modules/set-blocking/LICENSE.txt +14 -0
  2996. package/node_modules/@aws-solutions-constructs/core/node_modules/set-blocking/README.md +31 -0
  2997. package/node_modules/@aws-solutions-constructs/core/node_modules/set-blocking/index.js +7 -0
  2998. package/node_modules/@aws-solutions-constructs/core/node_modules/set-blocking/package.json +42 -0
  2999. package/node_modules/@aws-solutions-constructs/core/node_modules/signal-exit/LICENSE.txt +16 -0
  3000. package/node_modules/@aws-solutions-constructs/core/node_modules/signal-exit/README.md +39 -0
  3001. package/node_modules/@aws-solutions-constructs/core/node_modules/signal-exit/index.js +202 -0
  3002. package/node_modules/@aws-solutions-constructs/core/node_modules/signal-exit/package.json +38 -0
  3003. package/node_modules/@aws-solutions-constructs/core/node_modules/signal-exit/signals.js +53 -0
  3004. package/node_modules/@aws-solutions-constructs/core/node_modules/string-width/index.js +37 -0
  3005. package/node_modules/@aws-solutions-constructs/core/node_modules/string-width/license +21 -0
  3006. package/node_modules/@aws-solutions-constructs/core/node_modules/string-width/package.json +56 -0
  3007. package/node_modules/@aws-solutions-constructs/core/node_modules/string-width/readme.md +42 -0
  3008. package/node_modules/@aws-solutions-constructs/core/node_modules/string_decoder/.travis.yml +50 -0
  3009. package/node_modules/@aws-solutions-constructs/core/node_modules/string_decoder/LICENSE +48 -0
  3010. package/node_modules/@aws-solutions-constructs/core/node_modules/string_decoder/README.md +47 -0
  3011. package/node_modules/@aws-solutions-constructs/core/node_modules/string_decoder/lib/string_decoder.js +296 -0
  3012. package/node_modules/@aws-solutions-constructs/core/node_modules/string_decoder/package.json +31 -0
  3013. package/node_modules/@aws-solutions-constructs/core/node_modules/strip-ansi/index.js +6 -0
  3014. package/node_modules/@aws-solutions-constructs/core/node_modules/strip-ansi/license +21 -0
  3015. package/node_modules/@aws-solutions-constructs/core/node_modules/strip-ansi/package.json +57 -0
  3016. package/node_modules/@aws-solutions-constructs/core/node_modules/strip-ansi/readme.md +33 -0
  3017. package/node_modules/@aws-solutions-constructs/core/node_modules/util-deprecate/History.md +16 -0
  3018. package/node_modules/@aws-solutions-constructs/core/node_modules/util-deprecate/LICENSE +24 -0
  3019. package/node_modules/@aws-solutions-constructs/core/node_modules/util-deprecate/README.md +53 -0
  3020. package/node_modules/@aws-solutions-constructs/core/node_modules/util-deprecate/browser.js +67 -0
  3021. package/node_modules/@aws-solutions-constructs/core/node_modules/util-deprecate/node.js +6 -0
  3022. package/node_modules/@aws-solutions-constructs/core/node_modules/util-deprecate/package.json +27 -0
  3023. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/LICENSE +14 -0
  3024. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/README.md +47 -0
  3025. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/align.js +65 -0
  3026. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/ansi-regex/index.d.ts +37 -0
  3027. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/ansi-regex/index.js +10 -0
  3028. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/ansi-regex/license +9 -0
  3029. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/ansi-regex/package.json +55 -0
  3030. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/ansi-regex/readme.md +78 -0
  3031. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
  3032. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/is-fullwidth-code-point/index.js +50 -0
  3033. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/is-fullwidth-code-point/license +9 -0
  3034. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/is-fullwidth-code-point/package.json +42 -0
  3035. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/is-fullwidth-code-point/readme.md +39 -0
  3036. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/string-width/index.d.ts +29 -0
  3037. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/string-width/index.js +47 -0
  3038. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/string-width/license +9 -0
  3039. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/string-width/package.json +56 -0
  3040. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/string-width/readme.md +50 -0
  3041. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/strip-ansi/index.d.ts +17 -0
  3042. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/strip-ansi/index.js +4 -0
  3043. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/strip-ansi/license +9 -0
  3044. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/strip-ansi/package.json +54 -0
  3045. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/node_modules/strip-ansi/readme.md +46 -0
  3046. package/node_modules/@aws-solutions-constructs/core/node_modules/wide-align/package.json +33 -0
  3047. package/node_modules/@aws-solutions-constructs/core/package.json +91 -0
  3048. package/node_modules/@aws-solutions-constructs/core/test/alb-helper.test.d.ts +13 -0
  3049. package/node_modules/@aws-solutions-constructs/core/test/alb-helper.test.js +475 -0
  3050. package/node_modules/@aws-solutions-constructs/core/test/apigateway-helper.test.d.ts +13 -0
  3051. package/node_modules/@aws-solutions-constructs/core/test/apigateway-helper.test.js +739 -0
  3052. package/node_modules/@aws-solutions-constructs/core/test/cloudfront-distribution-api-gateway-helper.test.d.ts +13 -0
  3053. package/node_modules/@aws-solutions-constructs/core/test/cloudfront-distribution-api-gateway-helper.test.js +497 -0
  3054. package/node_modules/@aws-solutions-constructs/core/test/cloudfront-distribution-mediastore-helper.test.d.ts +13 -0
  3055. package/node_modules/@aws-solutions-constructs/core/test/cloudfront-distribution-mediastore-helper.test.js +606 -0
  3056. package/node_modules/@aws-solutions-constructs/core/test/cloudfront-distribution-s3-helper.test.d.ts +13 -0
  3057. package/node_modules/@aws-solutions-constructs/core/test/cloudfront-distribution-s3-helper.test.js +416 -0
  3058. package/node_modules/@aws-solutions-constructs/core/test/cloudwatch-log-group-helper.test.d.ts +13 -0
  3059. package/node_modules/@aws-solutions-constructs/core/test/cloudwatch-log-group-helper.test.js +59 -0
  3060. package/node_modules/@aws-solutions-constructs/core/test/congnito-helper.test.d.ts +13 -0
  3061. package/node_modules/@aws-solutions-constructs/core/test/congnito-helper.test.js +171 -0
  3062. package/node_modules/@aws-solutions-constructs/core/test/dynamo-table.test.d.ts +13 -0
  3063. package/node_modules/@aws-solutions-constructs/core/test/dynamo-table.test.js +383 -0
  3064. package/node_modules/@aws-solutions-constructs/core/test/elasticache-defaults.test.d.ts +13 -0
  3065. package/node_modules/@aws-solutions-constructs/core/test/elasticache-defaults.test.js +31 -0
  3066. package/node_modules/@aws-solutions-constructs/core/test/elasticache-helper.test.d.ts +13 -0
  3067. package/node_modules/@aws-solutions-constructs/core/test/elasticache-helper.test.js +94 -0
  3068. package/node_modules/@aws-solutions-constructs/core/test/elasticsearch-helper.test.d.ts +13 -0
  3069. package/node_modules/@aws-solutions-constructs/core/test/elasticsearch-helper.test.js +454 -0
  3070. package/node_modules/@aws-solutions-constructs/core/test/eventbridge-helper.test.d.ts +13 -0
  3071. package/node_modules/@aws-solutions-constructs/core/test/eventbridge-helper.test.js +77 -0
  3072. package/node_modules/@aws-solutions-constructs/core/test/events-rule.test.d.ts +13 -0
  3073. package/node_modules/@aws-solutions-constructs/core/test/events-rule.test.js +85 -0
  3074. package/node_modules/@aws-solutions-constructs/core/test/fargate-helper.test.d.ts +13 -0
  3075. package/node_modules/@aws-solutions-constructs/core/test/fargate-helper.test.js +355 -0
  3076. package/node_modules/@aws-solutions-constructs/core/test/glue-job-helper.test.d.ts +13 -0
  3077. package/node_modules/@aws-solutions-constructs/core/test/glue-job-helper.test.js +595 -0
  3078. package/node_modules/@aws-solutions-constructs/core/test/glue-table-helper.test.d.ts +13 -0
  3079. package/node_modules/@aws-solutions-constructs/core/test/glue-table-helper.test.js +188 -0
  3080. package/node_modules/@aws-solutions-constructs/core/test/iot-rule.test.d.ts +13 -0
  3081. package/node_modules/@aws-solutions-constructs/core/test/iot-rule.test.js +84 -0
  3082. package/node_modules/@aws-solutions-constructs/core/test/kendra-helper.test.d.ts +13 -0
  3083. package/node_modules/@aws-solutions-constructs/core/test/kendra-helper.test.js +489 -0
  3084. package/node_modules/@aws-solutions-constructs/core/test/kinesis-analytics.test.d.ts +13 -0
  3085. package/node_modules/@aws-solutions-constructs/core/test/kinesis-analytics.test.js +154 -0
  3086. package/node_modules/@aws-solutions-constructs/core/test/kinesis-firehose-s3-defaults.test.d.ts +13 -0
  3087. package/node_modules/@aws-solutions-constructs/core/test/kinesis-firehose-s3-defaults.test.js +76 -0
  3088. package/node_modules/@aws-solutions-constructs/core/test/kinesis-streams-defaults.test.d.ts +13 -0
  3089. package/node_modules/@aws-solutions-constructs/core/test/kinesis-streams-defaults.test.js +32 -0
  3090. package/node_modules/@aws-solutions-constructs/core/test/kinesis-streams-helper.test.d.ts +13 -0
  3091. package/node_modules/@aws-solutions-constructs/core/test/kinesis-streams-helper.test.js +99 -0
  3092. package/node_modules/@aws-solutions-constructs/core/test/kms-helper.test.d.ts +13 -0
  3093. package/node_modules/@aws-solutions-constructs/core/test/kms-helper.test.js +51 -0
  3094. package/node_modules/@aws-solutions-constructs/core/test/lambda/index.js +10 -0
  3095. package/node_modules/@aws-solutions-constructs/core/test/lambda-event-source.test.d.ts +13 -0
  3096. package/node_modules/@aws-solutions-constructs/core/test/lambda-event-source.test.js +131 -0
  3097. package/node_modules/@aws-solutions-constructs/core/test/lambda-helper.test.d.ts +13 -0
  3098. package/node_modules/@aws-solutions-constructs/core/test/lambda-helper.test.js +486 -0
  3099. package/node_modules/@aws-solutions-constructs/core/test/lambda-test/index.js +7 -0
  3100. package/node_modules/@aws-solutions-constructs/core/test/mediastore-helper.test.d.ts +13 -0
  3101. package/node_modules/@aws-solutions-constructs/core/test/mediastore-helper.test.js +67 -0
  3102. package/node_modules/@aws-solutions-constructs/core/test/opensearch-helper.test.d.ts +13 -0
  3103. package/node_modules/@aws-solutions-constructs/core/test/opensearch-helper.test.js +416 -0
  3104. package/node_modules/@aws-solutions-constructs/core/test/override-warning-service.test.d.ts +13 -0
  3105. package/node_modules/@aws-solutions-constructs/core/test/override-warning-service.test.js +224 -0
  3106. package/node_modules/@aws-solutions-constructs/core/test/s3-bucket-helper.test.d.ts +13 -0
  3107. package/node_modules/@aws-solutions-constructs/core/test/s3-bucket-helper.test.js +430 -0
  3108. package/node_modules/@aws-solutions-constructs/core/test/s3-bucket.test.d.ts +13 -0
  3109. package/node_modules/@aws-solutions-constructs/core/test/s3-bucket.test.js +384 -0
  3110. package/node_modules/@aws-solutions-constructs/core/test/sagemaker-helper.test.d.ts +13 -0
  3111. package/node_modules/@aws-solutions-constructs/core/test/sagemaker-helper.test.js +244 -0
  3112. package/node_modules/@aws-solutions-constructs/core/test/secretsmanager-helper.test.d.ts +13 -0
  3113. package/node_modules/@aws-solutions-constructs/core/test/secretsmanager-helper.test.js +66 -0
  3114. package/node_modules/@aws-solutions-constructs/core/test/security-group-helper.test.d.ts +13 -0
  3115. package/node_modules/@aws-solutions-constructs/core/test/security-group-helper.test.js +118 -0
  3116. package/node_modules/@aws-solutions-constructs/core/test/sns-helper.test.d.ts +13 -0
  3117. package/node_modules/@aws-solutions-constructs/core/test/sns-helper.test.js +367 -0
  3118. package/node_modules/@aws-solutions-constructs/core/test/sqs-helper.test.d.ts +13 -0
  3119. package/node_modules/@aws-solutions-constructs/core/test/sqs-helper.test.js +287 -0
  3120. package/node_modules/@aws-solutions-constructs/core/test/ssm-string-parameter-helper.test.d.ts +13 -0
  3121. package/node_modules/@aws-solutions-constructs/core/test/ssm-string-parameter-helper.test.js +32 -0
  3122. package/node_modules/@aws-solutions-constructs/core/test/step-function-helper.test.d.ts +13 -0
  3123. package/node_modules/@aws-solutions-constructs/core/test/step-function-helper.test.js +204 -0
  3124. package/node_modules/@aws-solutions-constructs/core/test/test-helper.d.ts +50 -0
  3125. package/node_modules/@aws-solutions-constructs/core/test/test-helper.js +244 -0
  3126. package/node_modules/@aws-solutions-constructs/core/test/utils.test.d.ts +13 -0
  3127. package/node_modules/@aws-solutions-constructs/core/test/utils.test.js +193 -0
  3128. package/node_modules/@aws-solutions-constructs/core/test/vpc-helper.test.d.ts +13 -0
  3129. package/node_modules/@aws-solutions-constructs/core/test/vpc-helper.test.js +251 -0
  3130. package/node_modules/@aws-solutions-constructs/core/test/waf-helper.test.d.ts +13 -0
  3131. package/node_modules/@aws-solutions-constructs/core/test/waf-helper.test.js +305 -0
  3132. package/node_modules/@gemeentenijmegen/apiclient/.env +9 -0
  3133. package/node_modules/@gemeentenijmegen/apiclient/.gitattributes +23 -0
  3134. package/node_modules/@gemeentenijmegen/apiclient/LICENSE +287 -0
  3135. package/node_modules/@gemeentenijmegen/apiclient/README.md +33 -0
  3136. package/node_modules/@gemeentenijmegen/apiclient/lib/index.d.ts +54 -0
  3137. package/node_modules/@gemeentenijmegen/apiclient/lib/index.js +174 -0
  3138. package/node_modules/@gemeentenijmegen/apiclient/package.json +101 -0
  3139. package/node_modules/@gemeentenijmegen/apigateway-http/.gitattributes +23 -0
  3140. package/node_modules/@gemeentenijmegen/apigateway-http/LICENSE +287 -0
  3141. package/node_modules/@gemeentenijmegen/apigateway-http/README.md +25 -0
  3142. package/node_modules/@gemeentenijmegen/apigateway-http/lib/V2/Response.d.ts +16 -0
  3143. package/node_modules/@gemeentenijmegen/apigateway-http/lib/V2/Response.js +67 -0
  3144. package/node_modules/@gemeentenijmegen/apigateway-http/lib/index.d.ts +1 -0
  3145. package/node_modules/@gemeentenijmegen/apigateway-http/lib/index.js +18 -0
  3146. package/node_modules/@gemeentenijmegen/apigateway-http/package.json +96 -0
  3147. package/node_modules/@gemeentenijmegen/session/.gitattributes +23 -0
  3148. package/node_modules/@gemeentenijmegen/session/LICENSE +287 -0
  3149. package/node_modules/@gemeentenijmegen/session/README.md +45 -0
  3150. package/node_modules/@gemeentenijmegen/session/lib/index.d.ts +60 -0
  3151. package/node_modules/@gemeentenijmegen/session/lib/index.js +178 -0
  3152. package/node_modules/@gemeentenijmegen/session/node_modules/cookie/HISTORY.md +142 -0
  3153. package/node_modules/@gemeentenijmegen/session/node_modules/cookie/LICENSE +24 -0
  3154. package/node_modules/@gemeentenijmegen/session/node_modules/cookie/README.md +302 -0
  3155. package/node_modules/@gemeentenijmegen/session/node_modules/cookie/SECURITY.md +25 -0
  3156. package/node_modules/@gemeentenijmegen/session/node_modules/cookie/index.js +270 -0
  3157. package/node_modules/@gemeentenijmegen/session/node_modules/cookie/package.json +44 -0
  3158. package/node_modules/@gemeentenijmegen/session/package.json +99 -0
  3159. package/node_modules/@gemeentenijmegen/utils/.gitattributes +23 -0
  3160. package/node_modules/@gemeentenijmegen/utils/LICENSE +287 -0
  3161. package/node_modules/@gemeentenijmegen/utils/README.md +31 -0
  3162. package/node_modules/@gemeentenijmegen/utils/lib/AWS.d.ts +18 -0
  3163. package/node_modules/@gemeentenijmegen/utils/lib/AWS.js +42 -0
  3164. package/node_modules/@gemeentenijmegen/utils/lib/Bsn.d.ts +25 -0
  3165. package/node_modules/@gemeentenijmegen/utils/lib/Bsn.js +59 -0
  3166. package/node_modules/@gemeentenijmegen/utils/lib/index.d.ts +2 -0
  3167. package/node_modules/@gemeentenijmegen/utils/lib/index.js +8 -0
  3168. package/node_modules/@gemeentenijmegen/utils/package.json +98 -0
  3169. package/node_modules/@smithy/abort-controller/LICENSE +201 -0
  3170. package/node_modules/@smithy/abort-controller/README.md +4 -0
  3171. package/node_modules/@smithy/abort-controller/dist-cjs/AbortController.js +1 -0
  3172. package/node_modules/@smithy/abort-controller/dist-cjs/AbortSignal.js +1 -0
  3173. package/node_modules/@smithy/abort-controller/dist-cjs/index.js +85 -0
  3174. package/node_modules/@smithy/abort-controller/dist-es/AbortController.js +9 -0
  3175. package/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +20 -0
  3176. package/node_modules/@smithy/abort-controller/dist-es/index.js +2 -0
  3177. package/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +13 -0
  3178. package/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +18 -0
  3179. package/node_modules/@smithy/abort-controller/dist-types/index.d.ts +9 -0
  3180. package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +13 -0
  3181. package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +18 -0
  3182. package/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +9 -0
  3183. package/node_modules/@smithy/abort-controller/package.json +62 -0
  3184. package/node_modules/@smithy/config-resolver/LICENSE +201 -0
  3185. package/node_modules/@smithy/config-resolver/README.md +10 -0
  3186. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +1 -0
  3187. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +1 -0
  3188. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/index.js +1 -0
  3189. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveCustomEndpointsConfig.js +1 -0
  3190. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveEndpointsConfig.js +1 -0
  3191. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/utils/getEndpointFromRegion.js +1 -0
  3192. package/node_modules/@smithy/config-resolver/dist-cjs/index.js +235 -0
  3193. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/config.js +1 -0
  3194. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/getRealRegion.js +1 -0
  3195. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/index.js +1 -0
  3196. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/isFipsRegion.js +1 -0
  3197. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +1 -0
  3198. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariant.js +1 -0
  3199. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariantTag.js +1 -0
  3200. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/PartitionHash.js +1 -0
  3201. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/RegionHash.js +1 -0
  3202. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getHostnameFromVariants.js +1 -0
  3203. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getRegionInfo.js +1 -0
  3204. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedHostname.js +1 -0
  3205. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedPartition.js +1 -0
  3206. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedSigningRegion.js +1 -0
  3207. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/index.js +1 -0
  3208. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +9 -0
  3209. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +9 -0
  3210. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +4 -0
  3211. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +11 -0
  3212. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +15 -0
  3213. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js +15 -0
  3214. package/node_modules/@smithy/config-resolver/dist-es/index.js +3 -0
  3215. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/config.js +12 -0
  3216. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
  3217. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +2 -0
  3218. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
  3219. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +25 -0
  3220. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariant.js +1 -0
  3221. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariantTag.js +1 -0
  3222. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/PartitionHash.js +1 -0
  3223. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/RegionHash.js +1 -0
  3224. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js +1 -0
  3225. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getRegionInfo.js +29 -0
  3226. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedHostname.js +5 -0
  3227. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedPartition.js +1 -0
  3228. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js +12 -0
  3229. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +3 -0
  3230. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
  3231. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
  3232. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +16 -0
  3233. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +29 -0
  3234. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +51 -0
  3235. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
  3236. package/node_modules/@smithy/config-resolver/dist-types/index.d.ts +12 -0
  3237. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +17 -0
  3238. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/getRealRegion.d.ts +4 -0
  3239. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +8 -0
  3240. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +4 -0
  3241. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +34 -0
  3242. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +10 -0
  3243. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +7 -0
  3244. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +14 -0
  3245. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/RegionHash.d.ts +12 -0
  3246. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +12 -0
  3247. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +17 -0
  3248. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +11 -0
  3249. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +11 -0
  3250. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +12 -0
  3251. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +12 -0
  3252. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
  3253. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
  3254. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +16 -0
  3255. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +29 -0
  3256. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +51 -0
  3257. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
  3258. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/index.d.ts +12 -0
  3259. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +17 -0
  3260. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +4 -0
  3261. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +8 -0
  3262. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +4 -0
  3263. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +34 -0
  3264. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +10 -0
  3265. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +7 -0
  3266. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +14 -0
  3267. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +12 -0
  3268. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +12 -0
  3269. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +17 -0
  3270. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +11 -0
  3271. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +11 -0
  3272. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +12 -0
  3273. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +12 -0
  3274. package/node_modules/@smithy/config-resolver/package.json +64 -0
  3275. package/node_modules/@smithy/core/LICENSE +201 -0
  3276. package/node_modules/@smithy/core/README.md +12 -0
  3277. package/node_modules/@smithy/core/dist-cjs/getSmithyContext.js +1 -0
  3278. package/node_modules/@smithy/core/dist-cjs/index.js +482 -0
  3279. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +1 -0
  3280. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +1 -0
  3281. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +1 -0
  3282. package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/index.js +1 -0
  3283. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/getHttpSigningMiddleware.js +1 -0
  3284. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/httpSigningMiddleware.js +1 -0
  3285. package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/index.js +1 -0
  3286. package/node_modules/@smithy/core/dist-cjs/normalizeProvider.js +1 -0
  3287. package/node_modules/@smithy/core/dist-cjs/pagination/createPaginator.js +1 -0
  3288. package/node_modules/@smithy/core/dist-cjs/protocols/requestBuilder.js +1 -0
  3289. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/DefaultIdentityProviderConfig.js +1 -0
  3290. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +1 -0
  3291. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +1 -0
  3292. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/index.js +1 -0
  3293. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/noAuth.js +1 -0
  3294. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/index.js +1 -0
  3295. package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/memoizeIdentityProvider.js +1 -0
  3296. package/node_modules/@smithy/core/dist-es/getSmithyContext.js +2 -0
  3297. package/node_modules/@smithy/core/dist-es/index.js +7 -0
  3298. package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +18 -0
  3299. package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +18 -0
  3300. package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +40 -0
  3301. package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/index.js +3 -0
  3302. package/node_modules/@smithy/core/dist-es/middleware-http-signing/getHttpSigningMiddleware.js +16 -0
  3303. package/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +24 -0
  3304. package/node_modules/@smithy/core/dist-es/middleware-http-signing/index.js +2 -0
  3305. package/node_modules/@smithy/core/dist-es/normalizeProvider.js +6 -0
  3306. package/node_modules/@smithy/core/dist-es/pagination/createPaginator.js +27 -0
  3307. package/node_modules/@smithy/core/dist-es/protocols/requestBuilder.js +67 -0
  3308. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js +13 -0
  3309. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +33 -0
  3310. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +10 -0
  3311. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/index.js +3 -0
  3312. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/noAuth.js +5 -0
  3313. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/index.js +3 -0
  3314. package/node_modules/@smithy/core/dist-es/util-identity-and-auth/memoizeIdentityProvider.js +53 -0
  3315. package/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +5 -0
  3316. package/node_modules/@smithy/core/dist-types/index.d.ts +7 -0
  3317. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
  3318. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
  3319. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +32 -0
  3320. package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts +3 -0
  3321. package/node_modules/@smithy/core/dist-types/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
  3322. package/node_modules/@smithy/core/dist-types/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
  3323. package/node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts +2 -0
  3324. package/node_modules/@smithy/core/dist-types/normalizeProvider.d.ts +7 -0
  3325. package/node_modules/@smithy/core/dist-types/pagination/createPaginator.d.ts +7 -0
  3326. package/node_modules/@smithy/core/dist-types/protocols/requestBuilder.d.ts +51 -0
  3327. package/node_modules/@smithy/core/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
  3328. package/node_modules/@smithy/core/dist-types/ts3.4/index.d.ts +7 -0
  3329. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
  3330. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
  3331. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +32 -0
  3332. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/index.d.ts +3 -0
  3333. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
  3334. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
  3335. package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/index.d.ts +2 -0
  3336. package/node_modules/@smithy/core/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
  3337. package/node_modules/@smithy/core/dist-types/ts3.4/pagination/createPaginator.d.ts +7 -0
  3338. package/node_modules/@smithy/core/dist-types/ts3.4/protocols/requestBuilder.d.ts +51 -0
  3339. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
  3340. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
  3341. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
  3342. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
  3343. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
  3344. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/index.d.ts +3 -0
  3345. package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
  3346. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
  3347. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
  3348. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
  3349. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
  3350. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
  3351. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts +3 -0
  3352. package/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
  3353. package/node_modules/@smithy/core/package.json +67 -0
  3354. package/node_modules/@smithy/credential-provider-imds/LICENSE +201 -0
  3355. package/node_modules/@smithy/credential-provider-imds/README.md +11 -0
  3356. package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/Endpoint.js +1 -0
  3357. package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointConfigOptions.js +1 -0
  3358. package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointMode.js +1 -0
  3359. package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointModeConfigOptions.js +1 -0
  3360. package/node_modules/@smithy/credential-provider-imds/dist-cjs/error/InstanceMetadataV1FallbackError.js +1 -0
  3361. package/node_modules/@smithy/credential-provider-imds/dist-cjs/fromContainerMetadata.js +1 -0
  3362. package/node_modules/@smithy/credential-provider-imds/dist-cjs/fromInstanceMetadata.js +1 -0
  3363. package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +427 -0
  3364. package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/ImdsCredentials.js +1 -0
  3365. package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/RemoteProviderInit.js +1 -0
  3366. package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/httpRequest.js +1 -0
  3367. package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/index.js +1 -0
  3368. package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/retry.js +1 -0
  3369. package/node_modules/@smithy/credential-provider-imds/dist-cjs/types.js +1 -0
  3370. package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/getExtendedInstanceMetadataCredentials.js +1 -0
  3371. package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/getInstanceMetadataEndpoint.js +1 -0
  3372. package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/staticStabilityProvider.js +1 -0
  3373. package/node_modules/@smithy/credential-provider-imds/dist-es/config/Endpoint.js +5 -0
  3374. package/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointConfigOptions.js +7 -0
  3375. package/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointMode.js +5 -0
  3376. package/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js +8 -0
  3377. package/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +9 -0
  3378. package/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +66 -0
  3379. package/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js +132 -0
  3380. package/node_modules/@smithy/credential-provider-imds/dist-es/index.js +6 -0
  3381. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js +12 -0
  3382. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js +3 -0
  3383. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +36 -0
  3384. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/index.js +2 -0
  3385. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/retry.js +7 -0
  3386. package/node_modules/@smithy/credential-provider-imds/dist-es/types.js +1 -0
  3387. package/node_modules/@smithy/credential-provider-imds/dist-es/utils/getExtendedInstanceMetadataCredentials.js +17 -0
  3388. package/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +19 -0
  3389. package/node_modules/@smithy/credential-provider-imds/dist-es/utils/staticStabilityProvider.js +25 -0
  3390. package/node_modules/@smithy/credential-provider-imds/dist-types/config/Endpoint.d.ts +7 -0
  3391. package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +13 -0
  3392. package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointMode.d.ts +7 -0
  3393. package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +13 -0
  3394. package/node_modules/@smithy/credential-provider-imds/dist-types/error/InstanceMetadataV1FallbackError.d.ts +12 -0
  3395. package/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +21 -0
  3396. package/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +10 -0
  3397. package/node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts +24 -0
  3398. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +18 -0
  3399. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/RemoteProviderInit.d.ts +40 -0
  3400. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +7 -0
  3401. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/index.d.ts +8 -0
  3402. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/retry.d.ts +10 -0
  3403. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +7 -0
  3404. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +13 -0
  3405. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +7 -0
  3406. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +13 -0
  3407. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/error/InstanceMetadataV1FallbackError.d.ts +12 -0
  3408. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +21 -0
  3409. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +10 -0
  3410. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/index.d.ts +24 -0
  3411. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +18 -0
  3412. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +40 -0
  3413. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +6 -0
  3414. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +8 -0
  3415. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +10 -0
  3416. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/types.d.ts +7 -0
  3417. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
  3418. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +21 -0
  3419. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +16 -0
  3420. package/node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts +7 -0
  3421. package/node_modules/@smithy/credential-provider-imds/dist-types/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
  3422. package/node_modules/@smithy/credential-provider-imds/dist-types/utils/getInstanceMetadataEndpoint.d.ts +21 -0
  3423. package/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +16 -0
  3424. package/node_modules/@smithy/credential-provider-imds/package.json +70 -0
  3425. package/node_modules/@smithy/eventstream-codec/LICENSE +201 -0
  3426. package/node_modules/@smithy/eventstream-codec/README.md +4 -0
  3427. package/node_modules/@smithy/eventstream-codec/dist-cjs/EventStreamCodec.js +1 -0
  3428. package/node_modules/@smithy/eventstream-codec/dist-cjs/HeaderMarshaller.js +1 -0
  3429. package/node_modules/@smithy/eventstream-codec/dist-cjs/Int64.js +1 -0
  3430. package/node_modules/@smithy/eventstream-codec/dist-cjs/Message.js +1 -0
  3431. package/node_modules/@smithy/eventstream-codec/dist-cjs/MessageDecoderStream.js +1 -0
  3432. package/node_modules/@smithy/eventstream-codec/dist-cjs/MessageEncoderStream.js +1 -0
  3433. package/node_modules/@smithy/eventstream-codec/dist-cjs/SmithyMessageDecoderStream.js +1 -0
  3434. package/node_modules/@smithy/eventstream-codec/dist-cjs/SmithyMessageEncoderStream.js +1 -0
  3435. package/node_modules/@smithy/eventstream-codec/dist-cjs/TestVectors.fixture.js +1 -0
  3436. package/node_modules/@smithy/eventstream-codec/dist-cjs/index.js +468 -0
  3437. package/node_modules/@smithy/eventstream-codec/dist-cjs/splitMessage.js +1 -0
  3438. package/node_modules/@smithy/eventstream-codec/dist-cjs/vectorTypes.fixture.js +1 -0
  3439. package/node_modules/@smithy/eventstream-codec/dist-es/EventStreamCodec.js +62 -0
  3440. package/node_modules/@smithy/eventstream-codec/dist-es/HeaderMarshaller.js +182 -0
  3441. package/node_modules/@smithy/eventstream-codec/dist-es/Int64.js +43 -0
  3442. package/node_modules/@smithy/eventstream-codec/dist-es/Message.js +1 -0
  3443. package/node_modules/@smithy/eventstream-codec/dist-es/MessageDecoderStream.js +14 -0
  3444. package/node_modules/@smithy/eventstream-codec/dist-es/MessageEncoderStream.js +17 -0
  3445. package/node_modules/@smithy/eventstream-codec/dist-es/SmithyMessageDecoderStream.js +16 -0
  3446. package/node_modules/@smithy/eventstream-codec/dist-es/SmithyMessageEncoderStream.js +14 -0
  3447. package/node_modules/@smithy/eventstream-codec/dist-es/TestVectors.fixture.js +690 -0
  3448. package/node_modules/@smithy/eventstream-codec/dist-es/index.js +8 -0
  3449. package/node_modules/@smithy/eventstream-codec/dist-es/splitMessage.js +30 -0
  3450. package/node_modules/@smithy/eventstream-codec/dist-es/vectorTypes.fixture.js +1 -0
  3451. package/node_modules/@smithy/eventstream-codec/dist-types/EventStreamCodec.d.ts +31 -0
  3452. package/node_modules/@smithy/eventstream-codec/dist-types/HeaderMarshaller.d.ts +12 -0
  3453. package/node_modules/@smithy/eventstream-codec/dist-types/Int64.d.ts +20 -0
  3454. package/node_modules/@smithy/eventstream-codec/dist-types/Message.d.ts +26 -0
  3455. package/node_modules/@smithy/eventstream-codec/dist-types/MessageDecoderStream.d.ts +17 -0
  3456. package/node_modules/@smithy/eventstream-codec/dist-types/MessageEncoderStream.d.ts +18 -0
  3457. package/node_modules/@smithy/eventstream-codec/dist-types/SmithyMessageDecoderStream.d.ts +17 -0
  3458. package/node_modules/@smithy/eventstream-codec/dist-types/SmithyMessageEncoderStream.d.ts +17 -0
  3459. package/node_modules/@smithy/eventstream-codec/dist-types/TestVectors.fixture.d.ts +2 -0
  3460. package/node_modules/@smithy/eventstream-codec/dist-types/index.d.ts +8 -0
  3461. package/node_modules/@smithy/eventstream-codec/dist-types/splitMessage.d.ts +11 -0
  3462. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/EventStreamCodec.d.ts +31 -0
  3463. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/HeaderMarshaller.d.ts +12 -0
  3464. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/Int64.d.ts +20 -0
  3465. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/Message.d.ts +26 -0
  3466. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/MessageDecoderStream.d.ts +17 -0
  3467. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/MessageEncoderStream.d.ts +18 -0
  3468. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/SmithyMessageDecoderStream.d.ts +17 -0
  3469. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/SmithyMessageEncoderStream.d.ts +17 -0
  3470. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/TestVectors.fixture.d.ts +2 -0
  3471. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/index.d.ts +8 -0
  3472. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/splitMessage.d.ts +11 -0
  3473. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/vectorTypes.fixture.d.ts +12 -0
  3474. package/node_modules/@smithy/eventstream-codec/dist-types/vectorTypes.fixture.d.ts +12 -0
  3475. package/node_modules/@smithy/eventstream-codec/package.json +61 -0
  3476. package/node_modules/@smithy/fetch-http-handler/LICENSE +201 -0
  3477. package/node_modules/@smithy/fetch-http-handler/README.md +4 -0
  3478. package/node_modules/@smithy/fetch-http-handler/dist-cjs/fetch-http-handler.js +1 -0
  3479. package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +220 -0
  3480. package/node_modules/@smithy/fetch-http-handler/dist-cjs/request-timeout.js +1 -0
  3481. package/node_modules/@smithy/fetch-http-handler/dist-cjs/stream-collector.js +1 -0
  3482. package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +111 -0
  3483. package/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -0
  3484. package/node_modules/@smithy/fetch-http-handler/dist-es/request-timeout.js +11 -0
  3485. package/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +45 -0
  3486. package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +33 -0
  3487. package/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -0
  3488. package/node_modules/@smithy/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
  3489. package/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
  3490. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +33 -0
  3491. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
  3492. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
  3493. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
  3494. package/node_modules/@smithy/fetch-http-handler/package.json +79 -0
  3495. package/node_modules/@smithy/hash-node/LICENSE +201 -0
  3496. package/node_modules/@smithy/hash-node/README.md +10 -0
  3497. package/node_modules/@smithy/hash-node/dist-cjs/index.js +66 -0
  3498. package/node_modules/@smithy/hash-node/dist-es/index.js +34 -0
  3499. package/node_modules/@smithy/hash-node/dist-types/index.d.ts +13 -0
  3500. package/node_modules/@smithy/hash-node/dist-types/ts3.4/index.d.ts +13 -0
  3501. package/node_modules/@smithy/hash-node/package.json +64 -0
  3502. package/node_modules/@smithy/invalid-dependency/LICENSE +201 -0
  3503. package/node_modules/@smithy/invalid-dependency/README.md +10 -0
  3504. package/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +41 -0
  3505. package/node_modules/@smithy/invalid-dependency/dist-cjs/invalidFunction.js +1 -0
  3506. package/node_modules/@smithy/invalid-dependency/dist-cjs/invalidProvider.js +1 -0
  3507. package/node_modules/@smithy/invalid-dependency/dist-es/index.js +2 -0
  3508. package/node_modules/@smithy/invalid-dependency/dist-es/invalidFunction.js +3 -0
  3509. package/node_modules/@smithy/invalid-dependency/dist-es/invalidProvider.js +1 -0
  3510. package/node_modules/@smithy/invalid-dependency/dist-types/index.d.ts +8 -0
  3511. package/node_modules/@smithy/invalid-dependency/dist-types/invalidFunction.d.ts +4 -0
  3512. package/node_modules/@smithy/invalid-dependency/dist-types/invalidProvider.d.ts +5 -0
  3513. package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/index.d.ts +8 -0
  3514. package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +4 -0
  3515. package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +5 -0
  3516. package/node_modules/@smithy/invalid-dependency/package.json +57 -0
  3517. package/node_modules/@smithy/is-array-buffer/LICENSE +201 -0
  3518. package/node_modules/@smithy/is-array-buffer/README.md +10 -0
  3519. package/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +32 -0
  3520. package/node_modules/@smithy/is-array-buffer/dist-es/index.js +2 -0
  3521. package/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +4 -0
  3522. package/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +4 -0
  3523. package/node_modules/@smithy/is-array-buffer/package.json +60 -0
  3524. package/node_modules/@smithy/middleware-content-length/LICENSE +201 -0
  3525. package/node_modules/@smithy/middleware-content-length/README.md +4 -0
  3526. package/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +71 -0
  3527. package/node_modules/@smithy/middleware-content-length/dist-es/index.js +39 -0
  3528. package/node_modules/@smithy/middleware-content-length/dist-types/index.d.ts +6 -0
  3529. package/node_modules/@smithy/middleware-content-length/dist-types/ts3.4/index.d.ts +6 -0
  3530. package/node_modules/@smithy/middleware-content-length/package.json +63 -0
  3531. package/node_modules/@smithy/middleware-endpoint/LICENSE +201 -0
  3532. package/node_modules/@smithy/middleware-endpoint/README.md +10 -0
  3533. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/createConfigValueProvider.js +1 -0
  3534. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.browser.js +5 -0
  3535. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +7 -0
  3536. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromInstructions.js +1 -0
  3537. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js +35 -0
  3538. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/index.js +1 -0
  3539. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/toEndpointV1.js +1 -0
  3540. package/node_modules/@smithy/middleware-endpoint/dist-cjs/endpointMiddleware.js +1 -0
  3541. package/node_modules/@smithy/middleware-endpoint/dist-cjs/getEndpointPlugin.js +1 -0
  3542. package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +254 -0
  3543. package/node_modules/@smithy/middleware-endpoint/dist-cjs/resolveEndpointConfig.js +1 -0
  3544. package/node_modules/@smithy/middleware-endpoint/dist-cjs/service-customizations/index.js +1 -0
  3545. package/node_modules/@smithy/middleware-endpoint/dist-cjs/service-customizations/s3.js +1 -0
  3546. package/node_modules/@smithy/middleware-endpoint/dist-cjs/types.js +1 -0
  3547. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/createConfigValueProvider.js +32 -0
  3548. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.browser.js +1 -0
  3549. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.js +3 -0
  3550. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +45 -0
  3551. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointUrlConfig.js +31 -0
  3552. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/index.js +2 -0
  3553. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +10 -0
  3554. package/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +32 -0
  3555. package/node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js +18 -0
  3556. package/node_modules/@smithy/middleware-endpoint/dist-es/index.js +5 -0
  3557. package/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointConfig.js +16 -0
  3558. package/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/index.js +1 -0
  3559. package/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/s3.js +37 -0
  3560. package/node_modules/@smithy/middleware-endpoint/dist-es/types.js +1 -0
  3561. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/createConfigValueProvider.d.ts +13 -0
  3562. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
  3563. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.d.ts +1 -0
  3564. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +28 -0
  3565. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +2 -0
  3566. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts +8 -0
  3567. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +5 -0
  3568. package/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +10 -0
  3569. package/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +11 -0
  3570. package/node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts +17 -0
  3571. package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +93 -0
  3572. package/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/index.d.ts +4 -0
  3573. package/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/s3.d.ts +26 -0
  3574. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/createConfigValueProvider.d.ts +13 -0
  3575. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
  3576. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.d.ts +1 -0
  3577. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromInstructions.d.ts +28 -0
  3578. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointUrlConfig.d.ts +2 -0
  3579. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/index.d.ts +8 -0
  3580. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/toEndpointV1.d.ts +5 -0
  3581. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/endpointMiddleware.d.ts +10 -0
  3582. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/getEndpointPlugin.d.ts +11 -0
  3583. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/index.d.ts +17 -0
  3584. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +93 -0
  3585. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/index.d.ts +4 -0
  3586. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/s3.d.ts +26 -0
  3587. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/types.d.ts +34 -0
  3588. package/node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts +34 -0
  3589. package/node_modules/@smithy/middleware-endpoint/package.json +73 -0
  3590. package/node_modules/@smithy/middleware-retry/LICENSE +201 -0
  3591. package/node_modules/@smithy/middleware-retry/README.md +11 -0
  3592. package/node_modules/@smithy/middleware-retry/dist-cjs/AdaptiveRetryStrategy.js +1 -0
  3593. package/node_modules/@smithy/middleware-retry/dist-cjs/StandardRetryStrategy.js +1 -0
  3594. package/node_modules/@smithy/middleware-retry/dist-cjs/configurations.js +1 -0
  3595. package/node_modules/@smithy/middleware-retry/dist-cjs/defaultRetryQuota.js +1 -0
  3596. package/node_modules/@smithy/middleware-retry/dist-cjs/delayDecider.js +1 -0
  3597. package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +424 -0
  3598. package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +5 -0
  3599. package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +7 -0
  3600. package/node_modules/@smithy/middleware-retry/dist-cjs/omitRetryHeadersMiddleware.js +1 -0
  3601. package/node_modules/@smithy/middleware-retry/dist-cjs/retryDecider.js +1 -0
  3602. package/node_modules/@smithy/middleware-retry/dist-cjs/retryMiddleware.js +1 -0
  3603. package/node_modules/@smithy/middleware-retry/dist-cjs/types.js +1 -0
  3604. package/node_modules/@smithy/middleware-retry/dist-cjs/util.js +1 -0
  3605. package/node_modules/@smithy/middleware-retry/dist-es/AdaptiveRetryStrategy.js +20 -0
  3606. package/node_modules/@smithy/middleware-retry/dist-es/StandardRetryStrategy.js +90 -0
  3607. package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +52 -0
  3608. package/node_modules/@smithy/middleware-retry/dist-es/defaultRetryQuota.js +27 -0
  3609. package/node_modules/@smithy/middleware-retry/dist-es/delayDecider.js +2 -0
  3610. package/node_modules/@smithy/middleware-retry/dist-es/index.js +7 -0
  3611. package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.browser.js +1 -0
  3612. package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +3 -0
  3613. package/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +22 -0
  3614. package/node_modules/@smithy/middleware-retry/dist-es/retryDecider.js +7 -0
  3615. package/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +111 -0
  3616. package/node_modules/@smithy/middleware-retry/dist-es/types.js +1 -0
  3617. package/node_modules/@smithy/middleware-retry/dist-es/util.js +9 -0
  3618. package/node_modules/@smithy/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +20 -0
  3619. package/node_modules/@smithy/middleware-retry/dist-types/StandardRetryStrategy.d.ts +30 -0
  3620. package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +40 -0
  3621. package/node_modules/@smithy/middleware-retry/dist-types/defaultRetryQuota.d.ts +18 -0
  3622. package/node_modules/@smithy/middleware-retry/dist-types/delayDecider.d.ts +4 -0
  3623. package/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +7 -0
  3624. package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
  3625. package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +5 -0
  3626. package/node_modules/@smithy/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +4 -0
  3627. package/node_modules/@smithy/middleware-retry/dist-types/retryDecider.d.ts +2 -0
  3628. package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +6 -0
  3629. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +20 -0
  3630. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +30 -0
  3631. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/configurations.d.ts +40 -0
  3632. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +18 -0
  3633. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +4 -0
  3634. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/index.d.ts +7 -0
  3635. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
  3636. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.d.ts +5 -0
  3637. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +4 -0
  3638. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +2 -0
  3639. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +6 -0
  3640. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/types.d.ts +53 -0
  3641. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/util.d.ts +2 -0
  3642. package/node_modules/@smithy/middleware-retry/dist-types/types.d.ts +53 -0
  3643. package/node_modules/@smithy/middleware-retry/dist-types/util.d.ts +2 -0
  3644. package/node_modules/@smithy/middleware-retry/package.json +78 -0
  3645. package/node_modules/@smithy/middleware-serde/LICENSE +201 -0
  3646. package/node_modules/@smithy/middleware-serde/README.md +4 -0
  3647. package/node_modules/@smithy/middleware-serde/dist-cjs/deserializerMiddleware.js +1 -0
  3648. package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +97 -0
  3649. package/node_modules/@smithy/middleware-serde/dist-cjs/serdePlugin.js +1 -0
  3650. package/node_modules/@smithy/middleware-serde/dist-cjs/serializerMiddleware.js +1 -0
  3651. package/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +20 -0
  3652. package/node_modules/@smithy/middleware-serde/dist-es/index.js +3 -0
  3653. package/node_modules/@smithy/middleware-serde/dist-es/serdePlugin.js +22 -0
  3654. package/node_modules/@smithy/middleware-serde/dist-es/serializerMiddleware.js +13 -0
  3655. package/node_modules/@smithy/middleware-serde/dist-types/deserializerMiddleware.d.ts +2 -0
  3656. package/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +3 -0
  3657. package/node_modules/@smithy/middleware-serde/dist-types/serdePlugin.d.ts +8 -0
  3658. package/node_modules/@smithy/middleware-serde/dist-types/serializerMiddleware.d.ts +3 -0
  3659. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +2 -0
  3660. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/index.d.ts +3 -0
  3661. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +8 -0
  3662. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +3 -0
  3663. package/node_modules/@smithy/middleware-serde/package.json +62 -0
  3664. package/node_modules/@smithy/middleware-stack/LICENSE +201 -0
  3665. package/node_modules/@smithy/middleware-stack/README.md +78 -0
  3666. package/node_modules/@smithy/middleware-stack/dist-cjs/MiddlewareStack.js +1 -0
  3667. package/node_modules/@smithy/middleware-stack/dist-cjs/index.js +318 -0
  3668. package/node_modules/@smithy/middleware-stack/dist-cjs/types.js +1 -0
  3669. package/node_modules/@smithy/middleware-stack/dist-es/MiddlewareStack.js +281 -0
  3670. package/node_modules/@smithy/middleware-stack/dist-es/index.js +1 -0
  3671. package/node_modules/@smithy/middleware-stack/dist-es/types.js +1 -0
  3672. package/node_modules/@smithy/middleware-stack/dist-types/MiddlewareStack.d.ts +2 -0
  3673. package/node_modules/@smithy/middleware-stack/dist-types/index.d.ts +1 -0
  3674. package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +2 -0
  3675. package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/index.d.ts +1 -0
  3676. package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/types.d.ts +22 -0
  3677. package/node_modules/@smithy/middleware-stack/dist-types/types.d.ts +22 -0
  3678. package/node_modules/@smithy/middleware-stack/package.json +63 -0
  3679. package/node_modules/@smithy/node-config-provider/LICENSE +201 -0
  3680. package/node_modules/@smithy/node-config-provider/README.md +4 -0
  3681. package/node_modules/@smithy/node-config-provider/dist-cjs/configLoader.js +1 -0
  3682. package/node_modules/@smithy/node-config-provider/dist-cjs/fromEnv.js +1 -0
  3683. package/node_modules/@smithy/node-config-provider/dist-cjs/fromSharedConfigFiles.js +1 -0
  3684. package/node_modules/@smithy/node-config-provider/dist-cjs/fromStatic.js +1 -0
  3685. package/node_modules/@smithy/node-config-provider/dist-cjs/index.js +87 -0
  3686. package/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +5 -0
  3687. package/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +13 -0
  3688. package/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +22 -0
  3689. package/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +3 -0
  3690. package/node_modules/@smithy/node-config-provider/dist-es/index.js +1 -0
  3691. package/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +22 -0
  3692. package/node_modules/@smithy/node-config-provider/dist-types/fromEnv.d.ts +7 -0
  3693. package/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +15 -0
  3694. package/node_modules/@smithy/node-config-provider/dist-types/fromStatic.d.ts +3 -0
  3695. package/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +1 -0
  3696. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/configLoader.d.ts +22 -0
  3697. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +7 -0
  3698. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +15 -0
  3699. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +3 -0
  3700. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/index.d.ts +1 -0
  3701. package/node_modules/@smithy/node-config-provider/package.json +65 -0
  3702. package/node_modules/@smithy/node-http-handler/LICENSE +201 -0
  3703. package/node_modules/@smithy/node-http-handler/README.md +4 -0
  3704. package/node_modules/@smithy/node-http-handler/dist-cjs/constants.js +1 -0
  3705. package/node_modules/@smithy/node-http-handler/dist-cjs/get-transformed-headers.js +1 -0
  3706. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +626 -0
  3707. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http-handler.js +1 -0
  3708. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-manager.js +1 -0
  3709. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-pool.js +1 -0
  3710. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-handler.js +1 -0
  3711. package/node_modules/@smithy/node-http-handler/dist-cjs/readable.mock.js +1 -0
  3712. package/node_modules/@smithy/node-http-handler/dist-cjs/server.mock.js +1 -0
  3713. package/node_modules/@smithy/node-http-handler/dist-cjs/set-connection-timeout.js +1 -0
  3714. package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-keep-alive.js +1 -0
  3715. package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-timeout.js +1 -0
  3716. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/collector.js +1 -0
  3717. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/index.js +1 -0
  3718. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/readable.mock.js +1 -0
  3719. package/node_modules/@smithy/node-http-handler/dist-cjs/write-request-body.js +1 -0
  3720. package/node_modules/@smithy/node-http-handler/dist-es/constants.js +1 -0
  3721. package/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +9 -0
  3722. package/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -0
  3723. package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +146 -0
  3724. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +86 -0
  3725. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -0
  3726. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +159 -0
  3727. package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +19 -0
  3728. package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +51 -0
  3729. package/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +21 -0
  3730. package/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +8 -0
  3731. package/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +6 -0
  3732. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +11 -0
  3733. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +14 -0
  3734. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +19 -0
  3735. package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +40 -0
  3736. package/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +5 -0
  3737. package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
  3738. package/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -0
  3739. package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +25 -0
  3740. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +22 -0
  3741. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +13 -0
  3742. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +57 -0
  3743. package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +14 -0
  3744. package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +10 -0
  3745. package/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
  3746. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
  3747. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
  3748. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +7 -0
  3749. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +2 -0
  3750. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +14 -0
  3751. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
  3752. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
  3753. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
  3754. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +25 -0
  3755. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +22 -0
  3756. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +13 -0
  3757. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +57 -0
  3758. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
  3759. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +10 -0
  3760. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
  3761. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
  3762. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
  3763. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +6 -0
  3764. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +2 -0
  3765. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
  3766. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
  3767. package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +13 -0
  3768. package/node_modules/@smithy/node-http-handler/package.json +67 -0
  3769. package/node_modules/@smithy/property-provider/LICENSE +201 -0
  3770. package/node_modules/@smithy/property-provider/README.md +10 -0
  3771. package/node_modules/@smithy/property-provider/dist-cjs/CredentialsProviderError.js +1 -0
  3772. package/node_modules/@smithy/property-provider/dist-cjs/ProviderError.js +1 -0
  3773. package/node_modules/@smithy/property-provider/dist-cjs/TokenProviderError.js +1 -0
  3774. package/node_modules/@smithy/property-provider/dist-cjs/chain.js +1 -0
  3775. package/node_modules/@smithy/property-provider/dist-cjs/fromStatic.js +1 -0
  3776. package/node_modules/@smithy/property-provider/dist-cjs/index.js +150 -0
  3777. package/node_modules/@smithy/property-provider/dist-cjs/memoize.js +1 -0
  3778. package/node_modules/@smithy/property-provider/dist-es/CredentialsProviderError.js +9 -0
  3779. package/node_modules/@smithy/property-provider/dist-es/ProviderError.js +11 -0
  3780. package/node_modules/@smithy/property-provider/dist-es/TokenProviderError.js +9 -0
  3781. package/node_modules/@smithy/property-provider/dist-es/chain.js +21 -0
  3782. package/node_modules/@smithy/property-provider/dist-es/fromStatic.js +1 -0
  3783. package/node_modules/@smithy/property-provider/dist-es/index.js +6 -0
  3784. package/node_modules/@smithy/property-provider/dist-es/memoize.js +45 -0
  3785. package/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +17 -0
  3786. package/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +17 -0
  3787. package/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +17 -0
  3788. package/node_modules/@smithy/property-provider/dist-types/chain.d.ts +13 -0
  3789. package/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +5 -0
  3790. package/node_modules/@smithy/property-provider/dist-types/index.d.ts +24 -0
  3791. package/node_modules/@smithy/property-provider/dist-types/memoize.d.ts +40 -0
  3792. package/node_modules/@smithy/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +17 -0
  3793. package/node_modules/@smithy/property-provider/dist-types/ts3.4/ProviderError.d.ts +17 -0
  3794. package/node_modules/@smithy/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +17 -0
  3795. package/node_modules/@smithy/property-provider/dist-types/ts3.4/chain.d.ts +13 -0
  3796. package/node_modules/@smithy/property-provider/dist-types/ts3.4/fromStatic.d.ts +5 -0
  3797. package/node_modules/@smithy/property-provider/dist-types/ts3.4/index.d.ts +24 -0
  3798. package/node_modules/@smithy/property-provider/dist-types/ts3.4/memoize.d.ts +40 -0
  3799. package/node_modules/@smithy/property-provider/package.json +60 -0
  3800. package/node_modules/@smithy/protocol-http/LICENSE +201 -0
  3801. package/node_modules/@smithy/protocol-http/README.md +4 -0
  3802. package/node_modules/@smithy/protocol-http/dist-cjs/Field.js +1 -0
  3803. package/node_modules/@smithy/protocol-http/dist-cjs/Fields.js +1 -0
  3804. package/node_modules/@smithy/protocol-http/dist-cjs/extensions/httpExtensionConfiguration.js +1 -0
  3805. package/node_modules/@smithy/protocol-http/dist-cjs/extensions/index.js +1 -0
  3806. package/node_modules/@smithy/protocol-http/dist-cjs/httpHandler.js +1 -0
  3807. package/node_modules/@smithy/protocol-http/dist-cjs/httpRequest.js +1 -0
  3808. package/node_modules/@smithy/protocol-http/dist-cjs/httpResponse.js +1 -0
  3809. package/node_modules/@smithy/protocol-http/dist-cjs/index.js +237 -0
  3810. package/node_modules/@smithy/protocol-http/dist-cjs/isValidHostname.js +1 -0
  3811. package/node_modules/@smithy/protocol-http/dist-cjs/types.js +1 -0
  3812. package/node_modules/@smithy/protocol-http/dist-es/Field.js +23 -0
  3813. package/node_modules/@smithy/protocol-http/dist-es/Fields.js +19 -0
  3814. package/node_modules/@smithy/protocol-http/dist-es/extensions/httpExtensionConfiguration.js +22 -0
  3815. package/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +1 -0
  3816. package/node_modules/@smithy/protocol-http/dist-es/httpHandler.js +1 -0
  3817. package/node_modules/@smithy/protocol-http/dist-es/httpRequest.js +48 -0
  3818. package/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +14 -0
  3819. package/node_modules/@smithy/protocol-http/dist-es/index.js +8 -0
  3820. package/node_modules/@smithy/protocol-http/dist-es/isValidHostname.js +4 -0
  3821. package/node_modules/@smithy/protocol-http/dist-es/types.js +1 -0
  3822. package/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +49 -0
  3823. package/node_modules/@smithy/protocol-http/dist-types/Fields.d.ts +44 -0
  3824. package/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +37 -0
  3825. package/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +1 -0
  3826. package/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +18 -0
  3827. package/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +23 -0
  3828. package/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +16 -0
  3829. package/node_modules/@smithy/protocol-http/dist-types/index.d.ts +8 -0
  3830. package/node_modules/@smithy/protocol-http/dist-types/isValidHostname.d.ts +1 -0
  3831. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +49 -0
  3832. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/Fields.d.ts +44 -0
  3833. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/httpExtensionConfiguration.d.ts +37 -0
  3834. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/index.d.ts +1 -0
  3835. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpHandler.d.ts +18 -0
  3836. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +23 -0
  3837. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpResponse.d.ts +16 -0
  3838. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/index.d.ts +8 -0
  3839. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -0
  3840. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/types.d.ts +21 -0
  3841. package/node_modules/@smithy/protocol-http/dist-types/types.d.ts +21 -0
  3842. package/node_modules/@smithy/protocol-http/package.json +61 -0
  3843. package/node_modules/@smithy/querystring-builder/LICENSE +201 -0
  3844. package/node_modules/@smithy/querystring-builder/README.md +10 -0
  3845. package/node_modules/@smithy/querystring-builder/dist-cjs/index.js +52 -0
  3846. package/node_modules/@smithy/querystring-builder/dist-es/index.js +21 -0
  3847. package/node_modules/@smithy/querystring-builder/dist-types/index.d.ts +5 -0
  3848. package/node_modules/@smithy/querystring-builder/dist-types/ts3.4/index.d.ts +5 -0
  3849. package/node_modules/@smithy/querystring-builder/package.json +61 -0
  3850. package/node_modules/@smithy/querystring-parser/LICENSE +201 -0
  3851. package/node_modules/@smithy/querystring-parser/README.md +10 -0
  3852. package/node_modules/@smithy/querystring-parser/dist-cjs/index.js +53 -0
  3853. package/node_modules/@smithy/querystring-parser/dist-es/index.js +23 -0
  3854. package/node_modules/@smithy/querystring-parser/dist-types/index.d.ts +5 -0
  3855. package/node_modules/@smithy/querystring-parser/dist-types/ts3.4/index.d.ts +5 -0
  3856. package/node_modules/@smithy/querystring-parser/package.json +60 -0
  3857. package/node_modules/@smithy/service-error-classification/LICENSE +201 -0
  3858. package/node_modules/@smithy/service-error-classification/README.md +4 -0
  3859. package/node_modules/@smithy/service-error-classification/dist-cjs/constants.js +1 -0
  3860. package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +92 -0
  3861. package/node_modules/@smithy/service-error-classification/dist-es/constants.js +27 -0
  3862. package/node_modules/@smithy/service-error-classification/dist-es/index.js +19 -0
  3863. package/node_modules/@smithy/service-error-classification/dist-types/constants.d.ts +26 -0
  3864. package/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +12 -0
  3865. package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/constants.d.ts +26 -0
  3866. package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/index.d.ts +12 -0
  3867. package/node_modules/@smithy/service-error-classification/package.json +59 -0
  3868. package/node_modules/@smithy/shared-ini-file-loader/LICENSE +201 -0
  3869. package/node_modules/@smithy/shared-ini-file-loader/README.md +105 -0
  3870. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getConfigData.js +1 -0
  3871. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getConfigFilepath.js +1 -0
  3872. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getCredentialsFilepath.js +1 -0
  3873. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js +26 -0
  3874. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getProfileName.js +1 -0
  3875. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +12 -0
  3876. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +12 -0
  3877. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSsoSessionData.js +1 -0
  3878. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +190 -0
  3879. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/loadSharedConfigFiles.js +1 -0
  3880. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/loadSsoSessionData.js +1 -0
  3881. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/mergeConfigFiles.js +1 -0
  3882. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/parseIni.js +1 -0
  3883. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/parseKnownFiles.js +1 -0
  3884. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/slurpFile.js +13 -0
  3885. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/types.js +1 -0
  3886. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigData.js +18 -0
  3887. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigFilepath.js +4 -0
  3888. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +4 -0
  3889. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getHomeDir.js +22 -0
  3890. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getProfileName.js +3 -0
  3891. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +8 -0
  3892. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +8 -0
  3893. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSsoSessionData.js +5 -0
  3894. package/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +8 -0
  3895. package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +27 -0
  3896. package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSsoSessionData.js +9 -0
  3897. package/node_modules/@smithy/shared-ini-file-loader/dist-es/mergeConfigFiles.js +14 -0
  3898. package/node_modules/@smithy/shared-ini-file-loader/dist-es/parseIni.js +52 -0
  3899. package/node_modules/@smithy/shared-ini-file-loader/dist-es/parseKnownFiles.js +6 -0
  3900. package/node_modules/@smithy/shared-ini-file-loader/dist-es/slurpFile.js +9 -0
  3901. package/node_modules/@smithy/shared-ini-file-loader/dist-es/types.js +1 -0
  3902. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +8 -0
  3903. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigFilepath.d.ts +2 -0
  3904. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getCredentialsFilepath.d.ts +2 -0
  3905. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getHomeDir.d.ts +6 -0
  3906. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getProfileName.d.ts +5 -0
  3907. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFilepath.d.ts +4 -0
  3908. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +44 -0
  3909. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +6 -0
  3910. package/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +8 -0
  3911. package/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSharedConfigFiles.d.ts +22 -0
  3912. package/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSsoSessionData.d.ts +10 -0
  3913. package/node_modules/@smithy/shared-ini-file-loader/dist-types/mergeConfigFiles.d.ts +7 -0
  3914. package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +2 -0
  3915. package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +15 -0
  3916. package/node_modules/@smithy/shared-ini-file-loader/dist-types/slurpFile.d.ts +5 -0
  3917. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigData.d.ts +8 -0
  3918. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigFilepath.d.ts +2 -0
  3919. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getCredentialsFilepath.d.ts +2 -0
  3920. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getHomeDir.d.ts +6 -0
  3921. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getProfileName.d.ts +5 -0
  3922. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFilepath.d.ts +4 -0
  3923. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +44 -0
  3924. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSsoSessionData.d.ts +6 -0
  3925. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +8 -0
  3926. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +22 -0
  3927. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSsoSessionData.d.ts +10 -0
  3928. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/mergeConfigFiles.d.ts +7 -0
  3929. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseIni.d.ts +2 -0
  3930. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseKnownFiles.d.ts +15 -0
  3931. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/slurpFile.d.ts +5 -0
  3932. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/types.d.ts +13 -0
  3933. package/node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts +13 -0
  3934. package/node_modules/@smithy/shared-ini-file-loader/package.json +72 -0
  3935. package/node_modules/@smithy/signature-v4/LICENSE +201 -0
  3936. package/node_modules/@smithy/signature-v4/README.md +11 -0
  3937. package/node_modules/@smithy/signature-v4/dist-cjs/SignatureV4.js +1 -0
  3938. package/node_modules/@smithy/signature-v4/dist-cjs/cloneRequest.js +1 -0
  3939. package/node_modules/@smithy/signature-v4/dist-cjs/constants.js +1 -0
  3940. package/node_modules/@smithy/signature-v4/dist-cjs/credentialDerivation.js +1 -0
  3941. package/node_modules/@smithy/signature-v4/dist-cjs/getCanonicalHeaders.js +1 -0
  3942. package/node_modules/@smithy/signature-v4/dist-cjs/getCanonicalQuery.js +1 -0
  3943. package/node_modules/@smithy/signature-v4/dist-cjs/getPayloadHash.js +1 -0
  3944. package/node_modules/@smithy/signature-v4/dist-cjs/headerUtil.js +1 -0
  3945. package/node_modules/@smithy/signature-v4/dist-cjs/index.js +467 -0
  3946. package/node_modules/@smithy/signature-v4/dist-cjs/moveHeadersToQuery.js +1 -0
  3947. package/node_modules/@smithy/signature-v4/dist-cjs/prepareRequest.js +1 -0
  3948. package/node_modules/@smithy/signature-v4/dist-cjs/suite.fixture.js +1 -0
  3949. package/node_modules/@smithy/signature-v4/dist-cjs/utilDate.js +1 -0
  3950. package/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +190 -0
  3951. package/node_modules/@smithy/signature-v4/dist-es/cloneRequest.js +12 -0
  3952. package/node_modules/@smithy/signature-v4/dist-es/constants.js +43 -0
  3953. package/node_modules/@smithy/signature-v4/dist-es/credentialDerivation.js +33 -0
  3954. package/node_modules/@smithy/signature-v4/dist-es/getCanonicalHeaders.js +20 -0
  3955. package/node_modules/@smithy/signature-v4/dist-es/getCanonicalQuery.js +27 -0
  3956. package/node_modules/@smithy/signature-v4/dist-es/getPayloadHash.js +20 -0
  3957. package/node_modules/@smithy/signature-v4/dist-es/headerUtil.js +26 -0
  3958. package/node_modules/@smithy/signature-v4/dist-es/index.js +7 -0
  3959. package/node_modules/@smithy/signature-v4/dist-es/moveHeadersToQuery.js +16 -0
  3960. package/node_modules/@smithy/signature-v4/dist-es/prepareRequest.js +11 -0
  3961. package/node_modules/@smithy/signature-v4/dist-es/suite.fixture.js +399 -0
  3962. package/node_modules/@smithy/signature-v4/dist-es/utilDate.js +15 -0
  3963. package/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +67 -0
  3964. package/node_modules/@smithy/signature-v4/dist-types/cloneRequest.d.ts +6 -0
  3965. package/node_modules/@smithy/signature-v4/dist-types/constants.d.ts +43 -0
  3966. package/node_modules/@smithy/signature-v4/dist-types/credentialDerivation.d.ts +26 -0
  3967. package/node_modules/@smithy/signature-v4/dist-types/getCanonicalHeaders.d.ts +5 -0
  3968. package/node_modules/@smithy/signature-v4/dist-types/getCanonicalQuery.d.ts +5 -0
  3969. package/node_modules/@smithy/signature-v4/dist-types/getPayloadHash.d.ts +5 -0
  3970. package/node_modules/@smithy/signature-v4/dist-types/headerUtil.d.ts +4 -0
  3971. package/node_modules/@smithy/signature-v4/dist-types/index.d.ts +7 -0
  3972. package/node_modules/@smithy/signature-v4/dist-types/moveHeadersToQuery.d.ts +9 -0
  3973. package/node_modules/@smithy/signature-v4/dist-types/prepareRequest.d.ts +5 -0
  3974. package/node_modules/@smithy/signature-v4/dist-types/suite.fixture.d.ts +14 -0
  3975. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +67 -0
  3976. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/cloneRequest.d.ts +6 -0
  3977. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/constants.d.ts +43 -0
  3978. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +26 -0
  3979. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +5 -0
  3980. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +5 -0
  3981. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +5 -0
  3982. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/headerUtil.d.ts +4 -0
  3983. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/index.d.ts +7 -0
  3984. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +9 -0
  3985. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +5 -0
  3986. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/suite.fixture.d.ts +14 -0
  3987. package/node_modules/@smithy/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -0
  3988. package/node_modules/@smithy/signature-v4/dist-types/utilDate.d.ts +2 -0
  3989. package/node_modules/@smithy/signature-v4/package.json +70 -0
  3990. package/node_modules/@smithy/smithy-client/LICENSE +201 -0
  3991. package/node_modules/@smithy/smithy-client/README.md +10 -0
  3992. package/node_modules/@smithy/smithy-client/dist-cjs/NoOpLogger.js +1 -0
  3993. package/node_modules/@smithy/smithy-client/dist-cjs/client.js +1 -0
  3994. package/node_modules/@smithy/smithy-client/dist-cjs/collect-stream-body.js +1 -0
  3995. package/node_modules/@smithy/smithy-client/dist-cjs/command.js +1 -0
  3996. package/node_modules/@smithy/smithy-client/dist-cjs/constants.js +1 -0
  3997. package/node_modules/@smithy/smithy-client/dist-cjs/create-aggregated-client.js +1 -0
  3998. package/node_modules/@smithy/smithy-client/dist-cjs/date-utils.js +1 -0
  3999. package/node_modules/@smithy/smithy-client/dist-cjs/default-error-handler.js +1 -0
  4000. package/node_modules/@smithy/smithy-client/dist-cjs/defaults-mode.js +1 -0
  4001. package/node_modules/@smithy/smithy-client/dist-cjs/emitWarningIfUnsupportedVersion.js +1 -0
  4002. package/node_modules/@smithy/smithy-client/dist-cjs/exceptions.js +1 -0
  4003. package/node_modules/@smithy/smithy-client/dist-cjs/extended-encode-uri-component.js +1 -0
  4004. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/checksum.js +1 -0
  4005. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/defaultExtensionConfiguration.js +1 -0
  4006. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/index.js +1 -0
  4007. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/retry.js +1 -0
  4008. package/node_modules/@smithy/smithy-client/dist-cjs/get-array-if-single-item.js +1 -0
  4009. package/node_modules/@smithy/smithy-client/dist-cjs/get-value-from-text-node.js +1 -0
  4010. package/node_modules/@smithy/smithy-client/dist-cjs/index.js +1256 -0
  4011. package/node_modules/@smithy/smithy-client/dist-cjs/lazy-json.js +1 -0
  4012. package/node_modules/@smithy/smithy-client/dist-cjs/object-mapping.js +1 -0
  4013. package/node_modules/@smithy/smithy-client/dist-cjs/parse-utils.js +1 -0
  4014. package/node_modules/@smithy/smithy-client/dist-cjs/resolve-path.js +1 -0
  4015. package/node_modules/@smithy/smithy-client/dist-cjs/ser-utils.js +1 -0
  4016. package/node_modules/@smithy/smithy-client/dist-cjs/serde-json.js +1 -0
  4017. package/node_modules/@smithy/smithy-client/dist-cjs/split-every.js +1 -0
  4018. package/node_modules/@smithy/smithy-client/dist-es/NoOpLogger.js +7 -0
  4019. package/node_modules/@smithy/smithy-client/dist-es/client.js +24 -0
  4020. package/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +11 -0
  4021. package/node_modules/@smithy/smithy-client/dist-es/command.js +114 -0
  4022. package/node_modules/@smithy/smithy-client/dist-es/constants.js +1 -0
  4023. package/node_modules/@smithy/smithy-client/dist-es/create-aggregated-client.js +21 -0
  4024. package/node_modules/@smithy/smithy-client/dist-es/date-utils.js +187 -0
  4025. package/node_modules/@smithy/smithy-client/dist-es/default-error-handler.js +22 -0
  4026. package/node_modules/@smithy/smithy-client/dist-es/defaults-mode.js +26 -0
  4027. package/node_modules/@smithy/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js +6 -0
  4028. package/node_modules/@smithy/smithy-client/dist-es/exceptions.js +22 -0
  4029. package/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +5 -0
  4030. package/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +31 -0
  4031. package/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +15 -0
  4032. package/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +1 -0
  4033. package/node_modules/@smithy/smithy-client/dist-es/extensions/retry.js +16 -0
  4034. package/node_modules/@smithy/smithy-client/dist-es/get-array-if-single-item.js +1 -0
  4035. package/node_modules/@smithy/smithy-client/dist-es/get-value-from-text-node.js +12 -0
  4036. package/node_modules/@smithy/smithy-client/dist-es/index.js +22 -0
  4037. package/node_modules/@smithy/smithy-client/dist-es/lazy-json.js +33 -0
  4038. package/node_modules/@smithy/smithy-client/dist-es/object-mapping.js +92 -0
  4039. package/node_modules/@smithy/smithy-client/dist-es/parse-utils.js +230 -0
  4040. package/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +19 -0
  4041. package/node_modules/@smithy/smithy-client/dist-es/ser-utils.js +13 -0
  4042. package/node_modules/@smithy/smithy-client/dist-es/serde-json.js +19 -0
  4043. package/node_modules/@smithy/smithy-client/dist-es/split-every.js +27 -0
  4044. package/node_modules/@smithy/smithy-client/dist-types/NoOpLogger.d.ts +11 -0
  4045. package/node_modules/@smithy/smithy-client/dist-types/client.d.ts +29 -0
  4046. package/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +10 -0
  4047. package/node_modules/@smithy/smithy-client/dist-types/command.d.ts +112 -0
  4048. package/node_modules/@smithy/smithy-client/dist-types/constants.d.ts +4 -0
  4049. package/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +9 -0
  4050. package/node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts +73 -0
  4051. package/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +13 -0
  4052. package/node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts +28 -0
  4053. package/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +8 -0
  4054. package/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +34 -0
  4055. package/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +7 -0
  4056. package/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +25 -0
  4057. package/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +38 -0
  4058. package/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +1 -0
  4059. package/node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts +15 -0
  4060. package/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +7 -0
  4061. package/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +7 -0
  4062. package/node_modules/@smithy/smithy-client/dist-types/index.d.ts +23 -0
  4063. package/node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts +24 -0
  4064. package/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +162 -0
  4065. package/node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts +270 -0
  4066. package/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +4 -0
  4067. package/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +9 -0
  4068. package/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +10 -0
  4069. package/node_modules/@smithy/smithy-client/dist-types/split-every.d.ts +11 -0
  4070. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/NoOpLogger.d.ts +11 -0
  4071. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/client.d.ts +29 -0
  4072. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/collect-stream-body.d.ts +10 -0
  4073. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/command.d.ts +112 -0
  4074. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/constants.d.ts +4 -0
  4075. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/create-aggregated-client.d.ts +9 -0
  4076. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/date-utils.d.ts +73 -0
  4077. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +13 -0
  4078. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +28 -0
  4079. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +8 -0
  4080. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/exceptions.d.ts +34 -0
  4081. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +7 -0
  4082. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/checksum.d.ts +25 -0
  4083. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +38 -0
  4084. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/index.d.ts +1 -0
  4085. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/retry.d.ts +15 -0
  4086. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +7 -0
  4087. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +7 -0
  4088. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/index.d.ts +23 -0
  4089. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/lazy-json.d.ts +24 -0
  4090. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/object-mapping.d.ts +178 -0
  4091. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/parse-utils.d.ts +270 -0
  4092. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/resolve-path.d.ts +4 -0
  4093. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/ser-utils.d.ts +9 -0
  4094. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/serde-json.d.ts +10 -0
  4095. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/split-every.d.ts +11 -0
  4096. package/node_modules/@smithy/smithy-client/package.json +66 -0
  4097. package/node_modules/@smithy/types/LICENSE +201 -0
  4098. package/node_modules/@smithy/types/README.md +80 -0
  4099. package/node_modules/@smithy/types/dist-cjs/abort.js +1 -0
  4100. package/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +1 -0
  4101. package/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +1 -0
  4102. package/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +1 -0
  4103. package/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +1 -0
  4104. package/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +1 -0
  4105. package/node_modules/@smithy/types/dist-cjs/auth/auth.js +1 -0
  4106. package/node_modules/@smithy/types/dist-cjs/auth/index.js +1 -0
  4107. package/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +1 -0
  4108. package/node_modules/@smithy/types/dist-cjs/checksum.js +1 -0
  4109. package/node_modules/@smithy/types/dist-cjs/client.js +1 -0
  4110. package/node_modules/@smithy/types/dist-cjs/command.js +1 -0
  4111. package/node_modules/@smithy/types/dist-cjs/connection/config.js +1 -0
  4112. package/node_modules/@smithy/types/dist-cjs/connection/index.js +1 -0
  4113. package/node_modules/@smithy/types/dist-cjs/connection/manager.js +1 -0
  4114. package/node_modules/@smithy/types/dist-cjs/connection/pool.js +1 -0
  4115. package/node_modules/@smithy/types/dist-cjs/crypto.js +1 -0
  4116. package/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +1 -0
  4117. package/node_modules/@smithy/types/dist-cjs/encode.js +1 -0
  4118. package/node_modules/@smithy/types/dist-cjs/endpoint.js +1 -0
  4119. package/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +1 -0
  4120. package/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +1 -0
  4121. package/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +1 -0
  4122. package/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +1 -0
  4123. package/node_modules/@smithy/types/dist-cjs/endpoints/index.js +1 -0
  4124. package/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +1 -0
  4125. package/node_modules/@smithy/types/dist-cjs/eventStream.js +1 -0
  4126. package/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +1 -0
  4127. package/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +1 -0
  4128. package/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +1 -0
  4129. package/node_modules/@smithy/types/dist-cjs/extensions/index.js +1 -0
  4130. package/node_modules/@smithy/types/dist-cjs/extensions/retry.js +1 -0
  4131. package/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +1 -0
  4132. package/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +1 -0
  4133. package/node_modules/@smithy/types/dist-cjs/http.js +1 -0
  4134. package/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +1 -0
  4135. package/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +1 -0
  4136. package/node_modules/@smithy/types/dist-cjs/identity/identity.js +1 -0
  4137. package/node_modules/@smithy/types/dist-cjs/identity/index.js +1 -0
  4138. package/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +1 -0
  4139. package/node_modules/@smithy/types/dist-cjs/index.js +149 -0
  4140. package/node_modules/@smithy/types/dist-cjs/logger.js +1 -0
  4141. package/node_modules/@smithy/types/dist-cjs/middleware.js +1 -0
  4142. package/node_modules/@smithy/types/dist-cjs/pagination.js +1 -0
  4143. package/node_modules/@smithy/types/dist-cjs/profile.js +1 -0
  4144. package/node_modules/@smithy/types/dist-cjs/response.js +1 -0
  4145. package/node_modules/@smithy/types/dist-cjs/retry.js +1 -0
  4146. package/node_modules/@smithy/types/dist-cjs/serde.js +1 -0
  4147. package/node_modules/@smithy/types/dist-cjs/shapes.js +1 -0
  4148. package/node_modules/@smithy/types/dist-cjs/signature.js +1 -0
  4149. package/node_modules/@smithy/types/dist-cjs/stream.js +1 -0
  4150. package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +1 -0
  4151. package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-input-types.js +1 -0
  4152. package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-output-types.js +1 -0
  4153. package/node_modules/@smithy/types/dist-cjs/transfer.js +1 -0
  4154. package/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +1 -0
  4155. package/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +1 -0
  4156. package/node_modules/@smithy/types/dist-cjs/transform/exact.js +1 -0
  4157. package/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +1 -0
  4158. package/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +1 -0
  4159. package/node_modules/@smithy/types/dist-cjs/uri.js +1 -0
  4160. package/node_modules/@smithy/types/dist-cjs/util.js +1 -0
  4161. package/node_modules/@smithy/types/dist-cjs/waiter.js +1 -0
  4162. package/node_modules/@smithy/types/dist-es/abort.js +1 -0
  4163. package/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +5 -0
  4164. package/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +1 -0
  4165. package/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +1 -0
  4166. package/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +1 -0
  4167. package/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +1 -0
  4168. package/node_modules/@smithy/types/dist-es/auth/auth.js +5 -0
  4169. package/node_modules/@smithy/types/dist-es/auth/index.js +6 -0
  4170. package/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +1 -0
  4171. package/node_modules/@smithy/types/dist-es/checksum.js +1 -0
  4172. package/node_modules/@smithy/types/dist-es/client.js +1 -0
  4173. package/node_modules/@smithy/types/dist-es/command.js +1 -0
  4174. package/node_modules/@smithy/types/dist-es/connection/config.js +1 -0
  4175. package/node_modules/@smithy/types/dist-es/connection/index.js +3 -0
  4176. package/node_modules/@smithy/types/dist-es/connection/manager.js +1 -0
  4177. package/node_modules/@smithy/types/dist-es/connection/pool.js +1 -0
  4178. package/node_modules/@smithy/types/dist-es/crypto.js +1 -0
  4179. package/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +1 -0
  4180. package/node_modules/@smithy/types/dist-es/encode.js +1 -0
  4181. package/node_modules/@smithy/types/dist-es/endpoint.js +5 -0
  4182. package/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +1 -0
  4183. package/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +1 -0
  4184. package/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +1 -0
  4185. package/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +1 -0
  4186. package/node_modules/@smithy/types/dist-es/endpoints/index.js +5 -0
  4187. package/node_modules/@smithy/types/dist-es/endpoints/shared.js +1 -0
  4188. package/node_modules/@smithy/types/dist-es/eventStream.js +1 -0
  4189. package/node_modules/@smithy/types/dist-es/extensions/checksum.js +39 -0
  4190. package/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +11 -0
  4191. package/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +1 -0
  4192. package/node_modules/@smithy/types/dist-es/extensions/index.js +3 -0
  4193. package/node_modules/@smithy/types/dist-es/extensions/retry.js +1 -0
  4194. package/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +1 -0
  4195. package/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +1 -0
  4196. package/node_modules/@smithy/types/dist-es/http.js +5 -0
  4197. package/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +1 -0
  4198. package/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +1 -0
  4199. package/node_modules/@smithy/types/dist-es/identity/identity.js +1 -0
  4200. package/node_modules/@smithy/types/dist-es/identity/index.js +4 -0
  4201. package/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +1 -0
  4202. package/node_modules/@smithy/types/dist-es/index.js +36 -0
  4203. package/node_modules/@smithy/types/dist-es/logger.js +1 -0
  4204. package/node_modules/@smithy/types/dist-es/middleware.js +1 -0
  4205. package/node_modules/@smithy/types/dist-es/pagination.js +1 -0
  4206. package/node_modules/@smithy/types/dist-es/profile.js +6 -0
  4207. package/node_modules/@smithy/types/dist-es/response.js +1 -0
  4208. package/node_modules/@smithy/types/dist-es/retry.js +1 -0
  4209. package/node_modules/@smithy/types/dist-es/serde.js +1 -0
  4210. package/node_modules/@smithy/types/dist-es/shapes.js +1 -0
  4211. package/node_modules/@smithy/types/dist-es/signature.js +1 -0
  4212. package/node_modules/@smithy/types/dist-es/stream.js +1 -0
  4213. package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +1 -0
  4214. package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +1 -0
  4215. package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +1 -0
  4216. package/node_modules/@smithy/types/dist-es/transfer.js +6 -0
  4217. package/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +1 -0
  4218. package/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +1 -0
  4219. package/node_modules/@smithy/types/dist-es/transform/exact.js +1 -0
  4220. package/node_modules/@smithy/types/dist-es/transform/no-undefined.js +1 -0
  4221. package/node_modules/@smithy/types/dist-es/transform/type-transform.js +1 -0
  4222. package/node_modules/@smithy/types/dist-es/uri.js +1 -0
  4223. package/node_modules/@smithy/types/dist-es/util.js +1 -0
  4224. package/node_modules/@smithy/types/dist-es/waiter.js +1 -0
  4225. package/node_modules/@smithy/types/dist-types/abort.d.ts +49 -0
  4226. package/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +7 -0
  4227. package/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +49 -0
  4228. package/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +20 -0
  4229. package/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +41 -0
  4230. package/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +14 -0
  4231. package/node_modules/@smithy/types/dist-types/auth/auth.d.ts +57 -0
  4232. package/node_modules/@smithy/types/dist-types/auth/index.d.ts +6 -0
  4233. package/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +41 -0
  4234. package/node_modules/@smithy/types/dist-types/checksum.d.ts +63 -0
  4235. package/node_modules/@smithy/types/dist-types/client.d.ts +44 -0
  4236. package/node_modules/@smithy/types/dist-types/command.d.ts +10 -0
  4237. package/node_modules/@smithy/types/dist-types/connection/config.d.ts +7 -0
  4238. package/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -0
  4239. package/node_modules/@smithy/types/dist-types/connection/manager.d.ts +28 -0
  4240. package/node_modules/@smithy/types/dist-types/connection/pool.d.ts +24 -0
  4241. package/node_modules/@smithy/types/dist-types/crypto.d.ts +60 -0
  4242. package/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +25 -0
  4243. package/node_modules/@smithy/types/dist-types/encode.d.ts +19 -0
  4244. package/node_modules/@smithy/types/dist-types/endpoint.d.ts +77 -0
  4245. package/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +15 -0
  4246. package/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +7 -0
  4247. package/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +19 -0
  4248. package/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +10 -0
  4249. package/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -0
  4250. package/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +25 -0
  4251. package/node_modules/@smithy/types/dist-types/eventStream.d.ts +108 -0
  4252. package/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +55 -0
  4253. package/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +33 -0
  4254. package/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +9 -0
  4255. package/node_modules/@smithy/types/dist-types/extensions/index.d.ts +4 -0
  4256. package/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +18 -0
  4257. package/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +35 -0
  4258. package/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +65 -0
  4259. package/node_modules/@smithy/types/dist-types/http.d.ts +105 -0
  4260. package/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +14 -0
  4261. package/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +27 -0
  4262. package/node_modules/@smithy/types/dist-types/identity/identity.d.ts +15 -0
  4263. package/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -0
  4264. package/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +14 -0
  4265. package/node_modules/@smithy/types/dist-types/index.d.ts +36 -0
  4266. package/node_modules/@smithy/types/dist-types/logger.d.ts +13 -0
  4267. package/node_modules/@smithy/types/dist-types/middleware.d.ts +510 -0
  4268. package/node_modules/@smithy/types/dist-types/pagination.d.ts +26 -0
  4269. package/node_modules/@smithy/types/dist-types/profile.d.ts +30 -0
  4270. package/node_modules/@smithy/types/dist-types/response.d.ts +40 -0
  4271. package/node_modules/@smithy/types/dist-types/retry.d.ts +128 -0
  4272. package/node_modules/@smithy/types/dist-types/serde.d.ts +104 -0
  4273. package/node_modules/@smithy/types/dist-types/shapes.d.ts +72 -0
  4274. package/node_modules/@smithy/types/dist-types/signature.d.ts +150 -0
  4275. package/node_modules/@smithy/types/dist-types/stream.d.ts +22 -0
  4276. package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +33 -0
  4277. package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +62 -0
  4278. package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +53 -0
  4279. package/node_modules/@smithy/types/dist-types/transfer.d.ts +33 -0
  4280. package/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +26 -0
  4281. package/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +73 -0
  4282. package/node_modules/@smithy/types/dist-types/transform/exact.d.ts +6 -0
  4283. package/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +62 -0
  4284. package/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +34 -0
  4285. package/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +49 -0
  4286. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
  4287. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
  4288. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
  4289. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
  4290. package/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
  4291. package/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +57 -0
  4292. package/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +6 -0
  4293. package/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +40 -0
  4294. package/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +63 -0
  4295. package/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +49 -0
  4296. package/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +10 -0
  4297. package/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +7 -0
  4298. package/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
  4299. package/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +28 -0
  4300. package/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +24 -0
  4301. package/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +60 -0
  4302. package/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +41 -0
  4303. package/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +19 -0
  4304. package/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
  4305. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +15 -0
  4306. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +7 -0
  4307. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +19 -0
  4308. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +10 -0
  4309. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
  4310. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +25 -0
  4311. package/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +108 -0
  4312. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +55 -0
  4313. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +33 -0
  4314. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
  4315. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +4 -0
  4316. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
  4317. package/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
  4318. package/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +64 -0
  4319. package/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +105 -0
  4320. package/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
  4321. package/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +27 -0
  4322. package/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
  4323. package/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
  4324. package/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
  4325. package/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +36 -0
  4326. package/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
  4327. package/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +510 -0
  4328. package/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +26 -0
  4329. package/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
  4330. package/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
  4331. package/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +128 -0
  4332. package/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +104 -0
  4333. package/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +72 -0
  4334. package/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +150 -0
  4335. package/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
  4336. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +33 -0
  4337. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +61 -0
  4338. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +52 -0
  4339. package/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +33 -0
  4340. package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
  4341. package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +84 -0
  4342. package/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
  4343. package/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +82 -0
  4344. package/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +41 -0
  4345. package/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
  4346. package/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +172 -0
  4347. package/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
  4348. package/node_modules/@smithy/types/dist-types/uri.d.ts +17 -0
  4349. package/node_modules/@smithy/types/dist-types/util.d.ts +161 -0
  4350. package/node_modules/@smithy/types/dist-types/waiter.d.ts +35 -0
  4351. package/node_modules/@smithy/types/package.json +61 -0
  4352. package/node_modules/@smithy/url-parser/LICENSE +201 -0
  4353. package/node_modules/@smithy/url-parser/README.md +10 -0
  4354. package/node_modules/@smithy/url-parser/dist-cjs/index.js +49 -0
  4355. package/node_modules/@smithy/url-parser/dist-es/index.js +18 -0
  4356. package/node_modules/@smithy/url-parser/dist-types/index.d.ts +5 -0
  4357. package/node_modules/@smithy/url-parser/dist-types/ts3.4/index.d.ts +5 -0
  4358. package/node_modules/@smithy/url-parser/package.json +58 -0
  4359. package/node_modules/@smithy/util-base64/LICENSE +201 -0
  4360. package/node_modules/@smithy/util-base64/README.md +4 -0
  4361. package/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +35 -0
  4362. package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.browser.js +40 -0
  4363. package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.js +16 -0
  4364. package/node_modules/@smithy/util-base64/dist-cjs/index.js +27 -0
  4365. package/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +24 -0
  4366. package/node_modules/@smithy/util-base64/dist-cjs/toBase64.js +6 -0
  4367. package/node_modules/@smithy/util-base64/dist-es/constants.browser.js +28 -0
  4368. package/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js +36 -0
  4369. package/node_modules/@smithy/util-base64/dist-es/fromBase64.js +12 -0
  4370. package/node_modules/@smithy/util-base64/dist-es/index.js +2 -0
  4371. package/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js +20 -0
  4372. package/node_modules/@smithy/util-base64/dist-es/toBase64.js +2 -0
  4373. package/node_modules/@smithy/util-base64/dist-types/constants.browser.d.ts +6 -0
  4374. package/node_modules/@smithy/util-base64/dist-types/fromBase64.browser.d.ts +8 -0
  4375. package/node_modules/@smithy/util-base64/dist-types/fromBase64.d.ts +7 -0
  4376. package/node_modules/@smithy/util-base64/dist-types/index.d.ts +2 -0
  4377. package/node_modules/@smithy/util-base64/dist-types/toBase64.browser.d.ts +8 -0
  4378. package/node_modules/@smithy/util-base64/dist-types/toBase64.d.ts +7 -0
  4379. package/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +6 -0
  4380. package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts +8 -0
  4381. package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.d.ts +7 -0
  4382. package/node_modules/@smithy/util-base64/dist-types/ts3.4/index.d.ts +2 -0
  4383. package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.browser.d.ts +8 -0
  4384. package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.d.ts +7 -0
  4385. package/node_modules/@smithy/util-base64/package.json +72 -0
  4386. package/node_modules/@smithy/util-body-length-browser/LICENSE +201 -0
  4387. package/node_modules/@smithy/util-body-length-browser/README.md +12 -0
  4388. package/node_modules/@smithy/util-body-length-browser/dist-cjs/calculateBodyLength.js +1 -0
  4389. package/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +57 -0
  4390. package/node_modules/@smithy/util-body-length-browser/dist-es/calculateBodyLength.js +26 -0
  4391. package/node_modules/@smithy/util-body-length-browser/dist-es/index.js +1 -0
  4392. package/node_modules/@smithy/util-body-length-browser/dist-types/calculateBodyLength.d.ts +4 -0
  4393. package/node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts +4 -0
  4394. package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +4 -0
  4395. package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/index.d.ts +4 -0
  4396. package/node_modules/@smithy/util-body-length-browser/package.json +57 -0
  4397. package/node_modules/@smithy/util-body-length-node/LICENSE +201 -0
  4398. package/node_modules/@smithy/util-body-length-node/README.md +12 -0
  4399. package/node_modules/@smithy/util-body-length-node/dist-cjs/calculateBodyLength.js +1 -0
  4400. package/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +53 -0
  4401. package/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +25 -0
  4402. package/node_modules/@smithy/util-body-length-node/dist-es/index.js +1 -0
  4403. package/node_modules/@smithy/util-body-length-node/dist-types/calculateBodyLength.d.ts +4 -0
  4404. package/node_modules/@smithy/util-body-length-node/dist-types/index.d.ts +4 -0
  4405. package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +4 -0
  4406. package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/index.d.ts +4 -0
  4407. package/node_modules/@smithy/util-body-length-node/package.json +61 -0
  4408. package/node_modules/@smithy/util-buffer-from/LICENSE +201 -0
  4409. package/node_modules/@smithy/util-buffer-from/README.md +10 -0
  4410. package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +47 -0
  4411. package/node_modules/@smithy/util-buffer-from/dist-es/index.js +14 -0
  4412. package/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +13 -0
  4413. package/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +13 -0
  4414. package/node_modules/@smithy/util-buffer-from/package.json +61 -0
  4415. package/node_modules/@smithy/util-config-provider/LICENSE +201 -0
  4416. package/node_modules/@smithy/util-config-provider/README.md +4 -0
  4417. package/node_modules/@smithy/util-config-provider/dist-cjs/booleanSelector.js +1 -0
  4418. package/node_modules/@smithy/util-config-provider/dist-cjs/index.js +64 -0
  4419. package/node_modules/@smithy/util-config-provider/dist-cjs/numberSelector.js +1 -0
  4420. package/node_modules/@smithy/util-config-provider/dist-cjs/types.js +1 -0
  4421. package/node_modules/@smithy/util-config-provider/dist-es/booleanSelector.js +9 -0
  4422. package/node_modules/@smithy/util-config-provider/dist-es/index.js +3 -0
  4423. package/node_modules/@smithy/util-config-provider/dist-es/numberSelector.js +9 -0
  4424. package/node_modules/@smithy/util-config-provider/dist-es/types.js +5 -0
  4425. package/node_modules/@smithy/util-config-provider/dist-types/booleanSelector.d.ts +10 -0
  4426. package/node_modules/@smithy/util-config-provider/dist-types/index.d.ts +3 -0
  4427. package/node_modules/@smithy/util-config-provider/dist-types/numberSelector.d.ts +9 -0
  4428. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +10 -0
  4429. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/index.d.ts +3 -0
  4430. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/numberSelector.d.ts +9 -0
  4431. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/types.d.ts +4 -0
  4432. package/node_modules/@smithy/util-config-provider/dist-types/types.d.ts +4 -0
  4433. package/node_modules/@smithy/util-config-provider/package.json +62 -0
  4434. package/node_modules/@smithy/util-defaults-mode-browser/LICENSE +201 -0
  4435. package/node_modules/@smithy/util-defaults-mode-browser/README.md +10 -0
  4436. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +4 -0
  4437. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +25 -0
  4438. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +33 -0
  4439. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +23 -0
  4440. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +1 -0
  4441. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +1 -0
  4442. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +27 -0
  4443. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +19 -0
  4444. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +12 -0
  4445. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +4 -0
  4446. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
  4447. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +16 -0
  4448. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +12 -0
  4449. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +4 -0
  4450. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
  4451. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +16 -0
  4452. package/node_modules/@smithy/util-defaults-mode-browser/package.json +66 -0
  4453. package/node_modules/@smithy/util-defaults-mode-node/LICENSE +201 -0
  4454. package/node_modules/@smithy/util-defaults-mode-node/README.md +10 -0
  4455. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/constants.js +1 -0
  4456. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/defaultsModeConfig.js +1 -0
  4457. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +109 -0
  4458. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/resolveDefaultsModeConfig.js +1 -0
  4459. package/node_modules/@smithy/util-defaults-mode-node/dist-es/constants.js +6 -0
  4460. package/node_modules/@smithy/util-defaults-mode-node/dist-es/defaultsModeConfig.js +11 -0
  4461. package/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +1 -0
  4462. package/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +52 -0
  4463. package/node_modules/@smithy/util-defaults-mode-node/dist-types/constants.d.ts +24 -0
  4464. package/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +6 -0
  4465. package/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +4 -0
  4466. package/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
  4467. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +24 -0
  4468. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +6 -0
  4469. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +4 -0
  4470. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
  4471. package/node_modules/@smithy/util-defaults-mode-node/package.json +66 -0
  4472. package/node_modules/@smithy/util-endpoints/LICENSE +201 -0
  4473. package/node_modules/@smithy/util-endpoints/README.md +10 -0
  4474. package/node_modules/@smithy/util-endpoints/dist-cjs/debug/debugId.js +1 -0
  4475. package/node_modules/@smithy/util-endpoints/dist-cjs/debug/index.js +1 -0
  4476. package/node_modules/@smithy/util-endpoints/dist-cjs/debug/toDebugString.js +1 -0
  4477. package/node_modules/@smithy/util-endpoints/dist-cjs/getEndpointUrlConfig.js +1 -0
  4478. package/node_modules/@smithy/util-endpoints/dist-cjs/index.js +484 -0
  4479. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/booleanEquals.js +1 -0
  4480. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/getAttr.js +1 -0
  4481. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/getAttrPathList.js +1 -0
  4482. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/index.js +1 -0
  4483. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/isIpAddress.js +1 -0
  4484. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/isSet.js +1 -0
  4485. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/isValidHostLabel.js +1 -0
  4486. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/not.js +1 -0
  4487. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/parseURL.js +1 -0
  4488. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/stringEquals.js +1 -0
  4489. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/substring.js +1 -0
  4490. package/node_modules/@smithy/util-endpoints/dist-cjs/lib/uriEncode.js +1 -0
  4491. package/node_modules/@smithy/util-endpoints/dist-cjs/resolveEndpoint.js +1 -0
  4492. package/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointError.js +1 -0
  4493. package/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointFunctions.js +1 -0
  4494. package/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointRuleObject.js +1 -0
  4495. package/node_modules/@smithy/util-endpoints/dist-cjs/types/ErrorRuleObject.js +1 -0
  4496. package/node_modules/@smithy/util-endpoints/dist-cjs/types/RuleSetObject.js +1 -0
  4497. package/node_modules/@smithy/util-endpoints/dist-cjs/types/TreeRuleObject.js +1 -0
  4498. package/node_modules/@smithy/util-endpoints/dist-cjs/types/index.js +1 -0
  4499. package/node_modules/@smithy/util-endpoints/dist-cjs/types/shared.js +1 -0
  4500. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/callFunction.js +1 -0
  4501. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/customEndpointFunctions.js +1 -0
  4502. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/endpointFunctions.js +1 -0
  4503. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateCondition.js +1 -0
  4504. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateConditions.js +1 -0
  4505. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateEndpointRule.js +1 -0
  4506. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateErrorRule.js +1 -0
  4507. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateExpression.js +1 -0
  4508. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateRules.js +1 -0
  4509. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateTemplate.js +1 -0
  4510. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateTreeRule.js +1 -0
  4511. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointHeaders.js +1 -0
  4512. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointProperties.js +1 -0
  4513. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointProperty.js +1 -0
  4514. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointUrl.js +1 -0
  4515. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getReferenceValue.js +1 -0
  4516. package/node_modules/@smithy/util-endpoints/dist-cjs/utils/index.js +1 -0
  4517. package/node_modules/@smithy/util-endpoints/dist-es/debug/debugId.js +1 -0
  4518. package/node_modules/@smithy/util-endpoints/dist-es/debug/index.js +2 -0
  4519. package/node_modules/@smithy/util-endpoints/dist-es/debug/toDebugString.js +12 -0
  4520. package/node_modules/@smithy/util-endpoints/dist-es/getEndpointUrlConfig.js +21 -0
  4521. package/node_modules/@smithy/util-endpoints/dist-es/index.js +5 -0
  4522. package/node_modules/@smithy/util-endpoints/dist-es/lib/booleanEquals.js +1 -0
  4523. package/node_modules/@smithy/util-endpoints/dist-es/lib/getAttr.js +11 -0
  4524. package/node_modules/@smithy/util-endpoints/dist-es/lib/getAttrPathList.js +25 -0
  4525. package/node_modules/@smithy/util-endpoints/dist-es/lib/index.js +9 -0
  4526. package/node_modules/@smithy/util-endpoints/dist-es/lib/isIpAddress.js +2 -0
  4527. package/node_modules/@smithy/util-endpoints/dist-es/lib/isSet.js +1 -0
  4528. package/node_modules/@smithy/util-endpoints/dist-es/lib/isValidHostLabel.js +13 -0
  4529. package/node_modules/@smithy/util-endpoints/dist-es/lib/not.js +1 -0
  4530. package/node_modules/@smithy/util-endpoints/dist-es/lib/parseURL.js +51 -0
  4531. package/node_modules/@smithy/util-endpoints/dist-es/lib/stringEquals.js +1 -0
  4532. package/node_modules/@smithy/util-endpoints/dist-es/lib/substring.js +9 -0
  4533. package/node_modules/@smithy/util-endpoints/dist-es/lib/uriEncode.js +1 -0
  4534. package/node_modules/@smithy/util-endpoints/dist-es/resolveEndpoint.js +37 -0
  4535. package/node_modules/@smithy/util-endpoints/dist-es/types/EndpointError.js +6 -0
  4536. package/node_modules/@smithy/util-endpoints/dist-es/types/EndpointFunctions.js +1 -0
  4537. package/node_modules/@smithy/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
  4538. package/node_modules/@smithy/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
  4539. package/node_modules/@smithy/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
  4540. package/node_modules/@smithy/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
  4541. package/node_modules/@smithy/util-endpoints/dist-es/types/index.js +7 -0
  4542. package/node_modules/@smithy/util-endpoints/dist-es/types/shared.js +1 -0
  4543. package/node_modules/@smithy/util-endpoints/dist-es/utils/callFunction.js +11 -0
  4544. package/node_modules/@smithy/util-endpoints/dist-es/utils/customEndpointFunctions.js +1 -0
  4545. package/node_modules/@smithy/util-endpoints/dist-es/utils/endpointFunctions.js +12 -0
  4546. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateCondition.js +14 -0
  4547. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateConditions.js +22 -0
  4548. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateEndpointRule.js +27 -0
  4549. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateErrorRule.js +14 -0
  4550. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +16 -0
  4551. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateRules.js +27 -0
  4552. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTemplate.js +36 -0
  4553. package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTreeRule.js +13 -0
  4554. package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointHeaders.js +12 -0
  4555. package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperties.js +5 -0
  4556. package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperty.js +21 -0
  4557. package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointUrl.js +15 -0
  4558. package/node_modules/@smithy/util-endpoints/dist-es/utils/getReferenceValue.js +7 -0
  4559. package/node_modules/@smithy/util-endpoints/dist-es/utils/index.js +2 -0
  4560. package/node_modules/@smithy/util-endpoints/dist-types/debug/debugId.d.ts +1 -0
  4561. package/node_modules/@smithy/util-endpoints/dist-types/debug/index.d.ts +2 -0
  4562. package/node_modules/@smithy/util-endpoints/dist-types/debug/toDebugString.d.ts +9 -0
  4563. package/node_modules/@smithy/util-endpoints/dist-types/getEndpointUrlConfig.d.ts +2 -0
  4564. package/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +5 -0
  4565. package/node_modules/@smithy/util-endpoints/dist-types/lib/booleanEquals.d.ts +5 -0
  4566. package/node_modules/@smithy/util-endpoints/dist-types/lib/getAttr.d.ts +7 -0
  4567. package/node_modules/@smithy/util-endpoints/dist-types/lib/getAttrPathList.d.ts +4 -0
  4568. package/node_modules/@smithy/util-endpoints/dist-types/lib/index.d.ts +9 -0
  4569. package/node_modules/@smithy/util-endpoints/dist-types/lib/isIpAddress.d.ts +4 -0
  4570. package/node_modules/@smithy/util-endpoints/dist-types/lib/isSet.d.ts +5 -0
  4571. package/node_modules/@smithy/util-endpoints/dist-types/lib/isValidHostLabel.d.ts +7 -0
  4572. package/node_modules/@smithy/util-endpoints/dist-types/lib/not.d.ts +5 -0
  4573. package/node_modules/@smithy/util-endpoints/dist-types/lib/parseURL.d.ts +5 -0
  4574. package/node_modules/@smithy/util-endpoints/dist-types/lib/stringEquals.d.ts +5 -0
  4575. package/node_modules/@smithy/util-endpoints/dist-types/lib/substring.d.ts +7 -0
  4576. package/node_modules/@smithy/util-endpoints/dist-types/lib/uriEncode.d.ts +4 -0
  4577. package/node_modules/@smithy/util-endpoints/dist-types/resolveEndpoint.d.ts +6 -0
  4578. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/debugId.d.ts +1 -0
  4579. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/index.d.ts +2 -0
  4580. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/toDebugString.d.ts +9 -0
  4581. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/getEndpointUrlConfig.d.ts +2 -0
  4582. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/index.d.ts +5 -0
  4583. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/booleanEquals.d.ts +5 -0
  4584. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttr.d.ts +7 -0
  4585. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttrPathList.d.ts +4 -0
  4586. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/index.d.ts +9 -0
  4587. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +4 -0
  4588. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isSet.d.ts +5 -0
  4589. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isValidHostLabel.d.ts +7 -0
  4590. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/not.d.ts +5 -0
  4591. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/parseURL.d.ts +5 -0
  4592. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/stringEquals.d.ts +5 -0
  4593. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/substring.d.ts +7 -0
  4594. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/uriEncode.d.ts +4 -0
  4595. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +6 -0
  4596. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +3 -0
  4597. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointFunctions.d.ts +2 -0
  4598. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +5 -0
  4599. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +2 -0
  4600. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +4 -0
  4601. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +3 -0
  4602. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/index.d.ts +7 -0
  4603. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/shared.d.ts +25 -0
  4604. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/callFunction.d.ts +2 -0
  4605. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/customEndpointFunctions.d.ts +4 -0
  4606. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/endpointFunctions.d.ts +11 -0
  4607. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateCondition.d.ts +8 -0
  4608. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateConditions.d.ts +8 -0
  4609. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateEndpointRule.d.ts +3 -0
  4610. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateErrorRule.d.ts +2 -0
  4611. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateExpression.d.ts +2 -0
  4612. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateRules.d.ts +3 -0
  4613. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTemplate.d.ts +2 -0
  4614. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTreeRule.d.ts +3 -0
  4615. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointHeaders.d.ts +2 -0
  4616. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperties.d.ts +2 -0
  4617. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperty.d.ts +3 -0
  4618. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointUrl.d.ts +2 -0
  4619. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getReferenceValue.d.ts +2 -0
  4620. package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/index.d.ts +2 -0
  4621. package/node_modules/@smithy/util-endpoints/dist-types/types/EndpointError.d.ts +3 -0
  4622. package/node_modules/@smithy/util-endpoints/dist-types/types/EndpointFunctions.d.ts +2 -0
  4623. package/node_modules/@smithy/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +5 -0
  4624. package/node_modules/@smithy/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +2 -0
  4625. package/node_modules/@smithy/util-endpoints/dist-types/types/RuleSetObject.d.ts +4 -0
  4626. package/node_modules/@smithy/util-endpoints/dist-types/types/TreeRuleObject.d.ts +3 -0
  4627. package/node_modules/@smithy/util-endpoints/dist-types/types/index.d.ts +7 -0
  4628. package/node_modules/@smithy/util-endpoints/dist-types/types/shared.d.ts +25 -0
  4629. package/node_modules/@smithy/util-endpoints/dist-types/utils/callFunction.d.ts +2 -0
  4630. package/node_modules/@smithy/util-endpoints/dist-types/utils/customEndpointFunctions.d.ts +4 -0
  4631. package/node_modules/@smithy/util-endpoints/dist-types/utils/endpointFunctions.d.ts +11 -0
  4632. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +8 -0
  4633. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateConditions.d.ts +8 -0
  4634. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateEndpointRule.d.ts +3 -0
  4635. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +2 -0
  4636. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateExpression.d.ts +2 -0
  4637. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +3 -0
  4638. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTemplate.d.ts +2 -0
  4639. package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTreeRule.d.ts +3 -0
  4640. package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +2 -0
  4641. package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +2 -0
  4642. package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperty.d.ts +3 -0
  4643. package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +2 -0
  4644. package/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +2 -0
  4645. package/node_modules/@smithy/util-endpoints/dist-types/utils/index.d.ts +2 -0
  4646. package/node_modules/@smithy/util-endpoints/package.json +67 -0
  4647. package/node_modules/@smithy/util-hex-encoding/LICENSE +201 -0
  4648. package/node_modules/@smithy/util-hex-encoding/README.md +4 -0
  4649. package/node_modules/@smithy/util-hex-encoding/dist-cjs/index.js +67 -0
  4650. package/node_modules/@smithy/util-hex-encoding/dist-es/index.js +33 -0
  4651. package/node_modules/@smithy/util-hex-encoding/dist-types/index.d.ts +12 -0
  4652. package/node_modules/@smithy/util-hex-encoding/dist-types/ts3.4/index.d.ts +12 -0
  4653. package/node_modules/@smithy/util-hex-encoding/package.json +60 -0
  4654. package/node_modules/@smithy/util-middleware/LICENSE +201 -0
  4655. package/node_modules/@smithy/util-middleware/README.md +12 -0
  4656. package/node_modules/@smithy/util-middleware/dist-cjs/getSmithyContext.js +1 -0
  4657. package/node_modules/@smithy/util-middleware/dist-cjs/index.js +45 -0
  4658. package/node_modules/@smithy/util-middleware/dist-cjs/normalizeProvider.js +1 -0
  4659. package/node_modules/@smithy/util-middleware/dist-es/getSmithyContext.js +2 -0
  4660. package/node_modules/@smithy/util-middleware/dist-es/index.js +2 -0
  4661. package/node_modules/@smithy/util-middleware/dist-es/normalizeProvider.js +6 -0
  4662. package/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +5 -0
  4663. package/node_modules/@smithy/util-middleware/dist-types/index.d.ts +8 -0
  4664. package/node_modules/@smithy/util-middleware/dist-types/normalizeProvider.d.ts +7 -0
  4665. package/node_modules/@smithy/util-middleware/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
  4666. package/node_modules/@smithy/util-middleware/dist-types/ts3.4/index.d.ts +8 -0
  4667. package/node_modules/@smithy/util-middleware/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
  4668. package/node_modules/@smithy/util-middleware/package.json +66 -0
  4669. package/node_modules/@smithy/util-retry/LICENSE +201 -0
  4670. package/node_modules/@smithy/util-retry/README.md +78 -0
  4671. package/node_modules/@smithy/util-retry/dist-cjs/AdaptiveRetryStrategy.js +1 -0
  4672. package/node_modules/@smithy/util-retry/dist-cjs/ConfiguredRetryStrategy.js +1 -0
  4673. package/node_modules/@smithy/util-retry/dist-cjs/DefaultRateLimiter.js +1 -0
  4674. package/node_modules/@smithy/util-retry/dist-cjs/StandardRetryStrategy.js +1 -0
  4675. package/node_modules/@smithy/util-retry/dist-cjs/config.js +1 -0
  4676. package/node_modules/@smithy/util-retry/dist-cjs/constants.js +1 -0
  4677. package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryBackoffStrategy.js +1 -0
  4678. package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryToken.js +1 -0
  4679. package/node_modules/@smithy/util-retry/dist-cjs/index.js +347 -0
  4680. package/node_modules/@smithy/util-retry/dist-cjs/types.js +1 -0
  4681. package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +24 -0
  4682. package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +18 -0
  4683. package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +99 -0
  4684. package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +65 -0
  4685. package/node_modules/@smithy/util-retry/dist-es/config.js +7 -0
  4686. package/node_modules/@smithy/util-retry/dist-es/constants.js +9 -0
  4687. package/node_modules/@smithy/util-retry/dist-es/defaultRetryBackoffStrategy.js +14 -0
  4688. package/node_modules/@smithy/util-retry/dist-es/defaultRetryToken.js +11 -0
  4689. package/node_modules/@smithy/util-retry/dist-es/index.js +7 -0
  4690. package/node_modules/@smithy/util-retry/dist-es/types.js +1 -0
  4691. package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +33 -0
  4692. package/node_modules/@smithy/util-retry/dist-types/ConfiguredRetryStrategy.d.ts +32 -0
  4693. package/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +45 -0
  4694. package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +26 -0
  4695. package/node_modules/@smithy/util-retry/dist-types/config.d.ts +20 -0
  4696. package/node_modules/@smithy/util-retry/dist-types/constants.d.ts +59 -0
  4697. package/node_modules/@smithy/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +5 -0
  4698. package/node_modules/@smithy/util-retry/dist-types/defaultRetryToken.d.ts +9 -0
  4699. package/node_modules/@smithy/util-retry/dist-types/index.d.ts +7 -0
  4700. package/node_modules/@smithy/util-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +33 -0
  4701. package/node_modules/@smithy/util-retry/dist-types/ts3.4/ConfiguredRetryStrategy.d.ts +32 -0
  4702. package/node_modules/@smithy/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +45 -0
  4703. package/node_modules/@smithy/util-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +26 -0
  4704. package/node_modules/@smithy/util-retry/dist-types/ts3.4/config.d.ts +20 -0
  4705. package/node_modules/@smithy/util-retry/dist-types/ts3.4/constants.d.ts +59 -0
  4706. package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryBackoffStrategy.d.ts +5 -0
  4707. package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryToken.d.ts +9 -0
  4708. package/node_modules/@smithy/util-retry/dist-types/ts3.4/index.d.ts +7 -0
  4709. package/node_modules/@smithy/util-retry/dist-types/ts3.4/types.d.ts +19 -0
  4710. package/node_modules/@smithy/util-retry/dist-types/types.d.ts +19 -0
  4711. package/node_modules/@smithy/util-retry/package.json +68 -0
  4712. package/node_modules/@smithy/util-stream/LICENSE +201 -0
  4713. package/node_modules/@smithy/util-stream/README.md +6 -0
  4714. package/node_modules/@smithy/util-stream/dist-cjs/blob/Uint8ArrayBlobAdapter.js +1 -0
  4715. package/node_modules/@smithy/util-stream/dist-cjs/blob/transforms.js +1 -0
  4716. package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +31 -0
  4717. package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +30 -0
  4718. package/node_modules/@smithy/util-stream/dist-cjs/index.js +89 -0
  4719. package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +69 -0
  4720. package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +50 -0
  4721. package/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +18 -0
  4722. package/node_modules/@smithy/util-stream/dist-es/blob/transforms.js +15 -0
  4723. package/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.browser.js +27 -0
  4724. package/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.js +26 -0
  4725. package/node_modules/@smithy/util-stream/dist-es/index.js +3 -0
  4726. package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +64 -0
  4727. package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +45 -0
  4728. package/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +21 -0
  4729. package/node_modules/@smithy/util-stream/dist-types/blob/transforms.d.ts +9 -0
  4730. package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.browser.d.ts +5 -0
  4731. package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +7 -0
  4732. package/node_modules/@smithy/util-stream/dist-types/index.d.ts +3 -0
  4733. package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.browser.d.ts +7 -0
  4734. package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +8 -0
  4735. package/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +21 -0
  4736. package/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/transforms.d.ts +9 -0
  4737. package/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.browser.d.ts +5 -0
  4738. package/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +7 -0
  4739. package/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +3 -0
  4740. package/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.browser.d.ts +7 -0
  4741. package/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.d.ts +8 -0
  4742. package/node_modules/@smithy/util-stream/package.json +95 -0
  4743. package/node_modules/@smithy/util-uri-escape/LICENSE +201 -0
  4744. package/node_modules/@smithy/util-uri-escape/README.md +10 -0
  4745. package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri-path.js +1 -0
  4746. package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri.js +1 -0
  4747. package/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +43 -0
  4748. package/node_modules/@smithy/util-uri-escape/dist-es/escape-uri-path.js +2 -0
  4749. package/node_modules/@smithy/util-uri-escape/dist-es/escape-uri.js +2 -0
  4750. package/node_modules/@smithy/util-uri-escape/dist-es/index.js +2 -0
  4751. package/node_modules/@smithy/util-uri-escape/dist-types/escape-uri-path.d.ts +4 -0
  4752. package/node_modules/@smithy/util-uri-escape/dist-types/escape-uri.d.ts +4 -0
  4753. package/node_modules/@smithy/util-uri-escape/dist-types/index.d.ts +8 -0
  4754. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +4 -0
  4755. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +4 -0
  4756. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/index.d.ts +8 -0
  4757. package/node_modules/@smithy/util-uri-escape/package.json +59 -0
  4758. package/node_modules/@smithy/util-utf8/LICENSE +201 -0
  4759. package/node_modules/@smithy/util-utf8/README.md +4 -0
  4760. package/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +1 -0
  4761. package/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +1 -0
  4762. package/node_modules/@smithy/util-utf8/dist-cjs/index.js +57 -0
  4763. package/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +1 -0
  4764. package/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +1 -0
  4765. package/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +1 -0
  4766. package/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +1 -0
  4767. package/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +5 -0
  4768. package/node_modules/@smithy/util-utf8/dist-es/index.js +3 -0
  4769. package/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +10 -0
  4770. package/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +1 -0
  4771. package/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +2 -0
  4772. package/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +1 -0
  4773. package/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +1 -0
  4774. package/node_modules/@smithy/util-utf8/dist-types/index.d.ts +3 -0
  4775. package/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +1 -0
  4776. package/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +1 -0
  4777. package/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +1 -0
  4778. package/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +1 -0
  4779. package/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +1 -0
  4780. package/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +3 -0
  4781. package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +1 -0
  4782. package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +1 -0
  4783. package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +1 -0
  4784. package/node_modules/@smithy/util-utf8/package.json +66 -0
  4785. package/node_modules/@smithy/util-waiter/LICENSE +201 -0
  4786. package/node_modules/@smithy/util-waiter/README.md +10 -0
  4787. package/node_modules/@smithy/util-waiter/dist-cjs/createWaiter.js +1 -0
  4788. package/node_modules/@smithy/util-waiter/dist-cjs/index.js +155 -0
  4789. package/node_modules/@smithy/util-waiter/dist-cjs/poller.js +1 -0
  4790. package/node_modules/@smithy/util-waiter/dist-cjs/utils/index.js +1 -0
  4791. package/node_modules/@smithy/util-waiter/dist-cjs/utils/sleep.js +1 -0
  4792. package/node_modules/@smithy/util-waiter/dist-cjs/utils/validate.js +1 -0
  4793. package/node_modules/@smithy/util-waiter/dist-cjs/waiter.js +1 -0
  4794. package/node_modules/@smithy/util-waiter/dist-es/createWaiter.js +23 -0
  4795. package/node_modules/@smithy/util-waiter/dist-es/index.js +2 -0
  4796. package/node_modules/@smithy/util-waiter/dist-es/poller.js +33 -0
  4797. package/node_modules/@smithy/util-waiter/dist-es/utils/index.js +2 -0
  4798. package/node_modules/@smithy/util-waiter/dist-es/utils/sleep.js +3 -0
  4799. package/node_modules/@smithy/util-waiter/dist-es/utils/validate.js +17 -0
  4800. package/node_modules/@smithy/util-waiter/dist-es/waiter.js +34 -0
  4801. package/node_modules/@smithy/util-waiter/dist-types/createWaiter.d.ts +11 -0
  4802. package/node_modules/@smithy/util-waiter/dist-types/index.d.ts +2 -0
  4803. package/node_modules/@smithy/util-waiter/dist-types/poller.d.ts +10 -0
  4804. package/node_modules/@smithy/util-waiter/dist-types/ts3.4/createWaiter.d.ts +11 -0
  4805. package/node_modules/@smithy/util-waiter/dist-types/ts3.4/index.d.ts +2 -0
  4806. package/node_modules/@smithy/util-waiter/dist-types/ts3.4/poller.d.ts +10 -0
  4807. package/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/index.d.ts +8 -0
  4808. package/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/sleep.d.ts +4 -0
  4809. package/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/validate.d.ts +8 -0
  4810. package/node_modules/@smithy/util-waiter/dist-types/ts3.4/waiter.d.ts +44 -0
  4811. package/node_modules/@smithy/util-waiter/dist-types/utils/index.d.ts +8 -0
  4812. package/node_modules/@smithy/util-waiter/dist-types/utils/sleep.d.ts +4 -0
  4813. package/node_modules/@smithy/util-waiter/dist-types/utils/validate.d.ts +8 -0
  4814. package/node_modules/@smithy/util-waiter/dist-types/waiter.d.ts +44 -0
  4815. package/node_modules/@smithy/util-waiter/package.json +62 -0
  4816. package/node_modules/@types/aws-lambda/LICENSE +21 -0
  4817. package/node_modules/@types/aws-lambda/README.md +15 -0
  4818. package/node_modules/@types/aws-lambda/common/api-gateway.d.ts +83 -0
  4819. package/node_modules/@types/aws-lambda/common/cloudfront.d.ts +232 -0
  4820. package/node_modules/@types/aws-lambda/handler.d.ts +172 -0
  4821. package/node_modules/@types/aws-lambda/index.d.ts +51 -0
  4822. package/node_modules/@types/aws-lambda/package.json +230 -0
  4823. package/node_modules/@types/aws-lambda/trigger/alb.d.ts +48 -0
  4824. package/node_modules/@types/aws-lambda/trigger/amplify-resolver.d.ts +38 -0
  4825. package/node_modules/@types/aws-lambda/trigger/api-gateway-authorizer.d.ts +244 -0
  4826. package/node_modules/@types/aws-lambda/trigger/api-gateway-proxy.d.ts +336 -0
  4827. package/node_modules/@types/aws-lambda/trigger/appsync-resolver.d.ts +116 -0
  4828. package/node_modules/@types/aws-lambda/trigger/autoscaling.d.ts +41 -0
  4829. package/node_modules/@types/aws-lambda/trigger/cdk-custom-resource.d.ts +67 -0
  4830. package/node_modules/@types/aws-lambda/trigger/cloudformation-custom-resource.d.ts +70 -0
  4831. package/node_modules/@types/aws-lambda/trigger/cloudfront-request.d.ts +22 -0
  4832. package/node_modules/@types/aws-lambda/trigger/cloudfront-response.d.ts +21 -0
  4833. package/node_modules/@types/aws-lambda/trigger/cloudwatch-events.d.ts +8 -0
  4834. package/node_modules/@types/aws-lambda/trigger/cloudwatch-logs.d.ts +37 -0
  4835. package/node_modules/@types/aws-lambda/trigger/codebuild-cloudwatch-state.d.ts +104 -0
  4836. package/node_modules/@types/aws-lambda/trigger/codecommit.d.ts +35 -0
  4837. package/node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-action.d.ts +31 -0
  4838. package/node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-pipeline.d.ts +32 -0
  4839. package/node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-stage.d.ts +23 -0
  4840. package/node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch.d.ts +11 -0
  4841. package/node_modules/@types/aws-lambda/trigger/codepipeline.d.ts +55 -0
  4842. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/_common.d.ts +41 -0
  4843. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/create-auth-challenge.d.ts +22 -0
  4844. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-email-sender.d.ts +76 -0
  4845. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-message.d.ts +52 -0
  4846. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-sms-sender.d.ts +51 -0
  4847. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/define-auth-challenge.d.ts +21 -0
  4848. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/index.d.ts +128 -0
  4849. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-authentication.d.ts +15 -0
  4850. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-confirmation.d.ts +26 -0
  4851. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-authentication.d.ts +16 -0
  4852. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-signup.d.ts +31 -0
  4853. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation-v2.d.ts +73 -0
  4854. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation.d.ts +53 -0
  4855. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/user-migration.d.ts +40 -0
  4856. package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/verify-auth-challenge-response.d.ts +22 -0
  4857. package/node_modules/@types/aws-lambda/trigger/connect-contact-flow.d.ts +64 -0
  4858. package/node_modules/@types/aws-lambda/trigger/dynamodb-stream.d.ts +55 -0
  4859. package/node_modules/@types/aws-lambda/trigger/eventbridge.d.ts +19 -0
  4860. package/node_modules/@types/aws-lambda/trigger/iot-authorizer.d.ts +48 -0
  4861. package/node_modules/@types/aws-lambda/trigger/iot.d.ts +28 -0
  4862. package/node_modules/@types/aws-lambda/trigger/kinesis-firehose-transformation.d.ts +51 -0
  4863. package/node_modules/@types/aws-lambda/trigger/kinesis-stream.d.ts +56 -0
  4864. package/node_modules/@types/aws-lambda/trigger/lambda-function-url.d.ts +45 -0
  4865. package/node_modules/@types/aws-lambda/trigger/lex-v2.d.ts +164 -0
  4866. package/node_modules/@types/aws-lambda/trigger/lex.d.ts +120 -0
  4867. package/node_modules/@types/aws-lambda/trigger/msk.d.ts +28 -0
  4868. package/node_modules/@types/aws-lambda/trigger/s3-batch.d.ts +41 -0
  4869. package/node_modules/@types/aws-lambda/trigger/s3-event-notification.d.ts +290 -0
  4870. package/node_modules/@types/aws-lambda/trigger/s3.d.ts +60 -0
  4871. package/node_modules/@types/aws-lambda/trigger/secretsmanager.d.ts +15 -0
  4872. package/node_modules/@types/aws-lambda/trigger/self-managed-kafka.d.ts +27 -0
  4873. package/node_modules/@types/aws-lambda/trigger/ses.d.ts +109 -0
  4874. package/node_modules/@types/aws-lambda/trigger/sns.d.ts +39 -0
  4875. package/node_modules/@types/aws-lambda/trigger/sqs.d.ts +57 -0
  4876. package/node_modules/asynckit/LICENSE +21 -0
  4877. package/node_modules/asynckit/README.md +233 -0
  4878. package/node_modules/asynckit/bench.js +76 -0
  4879. package/node_modules/asynckit/index.js +6 -0
  4880. package/node_modules/asynckit/lib/abort.js +29 -0
  4881. package/node_modules/asynckit/lib/async.js +34 -0
  4882. package/node_modules/asynckit/lib/defer.js +26 -0
  4883. package/node_modules/asynckit/lib/iterate.js +75 -0
  4884. package/node_modules/asynckit/lib/readable_asynckit.js +91 -0
  4885. package/node_modules/asynckit/lib/readable_parallel.js +25 -0
  4886. package/node_modules/asynckit/lib/readable_serial.js +25 -0
  4887. package/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
  4888. package/node_modules/asynckit/lib/state.js +37 -0
  4889. package/node_modules/asynckit/lib/streamify.js +141 -0
  4890. package/node_modules/asynckit/lib/terminator.js +29 -0
  4891. package/node_modules/asynckit/package.json +63 -0
  4892. package/node_modules/asynckit/parallel.js +43 -0
  4893. package/node_modules/asynckit/serial.js +17 -0
  4894. package/node_modules/asynckit/serialOrdered.js +75 -0
  4895. package/node_modules/asynckit/stream.js +21 -0
  4896. package/node_modules/axios/CHANGELOG.md +830 -0
  4897. package/node_modules/axios/LICENSE +7 -0
  4898. package/node_modules/axios/MIGRATION_GUIDE.md +3 -0
  4899. package/node_modules/axios/README.md +1647 -0
  4900. package/node_modules/axios/SECURITY.md +6 -0
  4901. package/node_modules/axios/dist/axios.js +3062 -0
  4902. package/node_modules/axios/dist/axios.js.map +1 -0
  4903. package/node_modules/axios/dist/axios.min.js +2 -0
  4904. package/node_modules/axios/dist/axios.min.js.map +1 -0
  4905. package/node_modules/axios/dist/browser/axios.cjs +3237 -0
  4906. package/node_modules/axios/dist/browser/axios.cjs.map +1 -0
  4907. package/node_modules/axios/dist/esm/axios.js +3260 -0
  4908. package/node_modules/axios/dist/esm/axios.js.map +1 -0
  4909. package/node_modules/axios/dist/esm/axios.min.js +2 -0
  4910. package/node_modules/axios/dist/esm/axios.min.js.map +1 -0
  4911. package/node_modules/axios/dist/node/axios.cjs +4334 -0
  4912. package/node_modules/axios/dist/node/axios.cjs.map +1 -0
  4913. package/node_modules/axios/index.d.cts +542 -0
  4914. package/node_modules/axios/index.d.ts +559 -0
  4915. package/node_modules/axios/index.js +43 -0
  4916. package/node_modules/axios/lib/adapters/README.md +37 -0
  4917. package/node_modules/axios/lib/adapters/adapters.js +77 -0
  4918. package/node_modules/axios/lib/adapters/http.js +685 -0
  4919. package/node_modules/axios/lib/adapters/xhr.js +260 -0
  4920. package/node_modules/axios/lib/axios.js +89 -0
  4921. package/node_modules/axios/lib/cancel/CancelToken.js +121 -0
  4922. package/node_modules/axios/lib/cancel/CanceledError.js +25 -0
  4923. package/node_modules/axios/lib/cancel/isCancel.js +5 -0
  4924. package/node_modules/axios/lib/core/Axios.js +201 -0
  4925. package/node_modules/axios/lib/core/AxiosError.js +100 -0
  4926. package/node_modules/axios/lib/core/AxiosHeaders.js +298 -0
  4927. package/node_modules/axios/lib/core/InterceptorManager.js +71 -0
  4928. package/node_modules/axios/lib/core/README.md +8 -0
  4929. package/node_modules/axios/lib/core/buildFullPath.js +21 -0
  4930. package/node_modules/axios/lib/core/dispatchRequest.js +81 -0
  4931. package/node_modules/axios/lib/core/mergeConfig.js +106 -0
  4932. package/node_modules/axios/lib/core/settle.js +27 -0
  4933. package/node_modules/axios/lib/core/transformData.js +28 -0
  4934. package/node_modules/axios/lib/defaults/index.js +159 -0
  4935. package/node_modules/axios/lib/defaults/transitional.js +7 -0
  4936. package/node_modules/axios/lib/env/README.md +3 -0
  4937. package/node_modules/axios/lib/env/classes/FormData.js +2 -0
  4938. package/node_modules/axios/lib/env/data.js +1 -0
  4939. package/node_modules/axios/lib/helpers/AxiosTransformStream.js +191 -0
  4940. package/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +58 -0
  4941. package/node_modules/axios/lib/helpers/HttpStatusCode.js +71 -0
  4942. package/node_modules/axios/lib/helpers/README.md +7 -0
  4943. package/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js +28 -0
  4944. package/node_modules/axios/lib/helpers/bind.js +7 -0
  4945. package/node_modules/axios/lib/helpers/buildURL.js +63 -0
  4946. package/node_modules/axios/lib/helpers/callbackify.js +16 -0
  4947. package/node_modules/axios/lib/helpers/combineURLs.js +15 -0
  4948. package/node_modules/axios/lib/helpers/cookies.js +42 -0
  4949. package/node_modules/axios/lib/helpers/deprecatedMethod.js +26 -0
  4950. package/node_modules/axios/lib/helpers/formDataToJSON.js +95 -0
  4951. package/node_modules/axios/lib/helpers/formDataToStream.js +111 -0
  4952. package/node_modules/axios/lib/helpers/fromDataURI.js +53 -0
  4953. package/node_modules/axios/lib/helpers/isAbsoluteURL.js +15 -0
  4954. package/node_modules/axios/lib/helpers/isAxiosError.js +14 -0
  4955. package/node_modules/axios/lib/helpers/isURLSameOrigin.js +67 -0
  4956. package/node_modules/axios/lib/helpers/null.js +2 -0
  4957. package/node_modules/axios/lib/helpers/parseHeaders.js +55 -0
  4958. package/node_modules/axios/lib/helpers/parseProtocol.js +6 -0
  4959. package/node_modules/axios/lib/helpers/readBlob.js +15 -0
  4960. package/node_modules/axios/lib/helpers/speedometer.js +55 -0
  4961. package/node_modules/axios/lib/helpers/spread.js +28 -0
  4962. package/node_modules/axios/lib/helpers/throttle.js +33 -0
  4963. package/node_modules/axios/lib/helpers/toFormData.js +219 -0
  4964. package/node_modules/axios/lib/helpers/toURLEncodedForm.js +18 -0
  4965. package/node_modules/axios/lib/helpers/validator.js +91 -0
  4966. package/node_modules/axios/lib/platform/browser/classes/Blob.js +3 -0
  4967. package/node_modules/axios/lib/platform/browser/classes/FormData.js +3 -0
  4968. package/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +4 -0
  4969. package/node_modules/axios/lib/platform/browser/index.js +13 -0
  4970. package/node_modules/axios/lib/platform/common/utils.js +47 -0
  4971. package/node_modules/axios/lib/platform/index.js +7 -0
  4972. package/node_modules/axios/lib/platform/node/classes/FormData.js +3 -0
  4973. package/node_modules/axios/lib/platform/node/classes/URLSearchParams.js +4 -0
  4974. package/node_modules/axios/lib/platform/node/index.js +12 -0
  4975. package/node_modules/axios/lib/utils.js +723 -0
  4976. package/node_modules/axios/package.json +218 -0
  4977. package/node_modules/bowser/CHANGELOG.md +218 -0
  4978. package/node_modules/bowser/LICENSE +39 -0
  4979. package/node_modules/bowser/README.md +179 -0
  4980. package/node_modules/bowser/bundled.js +1 -0
  4981. package/node_modules/bowser/es5.js +1 -0
  4982. package/node_modules/bowser/index.d.ts +250 -0
  4983. package/node_modules/bowser/package.json +83 -0
  4984. package/node_modules/bowser/src/bowser.js +77 -0
  4985. package/node_modules/bowser/src/constants.js +116 -0
  4986. package/node_modules/bowser/src/parser-browsers.js +700 -0
  4987. package/node_modules/bowser/src/parser-engines.js +120 -0
  4988. package/node_modules/bowser/src/parser-os.js +199 -0
  4989. package/node_modules/bowser/src/parser-platforms.js +266 -0
  4990. package/node_modules/bowser/src/parser.js +496 -0
  4991. package/node_modules/bowser/src/utils.js +309 -0
  4992. package/node_modules/cdk-remote-stack/.gitattributes +27 -0
  4993. package/node_modules/cdk-remote-stack/.gitpod.yml +19 -0
  4994. package/node_modules/cdk-remote-stack/.jsii +3139 -0
  4995. package/node_modules/cdk-remote-stack/API.md +149 -0
  4996. package/node_modules/cdk-remote-stack/CHANGELOG.md +290 -0
  4997. package/node_modules/cdk-remote-stack/CONTRIBUTING.md +53 -0
  4998. package/node_modules/cdk-remote-stack/LICENSE +202 -0
  4999. package/node_modules/cdk-remote-stack/README.md +243 -0
  5000. package/node_modules/cdk-remote-stack/custom-resource-handler/remote-outputs.py +62 -0
  5001. package/node_modules/cdk-remote-stack/custom-resource-handler/remote-parameters.py +77 -0
  5002. package/node_modules/cdk-remote-stack/images/remote-param-1.svg +3 -0
  5003. package/node_modules/cdk-remote-stack/images/remote-param-2.svg +3 -0
  5004. package/node_modules/cdk-remote-stack/images/remote-param-3.svg +3 -0
  5005. package/node_modules/cdk-remote-stack/lib/index.d.ts +68 -0
  5006. package/node_modules/cdk-remote-stack/lib/index.js +99 -0
  5007. package/node_modules/cdk-remote-stack/lib/integ.default.d.ts +9 -0
  5008. package/node_modules/cdk-remote-stack/lib/integ.default.js +92 -0
  5009. package/node_modules/cdk-remote-stack/package.json +144 -0
  5010. package/node_modules/cdk-remote-stack/version.json +3 -0
  5011. package/node_modules/combined-stream/License +19 -0
  5012. package/node_modules/combined-stream/Readme.md +138 -0
  5013. package/node_modules/combined-stream/lib/combined_stream.js +208 -0
  5014. package/node_modules/combined-stream/package.json +25 -0
  5015. package/node_modules/cookie/HISTORY.md +147 -0
  5016. package/node_modules/cookie/LICENSE +24 -0
  5017. package/node_modules/cookie/README.md +317 -0
  5018. package/node_modules/cookie/SECURITY.md +25 -0
  5019. package/node_modules/cookie/index.js +274 -0
  5020. package/node_modules/cookie/package.json +44 -0
  5021. package/node_modules/delayed-stream/.npmignore +1 -0
  5022. package/node_modules/delayed-stream/License +19 -0
  5023. package/node_modules/delayed-stream/Makefile +7 -0
  5024. package/node_modules/delayed-stream/Readme.md +141 -0
  5025. package/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
  5026. package/node_modules/delayed-stream/package.json +27 -0
  5027. package/node_modules/dotenv/CHANGELOG.md +447 -0
  5028. package/node_modules/dotenv/LICENSE +23 -0
  5029. package/node_modules/dotenv/README-es.md +442 -0
  5030. package/node_modules/dotenv/README.md +669 -0
  5031. package/node_modules/dotenv/config.d.ts +1 -0
  5032. package/node_modules/dotenv/config.js +9 -0
  5033. package/node_modules/dotenv/lib/cli-options.js +11 -0
  5034. package/node_modules/dotenv/lib/env-options.js +24 -0
  5035. package/node_modules/dotenv/lib/main.d.ts +153 -0
  5036. package/node_modules/dotenv/lib/main.js +343 -0
  5037. package/node_modules/dotenv/package.json +64 -0
  5038. package/node_modules/fast-xml-parser/CHANGELOG.md +554 -0
  5039. package/node_modules/fast-xml-parser/LICENSE +21 -0
  5040. package/node_modules/fast-xml-parser/README.md +204 -0
  5041. package/node_modules/fast-xml-parser/package.json +71 -0
  5042. package/node_modules/fast-xml-parser/src/cli/cli.js +93 -0
  5043. package/node_modules/fast-xml-parser/src/cli/man.js +12 -0
  5044. package/node_modules/fast-xml-parser/src/cli/read.js +92 -0
  5045. package/node_modules/fast-xml-parser/src/fxp.d.ts +108 -0
  5046. package/node_modules/fast-xml-parser/src/fxp.js +11 -0
  5047. package/node_modules/fast-xml-parser/src/util.js +72 -0
  5048. package/node_modules/fast-xml-parser/src/validator.js +423 -0
  5049. package/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +259 -0
  5050. package/node_modules/fast-xml-parser/src/xmlbuilder/orderedJs2Xml.js +131 -0
  5051. package/node_modules/fast-xml-parser/src/xmlbuilder/prettifyJs2Xml.js +0 -0
  5052. package/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +152 -0
  5053. package/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +48 -0
  5054. package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +588 -0
  5055. package/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +58 -0
  5056. package/node_modules/fast-xml-parser/src/xmlparser/node2json.js +113 -0
  5057. package/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +25 -0
  5058. package/node_modules/follow-redirects/LICENSE +18 -0
  5059. package/node_modules/follow-redirects/README.md +155 -0
  5060. package/node_modules/follow-redirects/debug.js +15 -0
  5061. package/node_modules/follow-redirects/http.js +1 -0
  5062. package/node_modules/follow-redirects/https.js +1 -0
  5063. package/node_modules/follow-redirects/index.js +672 -0
  5064. package/node_modules/follow-redirects/package.json +58 -0
  5065. package/node_modules/form-data/License +19 -0
  5066. package/node_modules/form-data/README.md.bak +358 -0
  5067. package/node_modules/form-data/Readme.md +358 -0
  5068. package/node_modules/form-data/index.d.ts +62 -0
  5069. package/node_modules/form-data/lib/browser.js +2 -0
  5070. package/node_modules/form-data/lib/form_data.js +501 -0
  5071. package/node_modules/form-data/lib/populate.js +10 -0
  5072. package/node_modules/form-data/package.json +68 -0
  5073. package/node_modules/jose/LICENSE.md +21 -0
  5074. package/node_modules/jose/README.md +132 -0
  5075. package/node_modules/jose/dist/browser/index.js +32 -0
  5076. package/node_modules/jose/dist/browser/jwe/compact/decrypt.js +27 -0
  5077. package/node_modules/jose/dist/browser/jwe/compact/encrypt.js +26 -0
  5078. package/node_modules/jose/dist/browser/jwe/flattened/decrypt.js +166 -0
  5079. package/node_modules/jose/dist/browser/jwe/flattened/encrypt.js +175 -0
  5080. package/node_modules/jose/dist/browser/jwe/general/decrypt.js +31 -0
  5081. package/node_modules/jose/dist/browser/jwe/general/encrypt.js +178 -0
  5082. package/node_modules/jose/dist/browser/jwk/embedded.js +17 -0
  5083. package/node_modules/jose/dist/browser/jwk/thumbprint.js +53 -0
  5084. package/node_modules/jose/dist/browser/jwks/local.js +116 -0
  5085. package/node_modules/jose/dist/browser/jwks/remote.js +76 -0
  5086. package/node_modules/jose/dist/browser/jws/compact/sign.js +17 -0
  5087. package/node_modules/jose/dist/browser/jws/compact/verify.js +21 -0
  5088. package/node_modules/jose/dist/browser/jws/flattened/sign.js +81 -0
  5089. package/node_modules/jose/dist/browser/jws/flattened/verify.js +115 -0
  5090. package/node_modules/jose/dist/browser/jws/general/sign.js +67 -0
  5091. package/node_modules/jose/dist/browser/jws/general/verify.js +24 -0
  5092. package/node_modules/jose/dist/browser/jwt/decrypt.js +23 -0
  5093. package/node_modules/jose/dist/browser/jwt/encrypt.js +68 -0
  5094. package/node_modules/jose/dist/browser/jwt/produce.js +54 -0
  5095. package/node_modules/jose/dist/browser/jwt/sign.js +21 -0
  5096. package/node_modules/jose/dist/browser/jwt/unsecured.js +32 -0
  5097. package/node_modules/jose/dist/browser/jwt/verify.js +16 -0
  5098. package/node_modules/jose/dist/browser/key/export.js +12 -0
  5099. package/node_modules/jose/dist/browser/key/generate_key_pair.js +4 -0
  5100. package/node_modules/jose/dist/browser/key/generate_secret.js +4 -0
  5101. package/node_modules/jose/dist/browser/key/import.js +50 -0
  5102. package/node_modules/jose/dist/browser/lib/aesgcmkw.js +14 -0
  5103. package/node_modules/jose/dist/browser/lib/buffer_utils.js +51 -0
  5104. package/node_modules/jose/dist/browser/lib/cek.js +20 -0
  5105. package/node_modules/jose/dist/browser/lib/check_iv_length.js +8 -0
  5106. package/node_modules/jose/dist/browser/lib/check_key_type.js +45 -0
  5107. package/node_modules/jose/dist/browser/lib/check_p2s.js +6 -0
  5108. package/node_modules/jose/dist/browser/lib/crypto_key.js +152 -0
  5109. package/node_modules/jose/dist/browser/lib/decrypt_key_management.js +127 -0
  5110. package/node_modules/jose/dist/browser/lib/encrypt_key_management.js +87 -0
  5111. package/node_modules/jose/dist/browser/lib/epoch.js +1 -0
  5112. package/node_modules/jose/dist/browser/lib/format_pem.js +4 -0
  5113. package/node_modules/jose/dist/browser/lib/invalid_key_input.js +30 -0
  5114. package/node_modules/jose/dist/browser/lib/is_disjoint.js +22 -0
  5115. package/node_modules/jose/dist/browser/lib/is_object.js +16 -0
  5116. package/node_modules/jose/dist/browser/lib/iv.js +20 -0
  5117. package/node_modules/jose/dist/browser/lib/jwt_claims_set.js +102 -0
  5118. package/node_modules/jose/dist/browser/lib/secs.js +44 -0
  5119. package/node_modules/jose/dist/browser/lib/validate_algorithms.js +11 -0
  5120. package/node_modules/jose/dist/browser/lib/validate_crit.js +34 -0
  5121. package/node_modules/jose/dist/browser/package.json +1 -0
  5122. package/node_modules/jose/dist/browser/runtime/aeskw.js +32 -0
  5123. package/node_modules/jose/dist/browser/runtime/asn1.js +202 -0
  5124. package/node_modules/jose/dist/browser/runtime/base64url.js +37 -0
  5125. package/node_modules/jose/dist/browser/runtime/bogus.js +6 -0
  5126. package/node_modules/jose/dist/browser/runtime/check_cek_length.js +8 -0
  5127. package/node_modules/jose/dist/browser/runtime/check_key_length.js +8 -0
  5128. package/node_modules/jose/dist/browser/runtime/decrypt.js +85 -0
  5129. package/node_modules/jose/dist/browser/runtime/digest.js +6 -0
  5130. package/node_modules/jose/dist/browser/runtime/ecdhes.js +46 -0
  5131. package/node_modules/jose/dist/browser/runtime/encrypt.js +68 -0
  5132. package/node_modules/jose/dist/browser/runtime/fetch_jwks.js +34 -0
  5133. package/node_modules/jose/dist/browser/runtime/generate.js +141 -0
  5134. package/node_modules/jose/dist/browser/runtime/get_sign_verify_key.js +17 -0
  5135. package/node_modules/jose/dist/browser/runtime/is_key_like.js +5 -0
  5136. package/node_modules/jose/dist/browser/runtime/jwk_to_key.js +143 -0
  5137. package/node_modules/jose/dist/browser/runtime/key_to_jwk.js +21 -0
  5138. package/node_modules/jose/dist/browser/runtime/pbes2kw.js +51 -0
  5139. package/node_modules/jose/dist/browser/runtime/random.js +2 -0
  5140. package/node_modules/jose/dist/browser/runtime/rsaes.js +37 -0
  5141. package/node_modules/jose/dist/browser/runtime/runtime.js +1 -0
  5142. package/node_modules/jose/dist/browser/runtime/sign.js +11 -0
  5143. package/node_modules/jose/dist/browser/runtime/subtle_dsa.js +26 -0
  5144. package/node_modules/jose/dist/browser/runtime/subtle_rsaes.js +12 -0
  5145. package/node_modules/jose/dist/browser/runtime/timing_safe_equal.js +19 -0
  5146. package/node_modules/jose/dist/browser/runtime/verify.js +16 -0
  5147. package/node_modules/jose/dist/browser/runtime/webcrypto.js +2 -0
  5148. package/node_modules/jose/dist/browser/runtime/zlib.js +7 -0
  5149. package/node_modules/jose/dist/browser/util/base64url.js +3 -0
  5150. package/node_modules/jose/dist/browser/util/decode_jwt.js +32 -0
  5151. package/node_modules/jose/dist/browser/util/decode_protected_header.js +34 -0
  5152. package/node_modules/jose/dist/browser/util/errors.js +148 -0
  5153. package/node_modules/jose/dist/browser/util/runtime.js +2 -0
  5154. package/node_modules/jose/dist/node/cjs/index.js +67 -0
  5155. package/node_modules/jose/dist/node/cjs/jwe/compact/decrypt.js +31 -0
  5156. package/node_modules/jose/dist/node/cjs/jwe/compact/encrypt.js +30 -0
  5157. package/node_modules/jose/dist/node/cjs/jwe/flattened/decrypt.js +170 -0
  5158. package/node_modules/jose/dist/node/cjs/jwe/flattened/encrypt.js +179 -0
  5159. package/node_modules/jose/dist/node/cjs/jwe/general/decrypt.js +35 -0
  5160. package/node_modules/jose/dist/node/cjs/jwe/general/encrypt.js +182 -0
  5161. package/node_modules/jose/dist/node/cjs/jwk/embedded.js +21 -0
  5162. package/node_modules/jose/dist/node/cjs/jwk/thumbprint.js +58 -0
  5163. package/node_modules/jose/dist/node/cjs/jwks/local.js +122 -0
  5164. package/node_modules/jose/dist/node/cjs/jwks/remote.js +80 -0
  5165. package/node_modules/jose/dist/node/cjs/jws/compact/sign.js +21 -0
  5166. package/node_modules/jose/dist/node/cjs/jws/compact/verify.js +25 -0
  5167. package/node_modules/jose/dist/node/cjs/jws/flattened/sign.js +85 -0
  5168. package/node_modules/jose/dist/node/cjs/jws/flattened/verify.js +119 -0
  5169. package/node_modules/jose/dist/node/cjs/jws/general/sign.js +71 -0
  5170. package/node_modules/jose/dist/node/cjs/jws/general/verify.js +28 -0
  5171. package/node_modules/jose/dist/node/cjs/jwt/decrypt.js +27 -0
  5172. package/node_modules/jose/dist/node/cjs/jwt/encrypt.js +72 -0
  5173. package/node_modules/jose/dist/node/cjs/jwt/produce.js +58 -0
  5174. package/node_modules/jose/dist/node/cjs/jwt/sign.js +25 -0
  5175. package/node_modules/jose/dist/node/cjs/jwt/unsecured.js +36 -0
  5176. package/node_modules/jose/dist/node/cjs/jwt/verify.js +20 -0
  5177. package/node_modules/jose/dist/node/cjs/key/export.js +18 -0
  5178. package/node_modules/jose/dist/node/cjs/key/generate_key_pair.js +8 -0
  5179. package/node_modules/jose/dist/node/cjs/key/generate_secret.js +8 -0
  5180. package/node_modules/jose/dist/node/cjs/key/import.js +57 -0
  5181. package/node_modules/jose/dist/node/cjs/lib/aesgcmkw.js +19 -0
  5182. package/node_modules/jose/dist/node/cjs/lib/buffer_utils.js +60 -0
  5183. package/node_modules/jose/dist/node/cjs/lib/cek.js +24 -0
  5184. package/node_modules/jose/dist/node/cjs/lib/check_iv_length.js +10 -0
  5185. package/node_modules/jose/dist/node/cjs/lib/check_key_type.js +47 -0
  5186. package/node_modules/jose/dist/node/cjs/lib/check_p2s.js +9 -0
  5187. package/node_modules/jose/dist/node/cjs/lib/crypto_key.js +157 -0
  5188. package/node_modules/jose/dist/node/cjs/lib/decrypt_key_management.js +129 -0
  5189. package/node_modules/jose/dist/node/cjs/lib/encrypt_key_management.js +89 -0
  5190. package/node_modules/jose/dist/node/cjs/lib/epoch.js +3 -0
  5191. package/node_modules/jose/dist/node/cjs/lib/invalid_key_input.js +34 -0
  5192. package/node_modules/jose/dist/node/cjs/lib/is_disjoint.js +24 -0
  5193. package/node_modules/jose/dist/node/cjs/lib/is_object.js +19 -0
  5194. package/node_modules/jose/dist/node/cjs/lib/iv.js +24 -0
  5195. package/node_modules/jose/dist/node/cjs/lib/jwt_claims_set.js +104 -0
  5196. package/node_modules/jose/dist/node/cjs/lib/secs.js +46 -0
  5197. package/node_modules/jose/dist/node/cjs/lib/validate_algorithms.js +13 -0
  5198. package/node_modules/jose/dist/node/cjs/lib/validate_crit.js +36 -0
  5199. package/node_modules/jose/dist/node/cjs/runtime/aeskw.js +55 -0
  5200. package/node_modules/jose/dist/node/cjs/runtime/asn1.js +54 -0
  5201. package/node_modules/jose/dist/node/cjs/runtime/asn1_sequence_decoder.js +47 -0
  5202. package/node_modules/jose/dist/node/cjs/runtime/asn1_sequence_encoder.js +91 -0
  5203. package/node_modules/jose/dist/node/cjs/runtime/base64url.js +25 -0
  5204. package/node_modules/jose/dist/node/cjs/runtime/cbc_tag.js +11 -0
  5205. package/node_modules/jose/dist/node/cjs/runtime/check_cek_length.js +37 -0
  5206. package/node_modules/jose/dist/node/cjs/runtime/check_modulus_length.js +52 -0
  5207. package/node_modules/jose/dist/node/cjs/runtime/ciphers.js +8 -0
  5208. package/node_modules/jose/dist/node/cjs/runtime/decrypt.js +97 -0
  5209. package/node_modules/jose/dist/node/cjs/runtime/digest.js +5 -0
  5210. package/node_modules/jose/dist/node/cjs/runtime/dsa_digest.js +25 -0
  5211. package/node_modules/jose/dist/node/cjs/runtime/ecdhes.js +70 -0
  5212. package/node_modules/jose/dist/node/cjs/runtime/encrypt.js +74 -0
  5213. package/node_modules/jose/dist/node/cjs/runtime/fetch_jwks.js +45 -0
  5214. package/node_modules/jose/dist/node/cjs/runtime/flags.js +8 -0
  5215. package/node_modules/jose/dist/node/cjs/runtime/generate.js +105 -0
  5216. package/node_modules/jose/dist/node/cjs/runtime/get_named_curve.js +95 -0
  5217. package/node_modules/jose/dist/node/cjs/runtime/get_sign_verify_key.js +24 -0
  5218. package/node_modules/jose/dist/node/cjs/runtime/hmac_digest.js +16 -0
  5219. package/node_modules/jose/dist/node/cjs/runtime/is_key_like.js +11 -0
  5220. package/node_modules/jose/dist/node/cjs/runtime/is_key_object.js +7 -0
  5221. package/node_modules/jose/dist/node/cjs/runtime/jwk_to_key.js +118 -0
  5222. package/node_modules/jose/dist/node/cjs/runtime/key_to_jwk.js +160 -0
  5223. package/node_modules/jose/dist/node/cjs/runtime/node_key.js +78 -0
  5224. package/node_modules/jose/dist/node/cjs/runtime/pbes2kw.js +48 -0
  5225. package/node_modules/jose/dist/node/cjs/runtime/random.js +5 -0
  5226. package/node_modules/jose/dist/node/cjs/runtime/rsaes.js +69 -0
  5227. package/node_modules/jose/dist/node/cjs/runtime/runtime.js +3 -0
  5228. package/node_modules/jose/dist/node/cjs/runtime/sign.js +25 -0
  5229. package/node_modules/jose/dist/node/cjs/runtime/timing_safe_equal.js +5 -0
  5230. package/node_modules/jose/dist/node/cjs/runtime/verify.js +38 -0
  5231. package/node_modules/jose/dist/node/cjs/runtime/webcrypto.js +11 -0
  5232. package/node_modules/jose/dist/node/cjs/runtime/zlib.js +11 -0
  5233. package/node_modules/jose/dist/node/cjs/util/base64url.js +6 -0
  5234. package/node_modules/jose/dist/node/cjs/util/decode_jwt.js +36 -0
  5235. package/node_modules/jose/dist/node/cjs/util/decode_protected_header.js +38 -0
  5236. package/node_modules/jose/dist/node/cjs/util/errors.js +166 -0
  5237. package/node_modules/jose/dist/node/cjs/util/runtime.js +4 -0
  5238. package/node_modules/jose/dist/node/esm/index.js +30 -0
  5239. package/node_modules/jose/dist/node/esm/jwe/compact/decrypt.js +27 -0
  5240. package/node_modules/jose/dist/node/esm/jwe/compact/encrypt.js +26 -0
  5241. package/node_modules/jose/dist/node/esm/jwe/flattened/decrypt.js +166 -0
  5242. package/node_modules/jose/dist/node/esm/jwe/flattened/encrypt.js +175 -0
  5243. package/node_modules/jose/dist/node/esm/jwe/general/decrypt.js +31 -0
  5244. package/node_modules/jose/dist/node/esm/jwe/general/encrypt.js +178 -0
  5245. package/node_modules/jose/dist/node/esm/jwk/embedded.js +17 -0
  5246. package/node_modules/jose/dist/node/esm/jwk/thumbprint.js +53 -0
  5247. package/node_modules/jose/dist/node/esm/jwks/local.js +116 -0
  5248. package/node_modules/jose/dist/node/esm/jwks/remote.js +76 -0
  5249. package/node_modules/jose/dist/node/esm/jws/compact/sign.js +17 -0
  5250. package/node_modules/jose/dist/node/esm/jws/compact/verify.js +21 -0
  5251. package/node_modules/jose/dist/node/esm/jws/flattened/sign.js +81 -0
  5252. package/node_modules/jose/dist/node/esm/jws/flattened/verify.js +115 -0
  5253. package/node_modules/jose/dist/node/esm/jws/general/sign.js +67 -0
  5254. package/node_modules/jose/dist/node/esm/jws/general/verify.js +24 -0
  5255. package/node_modules/jose/dist/node/esm/jwt/decrypt.js +23 -0
  5256. package/node_modules/jose/dist/node/esm/jwt/encrypt.js +68 -0
  5257. package/node_modules/jose/dist/node/esm/jwt/produce.js +54 -0
  5258. package/node_modules/jose/dist/node/esm/jwt/sign.js +21 -0
  5259. package/node_modules/jose/dist/node/esm/jwt/unsecured.js +32 -0
  5260. package/node_modules/jose/dist/node/esm/jwt/verify.js +16 -0
  5261. package/node_modules/jose/dist/node/esm/key/export.js +12 -0
  5262. package/node_modules/jose/dist/node/esm/key/generate_key_pair.js +4 -0
  5263. package/node_modules/jose/dist/node/esm/key/generate_secret.js +4 -0
  5264. package/node_modules/jose/dist/node/esm/key/import.js +50 -0
  5265. package/node_modules/jose/dist/node/esm/lib/aesgcmkw.js +14 -0
  5266. package/node_modules/jose/dist/node/esm/lib/buffer_utils.js +51 -0
  5267. package/node_modules/jose/dist/node/esm/lib/cek.js +20 -0
  5268. package/node_modules/jose/dist/node/esm/lib/check_iv_length.js +8 -0
  5269. package/node_modules/jose/dist/node/esm/lib/check_key_type.js +45 -0
  5270. package/node_modules/jose/dist/node/esm/lib/check_p2s.js +6 -0
  5271. package/node_modules/jose/dist/node/esm/lib/crypto_key.js +152 -0
  5272. package/node_modules/jose/dist/node/esm/lib/decrypt_key_management.js +127 -0
  5273. package/node_modules/jose/dist/node/esm/lib/encrypt_key_management.js +87 -0
  5274. package/node_modules/jose/dist/node/esm/lib/epoch.js +1 -0
  5275. package/node_modules/jose/dist/node/esm/lib/invalid_key_input.js +30 -0
  5276. package/node_modules/jose/dist/node/esm/lib/is_disjoint.js +22 -0
  5277. package/node_modules/jose/dist/node/esm/lib/is_object.js +16 -0
  5278. package/node_modules/jose/dist/node/esm/lib/iv.js +20 -0
  5279. package/node_modules/jose/dist/node/esm/lib/jwt_claims_set.js +102 -0
  5280. package/node_modules/jose/dist/node/esm/lib/secs.js +44 -0
  5281. package/node_modules/jose/dist/node/esm/lib/validate_algorithms.js +11 -0
  5282. package/node_modules/jose/dist/node/esm/lib/validate_crit.js +34 -0
  5283. package/node_modules/jose/dist/node/esm/package.json +1 -0
  5284. package/node_modules/jose/dist/node/esm/runtime/aeskw.js +50 -0
  5285. package/node_modules/jose/dist/node/esm/runtime/asn1.js +46 -0
  5286. package/node_modules/jose/dist/node/esm/runtime/asn1_sequence_decoder.js +44 -0
  5287. package/node_modules/jose/dist/node/esm/runtime/asn1_sequence_encoder.js +88 -0
  5288. package/node_modules/jose/dist/node/esm/runtime/base64url.js +20 -0
  5289. package/node_modules/jose/dist/node/esm/runtime/cbc_tag.js +8 -0
  5290. package/node_modules/jose/dist/node/esm/runtime/check_cek_length.js +35 -0
  5291. package/node_modules/jose/dist/node/esm/runtime/check_modulus_length.js +48 -0
  5292. package/node_modules/jose/dist/node/esm/runtime/ciphers.js +6 -0
  5293. package/node_modules/jose/dist/node/esm/runtime/decrypt.js +95 -0
  5294. package/node_modules/jose/dist/node/esm/runtime/digest.js +3 -0
  5295. package/node_modules/jose/dist/node/esm/runtime/dsa_digest.js +22 -0
  5296. package/node_modules/jose/dist/node/esm/runtime/ecdhes.js +64 -0
  5297. package/node_modules/jose/dist/node/esm/runtime/encrypt.js +72 -0
  5298. package/node_modules/jose/dist/node/esm/runtime/fetch_jwks.js +43 -0
  5299. package/node_modules/jose/dist/node/esm/runtime/flags.js +5 -0
  5300. package/node_modules/jose/dist/node/esm/runtime/generate.js +100 -0
  5301. package/node_modules/jose/dist/node/esm/runtime/get_named_curve.js +91 -0
  5302. package/node_modules/jose/dist/node/esm/runtime/get_sign_verify_key.js +21 -0
  5303. package/node_modules/jose/dist/node/esm/runtime/hmac_digest.js +13 -0
  5304. package/node_modules/jose/dist/node/esm/runtime/is_key_like.js +8 -0
  5305. package/node_modules/jose/dist/node/esm/runtime/is_key_object.js +5 -0
  5306. package/node_modules/jose/dist/node/esm/runtime/jwk_to_key.js +116 -0
  5307. package/node_modules/jose/dist/node/esm/runtime/key_to_jwk.js +158 -0
  5308. package/node_modules/jose/dist/node/esm/runtime/node_key.js +75 -0
  5309. package/node_modules/jose/dist/node/esm/runtime/pbes2kw.js +43 -0
  5310. package/node_modules/jose/dist/node/esm/runtime/random.js +1 -0
  5311. package/node_modules/jose/dist/node/esm/runtime/rsaes.js +64 -0
  5312. package/node_modules/jose/dist/node/esm/runtime/runtime.js +1 -0
  5313. package/node_modules/jose/dist/node/esm/runtime/sign.js +23 -0
  5314. package/node_modules/jose/dist/node/esm/runtime/timing_safe_equal.js +3 -0
  5315. package/node_modules/jose/dist/node/esm/runtime/verify.js +36 -0
  5316. package/node_modules/jose/dist/node/esm/runtime/webcrypto.js +8 -0
  5317. package/node_modules/jose/dist/node/esm/runtime/zlib.js +6 -0
  5318. package/node_modules/jose/dist/node/esm/util/base64url.js +3 -0
  5319. package/node_modules/jose/dist/node/esm/util/decode_jwt.js +32 -0
  5320. package/node_modules/jose/dist/node/esm/util/decode_protected_header.js +34 -0
  5321. package/node_modules/jose/dist/node/esm/util/errors.js +148 -0
  5322. package/node_modules/jose/dist/node/esm/util/runtime.js +2 -0
  5323. package/node_modules/jose/dist/types/index.d.ts +48 -0
  5324. package/node_modules/jose/dist/types/jwe/compact/decrypt.d.ts +23 -0
  5325. package/node_modules/jose/dist/types/jwe/compact/encrypt.d.ts +52 -0
  5326. package/node_modules/jose/dist/types/jwe/flattened/decrypt.d.ts +23 -0
  5327. package/node_modules/jose/dist/types/jwe/flattened/encrypt.d.ts +80 -0
  5328. package/node_modules/jose/dist/types/jwe/general/decrypt.d.ts +23 -0
  5329. package/node_modules/jose/dist/types/jwe/general/encrypt.d.ts +60 -0
  5330. package/node_modules/jose/dist/types/jwk/embedded.d.ts +9 -0
  5331. package/node_modules/jose/dist/types/jwk/thumbprint.d.ts +21 -0
  5332. package/node_modules/jose/dist/types/jwks/local.d.ts +26 -0
  5333. package/node_modules/jose/dist/types/jwks/remote.d.ts +49 -0
  5334. package/node_modules/jose/dist/types/jws/compact/sign.d.ts +24 -0
  5335. package/node_modules/jose/dist/types/jws/compact/verify.d.ts +25 -0
  5336. package/node_modules/jose/dist/types/jws/flattened/sign.d.ts +32 -0
  5337. package/node_modules/jose/dist/types/jws/flattened/verify.d.ts +25 -0
  5338. package/node_modules/jose/dist/types/jws/general/sign.d.ts +41 -0
  5339. package/node_modules/jose/dist/types/jws/general/verify.d.ts +25 -0
  5340. package/node_modules/jose/dist/types/jwt/decrypt.d.ts +27 -0
  5341. package/node_modules/jose/dist/types/jwt/encrypt.d.ts +77 -0
  5342. package/node_modules/jose/dist/types/jwt/produce.d.ts +54 -0
  5343. package/node_modules/jose/dist/types/jwt/sign.d.ts +23 -0
  5344. package/node_modules/jose/dist/types/jwt/unsecured.d.ts +21 -0
  5345. package/node_modules/jose/dist/types/jwt/verify.d.ts +29 -0
  5346. package/node_modules/jose/dist/types/key/export.d.ts +21 -0
  5347. package/node_modules/jose/dist/types/key/generate_key_pair.d.ts +36 -0
  5348. package/node_modules/jose/dist/types/key/generate_secret.d.ts +19 -0
  5349. package/node_modules/jose/dist/types/key/import.d.ts +54 -0
  5350. package/node_modules/jose/dist/types/types.d.ts +610 -0
  5351. package/node_modules/jose/dist/types/util/base64url.d.ts +19 -0
  5352. package/node_modules/jose/dist/types/util/decode_jwt.d.ts +10 -0
  5353. package/node_modules/jose/dist/types/util/decode_protected_header.d.ts +8 -0
  5354. package/node_modules/jose/dist/types/util/errors.d.ts +142 -0
  5355. package/node_modules/jose/dist/types/util/runtime.d.ts +3 -0
  5356. package/node_modules/jose/package.json +89 -0
  5357. package/node_modules/lodash.merge/LICENSE +47 -0
  5358. package/node_modules/lodash.merge/README.md +18 -0
  5359. package/node_modules/lodash.merge/index.js +1977 -0
  5360. package/node_modules/lodash.merge/package.json +16 -0
  5361. package/node_modules/lru-cache/LICENSE +15 -0
  5362. package/node_modules/lru-cache/README.md +166 -0
  5363. package/node_modules/lru-cache/index.js +334 -0
  5364. package/node_modules/lru-cache/package.json +34 -0
  5365. package/node_modules/mime-db/HISTORY.md +507 -0
  5366. package/node_modules/mime-db/LICENSE +23 -0
  5367. package/node_modules/mime-db/README.md +100 -0
  5368. package/node_modules/mime-db/db.json +8519 -0
  5369. package/node_modules/mime-db/index.js +12 -0
  5370. package/node_modules/mime-db/package.json +60 -0
  5371. package/node_modules/mime-types/HISTORY.md +397 -0
  5372. package/node_modules/mime-types/LICENSE +23 -0
  5373. package/node_modules/mime-types/README.md +113 -0
  5374. package/node_modules/mime-types/index.js +188 -0
  5375. package/node_modules/mime-types/package.json +44 -0
  5376. package/node_modules/mnemonist/LICENSE.txt +21 -0
  5377. package/node_modules/mnemonist/README.md +112 -0
  5378. package/node_modules/mnemonist/bi-map.d.ts +46 -0
  5379. package/node_modules/mnemonist/bi-map.js +195 -0
  5380. package/node_modules/mnemonist/bit-set.d.ts +29 -0
  5381. package/node_modules/mnemonist/bit-set.js +379 -0
  5382. package/node_modules/mnemonist/bit-vector.d.ts +42 -0
  5383. package/node_modules/mnemonist/bit-vector.js +550 -0
  5384. package/node_modules/mnemonist/bk-tree.d.ts +24 -0
  5385. package/node_modules/mnemonist/bk-tree.js +180 -0
  5386. package/node_modules/mnemonist/bloom-filter.d.ts +29 -0
  5387. package/node_modules/mnemonist/bloom-filter.js +186 -0
  5388. package/node_modules/mnemonist/circular-buffer.d.ts +34 -0
  5389. package/node_modules/mnemonist/circular-buffer.js +131 -0
  5390. package/node_modules/mnemonist/critbit-tree-map.js +515 -0
  5391. package/node_modules/mnemonist/default-map.d.ts +29 -0
  5392. package/node_modules/mnemonist/default-map.js +162 -0
  5393. package/node_modules/mnemonist/default-weak-map.d.ts +18 -0
  5394. package/node_modules/mnemonist/default-weak-map.js +108 -0
  5395. package/node_modules/mnemonist/fibonacci-heap.d.ts +65 -0
  5396. package/node_modules/mnemonist/fibonacci-heap.js +320 -0
  5397. package/node_modules/mnemonist/fixed-critbit-tree-map.js +427 -0
  5398. package/node_modules/mnemonist/fixed-deque.d.ts +34 -0
  5399. package/node_modules/mnemonist/fixed-deque.js +351 -0
  5400. package/node_modules/mnemonist/fixed-reverse-heap.d.ts +25 -0
  5401. package/node_modules/mnemonist/fixed-reverse-heap.js +209 -0
  5402. package/node_modules/mnemonist/fixed-stack.d.ts +36 -0
  5403. package/node_modules/mnemonist/fixed-stack.js +242 -0
  5404. package/node_modules/mnemonist/fuzzy-map.d.ts +33 -0
  5405. package/node_modules/mnemonist/fuzzy-map.js +185 -0
  5406. package/node_modules/mnemonist/fuzzy-multi-map.d.ts +36 -0
  5407. package/node_modules/mnemonist/fuzzy-multi-map.js +196 -0
  5408. package/node_modules/mnemonist/hashed-array-tree.d.ts +32 -0
  5409. package/node_modules/mnemonist/hashed-array-tree.js +209 -0
  5410. package/node_modules/mnemonist/heap.d.ts +84 -0
  5411. package/node_modules/mnemonist/heap.js +576 -0
  5412. package/node_modules/mnemonist/index.d.ts +46 -0
  5413. package/node_modules/mnemonist/index.js +56 -0
  5414. package/node_modules/mnemonist/inverted-index.d.ts +33 -0
  5415. package/node_modules/mnemonist/inverted-index.js +249 -0
  5416. package/node_modules/mnemonist/kd-tree.d.ts +25 -0
  5417. package/node_modules/mnemonist/kd-tree.js +447 -0
  5418. package/node_modules/mnemonist/linked-list.d.ts +29 -0
  5419. package/node_modules/mnemonist/linked-list.js +261 -0
  5420. package/node_modules/mnemonist/lru-cache.d.ts +43 -0
  5421. package/node_modules/mnemonist/lru-cache.js +433 -0
  5422. package/node_modules/mnemonist/lru-map.d.ts +43 -0
  5423. package/node_modules/mnemonist/lru-map.js +258 -0
  5424. package/node_modules/mnemonist/multi-array.js +447 -0
  5425. package/node_modules/mnemonist/multi-map.d.ts +47 -0
  5426. package/node_modules/mnemonist/multi-map.js +408 -0
  5427. package/node_modules/mnemonist/multi-set.d.ts +37 -0
  5428. package/node_modules/mnemonist/multi-set.js +440 -0
  5429. package/node_modules/mnemonist/package.json +119 -0
  5430. package/node_modules/mnemonist/passjoin-index.d.ts +54 -0
  5431. package/node_modules/mnemonist/passjoin-index.js +518 -0
  5432. package/node_modules/mnemonist/queue.d.ts +27 -0
  5433. package/node_modules/mnemonist/queue.js +215 -0
  5434. package/node_modules/mnemonist/semi-dynamic-trie.js +251 -0
  5435. package/node_modules/mnemonist/set.d.ts +18 -0
  5436. package/node_modules/mnemonist/set.js +356 -0
  5437. package/node_modules/mnemonist/sort/insertion.d.ts +4 -0
  5438. package/node_modules/mnemonist/sort/insertion.js +50 -0
  5439. package/node_modules/mnemonist/sort/quick.d.ts +4 -0
  5440. package/node_modules/mnemonist/sort/quick.js +116 -0
  5441. package/node_modules/mnemonist/sparse-map.d.ts +26 -0
  5442. package/node_modules/mnemonist/sparse-map.js +243 -0
  5443. package/node_modules/mnemonist/sparse-queue-set.d.ts +24 -0
  5444. package/node_modules/mnemonist/sparse-queue-set.js +218 -0
  5445. package/node_modules/mnemonist/sparse-set.d.ts +23 -0
  5446. package/node_modules/mnemonist/sparse-set.js +168 -0
  5447. package/node_modules/mnemonist/stack.d.ts +27 -0
  5448. package/node_modules/mnemonist/stack.js +210 -0
  5449. package/node_modules/mnemonist/static-disjoint-set.d.ts +23 -0
  5450. package/node_modules/mnemonist/static-disjoint-set.js +195 -0
  5451. package/node_modules/mnemonist/static-interval-tree.d.ts +24 -0
  5452. package/node_modules/mnemonist/static-interval-tree.js +387 -0
  5453. package/node_modules/mnemonist/suffix-array.d.ts +37 -0
  5454. package/node_modules/mnemonist/suffix-array.js +352 -0
  5455. package/node_modules/mnemonist/symspell.d.ts +33 -0
  5456. package/node_modules/mnemonist/symspell.js +547 -0
  5457. package/node_modules/mnemonist/trie-map.d.ts +30 -0
  5458. package/node_modules/mnemonist/trie-map.js +477 -0
  5459. package/node_modules/mnemonist/trie.d.ts +26 -0
  5460. package/node_modules/mnemonist/trie.js +167 -0
  5461. package/node_modules/mnemonist/utils/binary-search.js +216 -0
  5462. package/node_modules/mnemonist/utils/bitwise.js +109 -0
  5463. package/node_modules/mnemonist/utils/comparators.js +79 -0
  5464. package/node_modules/mnemonist/utils/hash-tables.js +107 -0
  5465. package/node_modules/mnemonist/utils/iterables.js +93 -0
  5466. package/node_modules/mnemonist/utils/merge.js +563 -0
  5467. package/node_modules/mnemonist/utils/murmurhash3.js +87 -0
  5468. package/node_modules/mnemonist/utils/typed-arrays.js +187 -0
  5469. package/node_modules/mnemonist/utils/types.d.ts +16 -0
  5470. package/node_modules/mnemonist/vector.d.ts +81 -0
  5471. package/node_modules/mnemonist/vector.js +373 -0
  5472. package/node_modules/mnemonist/vp-tree.d.ts +27 -0
  5473. package/node_modules/mnemonist/vp-tree.js +367 -0
  5474. package/node_modules/mustache/LICENSE +11 -0
  5475. package/node_modules/mustache/README.md +621 -0
  5476. package/node_modules/mustache/bin/mustache +150 -0
  5477. package/node_modules/mustache/mustache.js +772 -0
  5478. package/node_modules/mustache/mustache.min.js +1 -0
  5479. package/node_modules/mustache/mustache.mjs +764 -0
  5480. package/node_modules/mustache/package.json +67 -0
  5481. package/node_modules/mustache/wrappers/dojo/mustache.js.post +4 -0
  5482. package/node_modules/mustache/wrappers/dojo/mustache.js.pre +9 -0
  5483. package/node_modules/mustache/wrappers/jquery/mustache.js.post +13 -0
  5484. package/node_modules/mustache/wrappers/jquery/mustache.js.pre +9 -0
  5485. package/node_modules/mustache/wrappers/mootools/mustache.js.post +5 -0
  5486. package/node_modules/mustache/wrappers/mootools/mustache.js.pre +2 -0
  5487. package/node_modules/mustache/wrappers/qooxdoo/mustache.js.post +9 -0
  5488. package/node_modules/mustache/wrappers/qooxdoo/mustache.js.pre +172 -0
  5489. package/node_modules/mustache/wrappers/yui3/mustache.js.post +4 -0
  5490. package/node_modules/mustache/wrappers/yui3/mustache.js.pre +1 -0
  5491. package/node_modules/object-hash/LICENSE +22 -0
  5492. package/node_modules/object-hash/dist/object_hash.js +1 -0
  5493. package/node_modules/object-hash/index.js +453 -0
  5494. package/node_modules/object-hash/package.json +53 -0
  5495. package/node_modules/object-hash/readme.markdown +184 -0
  5496. package/node_modules/obliterator/LICENSE.txt +21 -0
  5497. package/node_modules/obliterator/README.md +321 -0
  5498. package/node_modules/obliterator/chain.d.ts +3 -0
  5499. package/node_modules/obliterator/chain.js +39 -0
  5500. package/node_modules/obliterator/combinations.d.ts +3 -0
  5501. package/node_modules/obliterator/combinations.js +76 -0
  5502. package/node_modules/obliterator/consume.d.ts +1 -0
  5503. package/node_modules/obliterator/consume.js +32 -0
  5504. package/node_modules/obliterator/filter.d.ts +5 -0
  5505. package/node_modules/obliterator/filter.js +28 -0
  5506. package/node_modules/obliterator/foreach.d.ts +1 -0
  5507. package/node_modules/obliterator/foreach.js +156 -0
  5508. package/node_modules/obliterator/index.d.ts +14 -0
  5509. package/node_modules/obliterator/index.js +22 -0
  5510. package/node_modules/obliterator/iterator.d.ts +19 -0
  5511. package/node_modules/obliterator/iterator.js +104 -0
  5512. package/node_modules/obliterator/map.d.ts +5 -0
  5513. package/node_modules/obliterator/map.js +27 -0
  5514. package/node_modules/obliterator/match.d.ts +3 -0
  5515. package/node_modules/obliterator/match.js +42 -0
  5516. package/node_modules/obliterator/package.json +45 -0
  5517. package/node_modules/obliterator/permutations.d.ts +3 -0
  5518. package/node_modules/obliterator/permutations.js +96 -0
  5519. package/node_modules/obliterator/power-set.d.ts +3 -0
  5520. package/node_modules/obliterator/power-set.js +28 -0
  5521. package/node_modules/obliterator/range.d.ts +5 -0
  5522. package/node_modules/obliterator/range.js +45 -0
  5523. package/node_modules/obliterator/split.d.ts +3 -0
  5524. package/node_modules/obliterator/split.js +68 -0
  5525. package/node_modules/obliterator/take-into.d.ts +5 -0
  5526. package/node_modules/obliterator/take-into.js +40 -0
  5527. package/node_modules/obliterator/take.d.ts +3 -0
  5528. package/node_modules/obliterator/take.js +40 -0
  5529. package/node_modules/oidc-token-hash/LICENSE.md +21 -0
  5530. package/node_modules/oidc-token-hash/README.md +54 -0
  5531. package/node_modules/oidc-token-hash/lib/index.js +106 -0
  5532. package/node_modules/oidc-token-hash/lib/shake256.js +7 -0
  5533. package/node_modules/oidc-token-hash/package.json +36 -0
  5534. package/node_modules/openid-client/LICENSE.md +21 -0
  5535. package/node_modules/openid-client/README.md +323 -0
  5536. package/node_modules/openid-client/lib/client.js +1849 -0
  5537. package/node_modules/openid-client/lib/device_flow_handle.js +125 -0
  5538. package/node_modules/openid-client/lib/errors.js +55 -0
  5539. package/node_modules/openid-client/lib/helpers/assert.js +24 -0
  5540. package/node_modules/openid-client/lib/helpers/base64url.js +13 -0
  5541. package/node_modules/openid-client/lib/helpers/client.js +209 -0
  5542. package/node_modules/openid-client/lib/helpers/consts.js +7 -0
  5543. package/node_modules/openid-client/lib/helpers/decode_jwt.js +27 -0
  5544. package/node_modules/openid-client/lib/helpers/deep_clone.js +1 -0
  5545. package/node_modules/openid-client/lib/helpers/defaults.js +27 -0
  5546. package/node_modules/openid-client/lib/helpers/generators.js +14 -0
  5547. package/node_modules/openid-client/lib/helpers/is_key_object.js +4 -0
  5548. package/node_modules/openid-client/lib/helpers/is_plain_object.js +1 -0
  5549. package/node_modules/openid-client/lib/helpers/issuer.js +110 -0
  5550. package/node_modules/openid-client/lib/helpers/keystore.js +313 -0
  5551. package/node_modules/openid-client/lib/helpers/merge.js +24 -0
  5552. package/node_modules/openid-client/lib/helpers/pick.js +9 -0
  5553. package/node_modules/openid-client/lib/helpers/process_response.js +71 -0
  5554. package/node_modules/openid-client/lib/helpers/request.js +200 -0
  5555. package/node_modules/openid-client/lib/helpers/unix_timestamp.js +1 -0
  5556. package/node_modules/openid-client/lib/helpers/weak_cache.js +1 -0
  5557. package/node_modules/openid-client/lib/helpers/webfinger_normalize.js +71 -0
  5558. package/node_modules/openid-client/lib/helpers/www_authenticate_parser.js +14 -0
  5559. package/node_modules/openid-client/lib/index.js +23 -0
  5560. package/node_modules/openid-client/lib/index.mjs +9 -0
  5561. package/node_modules/openid-client/lib/issuer.js +191 -0
  5562. package/node_modules/openid-client/lib/issuer_registry.js +3 -0
  5563. package/node_modules/openid-client/lib/passport_strategy.js +205 -0
  5564. package/node_modules/openid-client/lib/token_set.js +35 -0
  5565. package/node_modules/openid-client/package.json +106 -0
  5566. package/node_modules/openid-client/types/index.d.ts +622 -0
  5567. package/node_modules/proxy-from-env/.eslintrc +29 -0
  5568. package/node_modules/proxy-from-env/.travis.yml +10 -0
  5569. package/node_modules/proxy-from-env/LICENSE +20 -0
  5570. package/node_modules/proxy-from-env/README.md +131 -0
  5571. package/node_modules/proxy-from-env/index.js +108 -0
  5572. package/node_modules/proxy-from-env/package.json +34 -0
  5573. package/node_modules/proxy-from-env/test.js +483 -0
  5574. package/node_modules/strnum/.vscode/launch.json +25 -0
  5575. package/node_modules/strnum/LICENSE +21 -0
  5576. package/node_modules/strnum/README.md +86 -0
  5577. package/node_modules/strnum/package.json +24 -0
  5578. package/node_modules/strnum/strnum.js +124 -0
  5579. package/node_modules/strnum/strnum.test.js +150 -0
  5580. package/node_modules/tslib/CopyrightNotice.txt +15 -0
  5581. package/node_modules/tslib/LICENSE.txt +12 -0
  5582. package/node_modules/tslib/README.md +164 -0
  5583. package/node_modules/tslib/SECURITY.md +41 -0
  5584. package/node_modules/tslib/modules/index.d.ts +37 -0
  5585. package/node_modules/tslib/modules/index.js +68 -0
  5586. package/node_modules/tslib/modules/package.json +3 -0
  5587. package/node_modules/tslib/package.json +47 -0
  5588. package/node_modules/tslib/tslib.d.ts +453 -0
  5589. package/node_modules/tslib/tslib.es6.html +1 -0
  5590. package/node_modules/tslib/tslib.es6.js +370 -0
  5591. package/node_modules/tslib/tslib.es6.mjs +370 -0
  5592. package/node_modules/tslib/tslib.html +1 -0
  5593. package/node_modules/tslib/tslib.js +421 -0
  5594. package/node_modules/uuid/CHANGELOG.md +229 -0
  5595. package/node_modules/uuid/CONTRIBUTING.md +18 -0
  5596. package/node_modules/uuid/LICENSE.md +9 -0
  5597. package/node_modules/uuid/README.md +505 -0
  5598. package/node_modules/uuid/dist/bin/uuid +2 -0
  5599. package/node_modules/uuid/dist/esm-browser/index.js +9 -0
  5600. package/node_modules/uuid/dist/esm-browser/md5.js +215 -0
  5601. package/node_modules/uuid/dist/esm-browser/nil.js +1 -0
  5602. package/node_modules/uuid/dist/esm-browser/parse.js +35 -0
  5603. package/node_modules/uuid/dist/esm-browser/regex.js +1 -0
  5604. package/node_modules/uuid/dist/esm-browser/rng.js +19 -0
  5605. package/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
  5606. package/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
  5607. package/node_modules/uuid/dist/esm-browser/v1.js +95 -0
  5608. package/node_modules/uuid/dist/esm-browser/v3.js +4 -0
  5609. package/node_modules/uuid/dist/esm-browser/v35.js +64 -0
  5610. package/node_modules/uuid/dist/esm-browser/v4.js +24 -0
  5611. package/node_modules/uuid/dist/esm-browser/v5.js +4 -0
  5612. package/node_modules/uuid/dist/esm-browser/validate.js +7 -0
  5613. package/node_modules/uuid/dist/esm-browser/version.js +11 -0
  5614. package/node_modules/uuid/dist/esm-node/index.js +9 -0
  5615. package/node_modules/uuid/dist/esm-node/md5.js +13 -0
  5616. package/node_modules/uuid/dist/esm-node/nil.js +1 -0
  5617. package/node_modules/uuid/dist/esm-node/parse.js +35 -0
  5618. package/node_modules/uuid/dist/esm-node/regex.js +1 -0
  5619. package/node_modules/uuid/dist/esm-node/rng.js +12 -0
  5620. package/node_modules/uuid/dist/esm-node/sha1.js +13 -0
  5621. package/node_modules/uuid/dist/esm-node/stringify.js +29 -0
  5622. package/node_modules/uuid/dist/esm-node/v1.js +95 -0
  5623. package/node_modules/uuid/dist/esm-node/v3.js +4 -0
  5624. package/node_modules/uuid/dist/esm-node/v35.js +64 -0
  5625. package/node_modules/uuid/dist/esm-node/v4.js +24 -0
  5626. package/node_modules/uuid/dist/esm-node/v5.js +4 -0
  5627. package/node_modules/uuid/dist/esm-node/validate.js +7 -0
  5628. package/node_modules/uuid/dist/esm-node/version.js +11 -0
  5629. package/node_modules/uuid/dist/index.js +79 -0
  5630. package/node_modules/uuid/dist/md5-browser.js +223 -0
  5631. package/node_modules/uuid/dist/md5.js +23 -0
  5632. package/node_modules/uuid/dist/nil.js +8 -0
  5633. package/node_modules/uuid/dist/parse.js +45 -0
  5634. package/node_modules/uuid/dist/regex.js +8 -0
  5635. package/node_modules/uuid/dist/rng-browser.js +26 -0
  5636. package/node_modules/uuid/dist/rng.js +24 -0
  5637. package/node_modules/uuid/dist/sha1-browser.js +104 -0
  5638. package/node_modules/uuid/dist/sha1.js +23 -0
  5639. package/node_modules/uuid/dist/stringify.js +39 -0
  5640. package/node_modules/uuid/dist/umd/uuid.min.js +1 -0
  5641. package/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
  5642. package/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
  5643. package/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
  5644. package/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
  5645. package/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
  5646. package/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
  5647. package/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
  5648. package/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
  5649. package/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
  5650. package/node_modules/uuid/dist/uuid-bin.js +85 -0
  5651. package/node_modules/uuid/dist/v1.js +107 -0
  5652. package/node_modules/uuid/dist/v3.js +16 -0
  5653. package/node_modules/uuid/dist/v35.js +78 -0
  5654. package/node_modules/uuid/dist/v4.js +37 -0
  5655. package/node_modules/uuid/dist/v5.js +16 -0
  5656. package/node_modules/uuid/dist/validate.js +17 -0
  5657. package/node_modules/uuid/dist/version.js +21 -0
  5658. package/node_modules/uuid/package.json +135 -0
  5659. package/node_modules/uuid/wrapper.mjs +10 -0
  5660. package/node_modules/yallist/LICENSE +15 -0
  5661. package/node_modules/yallist/README.md +204 -0
  5662. package/node_modules/yallist/iterator.js +8 -0
  5663. package/node_modules/yallist/package.json +29 -0
  5664. package/node_modules/yallist/yallist.js +426 -0
  5665. package/package.json +200 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"axios.js","sources":["../lib/helpers/bind.js","../lib/utils.js","../lib/core/AxiosError.js","../lib/helpers/null.js","../lib/helpers/toFormData.js","../lib/helpers/AxiosURLSearchParams.js","../lib/helpers/buildURL.js","../lib/core/InterceptorManager.js","../lib/defaults/transitional.js","../lib/platform/browser/classes/URLSearchParams.js","../lib/platform/browser/classes/FormData.js","../lib/platform/browser/classes/Blob.js","../lib/platform/browser/index.js","../lib/platform/common/utils.js","../lib/platform/index.js","../lib/helpers/toURLEncodedForm.js","../lib/helpers/formDataToJSON.js","../lib/defaults/index.js","../lib/helpers/parseHeaders.js","../lib/core/AxiosHeaders.js","../lib/core/transformData.js","../lib/cancel/isCancel.js","../lib/cancel/CanceledError.js","../lib/core/settle.js","../lib/helpers/cookies.js","../lib/helpers/isAbsoluteURL.js","../lib/helpers/combineURLs.js","../lib/core/buildFullPath.js","../lib/helpers/isURLSameOrigin.js","../lib/helpers/parseProtocol.js","../lib/helpers/speedometer.js","../lib/adapters/xhr.js","../lib/adapters/adapters.js","../lib/core/dispatchRequest.js","../lib/core/mergeConfig.js","../lib/env/data.js","../lib/helpers/validator.js","../lib/core/Axios.js","../lib/cancel/CancelToken.js","../lib/helpers/spread.js","../lib/helpers/isAxiosError.js","../lib/helpers/HttpStatusCode.js","../lib/axios.js"],"sourcesContent":["'use strict';\n\nexport default function bind(fn, thisArg) {\n return function wrap() {\n return fn.apply(thisArg, arguments);\n };\n}\n","'use strict';\n\nimport bind from './helpers/bind.js';\n\n// utils is a library of generic helper functions non-specific to axios\n\nconst {toString} = Object.prototype;\nconst {getPrototypeOf} = Object;\n\nconst kindOf = (cache => thing => {\n const str = toString.call(thing);\n return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());\n})(Object.create(null));\n\nconst kindOfTest = (type) => {\n type = type.toLowerCase();\n return (thing) => kindOf(thing) === type\n}\n\nconst typeOfTest = type => thing => typeof thing === type;\n\n/**\n * Determine if a value is an Array\n *\n * @param {Object} val The value to test\n *\n * @returns {boolean} True if value is an Array, otherwise false\n */\nconst {isArray} = Array;\n\n/**\n * Determine if a value is undefined\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if the value is undefined, otherwise false\n */\nconst isUndefined = typeOfTest('undefined');\n\n/**\n * Determine if a value is a Buffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Buffer, otherwise false\n */\nfunction isBuffer(val) {\n return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)\n && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val);\n}\n\n/**\n * Determine if a value is an ArrayBuffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is an ArrayBuffer, otherwise false\n */\nconst isArrayBuffer = kindOfTest('ArrayBuffer');\n\n\n/**\n * Determine if a value is a view on an ArrayBuffer\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false\n */\nfunction isArrayBufferView(val) {\n let result;\n if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {\n result = ArrayBuffer.isView(val);\n } else {\n result = (val) && (val.buffer) && (isArrayBuffer(val.buffer));\n }\n return result;\n}\n\n/**\n * Determine if a value is a String\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a String, otherwise false\n */\nconst isString = typeOfTest('string');\n\n/**\n * Determine if a value is a Function\n *\n * @param {*} val The value to test\n * @returns {boolean} True if value is a Function, otherwise false\n */\nconst isFunction = typeOfTest('function');\n\n/**\n * Determine if a value is a Number\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Number, otherwise false\n */\nconst isNumber = typeOfTest('number');\n\n/**\n * Determine if a value is an Object\n *\n * @param {*} thing The value to test\n *\n * @returns {boolean} True if value is an Object, otherwise false\n */\nconst isObject = (thing) => thing !== null && typeof thing === 'object';\n\n/**\n * Determine if a value is a Boolean\n *\n * @param {*} thing The value to test\n * @returns {boolean} True if value is a Boolean, otherwise false\n */\nconst isBoolean = thing => thing === true || thing === false;\n\n/**\n * Determine if a value is a plain Object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a plain Object, otherwise false\n */\nconst isPlainObject = (val) => {\n if (kindOf(val) !== 'object') {\n return false;\n }\n\n const prototype = getPrototypeOf(val);\n return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in val) && !(Symbol.iterator in val);\n}\n\n/**\n * Determine if a value is a Date\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Date, otherwise false\n */\nconst isDate = kindOfTest('Date');\n\n/**\n * Determine if a value is a File\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a File, otherwise false\n */\nconst isFile = kindOfTest('File');\n\n/**\n * Determine if a value is a Blob\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Blob, otherwise false\n */\nconst isBlob = kindOfTest('Blob');\n\n/**\n * Determine if a value is a FileList\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a File, otherwise false\n */\nconst isFileList = kindOfTest('FileList');\n\n/**\n * Determine if a value is a Stream\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a Stream, otherwise false\n */\nconst isStream = (val) => isObject(val) && isFunction(val.pipe);\n\n/**\n * Determine if a value is a FormData\n *\n * @param {*} thing The value to test\n *\n * @returns {boolean} True if value is an FormData, otherwise false\n */\nconst isFormData = (thing) => {\n let kind;\n return thing && (\n (typeof FormData === 'function' && thing instanceof FormData) || (\n isFunction(thing.append) && (\n (kind = kindOf(thing)) === 'formdata' ||\n // detect form-data instance\n (kind === 'object' && isFunction(thing.toString) && thing.toString() === '[object FormData]')\n )\n )\n )\n}\n\n/**\n * Determine if a value is a URLSearchParams object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a URLSearchParams object, otherwise false\n */\nconst isURLSearchParams = kindOfTest('URLSearchParams');\n\n/**\n * Trim excess whitespace off the beginning and end of a string\n *\n * @param {String} str The String to trim\n *\n * @returns {String} The String freed of excess whitespace\n */\nconst trim = (str) => str.trim ?\n str.trim() : str.replace(/^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g, '');\n\n/**\n * Iterate over an Array or an Object invoking a function for each item.\n *\n * If `obj` is an Array callback will be called passing\n * the value, index, and complete array for each item.\n *\n * If 'obj' is an Object callback will be called passing\n * the value, key, and complete object for each property.\n *\n * @param {Object|Array} obj The object to iterate\n * @param {Function} fn The callback to invoke for each item\n *\n * @param {Boolean} [allOwnKeys = false]\n * @returns {any}\n */\nfunction forEach(obj, fn, {allOwnKeys = false} = {}) {\n // Don't bother if no value provided\n if (obj === null || typeof obj === 'undefined') {\n return;\n }\n\n let i;\n let l;\n\n // Force an array if not already something iterable\n if (typeof obj !== 'object') {\n /*eslint no-param-reassign:0*/\n obj = [obj];\n }\n\n if (isArray(obj)) {\n // Iterate over array values\n for (i = 0, l = obj.length; i < l; i++) {\n fn.call(null, obj[i], i, obj);\n }\n } else {\n // Iterate over object keys\n const keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj);\n const len = keys.length;\n let key;\n\n for (i = 0; i < len; i++) {\n key = keys[i];\n fn.call(null, obj[key], key, obj);\n }\n }\n}\n\nfunction findKey(obj, key) {\n key = key.toLowerCase();\n const keys = Object.keys(obj);\n let i = keys.length;\n let _key;\n while (i-- > 0) {\n _key = keys[i];\n if (key === _key.toLowerCase()) {\n return _key;\n }\n }\n return null;\n}\n\nconst _global = (() => {\n /*eslint no-undef:0*/\n if (typeof globalThis !== \"undefined\") return globalThis;\n return typeof self !== \"undefined\" ? self : (typeof window !== 'undefined' ? window : global)\n})();\n\nconst isContextDefined = (context) => !isUndefined(context) && context !== _global;\n\n/**\n * Accepts varargs expecting each argument to be an object, then\n * immutably merges the properties of each object and returns result.\n *\n * When multiple objects contain the same key the later object in\n * the arguments list will take precedence.\n *\n * Example:\n *\n * ```js\n * var result = merge({foo: 123}, {foo: 456});\n * console.log(result.foo); // outputs 456\n * ```\n *\n * @param {Object} obj1 Object to merge\n *\n * @returns {Object} Result of all merge properties\n */\nfunction merge(/* obj1, obj2, obj3, ... */) {\n const {caseless} = isContextDefined(this) && this || {};\n const result = {};\n const assignValue = (val, key) => {\n const targetKey = caseless && findKey(result, key) || key;\n if (isPlainObject(result[targetKey]) && isPlainObject(val)) {\n result[targetKey] = merge(result[targetKey], val);\n } else if (isPlainObject(val)) {\n result[targetKey] = merge({}, val);\n } else if (isArray(val)) {\n result[targetKey] = val.slice();\n } else {\n result[targetKey] = val;\n }\n }\n\n for (let i = 0, l = arguments.length; i < l; i++) {\n arguments[i] && forEach(arguments[i], assignValue);\n }\n return result;\n}\n\n/**\n * Extends object a by mutably adding to it the properties of object b.\n *\n * @param {Object} a The object to be extended\n * @param {Object} b The object to copy properties from\n * @param {Object} thisArg The object to bind function to\n *\n * @param {Boolean} [allOwnKeys]\n * @returns {Object} The resulting value of object a\n */\nconst extend = (a, b, thisArg, {allOwnKeys}= {}) => {\n forEach(b, (val, key) => {\n if (thisArg && isFunction(val)) {\n a[key] = bind(val, thisArg);\n } else {\n a[key] = val;\n }\n }, {allOwnKeys});\n return a;\n}\n\n/**\n * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)\n *\n * @param {string} content with BOM\n *\n * @returns {string} content value without BOM\n */\nconst stripBOM = (content) => {\n if (content.charCodeAt(0) === 0xFEFF) {\n content = content.slice(1);\n }\n return content;\n}\n\n/**\n * Inherit the prototype methods from one constructor into another\n * @param {function} constructor\n * @param {function} superConstructor\n * @param {object} [props]\n * @param {object} [descriptors]\n *\n * @returns {void}\n */\nconst inherits = (constructor, superConstructor, props, descriptors) => {\n constructor.prototype = Object.create(superConstructor.prototype, descriptors);\n constructor.prototype.constructor = constructor;\n Object.defineProperty(constructor, 'super', {\n value: superConstructor.prototype\n });\n props && Object.assign(constructor.prototype, props);\n}\n\n/**\n * Resolve object with deep prototype chain to a flat object\n * @param {Object} sourceObj source object\n * @param {Object} [destObj]\n * @param {Function|Boolean} [filter]\n * @param {Function} [propFilter]\n *\n * @returns {Object}\n */\nconst toFlatObject = (sourceObj, destObj, filter, propFilter) => {\n let props;\n let i;\n let prop;\n const merged = {};\n\n destObj = destObj || {};\n // eslint-disable-next-line no-eq-null,eqeqeq\n if (sourceObj == null) return destObj;\n\n do {\n props = Object.getOwnPropertyNames(sourceObj);\n i = props.length;\n while (i-- > 0) {\n prop = props[i];\n if ((!propFilter || propFilter(prop, sourceObj, destObj)) && !merged[prop]) {\n destObj[prop] = sourceObj[prop];\n merged[prop] = true;\n }\n }\n sourceObj = filter !== false && getPrototypeOf(sourceObj);\n } while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype);\n\n return destObj;\n}\n\n/**\n * Determines whether a string ends with the characters of a specified string\n *\n * @param {String} str\n * @param {String} searchString\n * @param {Number} [position= 0]\n *\n * @returns {boolean}\n */\nconst endsWith = (str, searchString, position) => {\n str = String(str);\n if (position === undefined || position > str.length) {\n position = str.length;\n }\n position -= searchString.length;\n const lastIndex = str.indexOf(searchString, position);\n return lastIndex !== -1 && lastIndex === position;\n}\n\n\n/**\n * Returns new array from array like object or null if failed\n *\n * @param {*} [thing]\n *\n * @returns {?Array}\n */\nconst toArray = (thing) => {\n if (!thing) return null;\n if (isArray(thing)) return thing;\n let i = thing.length;\n if (!isNumber(i)) return null;\n const arr = new Array(i);\n while (i-- > 0) {\n arr[i] = thing[i];\n }\n return arr;\n}\n\n/**\n * Checking if the Uint8Array exists and if it does, it returns a function that checks if the\n * thing passed in is an instance of Uint8Array\n *\n * @param {TypedArray}\n *\n * @returns {Array}\n */\n// eslint-disable-next-line func-names\nconst isTypedArray = (TypedArray => {\n // eslint-disable-next-line func-names\n return thing => {\n return TypedArray && thing instanceof TypedArray;\n };\n})(typeof Uint8Array !== 'undefined' && getPrototypeOf(Uint8Array));\n\n/**\n * For each entry in the object, call the function with the key and value.\n *\n * @param {Object<any, any>} obj - The object to iterate over.\n * @param {Function} fn - The function to call for each entry.\n *\n * @returns {void}\n */\nconst forEachEntry = (obj, fn) => {\n const generator = obj && obj[Symbol.iterator];\n\n const iterator = generator.call(obj);\n\n let result;\n\n while ((result = iterator.next()) && !result.done) {\n const pair = result.value;\n fn.call(obj, pair[0], pair[1]);\n }\n}\n\n/**\n * It takes a regular expression and a string, and returns an array of all the matches\n *\n * @param {string} regExp - The regular expression to match against.\n * @param {string} str - The string to search.\n *\n * @returns {Array<boolean>}\n */\nconst matchAll = (regExp, str) => {\n let matches;\n const arr = [];\n\n while ((matches = regExp.exec(str)) !== null) {\n arr.push(matches);\n }\n\n return arr;\n}\n\n/* Checking if the kindOfTest function returns true when passed an HTMLFormElement. */\nconst isHTMLForm = kindOfTest('HTMLFormElement');\n\nconst toCamelCase = str => {\n return str.toLowerCase().replace(/[-_\\s]([a-z\\d])(\\w*)/g,\n function replacer(m, p1, p2) {\n return p1.toUpperCase() + p2;\n }\n );\n};\n\n/* Creating a function that will check if an object has a property. */\nconst hasOwnProperty = (({hasOwnProperty}) => (obj, prop) => hasOwnProperty.call(obj, prop))(Object.prototype);\n\n/**\n * Determine if a value is a RegExp object\n *\n * @param {*} val The value to test\n *\n * @returns {boolean} True if value is a RegExp object, otherwise false\n */\nconst isRegExp = kindOfTest('RegExp');\n\nconst reduceDescriptors = (obj, reducer) => {\n const descriptors = Object.getOwnPropertyDescriptors(obj);\n const reducedDescriptors = {};\n\n forEach(descriptors, (descriptor, name) => {\n let ret;\n if ((ret = reducer(descriptor, name, obj)) !== false) {\n reducedDescriptors[name] = ret || descriptor;\n }\n });\n\n Object.defineProperties(obj, reducedDescriptors);\n}\n\n/**\n * Makes all methods read-only\n * @param {Object} obj\n */\n\nconst freezeMethods = (obj) => {\n reduceDescriptors(obj, (descriptor, name) => {\n // skip restricted props in strict mode\n if (isFunction(obj) && ['arguments', 'caller', 'callee'].indexOf(name) !== -1) {\n return false;\n }\n\n const value = obj[name];\n\n if (!isFunction(value)) return;\n\n descriptor.enumerable = false;\n\n if ('writable' in descriptor) {\n descriptor.writable = false;\n return;\n }\n\n if (!descriptor.set) {\n descriptor.set = () => {\n throw Error('Can not rewrite read-only method \\'' + name + '\\'');\n };\n }\n });\n}\n\nconst toObjectSet = (arrayOrString, delimiter) => {\n const obj = {};\n\n const define = (arr) => {\n arr.forEach(value => {\n obj[value] = true;\n });\n }\n\n isArray(arrayOrString) ? define(arrayOrString) : define(String(arrayOrString).split(delimiter));\n\n return obj;\n}\n\nconst noop = () => {}\n\nconst toFiniteNumber = (value, defaultValue) => {\n value = +value;\n return Number.isFinite(value) ? value : defaultValue;\n}\n\nconst ALPHA = 'abcdefghijklmnopqrstuvwxyz'\n\nconst DIGIT = '0123456789';\n\nconst ALPHABET = {\n DIGIT,\n ALPHA,\n ALPHA_DIGIT: ALPHA + ALPHA.toUpperCase() + DIGIT\n}\n\nconst generateString = (size = 16, alphabet = ALPHABET.ALPHA_DIGIT) => {\n let str = '';\n const {length} = alphabet;\n while (size--) {\n str += alphabet[Math.random() * length|0]\n }\n\n return str;\n}\n\n/**\n * If the thing is a FormData object, return true, otherwise return false.\n *\n * @param {unknown} thing - The thing to check.\n *\n * @returns {boolean}\n */\nfunction isSpecCompliantForm(thing) {\n return !!(thing && isFunction(thing.append) && thing[Symbol.toStringTag] === 'FormData' && thing[Symbol.iterator]);\n}\n\nconst toJSONObject = (obj) => {\n const stack = new Array(10);\n\n const visit = (source, i) => {\n\n if (isObject(source)) {\n if (stack.indexOf(source) >= 0) {\n return;\n }\n\n if(!('toJSON' in source)) {\n stack[i] = source;\n const target = isArray(source) ? [] : {};\n\n forEach(source, (value, key) => {\n const reducedValue = visit(value, i + 1);\n !isUndefined(reducedValue) && (target[key] = reducedValue);\n });\n\n stack[i] = undefined;\n\n return target;\n }\n }\n\n return source;\n }\n\n return visit(obj, 0);\n}\n\nconst isAsyncFn = kindOfTest('AsyncFunction');\n\nconst isThenable = (thing) =>\n thing && (isObject(thing) || isFunction(thing)) && isFunction(thing.then) && isFunction(thing.catch);\n\nexport default {\n isArray,\n isArrayBuffer,\n isBuffer,\n isFormData,\n isArrayBufferView,\n isString,\n isNumber,\n isBoolean,\n isObject,\n isPlainObject,\n isUndefined,\n isDate,\n isFile,\n isBlob,\n isRegExp,\n isFunction,\n isStream,\n isURLSearchParams,\n isTypedArray,\n isFileList,\n forEach,\n merge,\n extend,\n trim,\n stripBOM,\n inherits,\n toFlatObject,\n kindOf,\n kindOfTest,\n endsWith,\n toArray,\n forEachEntry,\n matchAll,\n isHTMLForm,\n hasOwnProperty,\n hasOwnProp: hasOwnProperty, // an alias to avoid ESLint no-prototype-builtins detection\n reduceDescriptors,\n freezeMethods,\n toObjectSet,\n toCamelCase,\n noop,\n toFiniteNumber,\n findKey,\n global: _global,\n isContextDefined,\n ALPHABET,\n generateString,\n isSpecCompliantForm,\n toJSONObject,\n isAsyncFn,\n isThenable\n};\n","'use strict';\n\nimport utils from '../utils.js';\n\n/**\n * Create an Error with the specified message, config, error code, request and response.\n *\n * @param {string} message The error message.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [config] The config.\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n *\n * @returns {Error} The created error.\n */\nfunction AxiosError(message, code, config, request, response) {\n Error.call(this);\n\n if (Error.captureStackTrace) {\n Error.captureStackTrace(this, this.constructor);\n } else {\n this.stack = (new Error()).stack;\n }\n\n this.message = message;\n this.name = 'AxiosError';\n code && (this.code = code);\n config && (this.config = config);\n request && (this.request = request);\n response && (this.response = response);\n}\n\nutils.inherits(AxiosError, Error, {\n toJSON: function toJSON() {\n return {\n // Standard\n message: this.message,\n name: this.name,\n // Microsoft\n description: this.description,\n number: this.number,\n // Mozilla\n fileName: this.fileName,\n lineNumber: this.lineNumber,\n columnNumber: this.columnNumber,\n stack: this.stack,\n // Axios\n config: utils.toJSONObject(this.config),\n code: this.code,\n status: this.response && this.response.status ? this.response.status : null\n };\n }\n});\n\nconst prototype = AxiosError.prototype;\nconst descriptors = {};\n\n[\n 'ERR_BAD_OPTION_VALUE',\n 'ERR_BAD_OPTION',\n 'ECONNABORTED',\n 'ETIMEDOUT',\n 'ERR_NETWORK',\n 'ERR_FR_TOO_MANY_REDIRECTS',\n 'ERR_DEPRECATED',\n 'ERR_BAD_RESPONSE',\n 'ERR_BAD_REQUEST',\n 'ERR_CANCELED',\n 'ERR_NOT_SUPPORT',\n 'ERR_INVALID_URL'\n// eslint-disable-next-line func-names\n].forEach(code => {\n descriptors[code] = {value: code};\n});\n\nObject.defineProperties(AxiosError, descriptors);\nObject.defineProperty(prototype, 'isAxiosError', {value: true});\n\n// eslint-disable-next-line func-names\nAxiosError.from = (error, code, config, request, response, customProps) => {\n const axiosError = Object.create(prototype);\n\n utils.toFlatObject(error, axiosError, function filter(obj) {\n return obj !== Error.prototype;\n }, prop => {\n return prop !== 'isAxiosError';\n });\n\n AxiosError.call(axiosError, error.message, code, config, request, response);\n\n axiosError.cause = error;\n\n axiosError.name = error.name;\n\n customProps && Object.assign(axiosError, customProps);\n\n return axiosError;\n};\n\nexport default AxiosError;\n","// eslint-disable-next-line strict\nexport default null;\n","'use strict';\n\nimport utils from '../utils.js';\nimport AxiosError from '../core/AxiosError.js';\n// temporary hotfix to avoid circular references until AxiosURLSearchParams is refactored\nimport PlatformFormData from '../platform/node/classes/FormData.js';\n\n/**\n * Determines if the given thing is a array or js object.\n *\n * @param {string} thing - The object or array to be visited.\n *\n * @returns {boolean}\n */\nfunction isVisitable(thing) {\n return utils.isPlainObject(thing) || utils.isArray(thing);\n}\n\n/**\n * It removes the brackets from the end of a string\n *\n * @param {string} key - The key of the parameter.\n *\n * @returns {string} the key without the brackets.\n */\nfunction removeBrackets(key) {\n return utils.endsWith(key, '[]') ? key.slice(0, -2) : key;\n}\n\n/**\n * It takes a path, a key, and a boolean, and returns a string\n *\n * @param {string} path - The path to the current key.\n * @param {string} key - The key of the current object being iterated over.\n * @param {string} dots - If true, the key will be rendered with dots instead of brackets.\n *\n * @returns {string} The path to the current key.\n */\nfunction renderKey(path, key, dots) {\n if (!path) return key;\n return path.concat(key).map(function each(token, i) {\n // eslint-disable-next-line no-param-reassign\n token = removeBrackets(token);\n return !dots && i ? '[' + token + ']' : token;\n }).join(dots ? '.' : '');\n}\n\n/**\n * If the array is an array and none of its elements are visitable, then it's a flat array.\n *\n * @param {Array<any>} arr - The array to check\n *\n * @returns {boolean}\n */\nfunction isFlatArray(arr) {\n return utils.isArray(arr) && !arr.some(isVisitable);\n}\n\nconst predicates = utils.toFlatObject(utils, {}, null, function filter(prop) {\n return /^is[A-Z]/.test(prop);\n});\n\n/**\n * Convert a data object to FormData\n *\n * @param {Object} obj\n * @param {?Object} [formData]\n * @param {?Object} [options]\n * @param {Function} [options.visitor]\n * @param {Boolean} [options.metaTokens = true]\n * @param {Boolean} [options.dots = false]\n * @param {?Boolean} [options.indexes = false]\n *\n * @returns {Object}\n **/\n\n/**\n * It converts an object into a FormData object\n *\n * @param {Object<any, any>} obj - The object to convert to form data.\n * @param {string} formData - The FormData object to append to.\n * @param {Object<string, any>} options\n *\n * @returns\n */\nfunction toFormData(obj, formData, options) {\n if (!utils.isObject(obj)) {\n throw new TypeError('target must be an object');\n }\n\n // eslint-disable-next-line no-param-reassign\n formData = formData || new (PlatformFormData || FormData)();\n\n // eslint-disable-next-line no-param-reassign\n options = utils.toFlatObject(options, {\n metaTokens: true,\n dots: false,\n indexes: false\n }, false, function defined(option, source) {\n // eslint-disable-next-line no-eq-null,eqeqeq\n return !utils.isUndefined(source[option]);\n });\n\n const metaTokens = options.metaTokens;\n // eslint-disable-next-line no-use-before-define\n const visitor = options.visitor || defaultVisitor;\n const dots = options.dots;\n const indexes = options.indexes;\n const _Blob = options.Blob || typeof Blob !== 'undefined' && Blob;\n const useBlob = _Blob && utils.isSpecCompliantForm(formData);\n\n if (!utils.isFunction(visitor)) {\n throw new TypeError('visitor must be a function');\n }\n\n function convertValue(value) {\n if (value === null) return '';\n\n if (utils.isDate(value)) {\n return value.toISOString();\n }\n\n if (!useBlob && utils.isBlob(value)) {\n throw new AxiosError('Blob is not supported. Use a Buffer instead.');\n }\n\n if (utils.isArrayBuffer(value) || utils.isTypedArray(value)) {\n return useBlob && typeof Blob === 'function' ? new Blob([value]) : Buffer.from(value);\n }\n\n return value;\n }\n\n /**\n * Default visitor.\n *\n * @param {*} value\n * @param {String|Number} key\n * @param {Array<String|Number>} path\n * @this {FormData}\n *\n * @returns {boolean} return true to visit the each prop of the value recursively\n */\n function defaultVisitor(value, key, path) {\n let arr = value;\n\n if (value && !path && typeof value === 'object') {\n if (utils.endsWith(key, '{}')) {\n // eslint-disable-next-line no-param-reassign\n key = metaTokens ? key : key.slice(0, -2);\n // eslint-disable-next-line no-param-reassign\n value = JSON.stringify(value);\n } else if (\n (utils.isArray(value) && isFlatArray(value)) ||\n ((utils.isFileList(value) || utils.endsWith(key, '[]')) && (arr = utils.toArray(value))\n )) {\n // eslint-disable-next-line no-param-reassign\n key = removeBrackets(key);\n\n arr.forEach(function each(el, index) {\n !(utils.isUndefined(el) || el === null) && formData.append(\n // eslint-disable-next-line no-nested-ternary\n indexes === true ? renderKey([key], index, dots) : (indexes === null ? key : key + '[]'),\n convertValue(el)\n );\n });\n return false;\n }\n }\n\n if (isVisitable(value)) {\n return true;\n }\n\n formData.append(renderKey(path, key, dots), convertValue(value));\n\n return false;\n }\n\n const stack = [];\n\n const exposedHelpers = Object.assign(predicates, {\n defaultVisitor,\n convertValue,\n isVisitable\n });\n\n function build(value, path) {\n if (utils.isUndefined(value)) return;\n\n if (stack.indexOf(value) !== -1) {\n throw Error('Circular reference detected in ' + path.join('.'));\n }\n\n stack.push(value);\n\n utils.forEach(value, function each(el, key) {\n const result = !(utils.isUndefined(el) || el === null) && visitor.call(\n formData, el, utils.isString(key) ? key.trim() : key, path, exposedHelpers\n );\n\n if (result === true) {\n build(el, path ? path.concat(key) : [key]);\n }\n });\n\n stack.pop();\n }\n\n if (!utils.isObject(obj)) {\n throw new TypeError('data must be an object');\n }\n\n build(obj);\n\n return formData;\n}\n\nexport default toFormData;\n","'use strict';\n\nimport toFormData from './toFormData.js';\n\n/**\n * It encodes a string by replacing all characters that are not in the unreserved set with\n * their percent-encoded equivalents\n *\n * @param {string} str - The string to encode.\n *\n * @returns {string} The encoded string.\n */\nfunction encode(str) {\n const charMap = {\n '!': '%21',\n \"'\": '%27',\n '(': '%28',\n ')': '%29',\n '~': '%7E',\n '%20': '+',\n '%00': '\\x00'\n };\n return encodeURIComponent(str).replace(/[!'()~]|%20|%00/g, function replacer(match) {\n return charMap[match];\n });\n}\n\n/**\n * It takes a params object and converts it to a FormData object\n *\n * @param {Object<string, any>} params - The parameters to be converted to a FormData object.\n * @param {Object<string, any>} options - The options object passed to the Axios constructor.\n *\n * @returns {void}\n */\nfunction AxiosURLSearchParams(params, options) {\n this._pairs = [];\n\n params && toFormData(params, this, options);\n}\n\nconst prototype = AxiosURLSearchParams.prototype;\n\nprototype.append = function append(name, value) {\n this._pairs.push([name, value]);\n};\n\nprototype.toString = function toString(encoder) {\n const _encode = encoder ? function(value) {\n return encoder.call(this, value, encode);\n } : encode;\n\n return this._pairs.map(function each(pair) {\n return _encode(pair[0]) + '=' + _encode(pair[1]);\n }, '').join('&');\n};\n\nexport default AxiosURLSearchParams;\n","'use strict';\n\nimport utils from '../utils.js';\nimport AxiosURLSearchParams from '../helpers/AxiosURLSearchParams.js';\n\n/**\n * It replaces all instances of the characters `:`, `$`, `,`, `+`, `[`, and `]` with their\n * URI encoded counterparts\n *\n * @param {string} val The value to be encoded.\n *\n * @returns {string} The encoded value.\n */\nfunction encode(val) {\n return encodeURIComponent(val).\n replace(/%3A/gi, ':').\n replace(/%24/g, '$').\n replace(/%2C/gi, ',').\n replace(/%20/g, '+').\n replace(/%5B/gi, '[').\n replace(/%5D/gi, ']');\n}\n\n/**\n * Build a URL by appending params to the end\n *\n * @param {string} url The base of the url (e.g., http://www.google.com)\n * @param {object} [params] The params to be appended\n * @param {?object} options\n *\n * @returns {string} The formatted url\n */\nexport default function buildURL(url, params, options) {\n /*eslint no-param-reassign:0*/\n if (!params) {\n return url;\n }\n \n const _encode = options && options.encode || encode;\n\n const serializeFn = options && options.serialize;\n\n let serializedParams;\n\n if (serializeFn) {\n serializedParams = serializeFn(params, options);\n } else {\n serializedParams = utils.isURLSearchParams(params) ?\n params.toString() :\n new AxiosURLSearchParams(params, options).toString(_encode);\n }\n\n if (serializedParams) {\n const hashmarkIndex = url.indexOf(\"#\");\n\n if (hashmarkIndex !== -1) {\n url = url.slice(0, hashmarkIndex);\n }\n url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;\n }\n\n return url;\n}\n","'use strict';\n\nimport utils from './../utils.js';\n\nclass InterceptorManager {\n constructor() {\n this.handlers = [];\n }\n\n /**\n * Add a new interceptor to the stack\n *\n * @param {Function} fulfilled The function to handle `then` for a `Promise`\n * @param {Function} rejected The function to handle `reject` for a `Promise`\n *\n * @return {Number} An ID used to remove interceptor later\n */\n use(fulfilled, rejected, options) {\n this.handlers.push({\n fulfilled,\n rejected,\n synchronous: options ? options.synchronous : false,\n runWhen: options ? options.runWhen : null\n });\n return this.handlers.length - 1;\n }\n\n /**\n * Remove an interceptor from the stack\n *\n * @param {Number} id The ID that was returned by `use`\n *\n * @returns {Boolean} `true` if the interceptor was removed, `false` otherwise\n */\n eject(id) {\n if (this.handlers[id]) {\n this.handlers[id] = null;\n }\n }\n\n /**\n * Clear all interceptors from the stack\n *\n * @returns {void}\n */\n clear() {\n if (this.handlers) {\n this.handlers = [];\n }\n }\n\n /**\n * Iterate over all the registered interceptors\n *\n * This method is particularly useful for skipping over any\n * interceptors that may have become `null` calling `eject`.\n *\n * @param {Function} fn The function to call for each interceptor\n *\n * @returns {void}\n */\n forEach(fn) {\n utils.forEach(this.handlers, function forEachHandler(h) {\n if (h !== null) {\n fn(h);\n }\n });\n }\n}\n\nexport default InterceptorManager;\n","'use strict';\n\nexport default {\n silentJSONParsing: true,\n forcedJSONParsing: true,\n clarifyTimeoutError: false\n};\n","'use strict';\n\nimport AxiosURLSearchParams from '../../../helpers/AxiosURLSearchParams.js';\nexport default typeof URLSearchParams !== 'undefined' ? URLSearchParams : AxiosURLSearchParams;\n","'use strict';\n\nexport default typeof FormData !== 'undefined' ? FormData : null;\n","'use strict'\n\nexport default typeof Blob !== 'undefined' ? Blob : null\n","import URLSearchParams from './classes/URLSearchParams.js'\nimport FormData from './classes/FormData.js'\nimport Blob from './classes/Blob.js'\n\nexport default {\n isBrowser: true,\n classes: {\n URLSearchParams,\n FormData,\n Blob\n },\n protocols: ['http', 'https', 'file', 'blob', 'url', 'data']\n};\n","const hasBrowserEnv = typeof window !== 'undefined' && typeof document !== 'undefined';\n\n/**\n * Determine if we're running in a standard browser environment\n *\n * This allows axios to run in a web worker, and react-native.\n * Both environments support XMLHttpRequest, but not fully standard globals.\n *\n * web workers:\n * typeof window -> undefined\n * typeof document -> undefined\n *\n * react-native:\n * navigator.product -> 'ReactNative'\n * nativescript\n * navigator.product -> 'NativeScript' or 'NS'\n *\n * @returns {boolean}\n */\nconst hasStandardBrowserEnv = (\n (product) => {\n return hasBrowserEnv && ['ReactNative', 'NativeScript', 'NS'].indexOf(product) < 0\n })(typeof navigator !== 'undefined' && navigator.product);\n\n/**\n * Determine if we're running in a standard browser webWorker environment\n *\n * Although the `isStandardBrowserEnv` method indicates that\n * `allows axios to run in a web worker`, the WebWorker will still be\n * filtered out due to its judgment standard\n * `typeof window !== 'undefined' && typeof document !== 'undefined'`.\n * This leads to a problem when axios post `FormData` in webWorker\n */\nconst hasStandardBrowserWebWorkerEnv = (() => {\n return (\n typeof WorkerGlobalScope !== 'undefined' &&\n // eslint-disable-next-line no-undef\n self instanceof WorkerGlobalScope &&\n typeof self.importScripts === 'function'\n );\n})();\n\nexport {\n hasBrowserEnv,\n hasStandardBrowserWebWorkerEnv,\n hasStandardBrowserEnv\n}\n","import platform from './node/index.js';\nimport * as utils from './common/utils.js';\n\nexport default {\n ...utils,\n ...platform\n}\n","'use strict';\n\nimport utils from '../utils.js';\nimport toFormData from './toFormData.js';\nimport platform from '../platform/index.js';\n\nexport default function toURLEncodedForm(data, options) {\n return toFormData(data, new platform.classes.URLSearchParams(), Object.assign({\n visitor: function(value, key, path, helpers) {\n if (platform.isNode && utils.isBuffer(value)) {\n this.append(key, value.toString('base64'));\n return false;\n }\n\n return helpers.defaultVisitor.apply(this, arguments);\n }\n }, options));\n}\n","'use strict';\n\nimport utils from '../utils.js';\n\n/**\n * It takes a string like `foo[x][y][z]` and returns an array like `['foo', 'x', 'y', 'z']\n *\n * @param {string} name - The name of the property to get.\n *\n * @returns An array of strings.\n */\nfunction parsePropPath(name) {\n // foo[x][y][z]\n // foo.x.y.z\n // foo-x-y-z\n // foo x y z\n return utils.matchAll(/\\w+|\\[(\\w*)]/g, name).map(match => {\n return match[0] === '[]' ? '' : match[1] || match[0];\n });\n}\n\n/**\n * Convert an array to an object.\n *\n * @param {Array<any>} arr - The array to convert to an object.\n *\n * @returns An object with the same keys and values as the array.\n */\nfunction arrayToObject(arr) {\n const obj = {};\n const keys = Object.keys(arr);\n let i;\n const len = keys.length;\n let key;\n for (i = 0; i < len; i++) {\n key = keys[i];\n obj[key] = arr[key];\n }\n return obj;\n}\n\n/**\n * It takes a FormData object and returns a JavaScript object\n *\n * @param {string} formData The FormData object to convert to JSON.\n *\n * @returns {Object<string, any> | null} The converted object.\n */\nfunction formDataToJSON(formData) {\n function buildPath(path, value, target, index) {\n let name = path[index++];\n\n if (name === '__proto__') return true;\n\n const isNumericKey = Number.isFinite(+name);\n const isLast = index >= path.length;\n name = !name && utils.isArray(target) ? target.length : name;\n\n if (isLast) {\n if (utils.hasOwnProp(target, name)) {\n target[name] = [target[name], value];\n } else {\n target[name] = value;\n }\n\n return !isNumericKey;\n }\n\n if (!target[name] || !utils.isObject(target[name])) {\n target[name] = [];\n }\n\n const result = buildPath(path, value, target[name], index);\n\n if (result && utils.isArray(target[name])) {\n target[name] = arrayToObject(target[name]);\n }\n\n return !isNumericKey;\n }\n\n if (utils.isFormData(formData) && utils.isFunction(formData.entries)) {\n const obj = {};\n\n utils.forEachEntry(formData, (name, value) => {\n buildPath(parsePropPath(name), value, obj, 0);\n });\n\n return obj;\n }\n\n return null;\n}\n\nexport default formDataToJSON;\n","'use strict';\n\nimport utils from '../utils.js';\nimport AxiosError from '../core/AxiosError.js';\nimport transitionalDefaults from './transitional.js';\nimport toFormData from '../helpers/toFormData.js';\nimport toURLEncodedForm from '../helpers/toURLEncodedForm.js';\nimport platform from '../platform/index.js';\nimport formDataToJSON from '../helpers/formDataToJSON.js';\n\n/**\n * It takes a string, tries to parse it, and if it fails, it returns the stringified version\n * of the input\n *\n * @param {any} rawValue - The value to be stringified.\n * @param {Function} parser - A function that parses a string into a JavaScript object.\n * @param {Function} encoder - A function that takes a value and returns a string.\n *\n * @returns {string} A stringified version of the rawValue.\n */\nfunction stringifySafely(rawValue, parser, encoder) {\n if (utils.isString(rawValue)) {\n try {\n (parser || JSON.parse)(rawValue);\n return utils.trim(rawValue);\n } catch (e) {\n if (e.name !== 'SyntaxError') {\n throw e;\n }\n }\n }\n\n return (encoder || JSON.stringify)(rawValue);\n}\n\nconst defaults = {\n\n transitional: transitionalDefaults,\n\n adapter: ['xhr', 'http'],\n\n transformRequest: [function transformRequest(data, headers) {\n const contentType = headers.getContentType() || '';\n const hasJSONContentType = contentType.indexOf('application/json') > -1;\n const isObjectPayload = utils.isObject(data);\n\n if (isObjectPayload && utils.isHTMLForm(data)) {\n data = new FormData(data);\n }\n\n const isFormData = utils.isFormData(data);\n\n if (isFormData) {\n if (!hasJSONContentType) {\n return data;\n }\n return hasJSONContentType ? JSON.stringify(formDataToJSON(data)) : data;\n }\n\n if (utils.isArrayBuffer(data) ||\n utils.isBuffer(data) ||\n utils.isStream(data) ||\n utils.isFile(data) ||\n utils.isBlob(data)\n ) {\n return data;\n }\n if (utils.isArrayBufferView(data)) {\n return data.buffer;\n }\n if (utils.isURLSearchParams(data)) {\n headers.setContentType('application/x-www-form-urlencoded;charset=utf-8', false);\n return data.toString();\n }\n\n let isFileList;\n\n if (isObjectPayload) {\n if (contentType.indexOf('application/x-www-form-urlencoded') > -1) {\n return toURLEncodedForm(data, this.formSerializer).toString();\n }\n\n if ((isFileList = utils.isFileList(data)) || contentType.indexOf('multipart/form-data') > -1) {\n const _FormData = this.env && this.env.FormData;\n\n return toFormData(\n isFileList ? {'files[]': data} : data,\n _FormData && new _FormData(),\n this.formSerializer\n );\n }\n }\n\n if (isObjectPayload || hasJSONContentType ) {\n headers.setContentType('application/json', false);\n return stringifySafely(data);\n }\n\n return data;\n }],\n\n transformResponse: [function transformResponse(data) {\n const transitional = this.transitional || defaults.transitional;\n const forcedJSONParsing = transitional && transitional.forcedJSONParsing;\n const JSONRequested = this.responseType === 'json';\n\n if (data && utils.isString(data) && ((forcedJSONParsing && !this.responseType) || JSONRequested)) {\n const silentJSONParsing = transitional && transitional.silentJSONParsing;\n const strictJSONParsing = !silentJSONParsing && JSONRequested;\n\n try {\n return JSON.parse(data);\n } catch (e) {\n if (strictJSONParsing) {\n if (e.name === 'SyntaxError') {\n throw AxiosError.from(e, AxiosError.ERR_BAD_RESPONSE, this, null, this.response);\n }\n throw e;\n }\n }\n }\n\n return data;\n }],\n\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n\n maxContentLength: -1,\n maxBodyLength: -1,\n\n env: {\n FormData: platform.classes.FormData,\n Blob: platform.classes.Blob\n },\n\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n },\n\n headers: {\n common: {\n 'Accept': 'application/json, text/plain, */*',\n 'Content-Type': undefined\n }\n }\n};\n\nutils.forEach(['delete', 'get', 'head', 'post', 'put', 'patch'], (method) => {\n defaults.headers[method] = {};\n});\n\nexport default defaults;\n","'use strict';\n\nimport utils from './../utils.js';\n\n// RawAxiosHeaders whose duplicates are ignored by node\n// c.f. https://nodejs.org/api/http.html#http_message_headers\nconst ignoreDuplicateOf = utils.toObjectSet([\n 'age', 'authorization', 'content-length', 'content-type', 'etag',\n 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since',\n 'last-modified', 'location', 'max-forwards', 'proxy-authorization',\n 'referer', 'retry-after', 'user-agent'\n]);\n\n/**\n * Parse headers into an object\n *\n * ```\n * Date: Wed, 27 Aug 2014 08:58:49 GMT\n * Content-Type: application/json\n * Connection: keep-alive\n * Transfer-Encoding: chunked\n * ```\n *\n * @param {String} rawHeaders Headers needing to be parsed\n *\n * @returns {Object} Headers parsed into an object\n */\nexport default rawHeaders => {\n const parsed = {};\n let key;\n let val;\n let i;\n\n rawHeaders && rawHeaders.split('\\n').forEach(function parser(line) {\n i = line.indexOf(':');\n key = line.substring(0, i).trim().toLowerCase();\n val = line.substring(i + 1).trim();\n\n if (!key || (parsed[key] && ignoreDuplicateOf[key])) {\n return;\n }\n\n if (key === 'set-cookie') {\n if (parsed[key]) {\n parsed[key].push(val);\n } else {\n parsed[key] = [val];\n }\n } else {\n parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;\n }\n });\n\n return parsed;\n};\n","'use strict';\n\nimport utils from '../utils.js';\nimport parseHeaders from '../helpers/parseHeaders.js';\n\nconst $internals = Symbol('internals');\n\nfunction normalizeHeader(header) {\n return header && String(header).trim().toLowerCase();\n}\n\nfunction normalizeValue(value) {\n if (value === false || value == null) {\n return value;\n }\n\n return utils.isArray(value) ? value.map(normalizeValue) : String(value);\n}\n\nfunction parseTokens(str) {\n const tokens = Object.create(null);\n const tokensRE = /([^\\s,;=]+)\\s*(?:=\\s*([^,;]+))?/g;\n let match;\n\n while ((match = tokensRE.exec(str))) {\n tokens[match[1]] = match[2];\n }\n\n return tokens;\n}\n\nconst isValidHeaderName = (str) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(str.trim());\n\nfunction matchHeaderValue(context, value, header, filter, isHeaderNameFilter) {\n if (utils.isFunction(filter)) {\n return filter.call(this, value, header);\n }\n\n if (isHeaderNameFilter) {\n value = header;\n }\n\n if (!utils.isString(value)) return;\n\n if (utils.isString(filter)) {\n return value.indexOf(filter) !== -1;\n }\n\n if (utils.isRegExp(filter)) {\n return filter.test(value);\n }\n}\n\nfunction formatHeader(header) {\n return header.trim()\n .toLowerCase().replace(/([a-z\\d])(\\w*)/g, (w, char, str) => {\n return char.toUpperCase() + str;\n });\n}\n\nfunction buildAccessors(obj, header) {\n const accessorName = utils.toCamelCase(' ' + header);\n\n ['get', 'set', 'has'].forEach(methodName => {\n Object.defineProperty(obj, methodName + accessorName, {\n value: function(arg1, arg2, arg3) {\n return this[methodName].call(this, header, arg1, arg2, arg3);\n },\n configurable: true\n });\n });\n}\n\nclass AxiosHeaders {\n constructor(headers) {\n headers && this.set(headers);\n }\n\n set(header, valueOrRewrite, rewrite) {\n const self = this;\n\n function setHeader(_value, _header, _rewrite) {\n const lHeader = normalizeHeader(_header);\n\n if (!lHeader) {\n throw new Error('header name must be a non-empty string');\n }\n\n const key = utils.findKey(self, lHeader);\n\n if(!key || self[key] === undefined || _rewrite === true || (_rewrite === undefined && self[key] !== false)) {\n self[key || _header] = normalizeValue(_value);\n }\n }\n\n const setHeaders = (headers, _rewrite) =>\n utils.forEach(headers, (_value, _header) => setHeader(_value, _header, _rewrite));\n\n if (utils.isPlainObject(header) || header instanceof this.constructor) {\n setHeaders(header, valueOrRewrite)\n } else if(utils.isString(header) && (header = header.trim()) && !isValidHeaderName(header)) {\n setHeaders(parseHeaders(header), valueOrRewrite);\n } else {\n header != null && setHeader(valueOrRewrite, header, rewrite);\n }\n\n return this;\n }\n\n get(header, parser) {\n header = normalizeHeader(header);\n\n if (header) {\n const key = utils.findKey(this, header);\n\n if (key) {\n const value = this[key];\n\n if (!parser) {\n return value;\n }\n\n if (parser === true) {\n return parseTokens(value);\n }\n\n if (utils.isFunction(parser)) {\n return parser.call(this, value, key);\n }\n\n if (utils.isRegExp(parser)) {\n return parser.exec(value);\n }\n\n throw new TypeError('parser must be boolean|regexp|function');\n }\n }\n }\n\n has(header, matcher) {\n header = normalizeHeader(header);\n\n if (header) {\n const key = utils.findKey(this, header);\n\n return !!(key && this[key] !== undefined && (!matcher || matchHeaderValue(this, this[key], key, matcher)));\n }\n\n return false;\n }\n\n delete(header, matcher) {\n const self = this;\n let deleted = false;\n\n function deleteHeader(_header) {\n _header = normalizeHeader(_header);\n\n if (_header) {\n const key = utils.findKey(self, _header);\n\n if (key && (!matcher || matchHeaderValue(self, self[key], key, matcher))) {\n delete self[key];\n\n deleted = true;\n }\n }\n }\n\n if (utils.isArray(header)) {\n header.forEach(deleteHeader);\n } else {\n deleteHeader(header);\n }\n\n return deleted;\n }\n\n clear(matcher) {\n const keys = Object.keys(this);\n let i = keys.length;\n let deleted = false;\n\n while (i--) {\n const key = keys[i];\n if(!matcher || matchHeaderValue(this, this[key], key, matcher, true)) {\n delete this[key];\n deleted = true;\n }\n }\n\n return deleted;\n }\n\n normalize(format) {\n const self = this;\n const headers = {};\n\n utils.forEach(this, (value, header) => {\n const key = utils.findKey(headers, header);\n\n if (key) {\n self[key] = normalizeValue(value);\n delete self[header];\n return;\n }\n\n const normalized = format ? formatHeader(header) : String(header).trim();\n\n if (normalized !== header) {\n delete self[header];\n }\n\n self[normalized] = normalizeValue(value);\n\n headers[normalized] = true;\n });\n\n return this;\n }\n\n concat(...targets) {\n return this.constructor.concat(this, ...targets);\n }\n\n toJSON(asStrings) {\n const obj = Object.create(null);\n\n utils.forEach(this, (value, header) => {\n value != null && value !== false && (obj[header] = asStrings && utils.isArray(value) ? value.join(', ') : value);\n });\n\n return obj;\n }\n\n [Symbol.iterator]() {\n return Object.entries(this.toJSON())[Symbol.iterator]();\n }\n\n toString() {\n return Object.entries(this.toJSON()).map(([header, value]) => header + ': ' + value).join('\\n');\n }\n\n get [Symbol.toStringTag]() {\n return 'AxiosHeaders';\n }\n\n static from(thing) {\n return thing instanceof this ? thing : new this(thing);\n }\n\n static concat(first, ...targets) {\n const computed = new this(first);\n\n targets.forEach((target) => computed.set(target));\n\n return computed;\n }\n\n static accessor(header) {\n const internals = this[$internals] = (this[$internals] = {\n accessors: {}\n });\n\n const accessors = internals.accessors;\n const prototype = this.prototype;\n\n function defineAccessor(_header) {\n const lHeader = normalizeHeader(_header);\n\n if (!accessors[lHeader]) {\n buildAccessors(prototype, _header);\n accessors[lHeader] = true;\n }\n }\n\n utils.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header);\n\n return this;\n }\n}\n\nAxiosHeaders.accessor(['Content-Type', 'Content-Length', 'Accept', 'Accept-Encoding', 'User-Agent', 'Authorization']);\n\n// reserved names hotfix\nutils.reduceDescriptors(AxiosHeaders.prototype, ({value}, key) => {\n let mapped = key[0].toUpperCase() + key.slice(1); // map `set` => `Set`\n return {\n get: () => value,\n set(headerValue) {\n this[mapped] = headerValue;\n }\n }\n});\n\nutils.freezeMethods(AxiosHeaders);\n\nexport default AxiosHeaders;\n","'use strict';\n\nimport utils from './../utils.js';\nimport defaults from '../defaults/index.js';\nimport AxiosHeaders from '../core/AxiosHeaders.js';\n\n/**\n * Transform the data for a request or a response\n *\n * @param {Array|Function} fns A single function or Array of functions\n * @param {?Object} response The response object\n *\n * @returns {*} The resulting transformed data\n */\nexport default function transformData(fns, response) {\n const config = this || defaults;\n const context = response || config;\n const headers = AxiosHeaders.from(context.headers);\n let data = context.data;\n\n utils.forEach(fns, function transform(fn) {\n data = fn.call(config, data, headers.normalize(), response ? response.status : undefined);\n });\n\n headers.normalize();\n\n return data;\n}\n","'use strict';\n\nexport default function isCancel(value) {\n return !!(value && value.__CANCEL__);\n}\n","'use strict';\n\nimport AxiosError from '../core/AxiosError.js';\nimport utils from '../utils.js';\n\n/**\n * A `CanceledError` is an object that is thrown when an operation is canceled.\n *\n * @param {string=} message The message.\n * @param {Object=} config The config.\n * @param {Object=} request The request.\n *\n * @returns {CanceledError} The created error.\n */\nfunction CanceledError(message, config, request) {\n // eslint-disable-next-line no-eq-null,eqeqeq\n AxiosError.call(this, message == null ? 'canceled' : message, AxiosError.ERR_CANCELED, config, request);\n this.name = 'CanceledError';\n}\n\nutils.inherits(CanceledError, AxiosError, {\n __CANCEL__: true\n});\n\nexport default CanceledError;\n","'use strict';\n\nimport AxiosError from './AxiosError.js';\n\n/**\n * Resolve or reject a Promise based on response status.\n *\n * @param {Function} resolve A function that resolves the promise.\n * @param {Function} reject A function that rejects the promise.\n * @param {object} response The response.\n *\n * @returns {object} The response.\n */\nexport default function settle(resolve, reject, response) {\n const validateStatus = response.config.validateStatus;\n if (!response.status || !validateStatus || validateStatus(response.status)) {\n resolve(response);\n } else {\n reject(new AxiosError(\n 'Request failed with status code ' + response.status,\n [AxiosError.ERR_BAD_REQUEST, AxiosError.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4],\n response.config,\n response.request,\n response\n ));\n }\n}\n","import utils from './../utils.js';\nimport platform from '../platform/index.js';\n\nexport default platform.hasStandardBrowserEnv ?\n\n // Standard browser envs support document.cookie\n {\n write(name, value, expires, path, domain, secure) {\n const cookie = [name + '=' + encodeURIComponent(value)];\n\n utils.isNumber(expires) && cookie.push('expires=' + new Date(expires).toGMTString());\n\n utils.isString(path) && cookie.push('path=' + path);\n\n utils.isString(domain) && cookie.push('domain=' + domain);\n\n secure === true && cookie.push('secure');\n\n document.cookie = cookie.join('; ');\n },\n\n read(name) {\n const match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n return (match ? decodeURIComponent(match[3]) : null);\n },\n\n remove(name) {\n this.write(name, '', Date.now() - 86400000);\n }\n }\n\n :\n\n // Non-standard browser env (web workers, react-native) lack needed support.\n {\n write() {},\n read() {\n return null;\n },\n remove() {}\n };\n\n","'use strict';\n\n/**\n * Determines whether the specified URL is absolute\n *\n * @param {string} url The URL to test\n *\n * @returns {boolean} True if the specified URL is absolute, otherwise false\n */\nexport default function isAbsoluteURL(url) {\n // A URL is considered absolute if it begins with \"<scheme>://\" or \"//\" (protocol-relative URL).\n // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed\n // by any combination of letters, digits, plus, period, or hyphen.\n return /^([a-z][a-z\\d+\\-.]*:)?\\/\\//i.test(url);\n}\n","'use strict';\n\n/**\n * Creates a new URL by combining the specified URLs\n *\n * @param {string} baseURL The base URL\n * @param {string} relativeURL The relative URL\n *\n * @returns {string} The combined URL\n */\nexport default function combineURLs(baseURL, relativeURL) {\n return relativeURL\n ? baseURL.replace(/\\/?\\/$/, '') + '/' + relativeURL.replace(/^\\/+/, '')\n : baseURL;\n}\n","'use strict';\n\nimport isAbsoluteURL from '../helpers/isAbsoluteURL.js';\nimport combineURLs from '../helpers/combineURLs.js';\n\n/**\n * Creates a new URL by combining the baseURL with the requestedURL,\n * only when the requestedURL is not already an absolute URL.\n * If the requestURL is absolute, this function returns the requestedURL untouched.\n *\n * @param {string} baseURL The base URL\n * @param {string} requestedURL Absolute or relative URL to combine\n *\n * @returns {string} The combined full path\n */\nexport default function buildFullPath(baseURL, requestedURL) {\n if (baseURL && !isAbsoluteURL(requestedURL)) {\n return combineURLs(baseURL, requestedURL);\n }\n return requestedURL;\n}\n","'use strict';\n\nimport utils from './../utils.js';\nimport platform from '../platform/index.js';\n\nexport default platform.hasStandardBrowserEnv ?\n\n// Standard browser envs have full support of the APIs needed to test\n// whether the request URL is of the same origin as current location.\n (function standardBrowserEnv() {\n const msie = /(msie|trident)/i.test(navigator.userAgent);\n const urlParsingNode = document.createElement('a');\n let originURL;\n\n /**\n * Parse a URL to discover its components\n *\n * @param {String} url The URL to be parsed\n * @returns {Object}\n */\n function resolveURL(url) {\n let href = url;\n\n if (msie) {\n // IE needs attribute set twice to normalize properties\n urlParsingNode.setAttribute('href', href);\n href = urlParsingNode.href;\n }\n\n urlParsingNode.setAttribute('href', href);\n\n // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n return {\n href: urlParsingNode.href,\n protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n host: urlParsingNode.host,\n search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n hostname: urlParsingNode.hostname,\n port: urlParsingNode.port,\n pathname: (urlParsingNode.pathname.charAt(0) === '/') ?\n urlParsingNode.pathname :\n '/' + urlParsingNode.pathname\n };\n }\n\n originURL = resolveURL(window.location.href);\n\n /**\n * Determine if a URL shares the same origin as the current location\n *\n * @param {String} requestURL The URL to test\n * @returns {boolean} True if URL shares the same origin, otherwise false\n */\n return function isURLSameOrigin(requestURL) {\n const parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;\n return (parsed.protocol === originURL.protocol &&\n parsed.host === originURL.host);\n };\n })() :\n\n // Non standard browser envs (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return function isURLSameOrigin() {\n return true;\n };\n })();\n","'use strict';\n\nexport default function parseProtocol(url) {\n const match = /^([-+\\w]{1,25})(:?\\/\\/|:)/.exec(url);\n return match && match[1] || '';\n}\n","'use strict';\n\n/**\n * Calculate data maxRate\n * @param {Number} [samplesCount= 10]\n * @param {Number} [min= 1000]\n * @returns {Function}\n */\nfunction speedometer(samplesCount, min) {\n samplesCount = samplesCount || 10;\n const bytes = new Array(samplesCount);\n const timestamps = new Array(samplesCount);\n let head = 0;\n let tail = 0;\n let firstSampleTS;\n\n min = min !== undefined ? min : 1000;\n\n return function push(chunkLength) {\n const now = Date.now();\n\n const startedAt = timestamps[tail];\n\n if (!firstSampleTS) {\n firstSampleTS = now;\n }\n\n bytes[head] = chunkLength;\n timestamps[head] = now;\n\n let i = tail;\n let bytesCount = 0;\n\n while (i !== head) {\n bytesCount += bytes[i++];\n i = i % samplesCount;\n }\n\n head = (head + 1) % samplesCount;\n\n if (head === tail) {\n tail = (tail + 1) % samplesCount;\n }\n\n if (now - firstSampleTS < min) {\n return;\n }\n\n const passed = startedAt && now - startedAt;\n\n return passed ? Math.round(bytesCount * 1000 / passed) : undefined;\n };\n}\n\nexport default speedometer;\n","'use strict';\n\nimport utils from './../utils.js';\nimport settle from './../core/settle.js';\nimport cookies from './../helpers/cookies.js';\nimport buildURL from './../helpers/buildURL.js';\nimport buildFullPath from '../core/buildFullPath.js';\nimport isURLSameOrigin from './../helpers/isURLSameOrigin.js';\nimport transitionalDefaults from '../defaults/transitional.js';\nimport AxiosError from '../core/AxiosError.js';\nimport CanceledError from '../cancel/CanceledError.js';\nimport parseProtocol from '../helpers/parseProtocol.js';\nimport platform from '../platform/index.js';\nimport AxiosHeaders from '../core/AxiosHeaders.js';\nimport speedometer from '../helpers/speedometer.js';\n\nfunction progressEventReducer(listener, isDownloadStream) {\n let bytesNotified = 0;\n const _speedometer = speedometer(50, 250);\n\n return e => {\n const loaded = e.loaded;\n const total = e.lengthComputable ? e.total : undefined;\n const progressBytes = loaded - bytesNotified;\n const rate = _speedometer(progressBytes);\n const inRange = loaded <= total;\n\n bytesNotified = loaded;\n\n const data = {\n loaded,\n total,\n progress: total ? (loaded / total) : undefined,\n bytes: progressBytes,\n rate: rate ? rate : undefined,\n estimated: rate && total && inRange ? (total - loaded) / rate : undefined,\n event: e\n };\n\n data[isDownloadStream ? 'download' : 'upload'] = true;\n\n listener(data);\n };\n}\n\nconst isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';\n\nexport default isXHRAdapterSupported && function (config) {\n return new Promise(function dispatchXhrRequest(resolve, reject) {\n let requestData = config.data;\n const requestHeaders = AxiosHeaders.from(config.headers).normalize();\n let {responseType, withXSRFToken} = config;\n let onCanceled;\n function done() {\n if (config.cancelToken) {\n config.cancelToken.unsubscribe(onCanceled);\n }\n\n if (config.signal) {\n config.signal.removeEventListener('abort', onCanceled);\n }\n }\n\n let contentType;\n\n if (utils.isFormData(requestData)) {\n if (platform.hasStandardBrowserEnv || platform.hasStandardBrowserWebWorkerEnv) {\n requestHeaders.setContentType(false); // Let the browser set it\n } else if ((contentType = requestHeaders.getContentType()) !== false) {\n // fix semicolon duplication issue for ReactNative FormData implementation\n const [type, ...tokens] = contentType ? contentType.split(';').map(token => token.trim()).filter(Boolean) : [];\n requestHeaders.setContentType([type || 'multipart/form-data', ...tokens].join('; '));\n }\n }\n\n let request = new XMLHttpRequest();\n\n // HTTP basic authentication\n if (config.auth) {\n const username = config.auth.username || '';\n const password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : '';\n requestHeaders.set('Authorization', 'Basic ' + btoa(username + ':' + password));\n }\n\n const fullPath = buildFullPath(config.baseURL, config.url);\n\n request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);\n\n // Set the request timeout in MS\n request.timeout = config.timeout;\n\n function onloadend() {\n if (!request) {\n return;\n }\n // Prepare the response\n const responseHeaders = AxiosHeaders.from(\n 'getAllResponseHeaders' in request && request.getAllResponseHeaders()\n );\n const responseData = !responseType || responseType === 'text' || responseType === 'json' ?\n request.responseText : request.response;\n const response = {\n data: responseData,\n status: request.status,\n statusText: request.statusText,\n headers: responseHeaders,\n config,\n request\n };\n\n settle(function _resolve(value) {\n resolve(value);\n done();\n }, function _reject(err) {\n reject(err);\n done();\n }, response);\n\n // Clean up request\n request = null;\n }\n\n if ('onloadend' in request) {\n // Use onloadend if available\n request.onloadend = onloadend;\n } else {\n // Listen for ready state to emulate onloadend\n request.onreadystatechange = function handleLoad() {\n if (!request || request.readyState !== 4) {\n return;\n }\n\n // The request errored out and we didn't get a response, this will be\n // handled by onerror instead\n // With one exception: request that using file: protocol, most browsers\n // will return status as 0 even though it's a successful request\n if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {\n return;\n }\n // readystate handler is calling before onerror or ontimeout handlers,\n // so we should call onloadend on the next 'tick'\n setTimeout(onloadend);\n };\n }\n\n // Handle browser request cancellation (as opposed to a manual cancellation)\n request.onabort = function handleAbort() {\n if (!request) {\n return;\n }\n\n reject(new AxiosError('Request aborted', AxiosError.ECONNABORTED, config, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle low level network errors\n request.onerror = function handleError() {\n // Real errors are hidden from us by the browser\n // onerror should only fire if it's a network error\n reject(new AxiosError('Network Error', AxiosError.ERR_NETWORK, config, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle timeout\n request.ontimeout = function handleTimeout() {\n let timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded';\n const transitional = config.transitional || transitionalDefaults;\n if (config.timeoutErrorMessage) {\n timeoutErrorMessage = config.timeoutErrorMessage;\n }\n reject(new AxiosError(\n timeoutErrorMessage,\n transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED,\n config,\n request));\n\n // Clean up request\n request = null;\n };\n\n // Add xsrf header\n // This is only done if running in a standard browser environment.\n // Specifically not if we're in a web worker, or react-native.\n if(platform.hasStandardBrowserEnv) {\n withXSRFToken && utils.isFunction(withXSRFToken) && (withXSRFToken = withXSRFToken(config));\n\n if (withXSRFToken || (withXSRFToken !== false && isURLSameOrigin(fullPath))) {\n // Add xsrf header\n const xsrfValue = config.xsrfHeaderName && config.xsrfCookieName && cookies.read(config.xsrfCookieName);\n\n if (xsrfValue) {\n requestHeaders.set(config.xsrfHeaderName, xsrfValue);\n }\n }\n }\n\n // Remove Content-Type if data is undefined\n requestData === undefined && requestHeaders.setContentType(null);\n\n // Add headers to the request\n if ('setRequestHeader' in request) {\n utils.forEach(requestHeaders.toJSON(), function setRequestHeader(val, key) {\n request.setRequestHeader(key, val);\n });\n }\n\n // Add withCredentials to request if needed\n if (!utils.isUndefined(config.withCredentials)) {\n request.withCredentials = !!config.withCredentials;\n }\n\n // Add responseType to request if needed\n if (responseType && responseType !== 'json') {\n request.responseType = config.responseType;\n }\n\n // Handle progress if needed\n if (typeof config.onDownloadProgress === 'function') {\n request.addEventListener('progress', progressEventReducer(config.onDownloadProgress, true));\n }\n\n // Not all browsers support upload events\n if (typeof config.onUploadProgress === 'function' && request.upload) {\n request.upload.addEventListener('progress', progressEventReducer(config.onUploadProgress));\n }\n\n if (config.cancelToken || config.signal) {\n // Handle cancellation\n // eslint-disable-next-line func-names\n onCanceled = cancel => {\n if (!request) {\n return;\n }\n reject(!cancel || cancel.type ? new CanceledError(null, config, request) : cancel);\n request.abort();\n request = null;\n };\n\n config.cancelToken && config.cancelToken.subscribe(onCanceled);\n if (config.signal) {\n config.signal.aborted ? onCanceled() : config.signal.addEventListener('abort', onCanceled);\n }\n }\n\n const protocol = parseProtocol(fullPath);\n\n if (protocol && platform.protocols.indexOf(protocol) === -1) {\n reject(new AxiosError('Unsupported protocol ' + protocol + ':', AxiosError.ERR_BAD_REQUEST, config));\n return;\n }\n\n\n // Send the request\n request.send(requestData || null);\n });\n}\n","import utils from '../utils.js';\nimport httpAdapter from './http.js';\nimport xhrAdapter from './xhr.js';\nimport AxiosError from \"../core/AxiosError.js\";\n\nconst knownAdapters = {\n http: httpAdapter,\n xhr: xhrAdapter\n}\n\nutils.forEach(knownAdapters, (fn, value) => {\n if (fn) {\n try {\n Object.defineProperty(fn, 'name', {value});\n } catch (e) {\n // eslint-disable-next-line no-empty\n }\n Object.defineProperty(fn, 'adapterName', {value});\n }\n});\n\nconst renderReason = (reason) => `- ${reason}`;\n\nconst isResolvedHandle = (adapter) => utils.isFunction(adapter) || adapter === null || adapter === false;\n\nexport default {\n getAdapter: (adapters) => {\n adapters = utils.isArray(adapters) ? adapters : [adapters];\n\n const {length} = adapters;\n let nameOrAdapter;\n let adapter;\n\n const rejectedReasons = {};\n\n for (let i = 0; i < length; i++) {\n nameOrAdapter = adapters[i];\n let id;\n\n adapter = nameOrAdapter;\n\n if (!isResolvedHandle(nameOrAdapter)) {\n adapter = knownAdapters[(id = String(nameOrAdapter)).toLowerCase()];\n\n if (adapter === undefined) {\n throw new AxiosError(`Unknown adapter '${id}'`);\n }\n }\n\n if (adapter) {\n break;\n }\n\n rejectedReasons[id || '#' + i] = adapter;\n }\n\n if (!adapter) {\n\n const reasons = Object.entries(rejectedReasons)\n .map(([id, state]) => `adapter ${id} ` +\n (state === false ? 'is not supported by the environment' : 'is not available in the build')\n );\n\n let s = length ?\n (reasons.length > 1 ? 'since :\\n' + reasons.map(renderReason).join('\\n') : ' ' + renderReason(reasons[0])) :\n 'as no adapter specified';\n\n throw new AxiosError(\n `There is no suitable adapter to dispatch the request ` + s,\n 'ERR_NOT_SUPPORT'\n );\n }\n\n return adapter;\n },\n adapters: knownAdapters\n}\n","'use strict';\n\nimport transformData from './transformData.js';\nimport isCancel from '../cancel/isCancel.js';\nimport defaults from '../defaults/index.js';\nimport CanceledError from '../cancel/CanceledError.js';\nimport AxiosHeaders from '../core/AxiosHeaders.js';\nimport adapters from \"../adapters/adapters.js\";\n\n/**\n * Throws a `CanceledError` if cancellation has been requested.\n *\n * @param {Object} config The config that is to be used for the request\n *\n * @returns {void}\n */\nfunction throwIfCancellationRequested(config) {\n if (config.cancelToken) {\n config.cancelToken.throwIfRequested();\n }\n\n if (config.signal && config.signal.aborted) {\n throw new CanceledError(null, config);\n }\n}\n\n/**\n * Dispatch a request to the server using the configured adapter.\n *\n * @param {object} config The config that is to be used for the request\n *\n * @returns {Promise} The Promise to be fulfilled\n */\nexport default function dispatchRequest(config) {\n throwIfCancellationRequested(config);\n\n config.headers = AxiosHeaders.from(config.headers);\n\n // Transform request data\n config.data = transformData.call(\n config,\n config.transformRequest\n );\n\n if (['post', 'put', 'patch'].indexOf(config.method) !== -1) {\n config.headers.setContentType('application/x-www-form-urlencoded', false);\n }\n\n const adapter = adapters.getAdapter(config.adapter || defaults.adapter);\n\n return adapter(config).then(function onAdapterResolution(response) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n response.data = transformData.call(\n config,\n config.transformResponse,\n response\n );\n\n response.headers = AxiosHeaders.from(response.headers);\n\n return response;\n }, function onAdapterRejection(reason) {\n if (!isCancel(reason)) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n if (reason && reason.response) {\n reason.response.data = transformData.call(\n config,\n config.transformResponse,\n reason.response\n );\n reason.response.headers = AxiosHeaders.from(reason.response.headers);\n }\n }\n\n return Promise.reject(reason);\n });\n}\n","'use strict';\n\nimport utils from '../utils.js';\nimport AxiosHeaders from \"./AxiosHeaders.js\";\n\nconst headersToObject = (thing) => thing instanceof AxiosHeaders ? thing.toJSON() : thing;\n\n/**\n * Config-specific merge-function which creates a new config-object\n * by merging two configuration objects together.\n *\n * @param {Object} config1\n * @param {Object} config2\n *\n * @returns {Object} New object resulting from merging config2 to config1\n */\nexport default function mergeConfig(config1, config2) {\n // eslint-disable-next-line no-param-reassign\n config2 = config2 || {};\n const config = {};\n\n function getMergedValue(target, source, caseless) {\n if (utils.isPlainObject(target) && utils.isPlainObject(source)) {\n return utils.merge.call({caseless}, target, source);\n } else if (utils.isPlainObject(source)) {\n return utils.merge({}, source);\n } else if (utils.isArray(source)) {\n return source.slice();\n }\n return source;\n }\n\n // eslint-disable-next-line consistent-return\n function mergeDeepProperties(a, b, caseless) {\n if (!utils.isUndefined(b)) {\n return getMergedValue(a, b, caseless);\n } else if (!utils.isUndefined(a)) {\n return getMergedValue(undefined, a, caseless);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function valueFromConfig2(a, b) {\n if (!utils.isUndefined(b)) {\n return getMergedValue(undefined, b);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function defaultToConfig2(a, b) {\n if (!utils.isUndefined(b)) {\n return getMergedValue(undefined, b);\n } else if (!utils.isUndefined(a)) {\n return getMergedValue(undefined, a);\n }\n }\n\n // eslint-disable-next-line consistent-return\n function mergeDirectKeys(a, b, prop) {\n if (prop in config2) {\n return getMergedValue(a, b);\n } else if (prop in config1) {\n return getMergedValue(undefined, a);\n }\n }\n\n const mergeMap = {\n url: valueFromConfig2,\n method: valueFromConfig2,\n data: valueFromConfig2,\n baseURL: defaultToConfig2,\n transformRequest: defaultToConfig2,\n transformResponse: defaultToConfig2,\n paramsSerializer: defaultToConfig2,\n timeout: defaultToConfig2,\n timeoutMessage: defaultToConfig2,\n withCredentials: defaultToConfig2,\n withXSRFToken: defaultToConfig2,\n adapter: defaultToConfig2,\n responseType: defaultToConfig2,\n xsrfCookieName: defaultToConfig2,\n xsrfHeaderName: defaultToConfig2,\n onUploadProgress: defaultToConfig2,\n onDownloadProgress: defaultToConfig2,\n decompress: defaultToConfig2,\n maxContentLength: defaultToConfig2,\n maxBodyLength: defaultToConfig2,\n beforeRedirect: defaultToConfig2,\n transport: defaultToConfig2,\n httpAgent: defaultToConfig2,\n httpsAgent: defaultToConfig2,\n cancelToken: defaultToConfig2,\n socketPath: defaultToConfig2,\n responseEncoding: defaultToConfig2,\n validateStatus: mergeDirectKeys,\n headers: (a, b) => mergeDeepProperties(headersToObject(a), headersToObject(b), true)\n };\n\n utils.forEach(Object.keys(Object.assign({}, config1, config2)), function computeConfigValue(prop) {\n const merge = mergeMap[prop] || mergeDeepProperties;\n const configValue = merge(config1[prop], config2[prop], prop);\n (utils.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);\n });\n\n return config;\n}\n","export const VERSION = \"1.6.5\";","'use strict';\n\nimport {VERSION} from '../env/data.js';\nimport AxiosError from '../core/AxiosError.js';\n\nconst validators = {};\n\n// eslint-disable-next-line func-names\n['object', 'boolean', 'number', 'function', 'string', 'symbol'].forEach((type, i) => {\n validators[type] = function validator(thing) {\n return typeof thing === type || 'a' + (i < 1 ? 'n ' : ' ') + type;\n };\n});\n\nconst deprecatedWarnings = {};\n\n/**\n * Transitional option validator\n *\n * @param {function|boolean?} validator - set to false if the transitional option has been removed\n * @param {string?} version - deprecated version / removed since version\n * @param {string?} message - some message with additional info\n *\n * @returns {function}\n */\nvalidators.transitional = function transitional(validator, version, message) {\n function formatMessage(opt, desc) {\n return '[Axios v' + VERSION + '] Transitional option \\'' + opt + '\\'' + desc + (message ? '. ' + message : '');\n }\n\n // eslint-disable-next-line func-names\n return (value, opt, opts) => {\n if (validator === false) {\n throw new AxiosError(\n formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')),\n AxiosError.ERR_DEPRECATED\n );\n }\n\n if (version && !deprecatedWarnings[opt]) {\n deprecatedWarnings[opt] = true;\n // eslint-disable-next-line no-console\n console.warn(\n formatMessage(\n opt,\n ' has been deprecated since v' + version + ' and will be removed in the near future'\n )\n );\n }\n\n return validator ? validator(value, opt, opts) : true;\n };\n};\n\n/**\n * Assert object's properties type\n *\n * @param {object} options\n * @param {object} schema\n * @param {boolean?} allowUnknown\n *\n * @returns {object}\n */\n\nfunction assertOptions(options, schema, allowUnknown) {\n if (typeof options !== 'object') {\n throw new AxiosError('options must be an object', AxiosError.ERR_BAD_OPTION_VALUE);\n }\n const keys = Object.keys(options);\n let i = keys.length;\n while (i-- > 0) {\n const opt = keys[i];\n const validator = schema[opt];\n if (validator) {\n const value = options[opt];\n const result = value === undefined || validator(value, opt, options);\n if (result !== true) {\n throw new AxiosError('option ' + opt + ' must be ' + result, AxiosError.ERR_BAD_OPTION_VALUE);\n }\n continue;\n }\n if (allowUnknown !== true) {\n throw new AxiosError('Unknown option ' + opt, AxiosError.ERR_BAD_OPTION);\n }\n }\n}\n\nexport default {\n assertOptions,\n validators\n};\n","'use strict';\n\nimport utils from './../utils.js';\nimport buildURL from '../helpers/buildURL.js';\nimport InterceptorManager from './InterceptorManager.js';\nimport dispatchRequest from './dispatchRequest.js';\nimport mergeConfig from './mergeConfig.js';\nimport buildFullPath from './buildFullPath.js';\nimport validator from '../helpers/validator.js';\nimport AxiosHeaders from './AxiosHeaders.js';\n\nconst validators = validator.validators;\n\n/**\n * Create a new instance of Axios\n *\n * @param {Object} instanceConfig The default config for the instance\n *\n * @return {Axios} A new instance of Axios\n */\nclass Axios {\n constructor(instanceConfig) {\n this.defaults = instanceConfig;\n this.interceptors = {\n request: new InterceptorManager(),\n response: new InterceptorManager()\n };\n }\n\n /**\n * Dispatch a request\n *\n * @param {String|Object} configOrUrl The config specific for this request (merged with this.defaults)\n * @param {?Object} config\n *\n * @returns {Promise} The Promise to be fulfilled\n */\n request(configOrUrl, config) {\n /*eslint no-param-reassign:0*/\n // Allow for axios('example/url'[, config]) a la fetch API\n if (typeof configOrUrl === 'string') {\n config = config || {};\n config.url = configOrUrl;\n } else {\n config = configOrUrl || {};\n }\n\n config = mergeConfig(this.defaults, config);\n\n const {transitional, paramsSerializer, headers} = config;\n\n if (transitional !== undefined) {\n validator.assertOptions(transitional, {\n silentJSONParsing: validators.transitional(validators.boolean),\n forcedJSONParsing: validators.transitional(validators.boolean),\n clarifyTimeoutError: validators.transitional(validators.boolean)\n }, false);\n }\n\n if (paramsSerializer != null) {\n if (utils.isFunction(paramsSerializer)) {\n config.paramsSerializer = {\n serialize: paramsSerializer\n }\n } else {\n validator.assertOptions(paramsSerializer, {\n encode: validators.function,\n serialize: validators.function\n }, true);\n }\n }\n\n // Set config.method\n config.method = (config.method || this.defaults.method || 'get').toLowerCase();\n\n // Flatten headers\n let contextHeaders = headers && utils.merge(\n headers.common,\n headers[config.method]\n );\n\n headers && utils.forEach(\n ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],\n (method) => {\n delete headers[method];\n }\n );\n\n config.headers = AxiosHeaders.concat(contextHeaders, headers);\n\n // filter out skipped interceptors\n const requestInterceptorChain = [];\n let synchronousRequestInterceptors = true;\n this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {\n if (typeof interceptor.runWhen === 'function' && interceptor.runWhen(config) === false) {\n return;\n }\n\n synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;\n\n requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);\n });\n\n const responseInterceptorChain = [];\n this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {\n responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);\n });\n\n let promise;\n let i = 0;\n let len;\n\n if (!synchronousRequestInterceptors) {\n const chain = [dispatchRequest.bind(this), undefined];\n chain.unshift.apply(chain, requestInterceptorChain);\n chain.push.apply(chain, responseInterceptorChain);\n len = chain.length;\n\n promise = Promise.resolve(config);\n\n while (i < len) {\n promise = promise.then(chain[i++], chain[i++]);\n }\n\n return promise;\n }\n\n len = requestInterceptorChain.length;\n\n let newConfig = config;\n\n i = 0;\n\n while (i < len) {\n const onFulfilled = requestInterceptorChain[i++];\n const onRejected = requestInterceptorChain[i++];\n try {\n newConfig = onFulfilled(newConfig);\n } catch (error) {\n onRejected.call(this, error);\n break;\n }\n }\n\n try {\n promise = dispatchRequest.call(this, newConfig);\n } catch (error) {\n return Promise.reject(error);\n }\n\n i = 0;\n len = responseInterceptorChain.length;\n\n while (i < len) {\n promise = promise.then(responseInterceptorChain[i++], responseInterceptorChain[i++]);\n }\n\n return promise;\n }\n\n getUri(config) {\n config = mergeConfig(this.defaults, config);\n const fullPath = buildFullPath(config.baseURL, config.url);\n return buildURL(fullPath, config.params, config.paramsSerializer);\n }\n}\n\n// Provide aliases for supported request methods\nutils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, config) {\n return this.request(mergeConfig(config || {}, {\n method,\n url,\n data: (config || {}).data\n }));\n };\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n /*eslint func-names:0*/\n\n function generateHTTPMethod(isForm) {\n return function httpMethod(url, data, config) {\n return this.request(mergeConfig(config || {}, {\n method,\n headers: isForm ? {\n 'Content-Type': 'multipart/form-data'\n } : {},\n url,\n data\n }));\n };\n }\n\n Axios.prototype[method] = generateHTTPMethod();\n\n Axios.prototype[method + 'Form'] = generateHTTPMethod(true);\n});\n\nexport default Axios;\n","'use strict';\n\nimport CanceledError from './CanceledError.js';\n\n/**\n * A `CancelToken` is an object that can be used to request cancellation of an operation.\n *\n * @param {Function} executor The executor function.\n *\n * @returns {CancelToken}\n */\nclass CancelToken {\n constructor(executor) {\n if (typeof executor !== 'function') {\n throw new TypeError('executor must be a function.');\n }\n\n let resolvePromise;\n\n this.promise = new Promise(function promiseExecutor(resolve) {\n resolvePromise = resolve;\n });\n\n const token = this;\n\n // eslint-disable-next-line func-names\n this.promise.then(cancel => {\n if (!token._listeners) return;\n\n let i = token._listeners.length;\n\n while (i-- > 0) {\n token._listeners[i](cancel);\n }\n token._listeners = null;\n });\n\n // eslint-disable-next-line func-names\n this.promise.then = onfulfilled => {\n let _resolve;\n // eslint-disable-next-line func-names\n const promise = new Promise(resolve => {\n token.subscribe(resolve);\n _resolve = resolve;\n }).then(onfulfilled);\n\n promise.cancel = function reject() {\n token.unsubscribe(_resolve);\n };\n\n return promise;\n };\n\n executor(function cancel(message, config, request) {\n if (token.reason) {\n // Cancellation has already been requested\n return;\n }\n\n token.reason = new CanceledError(message, config, request);\n resolvePromise(token.reason);\n });\n }\n\n /**\n * Throws a `CanceledError` if cancellation has been requested.\n */\n throwIfRequested() {\n if (this.reason) {\n throw this.reason;\n }\n }\n\n /**\n * Subscribe to the cancel signal\n */\n\n subscribe(listener) {\n if (this.reason) {\n listener(this.reason);\n return;\n }\n\n if (this._listeners) {\n this._listeners.push(listener);\n } else {\n this._listeners = [listener];\n }\n }\n\n /**\n * Unsubscribe from the cancel signal\n */\n\n unsubscribe(listener) {\n if (!this._listeners) {\n return;\n }\n const index = this._listeners.indexOf(listener);\n if (index !== -1) {\n this._listeners.splice(index, 1);\n }\n }\n\n /**\n * Returns an object that contains a new `CancelToken` and a function that, when called,\n * cancels the `CancelToken`.\n */\n static source() {\n let cancel;\n const token = new CancelToken(function executor(c) {\n cancel = c;\n });\n return {\n token,\n cancel\n };\n }\n}\n\nexport default CancelToken;\n","'use strict';\n\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n *\n * @returns {Function}\n */\nexport default function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n}\n","'use strict';\n\nimport utils from './../utils.js';\n\n/**\n * Determines whether the payload is an error thrown by Axios\n *\n * @param {*} payload The value to test\n *\n * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false\n */\nexport default function isAxiosError(payload) {\n return utils.isObject(payload) && (payload.isAxiosError === true);\n}\n","const HttpStatusCode = {\n Continue: 100,\n SwitchingProtocols: 101,\n Processing: 102,\n EarlyHints: 103,\n Ok: 200,\n Created: 201,\n Accepted: 202,\n NonAuthoritativeInformation: 203,\n NoContent: 204,\n ResetContent: 205,\n PartialContent: 206,\n MultiStatus: 207,\n AlreadyReported: 208,\n ImUsed: 226,\n MultipleChoices: 300,\n MovedPermanently: 301,\n Found: 302,\n SeeOther: 303,\n NotModified: 304,\n UseProxy: 305,\n Unused: 306,\n TemporaryRedirect: 307,\n PermanentRedirect: 308,\n BadRequest: 400,\n Unauthorized: 401,\n PaymentRequired: 402,\n Forbidden: 403,\n NotFound: 404,\n MethodNotAllowed: 405,\n NotAcceptable: 406,\n ProxyAuthenticationRequired: 407,\n RequestTimeout: 408,\n Conflict: 409,\n Gone: 410,\n LengthRequired: 411,\n PreconditionFailed: 412,\n PayloadTooLarge: 413,\n UriTooLong: 414,\n UnsupportedMediaType: 415,\n RangeNotSatisfiable: 416,\n ExpectationFailed: 417,\n ImATeapot: 418,\n MisdirectedRequest: 421,\n UnprocessableEntity: 422,\n Locked: 423,\n FailedDependency: 424,\n TooEarly: 425,\n UpgradeRequired: 426,\n PreconditionRequired: 428,\n TooManyRequests: 429,\n RequestHeaderFieldsTooLarge: 431,\n UnavailableForLegalReasons: 451,\n InternalServerError: 500,\n NotImplemented: 501,\n BadGateway: 502,\n ServiceUnavailable: 503,\n GatewayTimeout: 504,\n HttpVersionNotSupported: 505,\n VariantAlsoNegotiates: 506,\n InsufficientStorage: 507,\n LoopDetected: 508,\n NotExtended: 510,\n NetworkAuthenticationRequired: 511,\n};\n\nObject.entries(HttpStatusCode).forEach(([key, value]) => {\n HttpStatusCode[value] = key;\n});\n\nexport default HttpStatusCode;\n","'use strict';\n\nimport utils from './utils.js';\nimport bind from './helpers/bind.js';\nimport Axios from './core/Axios.js';\nimport mergeConfig from './core/mergeConfig.js';\nimport defaults from './defaults/index.js';\nimport formDataToJSON from './helpers/formDataToJSON.js';\nimport CanceledError from './cancel/CanceledError.js';\nimport CancelToken from './cancel/CancelToken.js';\nimport isCancel from './cancel/isCancel.js';\nimport {VERSION} from './env/data.js';\nimport toFormData from './helpers/toFormData.js';\nimport AxiosError from './core/AxiosError.js';\nimport spread from './helpers/spread.js';\nimport isAxiosError from './helpers/isAxiosError.js';\nimport AxiosHeaders from \"./core/AxiosHeaders.js\";\nimport adapters from './adapters/adapters.js';\nimport HttpStatusCode from './helpers/HttpStatusCode.js';\n\n/**\n * Create an instance of Axios\n *\n * @param {Object} defaultConfig The default config for the instance\n *\n * @returns {Axios} A new instance of Axios\n */\nfunction createInstance(defaultConfig) {\n const context = new Axios(defaultConfig);\n const instance = bind(Axios.prototype.request, context);\n\n // Copy axios.prototype to instance\n utils.extend(instance, Axios.prototype, context, {allOwnKeys: true});\n\n // Copy context to instance\n utils.extend(instance, context, null, {allOwnKeys: true});\n\n // Factory for creating new instances\n instance.create = function create(instanceConfig) {\n return createInstance(mergeConfig(defaultConfig, instanceConfig));\n };\n\n return instance;\n}\n\n// Create the default instance to be exported\nconst axios = createInstance(defaults);\n\n// Expose Axios class to allow class inheritance\naxios.Axios = Axios;\n\n// Expose Cancel & CancelToken\naxios.CanceledError = CanceledError;\naxios.CancelToken = CancelToken;\naxios.isCancel = isCancel;\naxios.VERSION = VERSION;\naxios.toFormData = toFormData;\n\n// Expose AxiosError class\naxios.AxiosError = AxiosError;\n\n// alias for CanceledError for backward compatibility\naxios.Cancel = axios.CanceledError;\n\n// Expose all/spread\naxios.all = function all(promises) {\n return Promise.all(promises);\n};\n\naxios.spread = spread;\n\n// Expose isAxiosError\naxios.isAxiosError = isAxiosError;\n\n// Expose mergeConfig\naxios.mergeConfig = mergeConfig;\n\naxios.AxiosHeaders = AxiosHeaders;\n\naxios.formToJSON = thing => formDataToJSON(utils.isHTMLForm(thing) ? new FormData(thing) : thing);\n\naxios.getAdapter = adapters.getAdapter;\n\naxios.HttpStatusCode = HttpStatusCode;\n\naxios.default = axios;\n\n// this module should only have a default export\nexport default axios\n"],"names":["bind","fn","thisArg","wrap","apply","arguments","toString","Object","prototype","getPrototypeOf","kindOf","cache","thing","str","call","slice","toLowerCase","create","kindOfTest","type","typeOfTest","isArray","Array","isUndefined","isBuffer","val","constructor","isFunction","isArrayBuffer","isArrayBufferView","result","ArrayBuffer","isView","buffer","isString","isNumber","isObject","isBoolean","isPlainObject","Symbol","toStringTag","iterator","isDate","isFile","isBlob","isFileList","isStream","pipe","isFormData","kind","FormData","append","isURLSearchParams","trim","replace","forEach","obj","allOwnKeys","i","l","length","keys","getOwnPropertyNames","len","key","findKey","_key","_global","globalThis","self","window","global","isContextDefined","context","merge","caseless","assignValue","targetKey","extend","a","b","stripBOM","content","charCodeAt","inherits","superConstructor","props","descriptors","defineProperty","value","assign","toFlatObject","sourceObj","destObj","filter","propFilter","prop","merged","endsWith","searchString","position","String","undefined","lastIndex","indexOf","toArray","arr","isTypedArray","TypedArray","Uint8Array","forEachEntry","generator","next","done","pair","matchAll","regExp","matches","exec","push","isHTMLForm","toCamelCase","replacer","m","p1","p2","toUpperCase","hasOwnProperty","isRegExp","reduceDescriptors","reducer","getOwnPropertyDescriptors","reducedDescriptors","descriptor","name","ret","defineProperties","freezeMethods","enumerable","writable","set","Error","toObjectSet","arrayOrString","delimiter","define","split","noop","toFiniteNumber","defaultValue","Number","isFinite","ALPHA","DIGIT","ALPHABET","ALPHA_DIGIT","generateString","size","alphabet","Math","random","isSpecCompliantForm","toJSONObject","stack","visit","source","target","reducedValue","isAsyncFn","isThenable","then","hasOwnProp","AxiosError","message","code","config","request","response","captureStackTrace","utils","toJSON","description","number","fileName","lineNumber","columnNumber","status","from","error","customProps","axiosError","cause","isVisitable","removeBrackets","renderKey","path","dots","concat","map","each","token","join","isFlatArray","some","predicates","test","toFormData","formData","options","TypeError","metaTokens","indexes","defined","option","visitor","defaultVisitor","_Blob","Blob","useBlob","convertValue","toISOString","Buffer","JSON","stringify","el","index","exposedHelpers","build","pop","encode","charMap","encodeURIComponent","match","AxiosURLSearchParams","params","_pairs","encoder","_encode","buildURL","url","serializeFn","serialize","serializedParams","hashmarkIndex","InterceptorManager","handlers","fulfilled","rejected","synchronous","runWhen","id","forEachHandler","h","silentJSONParsing","forcedJSONParsing","clarifyTimeoutError","URLSearchParams","isBrowser","classes","protocols","hasBrowserEnv","document","hasStandardBrowserEnv","product","navigator","hasStandardBrowserWebWorkerEnv","WorkerGlobalScope","importScripts","platform","toURLEncodedForm","data","helpers","isNode","parsePropPath","arrayToObject","formDataToJSON","buildPath","isNumericKey","isLast","entries","stringifySafely","rawValue","parser","parse","e","defaults","transitional","transitionalDefaults","adapter","transformRequest","headers","contentType","getContentType","hasJSONContentType","isObjectPayload","setContentType","formSerializer","_FormData","env","transformResponse","JSONRequested","responseType","strictJSONParsing","ERR_BAD_RESPONSE","timeout","xsrfCookieName","xsrfHeaderName","maxContentLength","maxBodyLength","validateStatus","common","method","ignoreDuplicateOf","rawHeaders","parsed","line","substring","$internals","normalizeHeader","header","normalizeValue","parseTokens","tokens","tokensRE","isValidHeaderName","matchHeaderValue","isHeaderNameFilter","formatHeader","w","char","buildAccessors","accessorName","methodName","arg1","arg2","arg3","configurable","AxiosHeaders","valueOrRewrite","rewrite","setHeader","_value","_header","_rewrite","lHeader","setHeaders","parseHeaders","matcher","deleted","deleteHeader","format","normalized","targets","asStrings","first","computed","internals","accessors","defineAccessor","accessor","mapped","get","headerValue","transformData","fns","transform","normalize","isCancel","__CANCEL__","CanceledError","ERR_CANCELED","settle","resolve","reject","ERR_BAD_REQUEST","floor","write","expires","domain","secure","cookie","Date","toGMTString","read","RegExp","decodeURIComponent","remove","now","isAbsoluteURL","combineURLs","baseURL","relativeURL","buildFullPath","requestedURL","standardBrowserEnv","msie","userAgent","urlParsingNode","createElement","originURL","resolveURL","href","setAttribute","protocol","host","search","hash","hostname","port","pathname","charAt","location","isURLSameOrigin","requestURL","nonStandardBrowserEnv","parseProtocol","speedometer","samplesCount","min","bytes","timestamps","head","tail","firstSampleTS","chunkLength","startedAt","bytesCount","passed","round","progressEventReducer","listener","isDownloadStream","bytesNotified","_speedometer","loaded","total","lengthComputable","progressBytes","rate","inRange","progress","estimated","event","isXHRAdapterSupported","XMLHttpRequest","Promise","dispatchXhrRequest","requestData","requestHeaders","withXSRFToken","onCanceled","cancelToken","unsubscribe","signal","removeEventListener","Boolean","auth","username","password","unescape","btoa","fullPath","open","paramsSerializer","onloadend","responseHeaders","getAllResponseHeaders","responseData","responseText","statusText","_resolve","_reject","err","onreadystatechange","handleLoad","readyState","responseURL","setTimeout","onabort","handleAbort","ECONNABORTED","onerror","handleError","ERR_NETWORK","ontimeout","handleTimeout","timeoutErrorMessage","ETIMEDOUT","xsrfValue","cookies","setRequestHeader","withCredentials","onDownloadProgress","addEventListener","onUploadProgress","upload","cancel","abort","subscribe","aborted","send","knownAdapters","http","httpAdapter","xhr","xhrAdapter","renderReason","reason","isResolvedHandle","getAdapter","adapters","nameOrAdapter","rejectedReasons","reasons","state","s","throwIfCancellationRequested","throwIfRequested","dispatchRequest","onAdapterResolution","onAdapterRejection","headersToObject","mergeConfig","config1","config2","getMergedValue","mergeDeepProperties","valueFromConfig2","defaultToConfig2","mergeDirectKeys","mergeMap","timeoutMessage","decompress","beforeRedirect","transport","httpAgent","httpsAgent","socketPath","responseEncoding","computeConfigValue","configValue","VERSION","validators","validator","deprecatedWarnings","version","formatMessage","opt","desc","opts","ERR_DEPRECATED","console","warn","assertOptions","schema","allowUnknown","ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","Axios","instanceConfig","interceptors","configOrUrl","contextHeaders","requestInterceptorChain","synchronousRequestInterceptors","unshiftRequestInterceptors","interceptor","unshift","responseInterceptorChain","pushResponseInterceptors","promise","chain","newConfig","onFulfilled","onRejected","forEachMethodNoData","forEachMethodWithData","generateHTTPMethod","isForm","httpMethod","CancelToken","executor","resolvePromise","promiseExecutor","_listeners","onfulfilled","splice","c","spread","callback","isAxiosError","payload","HttpStatusCode","Continue","SwitchingProtocols","Processing","EarlyHints","Ok","Created","Accepted","NonAuthoritativeInformation","NoContent","ResetContent","PartialContent","MultiStatus","AlreadyReported","ImUsed","MultipleChoices","MovedPermanently","Found","SeeOther","NotModified","UseProxy","Unused","TemporaryRedirect","PermanentRedirect","BadRequest","Unauthorized","PaymentRequired","Forbidden","NotFound","MethodNotAllowed","NotAcceptable","ProxyAuthenticationRequired","RequestTimeout","Conflict","Gone","LengthRequired","PreconditionFailed","PayloadTooLarge","UriTooLong","UnsupportedMediaType","RangeNotSatisfiable","ExpectationFailed","ImATeapot","MisdirectedRequest","UnprocessableEntity","Locked","FailedDependency","TooEarly","UpgradeRequired","PreconditionRequired","TooManyRequests","RequestHeaderFieldsTooLarge","UnavailableForLegalReasons","InternalServerError","NotImplemented","BadGateway","ServiceUnavailable","GatewayTimeout","HttpVersionNotSupported","VariantAlsoNegotiates","InsufficientStorage","LoopDetected","NotExtended","NetworkAuthenticationRequired","createInstance","defaultConfig","instance","axios","Cancel","all","promises","formToJSON"],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).axios=t()}(this,(function(){"use strict";function e(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function t(t){for(var n=1;n<arguments.length;n++){var r=null!=arguments[n]?arguments[n]:{};n%2?e(Object(r),!0).forEach((function(e){a(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):e(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function i(e,t,n){return t&&o(e.prototype,t),n&&o(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e}function a(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function s(e,t){return c(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,o,i=[],a=!0,s=!1;try{for(n=n.call(e);!(a=(r=n.next()).done)&&(i.push(r.value),!t||i.length!==t);a=!0);}catch(e){s=!0,o=e}finally{try{a||null==n.return||n.return()}finally{if(s)throw o}}return i}(e,t)||l(e,t)||p()}function u(e){return function(e){if(Array.isArray(e))return d(e)}(e)||f(e)||l(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function c(e){if(Array.isArray(e))return e}function f(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}function l(e,t){if(e){if("string"==typeof e)return d(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?d(e,t):void 0}}function d(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function p(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function h(e,t){return function(){return e.apply(t,arguments)}}var m,y=Object.prototype.toString,v=Object.getPrototypeOf,b=(m=Object.create(null),function(e){var t=y.call(e);return m[t]||(m[t]=t.slice(8,-1).toLowerCase())}),g=function(e){return e=e.toLowerCase(),function(t){return b(t)===e}},w=function(e){return function(t){return n(t)===e}},O=Array.isArray,E=w("undefined");var S=g("ArrayBuffer");var R=w("string"),A=w("function"),j=w("number"),T=function(e){return null!==e&&"object"===n(e)},P=function(e){if("object"!==b(e))return!1;var t=v(e);return!(null!==t&&t!==Object.prototype&&null!==Object.getPrototypeOf(t)||Symbol.toStringTag in e||Symbol.iterator in e)},N=g("Date"),x=g("File"),C=g("Blob"),k=g("FileList"),_=g("URLSearchParams");function F(e,t){var r,o,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},a=i.allOwnKeys,s=void 0!==a&&a;if(null!=e)if("object"!==n(e)&&(e=[e]),O(e))for(r=0,o=e.length;r<o;r++)t.call(null,e[r],r,e);else{var u,c=s?Object.getOwnPropertyNames(e):Object.keys(e),f=c.length;for(r=0;r<f;r++)u=c[r],t.call(null,e[u],u,e)}}function U(e,t){t=t.toLowerCase();for(var n,r=Object.keys(e),o=r.length;o-- >0;)if(t===(n=r[o]).toLowerCase())return n;return null}var D="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:global,B=function(e){return!E(e)&&e!==D};var L,I=(L="undefined"!=typeof Uint8Array&&v(Uint8Array),function(e){return L&&e instanceof L}),q=g("HTMLFormElement"),z=function(e){var t=Object.prototype.hasOwnProperty;return function(e,n){return t.call(e,n)}}(),M=g("RegExp"),H=function(e,t){var n=Object.getOwnPropertyDescriptors(e),r={};F(n,(function(n,o){var i;!1!==(i=t(n,o,e))&&(r[o]=i||n)})),Object.defineProperties(e,r)},J="abcdefghijklmnopqrstuvwxyz",W="0123456789",K={DIGIT:W,ALPHA:J,ALPHA_DIGIT:J+J.toUpperCase()+W};var V=g("AsyncFunction"),G={isArray:O,isArrayBuffer:S,isBuffer:function(e){return null!==e&&!E(e)&&null!==e.constructor&&!E(e.constructor)&&A(e.constructor.isBuffer)&&e.constructor.isBuffer(e)},isFormData:function(e){var t;return e&&("function"==typeof FormData&&e instanceof FormData||A(e.append)&&("formdata"===(t=b(e))||"object"===t&&A(e.toString)&&"[object FormData]"===e.toString()))},isArrayBufferView:function(e){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(e):e&&e.buffer&&S(e.buffer)},isString:R,isNumber:j,isBoolean:function(e){return!0===e||!1===e},isObject:T,isPlainObject:P,isUndefined:E,isDate:N,isFile:x,isBlob:C,isRegExp:M,isFunction:A,isStream:function(e){return T(e)&&A(e.pipe)},isURLSearchParams:_,isTypedArray:I,isFileList:k,forEach:F,merge:function e(){for(var t=B(this)&&this||{},n=t.caseless,r={},o=function(t,o){var i=n&&U(r,o)||o;P(r[i])&&P(t)?r[i]=e(r[i],t):P(t)?r[i]=e({},t):O(t)?r[i]=t.slice():r[i]=t},i=0,a=arguments.length;i<a;i++)arguments[i]&&F(arguments[i],o);return r},extend:function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},o=r.allOwnKeys;return F(t,(function(t,r){n&&A(t)?e[r]=h(t,n):e[r]=t}),{allOwnKeys:o}),e},trim:function(e){return e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")},stripBOM:function(e){return 65279===e.charCodeAt(0)&&(e=e.slice(1)),e},inherits:function(e,t,n,r){e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},toFlatObject:function(e,t,n,r){var o,i,a,s={};if(t=t||{},null==e)return t;do{for(i=(o=Object.getOwnPropertyNames(e)).length;i-- >0;)a=o[i],r&&!r(a,e,t)||s[a]||(t[a]=e[a],s[a]=!0);e=!1!==n&&v(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},kindOf:b,kindOfTest:g,endsWith:function(e,t,n){e=String(e),(void 0===n||n>e.length)&&(n=e.length),n-=t.length;var r=e.indexOf(t,n);return-1!==r&&r===n},toArray:function(e){if(!e)return null;if(O(e))return e;var t=e.length;if(!j(t))return null;for(var n=new Array(t);t-- >0;)n[t]=e[t];return n},forEachEntry:function(e,t){for(var n,r=(e&&e[Symbol.iterator]).call(e);(n=r.next())&&!n.done;){var o=n.value;t.call(e,o[0],o[1])}},matchAll:function(e,t){for(var n,r=[];null!==(n=e.exec(t));)r.push(n);return r},isHTMLForm:q,hasOwnProperty:z,hasOwnProp:z,reduceDescriptors:H,freezeMethods:function(e){H(e,(function(t,n){if(A(e)&&-1!==["arguments","caller","callee"].indexOf(n))return!1;var r=e[n];A(r)&&(t.enumerable=!1,"writable"in t?t.writable=!1:t.set||(t.set=function(){throw Error("Can not rewrite read-only method '"+n+"'")}))}))},toObjectSet:function(e,t){var n={},r=function(e){e.forEach((function(e){n[e]=!0}))};return O(e)?r(e):r(String(e).split(t)),n},toCamelCase:function(e){return e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,(function(e,t,n){return t.toUpperCase()+n}))},noop:function(){},toFiniteNumber:function(e,t){return e=+e,Number.isFinite(e)?e:t},findKey:U,global:D,isContextDefined:B,ALPHABET:K,generateString:function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:16,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:K.ALPHA_DIGIT,n="",r=t.length;e--;)n+=t[Math.random()*r|0];return n},isSpecCompliantForm:function(e){return!!(e&&A(e.append)&&"FormData"===e[Symbol.toStringTag]&&e[Symbol.iterator])},toJSONObject:function(e){var t=new Array(10);return function e(n,r){if(T(n)){if(t.indexOf(n)>=0)return;if(!("toJSON"in n)){t[r]=n;var o=O(n)?[]:{};return F(n,(function(t,n){var i=e(t,r+1);!E(i)&&(o[n]=i)})),t[r]=void 0,o}}return n}(e,0)},isAsyncFn:V,isThenable:function(e){return e&&(T(e)||A(e))&&A(e.then)&&A(e.catch)}};function X(e,t,n,r,o){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=(new Error).stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),o&&(this.response=o)}G.inherits(X,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:G.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});var $=X.prototype,Q={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach((function(e){Q[e]={value:e}})),Object.defineProperties(X,Q),Object.defineProperty($,"isAxiosError",{value:!0}),X.from=function(e,t,n,r,o,i){var a=Object.create($);return G.toFlatObject(e,a,(function(e){return e!==Error.prototype}),(function(e){return"isAxiosError"!==e})),X.call(a,e.message,t,n,r,o),a.cause=e,a.name=e.name,i&&Object.assign(a,i),a};function Z(e){return G.isPlainObject(e)||G.isArray(e)}function Y(e){return G.endsWith(e,"[]")?e.slice(0,-2):e}function ee(e,t,n){return e?e.concat(t).map((function(e,t){return e=Y(e),!n&&t?"["+e+"]":e})).join(n?".":""):t}var te=G.toFlatObject(G,{},null,(function(e){return/^is[A-Z]/.test(e)}));function ne(e,t,r){if(!G.isObject(e))throw new TypeError("target must be an object");t=t||new FormData;var o=(r=G.toFlatObject(r,{metaTokens:!0,dots:!1,indexes:!1},!1,(function(e,t){return!G.isUndefined(t[e])}))).metaTokens,i=r.visitor||f,a=r.dots,s=r.indexes,u=(r.Blob||"undefined"!=typeof Blob&&Blob)&&G.isSpecCompliantForm(t);if(!G.isFunction(i))throw new TypeError("visitor must be a function");function c(e){if(null===e)return"";if(G.isDate(e))return e.toISOString();if(!u&&G.isBlob(e))throw new X("Blob is not supported. Use a Buffer instead.");return G.isArrayBuffer(e)||G.isTypedArray(e)?u&&"function"==typeof Blob?new Blob([e]):Buffer.from(e):e}function f(e,r,i){var u=e;if(e&&!i&&"object"===n(e))if(G.endsWith(r,"{}"))r=o?r:r.slice(0,-2),e=JSON.stringify(e);else if(G.isArray(e)&&function(e){return G.isArray(e)&&!e.some(Z)}(e)||(G.isFileList(e)||G.endsWith(r,"[]"))&&(u=G.toArray(e)))return r=Y(r),u.forEach((function(e,n){!G.isUndefined(e)&&null!==e&&t.append(!0===s?ee([r],n,a):null===s?r:r+"[]",c(e))})),!1;return!!Z(e)||(t.append(ee(i,r,a),c(e)),!1)}var l=[],d=Object.assign(te,{defaultVisitor:f,convertValue:c,isVisitable:Z});if(!G.isObject(e))throw new TypeError("data must be an object");return function e(n,r){if(!G.isUndefined(n)){if(-1!==l.indexOf(n))throw Error("Circular reference detected in "+r.join("."));l.push(n),G.forEach(n,(function(n,o){!0===(!(G.isUndefined(n)||null===n)&&i.call(t,n,G.isString(o)?o.trim():o,r,d))&&e(n,r?r.concat(o):[o])})),l.pop()}}(e),t}function re(e){var t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,(function(e){return t[e]}))}function oe(e,t){this._pairs=[],e&&ne(e,this,t)}var ie=oe.prototype;function ae(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function se(e,t,n){if(!t)return e;var r,o=n&&n.encode||ae,i=n&&n.serialize;if(r=i?i(t,n):G.isURLSearchParams(t)?t.toString():new oe(t,n).toString(o)){var a=e.indexOf("#");-1!==a&&(e=e.slice(0,a)),e+=(-1===e.indexOf("?")?"?":"&")+r}return e}ie.append=function(e,t){this._pairs.push([e,t])},ie.toString=function(e){var t=e?function(t){return e.call(this,t,re)}:re;return this._pairs.map((function(e){return t(e[0])+"="+t(e[1])}),"").join("&")};var ue,ce=function(){function e(){r(this,e),this.handlers=[]}return i(e,[{key:"use",value:function(e,t,n){return this.handlers.push({fulfilled:e,rejected:t,synchronous:!!n&&n.synchronous,runWhen:n?n.runWhen:null}),this.handlers.length-1}},{key:"eject",value:function(e){this.handlers[e]&&(this.handlers[e]=null)}},{key:"clear",value:function(){this.handlers&&(this.handlers=[])}},{key:"forEach",value:function(e){G.forEach(this.handlers,(function(t){null!==t&&e(t)}))}}]),e}(),fe={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},le={isBrowser:!0,classes:{URLSearchParams:"undefined"!=typeof URLSearchParams?URLSearchParams:oe,FormData:"undefined"!=typeof FormData?FormData:null,Blob:"undefined"!=typeof Blob?Blob:null},protocols:["http","https","file","blob","url","data"]},de="undefined"!=typeof window&&"undefined"!=typeof document,pe=(ue="undefined"!=typeof navigator&&navigator.product,de&&["ReactNative","NativeScript","NS"].indexOf(ue)<0),he="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&"function"==typeof self.importScripts,me=t(t({},Object.freeze({__proto__:null,hasBrowserEnv:de,hasStandardBrowserWebWorkerEnv:he,hasStandardBrowserEnv:pe})),le);function ye(e){function t(e,n,r,o){var i=e[o++];if("__proto__"===i)return!0;var a=Number.isFinite(+i),s=o>=e.length;return i=!i&&G.isArray(r)?r.length:i,s?(G.hasOwnProp(r,i)?r[i]=[r[i],n]:r[i]=n,!a):(r[i]&&G.isObject(r[i])||(r[i]=[]),t(e,n,r[i],o)&&G.isArray(r[i])&&(r[i]=function(e){var t,n,r={},o=Object.keys(e),i=o.length;for(t=0;t<i;t++)r[n=o[t]]=e[n];return r}(r[i])),!a)}if(G.isFormData(e)&&G.isFunction(e.entries)){var n={};return G.forEachEntry(e,(function(e,r){t(function(e){return G.matchAll(/\w+|\[(\w*)]/g,e).map((function(e){return"[]"===e[0]?"":e[1]||e[0]}))}(e),r,n,0)})),n}return null}var ve={transitional:fe,adapter:["xhr","http"],transformRequest:[function(e,t){var n,r=t.getContentType()||"",o=r.indexOf("application/json")>-1,i=G.isObject(e);if(i&&G.isHTMLForm(e)&&(e=new FormData(e)),G.isFormData(e))return o&&o?JSON.stringify(ye(e)):e;if(G.isArrayBuffer(e)||G.isBuffer(e)||G.isStream(e)||G.isFile(e)||G.isBlob(e))return e;if(G.isArrayBufferView(e))return e.buffer;if(G.isURLSearchParams(e))return t.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();if(i){if(r.indexOf("application/x-www-form-urlencoded")>-1)return function(e,t){return ne(e,new me.classes.URLSearchParams,Object.assign({visitor:function(e,t,n,r){return me.isNode&&G.isBuffer(e)?(this.append(t,e.toString("base64")),!1):r.defaultVisitor.apply(this,arguments)}},t))}(e,this.formSerializer).toString();if((n=G.isFileList(e))||r.indexOf("multipart/form-data")>-1){var a=this.env&&this.env.FormData;return ne(n?{"files[]":e}:e,a&&new a,this.formSerializer)}}return i||o?(t.setContentType("application/json",!1),function(e,t,n){if(G.isString(e))try{return(t||JSON.parse)(e),G.trim(e)}catch(e){if("SyntaxError"!==e.name)throw e}return(n||JSON.stringify)(e)}(e)):e}],transformResponse:[function(e){var t=this.transitional||ve.transitional,n=t&&t.forcedJSONParsing,r="json"===this.responseType;if(e&&G.isString(e)&&(n&&!this.responseType||r)){var o=!(t&&t.silentJSONParsing)&&r;try{return JSON.parse(e)}catch(e){if(o){if("SyntaxError"===e.name)throw X.from(e,X.ERR_BAD_RESPONSE,this,null,this.response);throw e}}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:me.classes.FormData,Blob:me.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};G.forEach(["delete","get","head","post","put","patch"],(function(e){ve.headers[e]={}}));var be=ve,ge=G.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),we=Symbol("internals");function Oe(e){return e&&String(e).trim().toLowerCase()}function Ee(e){return!1===e||null==e?e:G.isArray(e)?e.map(Ee):String(e)}function Se(e,t,n,r,o){return G.isFunction(r)?r.call(this,t,n):(o&&(t=n),G.isString(t)?G.isString(r)?-1!==t.indexOf(r):G.isRegExp(r)?r.test(t):void 0:void 0)}var Re=function(e,t){function n(e){r(this,n),e&&this.set(e)}return i(n,[{key:"set",value:function(e,t,n){var r=this;function o(e,t,n){var o=Oe(t);if(!o)throw new Error("header name must be a non-empty string");var i=G.findKey(r,o);(!i||void 0===r[i]||!0===n||void 0===n&&!1!==r[i])&&(r[i||t]=Ee(e))}var i,a,s,u,c,f=function(e,t){return G.forEach(e,(function(e,n){return o(e,n,t)}))};return G.isPlainObject(e)||e instanceof this.constructor?f(e,t):G.isString(e)&&(e=e.trim())&&!/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim())?f((c={},(i=e)&&i.split("\n").forEach((function(e){u=e.indexOf(":"),a=e.substring(0,u).trim().toLowerCase(),s=e.substring(u+1).trim(),!a||c[a]&&ge[a]||("set-cookie"===a?c[a]?c[a].push(s):c[a]=[s]:c[a]=c[a]?c[a]+", "+s:s)})),c),t):null!=e&&o(t,e,n),this}},{key:"get",value:function(e,t){if(e=Oe(e)){var n=G.findKey(this,e);if(n){var r=this[n];if(!t)return r;if(!0===t)return function(e){for(var t,n=Object.create(null),r=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;t=r.exec(e);)n[t[1]]=t[2];return n}(r);if(G.isFunction(t))return t.call(this,r,n);if(G.isRegExp(t))return t.exec(r);throw new TypeError("parser must be boolean|regexp|function")}}}},{key:"has",value:function(e,t){if(e=Oe(e)){var n=G.findKey(this,e);return!(!n||void 0===this[n]||t&&!Se(0,this[n],n,t))}return!1}},{key:"delete",value:function(e,t){var n=this,r=!1;function o(e){if(e=Oe(e)){var o=G.findKey(n,e);!o||t&&!Se(0,n[o],o,t)||(delete n[o],r=!0)}}return G.isArray(e)?e.forEach(o):o(e),r}},{key:"clear",value:function(e){for(var t=Object.keys(this),n=t.length,r=!1;n--;){var o=t[n];e&&!Se(0,this[o],o,e,!0)||(delete this[o],r=!0)}return r}},{key:"normalize",value:function(e){var t=this,n={};return G.forEach(this,(function(r,o){var i=G.findKey(n,o);if(i)return t[i]=Ee(r),void delete t[o];var a=e?function(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(function(e,t,n){return t.toUpperCase()+n}))}(o):String(o).trim();a!==o&&delete t[o],t[a]=Ee(r),n[a]=!0})),this}},{key:"concat",value:function(){for(var e,t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return(e=this.constructor).concat.apply(e,[this].concat(n))}},{key:"toJSON",value:function(e){var t=Object.create(null);return G.forEach(this,(function(n,r){null!=n&&!1!==n&&(t[r]=e&&G.isArray(n)?n.join(", "):n)})),t}},{key:Symbol.iterator,value:function(){return Object.entries(this.toJSON())[Symbol.iterator]()}},{key:"toString",value:function(){return Object.entries(this.toJSON()).map((function(e){var t=s(e,2);return t[0]+": "+t[1]})).join("\n")}},{key:Symbol.toStringTag,get:function(){return"AxiosHeaders"}}],[{key:"from",value:function(e){return e instanceof this?e:new this(e)}},{key:"concat",value:function(e){for(var t=new this(e),n=arguments.length,r=new Array(n>1?n-1:0),o=1;o<n;o++)r[o-1]=arguments[o];return r.forEach((function(e){return t.set(e)})),t}},{key:"accessor",value:function(e){var t=(this[we]=this[we]={accessors:{}}).accessors,n=this.prototype;function r(e){var r=Oe(e);t[r]||(!function(e,t){var n=G.toCamelCase(" "+t);["get","set","has"].forEach((function(r){Object.defineProperty(e,r+n,{value:function(e,n,o){return this[r].call(this,t,e,n,o)},configurable:!0})}))}(n,e),t[r]=!0)}return G.isArray(e)?e.forEach(r):r(e),this}}]),n}();Re.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),G.reduceDescriptors(Re.prototype,(function(e,t){var n=e.value,r=t[0].toUpperCase()+t.slice(1);return{get:function(){return n},set:function(e){this[r]=e}}})),G.freezeMethods(Re);var Ae=Re;function je(e,t){var n=this||be,r=t||n,o=Ae.from(r.headers),i=r.data;return G.forEach(e,(function(e){i=e.call(n,i,o.normalize(),t?t.status:void 0)})),o.normalize(),i}function Te(e){return!(!e||!e.__CANCEL__)}function Pe(e,t,n){X.call(this,null==e?"canceled":e,X.ERR_CANCELED,t,n),this.name="CanceledError"}G.inherits(Pe,X,{__CANCEL__:!0});var Ne=me.hasStandardBrowserEnv?{write:function(e,t,n,r,o,i){var a=[e+"="+encodeURIComponent(t)];G.isNumber(n)&&a.push("expires="+new Date(n).toGMTString()),G.isString(r)&&a.push("path="+r),G.isString(o)&&a.push("domain="+o),!0===i&&a.push("secure"),document.cookie=a.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}};function xe(e,t){return e&&!/^([a-z][a-z\d+\-.]*:)?\/\//i.test(t)?function(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}(e,t):t}var Ce=me.hasStandardBrowserEnv?function(){var e,t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function r(e){var r=e;return t&&(n.setAttribute("href",r),r=n.href),n.setAttribute("href",r),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:"/"===n.pathname.charAt(0)?n.pathname:"/"+n.pathname}}return e=r(window.location.href),function(t){var n=G.isString(t)?r(t):t;return n.protocol===e.protocol&&n.host===e.host}}():function(){return!0};function ke(e,t){var n=0,r=function(e,t){e=e||10;var n,r=new Array(e),o=new Array(e),i=0,a=0;return t=void 0!==t?t:1e3,function(s){var u=Date.now(),c=o[a];n||(n=u),r[i]=s,o[i]=u;for(var f=a,l=0;f!==i;)l+=r[f++],f%=e;if((i=(i+1)%e)===a&&(a=(a+1)%e),!(u-n<t)){var d=c&&u-c;return d?Math.round(1e3*l/d):void 0}}}(50,250);return function(o){var i=o.loaded,a=o.lengthComputable?o.total:void 0,s=i-n,u=r(s);n=i;var c={loaded:i,total:a,progress:a?i/a:void 0,bytes:s,rate:u||void 0,estimated:u&&a&&i<=a?(a-i)/u:void 0,event:o};c[t?"download":"upload"]=!0,e(c)}}var _e={http:null,xhr:"undefined"!=typeof XMLHttpRequest&&function(e){return new Promise((function(t,n){var r,o,i,a=e.data,s=Ae.from(e.headers).normalize(),d=e.responseType,h=e.withXSRFToken;function m(){e.cancelToken&&e.cancelToken.unsubscribe(r),e.signal&&e.signal.removeEventListener("abort",r)}if(G.isFormData(a))if(me.hasStandardBrowserEnv||me.hasStandardBrowserWebWorkerEnv)s.setContentType(!1);else if(!1!==(o=s.getContentType())){var y=o?o.split(";").map((function(e){return e.trim()})).filter(Boolean):[],v=c(i=y)||f(i)||l(i)||p(),b=v[0],g=v.slice(1);s.setContentType([b||"multipart/form-data"].concat(u(g)).join("; "))}var w=new XMLHttpRequest;if(e.auth){var O=e.auth.username||"",E=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";s.set("Authorization","Basic "+btoa(O+":"+E))}var S=xe(e.baseURL,e.url);function R(){if(w){var r=Ae.from("getAllResponseHeaders"in w&&w.getAllResponseHeaders());!function(e,t,n){var r=n.config.validateStatus;n.status&&r&&!r(n.status)?t(new X("Request failed with status code "+n.status,[X.ERR_BAD_REQUEST,X.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n)):e(n)}((function(e){t(e),m()}),(function(e){n(e),m()}),{data:d&&"text"!==d&&"json"!==d?w.response:w.responseText,status:w.status,statusText:w.statusText,headers:r,config:e,request:w}),w=null}}if(w.open(e.method.toUpperCase(),se(S,e.params,e.paramsSerializer),!0),w.timeout=e.timeout,"onloadend"in w?w.onloadend=R:w.onreadystatechange=function(){w&&4===w.readyState&&(0!==w.status||w.responseURL&&0===w.responseURL.indexOf("file:"))&&setTimeout(R)},w.onabort=function(){w&&(n(new X("Request aborted",X.ECONNABORTED,e,w)),w=null)},w.onerror=function(){n(new X("Network Error",X.ERR_NETWORK,e,w)),w=null},w.ontimeout=function(){var t=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded",r=e.transitional||fe;e.timeoutErrorMessage&&(t=e.timeoutErrorMessage),n(new X(t,r.clarifyTimeoutError?X.ETIMEDOUT:X.ECONNABORTED,e,w)),w=null},me.hasStandardBrowserEnv&&(h&&G.isFunction(h)&&(h=h(e)),h||!1!==h&&Ce(S))){var A=e.xsrfHeaderName&&e.xsrfCookieName&&Ne.read(e.xsrfCookieName);A&&s.set(e.xsrfHeaderName,A)}void 0===a&&s.setContentType(null),"setRequestHeader"in w&&G.forEach(s.toJSON(),(function(e,t){w.setRequestHeader(t,e)})),G.isUndefined(e.withCredentials)||(w.withCredentials=!!e.withCredentials),d&&"json"!==d&&(w.responseType=e.responseType),"function"==typeof e.onDownloadProgress&&w.addEventListener("progress",ke(e.onDownloadProgress,!0)),"function"==typeof e.onUploadProgress&&w.upload&&w.upload.addEventListener("progress",ke(e.onUploadProgress)),(e.cancelToken||e.signal)&&(r=function(t){w&&(n(!t||t.type?new Pe(null,e,w):t),w.abort(),w=null)},e.cancelToken&&e.cancelToken.subscribe(r),e.signal&&(e.signal.aborted?r():e.signal.addEventListener("abort",r)));var j,T=(j=/^([-+\w]{1,25})(:?\/\/|:)/.exec(S))&&j[1]||"";T&&-1===me.protocols.indexOf(T)?n(new X("Unsupported protocol "+T+":",X.ERR_BAD_REQUEST,e)):w.send(a||null)}))}};G.forEach(_e,(function(e,t){if(e){try{Object.defineProperty(e,"name",{value:t})}catch(e){}Object.defineProperty(e,"adapterName",{value:t})}}));var Fe=function(e){return"- ".concat(e)},Ue=function(e){return G.isFunction(e)||null===e||!1===e},De=function(e){for(var t,n,r=(e=G.isArray(e)?e:[e]).length,o={},i=0;i<r;i++){var a=void 0;if(n=t=e[i],!Ue(t)&&void 0===(n=_e[(a=String(t)).toLowerCase()]))throw new X("Unknown adapter '".concat(a,"'"));if(n)break;o[a||"#"+i]=n}if(!n){var u=Object.entries(o).map((function(e){var t=s(e,2),n=t[0],r=t[1];return"adapter ".concat(n," ")+(!1===r?"is not supported by the environment":"is not available in the build")}));throw new X("There is no suitable adapter to dispatch the request "+(r?u.length>1?"since :\n"+u.map(Fe).join("\n"):" "+Fe(u[0]):"as no adapter specified"),"ERR_NOT_SUPPORT")}return n};function Be(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new Pe(null,e)}function Le(e){return Be(e),e.headers=Ae.from(e.headers),e.data=je.call(e,e.transformRequest),-1!==["post","put","patch"].indexOf(e.method)&&e.headers.setContentType("application/x-www-form-urlencoded",!1),De(e.adapter||be.adapter)(e).then((function(t){return Be(e),t.data=je.call(e,e.transformResponse,t),t.headers=Ae.from(t.headers),t}),(function(t){return Te(t)||(Be(e),t&&t.response&&(t.response.data=je.call(e,e.transformResponse,t.response),t.response.headers=Ae.from(t.response.headers))),Promise.reject(t)}))}var Ie=function(e){return e instanceof Ae?e.toJSON():e};function qe(e,t){t=t||{};var n={};function r(e,t,n){return G.isPlainObject(e)&&G.isPlainObject(t)?G.merge.call({caseless:n},e,t):G.isPlainObject(t)?G.merge({},t):G.isArray(t)?t.slice():t}function o(e,t,n){return G.isUndefined(t)?G.isUndefined(e)?void 0:r(void 0,e,n):r(e,t,n)}function i(e,t){if(!G.isUndefined(t))return r(void 0,t)}function a(e,t){return G.isUndefined(t)?G.isUndefined(e)?void 0:r(void 0,e):r(void 0,t)}function s(n,o,i){return i in t?r(n,o):i in e?r(void 0,n):void 0}var u={url:i,method:i,data:i,baseURL:a,transformRequest:a,transformResponse:a,paramsSerializer:a,timeout:a,timeoutMessage:a,withCredentials:a,withXSRFToken:a,adapter:a,responseType:a,xsrfCookieName:a,xsrfHeaderName:a,onUploadProgress:a,onDownloadProgress:a,decompress:a,maxContentLength:a,maxBodyLength:a,beforeRedirect:a,transport:a,httpAgent:a,httpsAgent:a,cancelToken:a,socketPath:a,responseEncoding:a,validateStatus:s,headers:function(e,t){return o(Ie(e),Ie(t),!0)}};return G.forEach(Object.keys(Object.assign({},e,t)),(function(r){var i=u[r]||o,a=i(e[r],t[r],r);G.isUndefined(a)&&i!==s||(n[r]=a)})),n}var ze="1.6.5",Me={};["object","boolean","number","function","string","symbol"].forEach((function(e,t){Me[e]=function(r){return n(r)===e||"a"+(t<1?"n ":" ")+e}}));var He={};Me.transitional=function(e,t,n){function r(e,t){return"[Axios v1.6.5] Transitional option '"+e+"'"+t+(n?". "+n:"")}return function(n,o,i){if(!1===e)throw new X(r(o," has been removed"+(t?" in "+t:"")),X.ERR_DEPRECATED);return t&&!He[o]&&(He[o]=!0,console.warn(r(o," has been deprecated since v"+t+" and will be removed in the near future"))),!e||e(n,o,i)}};var Je={assertOptions:function(e,t,r){if("object"!==n(e))throw new X("options must be an object",X.ERR_BAD_OPTION_VALUE);for(var o=Object.keys(e),i=o.length;i-- >0;){var a=o[i],s=t[a];if(s){var u=e[a],c=void 0===u||s(u,a,e);if(!0!==c)throw new X("option "+a+" must be "+c,X.ERR_BAD_OPTION_VALUE)}else if(!0!==r)throw new X("Unknown option "+a,X.ERR_BAD_OPTION)}},validators:Me},We=Je.validators,Ke=function(){function e(t){r(this,e),this.defaults=t,this.interceptors={request:new ce,response:new ce}}return i(e,[{key:"request",value:function(e,t){"string"==typeof e?(t=t||{}).url=e:t=e||{};var n=t=qe(this.defaults,t),r=n.transitional,o=n.paramsSerializer,i=n.headers;void 0!==r&&Je.assertOptions(r,{silentJSONParsing:We.transitional(We.boolean),forcedJSONParsing:We.transitional(We.boolean),clarifyTimeoutError:We.transitional(We.boolean)},!1),null!=o&&(G.isFunction(o)?t.paramsSerializer={serialize:o}:Je.assertOptions(o,{encode:We.function,serialize:We.function},!0)),t.method=(t.method||this.defaults.method||"get").toLowerCase();var a=i&&G.merge(i.common,i[t.method]);i&&G.forEach(["delete","get","head","post","put","patch","common"],(function(e){delete i[e]})),t.headers=Ae.concat(a,i);var s=[],u=!0;this.interceptors.request.forEach((function(e){"function"==typeof e.runWhen&&!1===e.runWhen(t)||(u=u&&e.synchronous,s.unshift(e.fulfilled,e.rejected))}));var c,f=[];this.interceptors.response.forEach((function(e){f.push(e.fulfilled,e.rejected)}));var l,d=0;if(!u){var p=[Le.bind(this),void 0];for(p.unshift.apply(p,s),p.push.apply(p,f),l=p.length,c=Promise.resolve(t);d<l;)c=c.then(p[d++],p[d++]);return c}l=s.length;var h=t;for(d=0;d<l;){var m=s[d++],y=s[d++];try{h=m(h)}catch(e){y.call(this,e);break}}try{c=Le.call(this,h)}catch(e){return Promise.reject(e)}for(d=0,l=f.length;d<l;)c=c.then(f[d++],f[d++]);return c}},{key:"getUri",value:function(e){return se(xe((e=qe(this.defaults,e)).baseURL,e.url),e.params,e.paramsSerializer)}}]),e}();G.forEach(["delete","get","head","options"],(function(e){Ke.prototype[e]=function(t,n){return this.request(qe(n||{},{method:e,url:t,data:(n||{}).data}))}})),G.forEach(["post","put","patch"],(function(e){function t(t){return function(n,r,o){return this.request(qe(o||{},{method:e,headers:t?{"Content-Type":"multipart/form-data"}:{},url:n,data:r}))}}Ke.prototype[e]=t(),Ke.prototype[e+"Form"]=t(!0)}));var Ve=Ke,Ge=function(){function e(t){if(r(this,e),"function"!=typeof t)throw new TypeError("executor must be a function.");var n;this.promise=new Promise((function(e){n=e}));var o=this;this.promise.then((function(e){if(o._listeners){for(var t=o._listeners.length;t-- >0;)o._listeners[t](e);o._listeners=null}})),this.promise.then=function(e){var t,n=new Promise((function(e){o.subscribe(e),t=e})).then(e);return n.cancel=function(){o.unsubscribe(t)},n},t((function(e,t,r){o.reason||(o.reason=new Pe(e,t,r),n(o.reason))}))}return i(e,[{key:"throwIfRequested",value:function(){if(this.reason)throw this.reason}},{key:"subscribe",value:function(e){this.reason?e(this.reason):this._listeners?this._listeners.push(e):this._listeners=[e]}},{key:"unsubscribe",value:function(e){if(this._listeners){var t=this._listeners.indexOf(e);-1!==t&&this._listeners.splice(t,1)}}}],[{key:"source",value:function(){var t;return{token:new e((function(e){t=e})),cancel:t}}}]),e}();var Xe={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Xe).forEach((function(e){var t=s(e,2),n=t[0],r=t[1];Xe[r]=n}));var $e=Xe;var Qe=function e(t){var n=new Ve(t),r=h(Ve.prototype.request,n);return G.extend(r,Ve.prototype,n,{allOwnKeys:!0}),G.extend(r,n,null,{allOwnKeys:!0}),r.create=function(n){return e(qe(t,n))},r}(be);return Qe.Axios=Ve,Qe.CanceledError=Pe,Qe.CancelToken=Ge,Qe.isCancel=Te,Qe.VERSION=ze,Qe.toFormData=ne,Qe.AxiosError=X,Qe.Cancel=Qe.CanceledError,Qe.all=function(e){return Promise.all(e)},Qe.spread=function(e){return function(t){return e.apply(null,t)}},Qe.isAxiosError=function(e){return G.isObject(e)&&!0===e.isAxiosError},Qe.mergeConfig=qe,Qe.AxiosHeaders=Ae,Qe.formToJSON=function(e){return ye(G.isHTMLForm(e)?new FormData(e):e)},Qe.getAdapter=De,Qe.HttpStatusCode=$e,Qe.default=Qe,Qe}));
2
+ //# sourceMappingURL=axios.min.js.map