@aws/lsp-codewhisperer 0.0.13 → 0.0.15

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 (2043) hide show
  1. package/CHANGELOG.md +17 -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 +2 -0
  12. package/out/language-server/chat/chatController.js +22 -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.js.map +1 -1
  21. package/out/language-server/chat/contexts/utils.js +2 -3
  22. package/out/language-server/chat/contexts/utils.js.map +1 -1
  23. package/out/language-server/chat/quickActions.js +1 -1
  24. package/out/language-server/chat/quickActions.js.map +1 -1
  25. package/out/language-server/chat/telemetry/chatTelemetryController.js +2 -2
  26. package/out/language-server/chat/telemetry/chatTelemetryController.js.map +1 -1
  27. package/out/language-server/chat/telemetry/clientTelemetry.js +4 -4
  28. package/out/language-server/chat/telemetry/clientTelemetry.js.map +1 -1
  29. package/out/language-server/chat/utils.js +3 -4
  30. package/out/language-server/chat/utils.js.map +1 -1
  31. package/out/language-server/codeWhispererSecurityScanServer.js.map +1 -1
  32. package/out/language-server/codeWhispererServer.js +51 -37
  33. package/out/language-server/codeWhispererServer.js.map +1 -1
  34. package/out/language-server/codeWhispererServer.test.js +56 -0
  35. package/out/language-server/codeWhispererServer.test.js.map +1 -1
  36. package/out/language-server/codeWhispererService.d.ts +5 -0
  37. package/out/language-server/codeWhispererService.js +11 -0
  38. package/out/language-server/codeWhispererService.js.map +1 -1
  39. package/out/language-server/configuration/qConfigurationServer.d.ts +4 -0
  40. package/out/language-server/configuration/qConfigurationServer.js +31 -0
  41. package/out/language-server/configuration/qConfigurationServer.js.map +1 -0
  42. package/out/language-server/dependencyGraph/commonUtil.js +2 -3
  43. package/out/language-server/dependencyGraph/commonUtil.js.map +1 -1
  44. package/out/language-server/dependencyGraph/csharpDependencyGraph.js.map +1 -1
  45. package/out/language-server/dependencyGraph/csharpDependencyGraph.test.js +1 -0
  46. package/out/language-server/dependencyGraph/csharpDependencyGraph.test.js.map +1 -1
  47. package/out/language-server/dependencyGraph/dependencyGraph.d.ts +0 -1
  48. package/out/language-server/dependencyGraph/dependencyGraph.js.map +1 -1
  49. package/out/language-server/dependencyGraph/dependencyGraphFactory.js.map +1 -1
  50. package/out/language-server/dependencyGraph/gitIgnoreFilter.js +1 -1
  51. package/out/language-server/dependencyGraph/gitIgnoreFilter.js.map +1 -1
  52. package/out/language-server/languageDetection.js.map +1 -1
  53. package/out/language-server/languageDetection.test.js.map +1 -1
  54. package/out/language-server/mergeRightUtils.js +2 -3
  55. package/out/language-server/mergeRightUtils.js.map +1 -1
  56. package/out/language-server/models/constants.d.ts +15 -0
  57. package/out/language-server/models/constants.js +22 -0
  58. package/out/language-server/models/constants.js.map +1 -0
  59. package/out/language-server/models/model.d.ts +16 -0
  60. package/out/language-server/models/model.js +5 -0
  61. package/out/language-server/models/model.js.map +1 -0
  62. package/out/language-server/netTransform/artifactManager.d.ts +3 -5
  63. package/out/language-server/netTransform/artifactManager.js +42 -42
  64. package/out/language-server/netTransform/artifactManager.js.map +1 -1
  65. package/out/language-server/netTransform/converter.js +4 -4
  66. package/out/language-server/netTransform/converter.js.map +1 -1
  67. package/out/language-server/netTransform/metrics.js.map +1 -1
  68. package/out/language-server/netTransform/models.d.ts +1 -0
  69. package/out/language-server/netTransform/models.js +2 -2
  70. package/out/language-server/netTransform/models.js.map +1 -1
  71. package/out/language-server/netTransform/tests/converter.test.js.map +1 -1
  72. package/out/language-server/netTransform/tests/transformHandler.test.js +2 -2
  73. package/out/language-server/netTransform/tests/transformHandler.test.js.map +1 -1
  74. package/out/language-server/netTransform/transformHandler.d.ts +4 -2
  75. package/out/language-server/netTransform/transformHandler.js +41 -16
  76. package/out/language-server/netTransform/transformHandler.js.map +1 -1
  77. package/out/language-server/netTransform/validation.js +9 -10
  78. package/out/language-server/netTransform/validation.js.map +1 -1
  79. package/out/language-server/netTransformServer.js +3 -1
  80. package/out/language-server/netTransformServer.js.map +1 -1
  81. package/out/language-server/proxy-server.d.ts +1 -0
  82. package/out/language-server/proxy-server.js +18 -1
  83. package/out/language-server/proxy-server.js.map +1 -1
  84. package/out/language-server/qChatServer.js +2 -0
  85. package/out/language-server/qChatServer.js.map +1 -1
  86. package/out/language-server/securityScan/securityScanDiagnosticsProvider.js.map +1 -1
  87. package/out/language-server/securityScan/securityScanHandler.d.ts +0 -1
  88. package/out/language-server/securityScan/securityScanHandler.js.map +1 -1
  89. package/out/language-server/session/sessionManager.d.ts +3 -0
  90. package/out/language-server/session/sessionManager.js +2 -0
  91. package/out/language-server/session/sessionManager.js.map +1 -1
  92. package/out/language-server/session/sessionManager.test.js +2 -2
  93. package/out/language-server/session/sessionManager.test.js.map +1 -1
  94. package/out/language-server/telemetry/codeDiffTracker.js +6 -4
  95. package/out/language-server/telemetry/codeDiffTracker.js.map +1 -1
  96. package/out/language-server/telemetry/codeDiffTracker.test.js.map +1 -1
  97. package/out/language-server/telemetry/codePercentage.js.map +1 -1
  98. package/out/language-server/telemetry/types.d.ts +10 -0
  99. package/out/language-server/telemetry/types.js +2 -2
  100. package/out/language-server/telemetry/types.js.map +1 -1
  101. package/out/language-server/telemetry/userTriggerDecision.test.js +20 -17
  102. package/out/language-server/telemetry/userTriggerDecision.test.js.map +1 -1
  103. package/out/language-server/testUtils.d.ts +6 -0
  104. package/out/language-server/testUtils.js +74 -1
  105. package/out/language-server/testUtils.js.map +1 -1
  106. package/out/language-server/utilities/filesystemUtilities.d.ts +8 -0
  107. package/out/language-server/utilities/filesystemUtilities.js +30 -0
  108. package/out/language-server/utilities/filesystemUtilities.js.map +1 -0
  109. package/out/language-server/utilities/filesystemUtilities.test.js +85 -0
  110. package/out/language-server/utilities/filesystemUtilities.test.js.map +1 -0
  111. package/out/language-server/{pathUtils.d.ts → utilities/pathUtils.d.ts} +10 -0
  112. package/out/language-server/{pathUtils.js → utilities/pathUtils.js} +31 -4
  113. package/out/language-server/utilities/pathUtils.js.map +1 -0
  114. package/out/language-server/utilities/pathUtils.test.js +43 -0
  115. package/out/language-server/utilities/pathUtils.test.js.map +1 -0
  116. package/out/language-server/utilities/supplementalContextUtil/codeParsingUtil.d.ts +13 -0
  117. package/out/language-server/utilities/supplementalContextUtil/codeParsingUtil.js +48 -0
  118. package/out/language-server/utilities/supplementalContextUtil/codeParsingUtil.js.map +1 -0
  119. package/out/language-server/utilities/supplementalContextUtil/codeParsingUtil.test.d.ts +5 -0
  120. package/out/language-server/utilities/supplementalContextUtil/codeParsingUtil.test.js +49 -0
  121. package/out/language-server/utilities/supplementalContextUtil/codeParsingUtil.test.js.map +1 -0
  122. package/out/language-server/utilities/supplementalContextUtil/crossFileContextUtil.d.ts +18 -0
  123. package/out/language-server/utilities/supplementalContextUtil/crossFileContextUtil.js +205 -0
  124. package/out/language-server/utilities/supplementalContextUtil/crossFileContextUtil.js.map +1 -0
  125. package/out/language-server/utilities/supplementalContextUtil/crossFileContextUtil.test.js +157 -0
  126. package/out/language-server/utilities/supplementalContextUtil/crossFileContextUtil.test.js.map +1 -0
  127. package/out/language-server/utilities/supplementalContextUtil/rankBm25.d.ts +32 -0
  128. package/out/language-server/utilities/supplementalContextUtil/rankBm25.js +113 -0
  129. package/out/language-server/utilities/supplementalContextUtil/rankBm25.js.map +1 -0
  130. package/out/language-server/utilities/supplementalContextUtil/supplementalContextUtil.d.ts +5 -0
  131. package/out/language-server/utilities/supplementalContextUtil/supplementalContextUtil.js +57 -0
  132. package/out/language-server/utilities/supplementalContextUtil/supplementalContextUtil.js.map +1 -0
  133. package/out/language-server/utilities/supplementalContextUtil/supplementalContextUtil.test.js +88 -0
  134. package/out/language-server/utilities/supplementalContextUtil/supplementalContextUtil.test.js.map +1 -0
  135. package/out/language-server/utilities/textUtils.d.ts +1 -0
  136. package/out/language-server/utilities/textUtils.js +12 -0
  137. package/out/language-server/utilities/textUtils.js.map +1 -0
  138. package/out/language-server/utilities/textUtils.test.js +21 -0
  139. package/out/language-server/utilities/textUtils.test.js.map +1 -0
  140. package/out/language-server/utils.js +8 -8
  141. package/out/language-server/utils.js.map +1 -1
  142. package/package.json +4 -3
  143. package/node_modules/@aws-crypto/crc32/CHANGELOG.md +0 -76
  144. package/node_modules/@aws-crypto/crc32/LICENSE +0 -201
  145. package/node_modules/@aws-crypto/crc32/README.md +0 -16
  146. package/node_modules/@aws-crypto/crc32/build/aws_crc32.d.ts +0 -7
  147. package/node_modules/@aws-crypto/crc32/build/aws_crc32.js +0 -31
  148. package/node_modules/@aws-crypto/crc32/build/aws_crc32.js.map +0 -1
  149. package/node_modules/@aws-crypto/crc32/build/index.d.ts +0 -7
  150. package/node_modules/@aws-crypto/crc32/build/index.js +0 -108
  151. package/node_modules/@aws-crypto/crc32/build/index.js.map +0 -1
  152. package/node_modules/@aws-crypto/crc32/node_modules/tslib/CopyrightNotice.txt +0 -15
  153. package/node_modules/@aws-crypto/crc32/node_modules/tslib/LICENSE.txt +0 -12
  154. package/node_modules/@aws-crypto/crc32/node_modules/tslib/README.md +0 -142
  155. package/node_modules/@aws-crypto/crc32/node_modules/tslib/modules/index.js +0 -51
  156. package/node_modules/@aws-crypto/crc32/node_modules/tslib/modules/package.json +0 -3
  157. package/node_modules/@aws-crypto/crc32/node_modules/tslib/package.json +0 -37
  158. package/node_modules/@aws-crypto/crc32/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +0 -23
  159. package/node_modules/@aws-crypto/crc32/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +0 -6
  160. package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.d.ts +0 -37
  161. package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.es6.html +0 -1
  162. package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.es6.js +0 -218
  163. package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.html +0 -1
  164. package/node_modules/@aws-crypto/crc32/node_modules/tslib/tslib.js +0 -284
  165. package/node_modules/@aws-crypto/crc32/package.json +0 -28
  166. package/node_modules/@aws-crypto/crc32/src/aws_crc32.ts +0 -24
  167. package/node_modules/@aws-crypto/crc32/src/index.ts +0 -92
  168. package/node_modules/@aws-crypto/crc32/tsconfig.json +0 -23
  169. package/node_modules/@aws-crypto/ie11-detection/CHANGELOG.md +0 -46
  170. package/node_modules/@aws-crypto/ie11-detection/LICENSE +0 -202
  171. package/node_modules/@aws-crypto/ie11-detection/README.md +0 -20
  172. package/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.d.ts +0 -19
  173. package/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js +0 -3
  174. package/node_modules/@aws-crypto/ie11-detection/build/CryptoOperation.js.map +0 -1
  175. package/node_modules/@aws-crypto/ie11-detection/build/Key.d.ts +0 -12
  176. package/node_modules/@aws-crypto/ie11-detection/build/Key.js +0 -3
  177. package/node_modules/@aws-crypto/ie11-detection/build/Key.js.map +0 -1
  178. package/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.d.ts +0 -12
  179. package/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js +0 -3
  180. package/node_modules/@aws-crypto/ie11-detection/build/KeyOperation.js.map +0 -1
  181. package/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.d.ts +0 -33
  182. package/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js +0 -3
  183. package/node_modules/@aws-crypto/ie11-detection/build/MsSubtleCrypto.js.map +0 -1
  184. package/node_modules/@aws-crypto/ie11-detection/build/MsWindow.d.ts +0 -21
  185. package/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js +0 -32
  186. package/node_modules/@aws-crypto/ie11-detection/build/MsWindow.js.map +0 -1
  187. package/node_modules/@aws-crypto/ie11-detection/build/index.d.ts +0 -5
  188. package/node_modules/@aws-crypto/ie11-detection/build/index.js +0 -9
  189. package/node_modules/@aws-crypto/ie11-detection/build/index.js.map +0 -1
  190. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/CopyrightNotice.txt +0 -15
  191. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/LICENSE.txt +0 -12
  192. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/README.md +0 -142
  193. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/modules/index.js +0 -51
  194. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/modules/package.json +0 -3
  195. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/package.json +0 -37
  196. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +0 -23
  197. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +0 -6
  198. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.d.ts +0 -37
  199. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.html +0 -1
  200. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.es6.js +0 -218
  201. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.html +0 -1
  202. package/node_modules/@aws-crypto/ie11-detection/node_modules/tslib/tslib.js +0 -284
  203. package/node_modules/@aws-crypto/ie11-detection/package.json +0 -26
  204. package/node_modules/@aws-crypto/ie11-detection/src/CryptoOperation.ts +0 -21
  205. package/node_modules/@aws-crypto/ie11-detection/src/Key.ts +0 -12
  206. package/node_modules/@aws-crypto/ie11-detection/src/KeyOperation.ts +0 -13
  207. package/node_modules/@aws-crypto/ie11-detection/src/MsSubtleCrypto.ts +0 -88
  208. package/node_modules/@aws-crypto/ie11-detection/src/MsWindow.ts +0 -59
  209. package/node_modules/@aws-crypto/ie11-detection/src/index.ts +0 -5
  210. package/node_modules/@aws-crypto/ie11-detection/tsconfig.json +0 -17
  211. package/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +0 -88
  212. package/node_modules/@aws-crypto/sha256-browser/LICENSE +0 -202
  213. package/node_modules/@aws-crypto/sha256-browser/README.md +0 -31
  214. package/node_modules/@aws-crypto/sha256-browser/build/constants.d.ts +0 -10
  215. package/node_modules/@aws-crypto/sha256-browser/build/constants.js +0 -43
  216. package/node_modules/@aws-crypto/sha256-browser/build/constants.js.map +0 -1
  217. package/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.d.ts +0 -8
  218. package/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js +0 -35
  219. package/node_modules/@aws-crypto/sha256-browser/build/crossPlatformSha256.js.map +0 -1
  220. package/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.d.ts +0 -9
  221. package/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js +0 -80
  222. package/node_modules/@aws-crypto/sha256-browser/build/ie11Sha256.js.map +0 -1
  223. package/node_modules/@aws-crypto/sha256-browser/build/index.d.ts +0 -3
  224. package/node_modules/@aws-crypto/sha256-browser/build/index.js +0 -10
  225. package/node_modules/@aws-crypto/sha256-browser/build/index.js.map +0 -1
  226. package/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.d.ts +0 -2
  227. package/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js +0 -11
  228. package/node_modules/@aws-crypto/sha256-browser/build/isEmptyData.js.map +0 -1
  229. package/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.d.ts +0 -10
  230. package/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js +0 -56
  231. package/node_modules/@aws-crypto/sha256-browser/build/webCryptoSha256.js.map +0 -1
  232. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/CopyrightNotice.txt +0 -15
  233. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/LICENSE.txt +0 -12
  234. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/README.md +0 -142
  235. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/modules/index.js +0 -51
  236. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/modules/package.json +0 -3
  237. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/package.json +0 -37
  238. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +0 -23
  239. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +0 -6
  240. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.d.ts +0 -37
  241. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.html +0 -1
  242. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.es6.js +0 -218
  243. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.html +0 -1
  244. package/node_modules/@aws-crypto/sha256-browser/node_modules/tslib/tslib.js +0 -284
  245. package/node_modules/@aws-crypto/sha256-browser/package.json +0 -33
  246. package/node_modules/@aws-crypto/sha256-browser/src/constants.ts +0 -41
  247. package/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +0 -34
  248. package/node_modules/@aws-crypto/sha256-browser/src/ie11Sha256.ts +0 -108
  249. package/node_modules/@aws-crypto/sha256-browser/src/index.ts +0 -3
  250. package/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +0 -9
  251. package/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +0 -71
  252. package/node_modules/@aws-crypto/sha256-browser/tsconfig.json +0 -22
  253. package/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +0 -86
  254. package/node_modules/@aws-crypto/sha256-js/LICENSE +0 -201
  255. package/node_modules/@aws-crypto/sha256-js/README.md +0 -29
  256. package/node_modules/@aws-crypto/sha256-js/build/RawSha256.d.ts +0 -17
  257. package/node_modules/@aws-crypto/sha256-js/build/RawSha256.js +0 -124
  258. package/node_modules/@aws-crypto/sha256-js/build/RawSha256.js.map +0 -1
  259. package/node_modules/@aws-crypto/sha256-js/build/constants.d.ts +0 -20
  260. package/node_modules/@aws-crypto/sha256-js/build/constants.js +0 -98
  261. package/node_modules/@aws-crypto/sha256-js/build/constants.js.map +0 -1
  262. package/node_modules/@aws-crypto/sha256-js/build/index.d.ts +0 -1
  263. package/node_modules/@aws-crypto/sha256-js/build/index.js +0 -5
  264. package/node_modules/@aws-crypto/sha256-js/build/index.js.map +0 -1
  265. package/node_modules/@aws-crypto/sha256-js/build/jsSha256.d.ts +0 -12
  266. package/node_modules/@aws-crypto/sha256-js/build/jsSha256.js +0 -85
  267. package/node_modules/@aws-crypto/sha256-js/build/jsSha256.js.map +0 -1
  268. package/node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.d.ts +0 -5
  269. package/node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.js +0 -322
  270. package/node_modules/@aws-crypto/sha256-js/build/knownHashes.fixture.js.map +0 -1
  271. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/CopyrightNotice.txt +0 -15
  272. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/LICENSE.txt +0 -12
  273. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/README.md +0 -142
  274. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/modules/index.js +0 -51
  275. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/modules/package.json +0 -3
  276. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/package.json +0 -37
  277. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +0 -23
  278. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +0 -6
  279. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.d.ts +0 -37
  280. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.html +0 -1
  281. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.es6.js +0 -218
  282. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.html +0 -1
  283. package/node_modules/@aws-crypto/sha256-js/node_modules/tslib/tslib.js +0 -284
  284. package/node_modules/@aws-crypto/sha256-js/package.json +0 -28
  285. package/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +0 -164
  286. package/node_modules/@aws-crypto/sha256-js/src/constants.ts +0 -98
  287. package/node_modules/@aws-crypto/sha256-js/src/index.ts +0 -1
  288. package/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +0 -94
  289. package/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +0 -401
  290. package/node_modules/@aws-crypto/sha256-js/tsconfig.json +0 -17
  291. package/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +0 -46
  292. package/node_modules/@aws-crypto/supports-web-crypto/LICENSE +0 -202
  293. package/node_modules/@aws-crypto/supports-web-crypto/README.md +0 -32
  294. package/node_modules/@aws-crypto/supports-web-crypto/build/index.d.ts +0 -1
  295. package/node_modules/@aws-crypto/supports-web-crypto/build/index.js +0 -5
  296. package/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.d.ts +0 -4
  297. package/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js +0 -69
  298. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/CopyrightNotice.txt +0 -15
  299. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/LICENSE.txt +0 -12
  300. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/README.md +0 -142
  301. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/modules/index.js +0 -51
  302. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/modules/package.json +0 -3
  303. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/package.json +0 -37
  304. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +0 -23
  305. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +0 -6
  306. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.d.ts +0 -37
  307. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.html +0 -1
  308. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.es6.js +0 -218
  309. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.html +0 -1
  310. package/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib/tslib.js +0 -284
  311. package/node_modules/@aws-crypto/supports-web-crypto/package.json +0 -26
  312. package/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +0 -1
  313. package/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +0 -76
  314. package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +0 -16
  315. package/node_modules/@aws-crypto/util/CHANGELOG.md +0 -47
  316. package/node_modules/@aws-crypto/util/LICENSE +0 -201
  317. package/node_modules/@aws-crypto/util/README.md +0 -16
  318. package/node_modules/@aws-crypto/util/build/convertToBuffer.d.ts +0 -2
  319. package/node_modules/@aws-crypto/util/build/convertToBuffer.js +0 -24
  320. package/node_modules/@aws-crypto/util/build/convertToBuffer.js.map +0 -1
  321. package/node_modules/@aws-crypto/util/build/index.d.ts +0 -4
  322. package/node_modules/@aws-crypto/util/build/index.js +0 -14
  323. package/node_modules/@aws-crypto/util/build/index.js.map +0 -1
  324. package/node_modules/@aws-crypto/util/build/isEmptyData.d.ts +0 -2
  325. package/node_modules/@aws-crypto/util/build/isEmptyData.js +0 -13
  326. package/node_modules/@aws-crypto/util/build/isEmptyData.js.map +0 -1
  327. package/node_modules/@aws-crypto/util/build/numToUint8.d.ts +0 -1
  328. package/node_modules/@aws-crypto/util/build/numToUint8.js +0 -15
  329. package/node_modules/@aws-crypto/util/build/numToUint8.js.map +0 -1
  330. package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.d.ts +0 -1
  331. package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js +0 -20
  332. package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js.map +0 -1
  333. package/node_modules/@aws-crypto/util/node_modules/tslib/CopyrightNotice.txt +0 -15
  334. package/node_modules/@aws-crypto/util/node_modules/tslib/LICENSE.txt +0 -12
  335. package/node_modules/@aws-crypto/util/node_modules/tslib/README.md +0 -142
  336. package/node_modules/@aws-crypto/util/node_modules/tslib/modules/index.js +0 -51
  337. package/node_modules/@aws-crypto/util/node_modules/tslib/modules/package.json +0 -3
  338. package/node_modules/@aws-crypto/util/node_modules/tslib/package.json +0 -37
  339. package/node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +0 -23
  340. package/node_modules/@aws-crypto/util/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +0 -6
  341. package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.d.ts +0 -37
  342. package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.html +0 -1
  343. package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.es6.js +0 -218
  344. package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.html +0 -1
  345. package/node_modules/@aws-crypto/util/node_modules/tslib/tslib.js +0 -284
  346. package/node_modules/@aws-crypto/util/package.json +0 -31
  347. package/node_modules/@aws-crypto/util/src/convertToBuffer.ts +0 -30
  348. package/node_modules/@aws-crypto/util/src/index.ts +0 -7
  349. package/node_modules/@aws-crypto/util/src/isEmptyData.ts +0 -12
  350. package/node_modules/@aws-crypto/util/src/numToUint8.ts +0 -11
  351. package/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +0 -16
  352. package/node_modules/@aws-crypto/util/tsconfig.json +0 -23
  353. package/node_modules/@aws-sdk/middleware-host-header/LICENSE +0 -201
  354. package/node_modules/@aws-sdk/middleware-host-header/README.md +0 -4
  355. package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +0 -39
  356. package/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +0 -33
  357. package/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +0 -20
  358. package/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +0 -29
  359. package/node_modules/@aws-sdk/middleware-host-header/package.json +0 -59
  360. package/node_modules/@aws-sdk/middleware-logger/LICENSE +0 -201
  361. package/node_modules/@aws-sdk/middleware-logger/README.md +0 -4
  362. package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +0 -4
  363. package/node_modules/@aws-sdk/middleware-logger/dist-cjs/loggerMiddleware.js +0 -48
  364. package/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +0 -1
  365. package/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +0 -42
  366. package/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +0 -1
  367. package/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +0 -4
  368. package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +0 -1
  369. package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +0 -17
  370. package/node_modules/@aws-sdk/middleware-logger/package.json +0 -60
  371. package/node_modules/@aws-sdk/middleware-token/LICENSE +0 -201
  372. package/node_modules/@aws-sdk/middleware-token/README.md +0 -12
  373. package/node_modules/@aws-sdk/middleware-token/dist-cjs/configurations.js +0 -2
  374. package/node_modules/@aws-sdk/middleware-token/dist-cjs/getTokenPlugin.js +0 -10
  375. package/node_modules/@aws-sdk/middleware-token/dist-cjs/index.js +0 -7
  376. package/node_modules/@aws-sdk/middleware-token/dist-cjs/normalizeTokenProvider.js +0 -14
  377. package/node_modules/@aws-sdk/middleware-token/dist-cjs/resolveTokenConfig.js +0 -10
  378. package/node_modules/@aws-sdk/middleware-token/dist-cjs/tokenDefaultProvider.browser.js +0 -7
  379. package/node_modules/@aws-sdk/middleware-token/dist-cjs/tokenDefaultProvider.js +0 -5
  380. package/node_modules/@aws-sdk/middleware-token/dist-cjs/tokenMiddleware.js +0 -31
  381. package/node_modules/@aws-sdk/middleware-token/dist-es/getTokenPlugin.js +0 -6
  382. package/node_modules/@aws-sdk/middleware-token/dist-es/index.js +0 -4
  383. package/node_modules/@aws-sdk/middleware-token/dist-es/normalizeTokenProvider.js +0 -10
  384. package/node_modules/@aws-sdk/middleware-token/dist-es/resolveTokenConfig.js +0 -6
  385. package/node_modules/@aws-sdk/middleware-token/dist-es/tokenDefaultProvider.browser.js +0 -3
  386. package/node_modules/@aws-sdk/middleware-token/dist-es/tokenDefaultProvider.js +0 -2
  387. package/node_modules/@aws-sdk/middleware-token/dist-es/tokenMiddleware.js +0 -27
  388. package/node_modules/@aws-sdk/middleware-token/dist-types/configurations.d.ts +0 -19
  389. package/node_modules/@aws-sdk/middleware-token/dist-types/getTokenPlugin.d.ts +0 -6
  390. package/node_modules/@aws-sdk/middleware-token/dist-types/index.d.ts +0 -16
  391. package/node_modules/@aws-sdk/middleware-token/dist-types/normalizeTokenProvider.d.ts +0 -6
  392. package/node_modules/@aws-sdk/middleware-token/dist-types/resolveTokenConfig.d.ts +0 -5
  393. package/node_modules/@aws-sdk/middleware-token/dist-types/tokenDefaultProvider.browser.d.ts +0 -4
  394. package/node_modules/@aws-sdk/middleware-token/dist-types/tokenDefaultProvider.d.ts +0 -4
  395. package/node_modules/@aws-sdk/middleware-token/dist-types/tokenMiddleware.d.ts +0 -10
  396. package/node_modules/@aws-sdk/middleware-token/dist-types/ts3.4/configurations.d.ts +0 -7
  397. package/node_modules/@aws-sdk/middleware-token/dist-types/ts3.4/getTokenPlugin.d.ts +0 -5
  398. package/node_modules/@aws-sdk/middleware-token/dist-types/ts3.4/index.d.ts +0 -4
  399. package/node_modules/@aws-sdk/middleware-token/dist-types/ts3.4/normalizeTokenProvider.d.ts +0 -5
  400. package/node_modules/@aws-sdk/middleware-token/dist-types/ts3.4/resolveTokenConfig.d.ts +0 -4
  401. package/node_modules/@aws-sdk/middleware-token/dist-types/ts3.4/tokenDefaultProvider.browser.d.ts +0 -3
  402. package/node_modules/@aws-sdk/middleware-token/dist-types/ts3.4/tokenDefaultProvider.d.ts +0 -3
  403. package/node_modules/@aws-sdk/middleware-token/dist-types/ts3.4/tokenMiddleware.d.ts +0 -12
  404. package/node_modules/@aws-sdk/middleware-token/package.json +0 -75
  405. package/node_modules/@aws-sdk/region-config-resolver/LICENSE +0 -201
  406. package/node_modules/@aws-sdk/region-config-resolver/README.md +0 -12
  407. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/extensions/index.js +0 -30
  408. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +0 -5
  409. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/config.js +0 -15
  410. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/getRealRegion.js +0 -10
  411. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/index.js +0 -5
  412. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/isFipsRegion.js +0 -5
  413. package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +0 -29
  414. package/node_modules/@aws-sdk/region-config-resolver/dist-es/extensions/index.js +0 -25
  415. package/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +0 -2
  416. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/config.js +0 -12
  417. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/getRealRegion.js +0 -6
  418. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/index.js +0 -2
  419. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/isFipsRegion.js +0 -1
  420. package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/resolveRegionConfig.js +0 -25
  421. package/node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts +0 -16
  422. package/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +0 -2
  423. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/config.d.ts +0 -17
  424. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/getRealRegion.d.ts +0 -4
  425. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/index.d.ts +0 -8
  426. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +0 -4
  427. package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +0 -37
  428. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/extensions/index.d.ts +0 -14
  429. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +0 -2
  430. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +0 -8
  431. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +0 -1
  432. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +0 -2
  433. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +0 -1
  434. package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +0 -14
  435. package/node_modules/@aws-sdk/region-config-resolver/package.json +0 -61
  436. package/node_modules/@aws-sdk/token-providers/LICENSE +0 -201
  437. package/node_modules/@aws-sdk/token-providers/README.md +0 -53
  438. package/node_modules/@aws-sdk/token-providers/dist-cjs/bundle/client-sso-oidc-browser.js +0 -895
  439. package/node_modules/@aws-sdk/token-providers/dist-cjs/bundle/client-sso-oidc-node.js +0 -901
  440. package/node_modules/@aws-sdk/token-providers/dist-cjs/constants.js +0 -5
  441. package/node_modules/@aws-sdk/token-providers/dist-cjs/fromSso.js +0 -82
  442. package/node_modules/@aws-sdk/token-providers/dist-cjs/fromStatic.js +0 -11
  443. package/node_modules/@aws-sdk/token-providers/dist-cjs/getNewSsoOidcToken.js +0 -15
  444. package/node_modules/@aws-sdk/token-providers/dist-cjs/getSsoOidcClient.js +0 -14
  445. package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +0 -7
  446. package/node_modules/@aws-sdk/token-providers/dist-cjs/nodeProvider.js +0 -9
  447. package/node_modules/@aws-sdk/token-providers/dist-cjs/validateTokenExpiry.js +0 -11
  448. package/node_modules/@aws-sdk/token-providers/dist-cjs/validateTokenKey.js +0 -11
  449. package/node_modules/@aws-sdk/token-providers/dist-cjs/writeSSOTokenToFile.js +0 -12
  450. package/node_modules/@aws-sdk/token-providers/dist-es/bundle/client-sso-oidc-browser.js +0 -872
  451. package/node_modules/@aws-sdk/token-providers/dist-es/bundle/client-sso-oidc-node.js +0 -878
  452. package/node_modules/@aws-sdk/token-providers/dist-es/constants.js +0 -2
  453. package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +0 -78
  454. package/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +0 -7
  455. package/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +0 -11
  456. package/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +0 -10
  457. package/node_modules/@aws-sdk/token-providers/dist-es/index.js +0 -4
  458. package/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +0 -5
  459. package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +0 -7
  460. package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +0 -7
  461. package/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +0 -8
  462. package/node_modules/@aws-sdk/token-providers/dist-types/bundle/client-sso-oidc-browser.d.ts +0 -187
  463. package/node_modules/@aws-sdk/token-providers/dist-types/bundle/client-sso-oidc-node.d.ts +0 -187
  464. package/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +0 -8
  465. package/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +0 -8
  466. package/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +0 -8
  467. package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +0 -5
  468. package/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +0 -5
  469. package/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +0 -4
  470. package/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +0 -18
  471. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/bundle/client-sso-oidc-browser.d.ts +0 -235
  472. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/bundle/client-sso-oidc-node.d.ts +0 -235
  473. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +0 -3
  474. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +0 -4
  475. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +0 -7
  476. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +0 -5
  477. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +0 -1
  478. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +0 -4
  479. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +0 -5
  480. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +0 -2
  481. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +0 -5
  482. package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +0 -5
  483. package/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +0 -5
  484. package/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +0 -4
  485. package/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +0 -5
  486. package/node_modules/@aws-sdk/token-providers/package.json +0 -104
  487. package/node_modules/@aws-sdk/util-endpoints/LICENSE +0 -201
  488. package/node_modules/@aws-sdk/util-endpoints/README.md +0 -6
  489. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/debug/debugId.js +0 -4
  490. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/debug/index.js +0 -5
  491. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/debug/toDebugString.js +0 -16
  492. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +0 -7
  493. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/index.js +0 -6
  494. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/isVirtualHostableS3Bucket.js +0 -29
  495. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/parseArn.js +0 -19
  496. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partition.js +0 -49
  497. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +0 -213
  498. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/booleanEquals.js +0 -5
  499. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/getAttr.js +0 -15
  500. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/getAttrPathList.js +0 -29
  501. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/index.js +0 -14
  502. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/isIpAddress.js +0 -6
  503. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/isSet.js +0 -5
  504. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/isValidHostLabel.js +0 -17
  505. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/not.js +0 -5
  506. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/parseURL.js +0 -55
  507. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/stringEquals.js +0 -5
  508. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/substring.js +0 -13
  509. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/uriEncode.js +0 -5
  510. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/resolveEndpoint.js +0 -42
  511. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/EndpointError.js +0 -10
  512. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/EndpointRuleObject.js +0 -2
  513. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/ErrorRuleObject.js +0 -2
  514. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/RuleSetObject.js +0 -2
  515. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/TreeRuleObject.js +0 -2
  516. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/index.js +0 -9
  517. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/types/shared.js +0 -2
  518. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/callFunction.js +0 -11
  519. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateCondition.js +0 -19
  520. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateConditions.js +0 -27
  521. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateEndpointRule.js +0 -32
  522. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateErrorRule.js +0 -18
  523. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateExpression.js +0 -20
  524. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateRules.js +0 -31
  525. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateTemplate.js +0 -40
  526. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/evaluateTreeRule.js +0 -17
  527. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/getEndpointHeaders.js +0 -16
  528. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/getEndpointProperties.js +0 -9
  529. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/getEndpointProperty.js +0 -25
  530. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/getEndpointUrl.js +0 -19
  531. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/getReferenceValue.js +0 -11
  532. package/node_modules/@aws-sdk/util-endpoints/dist-cjs/utils/index.js +0 -4
  533. package/node_modules/@aws-sdk/util-endpoints/dist-es/debug/debugId.js +0 -1
  534. package/node_modules/@aws-sdk/util-endpoints/dist-es/debug/index.js +0 -2
  535. package/node_modules/@aws-sdk/util-endpoints/dist-es/debug/toDebugString.js +0 -12
  536. package/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +0 -4
  537. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +0 -3
  538. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +0 -25
  539. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +0 -15
  540. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +0 -41
  541. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +0 -213
  542. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/booleanEquals.js +0 -1
  543. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/getAttr.js +0 -11
  544. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/getAttrPathList.js +0 -25
  545. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/index.js +0 -10
  546. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +0 -2
  547. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isSet.js +0 -1
  548. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isValidHostLabel.js +0 -13
  549. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/not.js +0 -1
  550. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/parseURL.js +0 -51
  551. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/stringEquals.js +0 -1
  552. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/substring.js +0 -9
  553. package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/uriEncode.js +0 -1
  554. package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +0 -37
  555. package/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +0 -6
  556. package/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +0 -6
  557. package/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +0 -1
  558. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/callFunction.js +0 -6
  559. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateCondition.js +0 -14
  560. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateConditions.js +0 -22
  561. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateEndpointRule.js +0 -27
  562. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateErrorRule.js +0 -14
  563. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateExpression.js +0 -16
  564. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateRules.js +0 -27
  565. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateTemplate.js +0 -36
  566. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/evaluateTreeRule.js +0 -13
  567. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/getEndpointHeaders.js +0 -12
  568. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/getEndpointProperties.js +0 -5
  569. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/getEndpointProperty.js +0 -21
  570. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/getEndpointUrl.js +0 -15
  571. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/getReferenceValue.js +0 -7
  572. package/node_modules/@aws-sdk/util-endpoints/dist-es/utils/index.js +0 -1
  573. package/node_modules/@aws-sdk/util-endpoints/dist-types/debug/debugId.d.ts +0 -1
  574. package/node_modules/@aws-sdk/util-endpoints/dist-types/debug/index.d.ts +0 -2
  575. package/node_modules/@aws-sdk/util-endpoints/dist-types/debug/toDebugString.d.ts +0 -9
  576. package/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +0 -4
  577. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +0 -3
  578. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +0 -5
  579. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +0 -7
  580. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +0 -38
  581. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/booleanEquals.d.ts +0 -5
  582. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/getAttr.d.ts +0 -7
  583. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/getAttrPathList.d.ts +0 -4
  584. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/index.d.ts +0 -10
  585. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +0 -4
  586. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isSet.d.ts +0 -5
  587. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isValidHostLabel.d.ts +0 -7
  588. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/not.d.ts +0 -5
  589. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/parseURL.d.ts +0 -5
  590. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/stringEquals.d.ts +0 -5
  591. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/substring.d.ts +0 -7
  592. package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/uriEncode.d.ts +0 -4
  593. package/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +0 -6
  594. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/debug/debugId.d.ts +0 -1
  595. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/debug/index.d.ts +0 -2
  596. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/debug/toDebugString.d.ts +0 -9
  597. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +0 -4
  598. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +0 -3
  599. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +0 -4
  600. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +0 -2
  601. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +0 -28
  602. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/booleanEquals.d.ts +0 -4
  603. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/getAttr.d.ts +0 -11
  604. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/getAttrPathList.d.ts +0 -1
  605. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/index.d.ts +0 -11
  606. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +0 -1
  607. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isSet.d.ts +0 -1
  608. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isValidHostLabel.d.ts +0 -4
  609. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/not.d.ts +0 -1
  610. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/parseURL.d.ts +0 -4
  611. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/stringEquals.d.ts +0 -1
  612. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/substring.d.ts +0 -6
  613. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/uriEncode.d.ts +0 -1
  614. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +0 -6
  615. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +0 -3
  616. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +0 -15
  617. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +0 -7
  618. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +0 -19
  619. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +0 -12
  620. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +0 -6
  621. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +0 -29
  622. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/callFunction.d.ts +0 -5
  623. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateCondition.d.ts +0 -13
  624. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateConditions.d.ts +0 -13
  625. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateEndpointRule.d.ts +0 -6
  626. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateErrorRule.d.ts +0 -5
  627. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateExpression.d.ts +0 -6
  628. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateRules.d.ts +0 -6
  629. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateTemplate.d.ts +0 -5
  630. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/evaluateTreeRule.d.ts +0 -6
  631. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/getEndpointHeaders.d.ts +0 -5
  632. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/getEndpointProperties.d.ts +0 -5
  633. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/getEndpointProperty.d.ts +0 -6
  634. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/getEndpointUrl.d.ts +0 -5
  635. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/getReferenceValue.d.ts +0 -5
  636. package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/utils/index.d.ts +0 -1
  637. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +0 -3
  638. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +0 -15
  639. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +0 -7
  640. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +0 -19
  641. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +0 -10
  642. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +0 -6
  643. package/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +0 -25
  644. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/callFunction.d.ts +0 -2
  645. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateCondition.d.ts +0 -8
  646. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateConditions.d.ts +0 -8
  647. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateEndpointRule.d.ts +0 -3
  648. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +0 -2
  649. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateExpression.d.ts +0 -2
  650. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateRules.d.ts +0 -3
  651. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateTemplate.d.ts +0 -2
  652. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/evaluateTreeRule.d.ts +0 -3
  653. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +0 -2
  654. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +0 -2
  655. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/getEndpointProperty.d.ts +0 -3
  656. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +0 -2
  657. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/getReferenceValue.d.ts +0 -2
  658. package/node_modules/@aws-sdk/util-endpoints/dist-types/utils/index.d.ts +0 -1
  659. package/node_modules/@aws-sdk/util-endpoints/package.json +0 -58
  660. package/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +0 -201
  661. package/node_modules/@aws-sdk/util-user-agent-browser/README.md +0 -10
  662. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +0 -2
  663. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +0 -23
  664. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +0 -17
  665. package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/configurations.js +0 -1
  666. package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +0 -17
  667. package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +0 -13
  668. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +0 -7
  669. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +0 -9
  670. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +0 -9
  671. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +0 -4
  672. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +0 -6
  673. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +0 -6
  674. package/node_modules/@aws-sdk/util-user-agent-browser/package.json +0 -56
  675. package/node_modules/@aws-sdk/util-user-agent-node/LICENSE +0 -201
  676. package/node_modules/@aws-sdk/util-user-agent-node/README.md +0 -10
  677. package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +0 -42
  678. package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/is-crt-available.js +0 -15
  679. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +0 -38
  680. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +0 -11
  681. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +0 -20
  682. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +0 -5
  683. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +0 -12
  684. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +0 -2
  685. package/node_modules/@aws-sdk/util-user-agent-node/package.json +0 -67
  686. package/node_modules/@aws-sdk/util-utf8-browser/LICENSE +0 -201
  687. package/node_modules/@aws-sdk/util-utf8-browser/README.md +0 -8
  688. package/node_modules/@aws-sdk/util-utf8-browser/package.json +0 -50
  689. package/node_modules/@smithy/abort-controller/LICENSE +0 -201
  690. package/node_modules/@smithy/abort-controller/README.md +0 -4
  691. package/node_modules/@smithy/abort-controller/dist-cjs/AbortController.js +0 -1
  692. package/node_modules/@smithy/abort-controller/dist-cjs/AbortSignal.js +0 -1
  693. package/node_modules/@smithy/abort-controller/dist-cjs/index.js +0 -82
  694. package/node_modules/@smithy/abort-controller/dist-es/AbortController.js +0 -9
  695. package/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +0 -20
  696. package/node_modules/@smithy/abort-controller/dist-es/index.js +0 -2
  697. package/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +0 -13
  698. package/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +0 -18
  699. package/node_modules/@smithy/abort-controller/dist-types/index.d.ts +0 -9
  700. package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +0 -13
  701. package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +0 -18
  702. package/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +0 -9
  703. package/node_modules/@smithy/abort-controller/package.json +0 -62
  704. package/node_modules/@smithy/config-resolver/LICENSE +0 -201
  705. package/node_modules/@smithy/config-resolver/README.md +0 -10
  706. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +0 -1
  707. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +0 -1
  708. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/index.js +0 -1
  709. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveCustomEndpointsConfig.js +0 -1
  710. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveEndpointsConfig.js +0 -1
  711. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/utils/getEndpointFromRegion.js +0 -1
  712. package/node_modules/@smithy/config-resolver/dist-cjs/index.js +0 -235
  713. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/config.js +0 -1
  714. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/getRealRegion.js +0 -1
  715. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/index.js +0 -1
  716. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/isFipsRegion.js +0 -1
  717. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +0 -1
  718. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariant.js +0 -1
  719. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariantTag.js +0 -1
  720. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/PartitionHash.js +0 -1
  721. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/RegionHash.js +0 -1
  722. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getHostnameFromVariants.js +0 -1
  723. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getRegionInfo.js +0 -1
  724. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedHostname.js +0 -1
  725. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedPartition.js +0 -1
  726. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedSigningRegion.js +0 -1
  727. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/index.js +0 -1
  728. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +0 -9
  729. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +0 -9
  730. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +0 -4
  731. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +0 -11
  732. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +0 -15
  733. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js +0 -15
  734. package/node_modules/@smithy/config-resolver/dist-es/index.js +0 -3
  735. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/config.js +0 -12
  736. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/getRealRegion.js +0 -6
  737. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +0 -2
  738. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/isFipsRegion.js +0 -1
  739. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +0 -25
  740. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariant.js +0 -1
  741. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariantTag.js +0 -1
  742. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/PartitionHash.js +0 -1
  743. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/RegionHash.js +0 -1
  744. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js +0 -1
  745. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getRegionInfo.js +0 -29
  746. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedHostname.js +0 -5
  747. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedPartition.js +0 -1
  748. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js +0 -12
  749. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +0 -3
  750. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +0 -17
  751. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +0 -17
  752. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +0 -16
  753. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +0 -29
  754. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +0 -51
  755. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +0 -11
  756. package/node_modules/@smithy/config-resolver/dist-types/index.d.ts +0 -12
  757. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +0 -17
  758. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/getRealRegion.d.ts +0 -4
  759. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +0 -8
  760. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +0 -4
  761. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +0 -34
  762. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +0 -10
  763. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +0 -7
  764. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +0 -14
  765. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/RegionHash.d.ts +0 -12
  766. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +0 -12
  767. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +0 -17
  768. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +0 -11
  769. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +0 -11
  770. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +0 -12
  771. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +0 -12
  772. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +0 -17
  773. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +0 -17
  774. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +0 -16
  775. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +0 -29
  776. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +0 -51
  777. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +0 -11
  778. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/index.d.ts +0 -12
  779. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +0 -17
  780. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +0 -4
  781. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +0 -8
  782. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +0 -4
  783. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +0 -34
  784. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +0 -10
  785. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +0 -7
  786. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +0 -14
  787. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +0 -12
  788. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +0 -12
  789. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +0 -17
  790. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +0 -11
  791. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +0 -11
  792. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +0 -12
  793. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +0 -12
  794. package/node_modules/@smithy/config-resolver/package.json +0 -64
  795. package/node_modules/@smithy/credential-provider-imds/LICENSE +0 -201
  796. package/node_modules/@smithy/credential-provider-imds/README.md +0 -11
  797. package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/Endpoint.js +0 -1
  798. package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointConfigOptions.js +0 -1
  799. package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointMode.js +0 -1
  800. package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointModeConfigOptions.js +0 -1
  801. package/node_modules/@smithy/credential-provider-imds/dist-cjs/error/InstanceMetadataV1FallbackError.js +0 -1
  802. package/node_modules/@smithy/credential-provider-imds/dist-cjs/fromContainerMetadata.js +0 -1
  803. package/node_modules/@smithy/credential-provider-imds/dist-cjs/fromInstanceMetadata.js +0 -1
  804. package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +0 -437
  805. package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/ImdsCredentials.js +0 -1
  806. package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/RemoteProviderInit.js +0 -1
  807. package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/httpRequest.js +0 -1
  808. package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/index.js +0 -1
  809. package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/retry.js +0 -1
  810. package/node_modules/@smithy/credential-provider-imds/dist-cjs/types.js +0 -1
  811. package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/getExtendedInstanceMetadataCredentials.js +0 -1
  812. package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/getInstanceMetadataEndpoint.js +0 -1
  813. package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/staticStabilityProvider.js +0 -1
  814. package/node_modules/@smithy/credential-provider-imds/dist-es/config/Endpoint.js +0 -5
  815. package/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointConfigOptions.js +0 -7
  816. package/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointMode.js +0 -5
  817. package/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js +0 -8
  818. package/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +0 -9
  819. package/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +0 -66
  820. package/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js +0 -132
  821. package/node_modules/@smithy/credential-provider-imds/dist-es/index.js +0 -7
  822. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js +0 -12
  823. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js +0 -3
  824. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +0 -36
  825. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/index.js +0 -2
  826. package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/retry.js +0 -7
  827. package/node_modules/@smithy/credential-provider-imds/dist-es/types.js +0 -1
  828. package/node_modules/@smithy/credential-provider-imds/dist-es/utils/getExtendedInstanceMetadataCredentials.js +0 -17
  829. package/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +0 -19
  830. package/node_modules/@smithy/credential-provider-imds/dist-es/utils/staticStabilityProvider.js +0 -25
  831. package/node_modules/@smithy/credential-provider-imds/dist-types/config/Endpoint.d.ts +0 -7
  832. package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +0 -13
  833. package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointMode.d.ts +0 -7
  834. package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +0 -13
  835. package/node_modules/@smithy/credential-provider-imds/dist-types/error/InstanceMetadataV1FallbackError.d.ts +0 -12
  836. package/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +0 -21
  837. package/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +0 -10
  838. package/node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts +0 -28
  839. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +0 -18
  840. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/RemoteProviderInit.d.ts +0 -40
  841. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +0 -7
  842. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/index.d.ts +0 -8
  843. package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/retry.d.ts +0 -10
  844. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +0 -7
  845. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +0 -13
  846. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +0 -7
  847. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +0 -13
  848. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/error/InstanceMetadataV1FallbackError.d.ts +0 -12
  849. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +0 -21
  850. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +0 -10
  851. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/index.d.ts +0 -28
  852. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +0 -18
  853. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +0 -40
  854. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +0 -6
  855. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +0 -8
  856. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +0 -10
  857. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/types.d.ts +0 -7
  858. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +0 -6
  859. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +0 -21
  860. package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +0 -16
  861. package/node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts +0 -7
  862. package/node_modules/@smithy/credential-provider-imds/dist-types/utils/getExtendedInstanceMetadataCredentials.d.ts +0 -6
  863. package/node_modules/@smithy/credential-provider-imds/dist-types/utils/getInstanceMetadataEndpoint.d.ts +0 -21
  864. package/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +0 -16
  865. package/node_modules/@smithy/credential-provider-imds/package.json +0 -70
  866. package/node_modules/@smithy/eventstream-codec/LICENSE +0 -201
  867. package/node_modules/@smithy/eventstream-codec/README.md +0 -4
  868. package/node_modules/@smithy/eventstream-codec/dist-cjs/EventStreamCodec.js +0 -1
  869. package/node_modules/@smithy/eventstream-codec/dist-cjs/HeaderMarshaller.js +0 -1
  870. package/node_modules/@smithy/eventstream-codec/dist-cjs/Int64.js +0 -1
  871. package/node_modules/@smithy/eventstream-codec/dist-cjs/Message.js +0 -1
  872. package/node_modules/@smithy/eventstream-codec/dist-cjs/MessageDecoderStream.js +0 -1
  873. package/node_modules/@smithy/eventstream-codec/dist-cjs/MessageEncoderStream.js +0 -1
  874. package/node_modules/@smithy/eventstream-codec/dist-cjs/SmithyMessageDecoderStream.js +0 -1
  875. package/node_modules/@smithy/eventstream-codec/dist-cjs/SmithyMessageEncoderStream.js +0 -1
  876. package/node_modules/@smithy/eventstream-codec/dist-cjs/TestVectors.fixture.js +0 -1
  877. package/node_modules/@smithy/eventstream-codec/dist-cjs/index.js +0 -468
  878. package/node_modules/@smithy/eventstream-codec/dist-cjs/splitMessage.js +0 -1
  879. package/node_modules/@smithy/eventstream-codec/dist-cjs/vectorTypes.fixture.js +0 -1
  880. package/node_modules/@smithy/eventstream-codec/dist-es/EventStreamCodec.js +0 -62
  881. package/node_modules/@smithy/eventstream-codec/dist-es/HeaderMarshaller.js +0 -182
  882. package/node_modules/@smithy/eventstream-codec/dist-es/Int64.js +0 -43
  883. package/node_modules/@smithy/eventstream-codec/dist-es/Message.js +0 -1
  884. package/node_modules/@smithy/eventstream-codec/dist-es/MessageDecoderStream.js +0 -14
  885. package/node_modules/@smithy/eventstream-codec/dist-es/MessageEncoderStream.js +0 -17
  886. package/node_modules/@smithy/eventstream-codec/dist-es/SmithyMessageDecoderStream.js +0 -16
  887. package/node_modules/@smithy/eventstream-codec/dist-es/SmithyMessageEncoderStream.js +0 -14
  888. package/node_modules/@smithy/eventstream-codec/dist-es/TestVectors.fixture.js +0 -690
  889. package/node_modules/@smithy/eventstream-codec/dist-es/index.js +0 -8
  890. package/node_modules/@smithy/eventstream-codec/dist-es/splitMessage.js +0 -30
  891. package/node_modules/@smithy/eventstream-codec/dist-es/vectorTypes.fixture.js +0 -1
  892. package/node_modules/@smithy/eventstream-codec/dist-types/EventStreamCodec.d.ts +0 -31
  893. package/node_modules/@smithy/eventstream-codec/dist-types/HeaderMarshaller.d.ts +0 -12
  894. package/node_modules/@smithy/eventstream-codec/dist-types/Int64.d.ts +0 -20
  895. package/node_modules/@smithy/eventstream-codec/dist-types/Message.d.ts +0 -26
  896. package/node_modules/@smithy/eventstream-codec/dist-types/MessageDecoderStream.d.ts +0 -17
  897. package/node_modules/@smithy/eventstream-codec/dist-types/MessageEncoderStream.d.ts +0 -18
  898. package/node_modules/@smithy/eventstream-codec/dist-types/SmithyMessageDecoderStream.d.ts +0 -17
  899. package/node_modules/@smithy/eventstream-codec/dist-types/SmithyMessageEncoderStream.d.ts +0 -17
  900. package/node_modules/@smithy/eventstream-codec/dist-types/TestVectors.fixture.d.ts +0 -2
  901. package/node_modules/@smithy/eventstream-codec/dist-types/index.d.ts +0 -8
  902. package/node_modules/@smithy/eventstream-codec/dist-types/splitMessage.d.ts +0 -11
  903. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/EventStreamCodec.d.ts +0 -31
  904. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/HeaderMarshaller.d.ts +0 -12
  905. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/Int64.d.ts +0 -20
  906. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/Message.d.ts +0 -26
  907. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/MessageDecoderStream.d.ts +0 -17
  908. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/MessageEncoderStream.d.ts +0 -18
  909. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/SmithyMessageDecoderStream.d.ts +0 -17
  910. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/SmithyMessageEncoderStream.d.ts +0 -17
  911. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/TestVectors.fixture.d.ts +0 -2
  912. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/index.d.ts +0 -8
  913. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/splitMessage.d.ts +0 -11
  914. package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/vectorTypes.fixture.d.ts +0 -12
  915. package/node_modules/@smithy/eventstream-codec/dist-types/vectorTypes.fixture.d.ts +0 -12
  916. package/node_modules/@smithy/eventstream-codec/package.json +0 -61
  917. package/node_modules/@smithy/eventstream-serde-browser/LICENSE +0 -201
  918. package/node_modules/@smithy/eventstream-serde-browser/README.md +0 -10
  919. package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/EventStreamMarshaller.js +0 -1
  920. package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/index.js +0 -103
  921. package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/provider.js +0 -1
  922. package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/utils.js +0 -1
  923. package/node_modules/@smithy/eventstream-serde-browser/dist-es/EventStreamMarshaller.js +0 -19
  924. package/node_modules/@smithy/eventstream-serde-browser/dist-es/index.js +0 -3
  925. package/node_modules/@smithy/eventstream-serde-browser/dist-es/provider.js +0 -2
  926. package/node_modules/@smithy/eventstream-serde-browser/dist-es/utils.js +0 -28
  927. package/node_modules/@smithy/eventstream-serde-browser/dist-types/EventStreamMarshaller.d.ts +0 -47
  928. package/node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts +0 -12
  929. package/node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts +0 -3
  930. package/node_modules/@smithy/eventstream-serde-browser/dist-types/ts3.4/EventStreamMarshaller.d.ts +0 -47
  931. package/node_modules/@smithy/eventstream-serde-browser/dist-types/ts3.4/index.d.ts +0 -12
  932. package/node_modules/@smithy/eventstream-serde-browser/dist-types/ts3.4/provider.d.ts +0 -3
  933. package/node_modules/@smithy/eventstream-serde-browser/dist-types/ts3.4/utils.d.ts +0 -13
  934. package/node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts +0 -13
  935. package/node_modules/@smithy/eventstream-serde-browser/package.json +0 -61
  936. package/node_modules/@smithy/eventstream-serde-node/LICENSE +0 -201
  937. package/node_modules/@smithy/eventstream-serde-node/README.md +0 -10
  938. package/node_modules/@smithy/eventstream-serde-node/dist-cjs/EventStreamMarshaller.js +0 -1
  939. package/node_modules/@smithy/eventstream-serde-node/dist-cjs/index.js +0 -88
  940. package/node_modules/@smithy/eventstream-serde-node/dist-cjs/provider.js +0 -1
  941. package/node_modules/@smithy/eventstream-serde-node/dist-cjs/utils.js +0 -1
  942. package/node_modules/@smithy/eventstream-serde-node/dist-es/EventStreamMarshaller.js +0 -18
  943. package/node_modules/@smithy/eventstream-serde-node/dist-es/index.js +0 -2
  944. package/node_modules/@smithy/eventstream-serde-node/dist-es/provider.js +0 -2
  945. package/node_modules/@smithy/eventstream-serde-node/dist-es/utils.js +0 -26
  946. package/node_modules/@smithy/eventstream-serde-node/dist-types/EventStreamMarshaller.d.ts +0 -24
  947. package/node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts +0 -8
  948. package/node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts +0 -3
  949. package/node_modules/@smithy/eventstream-serde-node/dist-types/ts3.4/EventStreamMarshaller.d.ts +0 -24
  950. package/node_modules/@smithy/eventstream-serde-node/dist-types/ts3.4/index.d.ts +0 -8
  951. package/node_modules/@smithy/eventstream-serde-node/dist-types/ts3.4/provider.d.ts +0 -3
  952. package/node_modules/@smithy/eventstream-serde-node/dist-types/ts3.4/utils.d.ts +0 -13
  953. package/node_modules/@smithy/eventstream-serde-node/dist-types/utils.d.ts +0 -13
  954. package/node_modules/@smithy/eventstream-serde-node/package.json +0 -62
  955. package/node_modules/@smithy/eventstream-serde-universal/LICENSE +0 -201
  956. package/node_modules/@smithy/eventstream-serde-universal/README.md +0 -10
  957. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/EventStreamMarshaller.js +0 -1
  958. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/fixtures/MockEventMessageSource.fixture.js +0 -1
  959. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/fixtures/event.fixture.js +0 -1
  960. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/getChunkedStream.js +0 -1
  961. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/getUnmarshalledStream.js +0 -1
  962. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/index.js +0 -182
  963. package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/provider.js +0 -1
  964. package/node_modules/@smithy/eventstream-serde-universal/dist-es/EventStreamMarshaller.js +0 -23
  965. package/node_modules/@smithy/eventstream-serde-universal/dist-es/fixtures/MockEventMessageSource.fixture.js +0 -30
  966. package/node_modules/@smithy/eventstream-serde-universal/dist-es/fixtures/event.fixture.js +0 -4
  967. package/node_modules/@smithy/eventstream-serde-universal/dist-es/getChunkedStream.js +0 -66
  968. package/node_modules/@smithy/eventstream-serde-universal/dist-es/getUnmarshalledStream.js +0 -47
  969. package/node_modules/@smithy/eventstream-serde-universal/dist-es/index.js +0 -2
  970. package/node_modules/@smithy/eventstream-serde-universal/dist-es/provider.js +0 -2
  971. package/node_modules/@smithy/eventstream-serde-universal/dist-types/EventStreamMarshaller.d.ts +0 -23
  972. package/node_modules/@smithy/eventstream-serde-universal/dist-types/fixtures/MockEventMessageSource.fixture.d.ts +0 -22
  973. package/node_modules/@smithy/eventstream-serde-universal/dist-types/fixtures/event.fixture.d.ts +0 -17
  974. package/node_modules/@smithy/eventstream-serde-universal/dist-types/getChunkedStream.d.ts +0 -4
  975. package/node_modules/@smithy/eventstream-serde-universal/dist-types/getUnmarshalledStream.d.ts +0 -18
  976. package/node_modules/@smithy/eventstream-serde-universal/dist-types/index.d.ts +0 -8
  977. package/node_modules/@smithy/eventstream-serde-universal/dist-types/provider.d.ts +0 -3
  978. package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/EventStreamMarshaller.d.ts +0 -23
  979. package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/fixtures/MockEventMessageSource.fixture.d.ts +0 -21
  980. package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/fixtures/event.fixture.d.ts +0 -17
  981. package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/getChunkedStream.d.ts +0 -4
  982. package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/getUnmarshalledStream.d.ts +0 -18
  983. package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/index.d.ts +0 -8
  984. package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/provider.d.ts +0 -3
  985. package/node_modules/@smithy/eventstream-serde-universal/package.json +0 -63
  986. package/node_modules/@smithy/fetch-http-handler/LICENSE +0 -201
  987. package/node_modules/@smithy/fetch-http-handler/README.md +0 -4
  988. package/node_modules/@smithy/fetch-http-handler/dist-cjs/fetch-http-handler.js +0 -1
  989. package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +0 -220
  990. package/node_modules/@smithy/fetch-http-handler/dist-cjs/request-timeout.js +0 -1
  991. package/node_modules/@smithy/fetch-http-handler/dist-cjs/stream-collector.js +0 -1
  992. package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +0 -111
  993. package/node_modules/@smithy/fetch-http-handler/dist-es/index.js +0 -2
  994. package/node_modules/@smithy/fetch-http-handler/dist-es/request-timeout.js +0 -11
  995. package/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +0 -45
  996. package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +0 -33
  997. package/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +0 -2
  998. package/node_modules/@smithy/fetch-http-handler/dist-types/request-timeout.d.ts +0 -1
  999. package/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +0 -2
  1000. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +0 -33
  1001. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +0 -2
  1002. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +0 -1
  1003. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +0 -2
  1004. package/node_modules/@smithy/fetch-http-handler/package.json +0 -79
  1005. package/node_modules/@smithy/hash-node/LICENSE +0 -201
  1006. package/node_modules/@smithy/hash-node/README.md +0 -10
  1007. package/node_modules/@smithy/hash-node/dist-cjs/index.js +0 -66
  1008. package/node_modules/@smithy/hash-node/dist-es/index.js +0 -34
  1009. package/node_modules/@smithy/hash-node/dist-types/index.d.ts +0 -13
  1010. package/node_modules/@smithy/hash-node/dist-types/ts3.4/index.d.ts +0 -13
  1011. package/node_modules/@smithy/hash-node/package.json +0 -64
  1012. package/node_modules/@smithy/invalid-dependency/LICENSE +0 -201
  1013. package/node_modules/@smithy/invalid-dependency/README.md +0 -10
  1014. package/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +0 -41
  1015. package/node_modules/@smithy/invalid-dependency/dist-cjs/invalidFunction.js +0 -1
  1016. package/node_modules/@smithy/invalid-dependency/dist-cjs/invalidProvider.js +0 -1
  1017. package/node_modules/@smithy/invalid-dependency/dist-es/index.js +0 -2
  1018. package/node_modules/@smithy/invalid-dependency/dist-es/invalidFunction.js +0 -3
  1019. package/node_modules/@smithy/invalid-dependency/dist-es/invalidProvider.js +0 -1
  1020. package/node_modules/@smithy/invalid-dependency/dist-types/index.d.ts +0 -8
  1021. package/node_modules/@smithy/invalid-dependency/dist-types/invalidFunction.d.ts +0 -4
  1022. package/node_modules/@smithy/invalid-dependency/dist-types/invalidProvider.d.ts +0 -5
  1023. package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/index.d.ts +0 -8
  1024. package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +0 -4
  1025. package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +0 -5
  1026. package/node_modules/@smithy/invalid-dependency/package.json +0 -57
  1027. package/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
  1028. package/node_modules/@smithy/is-array-buffer/README.md +0 -10
  1029. package/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
  1030. package/node_modules/@smithy/is-array-buffer/dist-es/index.js +0 -2
  1031. package/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +0 -4
  1032. package/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
  1033. package/node_modules/@smithy/is-array-buffer/package.json +0 -60
  1034. package/node_modules/@smithy/middleware-content-length/LICENSE +0 -201
  1035. package/node_modules/@smithy/middleware-content-length/README.md +0 -4
  1036. package/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +0 -71
  1037. package/node_modules/@smithy/middleware-content-length/dist-es/index.js +0 -39
  1038. package/node_modules/@smithy/middleware-content-length/dist-types/index.d.ts +0 -6
  1039. package/node_modules/@smithy/middleware-content-length/dist-types/ts3.4/index.d.ts +0 -6
  1040. package/node_modules/@smithy/middleware-content-length/package.json +0 -63
  1041. package/node_modules/@smithy/middleware-endpoint/LICENSE +0 -201
  1042. package/node_modules/@smithy/middleware-endpoint/README.md +0 -10
  1043. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/createConfigValueProvider.js +0 -1
  1044. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.browser.js +0 -5
  1045. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +0 -7
  1046. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromInstructions.js +0 -1
  1047. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js +0 -35
  1048. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/index.js +0 -1
  1049. package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/toEndpointV1.js +0 -1
  1050. package/node_modules/@smithy/middleware-endpoint/dist-cjs/endpointMiddleware.js +0 -1
  1051. package/node_modules/@smithy/middleware-endpoint/dist-cjs/getEndpointPlugin.js +0 -1
  1052. package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +0 -254
  1053. package/node_modules/@smithy/middleware-endpoint/dist-cjs/resolveEndpointConfig.js +0 -1
  1054. package/node_modules/@smithy/middleware-endpoint/dist-cjs/service-customizations/index.js +0 -1
  1055. package/node_modules/@smithy/middleware-endpoint/dist-cjs/service-customizations/s3.js +0 -1
  1056. package/node_modules/@smithy/middleware-endpoint/dist-cjs/types.js +0 -1
  1057. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/createConfigValueProvider.js +0 -32
  1058. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.browser.js +0 -1
  1059. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.js +0 -3
  1060. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +0 -45
  1061. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointUrlConfig.js +0 -31
  1062. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/index.js +0 -2
  1063. package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +0 -10
  1064. package/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +0 -32
  1065. package/node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js +0 -18
  1066. package/node_modules/@smithy/middleware-endpoint/dist-es/index.js +0 -5
  1067. package/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointConfig.js +0 -16
  1068. package/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/index.js +0 -1
  1069. package/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/s3.js +0 -37
  1070. package/node_modules/@smithy/middleware-endpoint/dist-es/types.js +0 -1
  1071. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/createConfigValueProvider.d.ts +0 -13
  1072. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.browser.d.ts +0 -1
  1073. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.d.ts +0 -1
  1074. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +0 -28
  1075. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +0 -2
  1076. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts +0 -8
  1077. package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +0 -5
  1078. package/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +0 -10
  1079. package/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +0 -11
  1080. package/node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts +0 -17
  1081. package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +0 -93
  1082. package/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/index.d.ts +0 -4
  1083. package/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/s3.d.ts +0 -26
  1084. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/createConfigValueProvider.d.ts +0 -13
  1085. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.browser.d.ts +0 -1
  1086. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.d.ts +0 -1
  1087. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromInstructions.d.ts +0 -28
  1088. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointUrlConfig.d.ts +0 -2
  1089. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/index.d.ts +0 -8
  1090. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/toEndpointV1.d.ts +0 -5
  1091. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/endpointMiddleware.d.ts +0 -10
  1092. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/getEndpointPlugin.d.ts +0 -11
  1093. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/index.d.ts +0 -17
  1094. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +0 -93
  1095. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/index.d.ts +0 -4
  1096. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/s3.d.ts +0 -26
  1097. package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/types.d.ts +0 -34
  1098. package/node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts +0 -34
  1099. package/node_modules/@smithy/middleware-endpoint/package.json +0 -73
  1100. package/node_modules/@smithy/middleware-retry/LICENSE +0 -201
  1101. package/node_modules/@smithy/middleware-retry/README.md +0 -11
  1102. package/node_modules/@smithy/middleware-retry/dist-cjs/AdaptiveRetryStrategy.js +0 -1
  1103. package/node_modules/@smithy/middleware-retry/dist-cjs/StandardRetryStrategy.js +0 -1
  1104. package/node_modules/@smithy/middleware-retry/dist-cjs/configurations.js +0 -1
  1105. package/node_modules/@smithy/middleware-retry/dist-cjs/defaultRetryQuota.js +0 -1
  1106. package/node_modules/@smithy/middleware-retry/dist-cjs/delayDecider.js +0 -1
  1107. package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +0 -425
  1108. package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +0 -5
  1109. package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +0 -7
  1110. package/node_modules/@smithy/middleware-retry/dist-cjs/omitRetryHeadersMiddleware.js +0 -1
  1111. package/node_modules/@smithy/middleware-retry/dist-cjs/retryDecider.js +0 -1
  1112. package/node_modules/@smithy/middleware-retry/dist-cjs/retryMiddleware.js +0 -1
  1113. package/node_modules/@smithy/middleware-retry/dist-cjs/types.js +0 -1
  1114. package/node_modules/@smithy/middleware-retry/dist-cjs/util.js +0 -1
  1115. package/node_modules/@smithy/middleware-retry/dist-es/AdaptiveRetryStrategy.js +0 -20
  1116. package/node_modules/@smithy/middleware-retry/dist-es/StandardRetryStrategy.js +0 -90
  1117. package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +0 -52
  1118. package/node_modules/@smithy/middleware-retry/dist-es/defaultRetryQuota.js +0 -27
  1119. package/node_modules/@smithy/middleware-retry/dist-es/delayDecider.js +0 -2
  1120. package/node_modules/@smithy/middleware-retry/dist-es/index.js +0 -7
  1121. package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.browser.js +0 -1
  1122. package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +0 -3
  1123. package/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +0 -22
  1124. package/node_modules/@smithy/middleware-retry/dist-es/retryDecider.js +0 -7
  1125. package/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +0 -112
  1126. package/node_modules/@smithy/middleware-retry/dist-es/types.js +0 -1
  1127. package/node_modules/@smithy/middleware-retry/dist-es/util.js +0 -9
  1128. package/node_modules/@smithy/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +0 -20
  1129. package/node_modules/@smithy/middleware-retry/dist-types/StandardRetryStrategy.d.ts +0 -30
  1130. package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +0 -45
  1131. package/node_modules/@smithy/middleware-retry/dist-types/defaultRetryQuota.d.ts +0 -18
  1132. package/node_modules/@smithy/middleware-retry/dist-types/delayDecider.d.ts +0 -4
  1133. package/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +0 -7
  1134. package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +0 -5
  1135. package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +0 -5
  1136. package/node_modules/@smithy/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +0 -4
  1137. package/node_modules/@smithy/middleware-retry/dist-types/retryDecider.d.ts +0 -5
  1138. package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +0 -6
  1139. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +0 -20
  1140. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +0 -30
  1141. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/configurations.d.ts +0 -45
  1142. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +0 -18
  1143. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +0 -4
  1144. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/index.d.ts +0 -7
  1145. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.browser.d.ts +0 -5
  1146. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.d.ts +0 -5
  1147. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +0 -4
  1148. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +0 -5
  1149. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +0 -6
  1150. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/types.d.ts +0 -53
  1151. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/util.d.ts +0 -2
  1152. package/node_modules/@smithy/middleware-retry/dist-types/types.d.ts +0 -53
  1153. package/node_modules/@smithy/middleware-retry/dist-types/util.d.ts +0 -2
  1154. package/node_modules/@smithy/middleware-retry/package.json +0 -78
  1155. package/node_modules/@smithy/middleware-serde/LICENSE +0 -201
  1156. package/node_modules/@smithy/middleware-serde/README.md +0 -4
  1157. package/node_modules/@smithy/middleware-serde/dist-cjs/deserializerMiddleware.js +0 -1
  1158. package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +0 -102
  1159. package/node_modules/@smithy/middleware-serde/dist-cjs/serdePlugin.js +0 -1
  1160. package/node_modules/@smithy/middleware-serde/dist-cjs/serializerMiddleware.js +0 -1
  1161. package/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +0 -25
  1162. package/node_modules/@smithy/middleware-serde/dist-es/index.js +0 -3
  1163. package/node_modules/@smithy/middleware-serde/dist-es/serdePlugin.js +0 -22
  1164. package/node_modules/@smithy/middleware-serde/dist-es/serializerMiddleware.js +0 -13
  1165. package/node_modules/@smithy/middleware-serde/dist-types/deserializerMiddleware.d.ts +0 -5
  1166. package/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +0 -3
  1167. package/node_modules/@smithy/middleware-serde/dist-types/serdePlugin.d.ts +0 -12
  1168. package/node_modules/@smithy/middleware-serde/dist-types/serializerMiddleware.d.ts +0 -6
  1169. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +0 -5
  1170. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/index.d.ts +0 -3
  1171. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +0 -12
  1172. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +0 -6
  1173. package/node_modules/@smithy/middleware-serde/package.json +0 -62
  1174. package/node_modules/@smithy/middleware-stack/LICENSE +0 -201
  1175. package/node_modules/@smithy/middleware-stack/README.md +0 -78
  1176. package/node_modules/@smithy/middleware-stack/dist-cjs/MiddlewareStack.js +0 -1
  1177. package/node_modules/@smithy/middleware-stack/dist-cjs/index.js +0 -318
  1178. package/node_modules/@smithy/middleware-stack/dist-cjs/types.js +0 -1
  1179. package/node_modules/@smithy/middleware-stack/dist-es/MiddlewareStack.js +0 -281
  1180. package/node_modules/@smithy/middleware-stack/dist-es/index.js +0 -1
  1181. package/node_modules/@smithy/middleware-stack/dist-es/types.js +0 -1
  1182. package/node_modules/@smithy/middleware-stack/dist-types/MiddlewareStack.d.ts +0 -2
  1183. package/node_modules/@smithy/middleware-stack/dist-types/index.d.ts +0 -1
  1184. package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +0 -2
  1185. package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/index.d.ts +0 -1
  1186. package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/types.d.ts +0 -22
  1187. package/node_modules/@smithy/middleware-stack/dist-types/types.d.ts +0 -22
  1188. package/node_modules/@smithy/middleware-stack/package.json +0 -63
  1189. package/node_modules/@smithy/node-config-provider/LICENSE +0 -201
  1190. package/node_modules/@smithy/node-config-provider/README.md +0 -4
  1191. package/node_modules/@smithy/node-config-provider/dist-cjs/configLoader.js +0 -1
  1192. package/node_modules/@smithy/node-config-provider/dist-cjs/fromEnv.js +0 -1
  1193. package/node_modules/@smithy/node-config-provider/dist-cjs/fromSharedConfigFiles.js +0 -1
  1194. package/node_modules/@smithy/node-config-provider/dist-cjs/fromStatic.js +0 -1
  1195. package/node_modules/@smithy/node-config-provider/dist-cjs/index.js +0 -87
  1196. package/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +0 -5
  1197. package/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +0 -13
  1198. package/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +0 -22
  1199. package/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +0 -3
  1200. package/node_modules/@smithy/node-config-provider/dist-es/index.js +0 -1
  1201. package/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +0 -22
  1202. package/node_modules/@smithy/node-config-provider/dist-types/fromEnv.d.ts +0 -7
  1203. package/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +0 -15
  1204. package/node_modules/@smithy/node-config-provider/dist-types/fromStatic.d.ts +0 -3
  1205. package/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +0 -1
  1206. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/configLoader.d.ts +0 -22
  1207. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +0 -7
  1208. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +0 -15
  1209. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +0 -3
  1210. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/index.d.ts +0 -1
  1211. package/node_modules/@smithy/node-config-provider/package.json +0 -65
  1212. package/node_modules/@smithy/node-http-handler/LICENSE +0 -201
  1213. package/node_modules/@smithy/node-http-handler/README.md +0 -4
  1214. package/node_modules/@smithy/node-http-handler/dist-cjs/constants.js +0 -1
  1215. package/node_modules/@smithy/node-http-handler/dist-cjs/get-transformed-headers.js +0 -1
  1216. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +0 -687
  1217. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http-handler.js +0 -1
  1218. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-manager.js +0 -1
  1219. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-pool.js +0 -1
  1220. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-handler.js +0 -1
  1221. package/node_modules/@smithy/node-http-handler/dist-cjs/readable.mock.js +0 -1
  1222. package/node_modules/@smithy/node-http-handler/dist-cjs/server.mock.js +0 -1
  1223. package/node_modules/@smithy/node-http-handler/dist-cjs/set-connection-timeout.js +0 -1
  1224. package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-keep-alive.js +0 -1
  1225. package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-timeout.js +0 -1
  1226. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/collector.js +0 -1
  1227. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/index.js +0 -1
  1228. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/readable.mock.js +0 -1
  1229. package/node_modules/@smithy/node-http-handler/dist-cjs/write-request-body.js +0 -1
  1230. package/node_modules/@smithy/node-http-handler/dist-es/constants.js +0 -1
  1231. package/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +0 -9
  1232. package/node_modules/@smithy/node-http-handler/dist-es/index.js +0 -3
  1233. package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +0 -184
  1234. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +0 -86
  1235. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +0 -32
  1236. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +0 -159
  1237. package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +0 -19
  1238. package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +0 -81
  1239. package/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +0 -21
  1240. package/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +0 -8
  1241. package/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +0 -6
  1242. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +0 -11
  1243. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +0 -14
  1244. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +0 -19
  1245. package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +0 -52
  1246. package/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +0 -5
  1247. package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +0 -4
  1248. package/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +0 -3
  1249. package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +0 -37
  1250. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +0 -22
  1251. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +0 -13
  1252. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +0 -57
  1253. package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +0 -14
  1254. package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +0 -12
  1255. package/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +0 -2
  1256. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +0 -6
  1257. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +0 -2
  1258. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +0 -7
  1259. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +0 -2
  1260. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +0 -14
  1261. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +0 -5
  1262. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +0 -4
  1263. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +0 -3
  1264. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +0 -36
  1265. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +0 -22
  1266. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +0 -13
  1267. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +0 -57
  1268. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +0 -13
  1269. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +0 -12
  1270. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +0 -2
  1271. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +0 -6
  1272. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +0 -2
  1273. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +0 -6
  1274. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +0 -2
  1275. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +0 -13
  1276. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +0 -12
  1277. package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +0 -13
  1278. package/node_modules/@smithy/node-http-handler/package.json +0 -67
  1279. package/node_modules/@smithy/property-provider/LICENSE +0 -201
  1280. package/node_modules/@smithy/property-provider/README.md +0 -10
  1281. package/node_modules/@smithy/property-provider/dist-cjs/CredentialsProviderError.js +0 -1
  1282. package/node_modules/@smithy/property-provider/dist-cjs/ProviderError.js +0 -1
  1283. package/node_modules/@smithy/property-provider/dist-cjs/TokenProviderError.js +0 -1
  1284. package/node_modules/@smithy/property-provider/dist-cjs/chain.js +0 -1
  1285. package/node_modules/@smithy/property-provider/dist-cjs/fromStatic.js +0 -1
  1286. package/node_modules/@smithy/property-provider/dist-cjs/index.js +0 -150
  1287. package/node_modules/@smithy/property-provider/dist-cjs/memoize.js +0 -1
  1288. package/node_modules/@smithy/property-provider/dist-es/CredentialsProviderError.js +0 -9
  1289. package/node_modules/@smithy/property-provider/dist-es/ProviderError.js +0 -11
  1290. package/node_modules/@smithy/property-provider/dist-es/TokenProviderError.js +0 -9
  1291. package/node_modules/@smithy/property-provider/dist-es/chain.js +0 -21
  1292. package/node_modules/@smithy/property-provider/dist-es/fromStatic.js +0 -1
  1293. package/node_modules/@smithy/property-provider/dist-es/index.js +0 -6
  1294. package/node_modules/@smithy/property-provider/dist-es/memoize.js +0 -45
  1295. package/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +0 -17
  1296. package/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +0 -17
  1297. package/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +0 -17
  1298. package/node_modules/@smithy/property-provider/dist-types/chain.d.ts +0 -13
  1299. package/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +0 -5
  1300. package/node_modules/@smithy/property-provider/dist-types/index.d.ts +0 -24
  1301. package/node_modules/@smithy/property-provider/dist-types/memoize.d.ts +0 -40
  1302. package/node_modules/@smithy/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +0 -17
  1303. package/node_modules/@smithy/property-provider/dist-types/ts3.4/ProviderError.d.ts +0 -17
  1304. package/node_modules/@smithy/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +0 -17
  1305. package/node_modules/@smithy/property-provider/dist-types/ts3.4/chain.d.ts +0 -13
  1306. package/node_modules/@smithy/property-provider/dist-types/ts3.4/fromStatic.d.ts +0 -5
  1307. package/node_modules/@smithy/property-provider/dist-types/ts3.4/index.d.ts +0 -24
  1308. package/node_modules/@smithy/property-provider/dist-types/ts3.4/memoize.d.ts +0 -40
  1309. package/node_modules/@smithy/property-provider/package.json +0 -60
  1310. package/node_modules/@smithy/protocol-http/LICENSE +0 -201
  1311. package/node_modules/@smithy/protocol-http/README.md +0 -4
  1312. package/node_modules/@smithy/protocol-http/dist-cjs/Field.js +0 -1
  1313. package/node_modules/@smithy/protocol-http/dist-cjs/Fields.js +0 -1
  1314. package/node_modules/@smithy/protocol-http/dist-cjs/extensions/httpExtensionConfiguration.js +0 -1
  1315. package/node_modules/@smithy/protocol-http/dist-cjs/extensions/index.js +0 -1
  1316. package/node_modules/@smithy/protocol-http/dist-cjs/httpHandler.js +0 -1
  1317. package/node_modules/@smithy/protocol-http/dist-cjs/httpRequest.js +0 -1
  1318. package/node_modules/@smithy/protocol-http/dist-cjs/httpResponse.js +0 -1
  1319. package/node_modules/@smithy/protocol-http/dist-cjs/index.js +0 -237
  1320. package/node_modules/@smithy/protocol-http/dist-cjs/isValidHostname.js +0 -1
  1321. package/node_modules/@smithy/protocol-http/dist-cjs/types.js +0 -1
  1322. package/node_modules/@smithy/protocol-http/dist-es/Field.js +0 -23
  1323. package/node_modules/@smithy/protocol-http/dist-es/Fields.js +0 -19
  1324. package/node_modules/@smithy/protocol-http/dist-es/extensions/httpExtensionConfiguration.js +0 -22
  1325. package/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +0 -1
  1326. package/node_modules/@smithy/protocol-http/dist-es/httpHandler.js +0 -1
  1327. package/node_modules/@smithy/protocol-http/dist-es/httpRequest.js +0 -48
  1328. package/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +0 -14
  1329. package/node_modules/@smithy/protocol-http/dist-es/index.js +0 -8
  1330. package/node_modules/@smithy/protocol-http/dist-es/isValidHostname.js +0 -4
  1331. package/node_modules/@smithy/protocol-http/dist-es/types.js +0 -1
  1332. package/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +0 -49
  1333. package/node_modules/@smithy/protocol-http/dist-types/Fields.d.ts +0 -44
  1334. package/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +0 -37
  1335. package/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +0 -1
  1336. package/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +0 -37
  1337. package/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +0 -23
  1338. package/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +0 -16
  1339. package/node_modules/@smithy/protocol-http/dist-types/index.d.ts +0 -8
  1340. package/node_modules/@smithy/protocol-http/dist-types/isValidHostname.d.ts +0 -1
  1341. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +0 -49
  1342. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/Fields.d.ts +0 -44
  1343. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/httpExtensionConfiguration.d.ts +0 -37
  1344. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/index.d.ts +0 -1
  1345. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpHandler.d.ts +0 -37
  1346. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +0 -23
  1347. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpResponse.d.ts +0 -16
  1348. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/index.d.ts +0 -8
  1349. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +0 -1
  1350. package/node_modules/@smithy/protocol-http/dist-types/ts3.4/types.d.ts +0 -21
  1351. package/node_modules/@smithy/protocol-http/dist-types/types.d.ts +0 -21
  1352. package/node_modules/@smithy/protocol-http/package.json +0 -61
  1353. package/node_modules/@smithy/querystring-builder/LICENSE +0 -201
  1354. package/node_modules/@smithy/querystring-builder/README.md +0 -10
  1355. package/node_modules/@smithy/querystring-builder/dist-cjs/index.js +0 -52
  1356. package/node_modules/@smithy/querystring-builder/dist-es/index.js +0 -21
  1357. package/node_modules/@smithy/querystring-builder/dist-types/index.d.ts +0 -5
  1358. package/node_modules/@smithy/querystring-builder/dist-types/ts3.4/index.d.ts +0 -5
  1359. package/node_modules/@smithy/querystring-builder/package.json +0 -61
  1360. package/node_modules/@smithy/querystring-parser/LICENSE +0 -201
  1361. package/node_modules/@smithy/querystring-parser/README.md +0 -10
  1362. package/node_modules/@smithy/querystring-parser/dist-cjs/index.js +0 -53
  1363. package/node_modules/@smithy/querystring-parser/dist-es/index.js +0 -23
  1364. package/node_modules/@smithy/querystring-parser/dist-types/index.d.ts +0 -5
  1365. package/node_modules/@smithy/querystring-parser/dist-types/ts3.4/index.d.ts +0 -5
  1366. package/node_modules/@smithy/querystring-parser/package.json +0 -60
  1367. package/node_modules/@smithy/service-error-classification/LICENSE +0 -201
  1368. package/node_modules/@smithy/service-error-classification/README.md +0 -4
  1369. package/node_modules/@smithy/service-error-classification/dist-cjs/constants.js +0 -1
  1370. package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +0 -98
  1371. package/node_modules/@smithy/service-error-classification/dist-es/constants.js +0 -27
  1372. package/node_modules/@smithy/service-error-classification/dist-es/index.js +0 -21
  1373. package/node_modules/@smithy/service-error-classification/dist-types/constants.d.ts +0 -26
  1374. package/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +0 -19
  1375. package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/constants.d.ts +0 -26
  1376. package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/index.d.ts +0 -19
  1377. package/node_modules/@smithy/service-error-classification/package.json +0 -59
  1378. package/node_modules/@smithy/shared-ini-file-loader/LICENSE +0 -201
  1379. package/node_modules/@smithy/shared-ini-file-loader/README.md +0 -105
  1380. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getConfigData.js +0 -1
  1381. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getConfigFilepath.js +0 -1
  1382. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getCredentialsFilepath.js +0 -1
  1383. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js +0 -26
  1384. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getProfileName.js +0 -1
  1385. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +0 -12
  1386. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +0 -12
  1387. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSsoSessionData.js +0 -1
  1388. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +0 -190
  1389. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/loadSharedConfigFiles.js +0 -1
  1390. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/loadSsoSessionData.js +0 -1
  1391. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/mergeConfigFiles.js +0 -1
  1392. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/parseIni.js +0 -1
  1393. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/parseKnownFiles.js +0 -1
  1394. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/slurpFile.js +0 -13
  1395. package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/types.js +0 -1
  1396. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigData.js +0 -18
  1397. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigFilepath.js +0 -4
  1398. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +0 -4
  1399. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getHomeDir.js +0 -22
  1400. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getProfileName.js +0 -3
  1401. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +0 -8
  1402. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +0 -8
  1403. package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSsoSessionData.js +0 -5
  1404. package/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +0 -8
  1405. package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +0 -27
  1406. package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSsoSessionData.js +0 -9
  1407. package/node_modules/@smithy/shared-ini-file-loader/dist-es/mergeConfigFiles.js +0 -14
  1408. package/node_modules/@smithy/shared-ini-file-loader/dist-es/parseIni.js +0 -52
  1409. package/node_modules/@smithy/shared-ini-file-loader/dist-es/parseKnownFiles.js +0 -6
  1410. package/node_modules/@smithy/shared-ini-file-loader/dist-es/slurpFile.js +0 -9
  1411. package/node_modules/@smithy/shared-ini-file-loader/dist-es/types.js +0 -1
  1412. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +0 -8
  1413. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigFilepath.d.ts +0 -2
  1414. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getCredentialsFilepath.d.ts +0 -2
  1415. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getHomeDir.d.ts +0 -6
  1416. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getProfileName.d.ts +0 -5
  1417. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFilepath.d.ts +0 -4
  1418. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +0 -44
  1419. package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +0 -6
  1420. package/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +0 -8
  1421. package/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSharedConfigFiles.d.ts +0 -22
  1422. package/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSsoSessionData.d.ts +0 -10
  1423. package/node_modules/@smithy/shared-ini-file-loader/dist-types/mergeConfigFiles.d.ts +0 -7
  1424. package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +0 -2
  1425. package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +0 -15
  1426. package/node_modules/@smithy/shared-ini-file-loader/dist-types/slurpFile.d.ts +0 -5
  1427. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigData.d.ts +0 -8
  1428. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigFilepath.d.ts +0 -2
  1429. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getCredentialsFilepath.d.ts +0 -2
  1430. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getHomeDir.d.ts +0 -6
  1431. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getProfileName.d.ts +0 -5
  1432. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFilepath.d.ts +0 -4
  1433. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +0 -44
  1434. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSsoSessionData.d.ts +0 -6
  1435. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +0 -8
  1436. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +0 -22
  1437. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSsoSessionData.d.ts +0 -10
  1438. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/mergeConfigFiles.d.ts +0 -7
  1439. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseIni.d.ts +0 -2
  1440. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseKnownFiles.d.ts +0 -15
  1441. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/slurpFile.d.ts +0 -5
  1442. package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/types.d.ts +0 -13
  1443. package/node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts +0 -13
  1444. package/node_modules/@smithy/shared-ini-file-loader/package.json +0 -72
  1445. package/node_modules/@smithy/smithy-client/LICENSE +0 -201
  1446. package/node_modules/@smithy/smithy-client/README.md +0 -10
  1447. package/node_modules/@smithy/smithy-client/dist-cjs/NoOpLogger.js +0 -1
  1448. package/node_modules/@smithy/smithy-client/dist-cjs/client.js +0 -1
  1449. package/node_modules/@smithy/smithy-client/dist-cjs/collect-stream-body.js +0 -1
  1450. package/node_modules/@smithy/smithy-client/dist-cjs/command.js +0 -1
  1451. package/node_modules/@smithy/smithy-client/dist-cjs/constants.js +0 -1
  1452. package/node_modules/@smithy/smithy-client/dist-cjs/create-aggregated-client.js +0 -1
  1453. package/node_modules/@smithy/smithy-client/dist-cjs/date-utils.js +0 -1
  1454. package/node_modules/@smithy/smithy-client/dist-cjs/default-error-handler.js +0 -1
  1455. package/node_modules/@smithy/smithy-client/dist-cjs/defaults-mode.js +0 -1
  1456. package/node_modules/@smithy/smithy-client/dist-cjs/emitWarningIfUnsupportedVersion.js +0 -1
  1457. package/node_modules/@smithy/smithy-client/dist-cjs/exceptions.js +0 -1
  1458. package/node_modules/@smithy/smithy-client/dist-cjs/extended-encode-uri-component.js +0 -1
  1459. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/checksum.js +0 -1
  1460. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/defaultExtensionConfiguration.js +0 -1
  1461. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/index.js +0 -1
  1462. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/retry.js +0 -1
  1463. package/node_modules/@smithy/smithy-client/dist-cjs/get-array-if-single-item.js +0 -1
  1464. package/node_modules/@smithy/smithy-client/dist-cjs/get-value-from-text-node.js +0 -1
  1465. package/node_modules/@smithy/smithy-client/dist-cjs/index.js +0 -1256
  1466. package/node_modules/@smithy/smithy-client/dist-cjs/lazy-json.js +0 -1
  1467. package/node_modules/@smithy/smithy-client/dist-cjs/object-mapping.js +0 -1
  1468. package/node_modules/@smithy/smithy-client/dist-cjs/parse-utils.js +0 -1
  1469. package/node_modules/@smithy/smithy-client/dist-cjs/resolve-path.js +0 -1
  1470. package/node_modules/@smithy/smithy-client/dist-cjs/ser-utils.js +0 -1
  1471. package/node_modules/@smithy/smithy-client/dist-cjs/serde-json.js +0 -1
  1472. package/node_modules/@smithy/smithy-client/dist-cjs/split-every.js +0 -1
  1473. package/node_modules/@smithy/smithy-client/dist-es/NoOpLogger.js +0 -7
  1474. package/node_modules/@smithy/smithy-client/dist-es/client.js +0 -24
  1475. package/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +0 -11
  1476. package/node_modules/@smithy/smithy-client/dist-es/command.js +0 -114
  1477. package/node_modules/@smithy/smithy-client/dist-es/constants.js +0 -1
  1478. package/node_modules/@smithy/smithy-client/dist-es/create-aggregated-client.js +0 -21
  1479. package/node_modules/@smithy/smithy-client/dist-es/date-utils.js +0 -187
  1480. package/node_modules/@smithy/smithy-client/dist-es/default-error-handler.js +0 -22
  1481. package/node_modules/@smithy/smithy-client/dist-es/defaults-mode.js +0 -26
  1482. package/node_modules/@smithy/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js +0 -6
  1483. package/node_modules/@smithy/smithy-client/dist-es/exceptions.js +0 -22
  1484. package/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +0 -5
  1485. package/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +0 -31
  1486. package/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +0 -15
  1487. package/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +0 -1
  1488. package/node_modules/@smithy/smithy-client/dist-es/extensions/retry.js +0 -16
  1489. package/node_modules/@smithy/smithy-client/dist-es/get-array-if-single-item.js +0 -1
  1490. package/node_modules/@smithy/smithy-client/dist-es/get-value-from-text-node.js +0 -12
  1491. package/node_modules/@smithy/smithy-client/dist-es/index.js +0 -22
  1492. package/node_modules/@smithy/smithy-client/dist-es/lazy-json.js +0 -33
  1493. package/node_modules/@smithy/smithy-client/dist-es/object-mapping.js +0 -92
  1494. package/node_modules/@smithy/smithy-client/dist-es/parse-utils.js +0 -230
  1495. package/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +0 -19
  1496. package/node_modules/@smithy/smithy-client/dist-es/ser-utils.js +0 -13
  1497. package/node_modules/@smithy/smithy-client/dist-es/serde-json.js +0 -19
  1498. package/node_modules/@smithy/smithy-client/dist-es/split-every.js +0 -27
  1499. package/node_modules/@smithy/smithy-client/dist-types/NoOpLogger.d.ts +0 -11
  1500. package/node_modules/@smithy/smithy-client/dist-types/client.d.ts +0 -32
  1501. package/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +0 -10
  1502. package/node_modules/@smithy/smithy-client/dist-types/command.d.ts +0 -113
  1503. package/node_modules/@smithy/smithy-client/dist-types/constants.d.ts +0 -4
  1504. package/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +0 -9
  1505. package/node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts +0 -73
  1506. package/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +0 -13
  1507. package/node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts +0 -28
  1508. package/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +0 -8
  1509. package/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +0 -34
  1510. package/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +0 -7
  1511. package/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +0 -25
  1512. package/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -38
  1513. package/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +0 -1
  1514. package/node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts +0 -15
  1515. package/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +0 -7
  1516. package/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +0 -7
  1517. package/node_modules/@smithy/smithy-client/dist-types/index.d.ts +0 -23
  1518. package/node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts +0 -24
  1519. package/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +0 -162
  1520. package/node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts +0 -270
  1521. package/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +0 -4
  1522. package/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +0 -9
  1523. package/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +0 -10
  1524. package/node_modules/@smithy/smithy-client/dist-types/split-every.d.ts +0 -11
  1525. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/NoOpLogger.d.ts +0 -11
  1526. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/client.d.ts +0 -32
  1527. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/collect-stream-body.d.ts +0 -10
  1528. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/command.d.ts +0 -113
  1529. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/constants.d.ts +0 -4
  1530. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/create-aggregated-client.d.ts +0 -9
  1531. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/date-utils.d.ts +0 -73
  1532. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +0 -13
  1533. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +0 -28
  1534. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +0 -8
  1535. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/exceptions.d.ts +0 -34
  1536. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +0 -7
  1537. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/checksum.d.ts +0 -25
  1538. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +0 -38
  1539. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/index.d.ts +0 -1
  1540. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/retry.d.ts +0 -15
  1541. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +0 -7
  1542. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +0 -7
  1543. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/index.d.ts +0 -23
  1544. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/lazy-json.d.ts +0 -24
  1545. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/object-mapping.d.ts +0 -178
  1546. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/parse-utils.d.ts +0 -270
  1547. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/resolve-path.d.ts +0 -4
  1548. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/ser-utils.d.ts +0 -9
  1549. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/serde-json.d.ts +0 -10
  1550. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/split-every.d.ts +0 -11
  1551. package/node_modules/@smithy/smithy-client/package.json +0 -66
  1552. package/node_modules/@smithy/types/LICENSE +0 -201
  1553. package/node_modules/@smithy/types/README.md +0 -80
  1554. package/node_modules/@smithy/types/dist-cjs/abort.js +0 -1
  1555. package/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +0 -1
  1556. package/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +0 -1
  1557. package/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +0 -1
  1558. package/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +0 -1
  1559. package/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +0 -1
  1560. package/node_modules/@smithy/types/dist-cjs/auth/auth.js +0 -1
  1561. package/node_modules/@smithy/types/dist-cjs/auth/index.js +0 -1
  1562. package/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +0 -1
  1563. package/node_modules/@smithy/types/dist-cjs/checksum.js +0 -1
  1564. package/node_modules/@smithy/types/dist-cjs/client.js +0 -1
  1565. package/node_modules/@smithy/types/dist-cjs/command.js +0 -1
  1566. package/node_modules/@smithy/types/dist-cjs/connection/config.js +0 -1
  1567. package/node_modules/@smithy/types/dist-cjs/connection/index.js +0 -1
  1568. package/node_modules/@smithy/types/dist-cjs/connection/manager.js +0 -1
  1569. package/node_modules/@smithy/types/dist-cjs/connection/pool.js +0 -1
  1570. package/node_modules/@smithy/types/dist-cjs/crypto.js +0 -1
  1571. package/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +0 -1
  1572. package/node_modules/@smithy/types/dist-cjs/encode.js +0 -1
  1573. package/node_modules/@smithy/types/dist-cjs/endpoint.js +0 -1
  1574. package/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +0 -1
  1575. package/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +0 -1
  1576. package/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +0 -1
  1577. package/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +0 -1
  1578. package/node_modules/@smithy/types/dist-cjs/endpoints/index.js +0 -1
  1579. package/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +0 -1
  1580. package/node_modules/@smithy/types/dist-cjs/eventStream.js +0 -1
  1581. package/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +0 -1
  1582. package/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +0 -1
  1583. package/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +0 -1
  1584. package/node_modules/@smithy/types/dist-cjs/extensions/index.js +0 -1
  1585. package/node_modules/@smithy/types/dist-cjs/extensions/retry.js +0 -1
  1586. package/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +0 -1
  1587. package/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +0 -1
  1588. package/node_modules/@smithy/types/dist-cjs/http.js +0 -1
  1589. package/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +0 -1
  1590. package/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +0 -1
  1591. package/node_modules/@smithy/types/dist-cjs/identity/identity.js +0 -1
  1592. package/node_modules/@smithy/types/dist-cjs/identity/index.js +0 -1
  1593. package/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +0 -1
  1594. package/node_modules/@smithy/types/dist-cjs/index.js +0 -149
  1595. package/node_modules/@smithy/types/dist-cjs/logger.js +0 -1
  1596. package/node_modules/@smithy/types/dist-cjs/middleware.js +0 -1
  1597. package/node_modules/@smithy/types/dist-cjs/pagination.js +0 -1
  1598. package/node_modules/@smithy/types/dist-cjs/profile.js +0 -1
  1599. package/node_modules/@smithy/types/dist-cjs/response.js +0 -1
  1600. package/node_modules/@smithy/types/dist-cjs/retry.js +0 -1
  1601. package/node_modules/@smithy/types/dist-cjs/serde.js +0 -1
  1602. package/node_modules/@smithy/types/dist-cjs/shapes.js +0 -1
  1603. package/node_modules/@smithy/types/dist-cjs/signature.js +0 -1
  1604. package/node_modules/@smithy/types/dist-cjs/stream.js +0 -1
  1605. package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +0 -1
  1606. package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-input-types.js +0 -1
  1607. package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-output-types.js +0 -1
  1608. package/node_modules/@smithy/types/dist-cjs/transfer.js +0 -1
  1609. package/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +0 -1
  1610. package/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +0 -1
  1611. package/node_modules/@smithy/types/dist-cjs/transform/exact.js +0 -1
  1612. package/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +0 -1
  1613. package/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +0 -1
  1614. package/node_modules/@smithy/types/dist-cjs/uri.js +0 -1
  1615. package/node_modules/@smithy/types/dist-cjs/util.js +0 -1
  1616. package/node_modules/@smithy/types/dist-cjs/waiter.js +0 -1
  1617. package/node_modules/@smithy/types/dist-es/abort.js +0 -1
  1618. package/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +0 -5
  1619. package/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +0 -1
  1620. package/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +0 -1
  1621. package/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +0 -1
  1622. package/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +0 -1
  1623. package/node_modules/@smithy/types/dist-es/auth/auth.js +0 -5
  1624. package/node_modules/@smithy/types/dist-es/auth/index.js +0 -6
  1625. package/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +0 -1
  1626. package/node_modules/@smithy/types/dist-es/checksum.js +0 -1
  1627. package/node_modules/@smithy/types/dist-es/client.js +0 -1
  1628. package/node_modules/@smithy/types/dist-es/command.js +0 -1
  1629. package/node_modules/@smithy/types/dist-es/connection/config.js +0 -1
  1630. package/node_modules/@smithy/types/dist-es/connection/index.js +0 -3
  1631. package/node_modules/@smithy/types/dist-es/connection/manager.js +0 -1
  1632. package/node_modules/@smithy/types/dist-es/connection/pool.js +0 -1
  1633. package/node_modules/@smithy/types/dist-es/crypto.js +0 -1
  1634. package/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +0 -1
  1635. package/node_modules/@smithy/types/dist-es/encode.js +0 -1
  1636. package/node_modules/@smithy/types/dist-es/endpoint.js +0 -5
  1637. package/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +0 -1
  1638. package/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +0 -1
  1639. package/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +0 -1
  1640. package/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +0 -1
  1641. package/node_modules/@smithy/types/dist-es/endpoints/index.js +0 -5
  1642. package/node_modules/@smithy/types/dist-es/endpoints/shared.js +0 -1
  1643. package/node_modules/@smithy/types/dist-es/eventStream.js +0 -1
  1644. package/node_modules/@smithy/types/dist-es/extensions/checksum.js +0 -39
  1645. package/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +0 -11
  1646. package/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +0 -1
  1647. package/node_modules/@smithy/types/dist-es/extensions/index.js +0 -3
  1648. package/node_modules/@smithy/types/dist-es/extensions/retry.js +0 -1
  1649. package/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +0 -1
  1650. package/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +0 -1
  1651. package/node_modules/@smithy/types/dist-es/http.js +0 -5
  1652. package/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +0 -1
  1653. package/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +0 -1
  1654. package/node_modules/@smithy/types/dist-es/identity/identity.js +0 -1
  1655. package/node_modules/@smithy/types/dist-es/identity/index.js +0 -4
  1656. package/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +0 -1
  1657. package/node_modules/@smithy/types/dist-es/index.js +0 -36
  1658. package/node_modules/@smithy/types/dist-es/logger.js +0 -1
  1659. package/node_modules/@smithy/types/dist-es/middleware.js +0 -1
  1660. package/node_modules/@smithy/types/dist-es/pagination.js +0 -1
  1661. package/node_modules/@smithy/types/dist-es/profile.js +0 -6
  1662. package/node_modules/@smithy/types/dist-es/response.js +0 -1
  1663. package/node_modules/@smithy/types/dist-es/retry.js +0 -1
  1664. package/node_modules/@smithy/types/dist-es/serde.js +0 -1
  1665. package/node_modules/@smithy/types/dist-es/shapes.js +0 -1
  1666. package/node_modules/@smithy/types/dist-es/signature.js +0 -1
  1667. package/node_modules/@smithy/types/dist-es/stream.js +0 -1
  1668. package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +0 -1
  1669. package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +0 -1
  1670. package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +0 -1
  1671. package/node_modules/@smithy/types/dist-es/transfer.js +0 -6
  1672. package/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +0 -1
  1673. package/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +0 -1
  1674. package/node_modules/@smithy/types/dist-es/transform/exact.js +0 -1
  1675. package/node_modules/@smithy/types/dist-es/transform/no-undefined.js +0 -1
  1676. package/node_modules/@smithy/types/dist-es/transform/type-transform.js +0 -1
  1677. package/node_modules/@smithy/types/dist-es/uri.js +0 -1
  1678. package/node_modules/@smithy/types/dist-es/util.js +0 -1
  1679. package/node_modules/@smithy/types/dist-es/waiter.js +0 -1
  1680. package/node_modules/@smithy/types/dist-types/abort.d.ts +0 -49
  1681. package/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +0 -7
  1682. package/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +0 -49
  1683. package/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +0 -20
  1684. package/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +0 -41
  1685. package/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +0 -14
  1686. package/node_modules/@smithy/types/dist-types/auth/auth.d.ts +0 -57
  1687. package/node_modules/@smithy/types/dist-types/auth/index.d.ts +0 -6
  1688. package/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +0 -41
  1689. package/node_modules/@smithy/types/dist-types/checksum.d.ts +0 -63
  1690. package/node_modules/@smithy/types/dist-types/client.d.ts +0 -44
  1691. package/node_modules/@smithy/types/dist-types/command.d.ts +0 -10
  1692. package/node_modules/@smithy/types/dist-types/connection/config.d.ts +0 -7
  1693. package/node_modules/@smithy/types/dist-types/connection/index.d.ts +0 -3
  1694. package/node_modules/@smithy/types/dist-types/connection/manager.d.ts +0 -28
  1695. package/node_modules/@smithy/types/dist-types/connection/pool.d.ts +0 -24
  1696. package/node_modules/@smithy/types/dist-types/crypto.d.ts +0 -60
  1697. package/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +0 -25
  1698. package/node_modules/@smithy/types/dist-types/encode.d.ts +0 -19
  1699. package/node_modules/@smithy/types/dist-types/endpoint.d.ts +0 -77
  1700. package/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +0 -15
  1701. package/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +0 -7
  1702. package/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +0 -19
  1703. package/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +0 -10
  1704. package/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +0 -5
  1705. package/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +0 -25
  1706. package/node_modules/@smithy/types/dist-types/eventStream.d.ts +0 -108
  1707. package/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +0 -55
  1708. package/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +0 -33
  1709. package/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -9
  1710. package/node_modules/@smithy/types/dist-types/extensions/index.d.ts +0 -4
  1711. package/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +0 -18
  1712. package/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +0 -35
  1713. package/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +0 -79
  1714. package/node_modules/@smithy/types/dist-types/http.d.ts +0 -105
  1715. package/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +0 -14
  1716. package/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +0 -27
  1717. package/node_modules/@smithy/types/dist-types/identity/identity.d.ts +0 -15
  1718. package/node_modules/@smithy/types/dist-types/identity/index.d.ts +0 -4
  1719. package/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +0 -14
  1720. package/node_modules/@smithy/types/dist-types/index.d.ts +0 -36
  1721. package/node_modules/@smithy/types/dist-types/logger.d.ts +0 -13
  1722. package/node_modules/@smithy/types/dist-types/middleware.d.ts +0 -510
  1723. package/node_modules/@smithy/types/dist-types/pagination.d.ts +0 -26
  1724. package/node_modules/@smithy/types/dist-types/profile.d.ts +0 -30
  1725. package/node_modules/@smithy/types/dist-types/response.d.ts +0 -40
  1726. package/node_modules/@smithy/types/dist-types/retry.d.ts +0 -133
  1727. package/node_modules/@smithy/types/dist-types/serde.d.ts +0 -111
  1728. package/node_modules/@smithy/types/dist-types/shapes.d.ts +0 -81
  1729. package/node_modules/@smithy/types/dist-types/signature.d.ts +0 -150
  1730. package/node_modules/@smithy/types/dist-types/stream.d.ts +0 -22
  1731. package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +0 -33
  1732. package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -62
  1733. package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -53
  1734. package/node_modules/@smithy/types/dist-types/transfer.d.ts +0 -33
  1735. package/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +0 -26
  1736. package/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +0 -73
  1737. package/node_modules/@smithy/types/dist-types/transform/exact.d.ts +0 -6
  1738. package/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +0 -62
  1739. package/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +0 -34
  1740. package/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +0 -49
  1741. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +0 -7
  1742. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +0 -49
  1743. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +0 -20
  1744. package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +0 -41
  1745. package/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +0 -14
  1746. package/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +0 -57
  1747. package/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +0 -6
  1748. package/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +0 -40
  1749. package/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +0 -63
  1750. package/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +0 -44
  1751. package/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +0 -10
  1752. package/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +0 -7
  1753. package/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +0 -3
  1754. package/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +0 -28
  1755. package/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +0 -24
  1756. package/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +0 -60
  1757. package/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +0 -41
  1758. package/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +0 -19
  1759. package/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +0 -77
  1760. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +0 -15
  1761. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +0 -7
  1762. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +0 -19
  1763. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +0 -10
  1764. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +0 -5
  1765. package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +0 -25
  1766. package/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +0 -108
  1767. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +0 -55
  1768. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +0 -33
  1769. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +0 -9
  1770. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +0 -4
  1771. package/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +0 -18
  1772. package/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +0 -35
  1773. package/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +0 -78
  1774. package/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +0 -105
  1775. package/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +0 -14
  1776. package/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +0 -27
  1777. package/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +0 -15
  1778. package/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +0 -4
  1779. package/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +0 -14
  1780. package/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +0 -36
  1781. package/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +0 -13
  1782. package/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +0 -510
  1783. package/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +0 -26
  1784. package/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +0 -30
  1785. package/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +0 -40
  1786. package/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +0 -133
  1787. package/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +0 -111
  1788. package/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +0 -81
  1789. package/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +0 -150
  1790. package/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +0 -22
  1791. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +0 -33
  1792. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -61
  1793. package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -52
  1794. package/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +0 -33
  1795. package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +0 -26
  1796. package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +0 -84
  1797. package/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +0 -14
  1798. package/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +0 -82
  1799. package/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +0 -41
  1800. package/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +0 -17
  1801. package/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +0 -192
  1802. package/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +0 -35
  1803. package/node_modules/@smithy/types/dist-types/uri.d.ts +0 -17
  1804. package/node_modules/@smithy/types/dist-types/util.d.ts +0 -176
  1805. package/node_modules/@smithy/types/dist-types/waiter.d.ts +0 -35
  1806. package/node_modules/@smithy/types/package.json +0 -61
  1807. package/node_modules/@smithy/url-parser/LICENSE +0 -201
  1808. package/node_modules/@smithy/url-parser/README.md +0 -10
  1809. package/node_modules/@smithy/url-parser/dist-cjs/index.js +0 -49
  1810. package/node_modules/@smithy/url-parser/dist-es/index.js +0 -18
  1811. package/node_modules/@smithy/url-parser/dist-types/index.d.ts +0 -5
  1812. package/node_modules/@smithy/url-parser/dist-types/ts3.4/index.d.ts +0 -5
  1813. package/node_modules/@smithy/url-parser/package.json +0 -58
  1814. package/node_modules/@smithy/util-base64/LICENSE +0 -201
  1815. package/node_modules/@smithy/util-base64/README.md +0 -4
  1816. package/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +0 -35
  1817. package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.browser.js +0 -40
  1818. package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.js +0 -16
  1819. package/node_modules/@smithy/util-base64/dist-cjs/index.js +0 -27
  1820. package/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +0 -39
  1821. package/node_modules/@smithy/util-base64/dist-cjs/toBase64.js +0 -19
  1822. package/node_modules/@smithy/util-base64/dist-es/constants.browser.js +0 -28
  1823. package/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js +0 -36
  1824. package/node_modules/@smithy/util-base64/dist-es/fromBase64.js +0 -12
  1825. package/node_modules/@smithy/util-base64/dist-es/index.js +0 -2
  1826. package/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js +0 -35
  1827. package/node_modules/@smithy/util-base64/dist-es/toBase64.js +0 -15
  1828. package/node_modules/@smithy/util-base64/dist-types/constants.browser.d.ts +0 -6
  1829. package/node_modules/@smithy/util-base64/dist-types/fromBase64.browser.d.ts +0 -8
  1830. package/node_modules/@smithy/util-base64/dist-types/fromBase64.d.ts +0 -7
  1831. package/node_modules/@smithy/util-base64/dist-types/index.d.ts +0 -2
  1832. package/node_modules/@smithy/util-base64/dist-types/toBase64.browser.d.ts +0 -9
  1833. package/node_modules/@smithy/util-base64/dist-types/toBase64.d.ts +0 -8
  1834. package/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +0 -6
  1835. package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts +0 -8
  1836. package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.d.ts +0 -7
  1837. package/node_modules/@smithy/util-base64/dist-types/ts3.4/index.d.ts +0 -2
  1838. package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.browser.d.ts +0 -9
  1839. package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.d.ts +0 -8
  1840. package/node_modules/@smithy/util-base64/package.json +0 -73
  1841. package/node_modules/@smithy/util-body-length-browser/LICENSE +0 -201
  1842. package/node_modules/@smithy/util-body-length-browser/README.md +0 -12
  1843. package/node_modules/@smithy/util-body-length-browser/dist-cjs/calculateBodyLength.js +0 -1
  1844. package/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +0 -57
  1845. package/node_modules/@smithy/util-body-length-browser/dist-es/calculateBodyLength.js +0 -26
  1846. package/node_modules/@smithy/util-body-length-browser/dist-es/index.js +0 -1
  1847. package/node_modules/@smithy/util-body-length-browser/dist-types/calculateBodyLength.d.ts +0 -4
  1848. package/node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts +0 -4
  1849. package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +0 -4
  1850. package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/index.d.ts +0 -4
  1851. package/node_modules/@smithy/util-body-length-browser/package.json +0 -57
  1852. package/node_modules/@smithy/util-body-length-node/LICENSE +0 -201
  1853. package/node_modules/@smithy/util-body-length-node/README.md +0 -12
  1854. package/node_modules/@smithy/util-body-length-node/dist-cjs/calculateBodyLength.js +0 -1
  1855. package/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +0 -53
  1856. package/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +0 -25
  1857. package/node_modules/@smithy/util-body-length-node/dist-es/index.js +0 -1
  1858. package/node_modules/@smithy/util-body-length-node/dist-types/calculateBodyLength.d.ts +0 -4
  1859. package/node_modules/@smithy/util-body-length-node/dist-types/index.d.ts +0 -4
  1860. package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +0 -4
  1861. package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/index.d.ts +0 -4
  1862. package/node_modules/@smithy/util-body-length-node/package.json +0 -61
  1863. package/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
  1864. package/node_modules/@smithy/util-buffer-from/README.md +0 -10
  1865. package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
  1866. package/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
  1867. package/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
  1868. package/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
  1869. package/node_modules/@smithy/util-buffer-from/package.json +0 -61
  1870. package/node_modules/@smithy/util-config-provider/LICENSE +0 -201
  1871. package/node_modules/@smithy/util-config-provider/README.md +0 -4
  1872. package/node_modules/@smithy/util-config-provider/dist-cjs/booleanSelector.js +0 -1
  1873. package/node_modules/@smithy/util-config-provider/dist-cjs/index.js +0 -64
  1874. package/node_modules/@smithy/util-config-provider/dist-cjs/numberSelector.js +0 -1
  1875. package/node_modules/@smithy/util-config-provider/dist-cjs/types.js +0 -1
  1876. package/node_modules/@smithy/util-config-provider/dist-es/booleanSelector.js +0 -9
  1877. package/node_modules/@smithy/util-config-provider/dist-es/index.js +0 -3
  1878. package/node_modules/@smithy/util-config-provider/dist-es/numberSelector.js +0 -9
  1879. package/node_modules/@smithy/util-config-provider/dist-es/types.js +0 -5
  1880. package/node_modules/@smithy/util-config-provider/dist-types/booleanSelector.d.ts +0 -10
  1881. package/node_modules/@smithy/util-config-provider/dist-types/index.d.ts +0 -3
  1882. package/node_modules/@smithy/util-config-provider/dist-types/numberSelector.d.ts +0 -9
  1883. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +0 -10
  1884. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/index.d.ts +0 -3
  1885. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/numberSelector.d.ts +0 -9
  1886. package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/types.d.ts +0 -4
  1887. package/node_modules/@smithy/util-config-provider/dist-types/types.d.ts +0 -4
  1888. package/node_modules/@smithy/util-config-provider/package.json +0 -62
  1889. package/node_modules/@smithy/util-defaults-mode-browser/LICENSE +0 -201
  1890. package/node_modules/@smithy/util-defaults-mode-browser/README.md +0 -10
  1891. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +0 -4
  1892. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +0 -25
  1893. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +0 -33
  1894. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +0 -23
  1895. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +0 -1
  1896. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +0 -1
  1897. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +0 -27
  1898. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +0 -19
  1899. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +0 -12
  1900. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +0 -4
  1901. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +0 -17
  1902. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +0 -16
  1903. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +0 -12
  1904. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +0 -4
  1905. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +0 -17
  1906. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +0 -16
  1907. package/node_modules/@smithy/util-defaults-mode-browser/package.json +0 -66
  1908. package/node_modules/@smithy/util-defaults-mode-node/LICENSE +0 -201
  1909. package/node_modules/@smithy/util-defaults-mode-node/README.md +0 -10
  1910. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/constants.js +0 -1
  1911. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/defaultsModeConfig.js +0 -1
  1912. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +0 -119
  1913. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/resolveDefaultsModeConfig.js +0 -1
  1914. package/node_modules/@smithy/util-defaults-mode-node/dist-es/constants.js +0 -6
  1915. package/node_modules/@smithy/util-defaults-mode-node/dist-es/defaultsModeConfig.js +0 -11
  1916. package/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +0 -1
  1917. package/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +0 -52
  1918. package/node_modules/@smithy/util-defaults-mode-node/dist-types/constants.d.ts +0 -24
  1919. package/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +0 -6
  1920. package/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +0 -4
  1921. package/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +0 -17
  1922. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +0 -24
  1923. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +0 -6
  1924. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +0 -4
  1925. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +0 -17
  1926. package/node_modules/@smithy/util-defaults-mode-node/package.json +0 -66
  1927. package/node_modules/@smithy/util-hex-encoding/LICENSE +0 -201
  1928. package/node_modules/@smithy/util-hex-encoding/README.md +0 -4
  1929. package/node_modules/@smithy/util-hex-encoding/dist-cjs/index.js +0 -67
  1930. package/node_modules/@smithy/util-hex-encoding/dist-es/index.js +0 -33
  1931. package/node_modules/@smithy/util-hex-encoding/dist-types/index.d.ts +0 -12
  1932. package/node_modules/@smithy/util-hex-encoding/dist-types/ts3.4/index.d.ts +0 -12
  1933. package/node_modules/@smithy/util-hex-encoding/package.json +0 -60
  1934. package/node_modules/@smithy/util-middleware/LICENSE +0 -201
  1935. package/node_modules/@smithy/util-middleware/README.md +0 -12
  1936. package/node_modules/@smithy/util-middleware/dist-cjs/getSmithyContext.js +0 -1
  1937. package/node_modules/@smithy/util-middleware/dist-cjs/index.js +0 -45
  1938. package/node_modules/@smithy/util-middleware/dist-cjs/normalizeProvider.js +0 -1
  1939. package/node_modules/@smithy/util-middleware/dist-es/getSmithyContext.js +0 -2
  1940. package/node_modules/@smithy/util-middleware/dist-es/index.js +0 -2
  1941. package/node_modules/@smithy/util-middleware/dist-es/normalizeProvider.js +0 -6
  1942. package/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +0 -5
  1943. package/node_modules/@smithy/util-middleware/dist-types/index.d.ts +0 -8
  1944. package/node_modules/@smithy/util-middleware/dist-types/normalizeProvider.d.ts +0 -7
  1945. package/node_modules/@smithy/util-middleware/dist-types/ts3.4/getSmithyContext.d.ts +0 -5
  1946. package/node_modules/@smithy/util-middleware/dist-types/ts3.4/index.d.ts +0 -8
  1947. package/node_modules/@smithy/util-middleware/dist-types/ts3.4/normalizeProvider.d.ts +0 -7
  1948. package/node_modules/@smithy/util-middleware/package.json +0 -66
  1949. package/node_modules/@smithy/util-retry/LICENSE +0 -201
  1950. package/node_modules/@smithy/util-retry/README.md +0 -78
  1951. package/node_modules/@smithy/util-retry/dist-cjs/AdaptiveRetryStrategy.js +0 -1
  1952. package/node_modules/@smithy/util-retry/dist-cjs/ConfiguredRetryStrategy.js +0 -1
  1953. package/node_modules/@smithy/util-retry/dist-cjs/DefaultRateLimiter.js +0 -1
  1954. package/node_modules/@smithy/util-retry/dist-cjs/StandardRetryStrategy.js +0 -1
  1955. package/node_modules/@smithy/util-retry/dist-cjs/config.js +0 -1
  1956. package/node_modules/@smithy/util-retry/dist-cjs/constants.js +0 -1
  1957. package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryBackoffStrategy.js +0 -1
  1958. package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryToken.js +0 -1
  1959. package/node_modules/@smithy/util-retry/dist-cjs/index.js +0 -347
  1960. package/node_modules/@smithy/util-retry/dist-cjs/types.js +0 -1
  1961. package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +0 -24
  1962. package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +0 -18
  1963. package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +0 -99
  1964. package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +0 -65
  1965. package/node_modules/@smithy/util-retry/dist-es/config.js +0 -7
  1966. package/node_modules/@smithy/util-retry/dist-es/constants.js +0 -9
  1967. package/node_modules/@smithy/util-retry/dist-es/defaultRetryBackoffStrategy.js +0 -14
  1968. package/node_modules/@smithy/util-retry/dist-es/defaultRetryToken.js +0 -11
  1969. package/node_modules/@smithy/util-retry/dist-es/index.js +0 -7
  1970. package/node_modules/@smithy/util-retry/dist-es/types.js +0 -1
  1971. package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +0 -33
  1972. package/node_modules/@smithy/util-retry/dist-types/ConfiguredRetryStrategy.d.ts +0 -32
  1973. package/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +0 -45
  1974. package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +0 -26
  1975. package/node_modules/@smithy/util-retry/dist-types/config.d.ts +0 -20
  1976. package/node_modules/@smithy/util-retry/dist-types/constants.d.ts +0 -59
  1977. package/node_modules/@smithy/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +0 -5
  1978. package/node_modules/@smithy/util-retry/dist-types/defaultRetryToken.d.ts +0 -9
  1979. package/node_modules/@smithy/util-retry/dist-types/index.d.ts +0 -7
  1980. package/node_modules/@smithy/util-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +0 -33
  1981. package/node_modules/@smithy/util-retry/dist-types/ts3.4/ConfiguredRetryStrategy.d.ts +0 -32
  1982. package/node_modules/@smithy/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +0 -45
  1983. package/node_modules/@smithy/util-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +0 -26
  1984. package/node_modules/@smithy/util-retry/dist-types/ts3.4/config.d.ts +0 -20
  1985. package/node_modules/@smithy/util-retry/dist-types/ts3.4/constants.d.ts +0 -59
  1986. package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryBackoffStrategy.d.ts +0 -5
  1987. package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryToken.d.ts +0 -9
  1988. package/node_modules/@smithy/util-retry/dist-types/ts3.4/index.d.ts +0 -7
  1989. package/node_modules/@smithy/util-retry/dist-types/ts3.4/types.d.ts +0 -19
  1990. package/node_modules/@smithy/util-retry/dist-types/types.d.ts +0 -19
  1991. package/node_modules/@smithy/util-retry/package.json +0 -68
  1992. package/node_modules/@smithy/util-stream/LICENSE +0 -201
  1993. package/node_modules/@smithy/util-stream/README.md +0 -6
  1994. package/node_modules/@smithy/util-stream/dist-cjs/blob/Uint8ArrayBlobAdapter.js +0 -1
  1995. package/node_modules/@smithy/util-stream/dist-cjs/blob/transforms.js +0 -1
  1996. package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +0 -31
  1997. package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +0 -30
  1998. package/node_modules/@smithy/util-stream/dist-cjs/index.js +0 -89
  1999. package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +0 -69
  2000. package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +0 -50
  2001. package/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +0 -18
  2002. package/node_modules/@smithy/util-stream/dist-es/blob/transforms.js +0 -15
  2003. package/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.browser.js +0 -27
  2004. package/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.js +0 -26
  2005. package/node_modules/@smithy/util-stream/dist-es/index.js +0 -3
  2006. package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +0 -64
  2007. package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +0 -45
  2008. package/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +0 -21
  2009. package/node_modules/@smithy/util-stream/dist-types/blob/transforms.d.ts +0 -9
  2010. package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.browser.d.ts +0 -5
  2011. package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +0 -7
  2012. package/node_modules/@smithy/util-stream/dist-types/index.d.ts +0 -3
  2013. package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.browser.d.ts +0 -7
  2014. package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +0 -8
  2015. package/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +0 -21
  2016. package/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/transforms.d.ts +0 -9
  2017. package/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.browser.d.ts +0 -5
  2018. package/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +0 -7
  2019. package/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +0 -3
  2020. package/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.browser.d.ts +0 -7
  2021. package/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.d.ts +0 -8
  2022. package/node_modules/@smithy/util-stream/package.json +0 -95
  2023. package/node_modules/@smithy/util-uri-escape/LICENSE +0 -201
  2024. package/node_modules/@smithy/util-uri-escape/README.md +0 -10
  2025. package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri-path.js +0 -1
  2026. package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri.js +0 -1
  2027. package/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +0 -43
  2028. package/node_modules/@smithy/util-uri-escape/dist-es/escape-uri-path.js +0 -2
  2029. package/node_modules/@smithy/util-uri-escape/dist-es/escape-uri.js +0 -2
  2030. package/node_modules/@smithy/util-uri-escape/dist-es/index.js +0 -2
  2031. package/node_modules/@smithy/util-uri-escape/dist-types/escape-uri-path.d.ts +0 -4
  2032. package/node_modules/@smithy/util-uri-escape/dist-types/escape-uri.d.ts +0 -4
  2033. package/node_modules/@smithy/util-uri-escape/dist-types/index.d.ts +0 -8
  2034. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +0 -4
  2035. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +0 -4
  2036. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/index.d.ts +0 -8
  2037. package/node_modules/@smithy/util-uri-escape/package.json +0 -59
  2038. package/out/language-server/pathUtils.js.map +0 -1
  2039. /package/{node_modules/@aws-sdk/middleware-token/dist-es/configurations.js → out/language-server/utilities/filesystemUtilities.test.d.ts} +0 -0
  2040. /package/{node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js → out/language-server/utilities/pathUtils.test.d.ts} +0 -0
  2041. /package/{node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js → out/language-server/utilities/supplementalContextUtil/crossFileContextUtil.test.d.ts} +0 -0
  2042. /package/{node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js → out/language-server/utilities/supplementalContextUtil/supplementalContextUtil.test.d.ts} +0 -0
  2043. /package/{node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js → out/language-server/utilities/textUtils.test.d.ts} +0 -0
