@aws/lsp-codewhisperer 0.0.15 → 0.0.17

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 (1518) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/node_modules/@amzn/codewhisperer-streaming/README.md +235 -60
  3. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreaming.js +2 -0
  4. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreamingClient.js +15 -9
  5. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
  7. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/ExportResultArchiveCommand.js +16 -32
  8. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateAssistantResponseCommand.js +16 -32
  9. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateTaskAssistPlanCommand.js +16 -32
  10. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/SendMessageCommand.js +26 -0
  11. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/index.js +1 -0
  12. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/endpoints.js +139 -95
  13. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/models/models_0.js +541 -135
  14. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/protocols/Aws_restJson1.js +227 -221
  15. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.browser.js +5 -4
  16. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.js +15 -10
  17. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.native.js +1 -1
  18. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.shared.js +23 -13
  19. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeExtensions.js +3 -0
  20. package/node_modules/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreaming.js +7 -5
  21. package/node_modules/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreamingClient.js +26 -20
  22. package/node_modules/@amzn/codewhisperer-streaming/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  23. package/node_modules/@amzn/codewhisperer-streaming/dist-es/auth/httpAuthSchemeProvider.js +40 -0
  24. package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/ExportResultArchiveCommand.js +20 -36
  25. package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/GenerateAssistantResponseCommand.js +20 -36
  26. package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/GenerateTaskAssistPlanCommand.js +20 -36
  27. package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/SendMessageCommand.js +22 -0
  28. package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/index.js +4 -3
  29. package/node_modules/@amzn/codewhisperer-streaming/dist-es/endpoints.js +140 -96
  30. package/node_modules/@amzn/codewhisperer-streaming/dist-es/index.js +5 -5
  31. package/node_modules/@amzn/codewhisperer-streaming/dist-es/models/CodeWhispererStreamingServiceException.js +1 -1
  32. package/node_modules/@amzn/codewhisperer-streaming/dist-es/models/index.js +1 -1
  33. package/node_modules/@amzn/codewhisperer-streaming/dist-es/models/models_0.js +509 -135
  34. package/node_modules/@amzn/codewhisperer-streaming/dist-es/protocols/Aws_restJson1.js +218 -214
  35. package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.browser.js +16 -15
  36. package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.js +29 -24
  37. package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.native.js +3 -3
  38. package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.shared.js +28 -18
  39. package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeExtensions.js +6 -3
  40. package/node_modules/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreaming.d.ts +12 -5
  41. package/node_modules/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreamingClient.d.ts +25 -20
  42. package/node_modules/@amzn/codewhisperer-streaming/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  43. package/node_modules/@amzn/codewhisperer-streaming/dist-types/auth/httpAuthSchemeProvider.d.ts +67 -0
  44. package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/ExportResultArchiveCommand.d.ts +31 -27
  45. package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/GenerateAssistantResponseCommand.d.ts +263 -30
  46. package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/GenerateTaskAssistPlanCommand.d.ts +263 -30
  47. package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/SendMessageCommand.d.ts +636 -0
  48. package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/index.d.ts +4 -3
  49. package/node_modules/@amzn/codewhisperer-streaming/dist-types/endpoints.d.ts +1 -1
  50. package/node_modules/@amzn/codewhisperer-streaming/dist-types/extensionConfiguration.d.ts +5 -4
  51. package/node_modules/@amzn/codewhisperer-streaming/dist-types/index.d.ts +7 -5
  52. package/node_modules/@amzn/codewhisperer-streaming/dist-types/models/CodeWhispererStreamingServiceException.d.ts +3 -2
  53. package/node_modules/@amzn/codewhisperer-streaming/dist-types/models/index.d.ts +1 -1
  54. package/node_modules/@amzn/codewhisperer-streaming/dist-types/models/models_0.d.ts +1313 -229
  55. package/node_modules/@amzn/codewhisperer-streaming/dist-types/protocols/Aws_restJson1.d.ts +14 -5
  56. package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.browser.d.ts +14 -10
  57. package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.d.ts +1 -36
  58. package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.native.d.ts +13 -9
  59. package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.shared.d.ts +9 -1
  60. package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeExtensions.d.ts +1 -1
  61. package/node_modules/@amzn/codewhisperer-streaming/package.json +47 -47
  62. package/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +118 -0
  63. package/node_modules/@aws-crypto/sha256-browser/LICENSE +202 -0
  64. package/node_modules/@aws-crypto/sha256-browser/README.md +31 -0
  65. package/node_modules/@aws-crypto/sha256-browser/build/main/constants.d.ts +10 -0
  66. package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js +43 -0
  67. package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js.map +1 -0
  68. package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.d.ts +8 -0
  69. package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js +30 -0
  70. package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js.map +1 -0
  71. package/node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts +2 -0
  72. package/node_modules/@aws-crypto/sha256-browser/build/main/index.js +8 -0
  73. package/node_modules/@aws-crypto/sha256-browser/build/main/index.js.map +1 -0
  74. package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.d.ts +2 -0
  75. package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js +11 -0
  76. package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js.map +1 -0
  77. package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.d.ts +10 -0
  78. package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js +56 -0
  79. package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js.map +1 -0
  80. package/node_modules/@aws-crypto/sha256-browser/build/module/constants.d.ts +10 -0
  81. package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js +40 -0
  82. package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js.map +1 -0
  83. package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.d.ts +8 -0
  84. package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js +27 -0
  85. package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js.map +1 -0
  86. package/node_modules/@aws-crypto/sha256-browser/build/module/index.d.ts +2 -0
  87. package/node_modules/@aws-crypto/sha256-browser/build/module/index.js +3 -0
  88. package/node_modules/@aws-crypto/sha256-browser/build/module/index.js.map +1 -0
  89. package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.d.ts +2 -0
  90. package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js +7 -0
  91. package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js.map +1 -0
  92. package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.d.ts +10 -0
  93. package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js +53 -0
  94. package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js.map +1 -0
  95. package/node_modules/@aws-crypto/sha256-browser/package.json +33 -0
  96. package/node_modules/@aws-crypto/sha256-browser/src/constants.ts +41 -0
  97. package/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +30 -0
  98. package/node_modules/@aws-crypto/sha256-browser/src/index.ts +2 -0
  99. package/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +9 -0
  100. package/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +71 -0
  101. package/node_modules/@aws-crypto/sha256-browser/tsconfig.json +10 -0
  102. package/node_modules/@aws-crypto/sha256-browser/tsconfig.module.json +7 -0
  103. package/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +106 -0
  104. package/node_modules/@aws-crypto/sha256-js/LICENSE +201 -0
  105. package/node_modules/@aws-crypto/sha256-js/README.md +29 -0
  106. package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.d.ts +17 -0
  107. package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js +124 -0
  108. package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js.map +1 -0
  109. package/node_modules/@aws-crypto/sha256-js/build/main/constants.d.ts +20 -0
  110. package/node_modules/@aws-crypto/sha256-js/build/main/constants.js +98 -0
  111. package/node_modules/@aws-crypto/sha256-js/build/main/constants.js.map +1 -0
  112. package/node_modules/@aws-crypto/sha256-js/build/main/index.d.ts +1 -0
  113. package/node_modules/@aws-crypto/sha256-js/build/main/index.js +5 -0
  114. package/node_modules/@aws-crypto/sha256-js/build/main/index.js.map +1 -0
  115. package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.d.ts +12 -0
  116. package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js +85 -0
  117. package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js.map +1 -0
  118. package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.d.ts +5 -0
  119. package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js +322 -0
  120. package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js.map +1 -0
  121. package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.d.ts +17 -0
  122. package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js +121 -0
  123. package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js.map +1 -0
  124. package/node_modules/@aws-crypto/sha256-js/build/module/constants.d.ts +20 -0
  125. package/node_modules/@aws-crypto/sha256-js/build/module/constants.js +95 -0
  126. package/node_modules/@aws-crypto/sha256-js/build/module/constants.js.map +1 -0
  127. package/node_modules/@aws-crypto/sha256-js/build/module/index.d.ts +1 -0
  128. package/node_modules/@aws-crypto/sha256-js/build/module/index.js +2 -0
  129. package/node_modules/@aws-crypto/sha256-js/build/module/index.js.map +1 -0
  130. package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.d.ts +12 -0
  131. package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js +82 -0
  132. package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js.map +1 -0
  133. package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.d.ts +5 -0
  134. package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js +319 -0
  135. package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js.map +1 -0
  136. package/node_modules/@aws-crypto/sha256-js/package.json +32 -0
  137. package/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +164 -0
  138. package/node_modules/@aws-crypto/sha256-js/src/constants.ts +98 -0
  139. package/node_modules/@aws-crypto/sha256-js/src/index.ts +1 -0
  140. package/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +94 -0
  141. package/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +401 -0
  142. package/node_modules/@aws-crypto/sha256-js/tsconfig.json +10 -0
  143. package/node_modules/@aws-crypto/sha256-js/tsconfig.module.json +7 -0
  144. package/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +66 -0
  145. package/node_modules/@aws-crypto/supports-web-crypto/LICENSE +202 -0
  146. package/node_modules/@aws-crypto/supports-web-crypto/README.md +32 -0
  147. package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.d.ts +1 -0
  148. package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js +5 -0
  149. package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js.map +1 -0
  150. package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.d.ts +4 -0
  151. package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js +69 -0
  152. package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js.map +1 -0
  153. package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.d.ts +1 -0
  154. package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js +2 -0
  155. package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js.map +1 -0
  156. package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.d.ts +4 -0
  157. package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js +62 -0
  158. package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js.map +1 -0
  159. package/node_modules/@aws-crypto/supports-web-crypto/package.json +28 -0
  160. package/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +1 -0
  161. package/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +76 -0
  162. package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +10 -0
  163. package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.module.json +7 -0
  164. package/node_modules/@aws-crypto/util/CHANGELOG.md +71 -0
  165. package/node_modules/@aws-crypto/util/LICENSE +201 -0
  166. package/node_modules/@aws-crypto/util/README.md +16 -0
  167. package/node_modules/@aws-crypto/util/build/main/convertToBuffer.d.ts +2 -0
  168. package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js +24 -0
  169. package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js.map +1 -0
  170. package/node_modules/@aws-crypto/util/build/main/index.d.ts +4 -0
  171. package/node_modules/@aws-crypto/util/build/main/index.js +14 -0
  172. package/node_modules/@aws-crypto/util/build/main/index.js.map +1 -0
  173. package/node_modules/@aws-crypto/util/build/main/isEmptyData.d.ts +2 -0
  174. package/node_modules/@aws-crypto/util/build/main/isEmptyData.js +13 -0
  175. package/node_modules/@aws-crypto/util/build/main/isEmptyData.js.map +1 -0
  176. package/node_modules/@aws-crypto/util/build/main/numToUint8.d.ts +1 -0
  177. package/node_modules/@aws-crypto/util/build/main/numToUint8.js +15 -0
  178. package/node_modules/@aws-crypto/util/build/main/numToUint8.js.map +1 -0
  179. package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.d.ts +1 -0
  180. package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js +20 -0
  181. package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js.map +1 -0
  182. package/node_modules/@aws-crypto/util/build/module/convertToBuffer.d.ts +2 -0
  183. package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js +20 -0
  184. package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js.map +1 -0
  185. package/node_modules/@aws-crypto/util/build/module/index.d.ts +4 -0
  186. package/node_modules/@aws-crypto/util/build/module/index.js +7 -0
  187. package/node_modules/@aws-crypto/util/build/module/index.js.map +1 -0
  188. package/node_modules/@aws-crypto/util/build/module/isEmptyData.d.ts +2 -0
  189. package/node_modules/@aws-crypto/util/build/module/isEmptyData.js +9 -0
  190. package/node_modules/@aws-crypto/util/build/module/isEmptyData.js.map +1 -0
  191. package/node_modules/@aws-crypto/util/build/module/numToUint8.d.ts +1 -0
  192. package/node_modules/@aws-crypto/util/build/module/numToUint8.js +11 -0
  193. package/node_modules/@aws-crypto/util/build/module/numToUint8.js.map +1 -0
  194. package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.d.ts +1 -0
  195. package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js +16 -0
  196. package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js.map +1 -0
  197. package/node_modules/@aws-crypto/util/package.json +32 -0
  198. package/node_modules/@aws-crypto/util/src/convertToBuffer.ts +30 -0
  199. package/node_modules/@aws-crypto/util/src/index.ts +7 -0
  200. package/node_modules/@aws-crypto/util/src/isEmptyData.ts +12 -0
  201. package/node_modules/@aws-crypto/util/src/numToUint8.ts +11 -0
  202. package/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +16 -0
  203. package/node_modules/@aws-crypto/util/tsconfig.json +9 -0
  204. package/node_modules/@aws-crypto/util/tsconfig.module.json +7 -0
  205. package/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
  206. package/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
  207. package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +71 -0
  208. package/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +33 -0
  209. package/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +20 -0
  210. package/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +29 -0
  211. package/node_modules/@aws-sdk/middleware-host-header/package.json +55 -0
  212. package/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
  213. package/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
  214. package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +80 -0
  215. package/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +1 -0
  216. package/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +42 -0
  217. package/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +1 -0
  218. package/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +4 -0
  219. package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -0
  220. package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +17 -0
  221. package/node_modules/@aws-sdk/middleware-logger/package.json +56 -0
  222. package/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
  223. package/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
  224. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +68 -0
  225. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +34 -0
  226. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +18 -0
  227. package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +18 -0
  228. package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +55 -0
  229. package/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
  230. package/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
  231. package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +123 -0
  232. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +6 -0
  233. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +7 -0
  234. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +2 -0
  235. package/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +72 -0
  236. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +31 -0
  237. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts +7 -0
  238. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +2 -0
  239. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +17 -0
  240. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +7 -0
  241. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -0
  242. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +20 -0
  243. package/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +17 -0
  244. package/node_modules/@aws-sdk/middleware-user-agent/package.json +57 -0
  245. package/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
  246. package/node_modules/@aws-sdk/util-user-agent-browser/README.md +10 -0
  247. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +22 -0
  248. package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +17 -0
  249. package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +17 -0
  250. package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +13 -0
  251. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +7 -0
  252. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +9 -0
  253. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +9 -0
  254. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -0
  255. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +6 -0
  256. package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +6 -0
  257. package/node_modules/@aws-sdk/util-user-agent-browser/package.json +53 -0
  258. package/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
  259. package/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
  260. package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +95 -0
  261. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/crt-availability.js +3 -0
  262. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +39 -0
  263. package/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +7 -0
  264. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts +9 -0
  265. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +20 -0
  266. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +5 -0
  267. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/crt-availability.d.ts +3 -0
  268. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +12 -0
  269. package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -0
  270. package/node_modules/@aws-sdk/util-user-agent-node/package.json +63 -0
  271. package/node_modules/@smithy/config-resolver/README.md +10 -0
  272. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +1 -0
  273. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +1 -0
  274. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/index.js +1 -0
  275. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveCustomEndpointsConfig.js +1 -0
  276. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveEndpointsConfig.js +1 -0
  277. package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/utils/getEndpointFromRegion.js +1 -0
  278. package/node_modules/@smithy/config-resolver/dist-cjs/index.js +235 -0
  279. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/config.js +1 -0
  280. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/getRealRegion.js +1 -0
  281. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/index.js +1 -0
  282. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/isFipsRegion.js +1 -0
  283. package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +1 -0
  284. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariant.js +1 -0
  285. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariantTag.js +1 -0
  286. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/PartitionHash.js +1 -0
  287. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/RegionHash.js +1 -0
  288. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getHostnameFromVariants.js +1 -0
  289. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getRegionInfo.js +1 -0
  290. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedHostname.js +1 -0
  291. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedPartition.js +1 -0
  292. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedSigningRegion.js +1 -0
  293. package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/index.js +1 -0
  294. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +9 -0
  295. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +9 -0
  296. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +4 -0
  297. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +11 -0
  298. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +15 -0
  299. package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js +15 -0
  300. package/node_modules/@smithy/config-resolver/dist-es/index.js +3 -0
  301. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/config.js +12 -0
  302. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
  303. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +2 -0
  304. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
  305. package/node_modules/@smithy/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +25 -0
  306. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js +1 -0
  307. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getRegionInfo.js +29 -0
  308. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedHostname.js +5 -0
  309. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedPartition.js +1 -0
  310. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js +12 -0
  311. package/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +3 -0
  312. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
  313. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
  314. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +16 -0
  315. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +29 -0
  316. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +51 -0
  317. package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
  318. package/node_modules/@smithy/config-resolver/dist-types/index.d.ts +12 -0
  319. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +17 -0
  320. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/getRealRegion.d.ts +4 -0
  321. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +8 -0
  322. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +4 -0
  323. package/node_modules/@smithy/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +34 -0
  324. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +10 -0
  325. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +7 -0
  326. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +14 -0
  327. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/RegionHash.d.ts +12 -0
  328. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +12 -0
  329. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +17 -0
  330. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +11 -0
  331. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +11 -0
  332. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +12 -0
  333. package/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +12 -0
  334. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
  335. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
  336. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +16 -0
  337. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +29 -0
  338. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +51 -0
  339. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
  340. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/index.d.ts +12 -0
  341. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +17 -0
  342. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +4 -0
  343. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +8 -0
  344. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +4 -0
  345. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +34 -0
  346. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +10 -0
  347. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +7 -0
  348. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +14 -0
  349. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +12 -0
  350. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +12 -0
  351. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +17 -0
  352. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +11 -0
  353. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +11 -0
  354. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +12 -0
  355. package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +12 -0
  356. package/node_modules/@smithy/config-resolver/package.json +63 -0
  357. package/node_modules/@smithy/fetch-http-handler/LICENSE +201 -0
  358. package/node_modules/@smithy/fetch-http-handler/README.md +11 -0
  359. package/node_modules/@smithy/fetch-http-handler/dist-cjs/fetch-http-handler.js +1 -0
  360. package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +255 -0
  361. package/node_modules/@smithy/fetch-http-handler/dist-cjs/request-timeout.js +1 -0
  362. package/node_modules/@smithy/fetch-http-handler/dist-cjs/stream-collector.js +1 -0
  363. package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +138 -0
  364. package/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -0
  365. package/node_modules/@smithy/fetch-http-handler/dist-es/request-timeout.js +11 -0
  366. package/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +50 -0
  367. package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +33 -0
  368. package/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -0
  369. package/node_modules/@smithy/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
  370. package/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
  371. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +33 -0
  372. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
  373. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
  374. package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
  375. package/node_modules/@smithy/fetch-http-handler/package.json +62 -0
  376. package/node_modules/@smithy/hash-node/LICENSE +201 -0
  377. package/node_modules/@smithy/hash-node/README.md +10 -0
  378. package/node_modules/@smithy/hash-node/dist-cjs/index.js +66 -0
  379. package/node_modules/@smithy/hash-node/dist-es/index.js +34 -0
  380. package/node_modules/@smithy/hash-node/dist-types/index.d.ts +13 -0
  381. package/node_modules/@smithy/hash-node/dist-types/ts3.4/index.d.ts +13 -0
  382. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/LICENSE +201 -0
  383. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/README.md +4 -0
  384. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +1 -0
  385. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +1 -0
  386. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-cjs/index.js +65 -0
  387. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +1 -0
  388. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +1 -0
  389. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +1 -0
  390. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +1 -0
  391. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +5 -0
  392. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-es/index.js +3 -0
  393. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +10 -0
  394. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +9 -0
  395. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +10 -0
  396. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +1 -0
  397. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +1 -0
  398. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/index.d.ts +3 -0
  399. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +1 -0
  400. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +7 -0
  401. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +7 -0
  402. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +1 -0
  403. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +1 -0
  404. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +3 -0
  405. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +1 -0
  406. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +7 -0
  407. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +7 -0
  408. package/node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8/package.json +65 -0
  409. package/node_modules/@smithy/hash-node/package.json +63 -0
  410. package/node_modules/@smithy/middleware-content-length/LICENSE +201 -0
  411. package/node_modules/@smithy/middleware-content-length/README.md +4 -0
  412. package/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +71 -0
  413. package/node_modules/@smithy/middleware-content-length/dist-es/index.js +39 -0
  414. package/node_modules/@smithy/middleware-content-length/dist-types/index.d.ts +6 -0
  415. package/node_modules/@smithy/middleware-content-length/dist-types/ts3.4/index.d.ts +6 -0
  416. package/node_modules/@smithy/middleware-content-length/package.json +62 -0
  417. package/node_modules/@smithy/middleware-retry/LICENSE +201 -0
  418. package/node_modules/@smithy/middleware-retry/README.md +11 -0
  419. package/node_modules/@smithy/middleware-retry/dist-cjs/AdaptiveRetryStrategy.js +1 -0
  420. package/node_modules/@smithy/middleware-retry/dist-cjs/StandardRetryStrategy.js +1 -0
  421. package/node_modules/@smithy/middleware-retry/dist-cjs/configurations.js +1 -0
  422. package/node_modules/@smithy/middleware-retry/dist-cjs/defaultRetryQuota.js +1 -0
  423. package/node_modules/@smithy/middleware-retry/dist-cjs/delayDecider.js +1 -0
  424. package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +425 -0
  425. package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +5 -0
  426. package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +7 -0
  427. package/node_modules/@smithy/middleware-retry/dist-cjs/omitRetryHeadersMiddleware.js +1 -0
  428. package/node_modules/@smithy/middleware-retry/dist-cjs/retryDecider.js +1 -0
  429. package/node_modules/@smithy/middleware-retry/dist-cjs/retryMiddleware.js +1 -0
  430. package/node_modules/@smithy/middleware-retry/dist-cjs/types.js +1 -0
  431. package/node_modules/@smithy/middleware-retry/dist-cjs/util.js +1 -0
  432. package/node_modules/@smithy/middleware-retry/dist-es/AdaptiveRetryStrategy.js +20 -0
  433. package/node_modules/@smithy/middleware-retry/dist-es/StandardRetryStrategy.js +90 -0
  434. package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +52 -0
  435. package/node_modules/@smithy/middleware-retry/dist-es/defaultRetryQuota.js +27 -0
  436. package/node_modules/@smithy/middleware-retry/dist-es/delayDecider.js +2 -0
  437. package/node_modules/@smithy/middleware-retry/dist-es/index.js +7 -0
  438. package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.browser.js +1 -0
  439. package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +3 -0
  440. package/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +22 -0
  441. package/node_modules/@smithy/middleware-retry/dist-es/retryDecider.js +7 -0
  442. package/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +112 -0
  443. package/node_modules/@smithy/middleware-retry/dist-es/util.js +9 -0
  444. package/node_modules/@smithy/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +20 -0
  445. package/node_modules/@smithy/middleware-retry/dist-types/StandardRetryStrategy.d.ts +30 -0
  446. package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +45 -0
  447. package/node_modules/@smithy/middleware-retry/dist-types/defaultRetryQuota.d.ts +18 -0
  448. package/node_modules/@smithy/middleware-retry/dist-types/delayDecider.d.ts +4 -0
  449. package/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +7 -0
  450. package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
  451. package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +5 -0
  452. package/node_modules/@smithy/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +4 -0
  453. package/node_modules/@smithy/middleware-retry/dist-types/retryDecider.d.ts +5 -0
  454. package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +6 -0
  455. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +20 -0
  456. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +30 -0
  457. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/configurations.d.ts +45 -0
  458. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +18 -0
  459. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +4 -0
  460. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/index.d.ts +7 -0
  461. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
  462. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.d.ts +5 -0
  463. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +4 -0
  464. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +5 -0
  465. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +6 -0
  466. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/types.d.ts +53 -0
  467. package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/util.d.ts +2 -0
  468. package/node_modules/@smithy/middleware-retry/dist-types/types.d.ts +53 -0
  469. package/node_modules/@smithy/middleware-retry/dist-types/util.d.ts +2 -0
  470. package/node_modules/@smithy/middleware-retry/package.json +77 -0
  471. package/node_modules/@smithy/middleware-serde/LICENSE +201 -0
  472. package/node_modules/@smithy/middleware-serde/README.md +4 -0
  473. package/node_modules/@smithy/middleware-serde/dist-cjs/deserializerMiddleware.js +1 -0
  474. package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +102 -0
  475. package/node_modules/@smithy/middleware-serde/dist-cjs/serdePlugin.js +1 -0
  476. package/node_modules/@smithy/middleware-serde/dist-cjs/serializerMiddleware.js +1 -0
  477. package/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +25 -0
  478. package/node_modules/@smithy/middleware-serde/dist-es/index.js +3 -0
  479. package/node_modules/@smithy/middleware-serde/dist-es/serdePlugin.js +22 -0
  480. package/node_modules/@smithy/middleware-serde/dist-es/serializerMiddleware.js +13 -0
  481. package/node_modules/@smithy/middleware-serde/dist-types/deserializerMiddleware.d.ts +5 -0
  482. package/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +3 -0
  483. package/node_modules/@smithy/middleware-serde/dist-types/serdePlugin.d.ts +12 -0
  484. package/node_modules/@smithy/middleware-serde/dist-types/serializerMiddleware.d.ts +6 -0
  485. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +5 -0
  486. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/index.d.ts +3 -0
  487. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +12 -0
  488. package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +6 -0
  489. package/node_modules/@smithy/middleware-serde/package.json +61 -0
  490. package/node_modules/@smithy/node-config-provider/LICENSE +201 -0
  491. package/node_modules/@smithy/node-config-provider/README.md +4 -0
  492. package/node_modules/@smithy/node-config-provider/dist-cjs/configLoader.js +1 -0
  493. package/node_modules/@smithy/node-config-provider/dist-cjs/fromEnv.js +1 -0
  494. package/node_modules/@smithy/node-config-provider/dist-cjs/fromSharedConfigFiles.js +1 -0
  495. package/node_modules/@smithy/node-config-provider/dist-cjs/fromStatic.js +1 -0
  496. package/node_modules/@smithy/node-config-provider/dist-cjs/getSelectorName.js +1 -0
  497. package/node_modules/@smithy/node-config-provider/dist-cjs/index.js +105 -0
  498. package/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +5 -0
  499. package/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +14 -0
  500. package/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +23 -0
  501. package/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +3 -0
  502. package/node_modules/@smithy/node-config-provider/dist-es/getSelectorName.js +12 -0
  503. package/node_modules/@smithy/node-config-provider/dist-es/index.js +1 -0
  504. package/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +22 -0
  505. package/node_modules/@smithy/node-config-provider/dist-types/fromEnv.d.ts +7 -0
  506. package/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +15 -0
  507. package/node_modules/@smithy/node-config-provider/dist-types/fromStatic.d.ts +3 -0
  508. package/node_modules/@smithy/node-config-provider/dist-types/getSelectorName.d.ts +9 -0
  509. package/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +1 -0
  510. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/configLoader.d.ts +22 -0
  511. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +7 -0
  512. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +15 -0
  513. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +3 -0
  514. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/getSelectorName.d.ts +9 -0
  515. package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/index.d.ts +1 -0
  516. package/node_modules/@smithy/node-config-provider/package.json +64 -0
  517. package/node_modules/@smithy/node-http-handler/LICENSE +201 -0
  518. package/node_modules/@smithy/node-http-handler/README.md +4 -0
  519. package/node_modules/@smithy/node-http-handler/dist-cjs/constants.js +1 -0
  520. package/node_modules/@smithy/node-http-handler/dist-cjs/get-transformed-headers.js +1 -0
  521. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +687 -0
  522. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http-handler.js +1 -0
  523. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-manager.js +1 -0
  524. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-pool.js +1 -0
  525. package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-handler.js +1 -0
  526. package/node_modules/@smithy/node-http-handler/dist-cjs/readable.mock.js +1 -0
  527. package/node_modules/@smithy/node-http-handler/dist-cjs/server.mock.js +1 -0
  528. package/node_modules/@smithy/node-http-handler/dist-cjs/set-connection-timeout.js +1 -0
  529. package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-keep-alive.js +1 -0
  530. package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-timeout.js +1 -0
  531. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/collector.js +1 -0
  532. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/index.js +1 -0
  533. package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/readable.mock.js +1 -0
  534. package/node_modules/@smithy/node-http-handler/dist-cjs/write-request-body.js +1 -0
  535. package/node_modules/@smithy/node-http-handler/dist-es/constants.js +1 -0
  536. package/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +9 -0
  537. package/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -0
  538. package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +184 -0
  539. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +86 -0
  540. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -0
  541. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +159 -0
  542. package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +19 -0
  543. package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +81 -0
  544. package/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +21 -0
  545. package/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +8 -0
  546. package/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +6 -0
  547. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +11 -0
  548. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +14 -0
  549. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +19 -0
  550. package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +52 -0
  551. package/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +5 -0
  552. package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
  553. package/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -0
  554. package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +37 -0
  555. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +22 -0
  556. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +13 -0
  557. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +57 -0
  558. package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +14 -0
  559. package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +12 -0
  560. package/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
  561. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
  562. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
  563. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +7 -0
  564. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +2 -0
  565. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +14 -0
  566. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
  567. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
  568. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
  569. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +36 -0
  570. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +22 -0
  571. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +13 -0
  572. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +57 -0
  573. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
  574. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +12 -0
  575. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
  576. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
  577. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
  578. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +6 -0
  579. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +2 -0
  580. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
  581. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
  582. package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +13 -0
  583. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/LICENSE +201 -0
  584. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/README.md +4 -0
  585. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-cjs/AbortController.js +1 -0
  586. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-cjs/AbortSignal.js +1 -0
  587. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-cjs/index.js +82 -0
  588. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-es/AbortController.js +9 -0
  589. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +20 -0
  590. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-es/index.js +2 -0
  591. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +13 -0
  592. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +18 -0
  593. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-types/index.d.ts +9 -0
  594. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +13 -0
  595. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +18 -0
  596. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +9 -0
  597. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/abort-controller/package.json +62 -0
  598. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/LICENSE +201 -0
  599. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/README.md +4 -0
  600. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/Field.js +1 -0
  601. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/Fields.js +1 -0
  602. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/extensions/httpExtensionConfiguration.js +1 -0
  603. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/extensions/index.js +1 -0
  604. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/httpHandler.js +1 -0
  605. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/httpRequest.js +1 -0
  606. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/httpResponse.js +1 -0
  607. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/index.js +237 -0
  608. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/isValidHostname.js +1 -0
  609. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-cjs/types.js +1 -0
  610. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/Field.js +23 -0
  611. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/Fields.js +19 -0
  612. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/extensions/httpExtensionConfiguration.js +22 -0
  613. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +1 -0
  614. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/httpRequest.js +48 -0
  615. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +14 -0
  616. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/index.js +8 -0
  617. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/isValidHostname.js +4 -0
  618. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +49 -0
  619. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/Fields.d.ts +44 -0
  620. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +37 -0
  621. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +1 -0
  622. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +37 -0
  623. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +23 -0
  624. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +16 -0
  625. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/index.d.ts +8 -0
  626. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/isValidHostname.d.ts +1 -0
  627. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +49 -0
  628. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/Fields.d.ts +44 -0
  629. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/httpExtensionConfiguration.d.ts +37 -0
  630. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/index.d.ts +1 -0
  631. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpHandler.d.ts +37 -0
  632. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +23 -0
  633. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpResponse.d.ts +16 -0
  634. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/index.d.ts +8 -0
  635. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -0
  636. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/ts3.4/types.d.ts +21 -0
  637. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-types/types.d.ts +21 -0
  638. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/protocol-http/package.json +61 -0
  639. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/LICENSE +201 -0
  640. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/README.md +10 -0
  641. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/dist-cjs/index.js +52 -0
  642. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/dist-es/index.js +21 -0
  643. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/dist-types/index.d.ts +5 -0
  644. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/dist-types/ts3.4/index.d.ts +5 -0
  645. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/querystring-builder/package.json +61 -0
  646. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/LICENSE +201 -0
  647. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/README.md +80 -0
  648. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/abort.js +1 -0
  649. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +1 -0
  650. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +1 -0
  651. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +1 -0
  652. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +1 -0
  653. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +1 -0
  654. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/auth.js +1 -0
  655. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/auth/index.js +1 -0
  656. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +1 -0
  657. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/checksum.js +1 -0
  658. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/client.js +1 -0
  659. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/command.js +1 -0
  660. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/connection/config.js +1 -0
  661. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/connection/index.js +1 -0
  662. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/connection/manager.js +1 -0
  663. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/connection/pool.js +1 -0
  664. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/crypto.js +1 -0
  665. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +1 -0
  666. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/encode.js +1 -0
  667. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoint.js +1 -0
  668. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +1 -0
  669. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +1 -0
  670. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +1 -0
  671. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +1 -0
  672. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoints/index.js +1 -0
  673. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +1 -0
  674. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/eventStream.js +1 -0
  675. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +1 -0
  676. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +1 -0
  677. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +1 -0
  678. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/extensions/index.js +1 -0
  679. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/extensions/retry.js +1 -0
  680. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +1 -0
  681. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +1 -0
  682. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/http.js +1 -0
  683. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +1 -0
  684. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +1 -0
  685. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/identity/identity.js +1 -0
  686. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/identity/index.js +1 -0
  687. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +1 -0
  688. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/index.js +149 -0
  689. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/logger.js +1 -0
  690. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/middleware.js +1 -0
  691. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/pagination.js +1 -0
  692. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/profile.js +1 -0
  693. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/response.js +1 -0
  694. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/retry.js +1 -0
  695. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/serde.js +1 -0
  696. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/shapes.js +1 -0
  697. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/signature.js +1 -0
  698. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/stream.js +1 -0
  699. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +1 -0
  700. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-input-types.js +1 -0
  701. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-output-types.js +1 -0
  702. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/transfer.js +1 -0
  703. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +1 -0
  704. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +1 -0
  705. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/transform/exact.js +1 -0
  706. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +1 -0
  707. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +1 -0
  708. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/uri.js +1 -0
  709. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/util.js +1 -0
  710. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-cjs/waiter.js +1 -0
  711. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +5 -0
  712. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/auth.js +5 -0
  713. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/index.js +6 -0
  714. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/connection/index.js +3 -0
  715. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoint.js +5 -0
  716. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoints/index.js +5 -0
  717. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/extensions/checksum.js +39 -0
  718. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +11 -0
  719. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/extensions/index.js +3 -0
  720. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/http.js +5 -0
  721. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/identity/index.js +4 -0
  722. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/index.js +36 -0
  723. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/logger.js +1 -0
  724. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/middleware.js +1 -0
  725. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/pagination.js +1 -0
  726. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/profile.js +6 -0
  727. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/response.js +1 -0
  728. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/retry.js +1 -0
  729. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/serde.js +1 -0
  730. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/shapes.js +1 -0
  731. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/signature.js +1 -0
  732. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/stream.js +1 -0
  733. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +1 -0
  734. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +1 -0
  735. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +1 -0
  736. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/transfer.js +6 -0
  737. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +1 -0
  738. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +1 -0
  739. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/transform/exact.js +1 -0
  740. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/transform/no-undefined.js +1 -0
  741. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/transform/type-transform.js +1 -0
  742. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/uri.js +1 -0
  743. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/util.js +1 -0
  744. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/waiter.js +1 -0
  745. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/abort.d.ts +49 -0
  746. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +7 -0
  747. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +49 -0
  748. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +20 -0
  749. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +41 -0
  750. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +14 -0
  751. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/auth.d.ts +57 -0
  752. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/auth/index.d.ts +6 -0
  753. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +41 -0
  754. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/checksum.d.ts +63 -0
  755. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/client.d.ts +44 -0
  756. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/command.d.ts +10 -0
  757. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/connection/config.d.ts +7 -0
  758. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -0
  759. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/connection/manager.d.ts +28 -0
  760. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/connection/pool.d.ts +24 -0
  761. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/crypto.d.ts +60 -0
  762. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +25 -0
  763. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/encode.d.ts +19 -0
  764. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoint.d.ts +77 -0
  765. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +15 -0
  766. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +7 -0
  767. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +19 -0
  768. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +10 -0
  769. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -0
  770. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +25 -0
  771. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/eventStream.d.ts +108 -0
  772. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +55 -0
  773. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +33 -0
  774. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +9 -0
  775. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/extensions/index.d.ts +4 -0
  776. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +18 -0
  777. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +35 -0
  778. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +79 -0
  779. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/http.d.ts +105 -0
  780. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +14 -0
  781. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +27 -0
  782. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/identity/identity.d.ts +15 -0
  783. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -0
  784. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +14 -0
  785. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/index.d.ts +36 -0
  786. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/logger.d.ts +13 -0
  787. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/middleware.d.ts +510 -0
  788. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/pagination.d.ts +26 -0
  789. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/profile.d.ts +30 -0
  790. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/response.d.ts +40 -0
  791. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/retry.d.ts +133 -0
  792. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/serde.d.ts +111 -0
  793. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/shapes.d.ts +81 -0
  794. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/signature.d.ts +150 -0
  795. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/stream.d.ts +22 -0
  796. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +33 -0
  797. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +62 -0
  798. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +53 -0
  799. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/transfer.d.ts +33 -0
  800. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +26 -0
  801. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +73 -0
  802. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/transform/exact.d.ts +6 -0
  803. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +62 -0
  804. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +34 -0
  805. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +49 -0
  806. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
  807. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
  808. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
  809. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
  810. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
  811. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +57 -0
  812. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +6 -0
  813. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +40 -0
  814. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +63 -0
  815. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +44 -0
  816. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +10 -0
  817. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +7 -0
  818. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
  819. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +28 -0
  820. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +24 -0
  821. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +60 -0
  822. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +41 -0
  823. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +19 -0
  824. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
  825. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +15 -0
  826. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +7 -0
  827. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +19 -0
  828. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +10 -0
  829. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
  830. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +25 -0
  831. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +108 -0
  832. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +55 -0
  833. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +33 -0
  834. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
  835. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +4 -0
  836. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
  837. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
  838. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +78 -0
  839. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +105 -0
  840. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
  841. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +27 -0
  842. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
  843. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
  844. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
  845. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +36 -0
  846. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
  847. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +510 -0
  848. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +26 -0
  849. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
  850. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
  851. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +133 -0
  852. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +111 -0
  853. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +81 -0
  854. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +150 -0
  855. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
  856. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +33 -0
  857. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +61 -0
  858. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +52 -0
  859. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +33 -0
  860. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
  861. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +84 -0
  862. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
  863. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +82 -0
  864. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +41 -0
  865. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
  866. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +192 -0
  867. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
  868. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/uri.d.ts +17 -0
  869. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/util.d.ts +176 -0
  870. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-types/waiter.d.ts +35 -0
  871. package/node_modules/@smithy/node-http-handler/node_modules/@smithy/types/package.json +61 -0
  872. package/node_modules/@smithy/node-http-handler/package.json +67 -0
  873. package/node_modules/@smithy/service-error-classification/LICENSE +201 -0
  874. package/node_modules/@smithy/service-error-classification/README.md +4 -0
  875. package/node_modules/@smithy/service-error-classification/dist-cjs/constants.js +1 -0
  876. package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +98 -0
  877. package/node_modules/@smithy/service-error-classification/dist-es/constants.js +27 -0
  878. package/node_modules/@smithy/service-error-classification/dist-es/index.js +21 -0
  879. package/node_modules/@smithy/service-error-classification/dist-types/constants.d.ts +26 -0
  880. package/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +19 -0
  881. package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/constants.d.ts +26 -0
  882. package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/index.d.ts +19 -0
  883. package/node_modules/@smithy/service-error-classification/package.json +58 -0
  884. package/node_modules/@smithy/smithy-client/LICENSE +201 -0
  885. package/node_modules/@smithy/smithy-client/README.md +10 -0
  886. package/node_modules/@smithy/smithy-client/dist-cjs/NoOpLogger.js +1 -0
  887. package/node_modules/@smithy/smithy-client/dist-cjs/client.js +1 -0
  888. package/node_modules/@smithy/smithy-client/dist-cjs/collect-stream-body.js +1 -0
  889. package/node_modules/@smithy/smithy-client/dist-cjs/command.js +1 -0
  890. package/node_modules/@smithy/smithy-client/dist-cjs/constants.js +1 -0
  891. package/node_modules/@smithy/smithy-client/dist-cjs/create-aggregated-client.js +1 -0
  892. package/node_modules/@smithy/smithy-client/dist-cjs/date-utils.js +1 -0
  893. package/node_modules/@smithy/smithy-client/dist-cjs/default-error-handler.js +1 -0
  894. package/node_modules/@smithy/smithy-client/dist-cjs/defaults-mode.js +1 -0
  895. package/node_modules/@smithy/smithy-client/dist-cjs/emitWarningIfUnsupportedVersion.js +1 -0
  896. package/node_modules/@smithy/smithy-client/dist-cjs/exceptions.js +1 -0
  897. package/node_modules/@smithy/smithy-client/dist-cjs/extended-encode-uri-component.js +1 -0
  898. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/checksum.js +1 -0
  899. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/defaultExtensionConfiguration.js +1 -0
  900. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/index.js +1 -0
  901. package/node_modules/@smithy/smithy-client/dist-cjs/extensions/retry.js +1 -0
  902. package/node_modules/@smithy/smithy-client/dist-cjs/get-array-if-single-item.js +1 -0
  903. package/node_modules/@smithy/smithy-client/dist-cjs/get-value-from-text-node.js +1 -0
  904. package/node_modules/@smithy/smithy-client/dist-cjs/index.js +1309 -0
  905. package/node_modules/@smithy/smithy-client/dist-cjs/is-serializable-header-value.js +1 -0
  906. package/node_modules/@smithy/smithy-client/dist-cjs/lazy-json.js +1 -0
  907. package/node_modules/@smithy/smithy-client/dist-cjs/object-mapping.js +1 -0
  908. package/node_modules/@smithy/smithy-client/dist-cjs/parse-utils.js +1 -0
  909. package/node_modules/@smithy/smithy-client/dist-cjs/quote-header.js +1 -0
  910. package/node_modules/@smithy/smithy-client/dist-cjs/resolve-path.js +1 -0
  911. package/node_modules/@smithy/smithy-client/dist-cjs/ser-utils.js +1 -0
  912. package/node_modules/@smithy/smithy-client/dist-cjs/serde-json.js +1 -0
  913. package/node_modules/@smithy/smithy-client/dist-cjs/split-every.js +1 -0
  914. package/node_modules/@smithy/smithy-client/dist-cjs/split-header.js +1 -0
  915. package/node_modules/@smithy/smithy-client/dist-es/NoOpLogger.js +7 -0
  916. package/node_modules/@smithy/smithy-client/dist-es/client.js +42 -0
  917. package/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +1 -0
  918. package/node_modules/@smithy/smithy-client/dist-es/command.js +115 -0
  919. package/node_modules/@smithy/smithy-client/dist-es/constants.js +1 -0
  920. package/node_modules/@smithy/smithy-client/dist-es/create-aggregated-client.js +21 -0
  921. package/node_modules/@smithy/smithy-client/dist-es/date-utils.js +190 -0
  922. package/node_modules/@smithy/smithy-client/dist-es/default-error-handler.js +22 -0
  923. package/node_modules/@smithy/smithy-client/dist-es/defaults-mode.js +26 -0
  924. package/node_modules/@smithy/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js +6 -0
  925. package/node_modules/@smithy/smithy-client/dist-es/exceptions.js +22 -0
  926. package/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +1 -0
  927. package/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +31 -0
  928. package/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +15 -0
  929. package/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +1 -0
  930. package/node_modules/@smithy/smithy-client/dist-es/extensions/retry.js +16 -0
  931. package/node_modules/@smithy/smithy-client/dist-es/get-array-if-single-item.js +1 -0
  932. package/node_modules/@smithy/smithy-client/dist-es/get-value-from-text-node.js +12 -0
  933. package/node_modules/@smithy/smithy-client/dist-es/index.js +25 -0
  934. package/node_modules/@smithy/smithy-client/dist-es/is-serializable-header-value.js +3 -0
  935. package/node_modules/@smithy/smithy-client/dist-es/lazy-json.js +33 -0
  936. package/node_modules/@smithy/smithy-client/dist-es/object-mapping.js +92 -0
  937. package/node_modules/@smithy/smithy-client/dist-es/parse-utils.js +230 -0
  938. package/node_modules/@smithy/smithy-client/dist-es/quote-header.js +6 -0
  939. package/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +1 -0
  940. package/node_modules/@smithy/smithy-client/dist-es/ser-utils.js +14 -0
  941. package/node_modules/@smithy/smithy-client/dist-es/serde-json.js +19 -0
  942. package/node_modules/@smithy/smithy-client/dist-es/split-every.js +27 -0
  943. package/node_modules/@smithy/smithy-client/dist-es/split-header.js +37 -0
  944. package/node_modules/@smithy/smithy-client/dist-types/NoOpLogger.d.ts +11 -0
  945. package/node_modules/@smithy/smithy-client/dist-types/client.d.ts +53 -0
  946. package/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +5 -0
  947. package/node_modules/@smithy/smithy-client/dist-types/command.d.ts +113 -0
  948. package/node_modules/@smithy/smithy-client/dist-types/constants.d.ts +4 -0
  949. package/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +9 -0
  950. package/node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts +73 -0
  951. package/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +13 -0
  952. package/node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts +28 -0
  953. package/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +8 -0
  954. package/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +34 -0
  955. package/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +5 -0
  956. package/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +25 -0
  957. package/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +38 -0
  958. package/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +1 -0
  959. package/node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts +15 -0
  960. package/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +7 -0
  961. package/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +7 -0
  962. package/node_modules/@smithy/smithy-client/dist-types/index.d.ts +26 -0
  963. package/node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts +5 -0
  964. package/node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts +24 -0
  965. package/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +162 -0
  966. package/node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts +270 -0
  967. package/node_modules/@smithy/smithy-client/dist-types/quote-header.d.ts +6 -0
  968. package/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +5 -0
  969. package/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +14 -0
  970. package/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +12 -0
  971. package/node_modules/@smithy/smithy-client/dist-types/split-every.d.ts +11 -0
  972. package/node_modules/@smithy/smithy-client/dist-types/split-header.d.ts +5 -0
  973. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/NoOpLogger.d.ts +11 -0
  974. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/client.d.ts +53 -0
  975. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/collect-stream-body.d.ts +5 -0
  976. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/command.d.ts +113 -0
  977. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/constants.d.ts +4 -0
  978. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/create-aggregated-client.d.ts +9 -0
  979. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/date-utils.d.ts +73 -0
  980. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +13 -0
  981. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +28 -0
  982. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +8 -0
  983. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/exceptions.d.ts +34 -0
  984. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +5 -0
  985. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/checksum.d.ts +25 -0
  986. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +38 -0
  987. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/index.d.ts +1 -0
  988. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/retry.d.ts +15 -0
  989. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +7 -0
  990. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +7 -0
  991. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/index.d.ts +26 -0
  992. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/is-serializable-header-value.d.ts +5 -0
  993. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/lazy-json.d.ts +24 -0
  994. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/object-mapping.d.ts +178 -0
  995. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/parse-utils.d.ts +270 -0
  996. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/quote-header.d.ts +6 -0
  997. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/resolve-path.d.ts +5 -0
  998. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/ser-utils.d.ts +14 -0
  999. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/serde-json.d.ts +12 -0
  1000. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/split-every.d.ts +11 -0
  1001. package/node_modules/@smithy/smithy-client/dist-types/ts3.4/split-header.d.ts +5 -0
  1002. package/node_modules/@smithy/smithy-client/package.json +66 -0
  1003. package/node_modules/@smithy/util-base64/LICENSE +201 -0
  1004. package/node_modules/@smithy/util-base64/README.md +4 -0
  1005. package/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +35 -0
  1006. package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.browser.js +40 -0
  1007. package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.js +16 -0
  1008. package/node_modules/@smithy/util-base64/dist-cjs/index.js +27 -0
  1009. package/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +39 -0
  1010. package/node_modules/@smithy/util-base64/dist-cjs/toBase64.js +19 -0
  1011. package/node_modules/@smithy/util-base64/dist-es/constants.browser.js +28 -0
  1012. package/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js +36 -0
  1013. package/node_modules/@smithy/util-base64/dist-es/fromBase64.js +12 -0
  1014. package/node_modules/@smithy/util-base64/dist-es/index.js +2 -0
  1015. package/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js +35 -0
  1016. package/node_modules/@smithy/util-base64/dist-es/toBase64.js +15 -0
  1017. package/node_modules/@smithy/util-base64/dist-types/constants.browser.d.ts +6 -0
  1018. package/node_modules/@smithy/util-base64/dist-types/fromBase64.browser.d.ts +8 -0
  1019. package/node_modules/@smithy/util-base64/dist-types/fromBase64.d.ts +7 -0
  1020. package/node_modules/@smithy/util-base64/dist-types/index.d.ts +2 -0
  1021. package/node_modules/@smithy/util-base64/dist-types/toBase64.browser.d.ts +9 -0
  1022. package/node_modules/@smithy/util-base64/dist-types/toBase64.d.ts +8 -0
  1023. package/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +6 -0
  1024. package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts +8 -0
  1025. package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.d.ts +7 -0
  1026. package/node_modules/@smithy/util-base64/dist-types/ts3.4/index.d.ts +2 -0
  1027. package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.browser.d.ts +9 -0
  1028. package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.d.ts +8 -0
  1029. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/LICENSE +201 -0
  1030. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/README.md +4 -0
  1031. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +1 -0
  1032. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +1 -0
  1033. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-cjs/index.js +65 -0
  1034. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +1 -0
  1035. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +1 -0
  1036. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +1 -0
  1037. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +1 -0
  1038. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +5 -0
  1039. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-es/index.js +3 -0
  1040. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +10 -0
  1041. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +9 -0
  1042. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +10 -0
  1043. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +1 -0
  1044. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +1 -0
  1045. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/index.d.ts +3 -0
  1046. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +1 -0
  1047. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +7 -0
  1048. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +7 -0
  1049. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +1 -0
  1050. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +1 -0
  1051. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +3 -0
  1052. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +1 -0
  1053. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +7 -0
  1054. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +7 -0
  1055. package/node_modules/@smithy/util-base64/node_modules/@smithy/util-utf8/package.json +65 -0
  1056. package/node_modules/@smithy/util-base64/package.json +72 -0
  1057. package/node_modules/@smithy/util-body-length-browser/LICENSE +201 -0
  1058. package/node_modules/@smithy/util-body-length-browser/README.md +12 -0
  1059. package/node_modules/@smithy/util-body-length-browser/dist-cjs/calculateBodyLength.js +1 -0
  1060. package/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +57 -0
  1061. package/node_modules/@smithy/util-body-length-browser/dist-es/calculateBodyLength.js +26 -0
  1062. package/node_modules/@smithy/util-body-length-browser/dist-es/index.js +1 -0
  1063. package/node_modules/@smithy/util-body-length-browser/dist-types/calculateBodyLength.d.ts +4 -0
  1064. package/node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts +4 -0
  1065. package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +4 -0
  1066. package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/index.d.ts +4 -0
  1067. package/node_modules/@smithy/util-body-length-browser/package.json +56 -0
  1068. package/node_modules/@smithy/util-body-length-node/LICENSE +201 -0
  1069. package/node_modules/@smithy/util-body-length-node/README.md +12 -0
  1070. package/node_modules/@smithy/util-body-length-node/dist-cjs/calculateBodyLength.js +1 -0
  1071. package/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +53 -0
  1072. package/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +25 -0
  1073. package/node_modules/@smithy/util-body-length-node/dist-es/index.js +1 -0
  1074. package/node_modules/@smithy/util-body-length-node/dist-types/calculateBodyLength.d.ts +4 -0
  1075. package/node_modules/@smithy/util-body-length-node/dist-types/index.d.ts +4 -0
  1076. package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +4 -0
  1077. package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/index.d.ts +4 -0
  1078. package/node_modules/@smithy/util-body-length-node/package.json +60 -0
  1079. package/node_modules/@smithy/util-buffer-from/LICENSE +201 -0
  1080. package/node_modules/@smithy/util-buffer-from/README.md +10 -0
  1081. package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +47 -0
  1082. package/node_modules/@smithy/util-buffer-from/dist-es/index.js +14 -0
  1083. package/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +13 -0
  1084. package/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +13 -0
  1085. package/node_modules/@smithy/util-buffer-from/package.json +60 -0
  1086. package/node_modules/@smithy/util-defaults-mode-browser/LICENSE +201 -0
  1087. package/node_modules/@smithy/util-defaults-mode-browser/README.md +10 -0
  1088. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +4 -0
  1089. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +25 -0
  1090. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +33 -0
  1091. package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +23 -0
  1092. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +1 -0
  1093. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +1 -0
  1094. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +27 -0
  1095. package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +19 -0
  1096. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +12 -0
  1097. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +4 -0
  1098. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
  1099. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +16 -0
  1100. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +12 -0
  1101. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +4 -0
  1102. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
  1103. package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +16 -0
  1104. package/node_modules/@smithy/util-defaults-mode-browser/package.json +65 -0
  1105. package/node_modules/@smithy/util-defaults-mode-node/LICENSE +201 -0
  1106. package/node_modules/@smithy/util-defaults-mode-node/README.md +10 -0
  1107. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/constants.js +1 -0
  1108. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/defaultsModeConfig.js +1 -0
  1109. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +119 -0
  1110. package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/resolveDefaultsModeConfig.js +1 -0
  1111. package/node_modules/@smithy/util-defaults-mode-node/dist-es/constants.js +6 -0
  1112. package/node_modules/@smithy/util-defaults-mode-node/dist-es/defaultsModeConfig.js +11 -0
  1113. package/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +1 -0
  1114. package/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +52 -0
  1115. package/node_modules/@smithy/util-defaults-mode-node/dist-types/constants.d.ts +24 -0
  1116. package/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +6 -0
  1117. package/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +4 -0
  1118. package/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
  1119. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +24 -0
  1120. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +6 -0
  1121. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +4 -0
  1122. package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
  1123. package/node_modules/@smithy/util-defaults-mode-node/package.json +65 -0
  1124. package/node_modules/@smithy/util-retry/LICENSE +201 -0
  1125. package/node_modules/@smithy/util-retry/README.md +78 -0
  1126. package/node_modules/@smithy/util-retry/dist-cjs/AdaptiveRetryStrategy.js +1 -0
  1127. package/node_modules/@smithy/util-retry/dist-cjs/ConfiguredRetryStrategy.js +1 -0
  1128. package/node_modules/@smithy/util-retry/dist-cjs/DefaultRateLimiter.js +1 -0
  1129. package/node_modules/@smithy/util-retry/dist-cjs/StandardRetryStrategy.js +1 -0
  1130. package/node_modules/@smithy/util-retry/dist-cjs/config.js +1 -0
  1131. package/node_modules/@smithy/util-retry/dist-cjs/constants.js +1 -0
  1132. package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryBackoffStrategy.js +1 -0
  1133. package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryToken.js +1 -0
  1134. package/node_modules/@smithy/util-retry/dist-cjs/index.js +348 -0
  1135. package/node_modules/@smithy/util-retry/dist-cjs/types.js +1 -0
  1136. package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +24 -0
  1137. package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +18 -0
  1138. package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +99 -0
  1139. package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +65 -0
  1140. package/node_modules/@smithy/util-retry/dist-es/config.js +7 -0
  1141. package/node_modules/@smithy/util-retry/dist-es/constants.js +9 -0
  1142. package/node_modules/@smithy/util-retry/dist-es/defaultRetryBackoffStrategy.js +14 -0
  1143. package/node_modules/@smithy/util-retry/dist-es/defaultRetryToken.js +11 -0
  1144. package/node_modules/@smithy/util-retry/dist-es/index.js +7 -0
  1145. package/node_modules/@smithy/util-retry/dist-es/types.js +1 -0
  1146. package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +33 -0
  1147. package/node_modules/@smithy/util-retry/dist-types/ConfiguredRetryStrategy.d.ts +32 -0
  1148. package/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +45 -0
  1149. package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +26 -0
  1150. package/node_modules/@smithy/util-retry/dist-types/config.d.ts +20 -0
  1151. package/node_modules/@smithy/util-retry/dist-types/constants.d.ts +59 -0
  1152. package/node_modules/@smithy/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +5 -0
  1153. package/node_modules/@smithy/util-retry/dist-types/defaultRetryToken.d.ts +9 -0
  1154. package/node_modules/@smithy/util-retry/dist-types/index.d.ts +7 -0
  1155. package/node_modules/@smithy/util-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +33 -0
  1156. package/node_modules/@smithy/util-retry/dist-types/ts3.4/ConfiguredRetryStrategy.d.ts +32 -0
  1157. package/node_modules/@smithy/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +45 -0
  1158. package/node_modules/@smithy/util-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +26 -0
  1159. package/node_modules/@smithy/util-retry/dist-types/ts3.4/config.d.ts +20 -0
  1160. package/node_modules/@smithy/util-retry/dist-types/ts3.4/constants.d.ts +59 -0
  1161. package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryBackoffStrategy.d.ts +5 -0
  1162. package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryToken.d.ts +9 -0
  1163. package/node_modules/@smithy/util-retry/dist-types/ts3.4/index.d.ts +7 -0
  1164. package/node_modules/@smithy/util-retry/dist-types/ts3.4/types.d.ts +19 -0
  1165. package/node_modules/@smithy/util-retry/dist-types/types.d.ts +19 -0
  1166. package/node_modules/@smithy/util-retry/package.json +67 -0
  1167. package/node_modules/@smithy/util-uri-escape/LICENSE +201 -0
  1168. package/node_modules/@smithy/util-uri-escape/README.md +10 -0
  1169. package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri-path.js +1 -0
  1170. package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri.js +1 -0
  1171. package/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +43 -0
  1172. package/node_modules/@smithy/util-uri-escape/dist-es/escape-uri-path.js +2 -0
  1173. package/node_modules/@smithy/util-uri-escape/dist-es/escape-uri.js +2 -0
  1174. package/node_modules/@smithy/util-uri-escape/dist-es/index.js +2 -0
  1175. package/node_modules/@smithy/util-uri-escape/dist-types/escape-uri-path.d.ts +4 -0
  1176. package/node_modules/@smithy/util-uri-escape/dist-types/escape-uri.d.ts +4 -0
  1177. package/node_modules/@smithy/util-uri-escape/dist-types/index.d.ts +8 -0
  1178. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +4 -0
  1179. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +4 -0
  1180. package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/index.d.ts +8 -0
  1181. package/node_modules/@smithy/util-uri-escape/package.json +59 -0
  1182. package/out/client/streamingClient/codewhispererStreamingClient.js +7 -8
  1183. package/out/client/streamingClient/codewhispererStreamingClient.js.map +1 -1
  1184. package/out/client/token/bearer-token-service.json +2472 -470
  1185. package/out/constants.d.ts +2 -0
  1186. package/out/constants.js +6 -0
  1187. package/out/constants.js.map +1 -0
  1188. package/out/language-server/auto-trigger/coefficients.json +11 -1
  1189. package/out/language-server/chat/chatController.d.ts +4 -4
  1190. package/out/language-server/chat/chatController.js +96 -41
  1191. package/out/language-server/chat/chatController.js.map +1 -1
  1192. package/out/language-server/chat/chatController.test.js +51 -28
  1193. package/out/language-server/chat/chatController.test.js.map +1 -1
  1194. package/out/language-server/chat/chatEventParser.d.ts +7 -2
  1195. package/out/language-server/chat/chatEventParser.js +13 -5
  1196. package/out/language-server/chat/chatEventParser.js.map +1 -1
  1197. package/out/language-server/chat/chatEventParser.test.js +88 -42
  1198. package/out/language-server/chat/chatEventParser.test.js.map +1 -1
  1199. package/out/language-server/chat/chatSessionService.d.ts +4 -4
  1200. package/out/language-server/chat/chatSessionService.js +13 -13
  1201. package/out/language-server/chat/chatSessionService.js.map +1 -1
  1202. package/out/language-server/chat/chatSessionService.test.js +19 -25
  1203. package/out/language-server/chat/chatSessionService.test.js.map +1 -1
  1204. package/out/language-server/chat/contexts/documentContext.d.ts +1 -4
  1205. package/out/language-server/chat/contexts/documentContext.js +1 -17
  1206. package/out/language-server/chat/contexts/documentContext.js.map +1 -1
  1207. package/out/language-server/chat/contexts/documentContext.test.js +0 -7
  1208. package/out/language-server/chat/contexts/documentContext.test.js.map +1 -1
  1209. package/out/language-server/chat/contexts/triggerContext.d.ts +3 -4
  1210. package/out/language-server/chat/contexts/triggerContext.js +2 -5
  1211. package/out/language-server/chat/contexts/triggerContext.js.map +1 -1
  1212. package/out/language-server/chat/contexts/triggerContexts.test.js +0 -1
  1213. package/out/language-server/chat/contexts/triggerContexts.test.js.map +1 -1
  1214. package/out/language-server/chat/telemetry/chatTelemetryController.d.ts +8 -2
  1215. package/out/language-server/chat/telemetry/chatTelemetryController.js +108 -59
  1216. package/out/language-server/chat/telemetry/chatTelemetryController.js.map +1 -1
  1217. package/out/language-server/chat/telemetry/chatTelemetryController.test.js +112 -1
  1218. package/out/language-server/chat/telemetry/chatTelemetryController.test.js.map +1 -1
  1219. package/out/language-server/chat/telemetry/clientTelemetry.d.ts +0 -1
  1220. package/out/language-server/chat/telemetry/clientTelemetry.js.map +1 -1
  1221. package/out/language-server/codeWhispererSecurityScanServer.js +2 -1
  1222. package/out/language-server/codeWhispererSecurityScanServer.js.map +1 -1
  1223. package/out/language-server/codeWhispererServer.js +70 -45
  1224. package/out/language-server/codeWhispererServer.js.map +1 -1
  1225. package/out/language-server/codeWhispererServer.test.js +79 -2
  1226. package/out/language-server/codeWhispererServer.test.js.map +1 -1
  1227. package/out/language-server/codeWhispererService.d.ts +14 -11
  1228. package/out/language-server/codeWhispererService.js +25 -12
  1229. package/out/language-server/codeWhispererService.js.map +1 -1
  1230. package/out/language-server/configuration/qConfigurationServer.js +2 -2
  1231. package/out/language-server/configuration/qConfigurationServer.js.map +1 -1
  1232. package/out/language-server/constants.d.ts +1 -0
  1233. package/out/language-server/constants.js +2 -1
  1234. package/out/language-server/constants.js.map +1 -1
  1235. package/out/language-server/dependencyGraph/csharpDependencyGraph.test.js +2 -3
  1236. package/out/language-server/dependencyGraph/csharpDependencyGraph.test.js.map +1 -1
  1237. package/out/language-server/dependencyGraph/dependencyGraph.js +2 -2
  1238. package/out/language-server/dependencyGraph/dependencyGraph.js.map +1 -1
  1239. package/out/language-server/languageDetection.d.ts +9 -1
  1240. package/out/language-server/languageDetection.js +81 -5
  1241. package/out/language-server/languageDetection.js.map +1 -1
  1242. package/out/language-server/netTransform/artifactManager.js +12 -10
  1243. package/out/language-server/netTransform/artifactManager.js.map +1 -1
  1244. package/out/language-server/netTransform/converter.d.ts +1 -2
  1245. package/out/language-server/netTransform/converter.js +3 -48
  1246. package/out/language-server/netTransform/converter.js.map +1 -1
  1247. package/out/language-server/netTransform/models.d.ts +4 -0
  1248. package/out/language-server/netTransform/models.js.map +1 -1
  1249. package/out/language-server/netTransform/resources/SupportedProjects.js +0 -1
  1250. package/out/language-server/netTransform/resources/SupportedProjects.js.map +1 -1
  1251. package/out/language-server/netTransform/tests/converter.test.js +2 -159
  1252. package/out/language-server/netTransform/tests/converter.test.js.map +1 -1
  1253. package/out/language-server/netTransform/tests/validation.test.js +2 -0
  1254. package/out/language-server/netTransform/tests/validation.test.js.map +1 -1
  1255. package/out/language-server/netTransform/transformHandler.js +27 -36
  1256. package/out/language-server/netTransform/transformHandler.js.map +1 -1
  1257. package/out/language-server/netTransformServer.js +2 -21
  1258. package/out/language-server/netTransformServer.js.map +1 -1
  1259. package/out/language-server/proxy-server.js +9 -83
  1260. package/out/language-server/proxy-server.js.map +1 -1
  1261. package/out/language-server/qChatServer.js +13 -4
  1262. package/out/language-server/qChatServer.js.map +1 -1
  1263. package/out/language-server/session/sessionManager.d.ts +9 -2
  1264. package/out/language-server/session/sessionManager.js +4 -0
  1265. package/out/language-server/session/sessionManager.js.map +1 -1
  1266. package/out/language-server/session/sessionManager.test.js +4 -0
  1267. package/out/language-server/session/sessionManager.test.js.map +1 -1
  1268. package/out/language-server/telemetry/codeDiffTracker.d.ts +3 -1
  1269. package/out/language-server/telemetry/codeDiffTracker.js +6 -1
  1270. package/out/language-server/telemetry/codeDiffTracker.js.map +1 -1
  1271. package/out/language-server/telemetry/codePercentage.d.ts +6 -4
  1272. package/out/language-server/telemetry/codePercentage.js +49 -12
  1273. package/out/language-server/telemetry/codePercentage.js.map +1 -1
  1274. package/out/language-server/telemetry/codePercentage.test.js +169 -41
  1275. package/out/language-server/telemetry/codePercentage.test.js.map +1 -1
  1276. package/out/language-server/telemetry/types.d.ts +7 -1
  1277. package/out/language-server/telemetry/types.js.map +1 -1
  1278. package/out/language-server/telemetry/userTriggerDecision.test.js +560 -156
  1279. package/out/language-server/telemetry/userTriggerDecision.test.js.map +1 -1
  1280. package/out/language-server/telemetry.test.js +11 -9
  1281. package/out/language-server/telemetry.test.js.map +1 -1
  1282. package/out/language-server/telemetryService.d.ts +79 -0
  1283. package/out/language-server/telemetryService.js +321 -0
  1284. package/out/language-server/telemetryService.js.map +1 -0
  1285. package/out/language-server/telemetryService.test.d.ts +1 -0
  1286. package/out/language-server/telemetryService.test.js +761 -0
  1287. package/out/language-server/telemetryService.test.js.map +1 -0
  1288. package/out/language-server/utilities/telemetryUtils.d.ts +4 -0
  1289. package/out/language-server/utilities/telemetryUtils.js +89 -0
  1290. package/out/language-server/utilities/telemetryUtils.js.map +1 -0
  1291. package/out/language-server/utilities/telemetryUtils.test.d.ts +1 -0
  1292. package/out/language-server/utilities/telemetryUtils.test.js +207 -0
  1293. package/out/language-server/utilities/telemetryUtils.test.js.map +1 -0
  1294. package/out/language-server/utils.d.ts +7 -4
  1295. package/out/language-server/utils.js +57 -34
  1296. package/out/language-server/utils.js.map +1 -1
  1297. package/out/language-server/utils.test.js +104 -73
  1298. package/out/language-server/utils.test.js.map +1 -1
  1299. package/package.json +4 -7
  1300. package/node_modules/@aws/lsp-fqn/out/browser/fqnWorkerPool.d.ts +0 -5
  1301. package/node_modules/@aws/lsp-fqn/out/browser/fqnWorkerPool.js +0 -28
  1302. package/node_modules/@aws/lsp-fqn/out/browser/fqnWorkerPool.js.map +0 -1
  1303. package/node_modules/@aws/lsp-fqn/out/browser/index.d.ts +0 -2
  1304. package/node_modules/@aws/lsp-fqn/out/browser/index.js +0 -19
  1305. package/node_modules/@aws/lsp-fqn/out/browser/index.js.map +0 -1
  1306. package/node_modules/@aws/lsp-fqn/out/common/commonFqnWorkerPool.d.ts +0 -7
  1307. package/node_modules/@aws/lsp-fqn/out/common/commonFqnWorkerPool.js +0 -39
  1308. package/node_modules/@aws/lsp-fqn/out/common/commonFqnWorkerPool.js.map +0 -1
  1309. package/node_modules/@aws/lsp-fqn/out/common/defaults.d.ts +0 -4
  1310. package/node_modules/@aws/lsp-fqn/out/common/defaults.js +0 -8
  1311. package/node_modules/@aws/lsp-fqn/out/common/defaults.js.map +0 -1
  1312. package/node_modules/@aws/lsp-fqn/out/common/fqnExtractor.d.ts +0 -3
  1313. package/node_modules/@aws/lsp-fqn/out/common/fqnExtractor.js +0 -28
  1314. package/node_modules/@aws/lsp-fqn/out/common/fqnExtractor.js.map +0 -1
  1315. package/node_modules/@aws/lsp-fqn/out/common/fqnExtractor.test.js +0 -57
  1316. package/node_modules/@aws/lsp-fqn/out/common/fqnExtractor.test.js.map +0 -1
  1317. package/node_modules/@aws/lsp-fqn/out/common/types.d.ts +0 -58
  1318. package/node_modules/@aws/lsp-fqn/out/common/types.js +0 -3
  1319. package/node_modules/@aws/lsp-fqn/out/common/types.js.map +0 -1
  1320. package/node_modules/@aws/lsp-fqn/out/index.d.ts +0 -7
  1321. package/node_modules/@aws/lsp-fqn/out/index.js +0 -18
  1322. package/node_modules/@aws/lsp-fqn/out/index.js.map +0 -1
  1323. package/node_modules/@aws/lsp-fqn/out/node/aws-lsp-fqn-worker.js +0 -19
  1324. package/node_modules/@aws/lsp-fqn/out/node/aws-lsp-fqn-worker.js.map +0 -1
  1325. package/node_modules/@aws/lsp-fqn/out/node/fqnWorkerPool.d.ts +0 -5
  1326. package/node_modules/@aws/lsp-fqn/out/node/fqnWorkerPool.js +0 -12
  1327. package/node_modules/@aws/lsp-fqn/out/node/fqnWorkerPool.js.map +0 -1
  1328. package/node_modules/@aws/lsp-fqn/out/node/index.d.ts +0 -2
  1329. package/node_modules/@aws/lsp-fqn/out/node/index.js +0 -19
  1330. package/node_modules/@aws/lsp-fqn/out/node/index.js.map +0 -1
  1331. package/node_modules/@aws/lsp-fqn/package.json +0 -42
  1332. package/node_modules/@aws/lsp-fqn/src/browser/fqnWorkerPool.ts +0 -26
  1333. package/node_modules/@aws/lsp-fqn/src/browser/index.ts +0 -2
  1334. package/node_modules/@aws/lsp-fqn/src/common/commonFqnWorkerPool.ts +0 -44
  1335. package/node_modules/@aws/lsp-fqn/src/common/defaults.ts +0 -4
  1336. package/node_modules/@aws/lsp-fqn/src/common/fqnExtractor.test.ts +0 -66
  1337. package/node_modules/@aws/lsp-fqn/src/common/fqnExtractor.ts +0 -35
  1338. package/node_modules/@aws/lsp-fqn/src/common/types.ts +0 -77
  1339. package/node_modules/@aws/lsp-fqn/src/index.ts +0 -8
  1340. package/node_modules/@aws/lsp-fqn/src/node/aws-lsp-fqn-worker.ts +0 -19
  1341. package/node_modules/@aws/lsp-fqn/src/node/fqnWorkerPool.ts +0 -9
  1342. package/node_modules/@aws/lsp-fqn/src/node/index.ts +0 -2
  1343. package/node_modules/@aws/lsp-fqn/tsconfig.json +0 -8
  1344. package/node_modules/@aws/lsp-fqn/tsconfig.tsbuildinfo +0 -1
  1345. package/node_modules/@aws-sdk/types/README.md +0 -4
  1346. package/node_modules/@aws-sdk/types/dist-cjs/auth.js +0 -5
  1347. package/node_modules/@aws-sdk/types/dist-cjs/blob/blob-types.js +0 -2
  1348. package/node_modules/@aws-sdk/types/dist-cjs/blob/runtime-blob-types.browser.js +0 -2
  1349. package/node_modules/@aws-sdk/types/dist-cjs/blob/runtime-blob-types.node.js +0 -2
  1350. package/node_modules/@aws-sdk/types/dist-cjs/checksum.js +0 -2
  1351. package/node_modules/@aws-sdk/types/dist-cjs/client.js +0 -2
  1352. package/node_modules/@aws-sdk/types/dist-cjs/command.js +0 -2
  1353. package/node_modules/@aws-sdk/types/dist-cjs/connection.js +0 -2
  1354. package/node_modules/@aws-sdk/types/dist-cjs/credentials.js +0 -2
  1355. package/node_modules/@aws-sdk/types/dist-cjs/crypto.js +0 -2
  1356. package/node_modules/@aws-sdk/types/dist-cjs/dns.js +0 -8
  1357. package/node_modules/@aws-sdk/types/dist-cjs/encode.js +0 -2
  1358. package/node_modules/@aws-sdk/types/dist-cjs/endpoint.js +0 -5
  1359. package/node_modules/@aws-sdk/types/dist-cjs/eventStream.js +0 -2
  1360. package/node_modules/@aws-sdk/types/dist-cjs/extensions/index.js +0 -2
  1361. package/node_modules/@aws-sdk/types/dist-cjs/http.js +0 -2
  1362. package/node_modules/@aws-sdk/types/dist-cjs/identity/AnonymousIdentity.js +0 -2
  1363. package/node_modules/@aws-sdk/types/dist-cjs/identity/AwsCredentialIdentity.js +0 -2
  1364. package/node_modules/@aws-sdk/types/dist-cjs/identity/Identity.js +0 -2
  1365. package/node_modules/@aws-sdk/types/dist-cjs/identity/LoginIdentity.js +0 -2
  1366. package/node_modules/@aws-sdk/types/dist-cjs/identity/TokenIdentity.js +0 -2
  1367. package/node_modules/@aws-sdk/types/dist-cjs/identity/index.js +0 -8
  1368. package/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -35
  1369. package/node_modules/@aws-sdk/types/dist-cjs/logger.js +0 -2
  1370. package/node_modules/@aws-sdk/types/dist-cjs/middleware.js +0 -2
  1371. package/node_modules/@aws-sdk/types/dist-cjs/pagination.js +0 -2
  1372. package/node_modules/@aws-sdk/types/dist-cjs/profile.js +0 -2
  1373. package/node_modules/@aws-sdk/types/dist-cjs/request.js +0 -2
  1374. package/node_modules/@aws-sdk/types/dist-cjs/response.js +0 -2
  1375. package/node_modules/@aws-sdk/types/dist-cjs/retry.js +0 -2
  1376. package/node_modules/@aws-sdk/types/dist-cjs/serde.js +0 -2
  1377. package/node_modules/@aws-sdk/types/dist-cjs/shapes.js +0 -2
  1378. package/node_modules/@aws-sdk/types/dist-cjs/signature.js +0 -2
  1379. package/node_modules/@aws-sdk/types/dist-cjs/stream.js +0 -2
  1380. package/node_modules/@aws-sdk/types/dist-cjs/token.js +0 -2
  1381. package/node_modules/@aws-sdk/types/dist-cjs/transfer.js +0 -5
  1382. package/node_modules/@aws-sdk/types/dist-cjs/uri.js +0 -2
  1383. package/node_modules/@aws-sdk/types/dist-cjs/util.js +0 -2
  1384. package/node_modules/@aws-sdk/types/dist-cjs/waiter.js +0 -2
  1385. package/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
  1386. package/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
  1387. package/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
  1388. package/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
  1389. package/node_modules/@aws-sdk/types/dist-es/index.js +0 -32
  1390. package/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
  1391. package/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
  1392. package/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
  1393. package/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
  1394. package/node_modules/@aws-sdk/types/dist-types/blob/runtime-blob-types.browser.d.ts +0 -6
  1395. package/node_modules/@aws-sdk/types/dist-types/blob/runtime-blob-types.node.d.ts +0 -9
  1396. package/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
  1397. package/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
  1398. package/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
  1399. package/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
  1400. package/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -17
  1401. package/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
  1402. package/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
  1403. package/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
  1404. package/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
  1405. package/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
  1406. package/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
  1407. package/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
  1408. package/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
  1409. package/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -1
  1410. package/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
  1411. package/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
  1412. package/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -14
  1413. package/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
  1414. package/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -32
  1415. package/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
  1416. package/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -1
  1417. package/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
  1418. package/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
  1419. package/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
  1420. package/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
  1421. package/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
  1422. package/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
  1423. package/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
  1424. package/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
  1425. package/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
  1426. package/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
  1427. package/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
  1428. package/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
  1429. package/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
  1430. package/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
  1431. package/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/runtime-blob-types.browser.d.ts +0 -1
  1432. package/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/runtime-blob-types.node.d.ts +0 -2
  1433. package/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
  1434. package/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
  1435. package/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
  1436. package/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
  1437. package/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -4
  1438. package/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
  1439. package/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
  1440. package/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
  1441. package/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
  1442. package/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
  1443. package/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
  1444. package/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
  1445. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
  1446. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -4
  1447. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
  1448. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
  1449. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -5
  1450. package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
  1451. package/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -32
  1452. package/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
  1453. package/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -40
  1454. package/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
  1455. package/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
  1456. package/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
  1457. package/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
  1458. package/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
  1459. package/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
  1460. package/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
  1461. package/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
  1462. package/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
  1463. package/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
  1464. package/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
  1465. package/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
  1466. package/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
  1467. package/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
  1468. package/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
  1469. package/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
  1470. package/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
  1471. package/node_modules/@aws-sdk/types/package.json +0 -64
  1472. package/out/language-server/chat/contexts/documentFqnExtractor.d.ts +0 -22
  1473. package/out/language-server/chat/contexts/documentFqnExtractor.js +0 -95
  1474. package/out/language-server/chat/contexts/documentFqnExtractor.js.map +0 -1
  1475. package/out/language-server/chat/contexts/documentFqnExtractor.test.js +0 -94
  1476. package/out/language-server/chat/contexts/documentFqnExtractor.test.js.map +0 -1
  1477. package/out/language-server/chat/contexts/mockData.d.ts +0 -37
  1478. package/out/language-server/chat/contexts/mockData.js +0 -98
  1479. package/out/language-server/chat/contexts/mockData.js.map +0 -1
  1480. /package/node_modules/@aws-sdk/{types/dist-cjs/abort.js → util-user-agent-browser/dist-cjs/configurations.js} +0 -0
  1481. /package/node_modules/@aws-sdk/{types/dist-es/abort.js → util-user-agent-browser/dist-es/configurations.js} +0 -0
  1482. /package/node_modules/{@aws-sdk/types → @smithy/config-resolver}/LICENSE +0 -0
  1483. /package/node_modules/{@aws-sdk/types/dist-es/blob/blob-types.js → @smithy/config-resolver/dist-es/regionInfo/EndpointVariant.js} +0 -0
  1484. /package/node_modules/{@aws-sdk/types/dist-es/blob/runtime-blob-types.browser.js → @smithy/config-resolver/dist-es/regionInfo/EndpointVariantTag.js} +0 -0
  1485. /package/node_modules/{@aws-sdk/types/dist-es/blob/runtime-blob-types.node.js → @smithy/config-resolver/dist-es/regionInfo/PartitionHash.js} +0 -0
  1486. /package/node_modules/{@aws-sdk/types/dist-es/checksum.js → @smithy/config-resolver/dist-es/regionInfo/RegionHash.js} +0 -0
  1487. /package/node_modules/{@aws-sdk/types/dist-es/client.js → @smithy/middleware-retry/dist-es/types.js} +0 -0
  1488. /package/node_modules/{@aws-sdk/types/dist-es/command.js → @smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/httpHandler.js} +0 -0
  1489. /package/node_modules/{@aws-sdk/types/dist-es/connection.js → @smithy/node-http-handler/node_modules/@smithy/protocol-http/dist-es/types.js} +0 -0
  1490. /package/node_modules/{@aws-sdk/types/dist-es/credentials.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/abort.js} +0 -0
  1491. /package/node_modules/{@aws-sdk/types/dist-es/crypto.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js} +0 -0
  1492. /package/node_modules/{@aws-sdk/types/dist-es/encode.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js} +0 -0
  1493. /package/node_modules/{@aws-sdk/types/dist-es/eventStream.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/HttpSigner.js} +0 -0
  1494. /package/node_modules/{@aws-sdk/types/dist-es/extensions/index.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js} +0 -0
  1495. /package/node_modules/{@aws-sdk/types/dist-es/http.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js} +0 -0
  1496. /package/node_modules/{@aws-sdk/types/dist-es/identity/AnonymousIdentity.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/checksum.js} +0 -0
  1497. /package/node_modules/{@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/client.js} +0 -0
  1498. /package/node_modules/{@aws-sdk/types/dist-es/identity/Identity.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/command.js} +0 -0
  1499. /package/node_modules/{@aws-sdk/types/dist-es/identity/LoginIdentity.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/connection/config.js} +0 -0
  1500. /package/node_modules/{@aws-sdk/types/dist-es/identity/TokenIdentity.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/connection/manager.js} +0 -0
  1501. /package/node_modules/{@aws-sdk/types/dist-es/logger.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/connection/pool.js} +0 -0
  1502. /package/node_modules/{@aws-sdk/types/dist-es/middleware.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/crypto.js} +0 -0
  1503. /package/node_modules/{@aws-sdk/types/dist-es/pagination.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js} +0 -0
  1504. /package/node_modules/{@aws-sdk/types/dist-es/profile.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/encode.js} +0 -0
  1505. /package/node_modules/{@aws-sdk/types/dist-es/request.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js} +0 -0
  1506. /package/node_modules/{@aws-sdk/types/dist-es/response.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js} +0 -0
  1507. /package/node_modules/{@aws-sdk/types/dist-es/retry.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js} +0 -0
  1508. /package/node_modules/{@aws-sdk/types/dist-es/serde.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js} +0 -0
  1509. /package/node_modules/{@aws-sdk/types/dist-es/shapes.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/endpoints/shared.js} +0 -0
  1510. /package/node_modules/{@aws-sdk/types/dist-es/signature.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/eventStream.js} +0 -0
  1511. /package/node_modules/{@aws-sdk/types/dist-es/stream.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js} +0 -0
  1512. /package/node_modules/{@aws-sdk/types/dist-es/token.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/extensions/retry.js} +0 -0
  1513. /package/node_modules/{@aws-sdk/types/dist-es/uri.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js} +0 -0
  1514. /package/node_modules/{@aws-sdk/types/dist-es/util.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js} +0 -0
  1515. /package/node_modules/{@aws-sdk/types/dist-es/waiter.js → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js} +0 -0
  1516. /package/node_modules/{@aws/lsp-fqn/out/common/fqnExtractor.test.d.ts → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js} +0 -0
  1517. /package/node_modules/{@aws/lsp-fqn/out/node/aws-lsp-fqn-worker.d.ts → @smithy/node-http-handler/node_modules/@smithy/types/dist-es/identity/identity.js} +0 -0
  1518. /package/{out/language-server/chat/contexts/documentFqnExtractor.test.d.ts → node_modules/@smithy/node-http-handler/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js} +0 -0
