@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,5 +1,5 @@
1
- import { CodeWhispererStreamingServiceException as __BaseException } from './CodeWhispererStreamingServiceException';
2
- import { ExceptionOptionType as __ExceptionOptionType } from '@smithy/smithy-client';
1
+ import { CodeWhispererStreamingServiceException as __BaseException } from "./CodeWhispererStreamingServiceException";
2
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
3
3
  /**
4
4
  * @public
5
5
  * @enum
@@ -10,31 +10,31 @@ export declare const AccessDeniedExceptionReason: {
10
10
  /**
11
11
  * @public
12
12
  */
13
- export type AccessDeniedExceptionReason = (typeof AccessDeniedExceptionReason)[keyof typeof AccessDeniedExceptionReason];
13
+ export type AccessDeniedExceptionReason = typeof AccessDeniedExceptionReason[keyof typeof AccessDeniedExceptionReason];
14
14
  /**
15
- * @public
16
15
  * This exception is thrown when the user does not have sufficient access to perform this action.
16
+ * @public
17
17
  */
18
18
  export declare class AccessDeniedException extends __BaseException {
19
- readonly name: 'AccessDeniedException';
20
- readonly $fault: 'client';
19
+ readonly name: "AccessDeniedException";
20
+ readonly $fault: "client";
21
21
  /**
22
- * @public
23
22
  * Reason for AccessDeniedException
23
+ * @public
24
24
  */
25
- reason?: AccessDeniedExceptionReason | string;
25
+ reason?: AccessDeniedExceptionReason;
26
26
  /**
27
27
  * @internal
28
28
  */
29
29
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
30
30
  }
31
31
  /**
32
- * @public
33
32
  * This exception is thrown when an unexpected error occurred during the processing of a request.
33
+ * @public
34
34
  */
