@aws/lsp-codewhisperer 0.0.14 → 0.0.16

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 (2046) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/README.md +17 -1
  3. package/node_modules/@aws/lsp-fqn/tsconfig.tsbuildinfo +1 -1
  4. package/out/client/sigv4/codewhisperer.js +1 -2
  5. package/out/client/sigv4/codewhisperer.js.map +1 -1
  6. package/out/client/streamingClient/codewhispererStreamingClient.js +2 -2
  7. package/out/client/streamingClient/codewhispererStreamingClient.js.map +1 -1
  8. package/out/client/token/codewhisperer.js +1 -2
  9. package/out/client/token/codewhisperer.js.map +1 -1
  10. package/out/language-server/auto-trigger/autoTrigger.js.map +1 -1
  11. package/out/language-server/chat/chatController.d.ts +1 -0
  12. package/out/language-server/chat/chatController.js +18 -1
  13. package/out/language-server/chat/chatController.js.map +1 -1
  14. package/out/language-server/chat/chatEventParser.js.map +1 -1
  15. package/out/language-server/chat/chatSessionManagementService.js.map +1 -1
  16. package/out/language-server/chat/chatSessionService.js.map +1 -1
  17. package/out/language-server/chat/constants.d.ts +1 -1
  18. package/out/language-server/chat/contexts/documentContext.js.map +1 -1
  19. package/out/language-server/chat/contexts/documentFqnExtractor.js.map +1 -1
  20. package/out/language-server/chat/contexts/triggerContext.d.ts +1 -1
  21. package/out/language-server/chat/contexts/triggerContext.js +2 -1
  22. package/out/language-server/chat/contexts/triggerContext.js.map +1 -1
  23. package/out/language-server/chat/contexts/utils.js +2 -3
  24. package/out/language-server/chat/contexts/utils.js.map +1 -1
  25. package/out/language-server/chat/quickActions.js +1 -1
  26. package/out/language-server/chat/quickActions.js.map +1 -1
  27. package/out/language-server/chat/telemetry/chatTelemetryController.d.ts +1 -0
  28. package/out/language-server/chat/telemetry/chatTelemetryController.js +51 -26
  29. package/out/language-server/chat/telemetry/chatTelemetryController.js.map +1 -1
  30. package/out/language-server/chat/telemetry/clientTelemetry.js +4 -4
  31. package/out/language-server/chat/telemetry/clientTelemetry.js.map +1 -1
  32. package/out/language-server/chat/utils.js +3 -4
  33. package/out/language-server/chat/utils.js.map +1 -1
  34. package/out/language-server/codeWhispererSecurityScanServer.js.map +1 -1
  35. package/out/language-server/codeWhispererServer.js +55 -37
  36. package/out/language-server/codeWhispererServer.js.map +1 -1
  37. package/out/language-server/codeWhispererServer.test.js +62 -0
  38. package/out/language-server/codeWhispererServer.test.js.map +1 -1
  39. package/out/language-server/codeWhispererService.d.ts +5 -0
  40. package/out/language-server/codeWhispererService.js +11 -0
  41. package/out/language-server/codeWhispererService.js.map +1 -1
  42. package/out/language-server/configuration/qConfigurationServer.d.ts +4 -0
  43. package/out/language-server/configuration/qConfigurationServer.js +31 -0
  44. package/out/language-server/configuration/qConfigurationServer.js.map +1 -0
  45. package/out/language-server/dependencyGraph/commonUtil.js +2 -3
  46. package/out/language-server/dependencyGraph/commonUtil.js.map +1 -1
  47. package/out/language-server/dependencyGraph/csharpDependencyGraph.js.map +1 -1
  48. package/out/language-server/dependencyGraph/csharpDependencyGraph.test.js +1 -0
  49. package/out/language-server/dependencyGraph/csharpDependencyGraph.test.js.map +1 -1
  50. package/out/language-server/dependencyGraph/dependencyGraph.d.ts +0 -1
  51. package/out/language-server/dependencyGraph/dependencyGraph.js.map +1 -1
  52. package/out/language-server/dependencyGraph/dependencyGraphFactory.js.map +1 -1
  53. package/out/language-server/dependencyGraph/gitIgnoreFilter.js +1 -1
  54. package/out/language-server/dependencyGraph/gitIgnoreFilter.js.map +1 -1
  55. package/out/language-server/languageDetection.js +10 -0
  56. package/out/language-server/languageDetection.js.map +1 -1
  57. package/out/language-server/languageDetection.test.js.map +1 -1
  58. package/out/language-server/mergeRightUtils.js +2 -3
  59. package/out/language-server/mergeRightUtils.js.map +1 -1
  60. package/out/language-server/models/constants.d.ts +15 -0
  61. package/out/language-server/models/constants.js +22 -0
  62. package/out/language-server/models/constants.js.map +1 -0
  63. package/out/language-server/models/model.d.ts +16 -0
  64. package/out/language-server/models/model.js +5 -0
  65. package/out/language-server/models/model.js.map +1 -0
  66. package/out/language-server/netTransform/artifactManager.d.ts +3 -5
  67. package/out/language-server/netTransform/artifactManager.js +42 -42
  68. package/out/language-server/netTransform/artifactManager.js.map +1 -1
  69. package/out/language-server/netTransform/converter.js +4 -4
  70. package/out/language-server/netTransform/converter.js.map +1 -1
  71. package/out/language-server/netTransform/metrics.js.map +1 -1
  72. package/out/language-server/netTransform/models.d.ts +1 -0
  73. package/out/language-server/netTransform/models.js +2 -2
  74. package/out/language-server/netTransform/models.js.map +1 -1
  75. package/out/language-server/netTransform/tests/converter.test.js.map +1 -1
  76. package/out/language-server/netTransform/tests/transformHandler.test.js.map +1 -1
  77. package/out/language-server/netTransform/transformHandler.d.ts +2 -1
  78. package/out/language-server/netTransform/transformHandler.js +26 -8
  79. package/out/language-server/netTransform/transformHandler.js.map +1 -1
  80. package/out/language-server/netTransform/validation.js +9 -10
  81. package/out/language-server/netTransform/validation.js.map +1 -1
  82. package/out/language-server/netTransformServer.js.map +1 -1
  83. package/out/language-server/proxy-server.d.ts +1 -0
  84. package/out/language-server/proxy-server.js +18 -1
  85. package/out/language-server/proxy-server.js.map +1 -1
  86. package/out/language-server/qChatServer.js +2 -0
  87. package/out/language-server/qChatServer.js.map +1 -1
  88. package/out/language-server/securityScan/securityScanDiagnosticsProvider.js.map +1 -1
  89. package/out/language-server/securityScan/securityScanHandler.d.ts +0 -1
  90. package/out/language-server/securityScan/securityScanHandler.js.map +1 -1
  91. package/out/language-server/session/sessionManager.d.ts +5 -0
  92. package/out/language-server/session/sessionManager.js +4 -0
  93. package/out/language-server/session/sessionManager.js.map +1 -1
  94. package/out/language-server/session/sessionManager.test.js +2 -2
  95. package/out/language-server/session/sessionManager.test.js.map +1 -1
  96. package/out/language-server/telemetry/codeDiffTracker.d.ts +1 -0
  97. package/out/language-server/telemetry/codeDiffTracker.js +6 -4
  98. package/out/language-server/telemetry/codeDiffTracker.js.map +1 -1
  99. package/out/language-server/telemetry/codeDiffTracker.test.js.map +1 -1
  100. package/out/language-server/telemetry/codePercentage.js.map +1 -1
  101. package/out/language-server/telemetry/types.d.ts +15 -0
  102. package/out/language-server/telemetry/types.js +2 -2
  103. package/out/language-server/telemetry/types.js.map +1 -1
  104. package/out/language-server/telemetry/userTriggerDecision.test.js +20 -17
  105. package/out/language-server/telemetry/userTriggerDecision.test.js.map +1 -1
  106. package/out/language-server/testUtils.d.ts +6 -0
  107. package/out/language-server/testUtils.js +74 -1
  108. package/out/language-server/testUtils.js.map +1 -1
  109. package/out/language-server/utilities/filesystemUtilities.d.ts +8 -0
  110. package/out/language-server/utilities/filesystemUtilities.js +30 -0
  111. package/out/language-server/utilities/filesystemUtilities.js.map +1 -0
  112. package/out/language-server/utilities/filesystemUtilities.test.js +85 -0
  113. package/out/language-server/utilities/filesystemUtilities.test.js.map +1 -0
  114. package/out/language-server/{pathUtils.d.ts → utilities/pathUtils.d.ts} +10 -0
  115. package/out/language-server/{pathUtils.js → utilities/pathUtils.js} +31 -4
  116. package/out/language-server/utilities/pathUtils.js.map +1 -0
  117. package/out/language-server/utilities/pathUtils.test.js +43 -0
  118. package/out/language-server/utilities/pathUtils.test.js.map +1 -0
  119. package/out/language-server/utilities/supplementalContextUtil/codeParsingUtil.d.ts +13 -0
  120. package/out/language-server/utilities/supplementalContextUtil/codeParsingUtil.js +48 -0
  121. package/out/language-server/utilities/supplementalContextUtil/codeParsingUtil.js.map +1 -0
  122. package/out/language-server/utilities/supplementalContextUtil/codeParsingUtil.test.d.ts +5 -0
  123. package/out/language-server/utilities/supplementalContextUtil/codeParsingUtil.test.js +49 -0
  124. package/out/language-server/utilities/supplementalContextUtil/codeParsingUtil.test.js.map +1 -0
  125. package/out/language-server/utilities/supplementalContextUtil/crossFileContextUtil.d.ts +18 -0
  126. package/out/language-server/utilities/supplementalContextUtil/crossFileContextUtil.js +205 -0
  127. package/out/language-server/utilities/supplementalContextUtil/crossFileContextUtil.js.map +1 -0
  128. package/out/language-server/utilities/supplementalContextUtil/crossFileContextUtil.test.js +157 -0
  129. package/out/language-server/utilities/supplementalContextUtil/crossFileContextUtil.test.js.map +1 -0
  130. package/out/language-server/utilities/supplementalContextUtil/rankBm25.d.ts +32 -0
  131. package/out/language-server/utilities/supplementalContextUtil/rankBm25.js +113 -0
  132. package/out/language-server/utilities/supplementalContextUtil/rankBm25.js.map +1 -0
  133. package/out/language-server/utilities/supplementalContextUtil/supplementalContextUtil.d.ts +5 -0
  134. package/out/language-server/utilities/supplementalContextUtil/supplementalContextUtil.js +57 -0
  135. package/out/language-server/utilities/supplementalContextUtil/supplementalContextUtil.js.map +1 -0
  136. package/out/language-server/utilities/supplementalContextUtil/supplementalContextUtil.test.js +88 -0
  137. package/out/language-server/utilities/supplementalContextUtil/supplementalContextUtil.test.js.map +1 -0
  138. package/out/language-server/utilities/textUtils.d.ts +1 -0
  139. package/out/language-server/utilities/textUtils.js +12 -0
  140. package/out/language-server/utilities/textUtils.js.map +1 -0
  141. package/out/language-server/utilities/textUtils.test.js +21 -0
  142. package/out/language-server/utilities/textUtils.test.js.map +1 -0
  143. package/out/language-server/utils.js +8 -8
  144. package/out/language-server/utils.js.map +1 -1
  145. package/package.json +5 -4
  146. package/node_modules/@aws-crypto/crc32/CHANGELOG.md +0 -76
  147. package/node_modules/@aws-crypto/crc32/LICENSE +0 -201
  148. package/node_modules/@aws-crypto/crc32/README.md +0 -16
  149. package/node_modules/@aws-crypto/crc32/build/aws_crc32.d.ts +0 -7
  150. package/node_modules/@aws-crypto/crc32/build/aws_crc32.js +0 -31
  151. package/node_modules/@aws-crypto/crc32/build/aws_crc32.js.map +0 -1
  152. package/node_modules/@aws-crypto/crc32/build/index.d.ts +0 -7
  153. package/node_modules/@aws-crypto/crc32/build/index.js +0 -108
  154. package/node_modules/@aws-crypto/crc32/build/index.js.map +0 -1
  155. package/node_modules/@aws-crypto/crc32/node_modules/tslib/CopyrightNotice.txt +0 -15
  156. package/node_modules/@aws-crypto/crc32/node_modules/tslib/LICENSE.txt +0 -12
  157. package/node_modules/@aws-crypto/crc32/node_modules/tslib/README.md +0 -142
  158. package/node_modules/@aws-crypto/crc32/node_modules/tslib/modules/index.js +0 -51
  159. package/node_modules/@aws-crypto/crc32/node_modules/tslib/modules/package.json +0 -3
  160. package/node_modules/@aws-crypto/crc32/node_modules/tslib/package.json +0 -37
  161. package/node_modules/@aws-crypto/crc32/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +0 -23
  162. package/node_modules/@aws-crypto/crc32/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +0 -6
  163. package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.d.ts +0 -37
  164. package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.es6.html +0 -1
  165. package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.es6.js +0 -218
  166. package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.html +0 -1
  167. package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.js +0 -284
  168. package/node_modules/@aws-crypto/crc32/package.json +0 -28
  169. package/node_modules/@aws-crypto/crc32/src/aws_crc32.ts +0 -24
  170. package/node_modules/@aws-crypto/crc32/src/index.ts +0 -92
  171. package/node_modules/@aws-crypto/crc32/tsconfig.json +0 -23
  172. package/node_modules/@aws-crypto/ie11-detection/CHANGELOG.md +0 -46
  173. package/node_modules/@aws-crypto/ie11-detection/LICENSE +0 -202
  174. package/node_modules/@aws-crypto/ie11-detection/README.md +0 -20
  175. package/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.d.ts +0 -19
  176. package/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js +0 -3
  177. package/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js.map +0 -1
  178. package/node_modules/@aws-crypto/ie11-detection/build/Key.d.ts +0 -12
  179. package/node_modules/@aws-crypto/ie11-detection/build/Key.js +0 -3
  180. package/node_modules/@aws-crypto/ie11-detection/build/Key.js.map +0 -1
  181. package/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.d.ts +0 -12
  182. package/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js +0 -3
  183. package/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js.map +0 -1
  184. package/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.d.ts +0 -33
  185. package/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js +0 -3
  186. package/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js.map +0 -1
  187. package/node_modules/@aws-crypto/ie11-detection/build/MsWindow.d.ts +0 -21
  188. package/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js +0 -32
  189. package/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js.map +0 -1
  190. package/node_modules/@aws-crypto/ie11-detection/build/index.d.ts +0 -5
  191. package/node_modules/@aws-crypto/ie11-detection/build/index.js +0 -9
  192. package/node_modules/@aws-crypto/ie11-detection/build/index.js.map +0 -1
  193. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/CopyrightNotice.txt +0 -15
  194. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/LICENSE.txt +0 -12
  195. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/README.md +0 -142
  196. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/modules/index.js +0 -51
  197. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/modules/package.json +0 -3
  198. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/package.json +0 -37
  199. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +0 -23
  200. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +0 -6
  201. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.d.ts +0 -37
  202. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.html +0 -1
  203. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.js +0 -218
  204. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.html +0 -1
  205. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.js +0 -284
  206. package/node_modules/@aws-crypto/ie11-detection/package.json +0 -26
  207. package/node_modules/@aws-crypto/ie11-detection/src/CryptoOperation.ts +0 -21
  208. package/node_modules/@aws-crypto/ie11-detection/src/Key.ts +0 -12
  209. package/node_modules/@aws-crypto/ie11-detection/src/KeyOperation.ts +0 -13
  210. package/node_modules/@aws-crypto/ie11-detection/src/MsSubtleCrypto.ts +0 -88
  211. package/node_modules/@aws-crypto/ie11-detection/src/MsWindow.ts +0 -59
  212. package/node_modules/@aws-crypto/ie11-detection/src/index.ts +0 -5
  213. package/node_modules/@aws-crypto/ie11-detection/tsconfig.json +0 -17
  214. package/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +0 -88
  215. package/node_modules/@aws-crypto/sha256-browser/LICENSE +0 -202
  216. package/node_modules/@aws-crypto/sha256-browser/README.md +0 -31
  217. package/node_modules/@aws-crypto/sha256-browser/build/constants.d.ts +0 -10
  218. package/node_modules/@aws-crypto/sha256-browser/build/constants.js +0 -43
  219. package/node_modules/@aws-crypto/sha256-browser/build/constants.js.map +0 -1
  220. package/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.d.ts +0 -8
  221. package/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js +0 -35
  222. package/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js.map +0 -1
  223. package/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.d.ts +0 -9
  224. package/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js +0 -80
  225. package/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js.map +0 -1
  226. package/node_modules/@aws-crypto/sha256-browser/build/index.d.ts +0 -3
  227. package/node_modules/@aws-crypto/sha256-browser/build/index.js +0 -10
  228. package/node_modules/@aws-crypto/sha256-browser/build/index.js.map +0 -1
  229. package/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.d.ts +0 -2
  230. package/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js +0 -11
  231. package/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js.map +0 -1
  232. package/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.d.ts +0 -10
  233. package/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js +0 -56
  234. package/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js.map +0 -1
  235. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/CopyrightNotice.txt +0 -15
  236. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/LICENSE.txt +0 -12
  237. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/README.md +0 -142
  238. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/modules/index.js +0 -51
  239. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/modules/package.json +0 -3
  240. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/package.json +0 -37
  241. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +0 -23
  242. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +0 -6
  243. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.d.ts +0 -37
  244. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.html +0 -1
  245. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.js +0 -218
  246. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.html +0 -1
  247. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.js +0 -284
  248. package/node_modules/@aws-crypto/sha256-browser/package.json +0 -33
  249. package/node_modules/@aws-crypto/sha256-browser/src/constants.ts +0 -41
  250. package/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +0 -34
  251. package/node_modules/@aws-crypto/sha256-browser/src/ie11Sha256.ts +0 -108
  252. package/node_modules/@aws-crypto/sha256-browser/src/index.ts +0 -3
  253. package/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +0 -9
  254. package/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +0 -71
  255. package/node_modules/@aws-crypto/sha256-browser/tsconfig.json +0 -22
  256. package/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +0 -86
  257. package/node_modules/@aws-crypto/sha256-js/LICENSE +0 -201
  258. package/node_modules/@aws-crypto/sha256-js/README.md +0 -29
  259. package/node_modules/@aws-crypto/sha256-js/build/RawSha256.d.ts +0 -17
  260. package/node_modules/@aws-crypto/sha256-js/build/RawSha256.js +0 -124
  261. package/node_modules/@aws-crypto/sha256-js/build/RawSha256.js.map +0 -1
  262. package/node_modules/@aws-crypto/sha256-js/build/constants.d.ts +0 -20
  263. package/node_modules/@aws-crypto/sha256-js/build/constants.js +0 -98
  264. package/node_modules/@aws-crypto/sha256-js/build/constants.js.map +0 -1
  265. package/node_modules/@aws-crypto/sha256-js/build/index.d.ts +0 -1
  266. package/node_modules/@aws-crypto/sha256-js/build/index.js +0 -5
  267. package/node_modules/@aws-crypto/sha256-js/build/index.js.map +0 -1
  268. package/node_modules/@aws-crypto/sha256-js/build/jsSha256.d.ts +0 -12
  269. package/node_modules/@aws-crypto/sha256-js/build/jsSha256.js +0 -85
  270. package/node_modules/@aws-crypto/sha256-js/build/jsSha256.js.map +0 -1
  271. package/node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.d.ts +0 -5
  272. package/node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.js +0 -322
  273. package/node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.js.map +0 -1
  274. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/CopyrightNotice.txt +0 -15
  275. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/LICENSE.txt +0 -12
  276. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/README.md +0 -142
  277. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/modules/index.js +0 -51
  278. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/modules/package.json +0 -3
  279. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/package.json +0 -37
  280. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +0 -23
  281. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +0 -6
  282. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.d.ts +0 -37
  283. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.html +0 -1
  284. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js +0 -218
  285. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.html +0 -1
  286. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.js +0 -284
  287. package/node_modules/@aws-crypto/sha256-js/package.json +0 -28
  288. package/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +0 -164
  289. package/node_modules/@aws-crypto/sha256-js/src/constants.ts +0 -98
  290. package/node_modules/@aws-crypto/sha256-js/src/index.ts +0 -1
  291. package/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +0 -94
  292. package/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +0 -401
  293. package/node_modules/@aws-crypto/sha256-js/tsconfig.json +0 -17
  294. package/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +0 -46
  295. package/node_modules/@aws-crypto/supports-web-crypto/LICENSE +0 -202
  296. package/node_modules/@aws-crypto/supports-web-crypto/README.md +0 -32
  297. package/node_modules/@aws-crypto/supports-web-crypto/build/index.d.ts +0 -1
  298. package/node_modules/@aws-crypto/supports-web-crypto/build/index.js +0 -5
  299. package/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.d.ts +0 -4
  300. package/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js +0 -69
  301. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/CopyrightNotice.txt +0 -15
  302. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/LICENSE.txt +0 -12
  303. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/README.md +0 -142
  304. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/modules/index.js +0 -51
  305. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/modules/package.json +0 -3
  306. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/package.json +0 -37
  307. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +0 -23
  308. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +0 -6
  309. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.d.ts +0 -37
  310. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.html +0 -1
  311. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js +0 -218
  312. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.html +0 -1
  313. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.js +0 -284
  314. package/node_modules/@aws-crypto/supports-web-crypto/package.json +0 -26
  315. package/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +0 -1
  316. package/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +0 -76
  317. package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +0 -16
  318. package/node_modules/@aws-crypto/util/CHANGELOG.md +0 -47
  319. package/node_modules/@aws-crypto/util/LICENSE +0 -201
  320. package/node_modules/@aws-crypto/util/README.md +0 -16
  321. package/node_modules/@aws-crypto/util/build/convertToBuffer.d.ts +0 -2
  322. package/node_modules/@aws-crypto/util/build/convertToBuffer.js +0 -24
  323. package/node_modules/@aws-crypto/util/build/convertToBuffer.js.map +0 -1
  324. package/node_modules/@aws-crypto/util/build/index.d.ts +0 -4
  325. package/node_modules/@aws-crypto/util/build/index.js +0 -14
  326. package/node_modules/@aws-crypto/util/build/index.js.map +0 -1
  327. package/node_modules/@aws-crypto/util/build/isEmptyData.d.ts +0 -2
  328. package/node_modules/@aws-crypto/util/build/isEmptyData.js +0 -13
  329. package/node_modules/@aws-crypto/util/build/isEmptyData.js.map +0 -1
  330. package/node_modules/@aws-crypto/util/build/numToUint8.d.ts +0 -1
  331. package/node_modules/@aws-crypto/util/build/numToUint8.js +0 -15
  332. package/node_modules/@aws-crypto/util/build/numToUint8.js.map +0 -1
  333. package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.d.ts +0 -1
  334. package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js +0 -20
  335. package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js.map +0 -1
  336. package/node_modules/@aws-crypto/util/node_modules/tslib/CopyrightNotice.txt +0 -15
  337. package/node_modules/@aws-crypto/util/node_modules/tslib/LICENSE.txt +0 -12
  338. package/node_modules/@aws-crypto/util/node_modules/tslib/README.md +0 -142
  339. package/node_modules/@aws-crypto/util/node_modules/tslib/modules/index.js +0 -51
  340. package/node_modules/@aws-crypto/util/node_modules/tslib/modules/package.json +0 -3
  341. package/node_modules/@aws-crypto/util/node_modules/tslib/package.json +0 -37
  342. package/node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +0 -23
  343. package/node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +0 -6
  344. package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.d.ts +0 -37
  345. package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.html +0 -1
  346. package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.js +0 -218
  347. package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.html +0 -1
  348. package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.js +0 -284
  349. package/node_modules/@aws-crypto/util/package.json +0 -31
  350. package/node_modules/@aws-crypto/util/src/convertToBuffer.ts +0 -30
  351. package/node_modules/@aws-crypto/util/src/index.ts +0 -7
  352. package/node_modules/@aws-crypto/util/src/isEmptyData.ts +0 -12
  353. package/node_modules/@aws-crypto/util/src/numToUint8.ts +0 -11
  354. package/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +0 -16
  355. package/node_modules/@aws-crypto/util/tsconfig.json +0 -23
  356. package/node_modules/@aws-sdk/middleware-host-header/LICENSE +0 -201
  357. package/node_modules/@aws-sdk/middleware-host-header/README.md +0 -4
  358. package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +0 -39
  359. package/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +0 -33
  360. package/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +0 -20
  361. package/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +0 -29
  362. package/node_modules/@aws-sdk/middleware-host-header/package.json +0 -59
  363. package/node_modules/@aws-sdk/middleware-logger/LICENSE +0 -201
  364. package/node_modules/@aws-sdk/middleware-logger/README.md +0 -4
  365. package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +0 -4
  366. package/node_modules/@aws-sdk/middleware-logger/dist-cjs/loggerMiddleware.js +0 -48
  367. package/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +0 -1
  368. package/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +0 -42
  369. package/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +0 -1
  370. package/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +0 -4
  371. package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +0 -1
  372. package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +0 -17
  373. package/node_modules/@aws-sdk/middleware-logger/package.json +0 -60
  374. package/node_modules/@aws-sdk/middleware-token/LICENSE +0 -201
  375. package/node_modules/@aws-sdk/middleware-token/README.md +0 -12
  376. package/node_modules/@aws-sdk/middleware-token/dist-cjs/configurations.js +0 -2
  377. package/node_modules/@aws-sdk/middleware-token/dist-cjs/getTokenPlugin.js +0 -10
  378. package/node_modules/@aws-sdk/middleware-token/dist-cjs/index.js +0 -7
  379. package/node_modules/@aws-sdk/middleware-token/dist-cjs/normalizeTokenProvider.js +0 -14
  380. package/node_modules/@aws-sdk/middleware-token/dist-cjs/resolveTokenConfig.js +0 -10
  381. package/node_modules/@aws-sdk/middleware-token/dist-cjs/tokenDefaultProvider.browser.js +0 -7
  382. package/node_modules/@aws-sdk/middleware-token/dist-cjs/tokenDefaultProvider.js +0 -5
  383. package/node_modules/@aws-sdk/middleware-token/dist-cjs/tokenMiddleware.js +0 -31
  384. package/node_modules/@aws-sdk/middleware-token/dist-es/getTokenPlugin.js +0 -6
  385. package/node_modules/@aws-sdk/middleware-token/dist-es/index.js +0 -4
  386. package/node_modules/@aws-sdk/middleware-token/dist-es/normalizeTokenProvider.js +0 -10
  387. package/node_modules/@aws-sdk/middleware-token/dist-es/resolveTokenConfig.js +0 -6
  388. package/node_modules/@aws-sdk/middleware-token/dist-es/tokenDefaultProvider.browser.js +0 -3
  389. package/node_modules/@aws-sdk/middleware-token/dist-es/tokenDefaultProvider.js +0 -2
  390. package/node_modules/@aws-sdk/middleware-token/dist-es/tokenMiddleware.js +0 -27
  391. package/node_modules/@aws-sdk/middleware-token/dist-types/configurations.d.ts +0 -19
  392. package/node_modules/@aws-sdk/middleware-token/dist-types/getTokenPlugin.d.ts +0 -6
  393. package/node_modules/@aws-sdk/middleware-token/dist-types/index.d.ts +0 -16
  394. package/node_modules/@aws-sdk/middleware-token/dist-types/normalizeTokenProvider.d.ts +0 -6
  395. package/node_modules/@aws-sdk/middleware-token/dist-types/resolveTokenConfig.d.ts +0 -5
  396. package/node_modules/@aws-sdk/middleware-token/dist-types/tokenDefaultProvider.browser.d.ts +0 -4
  397. package/node_modules/@aws-sdk/middleware-token/dist-types/tokenDefaultProvider.d.ts +0 -4
  398. package/node_modules/@aws-sdk/middleware-token/dist-types/tokenMiddleware.d.ts +0 -10
  399. package/node_modules/@aws-sdk/middleware-token/dist-types/ts3.4/configurations.d.ts +0 -7
  400. package/node_modules/@aws-sdk/middleware-token/dist-types/ts3.4/getTokenPlugin.d.ts +0 -5
  401. package/node_modules/@aws-sdk/middleware-token/dist-types/ts3.4/index.d.ts +0 -4
  402. package/node_modules/@aws-sdk/middleware-token/dist-types/ts3.4/normalizeTokenProvider.d.ts +0 -5
  403. package/node_modules/@aws-sdk/middleware-token/dist-types/ts3.4/resolveTokenConfig.d.ts +0 -4
  404. package/node_modules/@aws-sdk/middleware-token/dist-types/ts3.4/tokenDefaultProvider.browser.d.ts +0 -3
  405. package/node_modules/@aws-sdk/middleware-token/dist-types/ts3.4/tokenDefaultProvider.d.ts +0 -3
  406. package/node_modules/@aws-sdk/middleware-token/dist-types/ts3.4/tokenMiddleware.d.ts +0 -12
  407. package/node_modules/@aws-sdk/middleware-token/package.json +0 -75
  408. package/node_modules/@aws-sdk/region-config-resolver/LICENSE +0 -201
  409. package/node_modules/@aws-sdk/region-config-resolver/README.md +0 -12
  410. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/extensions/index.js +0 -30
  411. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +0 -5
  412. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/config.js +0 -15
  413. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/getRealRegion.js +0 -10
  414. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/index.js +0 -5
  415. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/isFipsRegion.js +0 -5
  416. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +0 -29
  417. package/node_modules/@aws-sdk/region-config-resolver/dist-es/extensions/index.js +0 -25
  418. package/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +0 -2
  419. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/config.js +0 -12
  420. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/getRealRegion.js +0 -6
  421. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/index.js +0 -2
  422. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/isFipsRegion.js +0 -1
  423. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/resolveRegionConfig.js +0 -25
  424. package/node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts +0 -16
  425. package/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +0 -2
  426. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/config.d.ts +0 -17
  427. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/getRealRegion.d.ts +0 -4
  428. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/index.d.ts +0 -8
  429. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +0 -4
  430. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +0 -37
  431. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/extensions/index.d.ts +0 -14
  432. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +0 -2
  433. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +0 -8
  434. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +0 -1
  435. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +0 -2
  436. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +0 -1
  437. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +0 -14
  438. package/node_modules/@aws-sdk/region-config-resolver/package.json +0 -61
  439. package/node_modules/@aws-sdk/token-providers/LICENSE +0 -201
  440. package/node_modules/@aws-sdk/token-providers/README.md +0 -53
  441. package/node_modules/@aws-sdk/token-providers/dist-cjs/bundle/client-sso-oidc-browser.js +0 -895
  442. package/node_modules/@aws-sdk/token-providers/dist-cjs/bundle/client-sso-oidc-node.js +0 -901
  443. package/node_modules/@aws-sdk/token-providers/dist-cjs/constants.js +0 -5
  444. package/node_modules/@aws-sdk/token-providers/dist-cjs/fromSso.js +0 -82
  445. package/node_modules/@aws-sdk/token-providers/dist-cjs/fromStatic.js +0 -11
  446. package/node_modules/@aws-sdk/token-providers/dist-cjs/getNewSsoOidcToken.js +0 -15
  447. package/node_modules/@aws-sdk/token-providers/dist-cjs/getSsoOidcClient.js +0 -14
  448. package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +0 -7
  449. package/node_modules/@aws-sdk/token-providers/dist-cjs/nodeProvider.js +0 -9
  450. package/node_modules/@aws-sdk/token-providers/dist-cjs/validateTokenExpiry.js +0 -11
  451. package/node_modules/@aws-sdk/token-providers/dist-cjs/validateTokenKey.js +0 -11
  452. package/node_modules/@aws-sdk/token-providers/dist-cjs/writeSSOTokenToFile.js +0 -12
  453. package/node_modules/@aws-sdk/token-providers/dist-es/bundle/client-sso-oidc-browser.js +0 -872
  454. package/node_modules/@aws-sdk/token-providers/dist-es/bundle/client-sso-oidc-node.js +0 -878
  455. package/node_modules/@aws-sdk/token-providers/dist-es/constants.js +0 -2
  456. package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +0 -78
  457. package/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +0 -7
  458. package/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +0 -11
  459. package/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +0 -10
  460. package/node_modules/@aws-sdk/token-providers/dist-es/index.js +0 -4
  461. package/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +0 -5
  462. package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +0 -7
  463. package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +0 -7
  464. package/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +0 -8
  465. package/node_modules/@aws-sdk/token-providers/dist-types/bundle/client-sso-oidc-browser.d.ts +0 -187
  466. package/node_modules/@aws-sdk/token-providers/dist-types/bundle/client-sso-oidc-node.d.ts +0 -187
  467. package/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +0 -8
  468. package/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +0 -8
  469. package/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +0 -8
  470. package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +0 -5
  471. package/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +0 -5
  472. package/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +0 -4
  473. package/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +0 -18
  474. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/bundle/client-sso-oidc-browser.d.ts +0 -235
  475. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/bundle/client-sso-oidc-node.d.ts +0 -235
  476. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +0 -3
  477. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +0 -4
  478. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +0 -7
  479. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +0 -5
  480. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +0 -1
  481. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +0 -4
  482. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +0 -5
  483. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +0 -2
  484. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +0 -5
  485. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +0 -5
  486. package/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +0 -5
  487. package/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +0 -4
  488. package/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +0 -5
  489. package/node_modules/@aws-sdk/token-providers/package.json +0 -104
  490. package/node_modules/@aws-sdk/util-endpoints/LICENSE +0 -201
  491. package/node_modules/@aws-sdk/util-endpoints/README.md +0 -6
  492. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/debug/debugId.js +0 -4
  493. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/debug/index.js +0 -5
  494. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/debug/toDebugString.js +0 -16
  495. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +0 -7
  496. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/index.js +0 -6
  497. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/isVirtualHostableS3Bucket.js +0 -29
  498. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/parseArn.js +0 -19
  499. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partition.js +0 -49
  500. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +0 -213
  501. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/booleanEquals.js +0 -5
  502. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/getAttr.js +0 -15
  503. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/getAttrPathList.js +0 -29
  504. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/index.js +0 -14
  505. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/isIpAddress.js +0 -6
  506. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/isSet.js +0 -5
  507. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/isValidHostLabel.js +0 -17
  508. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/not.js +0 -5
  509. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/parseURL.js +0 -55
  510. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/stringEquals.js +0 -5
  511. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/substring.js +0 -13
  512. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/uriEncode.js +0 -5
  513. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/resolveEndpoint.js +0 -42
  514. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/EndpointError.js +0 -10
  515. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/EndpointRuleObject.js +0 -2
  516. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/ErrorRuleObject.js +0 -2
  517. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/RuleSetObject.js +0 -2
  518. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/TreeRuleObject.js +0 -2
  519. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/index.js +0 -9
  520. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/shared.js +0 -2
  521. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/callFunction.js +0 -11
  522. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateCondition.js +0 -19
  523. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateConditions.js +0 -27
  524. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateEndpointRule.js +0 -32
  525. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateErrorRule.js +0 -18
  526. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateExpression.js +0 -20
  527. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateRules.js +0 -31
  528. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateTemplate.js +0 -40
  529. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateTreeRule.js +0 -17
  530. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/getEndpointHeaders.js +0 -16
  531. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/getEndpointProperties.js +0 -9
  532. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/getEndpointProperty.js +0 -25
  533. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/getEndpointUrl.js +0 -19
  534. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/getReferenceValue.js +0 -11
  535. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/index.js +0 -4
  536. package/node_modules/@aws-sdk/util-endpoints/dist-es/debug/debugId.js +0 -1
  537. package/node_modules/@aws-sdk/util-endpoints/dist-es/debug/index.js +0 -2
  538. package/node_modules/@aws-sdk/util-endpoints/dist-es/debug/toDebugString.js +0 -12
  539. package/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +0 -4
  540. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +0 -3
  541. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +0 -25
  542. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +0 -15
  543. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +0 -41
  544. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +0 -213
  545. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/booleanEquals.js +0 -1
  546. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/getAttr.js +0 -11
  547. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/getAttrPathList.js +0 -25
  548. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/index.js +0 -10
  549. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +0 -2
  550. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isSet.js +0 -1
  551. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isValidHostLabel.js +0 -13
  552. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/not.js +0 -1
  553. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/parseURL.js +0 -51
  554. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/stringEquals.js +0 -1
  555. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/substring.js +0 -9
  556. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/uriEncode.js +0 -1
  557. package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +0 -37
  558. package/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +0 -6
  559. package/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +0 -6
  560. package/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +0 -1
  561. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/callFunction.js +0 -6
  562. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateCondition.js +0 -14
  563. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateConditions.js +0 -22
  564. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateEndpointRule.js +0 -27
  565. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateErrorRule.js +0 -14
  566. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateExpression.js +0 -16
  567. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateRules.js +0 -27
  568. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateTemplate.js +0 -36
  569. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateTreeRule.js +0 -13
  570. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/getEndpointHeaders.js +0 -12
  571. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/getEndpointProperties.js +0 -5
  572. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/getEndpointProperty.js +0 -21
  573. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/getEndpointUrl.js +0 -15
  574. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/getReferenceValue.js +0 -7
  575. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/index.js +0 -1
  576. package/node_modules/@aws-sdk/util-endpoints/dist-types/debug/debugId.d.ts +0 -1
  577. package/node_modules/@aws-sdk/util-endpoints/dist-types/debug/index.d.ts +0 -2
  578. package/node_modules/@aws-sdk/util-endpoints/dist-types/debug/toDebugString.d.ts +0 -9
  579. package/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +0 -4
  580. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +0 -3
  581. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +0 -5
  582. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +0 -7
  583. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +0 -38
  584. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/booleanEquals.d.ts +0 -5
  585. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/getAttr.d.ts +0 -7
  586. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/getAttrPathList.d.ts +0 -4
  587. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/index.d.ts +0 -10
  588. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +0 -4
  589. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isSet.d.ts +0 -5
  590. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isValidHostLabel.d.ts +0 -7
  591. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/not.d.ts +0 -5
  592. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/parseURL.d.ts +0 -5
  593. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/stringEquals.d.ts +0 -5
  594. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/substring.d.ts +0 -7
  595. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/uriEncode.d.ts +0 -4
  596. package/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +0 -6
  597. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/debug/debugId.d.ts +0 -1
  598. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/debug/index.d.ts +0 -2
  599. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/debug/toDebugString.d.ts +0 -9
  600. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +0 -4
  601. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +0 -3
  602. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +0 -4
  603. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +0 -2
  604. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +0 -28
  605. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/booleanEquals.d.ts +0 -4
  606. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/getAttr.d.ts +0 -11
  607. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/getAttrPathList.d.ts +0 -1
  608. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/index.d.ts +0 -11
  609. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +0 -1
  610. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isSet.d.ts +0 -1
  611. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isValidHostLabel.d.ts +0 -4
  612. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/not.d.ts +0 -1
  613. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/parseURL.d.ts +0 -4
  614. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/stringEquals.d.ts +0 -1
  615. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/substring.d.ts +0 -6
  616. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/uriEncode.d.ts +0 -1
  617. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +0 -6
  618. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +0 -3
  619. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +0 -15
  620. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +0 -7
  621. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +0 -19
  622. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +0 -12
  623. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +0 -6
  624. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +0 -29
  625. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/callFunction.d.ts +0 -5
  626. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateCondition.d.ts +0 -13
  627. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateConditions.d.ts +0 -13
  628. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateEndpointRule.d.ts +0 -6
  629. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateErrorRule.d.ts +0 -5
  630. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateExpression.d.ts +0 -6
  631. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateRules.d.ts +0 -6
  632. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateTemplate.d.ts +0 -5
  633. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateTreeRule.d.ts +0 -6
  634. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/getEndpointHeaders.d.ts +0 -5
  635. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/getEndpointProperties.d.ts +0 -5
  636. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/getEndpointProperty.d.ts +0 -6
  637. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/getEndpointUrl.d.ts +0 -5
  638. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/getReferenceValue.d.ts +0 -5
  639. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/index.d.ts +0 -1
  640. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +0 -3
  641. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +0 -15
  642. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +0 -7
  643. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +0 -19
  644. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +0 -10
  645. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +0 -6
  646. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +0 -25
  647. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/callFunction.d.ts +0 -2
  648. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateCondition.d.ts +0 -8
  649. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateConditions.d.ts +0 -8
  650. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateEndpointRule.d.ts +0 -3
  651. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +0 -2
  652. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateExpression.d.ts +0 -2
  653. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateRules.d.ts +0 -3
  654. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateTemplate.d.ts +0 -2
  655. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateTreeRule.d.ts +0 -3
  656. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +0 -2
  657. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +0 -2
  658. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/getEndpointProperty.d.ts +0 -3
  659. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +0 -2
  660. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/getReferenceValue.d.ts +0 -2
  661. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/index.d.ts +0 -1
  662. package/node_modules/@aws-sdk/util-endpoints/package.json +0 -58
  663. package/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +0 -201
  664. package/node_modules/@aws-sdk/util-user-agent-browser/README.md +0 -10
  665. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +0 -2
  666. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +0 -23
  667. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +0 -17
  668. package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/configurations.js +0 -1
  669. package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +0 -17
  670. package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +0 -13
  671. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +0 -7
  672. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +0 -9
  673. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +0 -9
  674. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +0 -4
  675. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +0 -6
  676. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +0 -6
  677. package/node_modules/@aws-sdk/util-user-agent-browser/package.json +0 -56
  678. package/node_modules/@aws-sdk/util-user-agent-node/LICENSE +0 -201
  679. package/node_modules/@aws-sdk/util-user-agent-node/README.md +0 -10
  680. package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +0 -42
  681. package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/is-crt-available.js +0 -15
  682. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +0 -38
  683. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +0 -11
  684. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +0 -20
  685. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +0 -5
  686. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +0 -12
  687. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +0 -2
  688. package/node_modules/@aws-sdk/util-user-agent-node/package.json +0 -67
  689. package/node_modules/@aws-sdk/util-utf8-browser/LICENSE +0 -201
  690. package/node_modules/@aws-sdk/util-utf8-browser/README.md +0 -8
  691. package/node_modules/@aws-sdk/util-utf8-browser/package.json +0 -50
  692. package/node_modules/@smithy/abort-controller/LICENSE +0 -201
  693. package/node_modules/@smithy/abort-controller/README.md +0 -4
  694. package/node_modules/@smithy/abort-controller/dist-cjs/AbortController.js +0 -1
  695. package/node_modules/@smithy/abort-controller/dist-cjs/AbortSignal.js +0 -1
  696. package/node_modules/@smithy/abort-controller/dist-cjs/index.js +0 -82
  697. package/node_modules/@smithy/abort-controller/dist-es/AbortController.js +0 -9
  698. package/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +0 -20
  699. package/node_modules/@smithy/abort-controller/dist-es/index.js +0 -2
  700. package/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +0 -13
  701. package/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +0 -18
  702. package/node_modules/@smithy/abort-controller/dist-types/index.d.ts +0 -9
  703. package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +0 -13
  704. package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +0 -18
  705. package/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +0 -9
  706. package/node_modules/@smithy/abort-controller/package.json +0 -62
  707. package/node_modules/@smithy/config-resolver/LICENSE +0 -201
  708. package/node_modules/@smithy/config-resolver/README.md +0 -10
  709. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +0 -1
  710. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +0 -1
  711. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/index.js +0 -1
  712. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveCustomEndpointsConfig.js +0 -1
  713. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveEndpointsConfig.js +0 -1
  714. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/utils/getEndpointFromRegion.js +0 -1
  715. package/node_modules/@smithy/config-resolver/dist-cjs/index.js +0 -235
  716. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/config.js +0 -1
  717. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/getRealRegion.js +0 -1
  718. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/index.js +0 -1
  719. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/isFipsRegion.js +0 -1
  720. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +0 -1
  721. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariant.js +0 -1
  722. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariantTag.js +0 -1
  723. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/PartitionHash.js +0 -1
  724. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/RegionHash.js +0 -1
  725. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getHostnameFromVariants.js +0 -1
  726. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getRegionInfo.js +0 -1
  727. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedHostname.js +0 -1
  728. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedPartition.js +0 -1
  729. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedSigningRegion.js +0 -1
  730. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/index.js +0 -1
  731. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +0 -9
  732. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +0 -9
  733. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +0 -4
  734. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +0 -11
  735. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +0 -15
  736. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js +0 -15
  737. package/node_modules/@smithy/config-resolver/dist-es/index.js +0 -3
  738. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/config.js +0 -12
  739. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/getRealRegion.js +0 -6
  740. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +0 -2
  741. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/isFipsRegion.js +0 -1
  742. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +0 -25
  743. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariant.js +0 -1
  744. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariantTag.js +0 -1
  745. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/PartitionHash.js +0 -1
  746. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/RegionHash.js +0 -1
  747. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js +0 -1
  748. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getRegionInfo.js +0 -29
  749. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedHostname.js +0 -5
  750. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedPartition.js +0 -1
  751. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js +0 -12
  752. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +0 -3
  753. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +0 -17
  754. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +0 -17
  755. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +0 -16
  756. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +0 -29
  757. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +0 -51
  758. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +0 -11
  759. package/node_modules/@smithy/config-resolver/dist-types/index.d.ts +0 -12
  760. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +0 -17
  761. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/getRealRegion.d.ts +0 -4
  762. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +0 -8
  763. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +0 -4
  764. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +0 -34
  765. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +0 -10
  766. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +0 -7
  767. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +0 -14
  768. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/RegionHash.d.ts +0 -12
  769. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +0 -12
  770. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +0 -17
  771. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +0 -11
  772. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +0 -11
  773. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +0 -12
  774. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +0 -12
  775. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +0 -17
  776. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +0 -17
  777. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +0 -16
  778. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +0 -29
  779. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +0 -51
  780. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +0 -11
  781. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/index.d.ts +0 -12
  782. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +0 -17
  783. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +0 -4
  784. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +0 -8
  785. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +0 -4
  786. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +0 -34
  787. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +0 -10
  788. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +0 -7
  789. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +0 -14
  790. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +0 -12
  791. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +0 -12
  792. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +0 -17
  793. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +0 -11
  794. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +0 -11
  795. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +0 -12
  796. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +0 -12
  797. package/node_modules/@smithy/config-resolver/package.json +0 -64
  798. package/node_modules/@smithy/credential-provider-imds/LICENSE +0 -201
  799. package/node_modules/@smithy/credential-provider-imds/README.md +0 -11
  800. package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/Endpoint.js +0 -1
  801. package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointConfigOptions.js +0 -1
  802. package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointMode.js +0 -1
  803. package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointModeConfigOptions.js +0 -1
  804. package/node_modules/@smithy/credential-provider-imds/dist-cjs/error/InstanceMetadataV1FallbackError.js +0 -1
  805. package/node_modules/@smithy/credential-provider-imds/dist-cjs/fromContainerMetadata.js +0 -1
  806. package/node_modules/@smithy/credential-provider-imds/dist-cjs/fromInstanceMetadata.js +0 -1
  807. package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +0 -437
  808. package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/ImdsCredentials.js +0 -1
  809. package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/RemoteProviderInit.js +0 -1
  810. package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/httpRequest.js +0 -1
  811. package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/index.js +0 -1
  812. package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/retry.js +0 -1
  813. package/node_modules/@smithy/credential-provider-imds/dist-cjs/types.js +0 -1
  814. package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/getExtendedInstanceMetadataCredentials.js +0 -1
  815. package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/getInstanceMetadataEndpoint.js +0 -1
  816. package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/staticStabilityProvider.js +0 -1
  817. package/node_modules/@smithy/credential-provider-imds/dist-es/config/Endpoint.js +0 -5
  818. package/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointConfigOptions.js +0 -7
  819. package/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointMode.js +0 -5
  820. package/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js +0 -8
  821. package/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +0 -9
  822. package/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +0 -66
  823. package/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js +0 -132
  824. package/node_modules/@smithy/credential-provider-imds/dist-es/index.js +0 -7
  825. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js +0 -12
  826. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js +0 -3
  827. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +0 -36
  828. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/index.js +0 -2
  829. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/retry.js +0 -7
  830. package/node_modules/@smithy/credential-provider-imds/dist-es/types.js +0 -1
  831. package/node_modules/@smithy/credential-provider-imds/dist-es/utils/getExtendedInstanceMetadataCredentials.js +0 -17
  832. package/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +0 -19
  833. package/node_modules/@smithy/credential-provider-imds/dist-es/utils/staticStabilityProvider.js +0 -25
  834. package/node_modules/@smithy/credential-provider-imds/dist-types/config/Endpoint.d.ts +0 -7
  835. package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +0 -13
  836. package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointMode.d.ts +0 -7
  837. package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +0 -13
  838. package/node_modules/@smithy/credential-provider-imds/dist-types/error/InstanceMetadataV1FallbackError.d.ts +0 -12
  839. package/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +0 -21
  840. package/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +0 -10
  841. package/node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts +0 -28
  842. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +0 -18
  843. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/RemoteProviderInit.d.ts +0 -40
  844. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +0 -7
  845. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/index.d.ts +0 -8
  846. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/retry.d.ts +0 -10
  847. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +0 -7
  848. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +0 -13
  849. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +0 -7
  850. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +0 -13
  851. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/error/InstanceMetadataV1FallbackError.d.ts +0 -12
  852. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +0 -21
  853. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +0 -10
  854. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/index.d.ts +0 -28
  855. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +0 -18
  856. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +0 -40
  857. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +0 -6
  858. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +0 -8
  859. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +0 -10
  860. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/types.d.ts +0 -7
  861. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +0 -6
  862. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +0 -21
  863. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +0 -16
  864. package/node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts +0 -7
  865. package/node_modules/@smithy/credential-provider-imds/dist-types/utils/getExtendedInstanceMetadataCredentials.d.ts +0 -6
  866. package/node_modules/@smithy/credential-provider-imds/dist-types/utils/getInstanceMetadataEndpoint.d.ts +0 -21
  867. package/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +0 -16
  868. package/node_modules/@smithy/credential-provider-imds/package.json +0 -70
  869. package/node_modules/@smithy/eventstream-codec/LICENSE +0 -201
  870. package/node_modules/@smithy/eventstream-codec/README.md +0 -4
  871. package/node_modules/@smithy/eventstream-codec/dist-cjs/EventStreamCodec.js +0 -1
  872. package/node_modules/@smithy/eventstream-codec/dist-cjs/HeaderMarshaller.js +0 -1
  873. package/node_modules/@smithy/eventstream-codec/dist-cjs/Int64.js +0 -1
  874. package/node_modules/@smithy/eventstream-codec/dist-cjs/Message.js +0 -1
  875. package/node_modules/@smithy/eventstream-codec/dist-cjs/MessageDecoderStream.js +0 -1
  876. package/node_modules/@smithy/eventstream-codec/dist-cjs/MessageEncoderStream.js +0 -1
  877. package/node_modules/@smithy/eventstream-codec/dist-cjs/SmithyMessageDecoderStream.js +0 -1
  878. package/node_modules/@smithy/eventstream-codec/dist-cjs/SmithyMessageEncoderStream.js +0 -1
  879. package/node_modules/@smithy/eventstream-codec/dist-cjs/TestVectors.fixture.js +0 -1
  880. package/node_modules/@smithy/eventstream-codec/dist-cjs/index.js +0 -468
  881. package/node_modules/@smithy/eventstream-codec/dist-cjs/splitMessage.js +0 -1
  882. package/node_modules/@smithy/eventstream-codec/dist-cjs/vectorTypes.fixture.js +0 -1
  883. package/node_modules/@smithy/eventstream-codec/dist-es/EventStreamCodec.js +0 -62
  884. package/node_modules/@smithy/eventstream-codec/dist-es/HeaderMarshaller.js +0 -182
  885. package/node_modules/@smithy/eventstream-codec/dist-es/Int64.js +0 -43
  886. package/node_modules/@smithy/eventstream-codec/dist-es/Message.js +0 -1
  887. package/node_modules/@smithy/eventstream-codec/dist-es/MessageDecoderStream.js +0 -14
  888. package/node_modules/@smithy/eventstream-codec/dist-es/MessageEncoderStream.js +0 -17
  889. package/node_modules/@smithy/eventstream-codec/dist-es/SmithyMessageDecoderStream.js +0 -16
  890. package/node_modules/@smithy/eventstream-codec/dist-es/SmithyMessageEncoderStream.js +0 -14
  891. package/node_modules/@smithy/eventstream-codec/dist-es/TestVectors.fixture.js +0 -690
  892. package/node_modules/@smithy/eventstream-codec/dist-es/index.js +0 -8
  893. package/node_modules/@smithy/eventstream-codec/dist-es/splitMessage.js +0 -30
  894. package/node_modules/@smithy/eventstream-codec/dist-es/vectorTypes.fixture.js +0 -1
  895. package/node_modules/@smithy/eventstream-codec/dist-types/EventStreamCodec.d.ts +0 -31
  896. package/node_modules/@smithy/eventstream-codec/dist-types/HeaderMarshaller.d.ts +0 -12
  897. package/node_modules/@smithy/eventstream-codec/dist-types/Int64.d.ts +0 -20
  898. package/node_modules/@smithy/eventstream-codec/dist-types/Message.d.ts +0 -26
  899. package/node_modules/@smithy/eventstream-codec/dist-types/MessageDecoderStream.d.ts +0 -17
  900. package/node_modules/@smithy/eventstream-codec/dist-types/MessageEncoderStream.d.ts +0 -18
  901. package/node_modules/@smithy/eventstream-codec/dist-types/SmithyMessageDecoderStream.d.ts +0 -17
  902. package/node_modules/@smithy/eventstream-codec/dist-types/SmithyMessageEncoderStream.d.ts +0 -17
  903. package/node_modules/@smithy/eventstream-codec/dist-types/TestVectors.fixture.d.ts +0 -2
  904. package/node_modules/@smithy/eventstream-codec/dist-types/index.d.ts +0 -8
  905. package/node_modules/@smithy/eventstream-codec/dist-types/splitMessage.d.ts +0 -11
  906. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/EventStreamCodec.d.ts +0 -31
  907. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/HeaderMarshaller.d.ts +0 -12
  908. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/Int64.d.ts +0 -20
  909. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/Message.d.ts +0 -26
  910. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/MessageDecoderStream.d.ts +0 -17
  911. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/MessageEncoderStream.d.ts +0 -18
  912. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/SmithyMessageDecoderStream.d.ts +0 -17
  913. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/SmithyMessageEncoderStream.d.ts +0 -17
  914. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/TestVectors.fixture.d.ts +0 -2
  915. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/index.d.ts +0 -8
  916. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/splitMessage.d.ts +0 -11
  917. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/vectorTypes.fixture.d.ts +0 -12
  918. package/node_modules/@smithy/eventstream-codec/dist-types/vectorTypes.fixture.d.ts +0 -12
  919. package/node_modules/@smithy/eventstream-codec/package.json +0 -61
  920. package/node_modules/@smithy/eventstream-serde-browser/LICENSE +0 -201
  921. package/node_modules/@smithy/eventstream-serde-browser/README.md +0 -10
  922. package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/EventStreamMarshaller.js +0 -1
  923. package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/index.js +0 -103
  924. package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/provider.js +0 -1
  925. package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/utils.js +0 -1
  926. package/node_modules/@smithy/eventstream-serde-browser/dist-es/EventStreamMarshaller.js +0 -19
  927. package/node_modules/@smithy/eventstream-serde-browser/dist-es/index.js +0 -3
  928. package/node_modules/@smithy/eventstream-serde-browser/dist-es/provider.js +0 -2
  929. package/node_modules/@smithy/eventstream-serde-browser/dist-es/utils.js +0 -28
  930. package/node_modules/@smithy/eventstream-serde-browser/dist-types/EventStreamMarshaller.d.ts +0 -47
  931. package/node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts +0 -12
  932. package/node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts +0 -3
  933. package/node_modules/@smithy/eventstream-serde-browser/dist-types/ts3.4/EventStreamMarshaller.d.ts +0 -47
  934. package/node_modules/@smithy/eventstream-serde-browser/dist-types/ts3.4/index.d.ts +0 -12
  935. package/node_modules/@smithy/eventstream-serde-browser/dist-types/ts3.4/provider.d.ts +0 -3
  936. package/node_modules/@smithy/eventstream-serde-browser/dist-types/ts3.4/utils.d.ts +0 -13
  937. package/node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts +0 -13
  938. package/node_modules/@smithy/eventstream-serde-browser/package.json +0 -61
  939. package/node_modules/@smithy/eventstream-serde-node/LICENSE +0 -201
  940. package/node_modules/@smithy/eventstream-serde-node/README.md +0 -10
  941. package/node_modules/@smithy/eventstream-serde-node/dist-cjs/EventStreamMarshaller.js +0 -1
  942. package/node_modules/@smithy/eventstream-serde-node/dist-cjs/index.js +0 -88
  943. package/node_modules/@smithy/eventstream-serde-node/dist-cjs/provider.js +0 -1
  944. package/node_modules/@smithy/eventstream-serde-node/dist-cjs/utils.js +0 -1
  945. package/node_modules/@smithy/eventstream-serde-node/dist-es/EventStreamMarshaller.js +0 -18
  946. package/node_modules/@smithy/eventstream-serde-node/dist-es/index.js +0 -2
  947. package/node_modules/@smithy/eventstream-serde-node/dist-es/provider.js +0 -2
  948. package/node_modules/@smithy/eventstream-serde-node/dist-es/utils.js +0 -26
  949. package/node_modules/@smithy/eventstream-serde-node/dist-types/EventStreamMarshaller.d.ts +0 -24
  950. package/node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts +0 -8
  951. package/node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts +0 -3
  952. package/node_modules/@smithy/eventstream-serde-node/dist-types/ts3.4/EventStreamMarshaller.d.ts +0 -24
  953. package/node_modules/@smithy/eventstream-serde-node/dist-types/ts3.4/index.d.ts +0 -8
  954. package/node_modules/@smithy/eventstream-serde-node/dist-types/ts3.4/provider.d.ts +0 -3
  955. package/node_modules/@smithy/eventstream-serde-node/dist-types/ts3.4/utils.d.ts +0 -13
  956. package/node_modules/@smithy/eventstream-serde-node/dist-types/utils.d.ts +0 -13
  957. package/node_modules/@smithy/eventstream-serde-node/package.json +0 -62
  958. package/node_modules/@smithy/eventstream-serde-universal/LICENSE +0 -201
  959. package/node_modules/@smithy/eventstream-serde-universal/README.md +0 -10
  960. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/EventStreamMarshaller.js +0 -1
  961. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/fixtures/MockEventMessageSource.fixture.js +0 -1
  962. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/fixtures/event.fixture.js +0 -1
  963. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/getChunkedStream.js +0 -1
  964. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/getUnmarshalledStream.js +0 -1
  965. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/index.js +0 -182
  966. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/provider.js +0 -1
  967. package/node_modules/@smithy/eventstream-serde-universal/dist-es/EventStreamMarshaller.js +0 -23
  968. package/node_modules/@smithy/eventstream-serde-universal/dist-es/fixtures/MockEventMessageSource.fixture.js +0 -30
  969. package/node_modules/@smithy/eventstream-serde-universal/dist-es/fixtures/event.fixture.js +0 -4
  970. package/node_modules/@smithy/eventstream-serde-universal/dist-es/getChunkedStream.js +0 -66
  971. package/node_modules/@smithy/eventstream-serde-universal/dist-es/getUnmarshalledStream.js +0 -47
  972. package/node_modules/@smithy/eventstream-serde-universal/dist-es/index.js +0 -2
  973. package/node_modules/@smithy/eventstream-serde-universal/dist-es/provider.js +0 -2
  974. package/node_modules/@smithy/eventstream-serde-universal/dist-types/EventStreamMarshaller.d.ts +0 -23
  975. package/node_modules/@smithy/eventstream-serde-universal/dist-types/fixtures/MockEventMessageSource.fixture.d.ts +0 -22
  976. package/node_modules/@smithy/eventstream-serde-universal/dist-types/fixtures/event.fixture.d.ts +0 -17
  977. package/node_modules/@smithy/eventstream-serde-universal/dist-types/getChunkedStream.d.ts +0 -4
  978. package/node_modules/@smithy/eventstream-serde-universal/dist-types/getUnmarshalledStream.d.ts +0 -18
  979. package/node_modules/@smithy/eventstream-serde-universal/dist-types/index.d.ts +0 -8
  980. package/node_modules/@smithy/eventstream-serde-universal/dist-types/provider.d.ts +0 -3
  981. package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/EventStreamMarshaller.d.ts +0 -23
  982. package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/fixtures/MockEventMessageSource.fixture.d.ts +0 -21
  983. package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/fixtures/event.fixture.d.ts +0 -17
  984. package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/getChunkedStream.d.ts +0 -4
  985. package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/getUnmarshalledStream.d.ts +0 -18
  986. package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/index.d.ts +0 -8
  987. package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/provider.d.ts +0 -3
  988. package/node_modules/@smithy/eventstream-serde-universal/package.json +0 -63
  989. package/node_modules/@smithy/fetch-http-handler/LICENSE +0 -201
  990. package/node_modules/@smithy/fetch-http-handler/README.md +0 -4
  991. package/node_modules/@smithy/fetch-http-handler/dist-cjs/fetch-http-handler.js +0 -1
  992. package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +0 -220
  993. package/node_modules/@smithy/fetch-http-handler/dist-cjs/request-timeout.js +0 -1
  994. package/node_modules/@smithy/fetch-http-handler/dist-cjs/stream-collector.js +0 -1
  995. package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +0 -111
  996. package/node_modules/@smithy/fetch-http-handler/dist-es/index.js +0 -2
  997. package/node_modules/@smithy/fetch-http-handler/dist-es/request-timeout.js +0 -11
  998. package/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +0 -45
  999. package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +0 -33
  1000. package/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +0 -2
  1001. package/node_modules/@smithy/fetch-http-handler/dist-types/request-timeout.d.ts +0 -1
  1002. package/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +0 -2
  1003. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +0 -33
  1004. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +0 -2
  1005. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +0 -1
  1006. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +0 -2
  1007. package/node_modules/@smithy/fetch-http-handler/package.json +0 -79
  1008. package/node_modules/@smithy/hash-node/LICENSE +0 -201
  1009. package/node_modules/@smithy/hash-node/README.md +0 -10
  1010. package/node_modules/@smithy/hash-node/dist-cjs/index.js +0 -66
  1011. package/node_modules/@smithy/hash-node/dist-es/index.js +0 -34
  1012. package/node_modules/@smithy/hash-node/dist-types/index.d.ts +0 -13
  1013. package/node_modules/@smithy/hash-node/dist-types/ts3.4/index.d.ts +0 -13
  1014. package/node_modules/@smithy/hash-node/package.json +0 -64
  1015. package/node_modules/@smithy/invalid-dependency/LICENSE +0 -201
  1016. package/node_modules/@smithy/invalid-dependency/README.md +0 -10
  1017. package/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +0 -41
  1018. package/node_modules/@smithy/invalid-dependency/dist-cjs/invalidFunction.js +0 -1
  1019. package/node_modules/@smithy/invalid-dependency/dist-cjs/invalidProvider.js +0 -1
  1020. package/node_modules/@smithy/invalid-dependency/dist-es/index.js +0 -2
  1021. package/node_modules/@smithy/invalid-dependency/dist-es/invalidFunction.js +0 -3
  1022. package/node_modules/@smithy/invalid-dependency/dist-es/invalidProvider.js +0 -1
  1023. package/node_modules/@smithy/invalid-dependency/dist-types/index.d.ts +0 -8
  1024. package/node_modules/@smithy/invalid-dependency/dist-types/invalidFunction.d.ts +0 -4
  1025. package/node_modules/@smithy/invalid-dependency/dist-types/invalidProvider.d.ts +0 -5
  1026. package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/index.d.ts +0 -8
  1027. package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +0 -4
  1028. package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +0 -5
  1029. package/node_modules/@smithy/invalid-dependency/package.json +0 -57
  1030. package/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
  1031. package/node_modules/@smithy/is-array-buffer/README.md +0 -10
  1032. package/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
  1033. package/node_modules/@smithy/is-array-buffer/dist-es/index.js +0 -2
  1034. package/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +0 -4
  1035. package/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
  1036. package/node_modules/@smithy/is-array-buffer/package.json +0 -60
  1037. package/node_modules/@smithy/middleware-content-length/LICENSE +0 -201
  1038. package/node_modules/@smithy/middleware-content-length/README.md +0 -4
  1039. package/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +0 -71
  1040. package/node_modules/@smithy/middleware-content-length/dist-es/index.js +0 -39
  1041. package/node_modules/@smithy/middleware-content-length/dist-types/index.d.ts +0 -6
  1042. package/node_modules/@smithy/middleware-content-length/dist-types/ts3.4/index.d.ts +0 -6
  1043. package/node_modules/@smithy/middleware-content-length/package.json +0 -63
  1044. package/node_modules/@smithy/middleware-endpoint/LICENSE +0 -201
  1045. package/node_modules/@smithy/middleware-endpoint/README.md +0 -10
  1046. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/createConfigValueProvider.js +0 -1
  1047. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.browser.js +0 -5
  1048. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +0 -7
  1049. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromInstructions.js +0 -1
  1050. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js +0 -35
  1051. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/index.js +0 -1
  1052. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/toEndpointV1.js +0 -1
  1053. package/node_modules/@smithy/middleware-endpoint/dist-cjs/endpointMiddleware.js +0 -1
  1054. package/node_modules/@smithy/middleware-endpoint/dist-cjs/getEndpointPlugin.js +0 -1
  1055. package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +0 -254
  1056. package/node_modules/@smithy/middleware-endpoint/dist-cjs/resolveEndpointConfig.js +0 -1
  1057. package/node_modules/@smithy/middleware-endpoint/dist-cjs/service-customizations/index.js +0 -1
  1058. package/node_modules/@smithy/middleware-endpoint/dist-cjs/service-customizations/s3.js +0 -1
  1059. package/node_modules/@smithy/middleware-endpoint/dist-cjs/types.js +0 -1
  1060. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/createConfigValueProvider.js +0 -32
  1061. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.browser.js +0 -1
  1062. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.js +0 -3
  1063. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +0 -45
  1064. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointUrlConfig.js +0 -31
  1065. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/index.js +0 -2
  1066. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +0 -10
  1067. package/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +0 -32
  1068. package/node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js +0 -18
  1069. package/node_modules/@smithy/middleware-endpoint/dist-es/index.js +0 -5
  1070. package/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointConfig.js +0 -16
  1071. package/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/index.js +0 -1
  1072. package/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/s3.js +0 -37
  1073. package/node_modules/@smithy/middleware-endpoint/dist-es/types.js +0 -1
  1074. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/createConfigValueProvider.d.ts +0 -13
  1075. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.browser.d.ts +0 -1
  1076. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.d.ts +0 -1
  1077. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +0 -28
  1078. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +0 -2
  1079. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts +0 -8
  1080. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +0 -5
  1081. package/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +0 -10
  1082. package/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +0 -11
  1083. package/node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts +0 -17
  1084. package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +0 -93
  1085. package/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/index.d.ts +0 -4
  1086. package/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/s3.d.ts +0 -26
  1087. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/createConfigValueProvider.d.ts +0 -13
  1088. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.browser.d.ts +0 -1
  1089. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.d.ts +0 -1
  1090. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromInstructions.d.ts +0 -28
  1091. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointUrlConfig.d.ts +0 -2
  1092. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/index.d.ts +0 -8
  1093. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/toEndpointV1.d.ts +0 -5
  1094. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/endpointMiddleware.d.ts +0 -10
  1095. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/getEndpointPlugin.d.ts +0 -11
  1096. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/index.d.ts +0 -17
  1097. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +0 -93
  1098. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/index.d.ts +0 -4
  1099. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/s3.d.ts +0 -26
  1100. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/types.d.ts +0 -34
  1101. package/node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts +0 -34
  1102. package/node_modules/@smithy/middleware-endpoint/package.json +0 -73
  1103. package/node_modules/@smithy/middleware-retry/LICENSE +0 -201
  1104. package/node_modules/@smithy/middleware-retry/README.md +0 -11
  1105. package/node_modules/@smithy/middleware-retry/dist-cjs/AdaptiveRetryStrategy.js +0 -1
  1106. package/node_modules/@smithy/middleware-retry/dist-cjs/StandardRetryStrategy.js +0 -1
  1107. package/node_modules/@smithy/middleware-retry/dist-cjs/configurations.js +0 -1
  1108. package/node_modules/@smithy/middleware-retry/dist-cjs/defaultRetryQuota.js +0 -1
  1109. package/node_modules/@smithy/middleware-retry/dist-cjs/delayDecider.js +0 -1
  1110. package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +0 -425
  1111. package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +0 -5
  1112. package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +0 -7
  1113. package/node_modules/@smithy/middleware-retry/dist-cjs/omitRetryHeadersMiddleware.js +0 -1
  1114. package/node_modules/@smithy/middleware-retry/dist-cjs/retryDecider.js +0 -1
  1115. package/node_modules/@smithy/middleware-retry/dist-cjs/retryMiddleware.js +0 -1
  1116. package/node_modules/@smithy/middleware-retry/dist-cjs/types.js +0 -1
  1117. package/node_modules/@smithy/middleware-retry/dist-cjs/util.js +0 -1
  1118. package/node_modules/@smithy/middleware-retry/dist-es/AdaptiveRetryStrategy.js +0 -20
  1119. package/node_modules/@smithy/middleware-retry/dist-es/StandardRetryStrategy.js +0 -90
  1120. package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +0 -52
  1121. package/node_modules/@smithy/middleware-retry/dist-es/defaultRetryQuota.js +0 -27
  1122. package/node_modules/@smithy/middleware-retry/dist-es/delayDecider.js +0 -2
  1123. package/node_modules/@smithy/middleware-retry/dist-es/index.js +0 -7
  1124. package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.browser.js +0 -1
  1125. package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +0 -3
  1126. package/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +0 -22
  1127. package/node_modules/@smithy/middleware-retry/dist-es/retryDecider.js +0 -7
  1128. package/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +0 -112
  1129. package/node_modules/@smithy/middleware-retry/dist-es/types.js +0 -1
  1130. package/node_modules/@smithy/middleware-retry/dist-es/util.js +0 -9
  1131. package/node_modules/@smithy/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +0 -20
  1132. package/node_modules/@smithy/middleware-retry/dist-types/StandardRetryStrategy.d.ts +0 -30
  1133. package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +0 -45
  1134. package/node_modules/@smithy/middleware-retry/dist-types/defaultRetryQuota.d.ts +0 -18
  1135. package/node_modules/@smithy/middleware-retry/dist-types/delayDecider.d.ts +0 -4
  1136. package/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +0 -7
  1137. package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +0 -5
  1138. package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +0 -5
  1139. package/node_modules/@smithy/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +0 -4
  1140. package/node_modules/@smithy/middleware-retry/dist-types/retryDecider.d.ts +0 -5
  1141. package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +0 -6
  1142. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +0 -20
  1143. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +0 -30
  1144. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/configurations.d.ts +0 -45
  1145. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +0 -18
  1146. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +0 -4
  1147. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/index.d.ts +0 -7
  1148. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.browser.d.ts +0 -5
  1149. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.d.ts +0 -5
  1150. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +0 -4
  1151. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +0 -5
  1152. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +0 -6
  1153. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/types.d.ts +0 -53
  1154. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/util.d.ts +0 -2
  1155. package/node_modules/@smithy/middleware-retry/dist-types/types.d.ts +0 -53
  1156. package/node_modules/@smithy/middleware-retry/dist-types/util.d.ts +0 -2
  1157. package/node_modules/@smithy/middleware-retry/package.json +0 -78
  1158. package/node_modules/@smithy/middleware-serde/LICENSE +0 -201
  1159. package/node_modules/@smithy/middleware-serde/README.md +0 -4
  1160. package/node_modules/@smithy/middleware-serde/dist-cjs/deserializerMiddleware.js +0 -1
  1161. package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +0 -102
  1162. package/node_modules/@smithy/middleware-serde/dist-cjs/serdePlugin.js +0 -1
  1163. package/node_modules/@smithy/middleware-serde/dist-cjs/serializerMiddleware.js +0 -1
  1164. package/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +0 -25
  1165. package/node_modules/@smithy/middleware-serde/dist-es/index.js +0 -3
  1166. package/node_modules/@smithy/middleware-serde/dist-es/serdePlugin.js +0 -22
  1167. package/node_modules/@smithy/middleware-serde/dist-es/serializerMiddleware.js +0 -13
  1168. package/node_modules/@smithy/middleware-serde/dist-types/deserializerMiddleware.d.ts +0 -5
  1169. package/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +0 -3
  1170. package/node_modules/@smithy/middleware-serde/dist-types/serdePlugin.d.ts +0 -12
  1171. package/node_modules/@smithy/middleware-serde/dist-types/serializerMiddleware.d.ts +0 -6
  1172. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +0 -5
  1173. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/index.d.ts +0 -3
  1174. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +0 -12
  1175. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +0 -6
  1176. package/node_modules/@smithy/middleware-serde/package.json +0 -62
  1177. package/node_modules/@smithy/middleware-stack/LICENSE +0 -201
  1178. package/node_modules/@smithy/middleware-stack/README.md +0 -78
  1179. package/node_modules/@smithy/middleware-stack/dist-cjs/MiddlewareStack.js +0 -1
  1180. package/node_modules/@smithy/middleware-stack/dist-cjs/index.js +0 -318
  1181. package/node_modules/@smithy/middleware-stack/dist-cjs/types.js +0 -1
  1182. package/node_modules/@smithy/middleware-stack/dist-es/MiddlewareStack.js +0 -281
  1183. package/node_modules/@smithy/middleware-stack/dist-es/index.js +0 -1
  1184. package/node_modules/@smithy/middleware-stack/dist-es/types.js +0 -1
  1185. package/node_modules/@smithy/middleware-stack/dist-types/MiddlewareStack.d.ts +0 -2
  1186. package/node_modules/@smithy/middleware-stack/dist-types/index.d.ts +0 -1
  1187. package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +0 -2
  1188. package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/index.d.ts +0 -1
  1189. package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/types.d.ts +0 -22
  1190. package/node_modules/@smithy/middleware-stack/dist-types/types.d.ts +0 -22
  1191. package/node_modules/@smithy/middleware-stack/package.json +0 -63
  1192. package/node_modules/@smithy/node-config-provider/LICENSE +0 -201
  1193. package/node_modules/@smithy/node-config-provider/README.md +0 -4
  1194. package/node_modules/@smithy/node-config-provider/dist-cjs/configLoader.js +0 -1
  1195. package/node_modules/@smithy/node-config-provider/dist-cjs/fromEnv.js +0 -1
  1196. package/node_modules/@smithy/node-config-provider/dist-cjs/fromSharedConfigFiles.js +0 -1
  1197. package/node_modules/@smithy/node-config-provider/dist-cjs/fromStatic.js +0 -1
  1198. package/node_modules/@smithy/node-config-provider/dist-cjs/index.js +0 -87
  1199. package/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +0 -5
  1200. package/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +0 -13
  1201. package/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +0 -22
  1202. package/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +0 -3
  1203. package/node_modules/@smithy/node-config-provider/dist-es/index.js +0 -1
  1204. package/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +0 -22
  1205. package/node_modules/@smithy/node-config-provider/dist-types/fromEnv.d.ts +0 -7
  1206. package/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +0 -15
  1207. package/node_modules/@smithy/node-config-provider/dist-types/fromStatic.d.ts +0 -3
  1208. package/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +0 -1
  1209. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/configLoader.d.ts +0 -22
  1210. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +0 -7
  1211. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +0 -15
  1212. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +0 -3
  1213. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/index.d.ts +0 -1
  1214. package/node_modules/@smithy/node-config-provider/package.json +0 -65
  1215. package/node_modules/@smithy/node-http-handler/LICENSE +0 -201
  1216. package/node_modules/@smithy/node-http-handler/README.md +0 -4
  1217. package/node_modules/@smithy/node-http-handler/dist-cjs/constants.js +0 -1
  1218. package/node_modules/@smithy/node-http-handler/dist-cjs/get-transformed-headers.js +0 -1
  1219. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +0 -687
  1220. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http-handler.js +0 -1
  1221. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-manager.js +0 -1
  1222. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-pool.js +0 -1
  1223. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-handler.js +0 -1
  1224. package/node_modules/@smithy/node-http-handler/dist-cjs/readable.mock.js +0 -1
  1225. package/node_modules/@smithy/node-http-handler/dist-cjs/server.mock.js +0 -1
  1226. package/node_modules/@smithy/node-http-handler/dist-cjs/set-connection-timeout.js +0 -1
  1227. package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-keep-alive.js +0 -1
  1228. package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-timeout.js +0 -1
  1229. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/collector.js +0 -1
  1230. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/index.js +0 -1
  1231. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/readable.mock.js +0 -1
  1232. package/node_modules/@smithy/node-http-handler/dist-cjs/write-request-body.js +0 -1
  1233. package/node_modules/@smithy/node-http-handler/dist-es/constants.js +0 -1
  1234. package/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +0 -9
  1235. package/node_modules/@smithy/node-http-handler/dist-es/index.js +0 -3
  1236. package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +0 -184
  1237. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +0 -86
  1238. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +0 -32
  1239. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +0 -159
  1240. package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +0 -19
  1241. package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +0 -81
  1242. package/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +0 -21
  1243. package/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +0 -8
  1244. package/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +0 -6
  1245. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +0 -11
  1246. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +0 -14
  1247. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +0 -19
  1248. package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +0 -52
  1249. package/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +0 -5
  1250. package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +0 -4
  1251. package/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +0 -3
  1252. package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +0 -37
  1253. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +0 -22
  1254. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +0 -13
  1255. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +0 -57
  1256. package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +0 -14
  1257. package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +0 -12
  1258. package/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +0 -2
  1259. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +0 -6
  1260. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +0 -2
  1261. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +0 -7
  1262. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +0 -2
  1263. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +0 -14
  1264. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +0 -5
  1265. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +0 -4
  1266. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +0 -3
  1267. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +0 -36
  1268. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +0 -22
  1269. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +0 -13
  1270. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +0 -57
  1271. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +0 -13
  1272. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +0 -12
  1273. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +0 -2
  1274. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +0 -6
  1275. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +0 -2
  1276. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +0 -6
  1277. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +0 -2
  1278. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +0 -13
  1279. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +0 -12
  1280. package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +0 -13
  1281. package/node_modules/@smithy/node-http-handler/package.json +0 -67
  1282. package/node_modules/@smithy/property-provider/LICENSE +0 -201
  1283. package/node_modules/@smithy/property-provider/README.md +0 -10
  1284. package/node_modules/@smithy/property-provider/dist-cjs/CredentialsProviderError.js +0 -1
  1285. package/node_modules/@smithy/property-provider/dist-cjs/ProviderError.js +0 -1
  1286. package/node_modules/@smithy/property-provider/dist-cjs/TokenProviderError.js +0 -1
  1287. package/node_modules/@smithy/property-provider/dist-cjs/chain.js +0 -1
  1288. package/node_modules/@smithy/property-provider/dist-cjs/fromStatic.js +0 -1
  1289. package/node_modules/@smithy/property-provider/dist-cjs/index.js +0 -150
  1290. package/node_modules/@smithy/property-provider/dist-cjs/memoize.js +0 -1
  1291. package/node_modules/@smithy/property-provider/dist-es/CredentialsProviderError.js +0 -9
  1292. package/node_modules/@smithy/property-provider/dist-es/ProviderError.js +0 -11
  1293. package/node_modules/@smithy/property-provider/dist-es/TokenProviderError.js +0 -9
  1294. package/node_modules/@smithy/property-provider/dist-es/chain.js +0 -21
  1295. package/node_modules/@smithy/property-provider/dist-es/fromStatic.js +0 -1
  1296. package/node_modules/@smithy/property-provider/dist-es/index.js +0 -6
  1297. package/node_modules/@smithy/property-provider/dist-es/memoize.js +0 -45
  1298. package/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +0 -17
  1299. package/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +0 -17
  1300. package/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +0 -17
  1301. package/node_modules/@smithy/property-provider/dist-types/chain.d.ts +0 -13
  1302. package/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +0 -5
  1303. package/node_modules/@smithy/property-provider/dist-types/index.d.ts +0 -24
  1304. package/node_modules/@smithy/property-provider/dist-types/memoize.d.ts +0 -40
  1305. package/node_modules/@smithy/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +0 -17
  1306. package/node_modules/@smithy/property-provider/dist-types/ts3.4/ProviderError.d.ts +0 -17
  1307. package/node_modules/@smithy/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +0 -17
  1308. package/node_modules/@smithy/property-provider/dist-types/ts3.4/chain.d.ts +0 -13
  1309. package/node_modules/@smithy/property-provider/dist-types/ts3.4/fromStatic.d.ts +0 -5
  1310. package/node_modules/@smithy/property-provider/dist-types/ts3.4/index.d.ts +0 -24
  1311. package/node_modules/@smithy/property-provider/dist-types/ts3.4/memoize.d.ts +0 -40
  1312. package/node_modules/@smithy/property-provider/package.json +0 -60
  1313. package/node_modules/@smithy/protocol-http/LICENSE +0 -201
  1314. package/node_modules/@smithy/protocol-http/README.md +0 -4
  1315. package/node_modules/@smithy/protocol-http/dist-cjs/Field.js +0 -1
  1316. package/node_modules/@smithy/protocol-http/dist-cjs/Fields.js +0 -1
  1317. package/node_modules/@smithy/protocol-http/dist-cjs/extensions/httpExtensionConfiguration.js +0 -1
  1318. package/node_modules/@smithy/protocol-http/dist-cjs/extensions/index.js +0 -1
  1319. package/node_modules/@smithy/protocol-http/dist-cjs/httpHandler.js +0 -1
  1320. package/node_modules/@smithy/protocol-http/dist-cjs/httpRequest.js +0 -1
  1321. package/node_modules/@smithy/protocol-http/dist-cjs/httpResponse.js +0 -1
  1322. package/node_modules/@smithy/protocol-http/dist-cjs/index.js +0 -237
  1323. package/node_modules/@smithy/protocol-http/dist-cjs/isValidHostname.js +0 -1
  1324. package/node_modules/@smithy/protocol-http/dist-cjs/types.js +0 -1
  1325. package/node_modules/@smithy/protocol-http/dist-es/Field.js +0 -23
  1326. package/node_modules/@smithy/protocol-http/dist-es/Fields.js +0 -19
  1327. package/node_modules/@smithy/protocol-http/dist-es/extensions/httpExtensionConfiguration.js +0 -22
  1328. package/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +0 -1
  1329. package/node_modules/@smithy/protocol-http/dist-es/httpHandler.js +0 -1
  1330. package/node_modules/@smithy/protocol-http/dist-es/httpRequest.js +0 -48
  1331. package/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +0 -14
  1332. package/node_modules/@smithy/protocol-http/dist-es/index.js +0 -8
  1333. package/node_modules/@smithy/protocol-http/dist-es/isValidHostname.js +0 -4
  1334. package/node_modules/@smithy/protocol-http/dist-es/types.js +0 -1
  1335. package/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +0 -49
  1336. package/node_modules/@smithy/protocol-http/dist-types/Fields.d.ts +0 -44
  1337. package/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +0 -37
  1338. package/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +0 -1
  1339. package/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +0 -37
  1340. package/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +0 -23
  1341. package/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +0 -16
  1342. package/node_modules/@smithy/protocol-http/dist-types/index.d.ts +0 -8
  1343. package/node_modules/@smithy/protocol-http/dist-types/isValidHostname.d.ts +0 -1
  1344. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +0 -49
  1345. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/Fields.d.ts +0 -44
  1346. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/httpExtensionConfiguration.d.ts +0 -37
  1347. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/index.d.ts +0 -1
  1348. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpHandler.d.ts +0 -37
  1349. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +0 -23
  1350. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpResponse.d.ts +0 -16
  1351. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/index.d.ts +0 -8
  1352. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +0 -1
  1353. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/types.d.ts +0 -21
  1354. package/node_modules/@smithy/protocol-http/dist-types/types.d.ts +0 -21
  1355. package/node_modules/@smithy/protocol-http/package.json +0 -61
  1356. package/node_modules/@smithy/querystring-builder/LICENSE +0 -201
  1357. package/node_modules/@smithy/querystring-builder/README.md +0 -10
  1358. package/node_modules/@smithy/querystring-builder/dist-cjs/index.js +0 -52
  1359. package/node_modules/@smithy/querystring-builder/dist-es/index.js +0 -21
  1360. package/node_modules/@smithy/querystring-builder/dist-types/index.d.ts +0 -5
  1361. package/node_modules/@smithy/querystring-builder/dist-types/ts3.4/index.d.ts +0 -5
  1362. package/node_modules/@smithy/querystring-builder/package.json +0 -61
  1363. package/node_modules/@smithy/querystring-parser/LICENSE +0 -201
  1364. package/node_modules/@smithy/querystring-parser/README.md +0 -10
  1365. package/node_modules/@smithy/querystring-parser/dist-cjs/index.js +0 -53
  1366. package/node_modules/@smithy/querystring-parser/dist-es/index.js +0 -23
  1367. package/node_modules/@smithy/querystring-parser/dist-types/index.d.ts +0 -5
  1368. package/node_modules/@smithy/querystring-parser/dist-types/ts3.4/index.d.ts +0 -5
  1369. package/node_modules/@smithy/querystring-parser/package.json +0 -60
  1370. package/node_modules/@smithy/service-error-classification/LICENSE +0 -201
  1371. package/node_modules/@smithy/service-error-classification/README.md +0 -4
  1372. package/node_modules/@smithy/service-error-classification/dist-cjs/constants.js +0 -1
  1373. package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +0 -98
  1374. package/node_modules/@smithy/service-error-classification/dist-es/constants.js +0 -27
  1375. package/node_modules/@smithy/service-error-classification/dist-es/index.js +0 -21
  1376. package/node_modules/@smithy/service-error-classification/dist-types/constants.d.ts +0 -26
  1377. package/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +0 -19
  1378. package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/constants.d.ts +0 -26
  1379. package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/index.d.ts +0 -19
  1380. package/node_modules/@smithy/service-error-classification/package.json +0 -59
  1381. package/node_modules/@smithy/shared-ini-file-loader/LICENSE +0 -201
  1382. package/node_modules/@smithy/shared-ini-file-loader/README.md +0 -105
  1383. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getConfigData.js +0 -1
  1384. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getConfigFilepath.js +0 -1
  1385. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getCredentialsFilepath.js +0 -1
  1386. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js +0 -26
  1387. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getProfileName.js +0 -1
  1388. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +0 -12
  1389. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +0 -12
  1390. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSsoSessionData.js +0 -1
  1391. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +0 -190
  1392. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/loadSharedConfigFiles.js +0 -1
  1393. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/loadSsoSessionData.js +0 -1
  1394. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/mergeConfigFiles.js +0 -1
  1395. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/parseIni.js +0 -1
  1396. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/parseKnownFiles.js +0 -1
  1397. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/slurpFile.js +0 -13
  1398. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/types.js +0 -1
  1399. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigData.js +0 -18
  1400. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigFilepath.js +0 -4
  1401. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +0 -4
  1402. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getHomeDir.js +0 -22
  1403. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getProfileName.js +0 -3
  1404. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +0 -8
  1405. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +0 -8
  1406. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSsoSessionData.js +0 -5
  1407. package/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +0 -8
  1408. package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +0 -27
  1409. package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSsoSessionData.js +0 -9
  1410. package/node_modules/@smithy/shared-ini-file-loader/dist-es/mergeConfigFiles.js +0 -14
  1411. package/node_modules/@smithy/shared-ini-file-loader/dist-es/parseIni.js +0 -52
  1412. package/node_modules/@smithy/shared-ini-file-loader/dist-es/parseKnownFiles.js +0 -6
  1413. package/node_modules/@smithy/shared-ini-file-loader/dist-es/slurpFile.js +0 -9
  1414. package/node_modules/@smithy/shared-ini-file-loader/dist-es/types.js +0 -1
  1415. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +0 -8
  1416. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigFilepath.d.ts +0 -2
  1417. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getCredentialsFilepath.d.ts +0 -2
  1418. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getHomeDir.d.ts +0 -6
  1419. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getProfileName.d.ts +0 -5
  1420. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFilepath.d.ts +0 -4
  1421. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +0 -44
  1422. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +0 -6
  1423. package/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +0 -8
  1424. package/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSharedConfigFiles.d.ts +0 -22
  1425. package/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSsoSessionData.d.ts +0 -10
  1426. package/node_modules/@smithy/shared-ini-file-loader/dist-types/mergeConfigFiles.d.ts +0 -7
  1427. package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +0 -2
  1428. package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +0 -15
  1429. package/node_modules/@smithy/shared-ini-file-loader/dist-types/slurpFile.d.ts +0 -5
  1430. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigData.d.ts +0 -8
  1431. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigFilepath.d.ts +0 -2
  1432. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getCredentialsFilepath.d.ts +0 -2
  1433. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getHomeDir.d.ts +0 -6
  1434. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getProfileName.d.ts +0 -5
  1435. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFilepath.d.ts +0 -4
  1436. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +0 -44
  1437. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSsoSessionData.d.ts +0 -6
  1438. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +0 -8
  1439. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +0 -22
  1440. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSsoSessionData.d.ts +0 -10
  1441. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/mergeConfigFiles.d.ts +0 -7
  1442. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseIni.d.ts +0 -2
  1443. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseKnownFiles.d.ts +0 -15
  1444. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/slurpFile.d.ts +0 -5
  1445. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/types.d.ts +0 -13
  1446. package/node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts +0 -13
  1447. package/node_modules/@smithy/shared-ini-file-loader/package.json +0 -72
  1448. package/node_modules/@smithy/smithy-client/LICENSE +0 -201
  1449. package/node_modules/@smithy/smithy-client/README.md +0 -10
  1450. package/node_modules/@smithy/smithy-client/dist-cjs/NoOpLogger.js +0 -1
  1451. package/node_modules/@smithy/smithy-client/dist-cjs/client.js +0 -1
  1452. package/node_modules/@smithy/smithy-client/dist-cjs/collect-stream-body.js +0 -1
  1453. package/node_modules/@smithy/smithy-client/dist-cjs/command.js +0 -1
  1454. package/node_modules/@smithy/smithy-client/dist-cjs/constants.js +0 -1
  1455. package/node_modules/@smithy/smithy-client/dist-cjs/create-aggregated-client.js +0 -1
  1456. package/node_modules/@smithy/smithy-client/dist-cjs/date-utils.js +0 -1
  1457. package/node_modules/@smithy/smithy-client/dist-cjs/default-error-handler.js +0 -1
  1458. package/node_modules/@smithy/smithy-client/dist-cjs/defaults-mode.js +0 -1
  1459. package/node_modules/@smithy/smithy-client/dist-cjs/emitWarningIfUnsupportedVersion.js +0 -1
  1460. package/node_modules/@smithy/smithy-client/dist-cjs/exceptions.js +0 -1
  1461. package/node_modules/@smithy/smithy-client/dist-cjs/extended-encode-uri-component.js +0 -1
  1462. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/checksum.js +0 -1
  1463. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/defaultExtensionConfiguration.js +0 -1
  1464. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/index.js +0 -1
  1465. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/retry.js +0 -1
  1466. package/node_modules/@smithy/smithy-client/dist-cjs/get-array-if-single-item.js +0 -1
  1467. package/node_modules/@smithy/smithy-client/dist-cjs/get-value-from-text-node.js +0 -1
  1468. package/node_modules/@smithy/smithy-client/dist-cjs/index.js +0 -1256
  1469. package/node_modules/@smithy/smithy-client/dist-cjs/lazy-json.js +0 -1
  1470. package/node_modules/@smithy/smithy-client/dist-cjs/object-mapping.js +0 -1
  1471. package/node_modules/@smithy/smithy-client/dist-cjs/parse-utils.js +0 -1
  1472. package/node_modules/@smithy/smithy-client/dist-cjs/resolve-path.js +0 -1
  1473. package/node_modules/@smithy/smithy-client/dist-cjs/ser-utils.js +0 -1
  1474. package/node_modules/@smithy/smithy-client/dist-cjs/serde-json.js +0 -1
  1475. package/node_modules/@smithy/smithy-client/dist-cjs/split-every.js +0 -1
  1476. package/node_modules/@smithy/smithy-client/dist-es/NoOpLogger.js +0 -7
  1477. package/node_modules/@smithy/smithy-client/dist-es/client.js +0 -24
  1478. package/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +0 -11
  1479. package/node_modules/@smithy/smithy-client/dist-es/command.js +0 -114
  1480. package/node_modules/@smithy/smithy-client/dist-es/constants.js +0 -1
  1481. package/node_modules/@smithy/smithy-client/dist-es/create-aggregated-client.js +0 -21
  1482. package/node_modules/@smithy/smithy-client/dist-es/date-utils.js +0 -187
  1483. package/node_modules/@smithy/smithy-client/dist-es/default-error-handler.js +0 -22
  1484. package/node_modules/@smithy/smithy-client/dist-es/defaults-mode.js +0 -26
  1485. package/node_modules/@smithy/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js +0 -6
  1486. package/node_modules/@smithy/smithy-client/dist-es/exceptions.js +0 -22
  1487. package/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +0 -5
  1488. package/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +0 -31
  1489. package/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +0 -15
  1490. package/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +0 -1
  1491. package/node_modules/@smithy/smithy-client/dist-es/extensions/retry.js +0 -16
  1492. package/node_modules/@smithy/smithy-client/dist-es/get-array-if-single-item.js +0 -1
  1493. package/node_modules/@smithy/smithy-client/dist-es/get-value-from-text-node.js +0 -12
  1494. package/node_modules/@smithy/smithy-client/dist-es/index.js +0 -22
  1495. package/node_modules/@smithy/smithy-client/dist-es/lazy-json.js +0 -33
  1496. package/node_modules/@smithy/smithy-client/dist-es/object-mapping.js +0 -92
  1497. package/node_modules/@smithy/smithy-client/dist-es/parse-utils.js +0 -230
  1498. package/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +0 -19
  1499. package/node_modules/@smithy/smithy-client/dist-es/ser-utils.js +0 -13
  1500. package/node_modules/@smithy/smithy-client/dist-es/serde-json.js +0 -19
  1501. package/node_modules/@smithy/smithy-client/dist-es/split-every.js +0 -27
  1502. package/node_modules/@smithy/smithy-client/dist-types/NoOpLogger.d.ts +0 -11
  1503. package/node_modules/@smithy/smithy-client/dist-types/client.d.ts +0 -32
  1504. package/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +0 -10
  1505. package/node_modules/@smithy/smithy-client/dist-types/command.d.ts +0 -113
  1506. package/node_modules/@smithy/smithy-client/dist-types/constants.d.ts +0 -4
  1507. package/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +0 -9
  1508. package/node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts +0 -73
  1509. package/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +0 -13
  1510. package/node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts +0 -28
  1511. package/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +0 -8
  1512. package/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +0 -34
  1513. package/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +0 -7
  1514. package/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +0 -25
  1515. package/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -38
  1516. package/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +0 -1
  1517. package/node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts +0 -15
  1518. package/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +0 -7
  1519. package/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +0 -7
  1520. package/node_modules/@smithy/smithy-client/dist-types/index.d.ts +0 -23
  1521. package/node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts +0 -24
  1522. package/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +0 -162
  1523. package/node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts +0 -270
  1524. package/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +0 -4
  1525. package/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +0 -9
  1526. package/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +0 -10
  1527. package/node_modules/@smithy/smithy-client/dist-types/split-every.d.ts +0 -11
  1528. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/NoOpLogger.d.ts +0 -11
  1529. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/client.d.ts +0 -32
  1530. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/collect-stream-body.d.ts +0 -10
  1531. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/command.d.ts +0 -113
  1532. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/constants.d.ts +0 -4
  1533. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/create-aggregated-client.d.ts +0 -9
  1534. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/date-utils.d.ts +0 -73
  1535. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +0 -13
  1536. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +0 -28
  1537. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +0 -8
  1538. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/exceptions.d.ts +0 -34
  1539. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +0 -7
  1540. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/checksum.d.ts +0 -25
  1541. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +0 -38
  1542. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/index.d.ts +0 -1
  1543. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/retry.d.ts +0 -15
  1544. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +0 -7
  1545. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +0 -7
  1546. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/index.d.ts +0 -23
  1547. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/lazy-json.d.ts +0 -24
  1548. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/object-mapping.d.ts +0 -178
  1549. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/parse-utils.d.ts +0 -270
  1550. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/resolve-path.d.ts +0 -4
  1551. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/ser-utils.d.ts +0 -9
  1552. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/serde-json.d.ts +0 -10
  1553. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/split-every.d.ts +0 -11
  1554. package/node_modules/@smithy/smithy-client/package.json +0 -66
  1555. package/node_modules/@smithy/types/LICENSE +0 -201
  1556. package/node_modules/@smithy/types/README.md +0 -80
  1557. package/node_modules/@smithy/types/dist-cjs/abort.js +0 -1
  1558. package/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +0 -1
  1559. package/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +0 -1
  1560. package/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +0 -1
  1561. package/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +0 -1
  1562. package/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +0 -1
  1563. package/node_modules/@smithy/types/dist-cjs/auth/auth.js +0 -1
  1564. package/node_modules/@smithy/types/dist-cjs/auth/index.js +0 -1
  1565. package/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +0 -1
  1566. package/node_modules/@smithy/types/dist-cjs/checksum.js +0 -1
  1567. package/node_modules/@smithy/types/dist-cjs/client.js +0 -1
  1568. package/node_modules/@smithy/types/dist-cjs/command.js +0 -1
  1569. package/node_modules/@smithy/types/dist-cjs/connection/config.js +0 -1
  1570. package/node_modules/@smithy/types/dist-cjs/connection/index.js +0 -1
  1571. package/node_modules/@smithy/types/dist-cjs/connection/manager.js +0 -1
  1572. package/node_modules/@smithy/types/dist-cjs/connection/pool.js +0 -1
  1573. package/node_modules/@smithy/types/dist-cjs/crypto.js +0 -1
  1574. package/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +0 -1
  1575. package/node_modules/@smithy/types/dist-cjs/encode.js +0 -1
  1576. package/node_modules/@smithy/types/dist-cjs/endpoint.js +0 -1
  1577. package/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +0 -1
  1578. package/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +0 -1
  1579. package/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +0 -1
  1580. package/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +0 -1
  1581. package/node_modules/@smithy/types/dist-cjs/endpoints/index.js +0 -1
  1582. package/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +0 -1
  1583. package/node_modules/@smithy/types/dist-cjs/eventStream.js +0 -1
  1584. package/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +0 -1
  1585. package/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +0 -1
  1586. package/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +0 -1
  1587. package/node_modules/@smithy/types/dist-cjs/extensions/index.js +0 -1
  1588. package/node_modules/@smithy/types/dist-cjs/extensions/retry.js +0 -1
  1589. package/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +0 -1
  1590. package/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +0 -1
  1591. package/node_modules/@smithy/types/dist-cjs/http.js +0 -1
  1592. package/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +0 -1
  1593. package/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +0 -1
  1594. package/node_modules/@smithy/types/dist-cjs/identity/identity.js +0 -1
  1595. package/node_modules/@smithy/types/dist-cjs/identity/index.js +0 -1
  1596. package/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +0 -1
  1597. package/node_modules/@smithy/types/dist-cjs/index.js +0 -149
  1598. package/node_modules/@smithy/types/dist-cjs/logger.js +0 -1
  1599. package/node_modules/@smithy/types/dist-cjs/middleware.js +0 -1
  1600. package/node_modules/@smithy/types/dist-cjs/pagination.js +0 -1
  1601. package/node_modules/@smithy/types/dist-cjs/profile.js +0 -1
  1602. package/node_modules/@smithy/types/dist-cjs/response.js +0 -1
  1603. package/node_modules/@smithy/types/dist-cjs/retry.js +0 -1
  1604. package/node_modules/@smithy/types/dist-cjs/serde.js +0 -1
  1605. package/node_modules/@smithy/types/dist-cjs/shapes.js +0 -1
  1606. package/node_modules/@smithy/types/dist-cjs/signature.js +0 -1
  1607. package/node_modules/@smithy/types/dist-cjs/stream.js +0 -1
  1608. package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +0 -1
  1609. package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-input-types.js +0 -1
  1610. package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-output-types.js +0 -1
  1611. package/node_modules/@smithy/types/dist-cjs/transfer.js +0 -1
  1612. package/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +0 -1
  1613. package/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +0 -1
  1614. package/node_modules/@smithy/types/dist-cjs/transform/exact.js +0 -1
  1615. package/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +0 -1
  1616. package/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +0 -1
  1617. package/node_modules/@smithy/types/dist-cjs/uri.js +0 -1
  1618. package/node_modules/@smithy/types/dist-cjs/util.js +0 -1
  1619. package/node_modules/@smithy/types/dist-cjs/waiter.js +0 -1
  1620. package/node_modules/@smithy/types/dist-es/abort.js +0 -1
  1621. package/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +0 -5
  1622. package/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +0 -1
  1623. package/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +0 -1
  1624. package/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +0 -1
  1625. package/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +0 -1
  1626. package/node_modules/@smithy/types/dist-es/auth/auth.js +0 -5
  1627. package/node_modules/@smithy/types/dist-es/auth/index.js +0 -6
  1628. package/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +0 -1
  1629. package/node_modules/@smithy/types/dist-es/checksum.js +0 -1
  1630. package/node_modules/@smithy/types/dist-es/client.js +0 -1
  1631. package/node_modules/@smithy/types/dist-es/command.js +0 -1
  1632. package/node_modules/@smithy/types/dist-es/connection/config.js +0 -1
  1633. package/node_modules/@smithy/types/dist-es/connection/index.js +0 -3
  1634. package/node_modules/@smithy/types/dist-es/connection/manager.js +0 -1
  1635. package/node_modules/@smithy/types/dist-es/connection/pool.js +0 -1
  1636. package/node_modules/@smithy/types/dist-es/crypto.js +0 -1
  1637. package/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +0 -1
  1638. package/node_modules/@smithy/types/dist-es/encode.js +0 -1
  1639. package/node_modules/@smithy/types/dist-es/endpoint.js +0 -5
  1640. package/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +0 -1
  1641. package/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +0 -1
  1642. package/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +0 -1
  1643. package/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +0 -1
  1644. package/node_modules/@smithy/types/dist-es/endpoints/index.js +0 -5
  1645. package/node_modules/@smithy/types/dist-es/endpoints/shared.js +0 -1
  1646. package/node_modules/@smithy/types/dist-es/eventStream.js +0 -1
  1647. package/node_modules/@smithy/types/dist-es/extensions/checksum.js +0 -39
  1648. package/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +0 -11
  1649. package/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +0 -1
  1650. package/node_modules/@smithy/types/dist-es/extensions/index.js +0 -3
  1651. package/node_modules/@smithy/types/dist-es/extensions/retry.js +0 -1
  1652. package/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +0 -1
  1653. package/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +0 -1
  1654. package/node_modules/@smithy/types/dist-es/http.js +0 -5
  1655. package/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +0 -1
  1656. package/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +0 -1
  1657. package/node_modules/@smithy/types/dist-es/identity/identity.js +0 -1
  1658. package/node_modules/@smithy/types/dist-es/identity/index.js +0 -4
  1659. package/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +0 -1
  1660. package/node_modules/@smithy/types/dist-es/index.js +0 -36
  1661. package/node_modules/@smithy/types/dist-es/logger.js +0 -1
  1662. package/node_modules/@smithy/types/dist-es/middleware.js +0 -1
  1663. package/node_modules/@smithy/types/dist-es/pagination.js +0 -1
  1664. package/node_modules/@smithy/types/dist-es/profile.js +0 -6
  1665. package/node_modules/@smithy/types/dist-es/response.js +0 -1
  1666. package/node_modules/@smithy/types/dist-es/retry.js +0 -1
  1667. package/node_modules/@smithy/types/dist-es/serde.js +0 -1
  1668. package/node_modules/@smithy/types/dist-es/shapes.js +0 -1
  1669. package/node_modules/@smithy/types/dist-es/signature.js +0 -1
  1670. package/node_modules/@smithy/types/dist-es/stream.js +0 -1
  1671. package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +0 -1
  1672. package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +0 -1
  1673. package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +0 -1
  1674. package/node_modules/@smithy/types/dist-es/transfer.js +0 -6
  1675. package/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +0 -1
  1676. package/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +0 -1
  1677. package/node_modules/@smithy/types/dist-es/transform/exact.js +0 -1
  1678. package/node_modules/@smithy/types/dist-es/transform/no-undefined.js +0 -1
  1679. package/node_modules/@smithy/types/dist-es/transform/type-transform.js +0 -1
  1680. package/node_modules/@smithy/types/dist-es/uri.js +0 -1
  1681. package/node_modules/@smithy/types/dist-es/util.js +0 -1
  1682. package/node_modules/@smithy/types/dist-es/waiter.js +0 -1
  1683. package/node_modules/@smithy/types/dist-types/abort.d.ts +0 -49
  1684. package/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +0 -7
  1685. package/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +0 -49
  1686. package/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +0 -20
  1687. package/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +0 -41
  1688. package/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +0 -14
  1689. package/node_modules/@smithy/types/dist-types/auth/auth.d.ts +0 -57
  1690. package/node_modules/@smithy/types/dist-types/auth/index.d.ts +0 -6
  1691. package/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +0 -41
  1692. package/node_modules/@smithy/types/dist-types/checksum.d.ts +0 -63
  1693. package/node_modules/@smithy/types/dist-types/client.d.ts +0 -44
  1694. package/node_modules/@smithy/types/dist-types/command.d.ts +0 -10
  1695. package/node_modules/@smithy/types/dist-types/connection/config.d.ts +0 -7
  1696. package/node_modules/@smithy/types/dist-types/connection/index.d.ts +0 -3
  1697. package/node_modules/@smithy/types/dist-types/connection/manager.d.ts +0 -28
  1698. package/node_modules/@smithy/types/dist-types/connection/pool.d.ts +0 -24
  1699. package/node_modules/@smithy/types/dist-types/crypto.d.ts +0 -60
  1700. package/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +0 -25
  1701. package/node_modules/@smithy/types/dist-types/encode.d.ts +0 -19
  1702. package/node_modules/@smithy/types/dist-types/endpoint.d.ts +0 -77
  1703. package/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +0 -15
  1704. package/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +0 -7
  1705. package/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +0 -19
  1706. package/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +0 -10
  1707. package/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +0 -5
  1708. package/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +0 -25
  1709. package/node_modules/@smithy/types/dist-types/eventStream.d.ts +0 -108
  1710. package/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +0 -55
  1711. package/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +0 -33
  1712. package/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -9
  1713. package/node_modules/@smithy/types/dist-types/extensions/index.d.ts +0 -4
  1714. package/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +0 -18
  1715. package/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +0 -35
  1716. package/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +0 -79
  1717. package/node_modules/@smithy/types/dist-types/http.d.ts +0 -105
  1718. package/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +0 -14
  1719. package/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +0 -27
  1720. package/node_modules/@smithy/types/dist-types/identity/identity.d.ts +0 -15
  1721. package/node_modules/@smithy/types/dist-types/identity/index.d.ts +0 -4
  1722. package/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +0 -14
  1723. package/node_modules/@smithy/types/dist-types/index.d.ts +0 -36
  1724. package/node_modules/@smithy/types/dist-types/logger.d.ts +0 -13
  1725. package/node_modules/@smithy/types/dist-types/middleware.d.ts +0 -510
  1726. package/node_modules/@smithy/types/dist-types/pagination.d.ts +0 -26
  1727. package/node_modules/@smithy/types/dist-types/profile.d.ts +0 -30
  1728. package/node_modules/@smithy/types/dist-types/response.d.ts +0 -40
  1729. package/node_modules/@smithy/types/dist-types/retry.d.ts +0 -133
  1730. package/node_modules/@smithy/types/dist-types/serde.d.ts +0 -111
  1731. package/node_modules/@smithy/types/dist-types/shapes.d.ts +0 -81
  1732. package/node_modules/@smithy/types/dist-types/signature.d.ts +0 -150
  1733. package/node_modules/@smithy/types/dist-types/stream.d.ts +0 -22
  1734. package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +0 -33
  1735. package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -62
  1736. package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -53
  1737. package/node_modules/@smithy/types/dist-types/transfer.d.ts +0 -33
  1738. package/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +0 -26
  1739. package/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +0 -73
  1740. package/node_modules/@smithy/types/dist-types/transform/exact.d.ts +0 -6
  1741. package/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +0 -62
  1742. package/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +0 -34
  1743. package/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +0 -49
  1744. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +0 -7
  1745. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +0 -49
  1746. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +0 -20
  1747. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +0 -41
  1748. package/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +0 -14
  1749. package/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +0 -57
  1750. package/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +0 -6
  1751. package/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +0 -40
  1752. package/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +0 -63
  1753. package/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +0 -44
  1754. package/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +0 -10
  1755. package/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +0 -7
  1756. package/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +0 -3
  1757. package/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +0 -28
  1758. package/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +0 -24
  1759. package/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +0 -60
  1760. package/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +0 -41
  1761. package/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +0 -19
  1762. package/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +0 -77
  1763. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +0 -15
  1764. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +0 -7
  1765. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +0 -19
  1766. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +0 -10
  1767. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +0 -5
  1768. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +0 -25
  1769. package/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +0 -108
  1770. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +0 -55
  1771. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +0 -33
  1772. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +0 -9
  1773. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +0 -4
  1774. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +0 -18
  1775. package/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +0 -35
  1776. package/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +0 -78
  1777. package/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +0 -105
  1778. package/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +0 -14
  1779. package/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +0 -27
  1780. package/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +0 -15
  1781. package/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +0 -4
  1782. package/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +0 -14
  1783. package/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +0 -36
  1784. package/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +0 -13
  1785. package/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +0 -510
  1786. package/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +0 -26
  1787. package/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +0 -30
  1788. package/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +0 -40
  1789. package/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +0 -133
  1790. package/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +0 -111
  1791. package/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +0 -81
  1792. package/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +0 -150
  1793. package/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +0 -22
  1794. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +0 -33
  1795. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -61
  1796. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -52
  1797. package/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +0 -33
  1798. package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +0 -26
  1799. package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +0 -84
  1800. package/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +0 -14
  1801. package/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +0 -82
  1802. package/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +0 -41
  1803. package/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +0 -17
  1804. package/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +0 -192
  1805. package/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +0 -35
  1806. package/node_modules/@smithy/types/dist-types/uri.d.ts +0 -17
  1807. package/node_modules/@smithy/types/dist-types/util.d.ts +0 -176
  1808. package/node_modules/@smithy/types/dist-types/waiter.d.ts +0 -35
  1809. package/node_modules/@smithy/types/package.json +0 -61
  1810. package/node_modules/@smithy/url-parser/LICENSE +0 -201
  1811. package/node_modules/@smithy/url-parser/README.md +0 -10
  1812. package/node_modules/@smithy/url-parser/dist-cjs/index.js +0 -49
  1813. package/node_modules/@smithy/url-parser/dist-es/index.js +0 -18
  1814. package/node_modules/@smithy/url-parser/dist-types/index.d.ts +0 -5
  1815. package/node_modules/@smithy/url-parser/dist-types/ts3.4/index.d.ts +0 -5
  1816. package/node_modules/@smithy/url-parser/package.json +0 -58
  1817. package/node_modules/@smithy/util-base64/LICENSE +0 -201
  1818. package/node_modules/@smithy/util-base64/README.md +0 -4
  1819. package/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +0 -35
  1820. package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.browser.js +0 -40
  1821. package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.js +0 -16
  1822. package/node_modules/@smithy/util-base64/dist-cjs/index.js +0 -27
  1823. package/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +0 -39
  1824. package/node_modules/@smithy/util-base64/dist-cjs/toBase64.js +0 -19
  1825. package/node_modules/@smithy/util-base64/dist-es/constants.browser.js +0 -28
  1826. package/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js +0 -36
  1827. package/node_modules/@smithy/util-base64/dist-es/fromBase64.js +0 -12
  1828. package/node_modules/@smithy/util-base64/dist-es/index.js +0 -2
  1829. package/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js +0 -35
  1830. package/node_modules/@smithy/util-base64/dist-es/toBase64.js +0 -15
  1831. package/node_modules/@smithy/util-base64/dist-types/constants.browser.d.ts +0 -6
  1832. package/node_modules/@smithy/util-base64/dist-types/fromBase64.browser.d.ts +0 -8
  1833. package/node_modules/@smithy/util-base64/dist-types/fromBase64.d.ts +0 -7
  1834. package/node_modules/@smithy/util-base64/dist-types/index.d.ts +0 -2
  1835. package/node_modules/@smithy/util-base64/dist-types/toBase64.browser.d.ts +0 -9
  1836. package/node_modules/@smithy/util-base64/dist-types/toBase64.d.ts +0 -8
  1837. package/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +0 -6
  1838. package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts +0 -8
  1839. package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.d.ts +0 -7
  1840. package/node_modules/@smithy/util-base64/dist-types/ts3.4/index.d.ts +0 -2
  1841. package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.browser.d.ts +0 -9
  1842. package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.d.ts +0 -8
  1843. package/node_modules/@smithy/util-base64/package.json +0 -73
  1844. package/node_modules/@smithy/util-body-length-browser/LICENSE +0 -201
  1845. package/node_modules/@smithy/util-body-length-browser/README.md +0 -12
  1846. package/node_modules/@smithy/util-body-length-browser/dist-cjs/calculateBodyLength.js +0 -1
  1847. package/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +0 -57
  1848. package/node_modules/@smithy/util-body-length-browser/dist-es/calculateBodyLength.js +0 -26
  1849. package/node_modules/@smithy/util-body-length-browser/dist-es/index.js +0 -1
  1850. package/node_modules/@smithy/util-body-length-browser/dist-types/calculateBodyLength.d.ts +0 -4
  1851. package/node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts +0 -4
  1852. package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +0 -4
  1853. package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/index.d.ts +0 -4
  1854. package/node_modules/@smithy/util-body-length-browser/package.json +0 -57
  1855. package/node_modules/@smithy/util-body-length-node/LICENSE +0 -201
  1856. package/node_modules/@smithy/util-body-length-node/README.md +0 -12
  1857. package/node_modules/@smithy/util-body-length-node/dist-cjs/calculateBodyLength.js +0 -1
  1858. package/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +0 -53
  1859. package/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +0 -25
  1860. package/node_modules/@smithy/util-body-length-node/dist-es/index.js +0 -1
  1861. package/node_modules/@smithy/util-body-length-node/dist-types/calculateBodyLength.d.ts +0 -4
  1862. package/node_modules/@smithy/util-body-length-node/dist-types/index.d.ts +0 -4
  1863. package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +0 -4
  1864. package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/index.d.ts +0 -4
  1865. package/node_modules/@smithy/util-body-length-node/package.json +0 -61
  1866. package/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
  1867. package/node_modules/@smithy/util-buffer-from/README.md +0 -10
  1868. package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
  1869. package/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
  1870. package/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
  1871. package/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
  1872. package/node_modules/@smithy/util-buffer-from/package.json +0 -61
  1873. package/node_modules/@smithy/util-config-provider/LICENSE +0 -201
  1874. package/node_modules/@smithy/util-config-provider/README.md +0 -4
  1875. package/node_modules/@smithy/util-config-provider/dist-cjs/booleanSelector.js +0 -1
  1876. package/node_modules/@smithy/util-config-provider/dist-cjs/index.js +0 -64
  1877. package/node_modules/@smithy/util-config-provider/dist-cjs/numberSelector.js +0 -1
  1878. package/node_modules/@smithy/util-config-provider/dist-cjs/types.js +0 -1
  1879. package/node_modules/@smithy/util-config-provider/dist-es/booleanSelector.js +0 -9
  1880. package/node_modules/@smithy/util-config-provider/dist-es/index.js +0 -3
  1881. package/node_modules/@smithy/util-config-provider/dist-es/numberSelector.js +0 -9
  1882. package/node_modules/@smithy/util-config-provider/dist-es/types.js +0 -5
  1883. package/node_modules/@smithy/util-config-provider/dist-types/booleanSelector.d.ts +0 -10
  1884. package/node_modules/@smithy/util-config-provider/dist-types/index.d.ts +0 -3
  1885. package/node_modules/@smithy/util-config-provider/dist-types/numberSelector.d.ts +0 -9
  1886. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +0 -10
  1887. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/index.d.ts +0 -3
  1888. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/numberSelector.d.ts +0 -9
  1889. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/types.d.ts +0 -4
  1890. package/node_modules/@smithy/util-config-provider/dist-types/types.d.ts +0 -4
  1891. package/node_modules/@smithy/util-config-provider/package.json +0 -62
  1892. package/node_modules/@smithy/util-defaults-mode-browser/LICENSE +0 -201
  1893. package/node_modules/@smithy/util-defaults-mode-browser/README.md +0 -10
  1894. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +0 -4
  1895. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +0 -25
  1896. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +0 -33
  1897. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +0 -23
  1898. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +0 -1
  1899. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +0 -1
  1900. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +0 -27
  1901. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +0 -19
  1902. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +0 -12
  1903. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +0 -4
  1904. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +0 -17
  1905. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +0 -16
  1906. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +0 -12
  1907. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +0 -4
  1908. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +0 -17
  1909. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +0 -16
  1910. package/node_modules/@smithy/util-defaults-mode-browser/package.json +0 -66
  1911. package/node_modules/@smithy/util-defaults-mode-node/LICENSE +0 -201
  1912. package/node_modules/@smithy/util-defaults-mode-node/README.md +0 -10
  1913. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/constants.js +0 -1
  1914. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/defaultsModeConfig.js +0 -1
  1915. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +0 -119
  1916. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/resolveDefaultsModeConfig.js +0 -1
  1917. package/node_modules/@smithy/util-defaults-mode-node/dist-es/constants.js +0 -6
  1918. package/node_modules/@smithy/util-defaults-mode-node/dist-es/defaultsModeConfig.js +0 -11
  1919. package/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +0 -1
  1920. package/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +0 -52
  1921. package/node_modules/@smithy/util-defaults-mode-node/dist-types/constants.d.ts +0 -24
  1922. package/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +0 -6
  1923. package/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +0 -4
  1924. package/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +0 -17
  1925. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +0 -24
  1926. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +0 -6
  1927. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +0 -4
  1928. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +0 -17
  1929. package/node_modules/@smithy/util-defaults-mode-node/package.json +0 -66
  1930. package/node_modules/@smithy/util-hex-encoding/LICENSE +0 -201
  1931. package/node_modules/@smithy/util-hex-encoding/README.md +0 -4
  1932. package/node_modules/@smithy/util-hex-encoding/dist-cjs/index.js +0 -67
  1933. package/node_modules/@smithy/util-hex-encoding/dist-es/index.js +0 -33
  1934. package/node_modules/@smithy/util-hex-encoding/dist-types/index.d.ts +0 -12
  1935. package/node_modules/@smithy/util-hex-encoding/dist-types/ts3.4/index.d.ts +0 -12
  1936. package/node_modules/@smithy/util-hex-encoding/package.json +0 -60
  1937. package/node_modules/@smithy/util-middleware/LICENSE +0 -201
  1938. package/node_modules/@smithy/util-middleware/README.md +0 -12
  1939. package/node_modules/@smithy/util-middleware/dist-cjs/getSmithyContext.js +0 -1
  1940. package/node_modules/@smithy/util-middleware/dist-cjs/index.js +0 -45
  1941. package/node_modules/@smithy/util-middleware/dist-cjs/normalizeProvider.js +0 -1
  1942. package/node_modules/@smithy/util-middleware/dist-es/getSmithyContext.js +0 -2
  1943. package/node_modules/@smithy/util-middleware/dist-es/index.js +0 -2
  1944. package/node_modules/@smithy/util-middleware/dist-es/normalizeProvider.js +0 -6
  1945. package/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +0 -5
  1946. package/node_modules/@smithy/util-middleware/dist-types/index.d.ts +0 -8
  1947. package/node_modules/@smithy/util-middleware/dist-types/normalizeProvider.d.ts +0 -7
  1948. package/node_modules/@smithy/util-middleware/dist-types/ts3.4/getSmithyContext.d.ts +0 -5
  1949. package/node_modules/@smithy/util-middleware/dist-types/ts3.4/index.d.ts +0 -8
  1950. package/node_modules/@smithy/util-middleware/dist-types/ts3.4/normalizeProvider.d.ts +0 -7
  1951. package/node_modules/@smithy/util-middleware/package.json +0 -66
  1952. package/node_modules/@smithy/util-retry/LICENSE +0 -201
  1953. package/node_modules/@smithy/util-retry/README.md +0 -78
  1954. package/node_modules/@smithy/util-retry/dist-cjs/AdaptiveRetryStrategy.js +0 -1
  1955. package/node_modules/@smithy/util-retry/dist-cjs/ConfiguredRetryStrategy.js +0 -1
  1956. package/node_modules/@smithy/util-retry/dist-cjs/DefaultRateLimiter.js +0 -1
  1957. package/node_modules/@smithy/util-retry/dist-cjs/StandardRetryStrategy.js +0 -1
  1958. package/node_modules/@smithy/util-retry/dist-cjs/config.js +0 -1
  1959. package/node_modules/@smithy/util-retry/dist-cjs/constants.js +0 -1
  1960. package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryBackoffStrategy.js +0 -1
  1961. package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryToken.js +0 -1
  1962. package/node_modules/@smithy/util-retry/dist-cjs/index.js +0 -347
  1963. package/node_modules/@smithy/util-retry/dist-cjs/types.js +0 -1
  1964. package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +0 -24
  1965. package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +0 -18
  1966. package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +0 -99
  1967. package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +0 -65
  1968. package/node_modules/@smithy/util-retry/dist-es/config.js +0 -7
  1969. package/node_modules/@smithy/util-retry/dist-es/constants.js +0 -9
  1970. package/node_modules/@smithy/util-retry/dist-es/defaultRetryBackoffStrategy.js +0 -14
  1971. package/node_modules/@smithy/util-retry/dist-es/defaultRetryToken.js +0 -11
  1972. package/node_modules/@smithy/util-retry/dist-es/index.js +0 -7
  1973. package/node_modules/@smithy/util-retry/dist-es/types.js +0 -1
  1974. package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +0 -33
  1975. package/node_modules/@smithy/util-retry/dist-types/ConfiguredRetryStrategy.d.ts +0 -32
  1976. package/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +0 -45
  1977. package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +0 -26
  1978. package/node_modules/@smithy/util-retry/dist-types/config.d.ts +0 -20
  1979. package/node_modules/@smithy/util-retry/dist-types/constants.d.ts +0 -59
  1980. package/node_modules/@smithy/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +0 -5
  1981. package/node_modules/@smithy/util-retry/dist-types/defaultRetryToken.d.ts +0 -9
  1982. package/node_modules/@smithy/util-retry/dist-types/index.d.ts +0 -7
  1983. package/node_modules/@smithy/util-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +0 -33
  1984. package/node_modules/@smithy/util-retry/dist-types/ts3.4/ConfiguredRetryStrategy.d.ts +0 -32
  1985. package/node_modules/@smithy/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +0 -45
  1986. package/node_modules/@smithy/util-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +0 -26
  1987. package/node_modules/@smithy/util-retry/dist-types/ts3.4/config.d.ts +0 -20
  1988. package/node_modules/@smithy/util-retry/dist-types/ts3.4/constants.d.ts +0 -59
  1989. package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryBackoffStrategy.d.ts +0 -5
  1990. package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryToken.d.ts +0 -9
  1991. package/node_modules/@smithy/util-retry/dist-types/ts3.4/index.d.ts +0 -7
  1992. package/node_modules/@smithy/util-retry/dist-types/ts3.4/types.d.ts +0 -19
  1993. package/node_modules/@smithy/util-retry/dist-types/types.d.ts +0 -19
  1994. package/node_modules/@smithy/util-retry/package.json +0 -68
  1995. package/node_modules/@smithy/util-stream/LICENSE +0 -201
  1996. package/node_modules/@smithy/util-stream/README.md +0 -6
  1997. package/node_modules/@smithy/util-stream/dist-cjs/blob/Uint8ArrayBlobAdapter.js +0 -1
  1998. package/node_modules/@smithy/util-stream/dist-cjs/blob/transforms.js +0 -1
  1999. package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +0 -31
  2000. package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +0 -30
  2001. package/node_modules/@smithy/util-stream/dist-cjs/index.js +0 -89
  2002. package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +0 -69
  2003. package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +0 -50
  2004. package/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +0 -18
  2005. package/node_modules/@smithy/util-stream/dist-es/blob/transforms.js +0 -15
  2006. package/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.browser.js +0 -27
  2007. package/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.js +0 -26
  2008. package/node_modules/@smithy/util-stream/dist-es/index.js +0 -3
  2009. package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +0 -64
  2010. package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +0 -45
  2011. package/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +0 -21
  2012. package/node_modules/@smithy/util-stream/dist-types/blob/transforms.d.ts +0 -9
  2013. package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.browser.d.ts +0 -5
  2014. package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +0 -7
  2015. package/node_modules/@smithy/util-stream/dist-types/index.d.ts +0 -3
  2016. package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.browser.d.ts +0 -7
  2017. package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +0 -8
  2018. package/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +0 -21
  2019. package/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/transforms.d.ts +0 -9
  2020. package/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.browser.d.ts +0 -5
  2021. package/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +0 -7
  2022. package/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +0 -3
  2023. package/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.browser.d.ts +0 -7
  2024. package/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.d.ts +0 -8
  2025. package/node_modules/@smithy/util-stream/package.json +0 -95
  2026. package/node_modules/@smithy/util-uri-escape/LICENSE +0 -201
  2027. package/node_modules/@smithy/util-uri-escape/README.md +0 -10
  2028. package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri-path.js +0 -1
  2029. package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri.js +0 -1
  2030. package/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +0 -43
  2031. package/node_modules/@smithy/util-uri-escape/dist-es/escape-uri-path.js +0 -2
  2032. package/node_modules/@smithy/util-uri-escape/dist-es/escape-uri.js +0 -2
  2033. package/node_modules/@smithy/util-uri-escape/dist-es/index.js +0 -2
  2034. package/node_modules/@smithy/util-uri-escape/dist-types/escape-uri-path.d.ts +0 -4
  2035. package/node_modules/@smithy/util-uri-escape/dist-types/escape-uri.d.ts +0 -4
  2036. package/node_modules/@smithy/util-uri-escape/dist-types/index.d.ts +0 -8
  2037. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +0 -4
  2038. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +0 -4
  2039. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/index.d.ts +0 -8
  2040. package/node_modules/@smithy/util-uri-escape/package.json +0 -59
  2041. package/out/language-server/pathUtils.js.map +0 -1
  2042. /package/{node_modules/@aws-sdk/middleware-token/dist-es/configurations.js → out/language-server/utilities/filesystemUtilities.test.d.ts} +0 -0
  2043. /package/{node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js → out/language-server/utilities/pathUtils.test.d.ts} +0 -0
  2044. /package/{node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js → out/language-server/utilities/supplementalContextUtil/crossFileContextUtil.test.d.ts} +0 -0
  2045. /package/{node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js → out/language-server/utilities/supplementalContextUtil/supplementalContextUtil.test.d.ts} +0 -0
  2046. /package/{node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js → out/language-server/utilities/textUtils.test.d.ts} +0 -0