@@ -1,74 +1,78 @@
1
- import { CodeWhispererStreamingServiceException as __BaseException } from '../models/CodeWhispererStreamingServiceException';
2
- import { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from '../models/models_0';
3
- import { HttpRequest as __HttpRequest } from '@smithy/protocol-http';
4
- import { decorateServiceException as __decorateServiceException, expectString as __expectString, _json, collectBody, map, take, withBaseException, } from '@smithy/smithy-client';
1
+ import { CodeWhispererStreamingServiceException as __BaseException } from "../models/CodeWhispererStreamingServiceException";
2
+ import { AccessDeniedException, ConflictException, DryRunOperationException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/models_0";
3
+ import { loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody, } from "@aws-sdk/core";
4
+ import { requestBuilder as rb } from "@smithy/core";
5
+ import { decorateServiceException as __decorateServiceException, expectString as __expectString, _json, collectBody, map, take, withBaseException, } from "@smithy/smithy-client";
5
6
  export const se_ExportResultArchiveCommand = async (input, context) => {
6
- const { hostname, protocol = 'https', port, path: basePath } = await context.endpoint();
7
+ const b = rb(input, context);
7
8
  const headers = {
8
9
  'content-type': 'application/json',
9
10
  };
10
- let resolvedPath = `${basePath?.endsWith('/') ? basePath.slice(0, -1) : basePath || ''}` + '/exportResultArchive';
11
+ b.bp("/exportResultArchive");
11
12
  let body;
12
13
  body = JSON.stringify(take(input, {
13
- exportContext: _ => _json(_),
14
- exportId: [],
15
- exportIntent: [],
14
+ 'exportContext': _ => _json(_),
15
+ 'exportId': [],
16
+ 'exportIntent': [],
16
17
  }));
17
- return new __HttpRequest({
18
- protocol,
19
- hostname,
20
- port,
21
- method: 'POST',
22
- headers,
23
- path: resolvedPath,
24
- body,
25
- });
18
+ b.m("POST")
19
+ .h(headers)
20
+ .b(body);
21
+ return b.build();
26
22
  };
27
23
  export const se_GenerateAssistantResponseCommand = async (input, context) => {
28
- const { hostname, protocol = 'https', port, path: basePath } = await context.endpoint();
24
+ const b = rb(input, context);
29
25
  const headers = {
30
26
  'content-type': 'application/json',
31
27
  };
32
- let resolvedPath = `${basePath?.endsWith('/') ? basePath.slice(0, -1) : basePath || ''}` + '/generateAssistantResponse';
28
+ b.bp("/generateAssistantResponse");
33
29
  let body;
34
30
  body = JSON.stringify(take(input, {
35
- conversationState: _ => _json(_),
36
- profileArn: [],
31
+ 'conversationState': _ => _json(_),
32
+ 'profileArn': [],
37
33
  }));
38
- return new __HttpRequest({
39
- protocol,
40
- hostname,
41
- port,
42
- method: 'POST',
43
- headers,
44
- path: resolvedPath,
45
- body,
46
- });
34
+ b.m("POST")
35
+ .h(headers)
36
+ .b(body);
37
+ return b.build();
47
38
  };
48
39
  export const se_GenerateTaskAssistPlanCommand = async (input, context) => {
49
- const { hostname, protocol = 'https', port, path: basePath } = await context.endpoint();
40
+ const b = rb(input, context);
50
41
  const headers = {
51
42
  'content-type': 'application/json',
52
43
  };
53
- let resolvedPath = `${basePath?.endsWith('/') ? basePath.slice(0, -1) : basePath || ''}` + '/generateTaskAssistPlan';
44
+ b.bp("/generateTaskAssistPlan");
54
45
  let body;
55
46
  body = JSON.stringify(take(input, {
56
- conversationState: _ => _json(_),
57
- workspaceState: _ => _json(_),
47
+ 'conversationState': _ => _json(_),
48
+ 'workspaceState': _ => _json(_),
58
49
  }));
59
- return new __HttpRequest({
60
- protocol,
61
- hostname,
62
- port,
63
- method: 'POST',
64
- headers,
65
- path: resolvedPath,
66
- body,
67
- });
50
+ b.m("POST")
51
+ .h(headers)
52
+ .b(body);
53
+ return b.build();
54
+ };
55
+ export const se_SendMessageCommand = async (input, context) => {
56
+ const b = rb(input, context);
57
+ const headers = {
58
+ 'content-type': 'application/json',
59
+ };
60
+ b.bp("/SendMessageStreaming");
61
+ let body;
62
+ body = JSON.stringify(take(input, {
63
+ 'conversationState': _ => _json(_),
64
+ 'dryRun': [],
65
+ 'profileArn': [],
66
+ 'source': [],
67
+ }));
68
+ b.m("POST")
69
+ .h(headers)
70
+ .b(body);
71
+ return b.build();
68
72
  };
69
73
  export const de_ExportResultArchiveCommand = async (output, context) => {
70
74
  if (output.statusCode !== 200 && output.statusCode >= 300) {
71
- return de_ExportResultArchiveCommandError(output, context);
75
+ return de_CommandError(output, context);
72
76
  }
73
77
  const contents = map({
74
78
  $metadata: deserializeMetadata(output),
@@ -77,83 +81,21 @@ export const de_ExportResultArchiveCommand = async (output, context) => {
77
81
  contents.body = de_ResultArchiveStream(data, context);
78
82
  return contents;
79
83
  };
80
- const de_ExportResultArchiveCommandError = async (output, context) => {
81
- const parsedOutput = {
82
- ...output,
83
- body: await parseErrorBody(output.body, context),
84
- };
85
- const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
86
- switch (errorCode) {
87
- case 'AccessDeniedException':
88
- case 'com.amazon.aws.codewhisperer#AccessDeniedException':
89
- throw await de_AccessDeniedExceptionRes(parsedOutput, context);
90
- case 'ConflictException':
91
- case 'com.amazon.aws.codewhisperer#ConflictException':
92
- throw await de_ConflictExceptionRes(parsedOutput, context);
93
- case 'InternalServerException':
94
- case 'com.amazon.aws.codewhisperer#InternalServerException':
95
- throw await de_InternalServerExceptionRes(parsedOutput, context);
96
- case 'ResourceNotFoundException':
97
- case 'com.amazon.aws.codewhisperer#ResourceNotFoundException':
98
- throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
99
- case 'ThrottlingException':
100
- case 'com.amazon.aws.codewhisperer#ThrottlingException':
101
- throw await de_ThrottlingExceptionRes(parsedOutput, context);
102
- case 'ValidationException':
103
- case 'com.amazon.aws.codewhisperer#ValidationException':
104
- throw await de_ValidationExceptionRes(parsedOutput, context);
105
- default:
106
- const parsedBody = parsedOutput.body;
107
- return throwDefaultError({
108
- output,
109
- parsedBody,
110
- errorCode,
111
- });
112
- }
113
- };
114
84
  export const de_GenerateAssistantResponseCommand = async (output, context) => {
115
85
  if (output.statusCode !== 200 && output.statusCode >= 300) {
116
- return de_GenerateAssistantResponseCommandError(output, context);
86
+ return de_CommandError(output, context);
117
87
  }
118
88
  const contents = map({
119
89
  $metadata: deserializeMetadata(output),
120
- conversationId: [, output.headers['x-amzn-codewhisperer-conversation-id']],
90
+ [_cI]: [, output.headers[_xacci]],
121
91
  });
122
92
  const data = output.body;
123
93
  contents.generateAssistantResponseResponse = de_ChatResponseStream(data, context);
124
94
  return contents;
125
95
  };
126
- const de_GenerateAssistantResponseCommandError = async (output, context) => {
127
- const parsedOutput = {
128
- ...output,
129
- body: await parseErrorBody(output.body, context),
130
- };
131
- const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
132
- switch (errorCode) {
133
- case 'AccessDeniedException':
134
- case 'com.amazon.aws.codewhisperer#AccessDeniedException':
135
- throw await de_AccessDeniedExceptionRes(parsedOutput, context);
136
- case 'InternalServerException':
137
- case 'com.amazon.aws.codewhisperer#InternalServerException':
138
- throw await de_InternalServerExceptionRes(parsedOutput, context);
139
- case 'ThrottlingException':
140
- case 'com.amazon.aws.codewhisperer#ThrottlingException':
141
- throw await de_ThrottlingExceptionRes(parsedOutput, context);
142
- case 'ValidationException':
143
- case 'com.amazon.aws.codewhisperer#ValidationException':
144
- throw await de_ValidationExceptionRes(parsedOutput, context);
145
- default:
146
- const parsedBody = parsedOutput.body;
147
- return throwDefaultError({
148
- output,
149
- parsedBody,
150
- errorCode,
151
- });
152
- }
153
- };
154
96
  export const de_GenerateTaskAssistPlanCommand = async (output, context) => {
155
97
  if (output.statusCode !== 200 && output.statusCode >= 300) {
156
- return de_GenerateTaskAssistPlanCommandError(output, context);
98
+ return de_CommandError(output, context);
157
99
  }
158
100
  const contents = map({
159
101
  $metadata: deserializeMetadata(output),
@@ -162,40 +104,54 @@ export const de_GenerateTaskAssistPlanCommand = async (output, context) => {
162
104
  contents.planningResponseStream = de_ChatResponseStream(data, context);
163
105
  return contents;
164
106
  };
165
- const de_GenerateTaskAssistPlanCommandError = async (output, context) => {
107
+ export const de_SendMessageCommand = async (output, context) => {
108
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
109
+ return de_CommandError(output, context);
110
+ }
111
+ const contents = map({
112
+ $metadata: deserializeMetadata(output),
113
+ });
114
+ const data = output.body;
115
+ contents.sendMessageResponse = de_ChatResponseStream(data, context);
116
+ return contents;
117
+ };
118
+ const de_CommandError = async (output, context) => {
166
119
  const parsedOutput = {
167
120
  ...output,
168
- body: await parseErrorBody(output.body, context),
121
+ body: await parseErrorBody(output.body, context)
169
122
  };
170
123
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
171
124
  switch (errorCode) {
172
- case 'AccessDeniedException':
173
- case 'com.amazon.aws.codewhisperer#AccessDeniedException':
125
+ case "AccessDeniedException":
126
+ case "com.amazon.aws.codewhisperer#AccessDeniedException":
174
127
  throw await de_AccessDeniedExceptionRes(parsedOutput, context);
175
- case 'ConflictException':
176
- case 'com.amazon.aws.codewhisperer#ConflictException':
128
+ case "ConflictException":
129
+ case "com.amazon.aws.codewhisperer#ConflictException":
177
130
  throw await de_ConflictExceptionRes(parsedOutput, context);
178
- case 'InternalServerException':
179
- case 'com.amazon.aws.codewhisperer#InternalServerException':
131
+ case "InternalServerException":
132
+ case "com.amazon.aws.codewhisperer#InternalServerException":
180
133
  throw await de_InternalServerExceptionRes(parsedOutput, context);
181
- case 'ResourceNotFoundException':
182
- case 'com.amazon.aws.codewhisperer#ResourceNotFoundException':
134
+ case "ResourceNotFoundException":
135
+ case "com.amazon.aws.codewhisperer#ResourceNotFoundException":
183
136
  throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
184
- case 'ServiceQuotaExceededException':
185
- case 'com.amazon.aws.codewhisperer#ServiceQuotaExceededException':
186
- throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context);
187
- case 'ThrottlingException':
188
- case 'com.amazon.aws.codewhisperer#ThrottlingException':
137
+ case "ThrottlingException":
138
+ case "com.amazon.aws.codewhisperer#ThrottlingException":
189
139
  throw await de_ThrottlingExceptionRes(parsedOutput, context);
190
- case 'ValidationException':
191
- case 'com.amazon.aws.codewhisperer#ValidationException':
140
+ case "ValidationException":
141
+ case "com.amazon.aws.codewhisperer#ValidationException":
192
142
  throw await de_ValidationExceptionRes(parsedOutput, context);
143
+ case "ServiceQuotaExceededException":
144
+ case "com.amazon.aws.codewhisperer#ServiceQuotaExceededException":
145
+ throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context);
146
+ case "DryRunOperationException":
147
+ case "com.amazon.aws.codewhisperer#DryRunOperationException":
148
+ throw await de_DryRunOperationExceptionRes(parsedOutput, context);
193
149
  default:
194
150
  const parsedBody = parsedOutput.body;
195
151
  return throwDefaultError({
196
152
  output,
197
153
  parsedBody,
198
- errorCode,
154
+ errorCode
199
155
  });
200
156
  }
201
157
  };
@@ -204,13 +160,13 @@ const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
204
160
  const contents = map({});
205
161
  const data = parsedOutput.body;
206
162
  const doc = take(data, {
207
- message: __expectString,
208
- reason: __expectString,
163
+ 'message': __expectString,
164
+ 'reason': __expectString,
209
165
  });
210
166
  Object.assign(contents, doc);
211
167
  const exception = new AccessDeniedException({
212
168
  $metadata: deserializeMetadata(parsedOutput),
213
- ...contents,
169
+ ...contents
214
170
  });
215
171
  return __decorateServiceException(exception, parsedOutput.body);
216
172
  };
@@ -218,12 +174,26 @@ const de_ConflictExceptionRes = async (parsedOutput, context) => {
218
174
  const contents = map({});
219
175
  const data = parsedOutput.body;
220
176
  const doc = take(data, {
221
- message: __expectString,
177
+ 'message': __expectString,
178
+ 'reason': __expectString,
222
179
  });
223
180
  Object.assign(contents, doc);
224
181
  const exception = new ConflictException({
225
182
  $metadata: deserializeMetadata(parsedOutput),
226
- ...contents,
183
+ ...contents
184
+ });
185
+ return __decorateServiceException(exception, parsedOutput.body);
186
+ };
187
+ const de_DryRunOperationExceptionRes = async (parsedOutput, context) => {
188
+ const contents = map({});
189
+ const data = parsedOutput.body;
190
+ const doc = take(data, {
191
+ 'message': __expectString,
192
+ });
193
+ Object.assign(contents, doc);
194
+ const exception = new DryRunOperationException({
195
+ $metadata: deserializeMetadata(parsedOutput),
196
+ ...contents
227
197
  });
228
198
  return __decorateServiceException(exception, parsedOutput.body);
229
199
  };
@@ -231,12 +201,12 @@ const de_InternalServerExceptionRes = async (parsedOutput, context) => {
231
201
  const contents = map({});
232
202
  const data = parsedOutput.body;
233
203
  const doc = take(data, {
234
- message: __expectString,
204
+ 'message': __expectString,
235
205
  });
236
206
  Object.assign(contents, doc);
237
207
  const exception = new InternalServerException({
238
208
  $metadata: deserializeMetadata(parsedOutput),
239
- ...contents,
209
+ ...contents
240
210
  });
241
211
  return __decorateServiceException(exception, parsedOutput.body);
242
212
  };
@@ -244,12 +214,12 @@ const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
244
214
  const contents = map({});
245
215
  const data = parsedOutput.body;
246
216
  const doc = take(data, {
247
- message: __expectString,
217
+ 'message': __expectString,
248
218
  });
249
219
  Object.assign(contents, doc);
250
220
  const exception = new ResourceNotFoundException({
251
221
  $metadata: deserializeMetadata(parsedOutput),
252
- ...contents,
222
+ ...contents
253
223
  });
254
224
  return __decorateServiceException(exception, parsedOutput.body);
255
225
  };
@@ -257,12 +227,12 @@ const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
257
227
  const contents = map({});
258
228
  const data = parsedOutput.body;
259
229
  const doc = take(data, {
260
- message: __expectString,
230
+ 'message': __expectString,
261
231
  });
262
232
  Object.assign(contents, doc);
263
233
  const exception = new ServiceQuotaExceededException({
264
234
  $metadata: deserializeMetadata(parsedOutput),
265
- ...contents,
235
+ ...contents
266
236
  });
267
237
  return __decorateServiceException(exception, parsedOutput.body);
268
238
  };
@@ -270,12 +240,12 @@ const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
270
240
  const contents = map({});
271
241
  const data = parsedOutput.body;
272
242
  const doc = take(data, {
273
- message: __expectString,
243
+ 'message': __expectString,
274
244
  });
275
245
  Object.assign(contents, doc);
276
246
  const exception = new ThrottlingException({
277
247
  $metadata: deserializeMetadata(parsedOutput),
278
- ...contents,
248
+ ...contents
279
249
  });
280
250
  return __decorateServiceException(exception, parsedOutput.body);
281
251
  };
@@ -283,51 +253,71 @@ const de_ValidationExceptionRes = async (parsedOutput, context) => {
283
253
  const contents = map({});
284
254
  const data = parsedOutput.body;
285
255
  const doc = take(data, {
286
- message: __expectString,
287
- reason: __expectString,
256
+ 'message': __expectString,
257
+ 'reason': __expectString,
288
258
  });
289
259
  Object.assign(contents, doc);
290
260
  const exception = new ValidationException({
291
261
  $metadata: deserializeMetadata(parsedOutput),
292
- ...contents,
262
+ ...contents
293
263
  });
294
264
  return __decorateServiceException(exception, parsedOutput.body);
295
265
  };
296
266
  const de_ChatResponseStream = (output, context) => {
297
267
  return context.eventStreamMarshaller.deserialize(output, async (event) => {
298
- if (event['messageMetadataEvent'] != null) {
268
+ if (event["messageMetadataEvent"] != null) {
269
+ return {
270
+ messageMetadataEvent: await de_MessageMetadataEvent_event(event["messageMetadataEvent"], context),
271
+ };
272
+ }
273
+ if (event["assistantResponseEvent"] != null) {
274
+ return {
275
+ assistantResponseEvent: await de_AssistantResponseEvent_event(event["assistantResponseEvent"], context),
276
+ };
277
+ }
278
+ if (event["dryRunSucceedEvent"] != null) {
279
+ return {
280
+ dryRunSucceedEvent: await de_DryRunSucceedEvent_event(event["dryRunSucceedEvent"], context),
281
+ };
282
+ }
283
+ if (event["codeReferenceEvent"] != null) {
299
284
  return {
300
- messageMetadataEvent: await de_MessageMetadataEvent_event(event['messageMetadataEvent'], context),
285
+ codeReferenceEvent: await de_CodeReferenceEvent_event(event["codeReferenceEvent"], context),
301
286
  };
302
287
  }
303
- if (event['assistantResponseEvent'] != null) {
288
+ if (event["supplementaryWebLinksEvent"] != null) {
304
289
  return {
305
- assistantResponseEvent: await de_AssistantResponseEvent_event(event['assistantResponseEvent'], context),
290
+ supplementaryWebLinksEvent: await de_SupplementaryWebLinksEvent_event(event["supplementaryWebLinksEvent"], context),
306
291
  };
307
292
  }
308
- if (event['codeReferenceEvent'] != null) {
293
+ if (event["followupPromptEvent"] != null) {
309
294
  return {
310
- codeReferenceEvent: await de_CodeReferenceEvent_event(event['codeReferenceEvent'], context),
295
+ followupPromptEvent: await de_FollowupPromptEvent_event(event["followupPromptEvent"], context),
311
296
  };
312
297
  }
313
- if (event['supplementaryWebLinksEvent'] != null) {
298
+ if (event["codeEvent"] != null) {
314
299
  return {
315
- supplementaryWebLinksEvent: await de_SupplementaryWebLinksEvent_event(event['supplementaryWebLinksEvent'], context),
300
+ codeEvent: await de_CodeEvent_event(event["codeEvent"], context),
316
301
  };
317
302
  }
318
- if (event['followupPromptEvent'] != null) {
303
+ if (event["intentsEvent"] != null) {
319
304
  return {
320
- followupPromptEvent: await de_FollowupPromptEvent_event(event['followupPromptEvent'], context),
305
+ intentsEvent: await de_IntentsEvent_event(event["intentsEvent"], context),
321
306
  };
322
307
  }
323
- if (event['invalidStateEvent'] != null) {
308
+ if (event["interactionComponentsEvent"] != null) {
324
309
  return {
325
- invalidStateEvent: await de_InvalidStateEvent_event(event['invalidStateEvent'], context),
310
+ interactionComponentsEvent: await de_InteractionComponentsEvent_event(event["interactionComponentsEvent"], context),
326
311
  };
327
312
  }
328
- if (event['error'] != null) {
313
+ if (event["invalidStateEvent"] != null) {
329
314
  return {
330
- error: await de_InternalServerException_event(event['error'], context),
315
+ invalidStateEvent: await de_InvalidStateEvent_event(event["invalidStateEvent"], context),
316
+ };
317
+ }
318
+ if (event["error"] != null) {
319
+ return {
320
+ error: await de_InternalServerException_event(event["error"], context),
331
321
  };
332
322
  }
333
323
  return { $unknown: output };
@@ -335,19 +325,19 @@ const de_ChatResponseStream = (output, context) => {
335
325
  };
336
326
  const de_ResultArchiveStream = (output, context) => {
337
327
  return context.eventStreamMarshaller.deserialize(output, async (event) => {
338
- if (event['binaryMetadataEvent'] != null) {
328
+ if (event["binaryMetadataEvent"] != null) {
339
329
  return {
340
- binaryMetadataEvent: await de_BinaryMetadataEvent_event(event['binaryMetadataEvent'], context),
330
+ binaryMetadataEvent: await de_BinaryMetadataEvent_event(event["binaryMetadataEvent"], context),
341
331
  };
342
332
  }
343
- if (event['binaryPayloadEvent'] != null) {
333
+ if (event["binaryPayloadEvent"] != null) {
344
334
  return {
345
- binaryPayloadEvent: await de_BinaryPayloadEvent_event(event['binaryPayloadEvent'], context),
335
+ binaryPayloadEvent: await de_BinaryPayloadEvent_event(event["binaryPayloadEvent"], context),
346
336
  };
347
337
  }
348
- if (event['internalServerException'] != null) {
338
+ if (event["internalServerException"] != null) {
349
339
  return {
350
- internalServerException: await de_InternalServerException_event(event['internalServerException'], context),
340
+ internalServerException: await de_InternalServerException_event(event["internalServerException"], context),
351
341
  };
352
342
  }
353
343
  return { $unknown: output };
@@ -371,22 +361,40 @@ const de_BinaryPayloadEvent_event = async (output, context) => {
371
361
  Object.assign(contents, de_BinaryPayloadEvent(data, context));
372
362
  return contents;
373
363
  };
364
+ const de_CodeEvent_event = async (output, context) => {
365
+ const contents = {};
366
+ const data = await parseBody(output.body, context);
367
+ Object.assign(contents, _json(data));
368
+ return contents;
369
+ };
374
370
  const de_CodeReferenceEvent_event = async (output, context) => {
375
371
  const contents = {};
376
372
  const data = await parseBody(output.body, context);
377
373
  Object.assign(contents, _json(data));
378
374
  return contents;
379
375
  };
376
+ const de_DryRunSucceedEvent_event = async (output, context) => {
377
+ const contents = {};
378
+ const data = await parseBody(output.body, context);
379
+ Object.assign(contents, _json(data));
380
+ return contents;
381
+ };
380
382
  const de_FollowupPromptEvent_event = async (output, context) => {
381
383
  const contents = {};
382
384
  const data = await parseBody(output.body, context);
383
385
  Object.assign(contents, _json(data));
384
386
  return contents;
385
387
  };
388
+ const de_IntentsEvent_event = async (output, context) => {
389
+ const contents = {};
390
+ const data = await parseBody(output.body, context);
391
+ Object.assign(contents, _json(data));
392
+ return contents;
393
+ };
386
394
  const de_InternalServerException_event = async (output, context) => {
387
395
  const parsedOutput = {
388
396
  ...output,
389
- body: await parseBody(output.body, context),
397
+ body: await parseBody(output.body, context)
390
398
  };
391
399
  return de_InternalServerExceptionRes(parsedOutput, context);
392
400
  };
@@ -408,60 +416,56 @@ const de_SupplementaryWebLinksEvent_event = async (output, context) => {
408
416
  Object.assign(contents, _json(data));
409
417
  return contents;
410
418
  };
419
+ const de_InteractionComponentsEvent_event = async (output, context) => {
420
+ const contents = {};
421
+ const data = await parseBody(output.body, context);
422
+ Object.assign(contents, de_InteractionComponentsEvent(data, context));
423
+ return contents;
424
+ };
411
425
  const de_BinaryPayloadEvent = (output, context) => {
412
426
  return take(output, {
413
- bytes: context.base64Decoder,
427
+ 'bytes': context.base64Decoder,
414
428
  });
415
429
  };
430
+ const de_InteractionComponentsEvent = (output, context) => {
431
+ return take(output, {
432
+ 'interactionComponentEntries': (_) => de_InteractionComponentEntryList(_, context),
433
+ });
434
+ };
435
+ const de_InteractionComponent = (output, context) => {
436
+ return take(output, {
437
+ 'action': _json,
438
+ 'alert': _json,
439
+ 'infrastructureUpdate': _json,
440
+ 'progress': _json,
441
+ 'resource': _json,
442
+ 'resourceList': _json,
443
+ 'section': _json,
444
+ 'step': _json,
445
+ 'suggestions': _json,
446
+ 'taskDetails': _json,
447
+ 'taskReference': _json,
448
+ 'text': _json,
449
+ });
450
+ };
451
+ const de_InteractionComponentEntry = (output, context) => {
452
+ return take(output, {
453
+ 'interactionComponent': (_) => de_InteractionComponent(_, context),
454
+ 'interactionComponentId': __expectString,
455
+ });
456
+ };
457
+ const de_InteractionComponentEntryList = (output, context) => {
458
+ const retVal = (output || []).filter((e) => e != null).map((entry) => {
459
+ return de_InteractionComponentEntry(entry, context);
460
+ });
461
+ return retVal;
462
+ };
416
463
  const deserializeMetadata = (output) => ({
417
464
  httpStatusCode: output.statusCode,
418
- requestId: output.headers['x-amzn-requestid'] ?? output.headers['x-amzn-request-id'] ?? output.headers['x-amz-request-id'],
419
- extendedRequestId: output.headers['x-amz-id-2'],
420
- cfId: output.headers['x-amz-cf-id'],
465
+ requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
466
+ extendedRequestId: output.headers["x-amz-id-2"],
467
+ cfId: output.headers["x-amz-cf-id"],
421
468
  });
422
469
  const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then(body => context.utf8Encoder(body));
423
- const isSerializableHeaderValue = (value) => value !== undefined &&
424
- value !== null &&
425
- value !== '' &&
426
- (!Object.getOwnPropertyNames(value).includes('length') || value.length != 0) &&
427
- (!Object.getOwnPropertyNames(value).includes('size') || value.size != 0);
428
- const parseBody = (streamBody, context) => collectBodyString(streamBody, context).then(encoded => {
429
- if (encoded.length) {
430
- return JSON.parse(encoded);
431
- }
432
- return {};
433
- });
434
- const parseErrorBody = async (errorBody, context) => {
435
- const value = await parseBody(errorBody, context);
436
- value.message = value.message ?? value.Message;
437
- return value;
438
- };
439
- const loadRestJsonErrorCode = (output, data) => {
440
- const findKey = (object, key) => Object.keys(object).find(k => k.toLowerCase() === key.toLowerCase());
441
- const sanitizeErrorCode = (rawValue) => {
442
- let cleanValue = rawValue;
443
- if (typeof cleanValue === 'number') {
444
- cleanValue = cleanValue.toString();
445
- }
446
- if (cleanValue.indexOf(',') >= 0) {
447
- cleanValue = cleanValue.split(',')[0];
448
- }
449
- if (cleanValue.indexOf(':') >= 0) {
450
- cleanValue = cleanValue.split(':')[0];
451
- }
452
- if (cleanValue.indexOf('#') >= 0) {
453
- cleanValue = cleanValue.split('#')[1];
454
- }
455
- return cleanValue;
456
- };
457
- const headerKey = findKey(output.headers, 'x-amzn-errortype');
458
- if (headerKey !== undefined) {
459
- return sanitizeErrorCode(output.headers[headerKey]);
460
- }
461
- if (data.code !== undefined) {
462
- return sanitizeErrorCode(data.code);
463
- }
464
- if (data['__type'] !== undefined) {
465
- return sanitizeErrorCode(data['__type']);
466
- }
467
- };
470
+ const _cI = "conversationId";
471
+ const _xacci = "x-amzn-codewhisperer-conversation-id";