35
35
  export declare class InternalServerException extends __BaseException {
36
- readonly name: 'InternalServerException';
37
- readonly $fault: 'server';
36
+ readonly name: "InternalServerException";
37
+ readonly $fault: "server";
38
38
  $retryable: {};
39
39
  /**
40
40
  * @internal
@@ -42,24 +42,24 @@ export declare class InternalServerException extends __BaseException {
42
42
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
43
43
  }
44
44
  /**
45
- * @public
46
45
  * This exception is thrown when describing a resource that does not exist.
46
+ * @public
47
47
  */
48
48
  export declare class ResourceNotFoundException extends __BaseException {
49
- readonly name: 'ResourceNotFoundException';
50
- readonly $fault: 'client';
49
+ readonly name: "ResourceNotFoundException";
50
+ readonly $fault: "client";
51
51
  /**
52
52
  * @internal
53
53
  */
54
54
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
55
55
  }
56
56
  /**
57
- * @public
58
57
  * This exception is thrown when request was denied due to request throttling.
58
+ * @public
59
59
  */
60
60
  export declare class ThrottlingException extends __BaseException {
61
- readonly name: 'ThrottlingException';
62
- readonly $fault: 'client';
61
+ readonly name: "ThrottlingException";
62
+ readonly $fault: "client";
63
63
  $retryable: {
64
64
  throttling: boolean;
65
65
  };
@@ -75,51 +75,52 @@ export declare class ThrottlingException extends __BaseException {
75
75
  export declare const ValidationExceptionReason: {
76
76
  readonly CONTENT_LENGTH_EXCEEDS_THRESHOLD: "CONTENT_LENGTH_EXCEEDS_THRESHOLD";
77
77
  readonly INVALID_CONVERSATION_ID: "INVALID_CONVERSATION_ID";
78
+ readonly INVALID_KMS_GRANT: "INVALID_KMS_GRANT";
78
79
  };
79
80
  /**
80
81
  * @public
81
82
  */
82
- export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
83
+ export type ValidationExceptionReason = typeof ValidationExceptionReason[keyof typeof ValidationExceptionReason];
83
84
  /**
84
- * @public
85
85
  * This exception is thrown when the input fails to satisfy the constraints specified by the service.
86
+ * @public
86
87
  */
87
88
  export declare class ValidationException extends __BaseException {
88
- readonly name: 'ValidationException';
89
- readonly $fault: 'client';
89
+ readonly name: "ValidationException";
90
+ readonly $fault: "client";
90
91
  /**
91
- * @public
92
92
  * Reason for ValidationException
93
+ * @public
93
94
  */
94
- reason?: ValidationExceptionReason | string;
95
+ reason?: ValidationExceptionReason;
95
96
  /**
96
97
  * @internal
97
98
  */
98
99
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
99
100
  }
100
101
  /**
101
- * @public
102
102
  * Description of a user's context when they are calling Q Chat from AppStudio
103
+ * @public
103
104
  */
104
105
  export interface AppStudioState {
105
106
  /**
106
- * @public
107
107
  * The namespace of the context. Examples: 'ui.Button', 'ui.Table.DataSource', 'ui.Table.RowActions.Button', 'logic.invokeAWS', 'logic.JavaScript'
108
+ * @public
108
109
  */
109
110
  namespace: string | undefined;
110
111
  /**
111
- * @public
112
112
  * The name of the property. Examples: 'visibility', 'disability', 'value', 'code'
113
+ * @public
113
114
  */
114
115
  propertyName: string | undefined;
115
116
  /**
116
- * @public
117
117
  * The value of the property.
118
+ * @public
118
119
  */
119
120
  propertyValue?: string;
120
121
  /**
121
- * @public
122
122
  * Context about how the property is used
123
+ * @public
123
124
  */
124
125
  propertyContext: string | undefined;
125
126
  }
@@ -128,13 +129,13 @@ export interface AppStudioState {
128
129
  */
129
130
  export declare const AppStudioStateFilterSensitiveLog: (obj: AppStudioState) => any;
130
131
  /**
131
- * @public
132
132
  * Streaming Response Event for Assistant Markdown text message.
133
+ * @public
133
134
  */
134
135
  export interface AssistantResponseEvent {
135
136
  /**
136
- * @public
137
137
  * The content of the text message in markdown format.
138
+ * @public
138
139
  */
139
140
  content: string | undefined;
140
141
  }
@@ -155,6 +156,10 @@ export declare const UserIntent: {
155
156
  * Cite Sources
156
157
  */
157
158
  readonly CITE_SOURCES: "CITE_SOURCES";
159
+ /**
160
+ * generate code
161
+ */
162
+ readonly CODE_GENERATION: "CODE_GENERATION";
158
163
  /**
159
164
  * Explain Code Selection
160
165
  */
@@ -163,6 +168,14 @@ export declare const UserIntent: {
163
168
  * Explain Code Line By Line
164
169
  */
165
170
  readonly EXPLAIN_LINE_BY_LINE: "EXPLAIN_LINE_BY_LINE";
171
+ /**
172
+ * Generate CloudFormation Template
173
+ */
174
+ readonly GENERATE_CLOUDFORMATION_TEMPLATE: "GENERATE_CLOUDFORMATION_TEMPLATE";
175
+ /**
176
+ * Generate Unit Tests
177
+ */
178
+ readonly GENERATE_UNIT_TESTS: "GENERATE_UNIT_TESTS";
166
179
  /**
167
180
  * Improve Code
168
181
  */
@@ -179,79 +192,79 @@ export declare const UserIntent: {
179
192
  /**
180
193
  * @public
181
194
  */
182
- export type UserIntent = (typeof UserIntent)[keyof typeof UserIntent];
195
+ export type UserIntent = typeof UserIntent[keyof typeof UserIntent];
183
196
  /**
184
- * @public
185
197
  * Followup Prompt for the Assistant Response
198
+ * @public
186
199
  */
187
200
  export interface FollowupPrompt {
188
201
  /**
189
- * @public
190
202
  * The content of the text message in markdown format.
203
+ * @public
191
204
  */
192
205
  content: string | undefined;
193
206
  /**
194
- * @public
195
207
  * User Intent
208
+ * @public
196
209
  */
197
- userIntent?: UserIntent | string;
210
+ userIntent?: UserIntent;
198
211
  }
199
212
  /**
200
213
  * @internal
201
214
  */
202
215
  export declare const FollowupPromptFilterSensitiveLog: (obj: FollowupPrompt) => any;
203
216
  /**
204
- * @public
205
217
  * Represents span in a text
218
+ * @public
206
219
  */
207
220
  export interface Span {
208
221
  start?: number;
209
222
  end?: number;
210
223
  }
211
224
  /**
212
- * @public
213
225
  * Code Reference / Repository details
226
+ * @public
214
227
  */
215
228
  export interface Reference {
216
229
  /**
217
- * @public
218
230
  * License name
231
+ * @public
219
232
  */
220
233
  licenseName?: string;
221
234
  /**
222
- * @public
223
235
  * Code Repsitory for the associated reference
236
+ * @public
224
237
  */
225
238
  repository?: string;
226
239
  /**
227
- * @public
228
240
  * Respository URL
241
+ * @public
229
242
  */
230
243
  url?: string;
231
244
  /**
232
- * @public
233
245
  * Span / Range for the Reference
246
+ * @public
234
247
  */
235
248
  recommendationContentSpan?: Span;
236
249
  }
237
250
  /**
238
- * @public
239
251
  * Represents an additional reference link retured with the Chat message
252
+ * @public
240
253
  */
241
254
  export interface SupplementaryWebLink {
242
255
  /**
243
- * @public
244
256
  * URL of the web reference link
257
+ * @public
245
258
  */
246
259
  url: string | undefined;
247
260
  /**
248
- * @public
249
261
  * Title of the web reference link
262
+ * @public
250
263
  */
251
264
  title: string | undefined;
252
265
  /**
253
- * @public
254
266
  * Relevant text snippet from the link
267
+ * @public
255
268
  */
256
269
  snippet?: string;
257
270
  }
@@ -260,33 +273,33 @@ export interface SupplementaryWebLink {
260
273
  */
261
274
  export declare const SupplementaryWebLinkFilterSensitiveLog: (obj: SupplementaryWebLink) => any;
262
275
  /**
263
- * @public
264
276
  * Markdown text message.
277
+ * @public
265
278
  */
266
279
  export interface AssistantResponseMessage {
267
280
  /**
268
- * @public
269
281
  * Unique identifier for the chat message
282
+ * @public
270
283
  */
271
284
  messageId?: string;
272
285
  /**
273
- * @public
274
286
  * The content of the text message in markdown format.
287
+ * @public
275
288
  */
276
289
  content: string | undefined;
277
290
  /**
278
- * @public
279
291
  * Web References
292
+ * @public
280
293
  */
281
- supplementaryWebLinks?: SupplementaryWebLink[];
294
+ supplementaryWebLinks?: (SupplementaryWebLink)[];
282
295
  /**
283
- * @public
284
296
  * Code References
297
+ * @public
285
298
  */
286
- references?: Reference[];
299
+ references?: (Reference)[];
287
300
  /**
288
- * @public
289
301
  * Followup Prompt
302
+ * @public
290
303
  */
291
304
  followupPrompt?: FollowupPrompt;
292
305
  }
@@ -296,19 +309,37 @@ export interface AssistantResponseMessage {
296
309
  export declare const AssistantResponseMessageFilterSensitiveLog: (obj: AssistantResponseMessage) => any;
297
310
  /**
298
311
  * @public
312
+ * @enum
313
+ */
314
+ export declare const ConflictExceptionReason: {
315
+ readonly CUSTOMER_KMS_KEY_DISABLED: "CUSTOMER_KMS_KEY_DISABLED";
316
+ readonly CUSTOMER_KMS_KEY_INVALID_KEY_POLICY: "CUSTOMER_KMS_KEY_INVALID_KEY_POLICY";
317
+ readonly MISMATCHED_KMS_KEY: "MISMATCHED_KMS_KEY";
318
+ };
319
+ /**
320
+ * @public
321
+ */
322
+ export type ConflictExceptionReason = typeof ConflictExceptionReason[keyof typeof ConflictExceptionReason];
323
+ /**
299
324
  * This exception is thrown when the action to perform could not be completed because the resource is in a conflicting state.
325
+ * @public
300
326
  */
301
327
  export declare class ConflictException extends __BaseException {
302
- readonly name: 'ConflictException';
303
- readonly $fault: 'client';
328
+ readonly name: "ConflictException";
329
+ readonly $fault: "client";
330
+ /**
331
+ * Reason for ConflictException
332
+ * @public
333
+ */
334
+ reason?: ConflictExceptionReason;
304
335
  /**
305
336
  * @internal
306
337
  */
307
338
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
308
339
  }
309
340
  /**
310
- * @public
311
341
  * Programming Languages supported by CodeWhisperer
342
+ * @public
312
343
  */
313
344
  export interface ProgrammingLanguage {
314
345
  languageName: string | undefined;
@@ -323,45 +354,45 @@ export declare const ContentChecksumType: {
323
354
  /**
324
355
  * @public
325
356
  */
326
- export type ContentChecksumType = (typeof ContentChecksumType)[keyof typeof ContentChecksumType];
357
+ export type ContentChecksumType = typeof ContentChecksumType[keyof typeof ContentChecksumType];
327
358
  /**
328
- * @public
329
359
  * Payload Part
360
+ * @public
330
361
  */
331
362
  export interface BinaryMetadataEvent {
332
363
  /**
333
- * @public
334
364
  * Content length of the binary payload
365
+ * @public
335
366
  */
336
367
  size?: number;
337
368
  /**
338
- * @public
339
369
  * Content type of the response
370
+ * @public
340
371
  */
341
372
  mimeType?: string;
342
373
  /**
343
- * @public
344
374
  * Content checksum of the binary payload
375
+ * @public
345
376
  */
346
377
  contentChecksum?: string;
347
378
  /**
348
- * @public
349
379
  * Content checksum type of the binary payload
380
+ * @public
350
381
  */
351
- contentChecksumType?: ContentChecksumType | string;
382
+ contentChecksumType?: ContentChecksumType;
352
383
  }
353
384
  /**
354
385
  * @internal
355
386
  */
356
387
  export declare const BinaryMetadataEventFilterSensitiveLog: (obj: BinaryMetadataEvent) => any;
357
388
  /**
358
- * @public
359
389
  * Payload Part
390
+ * @public
360
391
  */
361
392
  export interface BinaryPayloadEvent {
362
393
  /**
363
- * @public
364
394
  * Payload Part's body
395
+ * @public
365
396
  */
366
397
  bytes?: Uint8Array;
367
398
  }
@@ -369,6 +400,22 @@ export interface BinaryPayloadEvent {
369
400
  * @internal
370
401
  */
371
402
  export declare const BinaryPayloadEventFilterSensitiveLog: (obj: BinaryPayloadEvent) => any;
403
+ /**
404
+ * Information about the state of the AWS management console page from which the user is calling
405
+ * @public
406
+ */
407
+ export interface ConsoleState {
408
+ region?: string;
409
+ consoleUrl?: string;
410
+ serviceId?: string;
411
+ serviceConsolePage?: string;
412
+ serviceSubconsolePage?: string;
413
+ taskName?: string;
414
+ }
415
+ /**
416
+ * @internal
417
+ */
418
+ export declare const ConsoleStateFilterSensitiveLog: (obj: ConsoleState) => any;
372
419
  /**
373
420
  * @public
374
421
  * @enum
@@ -382,25 +429,25 @@ export declare const DiagnosticSeverity: {
382
429
  /**
383
430
  * @public
384
431
  */
385
- export type DiagnosticSeverity = (typeof DiagnosticSeverity)[keyof typeof DiagnosticSeverity];
432
+ export type DiagnosticSeverity = typeof DiagnosticSeverity[keyof typeof DiagnosticSeverity];
386
433
  /**
387
- * @public
388
434
  * Structure to represent metadata about a Runtime Diagnostics
435
+ * @public
389
436
  */
390
437
  export interface RuntimeDiagnostic {
391
438
  /**
392
- * @public
393
439
  * A human-readable string describing the source of the diagnostic
440
+ * @public
394
441
  */
395
442
  source: string | undefined;
396
443
  /**
397
- * @public
398
444
  * Diagnostic Error type
445
+ * @public
399
446
  */
400
- severity: DiagnosticSeverity | string | undefined;
447
+ severity: DiagnosticSeverity | undefined;
401
448
  /**
402
- * @public
403
449
  * The diagnostic's message.
450
+ * @public
404
451
  */
405
452
  message: string | undefined;
406
453
  }
@@ -419,117 +466,117 @@ export declare const SymbolType: {
419
466
  /**
420
467
  * @public
421
468
  */
422
- export type SymbolType = (typeof SymbolType)[keyof typeof SymbolType];
469
+ export type SymbolType = typeof SymbolType[keyof typeof SymbolType];
423
470
  /**
424
471
  * @public
425
472
  */
426
473
  export interface DocumentSymbol {
427
474
  /**
428
- * @public
429
475
  * Name of the Document Symbol
476
+ * @public
430
477
  */
431
478
  name: string | undefined;
432
479
  /**
433
- * @public
434
480
  * Symbol type - DECLARATION / USAGE
481
+ * @public
435
482
  */
436
- type: SymbolType | string | undefined;
483
+ type: SymbolType | undefined;
437
484
  /**
438
- * @public
439
485
  * Symbol package / source for FullyQualified names
486
+ * @public
440
487
  */
441
488
  source?: string;
442
489
  }
443
490
  /**
444
- * @public
445
491
  * Represents a Text Document / File
492
+ * @public
446
493
  */
447
494
  export interface TextDocument {
448
495
  /**
449
- * @public
450
496
  * Filepath relative to the root of the workspace
497
+ * @public
451
498
  */
452
499
  relativeFilePath: string | undefined;
453
500
  /**
454
- * @public
455
501
  * The text document's language identifier.
502
+ * @public
456
503
  */
457
504
  programmingLanguage?: ProgrammingLanguage;
458
505
  /**
459
- * @public
460
506
  * Content of the text document
507
+ * @public
461
508
  */
462
509
  text?: string;
463
510
  /**
464
- * @public
465
511
  * DocumentSymbols parsed from a text document
512
+ * @public
466
513
  */
467
- documentSymbols?: DocumentSymbol[];
514
+ documentSymbols?: (DocumentSymbol)[];
468
515
  }
469
516
  /**
470
517
  * @internal
471
518
  */
472
519
  export declare const TextDocumentFilterSensitiveLog: (obj: TextDocument) => any;
473
520
  /**
474
- * @public
475
521
  * Indicates Cursor postion in a Text Document
522
+ * @public
476
523
  */
477
524
  export interface Position {
478
525
  /**
479
- * @public
480
526
  * Line position in a document.
527
+ * @public
481
528
  */
482
529
  line: number | undefined;
483
530
  /**
484
- * @public
485
531
  * Character offset on a line in a document (zero-based)
532
+ * @public
486
533
  */
487
534
  character: number | undefined;
488
535
  }
489
536
  /**
490
- * @public
491
537
  * Indicates Range / Span in a Text Document
538
+ * @public
492
539
  */
493
540
  export interface Range {
494
541
  /**
495
- * @public
496
542
  * The range's start position.
543
+ * @public
497
544
  */
498
545
  start: Position | undefined;
499
546
  /**
500
- * @public
501
547
  * The range's end position.
548
+ * @public
502
549
  */
503
550
  end: Position | undefined;
504
551
  }
505
552
  /**
506
- * @public
507
553
  * Structure to represent metadata about a TextDocument Diagnostic
554
+ * @public
508
555
  */
509
556
  export interface TextDocumentDiagnostic {
510
557
  /**
511
- * @public
512
558
  * Represents a Text Document associated with Diagnostic
559
+ * @public
513
560
  */
514
561
  document: TextDocument | undefined;
515
562
  /**
516
- * @public
517
563
  * The range at which the message applies.
564
+ * @public
518
565
  */
519
566
  range: Range | undefined;
520
567
  /**
521
- * @public
522
568
  * A human-readable string describing the source of the diagnostic
569
+ * @public
523
570
  */
524
571
  source: string | undefined;
525
572
  /**
526
- * @public
527
573
  * Diagnostic Error type
574
+ * @public
528
575
  */
529
- severity: DiagnosticSeverity | string | undefined;
576
+ severity: DiagnosticSeverity | undefined;
530
577
  /**
531
- * @public
532
578
  * The diagnostic's message.
579
+ * @public
533
580
  */
534
581
  message: string | undefined;
535
582
  }
@@ -538,8 +585,8 @@ export interface TextDocumentDiagnostic {
538
585
  */
539
586
  export declare const TextDocumentDiagnosticFilterSensitiveLog: (obj: TextDocumentDiagnostic) => any;
540
587
  /**
541
- * @public
542
588
  * Represents a Diagnostic message
589
+ * @public
543
590
  */
544
591
  export type Diagnostic = Diagnostic.RuntimeDiagnosticMember | Diagnostic.TextDocumentDiagnosticMember | Diagnostic.$UnknownMember;
545
592
  /**
@@ -547,8 +594,8 @@ export type Diagnostic = Diagnostic.RuntimeDiagnosticMember | Diagnostic.TextDoc
547
594
  */
548
595
  export declare namespace Diagnostic {
549
596
  /**
550
- * @public
551
597
  * Diagnostics originating from a TextDocument
598
+ * @public
552
599
  */
553
600
  interface TextDocumentDiagnosticMember {
554
601
  textDocumentDiagnostic: TextDocumentDiagnostic;
@@ -556,8 +603,8 @@ export declare namespace Diagnostic {
556
603
  $unknown?: never;
557
604
  }
558
605
  /**
559
- * @public
560
606
  * Diagnostics originating from a Runtime
607
+ * @public
561
608
  */
562
609
  interface RuntimeDiagnosticMember {
563
610
  textDocumentDiagnostic?: never;
@@ -584,8 +631,8 @@ export declare namespace Diagnostic {
584
631
  */
585
632
  export declare const DiagnosticFilterSensitiveLog: (obj: Diagnostic) => any;
586
633
  /**
587
- * @public
588
634
  * Represents the state of the Cursor in an Editor
635
+ * @public
589
636
  */
590
637
  export type CursorState = CursorState.PositionMember | CursorState.RangeMember | CursorState.$UnknownMember;
591
638
  /**
@@ -593,8 +640,8 @@ export type CursorState = CursorState.PositionMember | CursorState.RangeMember |
593
640
  */
594
641
  export declare namespace CursorState {
595
642
  /**
596
- * @public
597
643
  * Represents a cursor position in a Text Document
644
+ * @public
598
645
  */
599
646
  interface PositionMember {
600
647
  position: Position;
@@ -602,8 +649,8 @@ export declare namespace CursorState {
602
649
  $unknown?: never;
603
650
  }
604
651
  /**
605
- * @public
606
652
  * Represents a text selection in a Text Document
653
+ * @public
607
654
  */
608
655
  interface RangeMember {
609
656
  position?: never;
@@ -626,73 +673,78 @@ export declare namespace CursorState {
626
673
  const visit: <T>(value: CursorState, visitor: Visitor<T>) => T;
627
674
  }
628
675
  /**
629
- * @public
630
676
  * Represents an IDE retrieved relevant Text Document / File
677
+ * @public
631
678
  */
632
679
  export interface RelevantTextDocument {
633
680
  /**
634
- * @public
635
681
  * Filepath relative to the root of the workspace
682
+ * @public
636
683
  */
637
684
  relativeFilePath: string | undefined;
638
685
  /**
639
- * @public
640
686
  * The text document's language identifier.
687
+ * @public
641
688
  */
642
689
  programmingLanguage?: ProgrammingLanguage;
643
690
  /**
644
- * @public
645
691
  * Content of the text document
692
+ * @public
646
693
  */
647
694
  text?: string;
648
695
  /**
649
- * @public
650
696
  * DocumentSymbols parsed from a text document
697
+ * @public
651
698
  */
652
- documentSymbols?: DocumentSymbol[];
699
+ documentSymbols?: (DocumentSymbol)[];
653
700
  }
654
701
  /**
655
702
  * @internal
656
703
  */
657
704
  export declare const RelevantTextDocumentFilterSensitiveLog: (obj: RelevantTextDocument) => any;
658
705
  /**
659
- * @public
660
706
  * Represents the state of an Editor
707
+ * @public
661
708
  */
662
709
  export interface EditorState {
663
710
  /**
664
- * @public
665
711
  * Represents currently edited file
712
+ * @public
666
713
  */
667
714
  document?: TextDocument;
668
715
  /**
669
- * @public
670
716
  * Position of the cursor
717
+ * @public
671
718
  */
672
719
  cursorState?: CursorState;
673
720
  /**
674
- * @public
675
721
  * Represents IDE provided relevant files
722
+ * @public
676
723
  */
677
- relevantDocuments?: RelevantTextDocument[];
724
+ relevantDocuments?: (RelevantTextDocument)[];
725
+ /**
726
+ * Whether service should use relevant document in prompt
727
+ * @public
728
+ */
729
+ useRelevantDocuments?: boolean;
678
730
  }
679
731
  /**
680
732
  * @internal
681
733
  */
682
734
  export declare const EditorStateFilterSensitiveLog: (obj: EditorState) => any;
683
735
  /**
684
- * @public
685
736
  * An environment variable
737
+ * @public
686
738
  */
687
739
  export interface EnvironmentVariable {
688
740
  /**
689
- * @public
690
741
  * The key of an environment variable
742
+ * @public
691
743
  */
692
744
  key?: string;
693
745
  /**
694
- * @public
695
746
  * The value of an environment variable
747
+ * @public
696
748
  */
697
749
  value?: string;
698
750
  }
@@ -701,38 +753,38 @@ export interface EnvironmentVariable {
701
753
  */
702
754
  export declare const EnvironmentVariableFilterSensitiveLog: (obj: EnvironmentVariable) => any;
703
755
  /**
704
- * @public
705
756
  * State related to the user's environment
757
+ * @public
706
758
  */
707
759
  export interface EnvState {
708
760
  /**
709
- * @public
710
761
  * The name of the operating system in use
762
+ * @public
711
763
  */
712
764
  operatingSystem?: string;
713
765
  /**
714
- * @public
715
766
  * The current working directory of the environment
767
+ * @public
716
768
  */
717
769
  currentWorkingDirectory?: string;
718
770
  /**
719
- * @public
720
771
  * The environment variables set in the current environment
772
+ * @public
721
773
  */
722
- environmentVariables?: EnvironmentVariable[];
774
+ environmentVariables?: (EnvironmentVariable)[];
723
775
  }
724
776
  /**
725
777
  * @internal
726
778
  */
727
779
  export declare const EnvStateFilterSensitiveLog: (obj: EnvState) => any;
728
780
  /**
729
- * @public
730
781
  * State related to the Git VSC
782
+ * @public
731
783
  */
732
784
  export interface GitState {
733
785
  /**
734
- * @public
735
786
  * The output of the command `git status --porcelain=v1 -b`
787
+ * @public
736
788
  */
737
789
  status?: string;
738
790
  }
@@ -741,33 +793,33 @@ export interface GitState {
741
793
  */
742
794
  export declare const GitStateFilterSensitiveLog: (obj: GitState) => any;
743
795
  /**
744
- * @public
745
796
  * An single entry in the shell history
797
+ * @public
746
798
  */
747
799
  export interface ShellHistoryEntry {
748
800
  /**
749
- * @public
750
801
  * The shell command that was run
802
+ * @public
751
803
  */
752
804
  command: string | undefined;
753
805
  /**
754
- * @public
755
806
  * The directory the command was ran in
807
+ * @public
756
808
  */
757
809
  directory?: string;
758
810
  /**
759
- * @public
760
811
  * The exit code of the command after it finished
812
+ * @public
761
813
  */
762
814
  exitCode?: number;
763
815
  /**
764
- * @public
765
816
  * The stdout from the command
817
+ * @public
766
818
  */
767
819
  stdout?: string;
768
820
  /**
769
- * @public
770
821
  * The stderr from the command
822
+ * @public
771
823
  */
772
824
  stderr?: string;
773
825
  }
@@ -776,85 +828,102 @@ export interface ShellHistoryEntry {
776
828
  */
777
829
  export declare const ShellHistoryEntryFilterSensitiveLog: (obj: ShellHistoryEntry) => any;
778
830
  /**
779
- * @public
780
831
  * Represents the state of a shell
832
+ * @public
781
833
  */
782
834
  export interface ShellState {
783
835
  /**
784
- * @public
785
836
  * The name of the current shell
837
+ * @public
786
838
  */
787
839
  shellName: string | undefined;
788
840
  /**
789
- * @public
790
841
  * The history previous shell commands for the current shell
842
+ * @public
791
843
  */
792
- shellHistory?: ShellHistoryEntry[];
844
+ shellHistory?: (ShellHistoryEntry)[];
793
845
  }
794
846
  /**
795
847
  * @internal
796
848
  */
797
849
  export declare const ShellStateFilterSensitiveLog: (obj: ShellState) => any;
798
850
  /**
851
+ * Settings information passed by the Q widget
799
852
  * @public
853
+ */
854
+ export interface UserSettings {
855
+ hasConsentedToCrossRegionCalls?: boolean;
856
+ }
857
+ /**
800
858
  * Additional Chat message context associated with the Chat Message
859
+ * @public
801
860
  */
802
861
  export interface UserInputMessageContext {
803
862
  /**
804
- * @public
805
863
  * Editor state chat message context.
864
+ * @public
806
865
  */
807
866
  editorState?: EditorState;
808
867
  /**
809
- * @public
810
868
  * Shell state chat message context.
869
+ * @public
811
870
  */
812
871
  shellState?: ShellState;
813
872
  /**
814
- * @public
815
873
  * Git state chat message context.
874
+ * @public
816
875
  */
817
876
  gitState?: GitState;
818
877
  /**
819
- * @public
820
878
  * Environment state chat message context.
879
+ * @public
821
880
  */
822
881
  envState?: EnvState;
823
882
  /**
824
- * @public
825
883
  * The state of a user's AppStudio UI when sending a message.
884
+ * @public
826
885
  */
827
886
  appStudioContext?: AppStudioState;
828
887
  /**
829
- * @public
830
888
  * Diagnostic chat message context.
889
+ * @public
831
890
  */
832
891
  diagnostic?: Diagnostic;
892
+ /**
893
+ * Contextual information about the environment from which the user is calling.
894
+ * @public
895
+ */
896
+ consoleState?: ConsoleState;
897
+ /**
898
+ * Settings information, e.g., whether the user has enabled cross-region API calls.
899
+ * @public
900
+ */
901
+ userSettings?: UserSettings;
833
902
  }
834
903
  /**
835
904
  * @internal
836
905
  */
837
906
  export declare const UserInputMessageContextFilterSensitiveLog: (obj: UserInputMessageContext) => any;
838
907
  /**
839
- * @public
840
908
  * Structure to represent a chat input message from User
909
+ * @public
841
910
  */
842
911
  export interface UserInputMessage {
843
912
  /**
844
- * @public
845
913
  * The content of the chat message.
914
+ * @public
846
915
  */
847
916
  content: string | undefined;
848
917
  /**
849
- * @public
850
918
  * Chat message context associated with the Chat Message
919
+ * @public
851
920
  */
852
921
  userInputMessageContext?: UserInputMessageContext;
853
922
  /**
854
- * @public
855
923
  * User Intent
924
+ * @public
856
925
  */
857
- userIntent?: UserIntent | string;
926
+ userIntent?: UserIntent;
858
927
  }
859
928
  /**
860
929
  * @internal
@@ -869,8 +938,8 @@ export type ChatMessage = ChatMessage.AssistantResponseMessageMember | ChatMessa
869
938
  */
870
939
  export declare namespace ChatMessage {
871
940
  /**
872
- * @public
873
941
  * Structure to represent a chat input message from User
942
+ * @public
874
943
  */
875
944
  interface UserInputMessageMember {
876
945
  userInputMessage: UserInputMessage;
@@ -878,59 +947,828 @@ export declare namespace ChatMessage {
878
947
  $unknown?: never;
879
948
  }
880
949
  /**
881
- * @public
882
950
  * Markdown text message.
951
+ * @public
952
+ */
953
+ interface AssistantResponseMessageMember {
954
+ userInputMessage?: never;
955
+ assistantResponseMessage: AssistantResponseMessage;
956
+ $unknown?: never;
957
+ }
958
+ /**
959
+ * @public
960
+ */
961
+ interface $UnknownMember {
962
+ userInputMessage?: never;
963
+ assistantResponseMessage?: never;
964
+ $unknown: [string, any];
965
+ }
966
+ interface Visitor<T> {
967
+ userInputMessage: (value: UserInputMessage) => T;
968
+ assistantResponseMessage: (value: AssistantResponseMessage) => T;
969
+ _: (name: string, value: any) => T;
970
+ }
971
+ const visit: <T>(value: ChatMessage, visitor: Visitor<T>) => T;
972
+ }
973
+ /**
974
+ * @internal
975
+ */
976
+ export declare const ChatMessageFilterSensitiveLog: (obj: ChatMessage) => any;
977
+ /**
978
+ * Streaming response event for generated code text.
979
+ * @public
980
+ */
981
+ export interface CodeEvent {
982
+ /**
983
+ * Generated code snippet.
984
+ * @public
985
+ */
986
+ content: string | undefined;
987
+ }
988
+ /**
989
+ * @internal
990
+ */
991
+ export declare const CodeEventFilterSensitiveLog: (obj: CodeEvent) => any;
992
+ /**
993
+ * Streaming Response Event for CodeReferences
994
+ * @public
995
+ */
996
+ export interface CodeReferenceEvent {
997
+ /**
998
+ * Code References for Assistant Response Message
999
+ * @public
1000
+ */
1001
+ references?: (Reference)[];
1002
+ }
1003
+ /**
1004
+ * Streaming Response Event when DryRun is succeessful
1005
+ * @public
1006
+ */
1007
+ export interface DryRunSucceedEvent {
1008
+ }
1009
+ /**
1010
+ * Streaming Response Event for Followup Prompt.
1011
+ * @public
1012
+ */
1013
+ export interface FollowupPromptEvent {
1014
+ /**
1015
+ * Followup Prompt for the Assistant Response
1016
+ * @public
1017
+ */
1018
+ followupPrompt?: FollowupPrompt;
1019
+ }
1020
+ /**
1021
+ * @internal
1022
+ */
1023
+ export declare const FollowupPromptEventFilterSensitiveLog: (obj: FollowupPromptEvent) => any;
1024
+ /**
1025
+ * @public
1026
+ * @enum
1027
+ */
1028
+ export declare const IntentType: {
1029
+ readonly GLUE_SENSEI: "GLUE_SENSEI";
1030
+ readonly RESOURCE_DATA: "RESOURCE_DATA";
1031
+ readonly SUPPORT: "SUPPORT";
1032
+ };
1033
+ /**
1034
+ * @public
1035
+ */
1036
+ export type IntentType = typeof IntentType[keyof typeof IntentType];
1037
+ /**
1038
+ * @public
1039
+ */
1040
+ export type IntentDataType = IntentDataType.StringMember | IntentDataType.$UnknownMember;
1041
+ /**
1042
+ * @public
1043
+ */
1044
+ export declare namespace IntentDataType {
1045
+ interface StringMember {
1046
+ string: string;
1047
+ $unknown?: never;
1048
+ }
1049
+ /**
1050
+ * @public
1051
+ */
1052
+ interface $UnknownMember {
1053
+ string?: never;
1054
+ $unknown: [string, any];
1055
+ }
1056
+ interface Visitor<T> {
1057
+ string: (value: string) => T;
1058
+ _: (name: string, value: any) => T;
1059
+ }
1060
+ const visit: <T>(value: IntentDataType, visitor: Visitor<T>) => T;
1061
+ }
1062
+ /**
1063
+ * Streaming Response Event for Intents
1064
+ * @public
1065
+ */
1066
+ export interface IntentsEvent {
1067
+ /**
1068
+ * A map of Intent objects
1069
+ * @public
1070
+ */
1071
+ intents?: Partial<Record<IntentType, Record<string, IntentDataType>>>;
1072
+ }
1073
+ /**
1074
+ * @internal
1075
+ */
1076
+ export declare const IntentsEventFilterSensitiveLog: (obj: IntentsEvent) => any;
1077
+ /**
1078
+ * For CloudWatch Troubleshooting Link Module
1079
+ * @public
1080
+ */
1081
+ export interface CloudWatchTroubleshootingLink {
1082
+ /**
1083
+ * A label for the link.
1084
+ * @public
1085
+ */
1086
+ label: string | undefined;
1087
+ /**
1088
+ * Stringified JSON payload. See spec here https://code.amazon.com/packages/CloudWatchOdysseyModel/blobs/50c0832f0e393e4ab68827eb4f04d832366821c1/--/model/events.smithy#L28 .
1089
+ * @public
1090
+ */
1091
+ investigationPayload: string | undefined;
1092
+ /**
1093
+ * Fallback string, if target channel does not support the CloudWatchTroubleshootingLink.
1094
+ * @public
1095
+ */
1096
+ defaultText?: string;
1097
+ }
1098
+ /**
1099
+ * @internal
1100
+ */
1101
+ export declare const CloudWatchTroubleshootingLinkFilterSensitiveLog: (obj: CloudWatchTroubleshootingLink) => any;
1102
+ /**
1103
+ * @public
1104
+ */
1105
+ export interface ModuleLink {
1106
+ /**
1107
+ * For CloudWatch Troubleshooting Link Module
1108
+ * @public
1109
+ */
1110
+ cloudWatchTroubleshootingLink?: CloudWatchTroubleshootingLink;
1111
+ }
1112
+ /**
1113
+ * @internal
1114
+ */
1115
+ export declare const ModuleLinkFilterSensitiveLog: (obj: ModuleLink) => any;
1116
+ /**
1117
+ * @public
1118
+ */
1119
+ export interface WebLink {
1120
+ /**
1121
+ * A label for the link
1122
+ * @public
1123
+ */
1124
+ label: string | undefined;
1125
+ /**
1126
+ * URL of the Weblink
1127
+ * @public
1128
+ */
1129
+ url: string | undefined;
1130
+ }
1131
+ /**
1132
+ * @internal
1133
+ */
1134
+ export declare const WebLinkFilterSensitiveLog: (obj: WebLink) => any;
1135
+ /**
1136
+ * @public
1137
+ */
1138
+ export interface Action {
1139
+ webLink?: WebLink;
1140
+ moduleLink?: ModuleLink;
1141
+ }
1142
+ /**
1143
+ * @internal
1144
+ */
1145
+ export declare const ActionFilterSensitiveLog: (obj: Action) => any;
1146
+ /**
1147
+ * Structure representing a simple text component with sensitive content, which can include Markdown formatting.
1148
+ * @public
1149
+ */
1150
+ export interface Text {
1151
+ /**
1152
+ * Contains text content that may include sensitive information and can support Markdown formatting.
1153
+ * @public
1154
+ */
1155
+ content: string | undefined;
1156
+ }
1157
+ /**
1158
+ * @internal
1159
+ */
1160
+ export declare const TextFilterSensitiveLog: (obj: Text) => any;
1161
+ /**
1162
+ * @public
1163
+ */
1164
+ export interface AlertComponent {
1165
+ /**
1166
+ * Structure representing a simple text component with sensitive content, which can include Markdown formatting.
1167
+ * @public
1168
+ */
1169
+ text?: Text;
1170
+ }
1171
+ /**
1172
+ * @internal
1173
+ */
1174
+ export declare const AlertComponentFilterSensitiveLog: (obj: AlertComponent) => any;
1175
+ /**
1176
+ * @public
1177
+ * @enum
1178
+ */
1179
+ export declare const AlertType: {
1180
+ /**
1181
+ * Alert indicating an error or failure that requires attention.
1182
+ */
1183
+ readonly ERROR: "ERROR";
1184
+ /**
1185
+ * Informational alert providing general information.
1186
+ */
1187
+ readonly INFO: "INFO";
1188
+ /**
1189
+ * Alert indicating a warning or potential issue that should be noted.
1190
+ */
1191
+ readonly WARNING: "WARNING";
1192
+ };
1193
+ /**
1194
+ * @public
1195
+ */
1196
+ export type AlertType = typeof AlertType[keyof typeof AlertType];
1197
+ /**
1198
+ * Structure representing an alert with a type and content.
1199
+ * @public
1200
+ */
1201
+ export interface Alert {
1202
+ /**
1203
+ * Enum defining types of alerts that can be issued.
1204
+ * @public
1205
+ */
1206
+ type: AlertType | undefined;
1207
+ /**
1208
+ * Contains the content of the alert, which may include sensitive information.
1209
+ * @public
1210
+ */
1211
+ content: (AlertComponent)[] | undefined;
1212
+ }
1213
+ /**
1214
+ * @internal
1215
+ */
1216
+ export declare const AlertFilterSensitiveLog: (obj: Alert) => any;
1217
+ /**
1218
+ * Structure describing a transition between two states in an infrastructure update.
1219
+ * @public
1220
+ */
1221
+ export interface InfrastructureUpdateTransition {
1222
+ /**
1223
+ * The current state of the infrastructure before the update.
1224
+ * @public
1225
+ */
1226
+ currentState: string | undefined;
1227
+ /**
1228
+ * The next state of the infrastructure following the update.
1229
+ * @public
1230
+ */
1231
+ nextState: string | undefined;
1232
+ }
1233
+ /**
1234
+ * @internal
1235
+ */
1236
+ export declare const InfrastructureUpdateTransitionFilterSensitiveLog: (obj: InfrastructureUpdateTransition) => any;
1237
+ /**
1238
+ * Structure representing different types of infrastructure updates.
1239
+ * @public
1240
+ */
1241
+ export interface InfrastructureUpdate {
1242
+ /**
1243
+ * Structure describing a transition between two states in an infrastructure update.
1244
+ * @public
1245
+ */
1246
+ transition?: InfrastructureUpdateTransition;
1247
+ }
1248
+ /**
1249
+ * @internal
1250
+ */
1251
+ export declare const InfrastructureUpdateFilterSensitiveLog: (obj: InfrastructureUpdate) => any;
1252
+ /**
1253
+ * @public
1254
+ */
1255
+ export interface StepComponent {
1256
+ /**
1257
+ * Structure representing a simple text component with sensitive content, which can include Markdown formatting.
1258
+ * @public
1259
+ */
1260
+ text?: Text;
1261
+ }
1262
+ /**
1263
+ * @internal
1264
+ */
1265
+ export declare const StepComponentFilterSensitiveLog: (obj: StepComponent) => any;
1266
+ /**
1267
+ * @public
1268
+ * @enum
1269
+ */
1270
+ export declare const StepState: {
1271
+ /**
1272
+ * Indicates a failure or issue that needs to be addressed.
1273
+ */
1274
+ readonly FAILED: "FAILED";
1275
+ /**
1276
+ * Indicates that the step is currently being processed. This is a non-terminal state, meaning the process is active and ongoing.
1277
+ */
1278
+ readonly IN_PROGRESS: "IN_PROGRESS";
1279
+ /**
1280
+ * Indicates that the step is being loaded or initialized. This is a non-terminal state, meaning the process is in the setup phase.
1281
+ */
1282
+ readonly LOADING: "LOADING";
1283
+ /**
1284
+ * Indicates that the step is temporarily halted but can resume. This is a non-terminal state, representing a temporary pause.
1285
+ */
1286
+ readonly PAUSED: "PAUSED";
1287
+ /**
1288
+ * Indicates that the step is waiting for some condition or input. This is a non-terminal state, meaning the process is paused but not complete.
1289
+ */
1290
+ readonly PENDING: "PENDING";
1291
+ /**
1292
+ * Indicates that the step was stopped, either intentionally or unintentionally.
1293
+ */
1294
+ readonly STOPPED: "STOPPED";
1295
+ /**
1296
+ * Indicates successful completion of the step.
1297
+ */
1298
+ readonly SUCCEEDED: "SUCCEEDED";
1299
+ };
1300
+ /**
1301
+ * @public
1302
+ */
1303
+ export type StepState = typeof StepState[keyof typeof StepState];
1304
+ /**
1305
+ * Structure representing an individual step in a process.
1306
+ * @public
1307
+ */
1308
+ export interface Step {
1309
+ /**
1310
+ * A unique identifier for the step. It must be a non-negative integer to ensure each step is distinct.
1311
+ * @public
1312
+ */
1313
+ id: number | undefined;
1314
+ /**
1315
+ * Enum representing all possible step states, combining terminal and non-terminal states.
1316
+ * @public
1317
+ */
1318
+ state: StepState | undefined;
1319
+ /**
1320
+ * A label for the step, providing a concise description.
1321
+ * @public
1322
+ */
1323
+ label: string | undefined;
1324
+ /**
1325
+ * Optional content providing additional details about the step.
1326
+ * @public
1327
+ */
1328
+ content?: (StepComponent)[];
1329
+ }
1330
+ /**
1331
+ * @internal
1332
+ */
1333
+ export declare const StepFilterSensitiveLog: (obj: Step) => any;
1334
+ /**
1335
+ * @public
1336
+ */
1337
+ export interface ProgressComponent {
1338
+ /**
1339
+ * Structure representing an individual step in a process.
1340
+ * @public
1341
+ */
1342
+ step?: Step;
1343
+ }
1344
+ /**
1345
+ * @internal
1346
+ */
1347
+ export declare const ProgressComponentFilterSensitiveLog: (obj: ProgressComponent) => any;
1348
+ /**
1349
+ * Structure representing a collection of steps in a process.
1350
+ * @public
1351
+ */
1352
+ export interface Progress {
1353
+ /**
1354
+ * A collection of steps that make up a process. Each step is detailed using the Step structure.
1355
+ * @public
1356
+ */
1357
+ content: (ProgressComponent)[] | undefined;
1358
+ }
1359
+ /**
1360
+ * @internal
1361
+ */
1362
+ export declare const ProgressFilterSensitiveLog: (obj: Progress) => any;
1363
+ /**
1364
+ * Structure representing a resource item
1365
+ * @public
1366
+ */
1367
+ export interface Resource {
1368
+ /**
1369
+ * Card title.
1370
+ * @public
1371
+ */
1372
+ title: string | undefined;
1373
+ /**
1374
+ * Link for the resource item
1375
+ * @public
1376
+ */
1377
+ link: string | undefined;
1378
+ /**
1379
+ * Short text about that resource for example Region: us-east-1
1380
+ * @public
1381
+ */
1382
+ description: string | undefined;
1383
+ /**
1384
+ * Resource type e.g AWS EC2
1385
+ * @public
1386
+ */
1387
+ type: string | undefined;
1388
+ /**
1389
+ * Amazon resource number e.g arn:aws:aec:.....
1390
+ * @public
1391
+ */
1392
+ ARN: string | undefined;
1393
+ /**
1394
+ * A stringified object
1395
+ * @public
1396
+ */
1397
+ resourceJsonString: string | undefined;
1398
+ }
1399
+ /**
1400
+ * @internal
1401
+ */
1402
+ export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
1403
+ /**
1404
+ * Structure representing a list of Items
1405
+ * @public
1406
+ */
1407
+ export interface ResourceList {
1408
+ /**
1409
+ * Action associated with the list
1410
+ * @public
1411
+ */
1412
+ action?: Action;
1413
+ /**
1414
+ * List of resources
1415
+ * @public
1416
+ */
1417
+ items: (Resource)[] | undefined;
1418
+ }
1419
+ /**
1420
+ * @internal
1421
+ */
1422
+ export declare const ResourceListFilterSensitiveLog: (obj: ResourceList) => any;
1423
+ /**
1424
+ * @public
1425
+ */
1426
+ export interface SectionComponent {
1427
+ /**
1428
+ * Structure representing a simple text component with sensitive content, which can include Markdown formatting.
1429
+ * @public
1430
+ */
1431
+ text?: Text;
1432
+ /**
1433
+ * Structure representing an alert with a type and content.
1434
+ * @public
1435
+ */
1436
+ alert?: Alert;
1437
+ /**
1438
+ * Structure representing a resource item
1439
+ * @public
1440
+ */
1441
+ resource?: Resource;
1442
+ /**
1443
+ * Structure representing a list of Items
1444
+ * @public
1445
+ */
1446
+ resourceList?: ResourceList;
1447
+ }
1448
+ /**
1449
+ * @internal
1450
+ */
1451
+ export declare const SectionComponentFilterSensitiveLog: (obj: SectionComponent) => any;
1452
+ /**
1453
+ * Structure representing a collapsable section
1454
+ * @public
1455
+ */
1456
+ export interface Section {
1457
+ /**
1458
+ * Contains text content that may include sensitive information and can support Markdown formatting.
1459
+ * @public
1460
+ */
1461
+ title: string | undefined;
1462
+ /**
1463
+ * Contains a list of interaction components e.g Text, Alert, List, etc.
1464
+ * @public
1465
+ */
1466
+ content: (SectionComponent)[] | undefined;
1467
+ /**
1468
+ * Action associated with the Section
1469
+ * @public
1470
+ */
1471
+ action?: Action;
1472
+ }
1473
+ /**
1474
+ * @internal
1475
+ */
1476
+ export declare const SectionFilterSensitiveLog: (obj: Section) => any;
1477
+ /**
1478
+ * Structure representing a suggestion for follow-ups.
1479
+ * @public
1480
+ */
1481
+ export interface Suggestion {
1482
+ value: string | undefined;
1483
+ }
1484
+ /**
1485
+ * Structure containing a list of suggestions.
1486
+ * @public
1487
+ */
1488
+ export interface Suggestions {
1489
+ items: (Suggestion)[] | undefined;
1490
+ }
1491
+ /**
1492
+ * Structure representing a confirmation message related to a task action.
1493
+ * @public
1494
+ */
1495
+ export interface TaskActionConfirmation {
1496
+ /**
1497
+ * Confirmation message related to the action note, which may include sensitive information.
1498
+ * @public
1499
+ */
1500
+ content?: string;
1501
+ }
1502
+ /**
1503
+ * @internal
1504
+ */
1505
+ export declare const TaskActionConfirmationFilterSensitiveLog: (obj: TaskActionConfirmation) => any;
1506
+ /**
1507
+ * @public
1508
+ * @enum
1509
+ */
1510
+ export declare const TaskActionNoteType: {
1511
+ /**
1512
+ * Information note providing general details.
1513
+ */
1514
+ readonly INFO: "INFO";
1515
+ /**
1516
+ * Warning note indicating a potential issue.
1517
+ */
1518
+ readonly WARNING: "WARNING";
1519
+ };
1520
+ /**
1521
+ * @public
1522
+ */
1523
+ export type TaskActionNoteType = typeof TaskActionNoteType[keyof typeof TaskActionNoteType];
1524
+ /**
1525
+ * Structure representing a note associated with a task action.
1526
+ * @public
1527
+ */
1528
+ export interface TaskActionNote {
1529
+ /**
1530
+ * Content of the note, which may include sensitive information.
1531
+ * @public
1532
+ */
1533
+ content: string | undefined;
1534
+ /**
1535
+ * Enum defining the types of notes that can be associated with a task action.
1536
+ * @public
1537
+ */
1538
+ type?: TaskActionNoteType;
1539
+ }
1540
+ /**
1541
+ * @internal
1542
+ */
1543
+ export declare const TaskActionNoteFilterSensitiveLog: (obj: TaskActionNote) => any;
1544
+ /**
1545
+ * Structure representing an action associated with a task.
1546
+ * @public
1547
+ */
1548
+ export interface TaskAction {
1549
+ /**
1550
+ * A label for the action.
1551
+ * @public
1552
+ */
1553
+ label: string | undefined;
1554
+ /**
1555
+ * Structure representing a note associated with a task action.
1556
+ * @public
1557
+ */
1558
+ note?: TaskActionNote;
1559
+ /**
1560
+ * Indicates whether the action is primary or not.
1561
+ * @public
1562
+ */
1563
+ primary?: boolean;
1564
+ /**
1565
+ * Indicates whether the action is disabled or not.
1566
+ * @public
1567
+ */
1568
+ disabled?: boolean;
1569
+ /**
1570
+ * Map representing key-value pairs for the payload of a task action.
1571
+ * @public
1572
+ */
1573
+ payload: Record<string, string> | undefined;
1574
+ /**
1575
+ * Structure representing a confirmation message related to a task action.
1576
+ * @public
1577
+ */
1578
+ confirmation?: TaskActionConfirmation;
1579
+ }
1580
+ /**
1581
+ * @internal
1582
+ */
1583
+ export declare const TaskActionFilterSensitiveLog: (obj: TaskAction) => any;
1584
+ /**
1585
+ * Structure representing different types of components that can be part of a task.
1586
+ * @public
1587
+ */
1588
+ export interface TaskComponent {
1589
+ /**
1590
+ * Structure representing a simple text component with sensitive content, which can include Markdown formatting.
1591
+ * @public
1592
+ */
1593
+ text?: Text;
1594
+ /**
1595
+ * Structure representing different types of infrastructure updates.
1596
+ * @public
1597
+ */
1598
+ infrastructureUpdate?: InfrastructureUpdate;
1599
+ /**
1600
+ * Structure representing an alert with a type and content.
1601
+ * @public
1602
+ */
1603
+ alert?: Alert;
1604
+ /**
1605
+ * Structure representing a collection of steps in a process.
1606
+ * @public
1607
+ */
1608
+ progress?: Progress;
1609
+ }
1610
+ /**
1611
+ * @internal
1612
+ */
1613
+ export declare const TaskComponentFilterSensitiveLog: (obj: TaskComponent) => any;
1614
+ /**
1615
+ * Structure representing an overview of a task, including a label and description.
1616
+ * @public
1617
+ */
1618
+ export interface TaskOverview {
1619
+ /**
1620
+ * A label for the task overview.
1621
+ * @public
1622
+ */
1623
+ label: string | undefined;
1624
+ /**
1625
+ * Text description providing details about the task. This field may include sensitive information and supports Markdown formatting.
1626
+ * @public
1627
+ */
1628
+ description: string | undefined;
1629
+ }
1630
+ /**
1631
+ * @internal
1632
+ */
1633
+ export declare const TaskOverviewFilterSensitiveLog: (obj: TaskOverview) => any;
1634
+ /**
1635
+ * Structure containing details about a task.
1636
+ * @public
1637
+ */
1638
+ export interface TaskDetails {
1639
+ /**
1640
+ * Structure representing an overview of a task, including a label and description.
1641
+ * @public
1642
+ */
1643
+ overview: TaskOverview | undefined;
1644
+ /**
1645
+ * Lists the components that can be used to form the task's content.
1646
+ * @public
1647
+ */
1648
+ content: (TaskComponent)[] | undefined;
1649
+ /**
1650
+ * Optional list of actions associated with the task.
1651
+ * @public
1652
+ */
1653
+ actions?: (TaskAction)[];
1654
+ }
1655
+ /**
1656
+ * @internal
1657
+ */
1658
+ export declare const TaskDetailsFilterSensitiveLog: (obj: TaskDetails) => any;
1659
+ /**
1660
+ * Structure representing a reference to a task.
1661
+ * @public
1662
+ */
1663
+ export interface TaskReference {
1664
+ /**
1665
+ * Unique identifier for the task.
1666
+ * @public
1667
+ */
1668
+ taskId: string | undefined;
1669
+ }
1670
+ /**
1671
+ * Structure representing different types of interaction components.
1672
+ * @public
1673
+ */
1674
+ export interface InteractionComponent {
1675
+ /**
1676
+ * Structure representing a simple text component with sensitive content, which can include Markdown formatting.
1677
+ * @public
1678
+ */
1679
+ text?: Text;
1680
+ /**
1681
+ * Structure representing an alert with a type and content.
1682
+ * @public
1683
+ */
1684
+ alert?: Alert;
1685
+ /**
1686
+ * Structure representing different types of infrastructure updates.
1687
+ * @public
1688
+ */
1689
+ infrastructureUpdate?: InfrastructureUpdate;
1690
+ /**
1691
+ * Structure representing a collection of steps in a process.
1692
+ * @public
1693
+ */
1694
+ progress?: Progress;
1695
+ /**
1696
+ * Structure representing an individual step in a process.
1697
+ * @public
1698
+ */
1699
+ step?: Step;
1700
+ /**
1701
+ * Structure containing details about a task.
1702
+ * @public
1703
+ */
1704
+ taskDetails?: TaskDetails;
1705
+ /**
1706
+ * Structure representing a reference to a task.
1707
+ * @public
883
1708
  */
884
- interface AssistantResponseMessageMember {
885
- userInputMessage?: never;
886
- assistantResponseMessage: AssistantResponseMessage;
887
- $unknown?: never;
888
- }
1709
+ taskReference?: TaskReference;
889
1710
  /**
1711
+ * Structure containing a list of suggestions.
890
1712
  * @public
891
1713
  */
892
- interface $UnknownMember {
893
- userInputMessage?: never;
894
- assistantResponseMessage?: never;
895
- $unknown: [string, any];
896
- }
897
- interface Visitor<T> {
898
- userInputMessage: (value: UserInputMessage) => T;
899
- assistantResponseMessage: (value: AssistantResponseMessage) => T;
900
- _: (name: string, value: any) => T;
901
- }
902
- const visit: <T>(value: ChatMessage, visitor: Visitor<T>) => T;
1714
+ suggestions?: Suggestions;
1715
+ /**
1716
+ * Structure representing a collapsable section
1717
+ * @public
1718
+ */
1719
+ section?: Section;
1720
+ /**
1721
+ * Structure representing a resource item
1722
+ * @public
1723
+ */
1724
+ resource?: Resource;
1725
+ /**
1726
+ * Structure representing a list of Items
1727
+ * @public
1728
+ */
1729
+ resourceList?: ResourceList;
1730
+ action?: Action;
903
1731
  }
904
1732
  /**
905
1733
  * @internal
906
1734
  */
907
- export declare const ChatMessageFilterSensitiveLog: (obj: ChatMessage) => any;
1735
+ export declare const InteractionComponentFilterSensitiveLog: (obj: InteractionComponent) => any;
908
1736
  /**
1737
+ * Interaction component with an identifier
909
1738
  * @public
910
- * Streaming Response Event for CodeReferences
911
1739
  */
912
- export interface CodeReferenceEvent {
1740
+ export interface InteractionComponentEntry {
913
1741
  /**
1742
+ * Identifier that can uniquely identify the interaction component within
1743
+ * stream response. This field is optional.
1744
+ * @public
1745
+ */
1746
+ interactionComponentId?: string;
1747
+ /**
1748
+ * Interaction component
914
1749
  * @public
915
- * Code References for Assistant Response Message
916
1750
  */
917
- references?: Reference[];
1751
+ interactionComponent: InteractionComponent | undefined;
918
1752
  }
919
1753
  /**
1754
+ * @internal
1755
+ */
1756
+ export declare const InteractionComponentEntryFilterSensitiveLog: (obj: InteractionComponentEntry) => any;
1757
+ /**
1758
+ * Streaming Event for interaction components list
920
1759
  * @public
921
- * Streaming Response Event for Followup Prompt.
922
1760
  */
923
- export interface FollowupPromptEvent {
1761
+ export interface InteractionComponentsEvent {
924
1762
  /**
1763
+ * List of identifiable interaction components
925
1764
  * @public
926
- * Followup Prompt for the Assistant Response
927
1765
  */
928
- followupPrompt?: FollowupPrompt;
1766
+ interactionComponentEntries: (InteractionComponentEntry)[] | undefined;
929
1767
  }
930
1768
  /**
931
1769
  * @internal
932
1770
  */
933
- export declare const FollowupPromptEventFilterSensitiveLog: (obj: FollowupPromptEvent) => any;
1771
+ export declare const InteractionComponentsEventFilterSensitiveLog: (obj: InteractionComponentsEvent) => any;
934
1772
  /**
935
1773
  * @public
936
1774
  * @enum
@@ -941,148 +1779,253 @@ export declare const InvalidStateReason: {
941
1779
  /**
942
1780
  * @public
943
1781
  */
944
- export type InvalidStateReason = (typeof InvalidStateReason)[keyof typeof InvalidStateReason];
1782
+ export type InvalidStateReason = typeof InvalidStateReason[keyof typeof InvalidStateReason];
945
1783
  /**
946
- * @public
947
1784
  * Streaming Response Event when an Invalid State is reached
1785
+ * @public
948
1786
  */
949
1787
  export interface InvalidStateEvent {
950
1788
  /**
951
- * @public
952
1789
  * Reasons for Invalid State Event
1790
+ * @public
953
1791
  */
954
- reason: InvalidStateReason | string | undefined;
1792
+ reason: InvalidStateReason | undefined;
955
1793
  message: string | undefined;
956
1794
  }
957
1795
  /**
958
- * @public
959
1796
  * Streaming Response Event for AssistantResponse Metadata
1797
+ * @public
960
1798
  */
961
1799
  export interface MessageMetadataEvent {
962
1800
  /**
963
- * @public
964
1801
  * Unique identifier for the conversation
1802
+ * @public
965
1803
  */
966
1804
  conversationId?: string;
1805
+ /**
1806
+ * Unique identifier for the utterance
1807
+ * @public
1808
+ */
1809
+ utteranceId?: string;
967
1810
  }
968
1811
  /**
969
- * @public
970
1812
  * Streaming Response Event for SupplementaryWebLinks
1813
+ * @public
971
1814
  */
972
1815
  export interface SupplementaryWebLinksEvent {
973
1816
  /**
974
- * @public
975
1817
  * Web References for Assistant Response Message
1818
+ * @public
976
1819
  */
977
- supplementaryWebLinks?: SupplementaryWebLink[];
1820
+ supplementaryWebLinks?: (SupplementaryWebLink)[];
978
1821
  }
979
1822
  /**
980
1823
  * @internal
981
1824
  */
982
1825
  export declare const SupplementaryWebLinksEventFilterSensitiveLog: (obj: SupplementaryWebLinksEvent) => any;
983
1826
  /**
984
- * @public
985
1827
  * Streaming events from UniDirectional Streaming Conversational APIs.
1828
+ * @public
986
1829
  */
987
- export type ChatResponseStream = ChatResponseStream.AssistantResponseEventMember | ChatResponseStream.CodeReferenceEventMember | ChatResponseStream.ErrorMember | ChatResponseStream.FollowupPromptEventMember | ChatResponseStream.InvalidStateEventMember | ChatResponseStream.MessageMetadataEventMember | ChatResponseStream.SupplementaryWebLinksEventMember | ChatResponseStream.$UnknownMember;
1830
+ export type ChatResponseStream = ChatResponseStream.AssistantResponseEventMember | ChatResponseStream.CodeEventMember | ChatResponseStream.CodeReferenceEventMember | ChatResponseStream.DryRunSucceedEventMember | ChatResponseStream.ErrorMember | ChatResponseStream.FollowupPromptEventMember | ChatResponseStream.IntentsEventMember | ChatResponseStream.InteractionComponentsEventMember | ChatResponseStream.InvalidStateEventMember | ChatResponseStream.MessageMetadataEventMember | ChatResponseStream.SupplementaryWebLinksEventMember | ChatResponseStream.$UnknownMember;
988
1831
  /**
989
1832
  * @public
990
1833
  */
991
1834
  export declare namespace ChatResponseStream {
992
1835
  /**
993
- * @public
994
1836
  * Message Metadata event
1837
+ * @public
995
1838
  */
996
1839
  interface MessageMetadataEventMember {
997
1840
  messageMetadataEvent: MessageMetadataEvent;
998
1841
  assistantResponseEvent?: never;
1842
+ dryRunSucceedEvent?: never;
999
1843
  codeReferenceEvent?: never;
1000
1844
  supplementaryWebLinksEvent?: never;
1001
1845
  followupPromptEvent?: never;
1846
+ codeEvent?: never;
1847
+ intentsEvent?: never;
1848
+ interactionComponentsEvent?: never;
1002
1849
  invalidStateEvent?: never;
1003
1850
  error?: never;
1004
1851
  $unknown?: never;
1005
1852
  }
1006
1853
  /**
1007
- * @public
1008
1854
  * Assistant response event - Text / Code snippet
1855
+ * @public
1009
1856
  */
1010
1857
  interface AssistantResponseEventMember {
1011
1858
  messageMetadataEvent?: never;
1012
1859
  assistantResponseEvent: AssistantResponseEvent;
1860
+ dryRunSucceedEvent?: never;
1013
1861
  codeReferenceEvent?: never;
1014
1862
  supplementaryWebLinksEvent?: never;
1015
1863
  followupPromptEvent?: never;
1864
+ codeEvent?: never;
1865
+ intentsEvent?: never;
1866
+ interactionComponentsEvent?: never;
1016
1867
  invalidStateEvent?: never;
1017
1868
  error?: never;
1018
1869
  $unknown?: never;
1019
1870
  }
1020
1871
  /**
1872
+ * DryRun Succeed Event
1021
1873
  * @public
1874
+ */
1875
+ interface DryRunSucceedEventMember {
1876
+ messageMetadataEvent?: never;
1877
+ assistantResponseEvent?: never;
1878
+ dryRunSucceedEvent: DryRunSucceedEvent;
1879
+ codeReferenceEvent?: never;
1880
+ supplementaryWebLinksEvent?: never;
1881
+ followupPromptEvent?: never;
1882
+ codeEvent?: never;
1883
+ intentsEvent?: never;
1884
+ interactionComponentsEvent?: never;
1885
+ invalidStateEvent?: never;
1886
+ error?: never;
1887
+ $unknown?: never;
1888
+ }
1889
+ /**
1022
1890
  * Code References event
1891
+ * @public
1023
1892
  */
1024
1893
  interface CodeReferenceEventMember {
1025
1894
  messageMetadataEvent?: never;
1026
1895
  assistantResponseEvent?: never;
1896
+ dryRunSucceedEvent?: never;
1027
1897
  codeReferenceEvent: CodeReferenceEvent;
1028
1898
  supplementaryWebLinksEvent?: never;
1029
1899
  followupPromptEvent?: never;
1900
+ codeEvent?: never;
1901
+ intentsEvent?: never;
1902
+ interactionComponentsEvent?: never;
1030
1903
  invalidStateEvent?: never;
1031
1904
  error?: never;
1032
1905
  $unknown?: never;
1033
1906
  }
1034
1907
  /**
1035
- * @public
1036
1908
  * Web Reference links event
1909
+ * @public
1037
1910
  */
1038
1911
  interface SupplementaryWebLinksEventMember {
1039
1912
  messageMetadataEvent?: never;
1040
1913
  assistantResponseEvent?: never;
1914
+ dryRunSucceedEvent?: never;
1041
1915
  codeReferenceEvent?: never;
1042
1916
  supplementaryWebLinksEvent: SupplementaryWebLinksEvent;
1043
1917
  followupPromptEvent?: never;
1918
+ codeEvent?: never;
1919
+ intentsEvent?: never;
1920
+ interactionComponentsEvent?: never;
1044
1921
  invalidStateEvent?: never;
1045
1922
  error?: never;
1046
1923
  $unknown?: never;
1047
1924
  }
1048
1925
  /**
1049
- * @public
1050
1926
  * Followup prompt event
1927
+ * @public
1051
1928
  */
1052
1929
  interface FollowupPromptEventMember {
1053
1930
  messageMetadataEvent?: never;
1054
1931
  assistantResponseEvent?: never;
1932
+ dryRunSucceedEvent?: never;
1055
1933
  codeReferenceEvent?: never;
1056
1934
  supplementaryWebLinksEvent?: never;
1057
1935
  followupPromptEvent: FollowupPromptEvent;
1936
+ codeEvent?: never;
1937
+ intentsEvent?: never;
1938
+ interactionComponentsEvent?: never;
1939
+ invalidStateEvent?: never;
1940
+ error?: never;
1941
+ $unknown?: never;
1942
+ }
1943
+ /**
1944
+ * Code Generated event
1945
+ * @public
1946
+ */
1947
+ interface CodeEventMember {
1948
+ messageMetadataEvent?: never;
1949
+ assistantResponseEvent?: never;
1950
+ dryRunSucceedEvent?: never;
1951
+ codeReferenceEvent?: never;
1952
+ supplementaryWebLinksEvent?: never;
1953
+ followupPromptEvent?: never;
1954
+ codeEvent: CodeEvent;
1955
+ intentsEvent?: never;
1956
+ interactionComponentsEvent?: never;
1957
+ invalidStateEvent?: never;
1958
+ error?: never;
1959
+ $unknown?: never;
1960
+ }
1961
+ /**
1962
+ * Intents event
1963
+ * @public
1964
+ */
1965
+ interface IntentsEventMember {
1966
+ messageMetadataEvent?: never;
1967
+ assistantResponseEvent?: never;
1968
+ dryRunSucceedEvent?: never;
1969
+ codeReferenceEvent?: never;
1970
+ supplementaryWebLinksEvent?: never;
1971
+ followupPromptEvent?: never;
1972
+ codeEvent?: never;
1973
+ intentsEvent: IntentsEvent;
1974
+ interactionComponentsEvent?: never;
1058
1975
  invalidStateEvent?: never;
1059
1976
  error?: never;
1060
1977
  $unknown?: never;
1061
1978
  }
1062
1979
  /**
1980
+ * Interactions components event
1063
1981
  * @public
1982
+ */
1983
+ interface InteractionComponentsEventMember {
1984
+ messageMetadataEvent?: never;
1985
+ assistantResponseEvent?: never;
1986
+ dryRunSucceedEvent?: never;
1987
+ codeReferenceEvent?: never;
1988
+ supplementaryWebLinksEvent?: never;
1989
+ followupPromptEvent?: never;
1990
+ codeEvent?: never;
1991
+ intentsEvent?: never;
1992
+ interactionComponentsEvent: InteractionComponentsEvent;
1993
+ invalidStateEvent?: never;
1994
+ error?: never;
1995
+ $unknown?: never;
1996
+ }
1997
+ /**
1064
1998
  * Invalid State event
1999
+ * @public
1065
2000
  */
1066
2001
  interface InvalidStateEventMember {
1067
2002
  messageMetadataEvent?: never;
1068
2003
  assistantResponseEvent?: never;
2004
+ dryRunSucceedEvent?: never;
1069
2005
  codeReferenceEvent?: never;
1070
2006
  supplementaryWebLinksEvent?: never;
1071
2007
  followupPromptEvent?: never;
2008
+ codeEvent?: never;
2009
+ intentsEvent?: never;
2010
+ interactionComponentsEvent?: never;
1072
2011
  invalidStateEvent: InvalidStateEvent;
1073
2012
  error?: never;
1074
2013
  $unknown?: never;
1075
2014
  }
1076
2015
  /**
1077
- * @public
1078
2016
  * Internal Server Exception
2017
+ * @public
1079
2018
  */
1080
2019
  interface ErrorMember {
1081
2020
  messageMetadataEvent?: never;
1082
2021
  assistantResponseEvent?: never;
2022
+ dryRunSucceedEvent?: never;
1083
2023
  codeReferenceEvent?: never;
1084
2024
  supplementaryWebLinksEvent?: never;
1085
2025
  followupPromptEvent?: never;
2026
+ codeEvent?: never;
2027
+ intentsEvent?: never;
2028
+ interactionComponentsEvent?: never;
1086
2029
  invalidStateEvent?: never;
1087
2030
  error: InternalServerException;
1088
2031
  $unknown?: never;
@@ -1093,9 +2036,13 @@ export declare namespace ChatResponseStream {
1093
2036
  interface $UnknownMember {
1094
2037
  messageMetadataEvent?: never;
1095
2038
  assistantResponseEvent?: never;
2039
+ dryRunSucceedEvent?: never;
1096
2040
  codeReferenceEvent?: never;
1097
2041
  supplementaryWebLinksEvent?: never;
1098
2042
  followupPromptEvent?: never;
2043
+ codeEvent?: never;
2044
+ intentsEvent?: never;
2045
+ interactionComponentsEvent?: never;
1099
2046
  invalidStateEvent?: never;
1100
2047
  error?: never;
1101
2048
  $unknown: [string, any];
@@ -1103,9 +2050,13 @@ export declare namespace ChatResponseStream {
1103
2050
  interface Visitor<T> {
1104
2051
  messageMetadataEvent: (value: MessageMetadataEvent) => T;
1105
2052
  assistantResponseEvent: (value: AssistantResponseEvent) => T;
2053
+ dryRunSucceedEvent: (value: DryRunSucceedEvent) => T;
1106
2054
  codeReferenceEvent: (value: CodeReferenceEvent) => T;
1107
2055
  supplementaryWebLinksEvent: (value: SupplementaryWebLinksEvent) => T;
1108
2056
  followupPromptEvent: (value: FollowupPromptEvent) => T;
2057
+ codeEvent: (value: CodeEvent) => T;
2058
+ intentsEvent: (value: IntentsEvent) => T;
2059
+ interactionComponentsEvent: (value: InteractionComponentsEvent) => T;
1109
2060
  invalidStateEvent: (value: InvalidStateEvent) => T;
1110
2061
  error: (value: InternalServerException) => T;
1111
2062
  _: (name: string, value: any) => T;
@@ -1125,6 +2076,10 @@ export declare const ChatTriggerType: {
1125
2076
  * Indicates the Chat was triggered in response to a IDE diagnostic
1126
2077
  */
1127
2078
  readonly DIAGNOSTIC: "DIAGNOSTIC";
2079
+ /**
2080
+ * Indicates the Chat was triggered in response to an inline chat event
2081
+ */
2082
+ readonly INLINE_CHAT: "INLINE_CHAT";
1128
2083
  /**
1129
2084
  * Indicates the Chat was triggered due to an explicit chat request by an end-user
1130
2085
  */
@@ -1133,7 +2088,7 @@ export declare const ChatTriggerType: {
1133
2088
  /**
1134
2089
  * @public
1135
2090
  */
1136
- export type ChatTriggerType = (typeof ChatTriggerType)[keyof typeof ChatTriggerType];
2091
+ export type ChatTriggerType = typeof ChatTriggerType[keyof typeof ChatTriggerType];
1137
2092
  /**
1138
2093
  * @public
1139
2094
  * @enum
@@ -1145,73 +2100,109 @@ export declare const ContextTruncationScheme: {
1145
2100
  /**
1146
2101
  * @public
1147
2102
  */
1148
- export type ContextTruncationScheme = (typeof ContextTruncationScheme)[keyof typeof ContextTruncationScheme];
2103
+ export type ContextTruncationScheme = typeof ContextTruncationScheme[keyof typeof ContextTruncationScheme];
1149
2104
  /**
1150
- * @public
1151
2105
  * Structure to represent the current state of a chat conversation.
2106
+ * @public
1152
2107
  */
1153
2108
  export interface ConversationState {
1154
2109
  /**
1155
- * @public
1156
2110
  * Unique identifier for the chat conversation stream
2111
+ * @public
1157
2112
  */
1158
2113
  conversationId?: string;
1159
2114
  /**
1160
- * @public
1161
2115
  * Holds the history of chat messages.
2116
+ * @public
1162
2117
  */
1163
- history?: ChatMessage[];
2118
+ history?: (ChatMessage)[];
1164
2119
  /**
1165
- * @public
1166
2120
  * Holds the current message being processed or displayed.
2121
+ * @public
1167
2122
  */
1168
2123
  currentMessage: ChatMessage | undefined;
1169
2124
  /**
1170
- * @public
1171
2125
  * Trigger Reason for Chat
2126
+ * @public
1172
2127
  */
1173
- chatTriggerType: ChatTriggerType | string | undefined;
2128
+ chatTriggerType: ChatTriggerType | undefined;
1174
2129
  customizationArn?: string;
1175
2130
  }
1176
2131
  /**
1177
2132
  * @internal
1178
2133
  */
1179
2134
  export declare const ConversationStateFilterSensitiveLog: (obj: ConversationState) => any;
2135
+ /**
2136
+ * This exception is translated to a 204 as it succeeded the IAM Auth.
2137
+ * @public
2138
+ */
2139
+ export declare class DryRunOperationException extends __BaseException {
2140
+ readonly name: "DryRunOperationException";
2141
+ readonly $fault: "client";
2142
+ responseCode?: number;
2143
+ /**
2144
+ * @internal
2145
+ */
2146
+ constructor(opts: __ExceptionOptionType<DryRunOperationException, __BaseException>);
2147
+ }
1180
2148
  /**
1181
2149
  * @public
1182
2150
  * @enum
1183
2151
  */
1184
2152
  export declare const TransformationDownloadArtifactType: {
1185
2153
  readonly CLIENT_INSTRUCTIONS: "ClientInstructions";
2154
+ readonly GENERATED_CODE: "GeneratedCode";
1186
2155
  readonly LOGS: "Logs";
1187
2156
  };
1188
2157
  /**
1189
2158
  * @public
1190
2159
  */
1191
- export type TransformationDownloadArtifactType = (typeof TransformationDownloadArtifactType)[keyof typeof TransformationDownloadArtifactType];
2160
+ export type TransformationDownloadArtifactType = typeof TransformationDownloadArtifactType[keyof typeof TransformationDownloadArtifactType];
1192
2161
  /**
1193
- * @public
1194
2162
  * Transformation export context
2163
+ * @public
1195
2164
  */
1196
2165
  export interface TransformationExportContext {
1197
2166
  downloadArtifactId: string | undefined;
1198
- downloadArtifactType: TransformationDownloadArtifactType | string | undefined;
2167
+ downloadArtifactType: TransformationDownloadArtifactType | undefined;
1199
2168
  }
1200
2169
  /**
2170
+ * Unit test generation export context
1201
2171
  * @public
2172
+ */
2173
+ export interface UnitTestGenerationExportContext {
2174
+ /**
2175
+ * Test generation job group name
2176
+ * @public
2177
+ */
2178
+ testGenerationJobGroupName: string | undefined;
2179
+ testGenerationJobId?: string;
2180
+ }
2181
+ /**
1202
2182
  * Export Context
2183
+ * @public
1203
2184
  */
1204
- export type ExportContext = ExportContext.TransformationExportContextMember | ExportContext.$UnknownMember;
2185
+ export type ExportContext = ExportContext.TransformationExportContextMember | ExportContext.UnitTestGenerationExportContextMember | ExportContext.$UnknownMember;
1205
2186
  /**
1206
2187
  * @public
1207
2188
  */
1208
2189
  export declare namespace ExportContext {
1209
2190
  /**
1210
- * @public
1211
2191
  * Transformation export context
2192
+ * @public
1212
2193
  */
1213
2194
  interface TransformationExportContextMember {
1214
2195
  transformationExportContext: TransformationExportContext;
2196
+ unitTestGenerationExportContext?: never;
2197
+ $unknown?: never;
2198
+ }
2199
+ /**
2200
+ * Unit test generation export context
2201
+ * @public
2202
+ */
2203
+ interface UnitTestGenerationExportContextMember {
2204
+ transformationExportContext?: never;
2205
+ unitTestGenerationExportContext: UnitTestGenerationExportContext;
1215
2206
  $unknown?: never;
1216
2207
  }
1217
2208
  /**
@@ -1219,10 +2210,12 @@ export declare namespace ExportContext {
1219
2210
  */
1220
2211
  interface $UnknownMember {
1221
2212
  transformationExportContext?: never;
2213
+ unitTestGenerationExportContext?: never;
1222
2214
  $unknown: [string, any];
1223
2215
  }
1224
2216
  interface Visitor<T> {
1225
2217
  transformationExportContext: (value: TransformationExportContext) => T;
2218
+ unitTestGenerationExportContext: (value: UnitTestGenerationExportContext) => T;
1226
2219
  _: (name: string, value: any) => T;
1227
2220
  }
1228
2221
  const visit: <T>(value: ExportContext, visitor: Visitor<T>) => T;
@@ -1240,14 +2233,18 @@ export declare const ExportIntent: {
1240
2233
  * Code Transformation
1241
2234
  */
1242
2235
  readonly TRANSFORMATION: "TRANSFORMATION";
2236
+ /**
2237
+ * Unit Test
2238
+ */
2239
+ readonly UNIT_TESTS: "UNIT_TESTS";
1243
2240
  };
1244
2241
  /**
1245
2242
  * @public
1246
2243
  */
1247
- export type ExportIntent = (typeof ExportIntent)[keyof typeof ExportIntent];
2244
+ export type ExportIntent = typeof ExportIntent[keyof typeof ExportIntent];
1248
2245
  /**
1249
- * @public
1250
2246
  * Response Stream
2247
+ * @public
1251
2248
  */
1252
2249
  export type ResultArchiveStream = ResultArchiveStream.BinaryMetadataEventMember | ResultArchiveStream.BinaryPayloadEventMember | ResultArchiveStream.InternalServerExceptionMember | ResultArchiveStream.$UnknownMember;
1253
2250
  /**
@@ -1255,8 +2252,8 @@ export type ResultArchiveStream = ResultArchiveStream.BinaryMetadataEventMember
1255
2252
  */
1256
2253
  export declare namespace ResultArchiveStream {
1257
2254
  /**
1258
- * @public
1259
2255
  * Payload Part
2256
+ * @public
1260
2257
  */
1261
2258
  interface BinaryMetadataEventMember {
1262
2259
  binaryMetadataEvent: BinaryMetadataEvent;
@@ -1265,8 +2262,8 @@ export declare namespace ResultArchiveStream {
1265
2262
  $unknown?: never;
1266
2263
  }
1267
2264
  /**
1268
- * @public
1269
2265
  * Payload Part
2266
+ * @public
1270
2267
  */
1271
2268
  interface BinaryPayloadEventMember {
1272
2269
  binaryMetadataEvent?: never;
@@ -1275,8 +2272,8 @@ export declare namespace ResultArchiveStream {
1275
2272
  $unknown?: never;
1276
2273
  }
1277
2274
  /**
1278
- * @public
1279
2275
  * This exception is thrown when an unexpected error occurred during the processing of a request.
2276
+ * @public
1280
2277
  */
1281
2278
  interface InternalServerExceptionMember {
1282
2279
  binaryMetadataEvent?: never;
@@ -1306,46 +2303,46 @@ export declare namespace ResultArchiveStream {
1306
2303
  */
1307
2304
  export declare const ResultArchiveStreamFilterSensitiveLog: (obj: ResultArchiveStream) => any;
1308
2305
  /**
1309
- * @public
1310
2306
  * This exception is thrown when request was denied due to caller exceeding their usage limits
2307
+ * @public
1311
2308
  */
1312
2309
  export declare class ServiceQuotaExceededException extends __BaseException {
1313
- readonly name: 'ServiceQuotaExceededException';
1314
- readonly $fault: 'client';
2310
+ readonly name: "ServiceQuotaExceededException";
2311
+ readonly $fault: "client";
1315
2312
  /**
1316
2313
  * @internal
1317
2314
  */
1318
2315
  constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
1319
2316
  }
1320
2317
  /**
1321
- * @public
1322
2318
  * Represents a Workspace state uploaded to S3 for Async Code Actions
2319
+ * @public
1323
2320
  */
1324
2321
  export interface WorkspaceState {
1325
2322
  /**
1326
- * @public
1327
2323
  * Upload ID representing an Upload using a PreSigned URL
2324
+ * @public
1328
2325
  */
1329
2326
  uploadId: string | undefined;
1330
2327
  /**
1331
- * @public
1332
2328
  * Primary programming language of the Workspace
2329
+ * @public
1333
2330
  */
1334
2331
  programmingLanguage: ProgrammingLanguage | undefined;
1335
2332
  /**
1336
- * @public
1337
2333
  * Workspace context truncation schemes based on usecase
2334
+ * @public
1338
2335
  */
1339
- contextTruncationScheme?: ContextTruncationScheme | string;
2336
+ contextTruncationScheme?: ContextTruncationScheme;
1340
2337
  }
1341
2338
  /**
1342
- * @public
1343
2339
  * Structure to represent a new generate assistant response request.
2340
+ * @public
1344
2341
  */
1345
2342
  export interface GenerateAssistantResponseRequest {
1346
2343
  /**
1347
- * @public
1348
2344
  * Structure to represent the current state of a chat conversation.
2345
+ * @public
1349
2346
  */
1350
2347
  conversationState: ConversationState | undefined;
1351
2348
  profileArn?: string;
@@ -1355,18 +2352,18 @@ export interface GenerateAssistantResponseRequest {
1355
2352
  */
1356
2353
  export declare const GenerateAssistantResponseRequestFilterSensitiveLog: (obj: GenerateAssistantResponseRequest) => any;
1357
2354
  /**
1358
- * @public
1359
2355
  * Structure to represent generate assistant response response.
2356
+ * @public
1360
2357
  */
1361
2358
  export interface GenerateAssistantResponseResponse {
1362
2359
  /**
1363
- * @public
1364
2360
  * ID which represents a multi-turn conversation
2361
+ * @public
1365
2362
  */
1366
2363
  conversationId: string | undefined;
1367
2364
  /**
1368
- * @public
1369
2365
  * Streaming events from UniDirectional Streaming Conversational APIs.
2366
+ * @public
1370
2367
  */
1371
2368
  generateAssistantResponseResponse: AsyncIterable<ChatResponseStream> | undefined;
1372
2369
  }
@@ -1375,30 +2372,30 @@ export interface GenerateAssistantResponseResponse {
1375
2372
  */
1376
2373
  export declare const GenerateAssistantResponseResponseFilterSensitiveLog: (obj: GenerateAssistantResponseResponse) => any;
1377
2374
  /**
1378
- * @public
1379
2375
  * Structure to represent a new ExportResultArchive request.
2376
+ * @public
1380
2377
  */
1381
2378
  export interface ExportResultArchiveRequest {
1382
2379
  exportId: string | undefined;
1383
2380
  /**
1384
- * @public
1385
2381
  * Export Intent
2382
+ * @public
1386
2383
  */
1387
- exportIntent: ExportIntent | string | undefined;
2384
+ exportIntent: ExportIntent | undefined;
1388
2385
  /**
1389
- * @public
1390
2386
  * Export Context
2387
+ * @public
1391
2388
  */
1392
2389
  exportContext?: ExportContext;
1393
2390
  }
1394
2391
  /**
1395
- * @public
1396
2392
  * Structure to represent ExportResultArchive response.
2393
+ * @public
1397
2394
  */
1398
2395
  export interface ExportResultArchiveResponse {
1399
2396
  /**
1400
- * @public
1401
2397
  * Response Stream
2398
+ * @public
1402
2399
  */
1403
2400
  body: AsyncIterable<ResultArchiveStream> | undefined;
1404
2401
  }
@@ -1408,17 +2405,104 @@ export interface ExportResultArchiveResponse {
1408
2405
  export declare const ExportResultArchiveResponseFilterSensitiveLog: (obj: ExportResultArchiveResponse) => any;
1409
2406
  /**
1410
2407
  * @public
2408
+ * @enum
2409
+ */
2410
+ export declare const Origin: {
2411
+ /**
2412
+ * AWS Chatbot
2413
+ */
2414
+ readonly CHATBOT: "CHATBOT";
2415
+ /**
2416
+ * AWS Management Console (https://<region>.console.aws.amazon.com)
2417
+ */
2418
+ readonly CONSOLE: "CONSOLE";
2419
+ /**
2420
+ * AWS Documentation Website (https://docs.aws.amazon.com)
2421
+ */
2422
+ readonly DOCUMENTATION: "DOCUMENTATION";
2423
+ /**
2424
+ * Any IDE caller.
2425
+ */
2426
+ readonly IDE: "IDE";
2427
+ /**
2428
+ * AWS Marketing Website (https://aws.amazon.com)
2429
+ */
2430
+ readonly MARKETING: "MARKETING";
2431
+ /**
2432
+ * MD.
2433
+ */
2434
+ readonly MD: "MD";
2435
+ /**
2436
+ * AWS Mobile Application (ACMA)
2437
+ */
2438
+ readonly MOBILE: "MOBILE";
2439
+ /**
2440
+ * Internal Service Traffic (Integ Tests, Canaries, etc.). This is the default when no Origin header present in request.
2441
+ */
2442
+ readonly SERVICE_INTERNAL: "SERVICE_INTERNAL";
2443
+ /**
2444
+ * Unified Search in AWS Management Console (https://<region>.console.aws.amazon.com)
2445
+ */
2446
+ readonly UNIFIED_SEARCH: "UNIFIED_SEARCH";
2447
+ /**
2448
+ * Origin header is not set.
2449
+ */
2450
+ readonly UNKNOWN: "UNKNOWN";
2451
+ };
2452
+ /**
2453
+ * @public
2454
+ */
2455
+ export type Origin = typeof Origin[keyof typeof Origin];
2456
+ /**
2457
+ * Structure to represent a SendMessage request.
2458
+ * @public
2459
+ */
2460
+ export interface SendMessageRequest {
2461
+ /**
2462
+ * Structure to represent the current state of a chat conversation.
2463
+ * @public
2464
+ */
2465
+ conversationState: ConversationState | undefined;
2466
+ profileArn?: string;
2467
+ /**
2468
+ * The origin of the caller
2469
+ * @public
2470
+ */
2471
+ source?: Origin;
2472
+ dryRun?: boolean;
2473
+ }
2474
+ /**
2475
+ * @internal
2476
+ */
2477
+ export declare const SendMessageRequestFilterSensitiveLog: (obj: SendMessageRequest) => any;
2478
+ /**
2479
+ * Structure to represent a SendMessage response.
2480
+ * @public
2481
+ */
2482
+ export interface SendMessageResponse {
2483
+ /**
2484
+ * Streaming events from UniDirectional Streaming Conversational APIs.
2485
+ * @public
2486
+ */
2487
+ sendMessageResponse: AsyncIterable<ChatResponseStream> | undefined;
2488
+ }
2489
+ /**
2490
+ * @internal
2491
+ */
2492
+ export declare const SendMessageResponseFilterSensitiveLog: (obj: SendMessageResponse) => any;
2493
+ /**
1411
2494
  * Structure to represent execute planning interaction request.
2495
+ * @public
1412
2496
  */
1413
2497
  export interface GenerateTaskAssistPlanRequest {
1414
2498
  /**
1415
- * @public
1416
2499
  * Structure to represent the current state of a chat conversation.
2500
+ * @public
1417
2501
  */
1418
2502
  conversationState: ConversationState | undefined;
1419
2503
  /**
1420
- * @public
1421
2504
  * Represents a Workspace state uploaded to S3 for Async Code Actions
2505
+ * @public
1422
2506
  */
1423
2507
  workspaceState: WorkspaceState | undefined;
1424
2508
  }
@@ -1427,13 +2511,13 @@ export interface GenerateTaskAssistPlanRequest {
1427
2511
  */
1428
2512
  export declare const GenerateTaskAssistPlanRequestFilterSensitiveLog: (obj: GenerateTaskAssistPlanRequest) => any;
1429
2513
  /**
1430
- * @public
1431
2514
  * Structure to represent execute planning interaction response.
2515
+ * @public
1432
2516
  */
1433
2517
  export interface GenerateTaskAssistPlanResponse {
1434
2518
  /**
1435
- * @public
1436
2519
  * Streaming events from UniDirectional Streaming Conversational APIs.
2520
+ * @public
1437
2521
  */
1438
2522
  planningResponseStream?: AsyncIterable<ChatResponseStream>;
1439
2523
  }