@@ -1,322 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.hmacTestVectors = exports.hashTestVectors = void 0;
4
- var util_hex_encoding_1 = require("@aws-sdk/util-hex-encoding");
5
- var millionChars = new Uint8Array(1000000);
6
- for (var i = 0; i < 1000000; i++) {
7
- millionChars[i] = 97;
8
- }
9
- exports.hashTestVectors = [
10
- [
11
- Uint8Array.from([97, 98, 99]),
12
- (0, util_hex_encoding_1.fromHex)("ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad")
13
- ],
14
- [
15
- new Uint8Array(0),
16
- (0, util_hex_encoding_1.fromHex)("e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855")
17
- ],
18
- [
19
- (0, util_hex_encoding_1.fromHex)("61"),
20
- (0, util_hex_encoding_1.fromHex)("ca978112ca1bbdcafac231b39a23dc4da786eff8147c4e72b9807785afee48bb")
21
- ],
22
- [
23
- (0, util_hex_encoding_1.fromHex)("6161"),
24
- (0, util_hex_encoding_1.fromHex)("961b6dd3ede3cb8ecbaacbd68de040cd78eb2ed5889130cceb4c49268ea4d506")
25
- ],
26
- [
27
- (0, util_hex_encoding_1.fromHex)("616161"),
28
- (0, util_hex_encoding_1.fromHex)("9834876dcfb05cb167a5c24953eba58c4ac89b1adf57f28f2f9d09af107ee8f0")
29
- ],
30
- [
31
- (0, util_hex_encoding_1.fromHex)("61616161"),
32
- (0, util_hex_encoding_1.fromHex)("61be55a8e2f6b4e172338bddf184d6dbee29c98853e0a0485ecee7f27b9af0b4")
33
- ],
34
- [
35
- (0, util_hex_encoding_1.fromHex)("6161616161"),
36
- (0, util_hex_encoding_1.fromHex)("ed968e840d10d2d313a870bc131a4e2c311d7ad09bdf32b3418147221f51a6e2")
37
- ],
38
- [
39
- (0, util_hex_encoding_1.fromHex)("616161616161"),
40
- (0, util_hex_encoding_1.fromHex)("ed02457b5c41d964dbd2f2a609d63fe1bb7528dbe55e1abf5b52c249cd735797")
41
- ],
42
- [
43
- (0, util_hex_encoding_1.fromHex)("61616161616161"),
44
- (0, util_hex_encoding_1.fromHex)("e46240714b5db3a23eee60479a623efba4d633d27fe4f03c904b9e219a7fbe60")
45
- ],
46
- [
47
- (0, util_hex_encoding_1.fromHex)("6161616161616161"),
48
- (0, util_hex_encoding_1.fromHex)("1f3ce40415a2081fa3eee75fc39fff8e56c22270d1a978a7249b592dcebd20b4")
49
- ],
50
- [
51
- (0, util_hex_encoding_1.fromHex)("616161616161616161"),
52
- (0, util_hex_encoding_1.fromHex)("f2aca93b80cae681221f0445fa4e2cae8a1f9f8fa1e1741d9639caad222f537d")
53
- ],
54
- [
55
- (0, util_hex_encoding_1.fromHex)("61616161616161616161"),
56
- (0, util_hex_encoding_1.fromHex)("bf2cb58a68f684d95a3b78ef8f661c9a4e5b09e82cc8f9cc88cce90528caeb27")
57
- ],
58
- [
59
- (0, util_hex_encoding_1.fromHex)("6161616161616161616161"),
60
- (0, util_hex_encoding_1.fromHex)("28cb017dfc99073aa1b47c1b30f413e3ce774c4991eb4158de50f9dbb36d8043")
61
- ],
62
- [
63
- (0, util_hex_encoding_1.fromHex)("616161616161616161616161"),
64
- (0, util_hex_encoding_1.fromHex)("f24abc34b13fade76e805799f71187da6cd90b9cac373ae65ed57f143bd664e5")
65
- ],
66
- [
67
- (0, util_hex_encoding_1.fromHex)("61616161616161616161616161"),
68
- (0, util_hex_encoding_1.fromHex)("a689d786e81340e45511dec6c7ab2d978434e5db123362450fe10cfac70d19d0")
69
- ],
70
- [
71
- (0, util_hex_encoding_1.fromHex)("6161616161616161616161616161"),
72
- (0, util_hex_encoding_1.fromHex)("82cab7df0abfb9d95dca4e5937ce2968c798c726fea48c016bf9763221efda13")
73
- ],
74
- [
75
- (0, util_hex_encoding_1.fromHex)("616161616161616161616161616161"),
76
- (0, util_hex_encoding_1.fromHex)("ef2df0b539c6c23de0f4cbe42648c301ae0e22e887340a4599fb4ef4e2678e48")
77
- ],
78
- [
79
- (0, util_hex_encoding_1.fromHex)("61616161616161616161616161616161"),
80
- (0, util_hex_encoding_1.fromHex)("0c0beacef8877bbf2416eb00f2b5dc96354e26dd1df5517320459b1236860f8c")
81
- ],
82
- [
83
- (0, util_hex_encoding_1.fromHex)("6161616161616161616161616161616161"),
84
- (0, util_hex_encoding_1.fromHex)("b860666ee2966dd8f903be44ee605c6e1366f926d9f17a8f49937d11624eb99d")
85
- ],
86
- [
87
- (0, util_hex_encoding_1.fromHex)("616161616161616161616161616161616161"),
88
- (0, util_hex_encoding_1.fromHex)("c926defaaa3d13eda2fc63a553bb7fb7326bece6e7cb67ca5296e4727d89bab4")
89
- ],
90
- [
91
- (0, util_hex_encoding_1.fromHex)("61616161616161616161616161616161616161"),
92
- (0, util_hex_encoding_1.fromHex)("a0b4aaab8a966e2193ba172d68162c4656860197f256b5f45f0203397ff3f99c")
93
- ],
94
- [
95
- (0, util_hex_encoding_1.fromHex)("6161616161616161616161616161616161616161"),
96
- (0, util_hex_encoding_1.fromHex)("42492da06234ad0ac76f5d5debdb6d1ae027cffbe746a1c13b89bb8bc0139137")
97
- ],
98
- [
99
- (0, util_hex_encoding_1.fromHex)("616161616161616161616161616161616161616161"),
100
- (0, util_hex_encoding_1.fromHex)("7df8e299c834de198e264c3e374bc58ecd9382252a705c183beb02f275571e3b")
101
- ],
102
- [
103
- (0, util_hex_encoding_1.fromHex)("61616161616161616161616161616161616161616161"),
104
- (0, util_hex_encoding_1.fromHex)("ec7c494df6d2a7ea36668d656e6b8979e33641bfea378c15038af3964db057a3")
105
- ],
106
- [
107
- (0, util_hex_encoding_1.fromHex)("6161616161616161616161616161616161616161616161"),
108
- (0, util_hex_encoding_1.fromHex)("897d3e95b65f26676081f8b9f3a98b6ee4424566303e8d4e7c7522ebae219eab")
109
- ],
110
- [
111
- (0, util_hex_encoding_1.fromHex)("616161616161616161616161616161616161616161616161"),
112
- (0, util_hex_encoding_1.fromHex)("09f61f8d9cd65e6a0c258087c485b6293541364e42bd97b2d7936580c8aa3c54")
113
- ],
114
- [
115
- (0, util_hex_encoding_1.fromHex)("61616161616161616161616161616161616161616161616161"),
116
- (0, util_hex_encoding_1.fromHex)("2f521e2a7d0bd812cbc035f4ed6806eb8d851793b04ba147e8f66b72f5d1f20f")
117
- ],
118
- [
119
- (0, util_hex_encoding_1.fromHex)("6161616161616161616161616161616161616161616161616161"),
120
- (0, util_hex_encoding_1.fromHex)("9976d549a25115dab4e36d0c1fb8f31cb07da87dd83275977360eb7dc09e88de")
121
- ],
122
- [
123
- (0, util_hex_encoding_1.fromHex)("616161616161616161616161616161616161616161616161616161"),
124
- (0, util_hex_encoding_1.fromHex)("cc0616e61cbd6e8e5e34e9fb2d320f37de915820206f5696c31f1fbd24aa16de")
125
- ],
126
- [
127
- (0, util_hex_encoding_1.fromHex)("61616161616161616161616161616161616161616161616161616161"),
128
- (0, util_hex_encoding_1.fromHex)("9c547cb8115a44883b9f70ba68f75117cd55359c92611875e386f8af98c172ab")
129
- ],
130
- [
131
- (0, util_hex_encoding_1.fromHex)("6161616161616161616161616161616161616161616161616161616161"),
132
- (0, util_hex_encoding_1.fromHex)("6913c9c7fd42fe23df8b6bcd4dbaf1c17748948d97f2980b432319c39eddcf6c")
133
- ],
134
- [
135
- (0, util_hex_encoding_1.fromHex)("616161616161616161616161616161616161616161616161616161616161"),
136
- (0, util_hex_encoding_1.fromHex)("3a54fc0cbc0b0ef48b6507b7788096235d10292dd3ae24e22f5aa062d4f9864a")
137
- ],
138
- [
139
- (0, util_hex_encoding_1.fromHex)("61616161616161616161616161616161616161616161616161616161616161"),
140
- (0, util_hex_encoding_1.fromHex)("61c60b487d1a921e0bcc9bf853dda0fb159b30bf57b2e2d2c753b00be15b5a09")
141
- ],
142
- [
143
- (0, util_hex_encoding_1.fromHex)("6161616161616161616161616161616161616161616161616161616161616161"),
144
- (0, util_hex_encoding_1.fromHex)("3ba3f5f43b92602683c19aee62a20342b084dd5971ddd33808d81a328879a547")
145
- ],
146
- [
147
- (0, util_hex_encoding_1.fromHex)("616161616161616161616161616161616161616161616161616161616161616161"),
148
- (0, util_hex_encoding_1.fromHex)("852785c805c77e71a22340a54e9d95933ed49121e7d2bf3c2d358854bc1359ea")
149
- ],
150
- [
151
- (0, util_hex_encoding_1.fromHex)("61616161616161616161616161616161616161616161616161616161616161616161"),
152
- (0, util_hex_encoding_1.fromHex)("a27c896c4859204843166af66f0e902b9c3b3ed6d2fd13d435abc020065c526f")
153
- ],
154
- [
155
- (0, util_hex_encoding_1.fromHex)("6161616161616161616161616161616161616161616161616161616161616161616161"),
156
- (0, util_hex_encoding_1.fromHex)("629362afc62c74497caed2272e30f8125ecd0965f8d8d7cfc4e260f7f8dd319d")
157
- ],
158
- [
159
- (0, util_hex_encoding_1.fromHex)("616161616161616161616161616161616161616161616161616161616161616161616161"),
160
- (0, util_hex_encoding_1.fromHex)("22c1d24bcd03e9aee9832efccd6da613fc702793178e5f12c945c7b67ddda933")
161
- ],
162
- [
163
- (0, util_hex_encoding_1.fromHex)("61616161616161616161616161616161616161616161616161616161616161616161616161"),
164
- (0, util_hex_encoding_1.fromHex)("21ec055b38ce759cd4d0f477e9bdec2c5b8199945db4439bae334a964df6246c")
165
- ],
166
- [
167
- (0, util_hex_encoding_1.fromHex)("6161616161616161616161616161616161616161616161616161616161616161616161616161"),
168
- (0, util_hex_encoding_1.fromHex)("365a9c3e2c2af0a56e47a9dac51c2c5381bf8f41273bad3175e0e619126ad087")
169
- ],
170
- [
171
- (0, util_hex_encoding_1.fromHex)("616161616161616161616161616161616161616161616161616161616161616161616161616161"),
172
- (0, util_hex_encoding_1.fromHex)("b4d5e56e929ba4cda349e9274e3603d0be246b82016bca20f363963c5f2d6845")
173
- ],
174
- [
175
- (0, util_hex_encoding_1.fromHex)("61616161616161616161616161616161616161616161616161616161616161616161616161616161"),
176
- (0, util_hex_encoding_1.fromHex)("e33cdf9c7f7120b98e8c78408953e07f2ecd183006b5606df349b4c212acf43e")
177
- ],
178
- [
179
- (0, util_hex_encoding_1.fromHex)("6161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
180
- (0, util_hex_encoding_1.fromHex)("c0f8bd4dbc2b0c03107c1c37913f2a7501f521467f45dd0fef6958e9a4692719")
181
- ],
182
- [
183
- (0, util_hex_encoding_1.fromHex)("616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
184
- (0, util_hex_encoding_1.fromHex)("7a538607fdaab9296995929f451565bbb8142e1844117322aafd2b3d76b01aff")
185
- ],
186
- [
187
- (0, util_hex_encoding_1.fromHex)("61616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
188
- (0, util_hex_encoding_1.fromHex)("66d34fba71f8f450f7e45598853e53bfc23bbd129027cbb131a2f4ffd7878cd0")
189
- ],
190
- [
191
- (0, util_hex_encoding_1.fromHex)("6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
192
- (0, util_hex_encoding_1.fromHex)("16849877c6c21ef0bfa68e4f6747300ddb171b170b9f00e189edc4c2fc4db93e")
193
- ],
194
- [
195
- (0, util_hex_encoding_1.fromHex)("616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
196
- (0, util_hex_encoding_1.fromHex)("52789e3423b72beeb898456a4f49662e46b0cbb960784c5ef4b1399d327e7c27")
197
- ],
198
- [
199
- (0, util_hex_encoding_1.fromHex)("61616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
200
- (0, util_hex_encoding_1.fromHex)("6643110c5628fff59edf76d82d5bf573bf800f16a4d65dfb1e5d6f1a46296d0b")
201
- ],
202
- [
203
- (0, util_hex_encoding_1.fromHex)("6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
204
- (0, util_hex_encoding_1.fromHex)("11eaed932c6c6fddfc2efc394e609facf4abe814fc6180d03b14fce13a07d0e5")
205
- ],
206
- [
207
- (0, util_hex_encoding_1.fromHex)("616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
208
- (0, util_hex_encoding_1.fromHex)("97daac0ee9998dfcad6c9c0970da5ca411c86233a944c25b47566f6a7bc1ddd5")
209
- ],
210
- [
211
- (0, util_hex_encoding_1.fromHex)("61616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
212
- (0, util_hex_encoding_1.fromHex)("8f9bec6a62dd28ebd36d1227745592de6658b36974a3bb98a4c582f683ea6c42")
213
- ],
214
- [
215
- (0, util_hex_encoding_1.fromHex)("6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
216
- (0, util_hex_encoding_1.fromHex)("160b4e433e384e05e537dc59b467f7cb2403f0214db15c5db58862a3f1156d2e")
217
- ],
218
- [
219
- (0, util_hex_encoding_1.fromHex)("616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
220
- (0, util_hex_encoding_1.fromHex)("bfc5fe0e360152ca98c50fab4ed7e3078c17debc2917740d5000913b686ca129")
221
- ],
222
- [
223
- (0, util_hex_encoding_1.fromHex)("61616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
224
- (0, util_hex_encoding_1.fromHex)("6c1b3dc7a706b9dc81352a6716b9c666c608d8626272c64b914ab05572fc6e84")
225
- ],
226
- [
227
- (0, util_hex_encoding_1.fromHex)("6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
228
- (0, util_hex_encoding_1.fromHex)("abe346a7259fc90b4c27185419628e5e6af6466b1ae9b5446cac4bfc26cf05c4")
229
- ],
230
- [
231
- (0, util_hex_encoding_1.fromHex)("616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
232
- (0, util_hex_encoding_1.fromHex)("a3f01b6939256127582ac8ae9fb47a382a244680806a3f613a118851c1ca1d47")
233
- ],
234
- [
235
- (0, util_hex_encoding_1.fromHex)("61616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
236
- (0, util_hex_encoding_1.fromHex)("9f4390f8d30c2dd92ec9f095b65e2b9ae9b0a925a5258e241c9f1e910f734318")
237
- ],
238
- [
239
- (0, util_hex_encoding_1.fromHex)("6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
240
- (0, util_hex_encoding_1.fromHex)("b35439a4ac6f0948b6d6f9e3c6af0f5f590ce20f1bde7090ef7970686ec6738a")
241
- ],
242
- [
243
- (0, util_hex_encoding_1.fromHex)("616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
244
- (0, util_hex_encoding_1.fromHex)("f13b2d724659eb3bf47f2dd6af1accc87b81f09f59f2b75e5c0bed6589dfe8c6")
245
- ],
246
- [
247
- (0, util_hex_encoding_1.fromHex)("61616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
248
- (0, util_hex_encoding_1.fromHex)("d5c039b748aa64665782974ec3dc3025c042edf54dcdc2b5de31385b094cb678")
249
- ],
250
- [
251
- (0, util_hex_encoding_1.fromHex)("6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
252
- (0, util_hex_encoding_1.fromHex)("111bb261277afd65f0744b247cd3e47d386d71563d0ed995517807d5ebd4fba3")
253
- ],
254
- [
255
- (0, util_hex_encoding_1.fromHex)("616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
256
- (0, util_hex_encoding_1.fromHex)("11ee391211c6256460b6ed375957fadd8061cafbb31daf967db875aebd5aaad4")
257
- ],
258
- [
259
- (0, util_hex_encoding_1.fromHex)("61616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
260
- (0, util_hex_encoding_1.fromHex)("35d5fc17cfbbadd00f5e710ada39f194c5ad7c766ad67072245f1fad45f0f530")
261
- ],
262
- [
263
- (0, util_hex_encoding_1.fromHex)("6161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
264
- (0, util_hex_encoding_1.fromHex)("f506898cc7c2e092f9eb9fadae7ba50383f5b46a2a4fe5597dbb553a78981268")
265
- ],
266
- [
267
- (0, util_hex_encoding_1.fromHex)("616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
268
- (0, util_hex_encoding_1.fromHex)("7d3e74a05d7db15bce4ad9ec0658ea98e3f06eeecf16b4c6fff2da457ddc2f34")
269
- ],
270
- [
271
- (0, util_hex_encoding_1.fromHex)("61616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161"),
272
- (0, util_hex_encoding_1.fromHex)("ffe054fe7ae0cb6dc65c3af9b61d5209f439851db43d0ba5997337df154668eb")
273
- ],
274
- [
275
- (0, util_hex_encoding_1.fromHex)("de188941a3375d3a8a061e67576e926dc71a7fa3f0cceb97452b4d3227965f9ea8cc75076d9fb9c5417aa5cb30fc22198b34982dbb629e"),
276
- (0, util_hex_encoding_1.fromHex)("038051e9c324393bd1ca1978dd0952c2aa3742ca4f1bd5cd4611cea83892d382")
277
- ],
278
- [
279
- millionChars,
280
- (0, util_hex_encoding_1.fromHex)("cdc76e5c9914fb9281a1c7e284d73e67f1809a48a497200e046d39ccc7112cd0")
281
- ],
282
- [
283
- (0, util_hex_encoding_1.fromHex)("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"),
284
- (0, util_hex_encoding_1.fromHex)("45ad4b37c6e2fc0a2cfcc1b5da524132ec707615c2cae1dbbc43c97aa521db81")
285
- ]
286
- ];
287
- /**
288
- * @see https://tools.ietf.org/html/rfc4231
289
- */
290
- exports.hmacTestVectors = [
291
- [
292
- (0, util_hex_encoding_1.fromHex)("0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b"),
293
- (0, util_hex_encoding_1.fromHex)("4869205468657265"),
294
- (0, util_hex_encoding_1.fromHex)("b0344c61d8db38535ca8afceaf0bf12b881dc200c9833da726e9376c2e32cff7")
295
- ],
296
- [
297
- (0, util_hex_encoding_1.fromHex)("4a656665"),
298
- (0, util_hex_encoding_1.fromHex)("7768617420646f2079612077616e7420666f72206e6f7468696e673f"),
299
- (0, util_hex_encoding_1.fromHex)("5bdcc146bf60754e6a042426089575c75a003f089d2739839dec58b964ec3843")
300
- ],
301
- [
302
- (0, util_hex_encoding_1.fromHex)("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"),
303
- (0, util_hex_encoding_1.fromHex)("dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd"),
304
- (0, util_hex_encoding_1.fromHex)("773ea91e36800e46854db8ebd09181a72959098b3ef8c122d9635514ced565fe")
305
- ],
306
- [
307
- (0, util_hex_encoding_1.fromHex)("0102030405060708090a0b0c0d0e0f10111213141516171819"),
308
- (0, util_hex_encoding_1.fromHex)("cdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcdcd"),
309
- (0, util_hex_encoding_1.fromHex)("82558a389a443c0ea4cc819899f2083a85f0faa3e578f8077a2e3ff46729665b")
310
- ],
311
- [
312
- (0, util_hex_encoding_1.fromHex)("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"),
313
- (0, util_hex_encoding_1.fromHex)("54657374205573696e67204c6172676572205468616e20426c6f636b2d53697a65204b6579202d2048617368204b6579204669727374"),
314
- (0, util_hex_encoding_1.fromHex)("60e431591ee0b67f0d8a26aacbf5b77f8e0bc6213728c5140546040f0ee37f54")
315
- ],
316
- [
317
- (0, util_hex_encoding_1.fromHex)("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"),
318
- (0, util_hex_encoding_1.fromHex)("5468697320697320612074657374207573696e672061206c6172676572207468616e20626c6f636b2d73697a65206b657920616e642061206c6172676572207468616e20626c6f636b2d73697a6520646174612e20546865206b6579206e6565647320746f20626520686173686564206265666f7265206265696e6720757365642062792074686520484d414320616c676f726974686d2e"),
319
- (0, util_hex_encoding_1.fromHex)("9b09ffa71b942fcb27635fbcd5b0e944bfdc63644f0713938a7f51535c3a35e2")
320
- ]
321
- ];
322
- //# sourceMappingURL=knownHashes.fixture.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"knownHashes.fixture.js","sourceRoot":"","sources":["../src/knownHashes.fixture.ts"],"names":[],"mappings":";;;AAAA,gEAAqD;AAErD,IAAM,YAAY,GAAG,IAAI,UAAU,CAAC,OAAO,CAAC,CAAC;AAC7C,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,EAAE,CAAC,EAAE,EAAE;IAChC,YAAY,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC;CACtB;AAEY,QAAA,eAAe,GAAoC;IAC9D;QACE,UAAU,CAAC,IAAI,CAAC,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;QAC7B,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAI,UAAU,CAAC,CAAC,CAAC;QACjB,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,IAAI,CAAC;QACb,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,MAAM,CAAC;QACf,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,QAAQ,CAAC;QACjB,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,UAAU,CAAC;QACnB,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,YAAY,CAAC;QACrB,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,cAAc,CAAC;QACvB,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,gBAAgB,CAAC;QACzB,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,kBAAkB,CAAC;QAC3B,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,oBAAoB,CAAC;QAC7B,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,sBAAsB,CAAC;QAC/B,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,wBAAwB,CAAC;QACjC,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,0BAA0B,CAAC;QACnC,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,4BAA4B,CAAC;QACrC,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,8BAA8B,CAAC;QACvC,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,gCAAgC,CAAC;QACzC,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,kCAAkC,CAAC;QAC3C,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,oCAAoC,CAAC;QAC7C,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,sCAAsC,CAAC;QAC/C,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,wCAAwC,CAAC;QACjD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,0CAA0C,CAAC;QACnD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,4CAA4C,CAAC;QACrD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,8CAA8C,CAAC;QACvD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,gDAAgD,CAAC;QACzD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,kDAAkD,CAAC;QAC3D,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,oDAAoD,CAAC;QAC7D,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,sDAAsD,CAAC;QAC/D,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,wDAAwD,CAAC;QACjE,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,0DAA0D,CAAC;QACnE,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,4DAA4D,CAAC;QACrE,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,8DAA8D,CAAC;QACvE,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,gEAAgE,CAAC;QACzE,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,kEAAkE,CAAC;QAC3E,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,oEAAoE,CACrE;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,sEAAsE,CACvE;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,wEAAwE,CACzE;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,0EAA0E,CAC3E;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,4EAA4E,CAC7E;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,8EAA8E,CAC/E;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,gFAAgF,CACjF;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,kFAAkF,CACnF;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,oFAAoF,CACrF;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,sFAAsF,CACvF;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,wFAAwF,CACzF;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,0FAA0F,CAC3F;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,4FAA4F,CAC7F;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,8FAA8F,CAC/F;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,gGAAgG,CACjG;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,kGAAkG,CACnG;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,oGAAoG,CACrG;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,sGAAsG,CACvG;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,wGAAwG,CACzG;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,0GAA0G,CAC3G;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,4GAA4G,CAC7G;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,8GAA8G,CAC/G;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,gHAAgH,CACjH;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,kHAAkH,CACnH;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,oHAAoH,CACrH;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,sHAAsH,CACvH;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,wHAAwH,CACzH;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,0HAA0H,CAC3H;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,4HAA4H,CAC7H;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,8HAA8H,CAC/H;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,gIAAgI,CACjI;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,kIAAkI,CACnI;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,gHAAgH,CACjH;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,YAAY;QACZ,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,wQAAwQ,CACzQ;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;CACF,CAAC;AAEF;;GAEG;AACU,QAAA,eAAe,GAAgD;IAC1E;QACE,IAAA,2BAAO,EAAC,0CAA0C,CAAC;QACnD,IAAA,2BAAO,EAAC,kBAAkB,CAAC;QAC3B,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,UAAU,CAAC;QACnB,IAAA,2BAAO,EAAC,0DAA0D,CAAC;QACnE,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,0CAA0C,CAAC;QACnD,IAAA,2BAAO,EACL,sGAAsG,CACvG;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EAAC,oDAAoD,CAAC;QAC7D,IAAA,2BAAO,EACL,sGAAsG,CACvG;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,wQAAwQ,CACzQ;QACD,IAAA,2BAAO,EACL,8GAA8G,CAC/G;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;IACD;QACE,IAAA,2BAAO,EACL,wQAAwQ,CACzQ;QACD,IAAA,2BAAO,EACL,kTAAkT,CACnT;QACD,IAAA,2BAAO,EAAC,kEAAkE,CAAC;KAC5E;CACF,CAAC"}
@@ -1,15 +0,0 @@
1
- /*! *****************************************************************************
2
- Copyright (c) Microsoft Corporation.
3
-
4
- Permission to use, copy, modify, and/or distribute this software for any
5
- purpose with or without fee is hereby granted.
6
-
7
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
8
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
9
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
10
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
11
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
12
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
13
- PERFORMANCE OF THIS SOFTWARE.
14
- ***************************************************************************** */
15
-
@@ -1,12 +0,0 @@
1
- Copyright (c) Microsoft Corporation.
2
-
3
- Permission to use, copy, modify, and/or distribute this software for any
4
- purpose with or without fee is hereby granted.
5
-
6
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
7
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
8
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
9
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
10
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
11
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
12
- PERFORMANCE OF THIS SOFTWARE.
@@ -1,142 +0,0 @@
1
- # tslib
2
-
3
- This is a runtime library for [TypeScript](http://www.typescriptlang.org/) that contains all of the TypeScript helper functions.
4
-
5
- This library is primarily used by the `--importHelpers` flag in TypeScript.
6
- When using `--importHelpers`, a module that uses helper functions like `__extends` and `__assign` in the following emitted file:
7
-
8
- ```ts
9
- var __assign = (this && this.__assign) || Object.assign || function(t) {
10
- for (var s, i = 1, n = arguments.length; i < n; i++) {
11
- s = arguments[i];
12
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
13
- t[p] = s[p];
14
- }
15
- return t;
16
- };
17
- exports.x = {};
18
- exports.y = __assign({}, exports.x);
19
-
20
- ```
21
-
22
- will instead be emitted as something like the following:
23
-
24
- ```ts
25
- var tslib_1 = require("tslib");
26
- exports.x = {};
27
- exports.y = tslib_1.__assign({}, exports.x);
28
- ```
29
-
30
- Because this can avoid duplicate declarations of things like `__extends`, `__assign`, etc., this means delivering users smaller files on average, as well as less runtime overhead.
31
- For optimized bundles with TypeScript, you should absolutely consider using `tslib` and `--importHelpers`.
32
-
33
- # Installing
34
-
35
- For the latest stable version, run:
36
-
37
- ## npm
38
-
39
- ```sh
40
- # TypeScript 2.3.3 or later
41
- npm install tslib
42
-
43
- # TypeScript 2.3.2 or earlier
44
- npm install tslib@1.6.1
45
- ```
46
-
47
- ## yarn
48
-
49
- ```sh
50
- # TypeScript 2.3.3 or later
51
- yarn add tslib
52
-
53
- # TypeScript 2.3.2 or earlier
54
- yarn add tslib@1.6.1
55
- ```
56
-
57
- ## bower
58
-
59
- ```sh
60
- # TypeScript 2.3.3 or later
61
- bower install tslib
62
-
63
- # TypeScript 2.3.2 or earlier
64
- bower install tslib@1.6.1
65
- ```
66
-
67
- ## JSPM
68
-
69
- ```sh
70
- # TypeScript 2.3.3 or later
71
- jspm install tslib
72
-
73
- # TypeScript 2.3.2 or earlier
74
- jspm install tslib@1.6.1
75
- ```
76
-
77
- # Usage
78
-
79
- Set the `importHelpers` compiler option on the command line:
80
-
81
- ```
82
- tsc --importHelpers file.ts
83
- ```
84
-
85
- or in your tsconfig.json:
86
-
87
- ```json
88
- {
89
- "compilerOptions": {
90
- "importHelpers": true
91
- }
92
- }
93
- ```
94
-
95
- #### For bower and JSPM users
96
-
97
- You will need to add a `paths` mapping for `tslib`, e.g. For Bower users:
98
-
99
- ```json
100
- {
101
- "compilerOptions": {
102
- "module": "amd",
103
- "importHelpers": true,
104
- "baseUrl": "./",
105
- "paths": {
106
- "tslib" : ["bower_components/tslib/tslib.d.ts"]
107
- }
108
- }
109
- }
110
- ```
111
-
112
- For JSPM users:
113
-
114
- ```json
115
- {
116
- "compilerOptions": {
117
- "module": "system",
118
- "importHelpers": true,
119
- "baseUrl": "./",
120
- "paths": {
121
- "tslib" : ["jspm_packages/npm/tslib@1.[version].0/tslib.d.ts"]
122
- }
123
- }
124
- }
125
- ```
126
-
127
-
128
- # Contribute
129
-
130
- There are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.
131
-
132
- * [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.
133
- * Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).
134
- * Engage with other TypeScript users and developers on [StackOverflow](http://stackoverflow.com/questions/tagged/typescript).
135
- * Join the [#typescript](http://twitter.com/#!/search/realtime/%23typescript) discussion on Twitter.
136
- * [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).
137
-
138
- # Documentation
139
-
140
- * [Quick tutorial](http://www.typescriptlang.org/Tutorial)
141
- * [Programming handbook](http://www.typescriptlang.org/Handbook)
142
- * [Homepage](http://www.typescriptlang.org/)
@@ -1,51 +0,0 @@
1
- import tslib from '../tslib.js';
2
- const {
3
- __extends,
4
- __assign,
5
- __rest,
6
- __decorate,
7
- __param,
8
- __metadata,
9
- __awaiter,
10
- __generator,
11
- __exportStar,
12
- __createBinding,
13
- __values,
14
- __read,
15
- __spread,
16
- __spreadArrays,
17
- __await,
18
- __asyncGenerator,
19
- __asyncDelegator,
20
- __asyncValues,
21
- __makeTemplateObject,
22
- __importStar,
23
- __importDefault,
24
- __classPrivateFieldGet,
25
- __classPrivateFieldSet,
26
- } = tslib;
27
- export {
28
- __extends,
29
- __assign,
30
- __rest,
31
- __decorate,
32
- __param,
33
- __metadata,
34
- __awaiter,
35
- __generator,
36
- __exportStar,
37
- __createBinding,
38
- __values,
39
- __read,
40
- __spread,
41
- __spreadArrays,
42
- __await,
43
- __asyncGenerator,
44
- __asyncDelegator,
45
- __asyncValues,
46
- __makeTemplateObject,
47
- __importStar,
48
- __importDefault,
49
- __classPrivateFieldGet,
50
- __classPrivateFieldSet,
51
- };
@@ -1,37 +0,0 @@
1
- {
2
- "name": "tslib",
3
- "author": "Microsoft Corp.",
4
- "homepage": "https://www.typescriptlang.org/",
5
- "version": "1.14.1",
6
- "license": "0BSD",
7
- "description": "Runtime library for TypeScript helper functions",
8
- "keywords": [
9
- "TypeScript",
10
- "Microsoft",
11
- "compiler",
12
- "language",
13
- "javascript",
14
- "tslib",
15
- "runtime"
16
- ],
17
- "bugs": {
18
- "url": "https://github.com/Microsoft/TypeScript/issues"
19
- },
20
- "repository": {
21
- "type": "git",
22
- "url": "https://github.com/Microsoft/tslib.git"
23
- },
24
- "main": "tslib.js",
25
- "module": "tslib.es6.js",
26
- "jsnext:main": "tslib.es6.js",
27
- "typings": "tslib.d.ts",
28
- "sideEffects": false,
29
- "exports": {
30
- ".": {
31
- "module": "./tslib.es6.js",
32
- "import": "./modules/index.js",
33
- "default": "./tslib.js"
34
- },
35
- "./": "./"
36
- }
37
- }
@@ -1,23 +0,0 @@
1
- // When on node 14, it validates that all of the commonjs exports
2
- // are correctly re-exported for es modules importers.
3
-
4
- const nodeMajor = Number(process.version.split(".")[0].slice(1))
5
- if (nodeMajor < 14) {
6
- console.log("Skipping because node does not support module exports.")
7
- process.exit(0)
8
- }
9
-
10
- // ES Modules import via the ./modules folder
11
- import * as esTSLib from "../../modules/index.js"
12
-
13
- // Force a commonjs resolve
14
- import { createRequire } from "module";
15
- const commonJSTSLib = createRequire(import.meta.url)("../../tslib.js");
16
-
17
- for (const key in commonJSTSLib) {
18
- if (commonJSTSLib.hasOwnProperty(key)) {
19
- if(!esTSLib[key]) throw new Error(`ESModules is missing ${key} - it needs to be re-exported in ./modules/index.js`)
20
- }
21
- }
22
-
23
- console.log("All exports in commonjs are available for es module consumers.")
@@ -1,6 +0,0 @@
1
- {
2
- "type": "module",
3
- "scripts": {
4
- "test": "node index.js"
5
- }
6
- }