@@ -1,12 +0,0 @@
1
- /**
2
- * The result of a successful KeyOperation.
3
- *
4
- * @see {KeyOperation}
5
- * @see https://msdn.microsoft.com/en-us/library/dn302313(v=vs.85).aspx
6
- */
7
- export interface Key {
8
- readonly algorithm: string;
9
- readonly extractable: boolean;
10
- readonly keyUsage: Array<string>;
11
- readonly type: string;
12
- }
@@ -1,13 +0,0 @@
1
- import { Key } from "./Key";
2
-
3
- /**
4
- * Represents the return of a key-related operation that may or may not have
5
- * been completed.
6
- *
7
- * @see https://msdn.microsoft.com/en-us/library/dn302314(v=vs.85).aspx
8
- */
9
- export interface KeyOperation {
10
- oncomplete: (event: Event) => void;
11
- onerror: (event: Event) => void;
12
- readonly result: Key | undefined;
13
- }
@@ -1,88 +0,0 @@
1
- import { CryptoOperation } from "./CryptoOperation";
2
- import { Key } from "./Key";
3
- import { KeyOperation } from "./KeyOperation";
4
-
5
- export type KeyUsage =
6
- | "encrypt"
7
- | "decrypt"
8
- | "sign"
9
- | "verify"
10
- | "derive"
11
- | "wrapKey"
12
- | "unwrapKey"
13
- | "importKey";
14
-
15
- export type EncryptionOrVerificationAlgorithm = "RSAES-PKCS1-v1_5";
16
- export type Ie11EncryptionAlgorithm =
17
- | "AES-CBC"
18
- | "AES-GCM"
19
- | "RSA-OAEP"
20
- | EncryptionOrVerificationAlgorithm;
21
- export type Ie11DigestAlgorithm = "SHA-1" | "SHA-256" | "SHA-384";
22
-
23
- export interface HashAlgorithm {
24
- name: Ie11DigestAlgorithm;
25
- }
26
-
27
- export interface HmacAlgorithm {
28
- name: "HMAC";
29
- hash: HashAlgorithm;
30
- }
31
-
32
- export type SigningAlgorithm = HmacAlgorithm;
33
-
34
- /**
35
- * Represent ths SubtleCrypto interface as implemented in Internet Explorer 11.
36
- * This implementation was based on an earlier version of the WebCrypto API and
37
- * differs from the `window.crypto.subtle` object exposed in Chrome, Safari,
38
- * Firefox, and MS Edge.
39
- *
40
- * @see https://msdn.microsoft.com/en-us/library/dn302325(v=vs.85).aspx
41
- */
42
- export interface MsSubtleCrypto {
43
- decrypt(
44
- algorithm: Ie11EncryptionAlgorithm,
45
- key: Key,
46
- buffer?: ArrayBufferView
47
- ): CryptoOperation;
48
-
49
- digest(
50
- algorithm: Ie11DigestAlgorithm,
51
- buffer?: ArrayBufferView
52
- ): CryptoOperation;
53
-
54
- encrypt(
55
- algorithm: Ie11EncryptionAlgorithm,
56
- key: Key,
57
- buffer?: ArrayBufferView
58
- ): CryptoOperation;
59
-
60
- exportKey(format: string, key: Key): KeyOperation;
61
-
62
- generateKey(
63
- algorithm: SigningAlgorithm | Ie11EncryptionAlgorithm,
64
- extractable?: boolean,
65
- keyUsages?: Array<KeyUsage>
66
- ): KeyOperation;
67
-
68
- importKey(
69
- format: string,
70
- keyData: ArrayBufferView,
71
- algorithm: any,
72
- extractable?: boolean,
73
- keyUsages?: Array<KeyUsage>
74
- ): KeyOperation;
75
-
76
- sign(
77
- algorithm: SigningAlgorithm,
78
- key: Key,
79
- buffer?: ArrayBufferView
80
- ): CryptoOperation;
81
-
82
- verify(
83
- algorithm: SigningAlgorithm | EncryptionOrVerificationAlgorithm,
84
- key: Key,
85
- signature: ArrayBufferView,
86
- buffer?: ArrayBufferView
87
- ): CryptoOperation;
88
- }
@@ -1,59 +0,0 @@
1
- import { MsSubtleCrypto } from "./MsSubtleCrypto";
2
-
3
- type SubtleCryptoMethod =
4
- | "decrypt"
5
- | "digest"
6
- | "encrypt"
7
- | "exportKey"
8
- | "generateKey"
9
- | "importKey"
10
- | "sign"
11
- | "verify";
12
-
13
- const msSubtleCryptoMethods: Array<SubtleCryptoMethod> = [
14
- "decrypt",
15
- "digest",
16
- "encrypt",
17
- "exportKey",
18
- "generateKey",
19
- "importKey",
20
- "sign",
21
- "verify"
22
- ];
23
-
24
- /**
25
- * The value accessible as `window.msCrypto` in Internet Explorer 11.
26
- */
27
- export interface MsCrypto {
28
- getRandomValues: (toFill: Uint8Array) => void;
29
- subtle: MsSubtleCrypto;
30
- }
31
-
32
- /**
33
- * The `window` object in Internet Explorer 11. This interface does not
34
- * exhaustively document the prefixed features of `window` in IE11.
35
- */
36
- export interface MsWindow extends Window {
37
- MSInputMethodContext: any;
38
- msCrypto: MsCrypto;
39
- }
40
-
41
- function quacksLikeAnMsWindow(window: Window): window is MsWindow {
42
- return "MSInputMethodContext" in window && "msCrypto" in window;
43
- }
44
-
45
- /**
46
- * Determines if the provided window is (or is like) the window object one would
47
- * expect to encounter in Internet Explorer 11.
48
- */
49
- export function isMsWindow(window: Window): window is MsWindow {
50
- if (quacksLikeAnMsWindow(window) && window.msCrypto.subtle !== undefined) {
51
- const { getRandomValues, subtle } = window.msCrypto;
52
- return msSubtleCryptoMethods
53
- .map<Function>(methodName => subtle[methodName])
54
- .concat(getRandomValues)
55
- .every(method => typeof method === "function");
56
- }
57
-
58
- return false;
59
- }
@@ -1,5 +0,0 @@
1
- export * from "./CryptoOperation";
2
- export * from "./Key";
3
- export * from "./KeyOperation";
4
- export * from "./MsSubtleCrypto";
5
- export * from "./MsWindow";
@@ -1,17 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "module": "commonjs",
4
- "target": "es5",
5
- "lib": ["dom", "es5", "es2015.collection"],
6
- "strict": true,
7
- "sourceMap": true,
8
- "declaration": true,
9
- "stripInternal": true,
10
- "rootDir": "./src",
11
- "outDir": "./build",
12
- "importHelpers": true,
13
- "noEmitHelpers": true
14
- },
15
- "include": ["src/**/*.ts"],
16
- "exclude": ["node_modules/**"]
17
- }
@@ -1,88 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- # [3.0.0](https://github.com/aws/aws-sdk-js-crypto-helpers/compare/v2.0.2...v3.0.0) (2023-01-12)
7
-
8
- ### Bug Fixes
9
-
10
- - **docs:** sha256 packages, clarify hmac support ([#455](https://github.com/aws/aws-sdk-js-crypto-helpers/issues/455)) ([1be5043](https://github.com/aws/aws-sdk-js-crypto-helpers/commit/1be5043325991f3f5ccb52a8dd928f004b4d442e))
11
-
12
- - feat!: replace Hash implementations with Checksum interface (#492) ([da43dc0](https://github.com/aws/aws-sdk-js-crypto-helpers/commit/da43dc0fdf669d9ebb5bfb1b1f7c79e46c4aaae1)), closes [#492](https://github.com/aws/aws-sdk-js-crypto-helpers/issues/492)
13
-
14
- ### BREAKING CHANGES
15
-
16
- - All classes that implemented `Hash` now implement `Checksum`.
17
-
18
- ## [2.0.2](https://github.com/aws/aws-sdk-js-crypto-helpers/compare/v2.0.1...v2.0.2) (2022-09-07)
19
-
20
- ### Bug Fixes
21
-
22
- - **#337:** update @aws-sdk/types ([#373](https://github.com/aws/aws-sdk-js-crypto-helpers/issues/373)) ([b26a811](https://github.com/aws/aws-sdk-js-crypto-helpers/commit/b26a811a392f5209c7ec7e57251500d4d78f97ff)), closes [#337](https://github.com/aws/aws-sdk-js-crypto-helpers/issues/337)
23
-
24
- ## [2.0.1](https://github.com/aws/aws-sdk-js-crypto-helpers/compare/v2.0.0...v2.0.1) (2021-12-09)
25
-
26
- **Note:** Version bump only for package @aws-crypto/sha256-browser
27
-
28
- # [2.0.0](https://github.com/aws/aws-sdk-js-crypto-helpers/compare/v1.2.2...v2.0.0) (2021-10-25)
29
-
30
- **Note:** Version bump only for package @aws-crypto/sha256-browser
31
-
32
- ## [1.2.2](https://github.com/aws/aws-sdk-js-crypto-helpers/compare/v1.2.1...v1.2.2) (2021-10-12)
33
-
34
- **Note:** Version bump only for package @aws-crypto/sha256-browser
35
-
36
- ## [1.2.1](https://github.com/aws/aws-sdk-js-crypto-helpers/compare/v1.2.0...v1.2.1) (2021-09-17)
37
-
38
- **Note:** Version bump only for package @aws-crypto/sha256-browser
39
-
40
- # [1.2.0](https://github.com/aws/aws-sdk-js-crypto-helpers/compare/v1.1.1...v1.2.0) (2021-09-17)
41
-
42
- ### Features
43
-
44
- - add @aws-crypto/util ([8f489cb](https://github.com/aws/aws-sdk-js-crypto-helpers/commit/8f489cbe4c0e134f826bac66f1bf5172597048b9))
45
-
46
- ## [1.1.1](https://github.com/aws/aws-sdk-js-crypto-helpers/compare/@aws-crypto/sha256-browser@1.1.0...@aws-crypto/sha256-browser@1.1.1) (2021-07-13)
47
-
48
- ### Bug Fixes
49
-
50
- - **sha256-browser:** throw errors not string ([#194](https://github.com/aws/aws-sdk-js-crypto-helpers/issues/194)) ([7fa7ac4](https://github.com/aws/aws-sdk-js-crypto-helpers/commit/7fa7ac445ef7a04dfb1ff479e7114aba045b2b2c))
51
-
52
- # [1.1.0](https://github.com/aws/aws-sdk-js-crypto-helpers/compare/@aws-crypto/sha256-browser@1.0.0...@aws-crypto/sha256-browser@1.1.0) (2021-01-13)
53
-
54
- ### Bug Fixes
55
-
56
- - remove package lock ([6002a5a](https://github.com/aws/aws-sdk-js-crypto-helpers/commit/6002a5ab9218dc8798c19dc205d3eebd3bec5b43))
57
- - **aws-crypto:** export explicit dependencies on [@aws-types](https://github.com/aws-types) ([6a1873a](https://github.com/aws/aws-sdk-js-crypto-helpers/commit/6a1873a4dcc2aaa4a1338595703cfa7099f17b8c))
58
- - **deps-dev:** move @aws-sdk/types to devDependencies ([#188](https://github.com/aws/aws-sdk-js-crypto-helpers/issues/188)) ([08efdf4](https://github.com/aws/aws-sdk-js-crypto-helpers/commit/08efdf46dcc612d88c441e29945d787f253ee77d))
59
-
60
- # [1.0.0](https://github.com/aws/aws-sdk-js-crypto-helpers/compare/@aws-crypto/sha256-browser@1.0.0-alpha.0...@aws-crypto/sha256-browser@1.0.0) (2020-10-22)
61
-
62
- **Note:** Version bump only for package @aws-crypto/sha256-browser
63
-
64
- # [1.0.0-alpha.0](https://github.com/aws/aws-sdk-js-crypto-helpers/compare/@aws-crypto/sha256-browser@0.1.0-preview.4...@aws-crypto/sha256-browser@1.0.0-alpha.0) (2020-02-07)
65
-
66
- **Note:** Version bump only for package @aws-crypto/sha256-browser
67
-
68
- # [0.1.0-preview.4](https://github.com/aws/aws-sdk-js-crypto-helpers/compare/@aws-crypto/sha256-browser@0.1.0-preview.2...@aws-crypto/sha256-browser@0.1.0-preview.4) (2020-01-16)
69
-
70
- ### Bug Fixes
71
-
72
- - Changed package.json files to point to the right Git repo ([#9](https://github.com/aws/aws-sdk-js-crypto-helpers/issues/9)) ([028245d](https://github.com/aws/aws-sdk-js-crypto-helpers/commit/028245d72e642ca98d82226afb300eb154503c4a)), closes [#8](https://github.com/aws/aws-sdk-js-crypto-helpers/issues/8)
73
- - es2015.iterable required ([#10](https://github.com/aws/aws-sdk-js-crypto-helpers/issues/10)) ([6e08d83](https://github.com/aws/aws-sdk-js-crypto-helpers/commit/6e08d83c33667ad8cbeeaaa7cedf1bbe05f79ed8))
74
- - lerna version maintains package-lock ([#14](https://github.com/aws/aws-sdk-js-crypto-helpers/issues/14)) ([2ef29e1](https://github.com/aws/aws-sdk-js-crypto-helpers/commit/2ef29e13779703a5c9b32e93d18918fcb33b7272)), closes [#13](https://github.com/aws/aws-sdk-js-crypto-helpers/issues/13)
75
-
76
- # [0.1.0-preview.3](https://github.com/aws/aws-sdk-js-crypto-helpers/compare/@aws-crypto/sha256-browser@0.1.0-preview.2...@aws-crypto/sha256-browser@0.1.0-preview.3) (2019-11-15)
77
-
78
- ### Bug Fixes
79
-
80
- - Changed package.json files to point to the right Git repo ([#9](https://github.com/aws/aws-sdk-js-crypto-helpers/issues/9)) ([028245d](https://github.com/aws/aws-sdk-js-crypto-helpers/commit/028245d72e642ca98d82226afb300eb154503c4a)), closes [#8](https://github.com/aws/aws-sdk-js-crypto-helpers/issues/8)
81
- - es2015.iterable required ([#10](https://github.com/aws/aws-sdk-js-crypto-helpers/issues/10)) ([6e08d83](https://github.com/aws/aws-sdk-js-crypto-helpers/commit/6e08d83c33667ad8cbeeaaa7cedf1bbe05f79ed8))
82
- - lerna version maintains package-lock ([#14](https://github.com/aws/aws-sdk-js-crypto-helpers/issues/14)) ([2ef29e1](https://github.com/aws/aws-sdk-js-crypto-helpers/commit/2ef29e13779703a5c9b32e93d18918fcb33b7272)), closes [#13](https://github.com/aws/aws-sdk-js-crypto-helpers/issues/13)
83
-
84
- # [0.1.0-preview.2](https://github.com/aws/aws-javascript-crypto-helpers/compare/@aws-crypto/sha256-browser@0.1.0-preview.1...@aws-crypto/sha256-browser@0.1.0-preview.2) (2019-10-30)
85
-
86
- ### Bug Fixes
87
-
88
- - remove /src/ from .npmignore (for sourcemaps) ([#5](https://github.com/aws/aws-javascript-crypto-helpers/issues/5)) ([ec52056](https://github.com/aws/aws-javascript-crypto-helpers/commit/ec52056))
@@ -1,202 +0,0 @@
1
-
2
- Apache License
3
- Version 2.0, January 2004
4
- http://www.apache.org/licenses/
5
-
6
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
-
8
- 1. Definitions.
9
-
10
- "License" shall mean the terms and conditions for use, reproduction,
11
- and distribution as defined by Sections 1 through 9 of this document.
12
-
13
- "Licensor" shall mean the copyright owner or entity authorized by
14
- the copyright owner that is granting the License.
15
-
16
- "Legal Entity" shall mean the union of the acting entity and all
17
- other entities that control, are controlled by, or are under common
18
- control with that entity. For the purposes of this definition,
19
- "control" means (i) the power, direct or indirect, to cause the
20
- direction or management of such entity, whether by contract or
21
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
- outstanding shares, or (iii) beneficial ownership of such entity.
23
-
24
- "You" (or "Your") shall mean an individual or Legal Entity
25
- exercising permissions granted by this License.
26
-
27
- "Source" form shall mean the preferred form for making modifications,
28
- including but not limited to software source code, documentation
29
- source, and configuration files.
30
-
31
- "Object" form shall mean any form resulting from mechanical
32
- transformation or translation of a Source form, including but
33
- not limited to compiled object code, generated documentation,
34
- and conversions to other media types.
35
-
36
- "Work" shall mean the work of authorship, whether in Source or
37
- Object form, made available under the License, as indicated by a
38
- copyright notice that is included in or attached to the work
39
- (an example is provided in the Appendix below).
40
-
41
- "Derivative Works" shall mean any work, whether in Source or Object
42
- form, that is based on (or derived from) the Work and for which the
43
- editorial revisions, annotations, elaborations, or other modifications
44
- represent, as a whole, an original work of authorship. For the purposes
45
- of this License, Derivative Works shall not include works that remain
46
- separable from, or merely link (or bind by name) to the interfaces of,
47
- the Work and Derivative Works thereof.
48
-
49
- "Contribution" shall mean any work of authorship, including
50
- the original version of the Work and any modifications or additions
51
- to that Work or Derivative Works thereof, that is intentionally
52
- submitted to Licensor for inclusion in the Work by the copyright owner
53
- or by an individual or Legal Entity authorized to submit on behalf of
54
- the copyright owner. For the purposes of this definition, "submitted"
55
- means any form of electronic, verbal, or written communication sent
56
- to the Licensor or its representatives, including but not limited to
57
- communication on electronic mailing lists, source code control systems,
58
- and issue tracking systems that are managed by, or on behalf of, the
59
- Licensor for the purpose of discussing and improving the Work, but
60
- excluding communication that is conspicuously marked or otherwise
61
- designated in writing by the copyright owner as "Not a Contribution."
62
-
63
- "Contributor" shall mean Licensor and any individual or Legal Entity
64
- on behalf of whom a Contribution has been received by Licensor and
65
- subsequently incorporated within the Work.
66
-
67
- 2. Grant of Copyright License. Subject to the terms and conditions of
68
- this License, each Contributor hereby grants to You a perpetual,
69
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
- copyright license to reproduce, prepare Derivative Works of,
71
- publicly display, publicly perform, sublicense, and distribute the
72
- Work and such Derivative Works in Source or Object form.
73
-
74
- 3. Grant of Patent License. Subject to the terms and conditions of
75
- this License, each Contributor hereby grants to You a perpetual,
76
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
- (except as stated in this section) patent license to make, have made,
78
- use, offer to sell, sell, import, and otherwise transfer the Work,
79
- where such license applies only to those patent claims licensable
80
- by such Contributor that are necessarily infringed by their
81
- Contribution(s) alone or by combination of their Contribution(s)
82
- with the Work to which such Contribution(s) was submitted. If You
83
- institute patent litigation against any entity (including a
84
- cross-claim or counterclaim in a lawsuit) alleging that the Work
85
- or a Contribution incorporated within the Work constitutes direct
86
- or contributory patent infringement, then any patent licenses
87
- granted to You under this License for that Work shall terminate
88
- as of the date such litigation is filed.
89
-
90
- 4. Redistribution. You may reproduce and distribute copies of the
91
- Work or Derivative Works thereof in any medium, with or without
92
- modifications, and in Source or Object form, provided that You
93
- meet the following conditions:
94
-
95
- (a) You must give any other recipients of the Work or
96
- Derivative Works a copy of this License; and
97
-
98
- (b) You must cause any modified files to carry prominent notices
99
- stating that You changed the files; and
100
-
101
- (c) You must retain, in the Source form of any Derivative Works
102
- that You distribute, all copyright, patent, trademark, and
103
- attribution notices from the Source form of the Work,
104
- excluding those notices that do not pertain to any part of
105
- the Derivative Works; and
106
-
107
- (d) If the Work includes a "NOTICE" text file as part of its
108
- distribution, then any Derivative Works that You distribute must
109
- include a readable copy of the attribution notices contained
110
- within such NOTICE file, excluding those notices that do not
111
- pertain to any part of the Derivative Works, in at least one
112
- of the following places: within a NOTICE text file distributed
113
- as part of the Derivative Works; within the Source form or
114
- documentation, if provided along with the Derivative Works; or,
115
- within a display generated by the Derivative Works, if and
116
- wherever such third-party notices normally appear. The contents
117
- of the NOTICE file are for informational purposes only and
118
- do not modify the License. You may add Your own attribution
119
- notices within Derivative Works that You distribute, alongside
120
- or as an addendum to the NOTICE text from the Work, provided
121
- that such additional attribution notices cannot be construed
122
- as modifying the License.
123
-
124
- You may add Your own copyright statement to Your modifications and
125
- may provide additional or different license terms and conditions
126
- for use, reproduction, or distribution of Your modifications, or
127
- for any such Derivative Works as a whole, provided Your use,
128
- reproduction, and distribution of the Work otherwise complies with
129
- the conditions stated in this License.
130
-
131
- 5. Submission of Contributions. Unless You explicitly state otherwise,
132
- any Contribution intentionally submitted for inclusion in the Work
133
- by You to the Licensor shall be under the terms and conditions of
134
- this License, without any additional terms or conditions.
135
- Notwithstanding the above, nothing herein shall supersede or modify
136
- the terms of any separate license agreement you may have executed
137
- with Licensor regarding such Contributions.
138
-
139
- 6. Trademarks. This License does not grant permission to use the trade
140
- names, trademarks, service marks, or product names of the Licensor,
141
- except as required for reasonable and customary use in describing the
142
- origin of the Work and reproducing the content of the NOTICE file.
143
-
144
- 7. Disclaimer of Warranty. Unless required by applicable law or
145
- agreed to in writing, Licensor provides the Work (and each
146
- Contributor provides its Contributions) on an "AS IS" BASIS,
147
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
- implied, including, without limitation, any warranties or conditions
149
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
- PARTICULAR PURPOSE. You are solely responsible for determining the
151
- appropriateness of using or redistributing the Work and assume any
152
- risks associated with Your exercise of permissions under this License.
153
-
154
- 8. Limitation of Liability. In no event and under no legal theory,
155
- whether in tort (including negligence), contract, or otherwise,
156
- unless required by applicable law (such as deliberate and grossly
157
- negligent acts) or agreed to in writing, shall any Contributor be
158
- liable to You for damages, including any direct, indirect, special,
159
- incidental, or consequential damages of any character arising as a
160
- result of this License or out of the use or inability to use the
161
- Work (including but not limited to damages for loss of goodwill,
162
- work stoppage, computer failure or malfunction, or any and all
163
- other commercial damages or losses), even if such Contributor
164
- has been advised of the possibility of such damages.
165
-
166
- 9. Accepting Warranty or Additional Liability. While redistributing
167
- the Work or Derivative Works thereof, You may choose to offer,
168
- and charge a fee for, acceptance of support, warranty, indemnity,
169
- or other liability obligations and/or rights consistent with this
170
- License. However, in accepting such obligations, You may act only
171
- on Your own behalf and on Your sole responsibility, not on behalf
172
- of any other Contributor, and only if You agree to indemnify,
173
- defend, and hold each Contributor harmless for any liability
174
- incurred by, or claims asserted against, such Contributor by reason
175
- of your accepting any such warranty or additional liability.
176
-
177
- END OF TERMS AND CONDITIONS
178
-
179
- APPENDIX: How to apply the Apache License to your work.
180
-
181
- To apply the Apache License to your work, attach the following
182
- boilerplate notice, with the fields enclosed by brackets "[]"
183
- replaced with your own identifying information. (Don't include
184
- the brackets!) The text should be enclosed in the appropriate
185
- comment syntax for the file format. We also recommend that a
186
- file or class name and description of purpose be included on the
187
- same "printed page" as the copyright notice for easier
188
- identification within third-party archives.
189
-
190
- Copyright [yyyy] [name of copyright owner]
191
-
192
- Licensed under the Apache License, Version 2.0 (the "License");
193
- you may not use this file except in compliance with the License.
194
- You may obtain a copy of the License at
195
-
196
- http://www.apache.org/licenses/LICENSE-2.0
197
-
198
- Unless required by applicable law or agreed to in writing, software
199
- distributed under the License is distributed on an "AS IS" BASIS,
200
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
- See the License for the specific language governing permissions and
202
- limitations under the License.
@@ -1,31 +0,0 @@
1
- # @aws-crypto/sha256-browser
2
-
3
- SHA256 wrapper for browsers that prefers `window.crypto.subtle` but will
4
- fall back to a pure JS implementation in @aws-crypto/sha256-js
5
- to provide a consistent interface for SHA256.
6
-
7
- ## Usage
8
-
9
- - To hash "some data"
10
- ```
11
- import {Sha256} from '@aws-crypto/sha256-browser'
12
-
13
- const hash = new Sha256();
14
- hash.update('some data');
15
- const result = await hash.digest();
16
-
17
- ```
18
-
19
- - To hmac "some data" with "a key"
20
- ```
21
- import {Sha256} from '@aws-crypto/sha256-browser'
22
-
23
- const hash = new Sha256('a key');
24
- hash.update('some data');
25
- const result = await hash.digest();
26
-
27
- ```
28
-
29
- ## Test
30
-
31
- `npm test`
@@ -1,10 +0,0 @@
1
- export declare const SHA_256_HASH: {
2
- name: "SHA-256";
3
- };
4
- export declare const SHA_256_HMAC_ALGO: {
5
- name: "HMAC";
6
- hash: {
7
- name: "SHA-256";
8
- };
9
- };
10
- export declare const EMPTY_DATA_SHA_256: Uint8Array;
@@ -1,43 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.EMPTY_DATA_SHA_256 = exports.SHA_256_HMAC_ALGO = exports.SHA_256_HASH = void 0;
4
- exports.SHA_256_HASH = { name: "SHA-256" };
5
- exports.SHA_256_HMAC_ALGO = {
6
- name: "HMAC",
7
- hash: exports.SHA_256_HASH
8
- };
9
- exports.EMPTY_DATA_SHA_256 = new Uint8Array([
10
- 227,
11
- 176,
12
- 196,
13
- 66,
14
- 152,
15
- 252,
16
- 28,
17
- 20,
18
- 154,
19
- 251,
20
- 244,
21
- 200,
22
- 153,
23
- 111,
24
- 185,
25
- 36,
26
- 39,
27
- 174,
28
- 65,
29
- 228,
30
- 100,
31
- 155,
32
- 147,
33
- 76,
34
- 164,
35
- 149,
36
- 153,
37
- 27,
38
- 120,
39
- 82,
40
- 184,
41
- 85
42
- ]);
43
- //# sourceMappingURL=constants.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"constants.js","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":";;;AAAa,QAAA,YAAY,GAAwB,EAAE,IAAI,EAAE,SAAS,EAAE,CAAC;AAExD,QAAA,iBAAiB,GAAgD;IAC5E,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,oBAAY;CACnB,CAAC;AAEW,QAAA,kBAAkB,GAAG,IAAI,UAAU,CAAC;IAC/C,GAAG;IACH,GAAG;IACH,GAAG;IACH,EAAE;IACF,GAAG;IACH,GAAG;IACH,EAAE;IACF,EAAE;IACF,GAAG;IACH,GAAG;IACH,GAAG;IACH,GAAG;IACH,GAAG;IACH,GAAG;IACH,GAAG;IACH,EAAE;IACF,EAAE;IACF,GAAG;IACH,EAAE;IACF,GAAG;IACH,GAAG;IACH,GAAG;IACH,GAAG;IACH,EAAE;IACF,GAAG;IACH,GAAG;IACH,GAAG;IACH,EAAE;IACF,GAAG;IACH,EAAE;IACF,GAAG;IACH,EAAE;CACH,CAAC,CAAC"}
@@ -1,8 +0,0 @@
1
- import { Checksum, SourceData } from "@aws-sdk/types";
2
- export declare class Sha256 implements Checksum {
3
- private hash;
4
- constructor(secret?: SourceData);
5
- update(data: SourceData, encoding?: "utf8" | "ascii" | "latin1"): void;
6
- digest(): Promise<Uint8Array>;
7
- reset(): void;
8
- }
@@ -1,35 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Sha256 = void 0;
4
- var ie11Sha256_1 = require("./ie11Sha256");
5
- var webCryptoSha256_1 = require("./webCryptoSha256");
6
- var sha256_js_1 = require("@aws-crypto/sha256-js");
7
- var supports_web_crypto_1 = require("@aws-crypto/supports-web-crypto");
8
- var ie11_detection_1 = require("@aws-crypto/ie11-detection");
9
- var util_locate_window_1 = require("@aws-sdk/util-locate-window");
10
- var util_1 = require("@aws-crypto/util");
11
- var Sha256 = /** @class */ (function () {
12
- function Sha256(secret) {
13
- if ((0, supports_web_crypto_1.supportsWebCrypto)((0, util_locate_window_1.locateWindow)())) {
14
- this.hash = new webCryptoSha256_1.Sha256(secret);
15
- }
16
- else if ((0, ie11_detection_1.isMsWindow)((0, util_locate_window_1.locateWindow)())) {
17
- this.hash = new ie11Sha256_1.Sha256(secret);
18
- }
19
- else {
20
- this.hash = new sha256_js_1.Sha256(secret);
21
- }
22
- }
23
- Sha256.prototype.update = function (data, encoding) {
24
- this.hash.update((0, util_1.convertToBuffer)(data));
25
- };
26
- Sha256.prototype.digest = function () {
27
- return this.hash.digest();
28
- };
29
- Sha256.prototype.reset = function () {
30
- this.hash.reset();
31
- };
32
- return Sha256;
33
- }());
34
- exports.Sha256 = Sha256;
35
- //# sourceMappingURL=crossPlatformSha256.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"crossPlatformSha256.js","sourceRoot":"","sources":["../src/crossPlatformSha256.ts"],"names":[],"mappings":";;;AAAA,2CAAoD;AACpD,qDAA8D;AAC9D,mDAA2D;AAE3D,uEAAoE;AACpE,6DAAwD;AACxD,kEAA2D;AAC3D,yCAAmD;AAEnD;IAGE,gBAAY,MAAmB;QAC7B,IAAI,IAAA,uCAAiB,EAAC,IAAA,iCAAY,GAAE,CAAC,EAAE;YACrC,IAAI,CAAC,IAAI,GAAG,IAAI,wBAAe,CAAC,MAAM,CAAC,CAAC;SACzC;aAAM,IAAI,IAAA,2BAAU,EAAC,IAAA,iCAAY,GAAE,CAAC,EAAE;YACrC,IAAI,CAAC,IAAI,GAAG,IAAI,mBAAU,CAAC,MAAM,CAAC,CAAC;SACpC;aAAM;YACL,IAAI,CAAC,IAAI,GAAG,IAAI,kBAAQ,CAAC,MAAM,CAAC,CAAC;SAClC;IACH,CAAC;IAED,uBAAM,GAAN,UAAO,IAAgB,EAAE,QAAsC;QAC7D,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,IAAA,sBAAe,EAAC,IAAI,CAAC,CAAC,CAAC;IAC1C,CAAC;IAED,uBAAM,GAAN;QACE,OAAO,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC;IAC5B,CAAC;IAED,sBAAK,GAAL;QACE,IAAI,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC;IACpB,CAAC;IACH,aAAC;AAAD,CAAC,AAxBD,IAwBC;AAxBY,wBAAM"}
@@ -1,9 +0,0 @@
1
- import { Checksum, SourceData } from "@aws-sdk/types";
2
- export declare class Sha256 implements Checksum {
3
- private readonly secret?;
4
- private operation;
5
- constructor(secret?: SourceData);
6
- update(toHash: SourceData): void;
7
- digest(): Promise<Uint8Array>;
8
- reset(): void;
9
- }