@aws/lsp-codewhisperer 0.0.47 → 0.0.49

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 (740) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/out/client/streamingClient/codewhispererStreamingClient.d.ts +1 -1
  3. package/out/client/streamingClient/codewhispererStreamingClient.js +2 -2
  4. package/out/client/streamingClient/codewhispererStreamingClient.js.map +1 -1
  5. package/out/client/token/bearer-token-service.json +140 -2
  6. package/out/language-server/agenticChat/agenticChatController.d.ts +1 -1
  7. package/out/language-server/agenticChat/agenticChatController.js +33 -29
  8. package/out/language-server/agenticChat/agenticChatController.js.map +1 -1
  9. package/out/language-server/agenticChat/agenticChatEventParser.d.ts +1 -1
  10. package/out/language-server/agenticChat/constants.d.ts +1 -1
  11. package/out/language-server/agenticChat/constants.js +3 -1
  12. package/out/language-server/agenticChat/constants.js.map +1 -1
  13. package/out/language-server/agenticChat/context/agenticChatTriggerContext.d.ts +2 -2
  14. package/out/language-server/agenticChat/context/agenticChatTriggerContext.js +6 -6
  15. package/out/language-server/agenticChat/context/agenticChatTriggerContext.js.map +1 -1
  16. package/out/language-server/agenticChat/errors.js +2 -2
  17. package/out/language-server/agenticChat/errors.js.map +1 -1
  18. package/out/language-server/agenticChat/qAgenticChatServer.js +2 -1
  19. package/out/language-server/agenticChat/qAgenticChatServer.js.map +1 -1
  20. package/out/language-server/agenticChat/tabBarController.js +6 -1
  21. package/out/language-server/agenticChat/tabBarController.js.map +1 -1
  22. package/out/language-server/agenticChat/textFormatting.d.ts +1 -1
  23. package/out/language-server/agenticChat/tools/chatDb/chatDb.d.ts +59 -13
  24. package/out/language-server/agenticChat/tools/chatDb/chatDb.js +142 -120
  25. package/out/language-server/agenticChat/tools/chatDb/chatDb.js.map +1 -1
  26. package/out/language-server/agenticChat/tools/chatDb/chatHistoryMaintainer.d.ts +99 -0
  27. package/out/language-server/agenticChat/tools/chatDb/chatHistoryMaintainer.js +318 -0
  28. package/out/language-server/agenticChat/tools/chatDb/chatHistoryMaintainer.js.map +1 -0
  29. package/out/language-server/agenticChat/tools/chatDb/util.d.ts +41 -1
  30. package/out/language-server/agenticChat/tools/chatDb/util.js +71 -1
  31. package/out/language-server/agenticChat/tools/chatDb/util.js.map +1 -1
  32. package/out/language-server/agenticChat/tools/codeSearch.d.ts +1 -1
  33. package/out/language-server/chat/chatController.js +3 -3
  34. package/out/language-server/chat/chatController.js.map +1 -1
  35. package/out/language-server/chat/chatEventParser.d.ts +1 -1
  36. package/out/language-server/chat/chatSessionService.d.ts +1 -1
  37. package/out/language-server/chat/contexts/documentContext.d.ts +1 -1
  38. package/out/language-server/chat/contexts/triggerContext.d.ts +1 -1
  39. package/out/language-server/chat/contexts/triggerContext.js +5 -5
  40. package/out/language-server/chat/contexts/triggerContext.js.map +1 -1
  41. package/out/language-server/chat/quickActions.d.ts +1 -7
  42. package/out/language-server/chat/quickActions.js +1 -7
  43. package/out/language-server/chat/quickActions.js.map +1 -1
  44. package/out/language-server/chat/telemetry/chatTelemetryController.d.ts +1 -1
  45. package/out/language-server/chat/telemetry/chatTelemetryController.js +8 -8
  46. package/out/language-server/chat/telemetry/chatTelemetryController.js.map +1 -1
  47. package/out/language-server/chat/tools/relevantTextDocuments.d.ts +1 -1
  48. package/out/language-server/inline-completion/auto-trigger/editPredictionConfig.d.ts +49 -0
  49. package/out/language-server/inline-completion/auto-trigger/editPredictionConfig.js +66 -0
  50. package/out/language-server/inline-completion/auto-trigger/editPredictionConfig.js.map +1 -0
  51. package/out/language-server/inline-completion/auto-trigger/languageDetector.d.ts +24 -0
  52. package/out/language-server/inline-completion/auto-trigger/languageDetector.js +353 -0
  53. package/out/language-server/inline-completion/auto-trigger/languageDetector.js.map +1 -0
  54. package/out/language-server/inline-completion/diffUtils.d.ts +50 -0
  55. package/out/language-server/inline-completion/diffUtils.js +202 -0
  56. package/out/language-server/inline-completion/diffUtils.js.map +1 -0
  57. package/out/language-server/inline-completion/tracker/codeEditTracker.d.ts +178 -0
  58. package/out/language-server/inline-completion/tracker/codeEditTracker.js +478 -0
  59. package/out/language-server/inline-completion/tracker/codeEditTracker.js.map +1 -0
  60. package/out/language-server/inline-completion/tracker/cursorTracker.d.ts +114 -0
  61. package/out/language-server/inline-completion/tracker/cursorTracker.js +188 -0
  62. package/out/language-server/inline-completion/tracker/cursorTracker.js.map +1 -0
  63. package/out/language-server/inline-completion/tracker/rejectedEditTracker.d.ts +57 -0
  64. package/out/language-server/inline-completion/tracker/rejectedEditTracker.js +123 -0
  65. package/out/language-server/inline-completion/tracker/rejectedEditTracker.js.map +1 -0
  66. package/out/language-server/netTransform/transformHandler.js +2 -2
  67. package/out/language-server/netTransform/transformHandler.js.map +1 -1
  68. package/out/shared/models/model.d.ts +26 -1
  69. package/out/shared/streamingClientService.d.ts +1 -1
  70. package/out/shared/streamingClientService.js +2 -2
  71. package/out/shared/streamingClientService.js.map +1 -1
  72. package/out/shared/supplementalContextUtil/supplementalContextUtil.d.ts +10 -1
  73. package/out/shared/supplementalContextUtil/supplementalContextUtil.js +41 -0
  74. package/out/shared/supplementalContextUtil/supplementalContextUtil.js.map +1 -1
  75. package/out/shared/utils.d.ts +1 -1
  76. package/out/shared/utils.js +5 -5
  77. package/out/shared/utils.js.map +1 -1
  78. package/package.json +4 -4
  79. package/node_modules/@amzn/codewhisperer-streaming/LICENSE +0 -201
  80. package/node_modules/@amzn/codewhisperer-streaming/README.md +0 -941
  81. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreaming.js +0 -19
  82. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreamingClient.js +0 -49
  83. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/auth/httpAuthExtensionConfiguration.js +0 -43
  84. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/auth/httpAuthSchemeProvider.js +0 -46
  85. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/ExportResultArchiveCommand.js +0 -26
  86. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateAssistantResponseCommand.js +0 -26
  87. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateTaskAssistPlanCommand.js +0 -26
  88. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/SendMessageCommand.js +0 -26
  89. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/index.js +0 -7
  90. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/endpoints.js +0 -211
  91. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/extensionConfiguration.js +0 -2
  92. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/index.js +0 -10
  93. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/models/CodeWhispererStreamingServiceException.js +0 -12
  94. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/models/index.js +0 -4
  95. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/models/models_0.js +0 -1090
  96. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/protocols/Aws_restJson1.js +0 -687
  97. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.browser.js +0 -39
  98. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.js +0 -53
  99. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.native.js +0 -15
  100. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.shared.js +0 -32
  101. package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeExtensions.js +0 -25
  102. package/node_modules/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreaming.js +0 -15
  103. package/node_modules/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreamingClient.js +0 -45
  104. package/node_modules/@amzn/codewhisperer-streaming/dist-es/auth/httpAuthExtensionConfiguration.js +0 -38
  105. package/node_modules/@amzn/codewhisperer-streaming/dist-es/auth/httpAuthSchemeProvider.js +0 -40
  106. package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/ExportResultArchiveCommand.js +0 -22
  107. package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/GenerateAssistantResponseCommand.js +0 -22
  108. package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/GenerateTaskAssistPlanCommand.js +0 -22
  109. package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/SendMessageCommand.js +0 -22
  110. package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/index.js +0 -4
  111. package/node_modules/@amzn/codewhisperer-streaming/dist-es/endpoints.js +0 -207
  112. package/node_modules/@amzn/codewhisperer-streaming/dist-es/extensionConfiguration.js +0 -1
  113. package/node_modules/@amzn/codewhisperer-streaming/dist-es/index.js +0 -5
  114. package/node_modules/@amzn/codewhisperer-streaming/dist-es/models/CodeWhispererStreamingServiceException.js +0 -8
  115. package/node_modules/@amzn/codewhisperer-streaming/dist-es/models/index.js +0 -1
  116. package/node_modules/@amzn/codewhisperer-streaming/dist-es/models/models_0.js +0 -998
  117. package/node_modules/@amzn/codewhisperer-streaming/dist-es/protocols/Aws_restJson1.js +0 -676
  118. package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.browser.js +0 -34
  119. package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.js +0 -48
  120. package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.native.js +0 -11
  121. package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.shared.js +0 -28
  122. package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeExtensions.js +0 -21
  123. package/node_modules/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreaming.d.ts +0 -37
  124. package/node_modules/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreamingClient.d.ts +0 -192
  125. package/node_modules/@amzn/codewhisperer-streaming/dist-types/auth/httpAuthExtensionConfiguration.d.ts +0 -29
  126. package/node_modules/@amzn/codewhisperer-streaming/dist-types/auth/httpAuthSchemeProvider.d.ts +0 -67
  127. package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/ExportResultArchiveCommand.d.ts +0 -114
  128. package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/GenerateAssistantResponseCommand.d.ts +0 -788
  129. package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/GenerateTaskAssistPlanCommand.d.ts +0 -801
  130. package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/SendMessageCommand.d.ts +0 -801
  131. package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/index.d.ts +0 -4
  132. package/node_modules/@amzn/codewhisperer-streaming/dist-types/endpoints.d.ts +0 -2
  133. package/node_modules/@amzn/codewhisperer-streaming/dist-types/extensionConfiguration.d.ts +0 -9
  134. package/node_modules/@amzn/codewhisperer-streaming/dist-types/index.d.ts +0 -7
  135. package/node_modules/@amzn/codewhisperer-streaming/dist-types/models/CodeWhispererStreamingServiceException.d.ts +0 -14
  136. package/node_modules/@amzn/codewhisperer-streaming/dist-types/models/index.d.ts +0 -1
  137. package/node_modules/@amzn/codewhisperer-streaming/dist-types/models/models_0.d.ts +0 -3223
  138. package/node_modules/@amzn/codewhisperer-streaming/dist-types/protocols/Aws_restJson1.d.ts +0 -38
  139. package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.browser.d.ts +0 -48
  140. package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.d.ts +0 -47
  141. package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.native.d.ts +0 -44
  142. package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.shared.d.ts +0 -25
  143. package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeExtensions.d.ts +0 -17
  144. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/LICENSE +0 -201
  145. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/README.md +0 -53
  146. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +0 -217
  147. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/constants.js +0 -2
  148. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +0 -88
  149. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +0 -8
  150. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +0 -11
  151. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +0 -8
  152. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/index.js +0 -3
  153. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +0 -5
  154. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +0 -7
  155. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +0 -7
  156. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +0 -8
  157. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +0 -8
  158. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +0 -12
  159. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +0 -9
  160. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +0 -8
  161. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +0 -7
  162. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +0 -3
  163. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +0 -18
  164. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +0 -3
  165. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +0 -14
  166. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +0 -12
  167. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +0 -9
  168. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +0 -5
  169. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +0 -3
  170. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +0 -5
  171. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +0 -2
  172. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +0 -5
  173. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +0 -5
  174. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +0 -5
  175. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +0 -4
  176. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +0 -5
  177. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/package.json +0 -67
  178. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/LICENSE +0 -201
  179. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/README.md +0 -4
  180. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -294
  181. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
  182. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
  183. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
  184. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
  185. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
  186. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
  187. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
  188. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
  189. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
  190. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
  191. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
  192. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
  193. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
  194. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
  195. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
  196. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
  197. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
  198. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
  199. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
  200. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
  201. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
  202. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
  203. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/index.js +0 -33
  204. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
  205. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
  206. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
  207. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
  208. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
  209. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
  210. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
  211. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
  212. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
  213. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
  214. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
  215. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
  216. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
  217. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
  218. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
  219. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
  220. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
  221. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
  222. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
  223. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
  224. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
  225. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
  226. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
  227. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
  228. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
  229. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
  230. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
  231. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
  232. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
  233. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
  234. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -59
  235. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
  236. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
  237. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -47
  238. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
  239. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
  240. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -1
  241. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
  242. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -33
  243. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
  244. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
  245. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
  246. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
  247. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
  248. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
  249. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
  250. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
  251. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
  252. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
  253. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
  254. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
  255. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
  256. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
  257. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
  258. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
  259. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
  260. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
  261. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
  262. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
  263. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
  264. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
  265. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
  266. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
  267. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
  268. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
  269. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
  270. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -54
  271. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
  272. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
  273. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -25
  274. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
  275. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
  276. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -1
  277. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
  278. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -33
  279. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
  280. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
  281. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
  282. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
  283. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
  284. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
  285. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
  286. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
  287. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
  288. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
  289. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
  290. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
  291. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
  292. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
  293. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
  294. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
  295. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
  296. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
  297. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
  298. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/package.json +0 -56
  299. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/LICENSE +0 -201
  300. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/README.md +0 -4
  301. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-cjs/AbortController.js +0 -1
  302. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-cjs/AbortSignal.js +0 -1
  303. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-cjs/index.js +0 -84
  304. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-es/AbortController.js +0 -9
  305. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +0 -20
  306. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-es/index.js +0 -2
  307. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +0 -16
  308. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +0 -21
  309. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/index.d.ts +0 -9
  310. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +0 -16
  311. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +0 -21
  312. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +0 -9
  313. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/package.json +0 -62
  314. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/LICENSE +0 -201
  315. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/README.md +0 -9
  316. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/constants.js +0 -1
  317. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/get-transformed-headers.js +0 -1
  318. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/index.js +0 -806
  319. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/node-http-handler.js +0 -1
  320. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-manager.js +0 -1
  321. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-pool.js +0 -1
  322. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-handler.js +0 -1
  323. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/readable.mock.js +0 -1
  324. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/server.mock.js +0 -1
  325. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/set-connection-timeout.js +0 -1
  326. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-keep-alive.js +0 -1
  327. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-timeout.js +0 -1
  328. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/collector.js +0 -1
  329. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/index.js +0 -1
  330. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/readable.mock.js +0 -1
  331. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/timing.js +0 -1
  332. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/write-request-body.js +0 -1
  333. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/constants.js +0 -1
  334. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +0 -9
  335. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/index.js +0 -3
  336. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +0 -209
  337. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +0 -86
  338. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +0 -32
  339. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +0 -167
  340. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +0 -19
  341. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +0 -88
  342. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +0 -36
  343. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +0 -22
  344. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +0 -24
  345. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +0 -11
  346. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +0 -41
  347. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +0 -19
  348. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/timing.js +0 -4
  349. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +0 -56
  350. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +0 -5
  351. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +0 -4
  352. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +0 -3
  353. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +0 -45
  354. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +0 -24
  355. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +0 -12
  356. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +0 -62
  357. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +0 -12
  358. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +0 -12
  359. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +0 -2
  360. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +0 -6
  361. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +0 -2
  362. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +0 -5
  363. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +0 -6
  364. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +0 -12
  365. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +0 -8
  366. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +0 -5
  367. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +0 -4
  368. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +0 -3
  369. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +0 -45
  370. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +0 -24
  371. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +0 -12
  372. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +0 -62
  373. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +0 -12
  374. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +0 -12
  375. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +0 -2
  376. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +0 -6
  377. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +0 -2
  378. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +0 -5
  379. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +0 -6
  380. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +0 -12
  381. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +0 -8
  382. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +0 -11
  383. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +0 -11
  384. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/package.json +0 -67
  385. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/LICENSE +0 -201
  386. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/README.md +0 -115
  387. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/abort-handler.js +0 -1
  388. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/abort.js +0 -1
  389. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +0 -1
  390. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +0 -1
  391. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +0 -1
  392. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +0 -1
  393. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +0 -1
  394. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/auth.js +0 -1
  395. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/index.js +0 -1
  396. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +0 -1
  397. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/checksum.js +0 -1
  398. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/client.js +0 -1
  399. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/command.js +0 -1
  400. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/connection/config.js +0 -1
  401. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/connection/index.js +0 -1
  402. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/connection/manager.js +0 -1
  403. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/connection/pool.js +0 -1
  404. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/crypto.js +0 -1
  405. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +0 -1
  406. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/encode.js +0 -1
  407. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoint.js +0 -1
  408. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +0 -1
  409. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +0 -1
  410. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +0 -1
  411. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +0 -1
  412. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/index.js +0 -1
  413. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +0 -1
  414. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/eventStream.js +0 -1
  415. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +0 -1
  416. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +0 -1
  417. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +0 -1
  418. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/index.js +0 -1
  419. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/retry.js +0 -1
  420. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +0 -1
  421. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/feature-ids.js +0 -1
  422. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +0 -1
  423. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/http.js +0 -1
  424. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +0 -1
  425. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +0 -1
  426. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/identity.js +0 -1
  427. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/index.js +0 -1
  428. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +0 -1
  429. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/index.js +0 -144
  430. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/logger.js +0 -1
  431. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/middleware.js +0 -1
  432. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/pagination.js +0 -1
  433. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/profile.js +0 -1
  434. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/response.js +0 -1
  435. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/retry.js +0 -1
  436. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/schema/schema.js +0 -1
  437. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/schema/sentinels.js +0 -1
  438. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/schema/traits.js +0 -1
  439. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/serde.js +0 -1
  440. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/shapes.js +0 -1
  441. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/signature.js +0 -1
  442. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/stream.js +0 -1
  443. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +0 -1
  444. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-input-types.js +0 -1
  445. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-output-types.js +0 -1
  446. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transfer.js +0 -1
  447. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +0 -1
  448. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +0 -1
  449. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/exact.js +0 -1
  450. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/mutable.js +0 -1
  451. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +0 -1
  452. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +0 -1
  453. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/uri.js +0 -1
  454. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/util.js +0 -1
  455. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/waiter.js +0 -1
  456. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/abort-handler.js +0 -1
  457. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/abort.js +0 -1
  458. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +0 -5
  459. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +0 -1
  460. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +0 -1
  461. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +0 -1
  462. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +0 -1
  463. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/auth.js +0 -5
  464. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/index.js +0 -6
  465. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +0 -1
  466. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/checksum.js +0 -1
  467. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/client.js +0 -1
  468. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/command.js +0 -1
  469. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/connection/config.js +0 -1
  470. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/connection/index.js +0 -3
  471. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/connection/manager.js +0 -1
  472. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/connection/pool.js +0 -1
  473. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/crypto.js +0 -1
  474. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +0 -1
  475. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/encode.js +0 -1
  476. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoint.js +0 -5
  477. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +0 -1
  478. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +0 -1
  479. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +0 -1
  480. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +0 -1
  481. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/index.js +0 -5
  482. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/shared.js +0 -1
  483. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/eventStream.js +0 -1
  484. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/checksum.js +0 -38
  485. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +0 -7
  486. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +0 -1
  487. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/index.js +0 -3
  488. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/retry.js +0 -1
  489. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +0 -1
  490. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/feature-ids.js +0 -1
  491. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +0 -1
  492. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/http.js +0 -5
  493. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +0 -1
  494. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +0 -1
  495. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/identity.js +0 -1
  496. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/index.js +0 -4
  497. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +0 -1
  498. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/index.js +0 -40
  499. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/logger.js +0 -1
  500. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/middleware.js +0 -1
  501. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/pagination.js +0 -1
  502. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/profile.js +0 -6
  503. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/response.js +0 -1
  504. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/retry.js +0 -1
  505. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/schema/schema.js +0 -1
  506. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/schema/sentinels.js +0 -1
  507. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/schema/traits.js +0 -1
  508. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/serde.js +0 -1
  509. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/shapes.js +0 -1
  510. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/signature.js +0 -1
  511. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/stream.js +0 -1
  512. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +0 -1
  513. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +0 -1
  514. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +0 -1
  515. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transfer.js +0 -6
  516. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +0 -1
  517. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +0 -1
  518. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/exact.js +0 -1
  519. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/mutable.js +0 -1
  520. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/no-undefined.js +0 -1
  521. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/type-transform.js +0 -1
  522. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/uri.js +0 -1
  523. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/util.js +0 -1
  524. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/waiter.js +0 -1
  525. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/abort-handler.d.ts +0 -7
  526. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/abort.d.ts +0 -50
  527. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +0 -7
  528. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +0 -49
  529. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +0 -20
  530. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +0 -41
  531. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +0 -14
  532. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/auth.d.ts +0 -57
  533. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/index.d.ts +0 -6
  534. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +0 -40
  535. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/checksum.d.ts +0 -63
  536. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/client.d.ts +0 -57
  537. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/command.d.ts +0 -25
  538. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/connection/config.d.ts +0 -10
  539. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/connection/index.d.ts +0 -3
  540. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/connection/manager.d.ts +0 -34
  541. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/connection/pool.d.ts +0 -32
  542. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/crypto.d.ts +0 -60
  543. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +0 -25
  544. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/encode.d.ts +0 -31
  545. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoint.d.ts +0 -77
  546. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +0 -27
  547. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +0 -10
  548. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +0 -28
  549. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +0 -16
  550. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +0 -5
  551. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +0 -55
  552. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/eventStream.d.ts +0 -137
  553. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +0 -58
  554. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +0 -33
  555. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -9
  556. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/index.d.ts +0 -4
  557. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +0 -18
  558. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +0 -35
  559. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/feature-ids.d.ts +0 -16
  560. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +0 -121
  561. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/http.d.ts +0 -112
  562. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +0 -14
  563. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +0 -31
  564. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/identity.d.ts +0 -15
  565. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/index.d.ts +0 -4
  566. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +0 -14
  567. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/index.d.ts +0 -40
  568. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/logger.d.ts +0 -13
  569. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/middleware.d.ts +0 -534
  570. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/pagination.d.ts +0 -33
  571. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/profile.d.ts +0 -30
  572. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/response.d.ts +0 -40
  573. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/retry.d.ts +0 -133
  574. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/schema/schema.d.ts +0 -263
  575. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +0 -65
  576. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/schema/traits.d.ts +0 -46
  577. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/serde.d.ts +0 -114
  578. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/shapes.d.ts +0 -82
  579. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/signature.d.ts +0 -155
  580. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/stream.d.ts +0 -22
  581. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +0 -32
  582. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
  583. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
  584. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transfer.d.ts +0 -41
  585. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +0 -26
  586. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +0 -77
  587. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/exact.d.ts +0 -6
  588. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +0 -6
  589. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +0 -68
  590. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +0 -34
  591. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +0 -7
  592. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +0 -50
  593. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +0 -7
  594. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +0 -49
  595. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +0 -20
  596. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +0 -41
  597. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +0 -14
  598. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +0 -57
  599. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +0 -6
  600. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +0 -40
  601. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +0 -63
  602. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +0 -57
  603. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +0 -25
  604. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +0 -10
  605. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +0 -3
  606. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +0 -34
  607. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +0 -32
  608. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +0 -60
  609. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +0 -41
  610. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +0 -31
  611. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +0 -77
  612. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +0 -27
  613. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +0 -10
  614. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +0 -28
  615. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +0 -16
  616. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +0 -5
  617. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +0 -55
  618. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +0 -137
  619. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +0 -58
  620. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +0 -33
  621. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +0 -9
  622. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +0 -4
  623. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +0 -18
  624. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +0 -35
  625. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +0 -16
  626. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +0 -121
  627. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +0 -112
  628. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +0 -14
  629. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +0 -31
  630. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +0 -15
  631. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +0 -4
  632. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +0 -14
  633. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +0 -40
  634. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +0 -13
  635. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +0 -534
  636. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +0 -33
  637. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +0 -30
  638. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +0 -40
  639. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +0 -133
  640. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +0 -278
  641. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +0 -65
  642. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +0 -46
  643. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +0 -114
  644. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +0 -82
  645. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +0 -155
  646. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +0 -22
  647. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +0 -32
  648. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
  649. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
  650. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +0 -41
  651. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +0 -26
  652. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +0 -81
  653. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +0 -14
  654. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +0 -6
  655. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +0 -88
  656. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +0 -41
  657. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +0 -17
  658. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +0 -192
  659. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +0 -35
  660. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/uri.d.ts +0 -17
  661. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/util.d.ts +0 -176
  662. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/waiter.d.ts +0 -35
  663. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/package.json +0 -60
  664. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/CHANGELOG.md +0 -274
  665. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/CONTRIBUTING.md +0 -18
  666. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/LICENSE.md +0 -9
  667. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/README.md +0 -466
  668. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/bin/uuid +0 -2
  669. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/index.js +0 -79
  670. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/md5.js +0 -223
  671. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/native.js +0 -11
  672. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/nil.js +0 -8
  673. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/parse.js +0 -45
  674. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/regex.js +0 -8
  675. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/rng.js +0 -25
  676. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/sha1.js +0 -104
  677. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/stringify.js +0 -44
  678. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/v1.js +0 -107
  679. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/v3.js +0 -16
  680. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/v35.js +0 -80
  681. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/v4.js +0 -43
  682. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/v5.js +0 -16
  683. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/validate.js +0 -17
  684. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/version.js +0 -21
  685. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/index.js +0 -9
  686. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/md5.js +0 -215
  687. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/native.js +0 -4
  688. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/nil.js +0 -1
  689. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/parse.js +0 -35
  690. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/regex.js +0 -1
  691. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/rng.js +0 -18
  692. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/sha1.js +0 -96
  693. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/stringify.js +0 -33
  694. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/v1.js +0 -95
  695. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/v3.js +0 -4
  696. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/v35.js +0 -66
  697. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/v4.js +0 -29
  698. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/v5.js +0 -4
  699. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/validate.js +0 -7
  700. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/version.js +0 -11
  701. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/index.js +0 -9
  702. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/md5.js +0 -13
  703. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/native.js +0 -4
  704. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/nil.js +0 -1
  705. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/parse.js +0 -35
  706. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/regex.js +0 -1
  707. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/rng.js +0 -12
  708. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/sha1.js +0 -13
  709. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/stringify.js +0 -33
  710. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/v1.js +0 -95
  711. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/v3.js +0 -4
  712. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/v35.js +0 -66
  713. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/v4.js +0 -29
  714. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/v5.js +0 -4
  715. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/validate.js +0 -7
  716. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/version.js +0 -11
  717. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/index.js +0 -79
  718. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/md5-browser.js +0 -223
  719. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/md5.js +0 -23
  720. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/native-browser.js +0 -11
  721. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/native.js +0 -15
  722. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/nil.js +0 -8
  723. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/parse.js +0 -45
  724. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/regex.js +0 -8
  725. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/rng-browser.js +0 -25
  726. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/rng.js +0 -24
  727. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/sha1-browser.js +0 -104
  728. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/sha1.js +0 -23
  729. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/stringify.js +0 -44
  730. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/uuid-bin.js +0 -85
  731. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/v1.js +0 -107
  732. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/v3.js +0 -16
  733. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/v35.js +0 -80
  734. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/v4.js +0 -43
  735. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/v5.js +0 -16
  736. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/validate.js +0 -17
  737. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/version.js +0 -21
  738. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/package.json +0 -135
  739. package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/wrapper.mjs +0 -10
  740. package/node_modules/@amzn/codewhisperer-streaming/package.json +0 -88
@@ -1,3223 +0,0 @@
1
- import { CodeWhispererStreamingServiceException as __BaseException } from "./CodeWhispererStreamingServiceException";
2
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
3
- import { DocumentType as __DocumentType } from "@smithy/types";
4
- /**
5
- * @public
6
- * @enum
7
- */
8
- export declare const AccessDeniedExceptionReason: {
9
- readonly UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS: "UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS";
10
- readonly UNAUTHORIZED_WORKSPACE_CONTEXT_FEATURE_ACCESS: "UNAUTHORIZED_WORKSPACE_CONTEXT_FEATURE_ACCESS";
11
- };
12
- /**
13
- * @public
14
- */
15
- export type AccessDeniedExceptionReason = typeof AccessDeniedExceptionReason[keyof typeof AccessDeniedExceptionReason];
16
- /**
17
- * This exception is thrown when the user does not have sufficient access to perform this action.
18
- * @public
19
- */
20
- export declare class AccessDeniedException extends __BaseException {
21
- readonly name: "AccessDeniedException";
22
- readonly $fault: "client";
23
- /**
24
- * Reason for AccessDeniedException
25
- * @public
26
- */
27
- reason?: AccessDeniedExceptionReason | undefined;
28
- /**
29
- * @internal
30
- */
31
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
32
- }
33
- /**
34
- * Structure representing a single entry of additional contextual content
35
- * @public
36
- */
37
- export interface AdditionalContentEntry {
38
- /**
39
- * The name/identifier for this context entry
40
- * @public
41
- */
42
- name: string | undefined;
43
- /**
44
- * A description of what this context entry represents
45
- * @public
46
- */
47
- description: string | undefined;
48
- /**
49
- * The actual contextual content
50
- * @public
51
- */
52
- innerContext?: string | undefined;
53
- }
54
- /**
55
- * @internal
56
- */
57
- export declare const AdditionalContentEntryFilterSensitiveLog: (obj: AdditionalContentEntry) => any;
58
- /**
59
- * This exception is thrown when an unexpected error occurred during the processing of a request.
60
- * @public
61
- */
62
- export declare class InternalServerException extends __BaseException {
63
- readonly name: "InternalServerException";
64
- readonly $fault: "server";
65
- $retryable: {};
66
- /**
67
- * @internal
68
- */
69
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
70
- }
71
- /**
72
- * This exception is thrown when describing a resource that does not exist.
73
- * @public
74
- */
75
- export declare class ResourceNotFoundException extends __BaseException {
76
- readonly name: "ResourceNotFoundException";
77
- readonly $fault: "client";
78
- /**
79
- * @internal
80
- */
81
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
82
- }
83
- /**
84
- * @public
85
- * @enum
86
- */
87
- export declare const ThrottlingExceptionReason: {
88
- readonly MONTHLY_REQUEST_COUNT: "MONTHLY_REQUEST_COUNT";
89
- };
90
- /**
91
- * @public
92
- */
93
- export type ThrottlingExceptionReason = typeof ThrottlingExceptionReason[keyof typeof ThrottlingExceptionReason];
94
- /**
95
- * This exception is thrown when request was denied due to request throttling.
96
- * @public
97
- */
98
- export declare class ThrottlingException extends __BaseException {
99
- readonly name: "ThrottlingException";
100
- readonly $fault: "client";
101
- $retryable: {
102
- throttling: boolean;
103
- };
104
- /**
105
- * Reason for ThrottlingException
106
- * @public
107
- */
108
- reason?: ThrottlingExceptionReason | undefined;
109
- /**
110
- * @internal
111
- */
112
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
113
- }
114
- /**
115
- * @public
116
- * @enum
117
- */
118
- export declare const ValidationExceptionReason: {
119
- readonly CONTENT_LENGTH_EXCEEDS_THRESHOLD: "CONTENT_LENGTH_EXCEEDS_THRESHOLD";
120
- readonly INVALID_CONVERSATION_ID: "INVALID_CONVERSATION_ID";
121
- readonly INVALID_KMS_GRANT: "INVALID_KMS_GRANT";
122
- };
123
- /**
124
- * @public
125
- */
126
- export type ValidationExceptionReason = typeof ValidationExceptionReason[keyof typeof ValidationExceptionReason];
127
- /**
128
- * This exception is thrown when the input fails to satisfy the constraints specified by the service.
129
- * @public
130
- */
131
- export declare class ValidationException extends __BaseException {
132
- readonly name: "ValidationException";
133
- readonly $fault: "client";
134
- /**
135
- * Reason for ValidationException
136
- * @public
137
- */
138
- reason?: ValidationExceptionReason | undefined;
139
- /**
140
- * @internal
141
- */
142
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
143
- }
144
- /**
145
- * Description of a user's context when they are calling Q Chat from AppStudio
146
- * @public
147
- */
148
- export interface AppStudioState {
149
- /**
150
- * The namespace of the context. Examples: 'ui.Button', 'ui.Table.DataSource', 'ui.Table.RowActions.Button', 'logic.invokeAWS', 'logic.JavaScript'
151
- * @public
152
- */
153
- namespace: string | undefined;
154
- /**
155
- * The name of the property. Examples: 'visibility', 'disability', 'value', 'code'
156
- * @public
157
- */
158
- propertyName: string | undefined;
159
- /**
160
- * The value of the property.
161
- * @public
162
- */
163
- propertyValue?: string | undefined;
164
- /**
165
- * Context about how the property is used
166
- * @public
167
- */
168
- propertyContext: string | undefined;
169
- }
170
- /**
171
- * @internal
172
- */
173
- export declare const AppStudioStateFilterSensitiveLog: (obj: AppStudioState) => any;
174
- /**
175
- * Streaming Response Event for Assistant Markdown text message.
176
- * @public
177
- */
178
- export interface AssistantResponseEvent {
179
- /**
180
- * The content of the text message in markdown format.
181
- * @public
182
- */
183
- content: string | undefined;
184
- }
185
- /**
186
- * @internal
187
- */
188
- export declare const AssistantResponseEventFilterSensitiveLog: (obj: AssistantResponseEvent) => any;
189
- /**
190
- * @public
191
- * @enum
192
- */
193
- export declare const UserIntent: {
194
- /**
195
- * Apply Common Best Practices
196
- */
197
- readonly APPLY_COMMON_BEST_PRACTICES: "APPLY_COMMON_BEST_PRACTICES";
198
- /**
199
- * Cite Sources
200
- */
201
- readonly CITE_SOURCES: "CITE_SOURCES";
202
- /**
203
- * generate code
204
- */
205
- readonly CODE_GENERATION: "CODE_GENERATION";
206
- /**
207
- * Explain Code Selection
208
- */
209
- readonly EXPLAIN_CODE_SELECTION: "EXPLAIN_CODE_SELECTION";
210
- /**
211
- * Explain Code Line By Line
212
- */
213
- readonly EXPLAIN_LINE_BY_LINE: "EXPLAIN_LINE_BY_LINE";
214
- /**
215
- * Generate CloudFormation Template
216
- */
217
- readonly GENERATE_CLOUDFORMATION_TEMPLATE: "GENERATE_CLOUDFORMATION_TEMPLATE";
218
- /**
219
- * Generate Unit Tests
220
- */
221
- readonly GENERATE_UNIT_TESTS: "GENERATE_UNIT_TESTS";
222
- /**
223
- * Improve Code
224
- */
225
- readonly IMPROVE_CODE: "IMPROVE_CODE";
226
- /**
227
- * Show More Examples
228
- */
229
- readonly SHOW_EXAMPLES: "SHOW_EXAMPLES";
230
- /**
231
- * Suggest Alternative Implementation
232
- */
233
- readonly SUGGEST_ALTERNATE_IMPLEMENTATION: "SUGGEST_ALTERNATE_IMPLEMENTATION";
234
- };
235
- /**
236
- * @public
237
- */
238
- export type UserIntent = typeof UserIntent[keyof typeof UserIntent];
239
- /**
240
- * Followup Prompt for the Assistant Response
241
- * @public
242
- */
243
- export interface FollowupPrompt {
244
- /**
245
- * The content of the text message in markdown format.
246
- * @public
247
- */
248
- content: string | undefined;
249
- /**
250
- * User Intent
251
- * @public
252
- */
253
- userIntent?: UserIntent | undefined;
254
- }
255
- /**
256
- * @internal
257
- */
258
- export declare const FollowupPromptFilterSensitiveLog: (obj: FollowupPrompt) => any;
259
- /**
260
- * Represents span in a text.
261
- * @public
262
- */
263
- export interface Span {
264
- start?: number | undefined;
265
- end?: number | undefined;
266
- }
267
- /**
268
- * Code Reference / Repository details
269
- * @public
270
- */
271
- export interface Reference {
272
- /**
273
- * License name
274
- * @public
275
- */
276
- licenseName?: string | undefined;
277
- /**
278
- * Code Repsitory for the associated reference
279
- * @public
280
- */
281
- repository?: string | undefined;
282
- /**
283
- * Respository URL
284
- * @public
285
- */
286
- url?: string | undefined;
287
- /**
288
- * Span / Range for the Reference
289
- * @public
290
- */
291
- recommendationContentSpan?: Span | undefined;
292
- }
293
- /**
294
- * Represents an additional reference link retured with the Chat message
295
- * @public
296
- */
297
- export interface SupplementaryWebLink {
298
- /**
299
- * URL of the web reference link.
300
- * @public
301
- */
302
- url: string | undefined;
303
- /**
304
- * Title of the web reference link.
305
- * @public
306
- */
307
- title: string | undefined;
308
- /**
309
- * Relevant text snippet from the link.
310
- * @public
311
- */
312
- snippet?: string | undefined;
313
- }
314
- /**
315
- * @internal
316
- */
317
- export declare const SupplementaryWebLinkFilterSensitiveLog: (obj: SupplementaryWebLink) => any;
318
- /**
319
- * Contains information about a tool that the model is requesting be run. The model uses the result from the tool to generate a response.
320
- * @public
321
- */
322
- export interface ToolUse {
323
- /**
324
- * The ID for the tool request.
325
- * @public
326
- */
327
- toolUseId: string | undefined;
328
- /**
329
- * The name for the tool.
330
- * @public
331
- */
332
- name: string | undefined;
333
- /**
334
- * The input to pass to the tool.
335
- * @public
336
- */
337
- input: __DocumentType | undefined;
338
- }
339
- /**
340
- * @internal
341
- */
342
- export declare const ToolUseFilterSensitiveLog: (obj: ToolUse) => any;
343
- /**
344
- * Markdown text message.
345
- * @public
346
- */
347
- export interface AssistantResponseMessage {
348
- /**
349
- * Unique identifier for the chat message
350
- * @public
351
- */
352
- messageId?: string | undefined;
353
- /**
354
- * The content of the text message in markdown format.
355
- * @public
356
- */
357
- content: string | undefined;
358
- /**
359
- * Web References
360
- * @public
361
- */
362
- supplementaryWebLinks?: (SupplementaryWebLink)[] | undefined;
363
- /**
364
- * Code References
365
- * @public
366
- */
367
- references?: (Reference)[] | undefined;
368
- /**
369
- * Followup Prompt
370
- * @public
371
- */
372
- followupPrompt?: FollowupPrompt | undefined;
373
- /**
374
- * ToolUse Request
375
- * @public
376
- */
377
- toolUses?: (ToolUse)[] | undefined;
378
- }
379
- /**
380
- * @internal
381
- */
382
- export declare const AssistantResponseMessageFilterSensitiveLog: (obj: AssistantResponseMessage) => any;
383
- /**
384
- * @public
385
- * @enum
386
- */
387
- export declare const ConflictExceptionReason: {
388
- readonly CUSTOMER_KMS_KEY_DISABLED: "CUSTOMER_KMS_KEY_DISABLED";
389
- readonly CUSTOMER_KMS_KEY_INVALID_KEY_POLICY: "CUSTOMER_KMS_KEY_INVALID_KEY_POLICY";
390
- readonly MISMATCHED_KMS_KEY: "MISMATCHED_KMS_KEY";
391
- };
392
- /**
393
- * @public
394
- */
395
- export type ConflictExceptionReason = typeof ConflictExceptionReason[keyof typeof ConflictExceptionReason];
396
- /**
397
- * This exception is thrown when the action to perform could not be completed because the resource is in a conflicting state.
398
- * @public
399
- */
400
- export declare class ConflictException extends __BaseException {
401
- readonly name: "ConflictException";
402
- readonly $fault: "client";
403
- /**
404
- * Reason for ConflictException
405
- * @public
406
- */
407
- reason?: ConflictExceptionReason | undefined;
408
- /**
409
- * @internal
410
- */
411
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
412
- }
413
- /**
414
- * Programming Languages supported by CodeWhisperer
415
- * @public
416
- */
417
- export interface ProgrammingLanguage {
418
- languageName: string | undefined;
419
- }
420
- /**
421
- * @public
422
- * @enum
423
- */
424
- export declare const ContentChecksumType: {
425
- readonly SHA_256: "SHA_256";
426
- };
427
- /**
428
- * @public
429
- */
430
- export type ContentChecksumType = typeof ContentChecksumType[keyof typeof ContentChecksumType];
431
- /**
432
- * Payload Part
433
- * @public
434
- */
435
- export interface BinaryMetadataEvent {
436
- /**
437
- * Content length of the binary payload
438
- * @public
439
- */
440
- size?: number | undefined;
441
- /**
442
- * Content type of the response
443
- * @public
444
- */
445
- mimeType?: string | undefined;
446
- /**
447
- * Content checksum of the binary payload
448
- * @public
449
- */
450
- contentChecksum?: string | undefined;
451
- /**
452
- * Content checksum type of the binary payload
453
- * @public
454
- */
455
- contentChecksumType?: ContentChecksumType | undefined;
456
- }
457
- /**
458
- * @internal
459
- */
460
- export declare const BinaryMetadataEventFilterSensitiveLog: (obj: BinaryMetadataEvent) => any;
461
- /**
462
- * Payload Part
463
- * @public
464
- */
465
- export interface BinaryPayloadEvent {
466
- /**
467
- * Payload Part's body
468
- * @public
469
- */
470
- bytes?: Uint8Array | undefined;
471
- }
472
- /**
473
- * @internal
474
- */
475
- export declare const BinaryPayloadEventFilterSensitiveLog: (obj: BinaryPayloadEvent) => any;
476
- /**
477
- * @public
478
- * @enum
479
- */
480
- export declare const ImageFormat: {
481
- readonly GIF: "gif";
482
- readonly JPEG: "jpeg";
483
- readonly PNG: "png";
484
- readonly WEBP: "webp";
485
- };
486
- /**
487
- * @public
488
- */
489
- export type ImageFormat = typeof ImageFormat[keyof typeof ImageFormat];
490
- /**
491
- * Image bytes limited to ~10MB considering overhead of base64 encoding
492
- * @public
493
- */
494
- export type ImageSource = ImageSource.BytesMember | ImageSource.$UnknownMember;
495
- /**
496
- * @public
497
- */
498
- export declare namespace ImageSource {
499
- interface BytesMember {
500
- bytes: Uint8Array;
501
- $unknown?: never;
502
- }
503
- /**
504
- * @public
505
- */
506
- interface $UnknownMember {
507
- bytes?: never;
508
- $unknown: [string, any];
509
- }
510
- interface Visitor<T> {
511
- bytes: (value: Uint8Array) => T;
512
- _: (name: string, value: any) => T;
513
- }
514
- const visit: <T>(value: ImageSource, visitor: Visitor<T>) => T;
515
- }
516
- /**
517
- * @internal
518
- */
519
- export declare const ImageSourceFilterSensitiveLog: (obj: ImageSource) => any;
520
- /**
521
- * Represents the image source itself and the format of the image.
522
- * @public
523
- */
524
- export interface ImageBlock {
525
- format: ImageFormat | undefined;
526
- /**
527
- * Image bytes limited to ~10MB considering overhead of base64 encoding
528
- * @public
529
- */
530
- source: ImageSource | undefined;
531
- }
532
- /**
533
- * @internal
534
- */
535
- export declare const ImageBlockFilterSensitiveLog: (obj: ImageBlock) => any;
536
- /**
537
- * @public
538
- * @enum
539
- */
540
- export declare const Origin: {
541
- /**
542
- * Any AI Editor.
543
- */
544
- readonly AI_EDITOR: "AI_EDITOR";
545
- /**
546
- * AWS Chatbot
547
- */
548
- readonly CHATBOT: "CHATBOT";
549
- /**
550
- * Any CLI caller.
551
- */
552
- readonly CLI: "CLI";
553
- /**
554
- * AWS Management Console (https://<region>.console.aws.amazon.com)
555
- */
556
- readonly CONSOLE: "CONSOLE";
557
- /**
558
- * AWS Documentation Website (https://docs.aws.amazon.com)
559
- */
560
- readonly DOCUMENTATION: "DOCUMENTATION";
561
- /**
562
- * Any caller from GitLab Q integration.
563
- */
564
- readonly GITLAB: "GITLAB";
565
- /**
566
- * Any IDE caller.
567
- */
568
- readonly IDE: "IDE";
569
- /**
570
- * AWS Marketing Website (https://aws.amazon.com)
571
- */
572
- readonly MARKETING: "MARKETING";
573
- /**
574
- * MD.
575
- */
576
- readonly MD: "MD";
577
- /**
578
- * AWS Mobile Application (ACMA)
579
- */
580
- readonly MOBILE: "MOBILE";
581
- /**
582
- * Amazon OpenSearch dashboard
583
- */
584
- readonly OPENSEARCH_DASHBOARD: "OPENSEARCH_DASHBOARD";
585
- /**
586
- * Amazon SageMaker's Rome Chat.
587
- */
588
- readonly SAGE_MAKER: "SAGE_MAKER";
589
- /**
590
- * Internal Service Traffic (Integ Tests, Canaries, etc.). This is the default when no Origin header present in request.
591
- */
592
- readonly SERVICE_INTERNAL: "SERVICE_INTERNAL";
593
- /**
594
- * Unified Search in AWS Management Console (https://<region>.console.aws.amazon.com)
595
- */
596
- readonly UNIFIED_SEARCH: "UNIFIED_SEARCH";
597
- /**
598
- * Origin header is not set.
599
- */
600
- readonly UNKNOWN: "UNKNOWN";
601
- };
602
- /**
603
- * @public
604
- */
605
- export type Origin = typeof Origin[keyof typeof Origin];
606
- /**
607
- * Information about the state of the AWS management console page from which the user is calling
608
- * @public
609
- */
610
- export interface ConsoleState {
611
- region?: string | undefined;
612
- consoleUrl?: string | undefined;
613
- serviceId?: string | undefined;
614
- serviceConsolePage?: string | undefined;
615
- serviceSubconsolePage?: string | undefined;
616
- taskName?: string | undefined;
617
- }
618
- /**
619
- * @internal
620
- */
621
- export declare const ConsoleStateFilterSensitiveLog: (obj: ConsoleState) => any;
622
- /**
623
- * @public
624
- * @enum
625
- */
626
- export declare const DiagnosticSeverity: {
627
- readonly ERROR: "ERROR";
628
- readonly HINT: "HINT";
629
- readonly INFORMATION: "INFORMATION";
630
- readonly WARNING: "WARNING";
631
- };
632
- /**
633
- * @public
634
- */
635
- export type DiagnosticSeverity = typeof DiagnosticSeverity[keyof typeof DiagnosticSeverity];
636
- /**
637
- * Structure to represent metadata about a Runtime Diagnostics
638
- * @public
639
- */
640
- export interface RuntimeDiagnostic {
641
- /**
642
- * A human-readable string describing the source of the diagnostic
643
- * @public
644
- */
645
- source: string | undefined;
646
- /**
647
- * Diagnostic Error type
648
- * @public
649
- */
650
- severity: DiagnosticSeverity | undefined;
651
- /**
652
- * The diagnostic's message.
653
- * @public
654
- */
655
- message: string | undefined;
656
- }
657
- /**
658
- * @internal
659
- */
660
- export declare const RuntimeDiagnosticFilterSensitiveLog: (obj: RuntimeDiagnostic) => any;
661
- /**
662
- * Structure to capture a description for an error code.
663
- * @public
664
- */
665
- export interface CodeDescription {
666
- /**
667
- * An URI to open with more information about the diagnostic error.
668
- * @public
669
- */
670
- href: string | undefined;
671
- }
672
- /**
673
- * @internal
674
- */
675
- export declare const CodeDescriptionFilterSensitiveLog: (obj: CodeDescription) => any;
676
- /**
677
- * @public
678
- * @enum
679
- */
680
- export declare const SymbolType: {
681
- readonly DECLARATION: "DECLARATION";
682
- readonly USAGE: "USAGE";
683
- };
684
- /**
685
- * @public
686
- */
687
- export type SymbolType = typeof SymbolType[keyof typeof SymbolType];
688
- /**
689
- * @public
690
- */
691
- export interface DocumentSymbol {
692
- /**
693
- * Name of the Document Symbol
694
- * @public
695
- */
696
- name: string | undefined;
697
- /**
698
- * Symbol type - DECLARATION / USAGE
699
- * @public
700
- */
701
- type: SymbolType | undefined;
702
- /**
703
- * Symbol package / source for FullyQualified names
704
- * @public
705
- */
706
- source?: string | undefined;
707
- }
708
- /**
709
- * Represents a Text Document / File
710
- * @public
711
- */
712
- export interface TextDocument {
713
- /**
714
- * Filepath relative to the root of the workspace
715
- * @public
716
- */
717
- relativeFilePath: string | undefined;
718
- /**
719
- * The text document's language identifier.
720
- * @public
721
- */
722
- programmingLanguage?: ProgrammingLanguage | undefined;
723
- /**
724
- * Content of the text document
725
- * @public
726
- */
727
- text?: string | undefined;
728
- /**
729
- * DocumentSymbols parsed from a text document
730
- * @public
731
- */
732
- documentSymbols?: (DocumentSymbol)[] | undefined;
733
- }
734
- /**
735
- * @internal
736
- */
737
- export declare const TextDocumentFilterSensitiveLog: (obj: TextDocument) => any;
738
- /**
739
- * Indicates Cursor postion in a Text Document
740
- * @public
741
- */
742
- export interface Position {
743
- /**
744
- * Line position in a document.
745
- * @public
746
- */
747
- line: number | undefined;
748
- /**
749
- * Character offset on a line in a document (zero-based)
750
- * @public
751
- */
752
- character: number | undefined;
753
- }
754
- /**
755
- * Indicates Range / Span in a Text Document
756
- * @public
757
- */
758
- export interface Range {
759
- /**
760
- * The range's start position.
761
- * @public
762
- */
763
- start: Position | undefined;
764
- /**
765
- * The range's end position.
766
- * @public
767
- */
768
- end: Position | undefined;
769
- }
770
- /**
771
- * Represents a location inside a resource, such as a line inside a text file.
772
- * @public
773
- */
774
- export interface DiagnosticLocation {
775
- uri: string | undefined;
776
- /**
777
- * Indicates Range / Span in a Text Document
778
- * @public
779
- */
780
- range: Range | undefined;
781
- }
782
- /**
783
- * @internal
784
- */
785
- export declare const DiagnosticLocationFilterSensitiveLog: (obj: DiagnosticLocation) => any;
786
- /**
787
- * Represents a related message and source code location for a diagnostic.
788
- * @public
789
- */
790
- export interface DiagnosticRelatedInformation {
791
- /**
792
- * The location of this related diagnostic information.
793
- * @public
794
- */
795
- location: DiagnosticLocation | undefined;
796
- /**
797
- * The message of this related diagnostic information.
798
- * @public
799
- */
800
- message: string | undefined;
801
- }
802
- /**
803
- * @internal
804
- */
805
- export declare const DiagnosticRelatedInformationFilterSensitiveLog: (obj: DiagnosticRelatedInformation) => any;
806
- /**
807
- * @public
808
- * @enum
809
- */
810
- export declare const DiagnosticTag: {
811
- readonly DEPRECATED: "DEPRECATED";
812
- readonly UNNECESSARY: "UNNECESSARY";
813
- };
814
- /**
815
- * @public
816
- */
817
- export type DiagnosticTag = typeof DiagnosticTag[keyof typeof DiagnosticTag];
818
- /**
819
- * Structure to represent metadata about a TextDocument Diagnostic
820
- * @public
821
- */
822
- export interface TextDocumentDiagnostic {
823
- /**
824
- * Represents a Text Document associated with Diagnostic
825
- * @public
826
- */
827
- document: TextDocument | undefined;
828
- /**
829
- * The range at which the message applies.
830
- * @public
831
- */
832
- range: Range | undefined;
833
- /**
834
- * A human-readable string describing the source of the diagnostic
835
- * @public
836
- */
837
- source: string | undefined;
838
- /**
839
- * Diagnostic Error type
840
- * @public
841
- */
842
- severity: DiagnosticSeverity | undefined;
843
- /**
844
- * The diagnostic's message.
845
- * @public
846
- */
847
- message: string | undefined;
848
- /**
849
- * The diagnostic's code, which might appear in the user interface.
850
- * @public
851
- */
852
- code?: string | undefined;
853
- /**
854
- * An optional property to describe the error code.
855
- * @public
856
- */
857
- codeDescription?: CodeDescription | undefined;
858
- /**
859
- * Additional metadata about the diagnostic.
860
- * @public
861
- */
862
- tags?: (DiagnosticTag)[] | undefined;
863
- /**
864
- * an array of related diagnostic information, e.g. when symbol-names within a scope collide all definitions can be marked via this property.
865
- * @public
866
- */
867
- relatedInformation?: (DiagnosticRelatedInformation)[] | undefined;
868
- /**
869
- * A data entry field that is preserved between a `textDocument/publishDiagnostics` notification and `textDocument/codeAction` request.
870
- * @public
871
- */
872
- data?: string | undefined;
873
- }
874
- /**
875
- * @internal
876
- */
877
- export declare const TextDocumentDiagnosticFilterSensitiveLog: (obj: TextDocumentDiagnostic) => any;
878
- /**
879
- * Represents a Diagnostic message
880
- * @public
881
- */
882
- export type Diagnostic = Diagnostic.RuntimeDiagnosticMember | Diagnostic.TextDocumentDiagnosticMember | Diagnostic.$UnknownMember;
883
- /**
884
- * @public
885
- */
886
- export declare namespace Diagnostic {
887
- /**
888
- * Diagnostics originating from a TextDocument
889
- * @public
890
- */
891
- interface TextDocumentDiagnosticMember {
892
- textDocumentDiagnostic: TextDocumentDiagnostic;
893
- runtimeDiagnostic?: never;
894
- $unknown?: never;
895
- }
896
- /**
897
- * Diagnostics originating from a Runtime
898
- * @public
899
- */
900
- interface RuntimeDiagnosticMember {
901
- textDocumentDiagnostic?: never;
902
- runtimeDiagnostic: RuntimeDiagnostic;
903
- $unknown?: never;
904
- }
905
- /**
906
- * @public
907
- */
908
- interface $UnknownMember {
909
- textDocumentDiagnostic?: never;
910
- runtimeDiagnostic?: never;
911
- $unknown: [string, any];
912
- }
913
- interface Visitor<T> {
914
- textDocumentDiagnostic: (value: TextDocumentDiagnostic) => T;
915
- runtimeDiagnostic: (value: RuntimeDiagnostic) => T;
916
- _: (name: string, value: any) => T;
917
- }
918
- const visit: <T>(value: Diagnostic, visitor: Visitor<T>) => T;
919
- }
920
- /**
921
- * @internal
922
- */
923
- export declare const DiagnosticFilterSensitiveLog: (obj: Diagnostic) => any;
924
- /**
925
- * Represents the state of the Cursor in an Editor
926
- * @public
927
- */
928
- export type CursorState = CursorState.PositionMember | CursorState.RangeMember | CursorState.$UnknownMember;
929
- /**
930
- * @public
931
- */
932
- export declare namespace CursorState {
933
- /**
934
- * Represents a cursor position in a Text Document
935
- * @public
936
- */
937
- interface PositionMember {
938
- position: Position;
939
- range?: never;
940
- $unknown?: never;
941
- }
942
- /**
943
- * Represents a text selection in a Text Document
944
- * @public
945
- */
946
- interface RangeMember {
947
- position?: never;
948
- range: Range;
949
- $unknown?: never;
950
- }
951
- /**
952
- * @public
953
- */
954
- interface $UnknownMember {
955
- position?: never;
956
- range?: never;
957
- $unknown: [string, any];
958
- }
959
- interface Visitor<T> {
960
- position: (value: Position) => T;
961
- range: (value: Range) => T;
962
- _: (name: string, value: any) => T;
963
- }
964
- const visit: <T>(value: CursorState, visitor: Visitor<T>) => T;
965
- }
966
- /**
967
- * @public
968
- * @enum
969
- */
970
- export declare const ContentType: {
971
- readonly CODE: "CODE";
972
- readonly FILE: "FILE";
973
- readonly PROMPT: "PROMPT";
974
- readonly WORKSPACE: "WORKSPACE";
975
- };
976
- /**
977
- * @public
978
- */
979
- export type ContentType = typeof ContentType[keyof typeof ContentType];
980
- /**
981
- * Represents an IDE retrieved relevant Text Document / File
982
- * @public
983
- */
984
- export interface RelevantTextDocument {
985
- /**
986
- * Filepath relative to the root of the workspace
987
- * @public
988
- */
989
- relativeFilePath: string | undefined;
990
- /**
991
- * The text document's language identifier.
992
- * @public
993
- */
994
- programmingLanguage?: ProgrammingLanguage | undefined;
995
- /**
996
- * Content of the text document
997
- * @public
998
- */
999
- text?: string | undefined;
1000
- /**
1001
- * DocumentSymbols parsed from a text document
1002
- * @public
1003
- */
1004
- documentSymbols?: (DocumentSymbol)[] | undefined;
1005
- /**
1006
- * The type of content(file, prompt, symbol, or workspace)
1007
- * @public
1008
- */
1009
- type?: ContentType | undefined;
1010
- }
1011
- /**
1012
- * @internal
1013
- */
1014
- export declare const RelevantTextDocumentFilterSensitiveLog: (obj: RelevantTextDocument) => any;
1015
- /**
1016
- * Represents the state of an Editor
1017
- * @public
1018
- */
1019
- export interface EditorState {
1020
- /**
1021
- * Represents currently edited file
1022
- * @public
1023
- */
1024
- document?: TextDocument | undefined;
1025
- /**
1026
- * Position of the cursor
1027
- * @public
1028
- */
1029
- cursorState?: CursorState | undefined;
1030
- /**
1031
- * Represents IDE provided relevant files
1032
- * @public
1033
- */
1034
- relevantDocuments?: (RelevantTextDocument)[] | undefined;
1035
- /**
1036
- * Whether service should use relevant document in prompt
1037
- * @public
1038
- */
1039
- useRelevantDocuments?: boolean | undefined;
1040
- /**
1041
- * Represents IDE provided list of workspace folders
1042
- * @public
1043
- */
1044
- workspaceFolders?: (string)[] | undefined;
1045
- }
1046
- /**
1047
- * @internal
1048
- */
1049
- export declare const EditorStateFilterSensitiveLog: (obj: EditorState) => any;
1050
- /**
1051
- * An environment variable
1052
- * @public
1053
- */
1054
- export interface EnvironmentVariable {
1055
- /**
1056
- * The key of an environment variable
1057
- * @public
1058
- */
1059
- key?: string | undefined;
1060
- /**
1061
- * The value of an environment variable
1062
- * @public
1063
- */
1064
- value?: string | undefined;
1065
- }
1066
- /**
1067
- * @internal
1068
- */
1069
- export declare const EnvironmentVariableFilterSensitiveLog: (obj: EnvironmentVariable) => any;
1070
- /**
1071
- * State related to the user's environment
1072
- * @public
1073
- */
1074
- export interface EnvState {
1075
- /**
1076
- * The name of the operating system in use
1077
- * @public
1078
- */
1079
- operatingSystem?: string | undefined;
1080
- /**
1081
- * The current working directory of the environment
1082
- * @public
1083
- */
1084
- currentWorkingDirectory?: string | undefined;
1085
- /**
1086
- * The environment variables set in the current environment
1087
- * @public
1088
- */
1089
- environmentVariables?: (EnvironmentVariable)[] | undefined;
1090
- /**
1091
- * Local timezone offset of the client. For more information, see documentation https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getTimezoneOffset
1092
- * @public
1093
- */
1094
- timezoneOffset?: number | undefined;
1095
- }
1096
- /**
1097
- * @internal
1098
- */
1099
- export declare const EnvStateFilterSensitiveLog: (obj: EnvState) => any;
1100
- /**
1101
- * State related to the Git VSC
1102
- * @public
1103
- */
1104
- export interface GitState {
1105
- /**
1106
- * The output of the command `git status --porcelain=v1 -b`
1107
- * @public
1108
- */
1109
- status?: string | undefined;
1110
- }
1111
- /**
1112
- * @internal
1113
- */
1114
- export declare const GitStateFilterSensitiveLog: (obj: GitState) => any;
1115
- /**
1116
- * An single entry in the shell history
1117
- * @public
1118
- */
1119
- export interface ShellHistoryEntry {
1120
- /**
1121
- * The shell command that was run
1122
- * @public
1123
- */
1124
- command: string | undefined;
1125
- /**
1126
- * The directory the command was ran in
1127
- * @public
1128
- */
1129
- directory?: string | undefined;
1130
- /**
1131
- * The exit code of the command after it finished
1132
- * @public
1133
- */
1134
- exitCode?: number | undefined;
1135
- /**
1136
- * The stdout from the command
1137
- * @public
1138
- */
1139
- stdout?: string | undefined;
1140
- /**
1141
- * The stderr from the command
1142
- * @public
1143
- */
1144
- stderr?: string | undefined;
1145
- }
1146
- /**
1147
- * @internal
1148
- */
1149
- export declare const ShellHistoryEntryFilterSensitiveLog: (obj: ShellHistoryEntry) => any;
1150
- /**
1151
- * Represents the state of a shell
1152
- * @public
1153
- */
1154
- export interface ShellState {
1155
- /**
1156
- * The name of the current shell
1157
- * @public
1158
- */
1159
- shellName: string | undefined;
1160
- /**
1161
- * The history previous shell commands for the current shell
1162
- * @public
1163
- */
1164
- shellHistory?: (ShellHistoryEntry)[] | undefined;
1165
- }
1166
- /**
1167
- * @internal
1168
- */
1169
- export declare const ShellStateFilterSensitiveLog: (obj: ShellState) => any;
1170
- /**
1171
- * @public
1172
- */
1173
- export type ToolResultContentBlock = ToolResultContentBlock.JsonMember | ToolResultContentBlock.TextMember | ToolResultContentBlock.$UnknownMember;
1174
- /**
1175
- * @public
1176
- */
1177
- export declare namespace ToolResultContentBlock {
1178
- /**
1179
- * A tool result that is text.
1180
- * @public
1181
- */
1182
- interface TextMember {
1183
- text: string;
1184
- json?: never;
1185
- $unknown?: never;
1186
- }
1187
- /**
1188
- * A tool result that is JSON format data.
1189
- * @public
1190
- */
1191
- interface JsonMember {
1192
- text?: never;
1193
- json: __DocumentType;
1194
- $unknown?: never;
1195
- }
1196
- /**
1197
- * @public
1198
- */
1199
- interface $UnknownMember {
1200
- text?: never;
1201
- json?: never;
1202
- $unknown: [string, any];
1203
- }
1204
- interface Visitor<T> {
1205
- text: (value: string) => T;
1206
- json: (value: __DocumentType) => T;
1207
- _: (name: string, value: any) => T;
1208
- }
1209
- const visit: <T>(value: ToolResultContentBlock, visitor: Visitor<T>) => T;
1210
- }
1211
- /**
1212
- * @internal
1213
- */
1214
- export declare const ToolResultContentBlockFilterSensitiveLog: (obj: ToolResultContentBlock) => any;
1215
- /**
1216
- * @public
1217
- * @enum
1218
- */
1219
- export declare const ToolResultStatus: {
1220
- readonly ERROR: "error";
1221
- readonly SUCCESS: "success";
1222
- };
1223
- /**
1224
- * @public
1225
- */
1226
- export type ToolResultStatus = typeof ToolResultStatus[keyof typeof ToolResultStatus];
1227
- /**
1228
- * A tool result that contains the results for a tool request that was previously made.
1229
- * @public
1230
- */
1231
- export interface ToolResult {
1232
- /**
1233
- * The ID for the tool request.
1234
- * @public
1235
- */
1236
- toolUseId: string | undefined;
1237
- /**
1238
- * Content of the tool result.
1239
- * @public
1240
- */
1241
- content: (ToolResultContentBlock)[] | undefined;
1242
- /**
1243
- * Status of the tools result.
1244
- * @public
1245
- */
1246
- status?: ToolResultStatus | undefined;
1247
- }
1248
- /**
1249
- * @internal
1250
- */
1251
- export declare const ToolResultFilterSensitiveLog: (obj: ToolResult) => any;
1252
- /**
1253
- * The input schema for the tool in JSON format.
1254
- * @public
1255
- */
1256
- export interface ToolInputSchema {
1257
- json?: __DocumentType | undefined;
1258
- }
1259
- /**
1260
- * @internal
1261
- */
1262
- export declare const ToolInputSchemaFilterSensitiveLog: (obj: ToolInputSchema) => any;
1263
- /**
1264
- * The specification for the tool.
1265
- * @public
1266
- */
1267
- export interface ToolSpecification {
1268
- /**
1269
- * The input schema for the tool in JSON format.
1270
- * @public
1271
- */
1272
- inputSchema: ToolInputSchema | undefined;
1273
- /**
1274
- * The name for the tool.
1275
- * @public
1276
- */
1277
- name: string | undefined;
1278
- /**
1279
- * The description for the tool.
1280
- * @public
1281
- */
1282
- description?: string | undefined;
1283
- }
1284
- /**
1285
- * @internal
1286
- */
1287
- export declare const ToolSpecificationFilterSensitiveLog: (obj: ToolSpecification) => any;
1288
- /**
1289
- * Information about a tool that can be used.
1290
- * @public
1291
- */
1292
- export type Tool = Tool.ToolSpecificationMember | Tool.$UnknownMember;
1293
- /**
1294
- * @public
1295
- */
1296
- export declare namespace Tool {
1297
- /**
1298
- * The specification for the tool.
1299
- * @public
1300
- */
1301
- interface ToolSpecificationMember {
1302
- toolSpecification: ToolSpecification;
1303
- $unknown?: never;
1304
- }
1305
- /**
1306
- * @public
1307
- */
1308
- interface $UnknownMember {
1309
- toolSpecification?: never;
1310
- $unknown: [string, any];
1311
- }
1312
- interface Visitor<T> {
1313
- toolSpecification: (value: ToolSpecification) => T;
1314
- _: (name: string, value: any) => T;
1315
- }
1316
- const visit: <T>(value: Tool, visitor: Visitor<T>) => T;
1317
- }
1318
- /**
1319
- * @internal
1320
- */
1321
- export declare const ToolFilterSensitiveLog: (obj: Tool) => any;
1322
- /**
1323
- * Settings information passed by the Q widget
1324
- * @public
1325
- */
1326
- export interface UserSettings {
1327
- hasConsentedToCrossRegionCalls?: boolean | undefined;
1328
- }
1329
- /**
1330
- * Additional Chat message context associated with the Chat Message
1331
- * @public
1332
- */
1333
- export interface UserInputMessageContext {
1334
- /**
1335
- * Editor state chat message context.
1336
- * @public
1337
- */
1338
- editorState?: EditorState | undefined;
1339
- /**
1340
- * Shell state chat message context.
1341
- * @public
1342
- */
1343
- shellState?: ShellState | undefined;
1344
- /**
1345
- * Git state chat message context.
1346
- * @public
1347
- */
1348
- gitState?: GitState | undefined;
1349
- /**
1350
- * Environment state chat message context.
1351
- * @public
1352
- */
1353
- envState?: EnvState | undefined;
1354
- /**
1355
- * The state of a user's AppStudio UI when sending a message.
1356
- * @public
1357
- */
1358
- appStudioContext?: AppStudioState | undefined;
1359
- /**
1360
- * Diagnostic chat message context.
1361
- * @public
1362
- */
1363
- diagnostic?: Diagnostic | undefined;
1364
- /**
1365
- * Contextual information about the environment from which the user is calling.
1366
- * @public
1367
- */
1368
- consoleState?: ConsoleState | undefined;
1369
- /**
1370
- * Settings information, e.g., whether the user has enabled cross-region API calls.
1371
- * @public
1372
- */
1373
- userSettings?: UserSettings | undefined;
1374
- /**
1375
- * List of additional contextual content entries that can be included with the message.
1376
- * @public
1377
- */
1378
- additionalContext?: (AdditionalContentEntry)[] | undefined;
1379
- /**
1380
- * ToolResults for the requested ToolUses.
1381
- * @public
1382
- */
1383
- toolResults?: (ToolResult)[] | undefined;
1384
- /**
1385
- * Tools that can be used.
1386
- * @public
1387
- */
1388
- tools?: (Tool)[] | undefined;
1389
- }
1390
- /**
1391
- * @internal
1392
- */
1393
- export declare const UserInputMessageContextFilterSensitiveLog: (obj: UserInputMessageContext) => any;
1394
- /**
1395
- * Structure to represent a chat input message from User.
1396
- * @public
1397
- */
1398
- export interface UserInputMessage {
1399
- /**
1400
- * The content of the chat message.
1401
- * @public
1402
- */
1403
- content: string | undefined;
1404
- /**
1405
- * Chat message context associated with the Chat Message.
1406
- * @public
1407
- */
1408
- userInputMessageContext?: UserInputMessageContext | undefined;
1409
- /**
1410
- * User Intent.
1411
- * @public
1412
- */
1413
- userIntent?: UserIntent | undefined;
1414
- /**
1415
- * User Input Origin.
1416
- * @public
1417
- */
1418
- origin?: Origin | undefined;
1419
- /**
1420
- * Images associated with the Chat Message.
1421
- * @public
1422
- */
1423
- images?: (ImageBlock)[] | undefined;
1424
- /**
1425
- * Unique identifier for the model used in this conversation
1426
- * @public
1427
- */
1428
- modelId?: string | undefined;
1429
- }
1430
- /**
1431
- * @internal
1432
- */
1433
- export declare const UserInputMessageFilterSensitiveLog: (obj: UserInputMessage) => any;
1434
- /**
1435
- * @public
1436
- */
1437
- export type ChatMessage = ChatMessage.AssistantResponseMessageMember | ChatMessage.UserInputMessageMember | ChatMessage.$UnknownMember;
1438
- /**
1439
- * @public
1440
- */
1441
- export declare namespace ChatMessage {
1442
- /**
1443
- * Structure to represent a chat input message from User.
1444
- * @public
1445
- */
1446
- interface UserInputMessageMember {
1447
- userInputMessage: UserInputMessage;
1448
- assistantResponseMessage?: never;
1449
- $unknown?: never;
1450
- }
1451
- /**
1452
- * Markdown text message.
1453
- * @public
1454
- */
1455
- interface AssistantResponseMessageMember {
1456
- userInputMessage?: never;
1457
- assistantResponseMessage: AssistantResponseMessage;
1458
- $unknown?: never;
1459
- }
1460
- /**
1461
- * @public
1462
- */
1463
- interface $UnknownMember {
1464
- userInputMessage?: never;
1465
- assistantResponseMessage?: never;
1466
- $unknown: [string, any];
1467
- }
1468
- interface Visitor<T> {
1469
- userInputMessage: (value: UserInputMessage) => T;
1470
- assistantResponseMessage: (value: AssistantResponseMessage) => T;
1471
- _: (name: string, value: any) => T;
1472
- }
1473
- const visit: <T>(value: ChatMessage, visitor: Visitor<T>) => T;
1474
- }
1475
- /**
1476
- * @internal
1477
- */
1478
- export declare const ChatMessageFilterSensitiveLog: (obj: ChatMessage) => any;
1479
- /**
1480
- * Represents the target of a citation event
1481
- * @public
1482
- */
1483
- export type CitationTarget = CitationTarget.LocationMember | CitationTarget.RangeMember | CitationTarget.$UnknownMember;
1484
- /**
1485
- * @public
1486
- */
1487
- export declare namespace CitationTarget {
1488
- /**
1489
- * Represents a position in the response text where a citation should be added
1490
- * @public
1491
- */
1492
- interface LocationMember {
1493
- location: number;
1494
- range?: never;
1495
- $unknown?: never;
1496
- }
1497
- /**
1498
- * Represents the range in the response text to be targetted by a citation
1499
- * @public
1500
- */
1501
- interface RangeMember {
1502
- location?: never;
1503
- range: Span;
1504
- $unknown?: never;
1505
- }
1506
- /**
1507
- * @public
1508
- */
1509
- interface $UnknownMember {
1510
- location?: never;
1511
- range?: never;
1512
- $unknown: [string, any];
1513
- }
1514
- interface Visitor<T> {
1515
- location: (value: number) => T;
1516
- range: (value: Span) => T;
1517
- _: (name: string, value: any) => T;
1518
- }
1519
- const visit: <T>(value: CitationTarget, visitor: Visitor<T>) => T;
1520
- }
1521
- /**
1522
- * Streaming response event for citations
1523
- * @public
1524
- */
1525
- export interface CitationEvent {
1526
- /**
1527
- * The position or the range of the response text to be cited
1528
- * @public
1529
- */
1530
- target: CitationTarget | undefined;
1531
- /**
1532
- * The text inside the citation '1' in [1]
1533
- * @public
1534
- */
1535
- citationText?: string | undefined;
1536
- /**
1537
- * The link to the document being cited
1538
- * @public
1539
- */
1540
- citationLink: string | undefined;
1541
- }
1542
- /**
1543
- * @internal
1544
- */
1545
- export declare const CitationEventFilterSensitiveLog: (obj: CitationEvent) => any;
1546
- /**
1547
- * Streaming response event for generated code text.
1548
- * @public
1549
- */
1550
- export interface CodeEvent {
1551
- /**
1552
- * Generated code snippet.
1553
- * @public
1554
- */
1555
- content: string | undefined;
1556
- }
1557
- /**
1558
- * @internal
1559
- */
1560
- export declare const CodeEventFilterSensitiveLog: (obj: CodeEvent) => any;
1561
- /**
1562
- * Streaming Response Event for CodeReferences
1563
- * @public
1564
- */
1565
- export interface CodeReferenceEvent {
1566
- /**
1567
- * Code References for Assistant Response Message
1568
- * @public
1569
- */
1570
- references?: (Reference)[] | undefined;
1571
- }
1572
- /**
1573
- * Streaming Response Event when DryRun is succeessful
1574
- * @public
1575
- */
1576
- export interface DryRunSucceedEvent {
1577
- }
1578
- /**
1579
- * Streaming Response Event for Followup Prompt.
1580
- * @public
1581
- */
1582
- export interface FollowupPromptEvent {
1583
- /**
1584
- * Followup Prompt for the Assistant Response
1585
- * @public
1586
- */
1587
- followupPrompt?: FollowupPrompt | undefined;
1588
- }
1589
- /**
1590
- * @internal
1591
- */
1592
- export declare const FollowupPromptEventFilterSensitiveLog: (obj: FollowupPromptEvent) => any;
1593
- /**
1594
- * @public
1595
- * @enum
1596
- */
1597
- export declare const IntentType: {
1598
- readonly GLUE_SENSEI: "GLUE_SENSEI";
1599
- readonly RESOURCE_DATA: "RESOURCE_DATA";
1600
- readonly SUPPORT: "SUPPORT";
1601
- };
1602
- /**
1603
- * @public
1604
- */
1605
- export type IntentType = typeof IntentType[keyof typeof IntentType];
1606
- /**
1607
- * @public
1608
- */
1609
- export type IntentDataType = IntentDataType.StringMember | IntentDataType.$UnknownMember;
1610
- /**
1611
- * @public
1612
- */
1613
- export declare namespace IntentDataType {
1614
- interface StringMember {
1615
- string: string;
1616
- $unknown?: never;
1617
- }
1618
- /**
1619
- * @public
1620
- */
1621
- interface $UnknownMember {
1622
- string?: never;
1623
- $unknown: [string, any];
1624
- }
1625
- interface Visitor<T> {
1626
- string: (value: string) => T;
1627
- _: (name: string, value: any) => T;
1628
- }
1629
- const visit: <T>(value: IntentDataType, visitor: Visitor<T>) => T;
1630
- }
1631
- /**
1632
- * Streaming Response Event for Intents
1633
- * @public
1634
- */
1635
- export interface IntentsEvent {
1636
- /**
1637
- * A map of Intent objects
1638
- * @public
1639
- */
1640
- intents?: Partial<Record<IntentType, Record<string, IntentDataType>>> | undefined;
1641
- }
1642
- /**
1643
- * @internal
1644
- */
1645
- export declare const IntentsEventFilterSensitiveLog: (obj: IntentsEvent) => any;
1646
- /**
1647
- * For CloudWatch Troubleshooting Link Module
1648
- * @public
1649
- */
1650
- export interface CloudWatchTroubleshootingLink {
1651
- /**
1652
- * A label for the link.
1653
- * @public
1654
- */
1655
- label: string | undefined;
1656
- /**
1657
- * Stringified JSON payload. See spec here https://code.amazon.com/packages/CloudWatchOdysseyModel/blobs/50c0832f0e393e4ab68827eb4f04d832366821c1/--/model/events.smithy#L28 .
1658
- * @public
1659
- */
1660
- investigationPayload: string | undefined;
1661
- /**
1662
- * Fallback string, if target channel does not support the CloudWatchTroubleshootingLink.
1663
- * @public
1664
- */
1665
- defaultText?: string | undefined;
1666
- }
1667
- /**
1668
- * @internal
1669
- */
1670
- export declare const CloudWatchTroubleshootingLinkFilterSensitiveLog: (obj: CloudWatchTroubleshootingLink) => any;
1671
- /**
1672
- * @public
1673
- */
1674
- export interface ModuleLink {
1675
- /**
1676
- * For CloudWatch Troubleshooting Link Module
1677
- * @public
1678
- */
1679
- cloudWatchTroubleshootingLink?: CloudWatchTroubleshootingLink | undefined;
1680
- }
1681
- /**
1682
- * @internal
1683
- */
1684
- export declare const ModuleLinkFilterSensitiveLog: (obj: ModuleLink) => any;
1685
- /**
1686
- * @public
1687
- */
1688
- export interface WebLink {
1689
- /**
1690
- * A label for the link
1691
- * @public
1692
- */
1693
- label: string | undefined;
1694
- /**
1695
- * URL of the Weblink
1696
- * @public
1697
- */
1698
- url: string | undefined;
1699
- }
1700
- /**
1701
- * @internal
1702
- */
1703
- export declare const WebLinkFilterSensitiveLog: (obj: WebLink) => any;
1704
- /**
1705
- * @public
1706
- */
1707
- export interface Action {
1708
- webLink?: WebLink | undefined;
1709
- moduleLink?: ModuleLink | undefined;
1710
- }
1711
- /**
1712
- * @internal
1713
- */
1714
- export declare const ActionFilterSensitiveLog: (obj: Action) => any;
1715
- /**
1716
- * Structure representing a simple text component with sensitive content, which can include Markdown formatting.
1717
- * @public
1718
- */
1719
- export interface Text {
1720
- /**
1721
- * Contains text content that may include sensitive information and can support Markdown formatting.
1722
- * @public
1723
- */
1724
- content: string | undefined;
1725
- }
1726
- /**
1727
- * @internal
1728
- */
1729
- export declare const TextFilterSensitiveLog: (obj: Text) => any;
1730
- /**
1731
- * @public
1732
- */
1733
- export interface AlertComponent {
1734
- /**
1735
- * Structure representing a simple text component with sensitive content, which can include Markdown formatting.
1736
- * @public
1737
- */
1738
- text?: Text | undefined;
1739
- }
1740
- /**
1741
- * @internal
1742
- */
1743
- export declare const AlertComponentFilterSensitiveLog: (obj: AlertComponent) => any;
1744
- /**
1745
- * @public
1746
- * @enum
1747
- */
1748
- export declare const AlertType: {
1749
- /**
1750
- * Alert indicating an error or failure that requires attention.
1751
- */
1752
- readonly ERROR: "ERROR";
1753
- /**
1754
- * Informational alert providing general information.
1755
- */
1756
- readonly INFO: "INFO";
1757
- /**
1758
- * Alert indicating a warning or potential issue that should be noted.
1759
- */
1760
- readonly WARNING: "WARNING";
1761
- };
1762
- /**
1763
- * @public
1764
- */
1765
- export type AlertType = typeof AlertType[keyof typeof AlertType];
1766
- /**
1767
- * Structure representing an alert with a type and content.
1768
- * @public
1769
- */
1770
- export interface Alert {
1771
- /**
1772
- * Enum defining types of alerts that can be issued.
1773
- * @public
1774
- */
1775
- type: AlertType | undefined;
1776
- /**
1777
- * Contains the content of the alert, which may include sensitive information.
1778
- * @public
1779
- */
1780
- content: (AlertComponent)[] | undefined;
1781
- }
1782
- /**
1783
- * @internal
1784
- */
1785
- export declare const AlertFilterSensitiveLog: (obj: Alert) => any;
1786
- /**
1787
- * Structure describing a transition between two states in an infrastructure update.
1788
- * @public
1789
- */
1790
- export interface InfrastructureUpdateTransition {
1791
- /**
1792
- * The current state of the infrastructure before the update.
1793
- * @public
1794
- */
1795
- currentState: string | undefined;
1796
- /**
1797
- * The next state of the infrastructure following the update.
1798
- * @public
1799
- */
1800
- nextState: string | undefined;
1801
- }
1802
- /**
1803
- * @internal
1804
- */
1805
- export declare const InfrastructureUpdateTransitionFilterSensitiveLog: (obj: InfrastructureUpdateTransition) => any;
1806
- /**
1807
- * Structure representing different types of infrastructure updates.
1808
- * @public
1809
- */
1810
- export interface InfrastructureUpdate {
1811
- /**
1812
- * Structure describing a transition between two states in an infrastructure update.
1813
- * @public
1814
- */
1815
- transition?: InfrastructureUpdateTransition | undefined;
1816
- }
1817
- /**
1818
- * @internal
1819
- */
1820
- export declare const InfrastructureUpdateFilterSensitiveLog: (obj: InfrastructureUpdate) => any;
1821
- /**
1822
- * @public
1823
- */
1824
- export interface StepComponent {
1825
- /**
1826
- * Structure representing a simple text component with sensitive content, which can include Markdown formatting.
1827
- * @public
1828
- */
1829
- text?: Text | undefined;
1830
- }
1831
- /**
1832
- * @internal
1833
- */
1834
- export declare const StepComponentFilterSensitiveLog: (obj: StepComponent) => any;
1835
- /**
1836
- * @public
1837
- * @enum
1838
- */
1839
- export declare const StepState: {
1840
- /**
1841
- * Indicates a failure or issue that needs to be addressed.
1842
- */
1843
- readonly FAILED: "FAILED";
1844
- /**
1845
- * Indicates that the step is currently being processed. This is a non-terminal state, meaning the process is active and ongoing.
1846
- */
1847
- readonly IN_PROGRESS: "IN_PROGRESS";
1848
- /**
1849
- * Indicates that the step is being loaded or initialized. This is a non-terminal state, meaning the process is in the setup phase.
1850
- */
1851
- readonly LOADING: "LOADING";
1852
- /**
1853
- * Indicates that the step is temporarily halted but can resume. This is a non-terminal state, representing a temporary pause.
1854
- */
1855
- readonly PAUSED: "PAUSED";
1856
- /**
1857
- * 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.
1858
- */
1859
- readonly PENDING: "PENDING";
1860
- /**
1861
- * Indicates that the step was stopped, either intentionally or unintentionally.
1862
- */
1863
- readonly STOPPED: "STOPPED";
1864
- /**
1865
- * Indicates successful completion of the step.
1866
- */
1867
- readonly SUCCEEDED: "SUCCEEDED";
1868
- };
1869
- /**
1870
- * @public
1871
- */
1872
- export type StepState = typeof StepState[keyof typeof StepState];
1873
- /**
1874
- * Structure representing an individual step in a process.
1875
- * @public
1876
- */
1877
- export interface Step {
1878
- /**
1879
- * A unique identifier for the step. It must be a non-negative integer to ensure each step is distinct.
1880
- * @public
1881
- */
1882
- id: number | undefined;
1883
- /**
1884
- * Enum representing all possible step states, combining terminal and non-terminal states.
1885
- * @public
1886
- */
1887
- state: StepState | undefined;
1888
- /**
1889
- * A label for the step, providing a concise description.
1890
- * @public
1891
- */
1892
- label: string | undefined;
1893
- /**
1894
- * Optional content providing additional details about the step.
1895
- * @public
1896
- */
1897
- content?: (StepComponent)[] | undefined;
1898
- }
1899
- /**
1900
- * @internal
1901
- */
1902
- export declare const StepFilterSensitiveLog: (obj: Step) => any;
1903
- /**
1904
- * @public
1905
- */
1906
- export interface ProgressComponent {
1907
- /**
1908
- * Structure representing an individual step in a process.
1909
- * @public
1910
- */
1911
- step?: Step | undefined;
1912
- }
1913
- /**
1914
- * @internal
1915
- */
1916
- export declare const ProgressComponentFilterSensitiveLog: (obj: ProgressComponent) => any;
1917
- /**
1918
- * Structure representing a collection of steps in a process.
1919
- * @public
1920
- */
1921
- export interface Progress {
1922
- /**
1923
- * A collection of steps that make up a process. Each step is detailed using the Step structure.
1924
- * @public
1925
- */
1926
- content: (ProgressComponent)[] | undefined;
1927
- }
1928
- /**
1929
- * @internal
1930
- */
1931
- export declare const ProgressFilterSensitiveLog: (obj: Progress) => any;
1932
- /**
1933
- * Structure representing a resource item
1934
- * @public
1935
- */
1936
- export interface Resource {
1937
- /**
1938
- * Card title.
1939
- * @public
1940
- */
1941
- title: string | undefined;
1942
- /**
1943
- * Link for the resource item
1944
- * @public
1945
- */
1946
- link: string | undefined;
1947
- /**
1948
- * Short text about that resource for example Region: us-east-1
1949
- * @public
1950
- */
1951
- description: string | undefined;
1952
- /**
1953
- * Resource type e.g AWS EC2
1954
- * @public
1955
- */
1956
- type: string | undefined;
1957
- /**
1958
- * Amazon resource number e.g arn:aws:aec:.....
1959
- * @public
1960
- */
1961
- ARN: string | undefined;
1962
- /**
1963
- * A stringified object
1964
- * @public
1965
- */
1966
- resourceJsonString: string | undefined;
1967
- }
1968
- /**
1969
- * @internal
1970
- */
1971
- export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
1972
- /**
1973
- * Structure representing a list of Items
1974
- * @public
1975
- */
1976
- export interface ResourceList {
1977
- /**
1978
- * Action associated with the list
1979
- * @public
1980
- */
1981
- action?: Action | undefined;
1982
- /**
1983
- * List of resources
1984
- * @public
1985
- */
1986
- items: (Resource)[] | undefined;
1987
- }
1988
- /**
1989
- * @internal
1990
- */
1991
- export declare const ResourceListFilterSensitiveLog: (obj: ResourceList) => any;
1992
- /**
1993
- * @public
1994
- */
1995
- export interface SectionComponent {
1996
- /**
1997
- * Structure representing a simple text component with sensitive content, which can include Markdown formatting.
1998
- * @public
1999
- */
2000
- text?: Text | undefined;
2001
- /**
2002
- * Structure representing an alert with a type and content.
2003
- * @public
2004
- */
2005
- alert?: Alert | undefined;
2006
- /**
2007
- * Structure representing a resource item
2008
- * @public
2009
- */
2010
- resource?: Resource | undefined;
2011
- /**
2012
- * Structure representing a list of Items
2013
- * @public
2014
- */
2015
- resourceList?: ResourceList | undefined;
2016
- }
2017
- /**
2018
- * @internal
2019
- */
2020
- export declare const SectionComponentFilterSensitiveLog: (obj: SectionComponent) => any;
2021
- /**
2022
- * Structure representing a collapsable section
2023
- * @public
2024
- */
2025
- export interface Section {
2026
- /**
2027
- * Contains text content that may include sensitive information and can support Markdown formatting.
2028
- * @public
2029
- */
2030
- title: string | undefined;
2031
- /**
2032
- * Contains a list of interaction components e.g Text, Alert, List, etc.
2033
- * @public
2034
- */
2035
- content: (SectionComponent)[] | undefined;
2036
- /**
2037
- * Action associated with the Section
2038
- * @public
2039
- */
2040
- action?: Action | undefined;
2041
- }
2042
- /**
2043
- * @internal
2044
- */
2045
- export declare const SectionFilterSensitiveLog: (obj: Section) => any;
2046
- /**
2047
- * Structure representing a suggestion for follow-ups.
2048
- * @public
2049
- */
2050
- export interface Suggestion {
2051
- value: string | undefined;
2052
- }
2053
- /**
2054
- * @internal
2055
- */
2056
- export declare const SuggestionFilterSensitiveLog: (obj: Suggestion) => any;
2057
- /**
2058
- * Structure containing a list of suggestions.
2059
- * @public
2060
- */
2061
- export interface Suggestions {
2062
- items: (Suggestion)[] | undefined;
2063
- }
2064
- /**
2065
- * @internal
2066
- */
2067
- export declare const SuggestionsFilterSensitiveLog: (obj: Suggestions) => any;
2068
- /**
2069
- * Structure representing a confirmation message related to a task action.
2070
- * @public
2071
- */
2072
- export interface TaskActionConfirmation {
2073
- /**
2074
- * Confirmation message related to the action note, which may include sensitive information.
2075
- * @public
2076
- */
2077
- content?: string | undefined;
2078
- }
2079
- /**
2080
- * @internal
2081
- */
2082
- export declare const TaskActionConfirmationFilterSensitiveLog: (obj: TaskActionConfirmation) => any;
2083
- /**
2084
- * @public
2085
- * @enum
2086
- */
2087
- export declare const TaskActionNoteType: {
2088
- /**
2089
- * Information note providing general details.
2090
- */
2091
- readonly INFO: "INFO";
2092
- /**
2093
- * Warning note indicating a potential issue.
2094
- */
2095
- readonly WARNING: "WARNING";
2096
- };
2097
- /**
2098
- * @public
2099
- */
2100
- export type TaskActionNoteType = typeof TaskActionNoteType[keyof typeof TaskActionNoteType];
2101
- /**
2102
- * Structure representing a note associated with a task action.
2103
- * @public
2104
- */
2105
- export interface TaskActionNote {
2106
- /**
2107
- * Content of the note, which may include sensitive information.
2108
- * @public
2109
- */
2110
- content: string | undefined;
2111
- /**
2112
- * Enum defining the types of notes that can be associated with a task action.
2113
- * @public
2114
- */
2115
- type?: TaskActionNoteType | undefined;
2116
- }
2117
- /**
2118
- * @internal
2119
- */
2120
- export declare const TaskActionNoteFilterSensitiveLog: (obj: TaskActionNote) => any;
2121
- /**
2122
- * Structure representing an action associated with a task.
2123
- * @public
2124
- */
2125
- export interface TaskAction {
2126
- /**
2127
- * A label for the action.
2128
- * @public
2129
- */
2130
- label: string | undefined;
2131
- /**
2132
- * Structure representing a note associated with a task action.
2133
- * @public
2134
- */
2135
- note?: TaskActionNote | undefined;
2136
- /**
2137
- * Indicates whether the action is primary or not.
2138
- * @public
2139
- */
2140
- primary?: boolean | undefined;
2141
- /**
2142
- * Indicates whether the action is disabled or not.
2143
- * @public
2144
- */
2145
- disabled?: boolean | undefined;
2146
- /**
2147
- * Map representing key-value pairs for the payload of a task action.
2148
- * @public
2149
- */
2150
- payload: Record<string, string> | undefined;
2151
- /**
2152
- * Structure representing a confirmation message related to a task action.
2153
- * @public
2154
- */
2155
- confirmation?: TaskActionConfirmation | undefined;
2156
- }
2157
- /**
2158
- * @internal
2159
- */
2160
- export declare const TaskActionFilterSensitiveLog: (obj: TaskAction) => any;
2161
- /**
2162
- * Structure representing different types of components that can be part of a task.
2163
- * @public
2164
- */
2165
- export interface TaskComponent {
2166
- /**
2167
- * Structure representing a simple text component with sensitive content, which can include Markdown formatting.
2168
- * @public
2169
- */
2170
- text?: Text | undefined;
2171
- /**
2172
- * Structure representing different types of infrastructure updates.
2173
- * @public
2174
- */
2175
- infrastructureUpdate?: InfrastructureUpdate | undefined;
2176
- /**
2177
- * Structure representing an alert with a type and content.
2178
- * @public
2179
- */
2180
- alert?: Alert | undefined;
2181
- /**
2182
- * Structure representing a collection of steps in a process.
2183
- * @public
2184
- */
2185
- progress?: Progress | undefined;
2186
- }
2187
- /**
2188
- * @internal
2189
- */
2190
- export declare const TaskComponentFilterSensitiveLog: (obj: TaskComponent) => any;
2191
- /**
2192
- * Structure representing an overview of a task, including a label and description.
2193
- * @public
2194
- */
2195
- export interface TaskOverview {
2196
- /**
2197
- * A label for the task overview.
2198
- * @public
2199
- */
2200
- label: string | undefined;
2201
- /**
2202
- * Text description providing details about the task. This field may include sensitive information and supports Markdown formatting.
2203
- * @public
2204
- */
2205
- description: string | undefined;
2206
- }
2207
- /**
2208
- * @internal
2209
- */
2210
- export declare const TaskOverviewFilterSensitiveLog: (obj: TaskOverview) => any;
2211
- /**
2212
- * Structure containing details about a task.
2213
- * @public
2214
- */
2215
- export interface TaskDetails {
2216
- /**
2217
- * Structure representing an overview of a task, including a label and description.
2218
- * @public
2219
- */
2220
- overview: TaskOverview | undefined;
2221
- /**
2222
- * Lists the components that can be used to form the task's content.
2223
- * @public
2224
- */
2225
- content: (TaskComponent)[] | undefined;
2226
- /**
2227
- * Optional list of actions associated with the task.
2228
- * @public
2229
- */
2230
- actions?: (TaskAction)[] | undefined;
2231
- }
2232
- /**
2233
- * @internal
2234
- */
2235
- export declare const TaskDetailsFilterSensitiveLog: (obj: TaskDetails) => any;
2236
- /**
2237
- * Structure representing a reference to a task.
2238
- * @public
2239
- */
2240
- export interface TaskReference {
2241
- /**
2242
- * Unique identifier for the task.
2243
- * @public
2244
- */
2245
- taskId: string | undefined;
2246
- }
2247
- /**
2248
- * Structure representing different types of interaction components.
2249
- * @public
2250
- */
2251
- export interface InteractionComponent {
2252
- /**
2253
- * Structure representing a simple text component with sensitive content, which can include Markdown formatting.
2254
- * @public
2255
- */
2256
- text?: Text | undefined;
2257
- /**
2258
- * Structure representing an alert with a type and content.
2259
- * @public
2260
- */
2261
- alert?: Alert | undefined;
2262
- /**
2263
- * Structure representing different types of infrastructure updates.
2264
- * @public
2265
- */
2266
- infrastructureUpdate?: InfrastructureUpdate | undefined;
2267
- /**
2268
- * Structure representing a collection of steps in a process.
2269
- * @public
2270
- */
2271
- progress?: Progress | undefined;
2272
- /**
2273
- * Structure representing an individual step in a process.
2274
- * @public
2275
- */
2276
- step?: Step | undefined;
2277
- /**
2278
- * Structure containing details about a task.
2279
- * @public
2280
- */
2281
- taskDetails?: TaskDetails | undefined;
2282
- /**
2283
- * Structure representing a reference to a task.
2284
- * @public
2285
- */
2286
- taskReference?: TaskReference | undefined;
2287
- /**
2288
- * Structure containing a list of suggestions.
2289
- * @public
2290
- */
2291
- suggestions?: Suggestions | undefined;
2292
- /**
2293
- * Structure representing a collapsable section
2294
- * @public
2295
- */
2296
- section?: Section | undefined;
2297
- /**
2298
- * Structure representing a resource item
2299
- * @public
2300
- */
2301
- resource?: Resource | undefined;
2302
- /**
2303
- * Structure representing a list of Items
2304
- * @public
2305
- */
2306
- resourceList?: ResourceList | undefined;
2307
- action?: Action | undefined;
2308
- }
2309
- /**
2310
- * @internal
2311
- */
2312
- export declare const InteractionComponentFilterSensitiveLog: (obj: InteractionComponent) => any;
2313
- /**
2314
- * Interaction component with an identifier
2315
- * @public
2316
- */
2317
- export interface InteractionComponentEntry {
2318
- /**
2319
- * Identifier that can uniquely identify the interaction component within
2320
- * stream response. This field is optional.
2321
- * @public
2322
- */
2323
- interactionComponentId?: string | undefined;
2324
- /**
2325
- * Interaction component
2326
- * @public
2327
- */
2328
- interactionComponent: InteractionComponent | undefined;
2329
- }
2330
- /**
2331
- * @internal
2332
- */
2333
- export declare const InteractionComponentEntryFilterSensitiveLog: (obj: InteractionComponentEntry) => any;
2334
- /**
2335
- * Streaming Event for interaction components list
2336
- * @public
2337
- */
2338
- export interface InteractionComponentsEvent {
2339
- /**
2340
- * List of identifiable interaction components
2341
- * @public
2342
- */
2343
- interactionComponentEntries: (InteractionComponentEntry)[] | undefined;
2344
- }
2345
- /**
2346
- * @internal
2347
- */
2348
- export declare const InteractionComponentsEventFilterSensitiveLog: (obj: InteractionComponentsEvent) => any;
2349
- /**
2350
- * @public
2351
- * @enum
2352
- */
2353
- export declare const InvalidStateReason: {
2354
- readonly INVALID_TASK_ASSIST_PLAN: "INVALID_TASK_ASSIST_PLAN";
2355
- };
2356
- /**
2357
- * @public
2358
- */
2359
- export type InvalidStateReason = typeof InvalidStateReason[keyof typeof InvalidStateReason];
2360
- /**
2361
- * Streaming Response Event when an Invalid State is reached
2362
- * @public
2363
- */
2364
- export interface InvalidStateEvent {
2365
- /**
2366
- * Reasons for Invalid State Event
2367
- * @public
2368
- */
2369
- reason: InvalidStateReason | undefined;
2370
- message: string | undefined;
2371
- }
2372
- /**
2373
- * Streaming Response Event for AssistantResponse Metadata
2374
- * @public
2375
- */
2376
- export interface MessageMetadataEvent {
2377
- /**
2378
- * Unique identifier for the conversation
2379
- * @public
2380
- */
2381
- conversationId?: string | undefined;
2382
- /**
2383
- * Unique identifier for the utterance
2384
- * @public
2385
- */
2386
- utteranceId?: string | undefined;
2387
- }
2388
- /**
2389
- * Streaming Response Event for SupplementaryWebLinks
2390
- * @public
2391
- */
2392
- export interface SupplementaryWebLinksEvent {
2393
- /**
2394
- * Web References for Assistant Response Message
2395
- * @public
2396
- */
2397
- supplementaryWebLinks?: (SupplementaryWebLink)[] | undefined;
2398
- }
2399
- /**
2400
- * @internal
2401
- */
2402
- export declare const SupplementaryWebLinksEventFilterSensitiveLog: (obj: SupplementaryWebLinksEvent) => any;
2403
- /**
2404
- * @public
2405
- */
2406
- export interface ToolResultEvent {
2407
- /**
2408
- * A tool result that contains the results for a tool request that was previously made.
2409
- * @public
2410
- */
2411
- toolResult?: ToolResult | undefined;
2412
- }
2413
- /**
2414
- * @internal
2415
- */
2416
- export declare const ToolResultEventFilterSensitiveLog: (obj: ToolResultEvent) => any;
2417
- /**
2418
- * Event for a ToolUse request. Multiple ToolUse requests can be returned from a single request, so each ToolUse has a unique 'toolUseId'.
2419
- * @public
2420
- */
2421
- export interface ToolUseEvent {
2422
- /**
2423
- * The ID for the tool request.
2424
- * @public
2425
- */
2426
- toolUseId: string | undefined;
2427
- /**
2428
- * The name for the tool.
2429
- * @public
2430
- */
2431
- name: string | undefined;
2432
- /**
2433
- * Represents the serialized json input for the ToolUse request. This field should be concatenated until 'stop' is true.
2434
- * @public
2435
- */
2436
- input?: string | undefined;
2437
- /**
2438
- * This field is true when all of the serialized input for this ToolUse request has been sent.
2439
- * @public
2440
- */
2441
- stop?: boolean | undefined;
2442
- }
2443
- /**
2444
- * @internal
2445
- */
2446
- export declare const ToolUseEventFilterSensitiveLog: (obj: ToolUseEvent) => any;
2447
- /**
2448
- * Streaming events from UniDirectional Streaming Conversational APIs.
2449
- * @public
2450
- */
2451
- export type ChatResponseStream = ChatResponseStream.AssistantResponseEventMember | ChatResponseStream.CitationEventMember | ChatResponseStream.CodeEventMember | ChatResponseStream.CodeReferenceEventMember | ChatResponseStream.DryRunSucceedEventMember | ChatResponseStream.ErrorMember | ChatResponseStream.FollowupPromptEventMember | ChatResponseStream.IntentsEventMember | ChatResponseStream.InteractionComponentsEventMember | ChatResponseStream.InvalidStateEventMember | ChatResponseStream.MessageMetadataEventMember | ChatResponseStream.SupplementaryWebLinksEventMember | ChatResponseStream.ToolResultEventMember | ChatResponseStream.ToolUseEventMember | ChatResponseStream.$UnknownMember;
2452
- /**
2453
- * @public
2454
- */
2455
- export declare namespace ChatResponseStream {
2456
- /**
2457
- * Message Metadata event
2458
- * @public
2459
- */
2460
- interface MessageMetadataEventMember {
2461
- messageMetadataEvent: MessageMetadataEvent;
2462
- assistantResponseEvent?: never;
2463
- dryRunSucceedEvent?: never;
2464
- codeReferenceEvent?: never;
2465
- supplementaryWebLinksEvent?: never;
2466
- followupPromptEvent?: never;
2467
- codeEvent?: never;
2468
- intentsEvent?: never;
2469
- interactionComponentsEvent?: never;
2470
- toolUseEvent?: never;
2471
- toolResultEvent?: never;
2472
- citationEvent?: never;
2473
- invalidStateEvent?: never;
2474
- error?: never;
2475
- $unknown?: never;
2476
- }
2477
- /**
2478
- * Assistant response event - Text / Code snippet
2479
- * @public
2480
- */
2481
- interface AssistantResponseEventMember {
2482
- messageMetadataEvent?: never;
2483
- assistantResponseEvent: AssistantResponseEvent;
2484
- dryRunSucceedEvent?: never;
2485
- codeReferenceEvent?: never;
2486
- supplementaryWebLinksEvent?: never;
2487
- followupPromptEvent?: never;
2488
- codeEvent?: never;
2489
- intentsEvent?: never;
2490
- interactionComponentsEvent?: never;
2491
- toolUseEvent?: never;
2492
- toolResultEvent?: never;
2493
- citationEvent?: never;
2494
- invalidStateEvent?: never;
2495
- error?: never;
2496
- $unknown?: never;
2497
- }
2498
- /**
2499
- * DryRun Succeed Event
2500
- * @public
2501
- */
2502
- interface DryRunSucceedEventMember {
2503
- messageMetadataEvent?: never;
2504
- assistantResponseEvent?: never;
2505
- dryRunSucceedEvent: DryRunSucceedEvent;
2506
- codeReferenceEvent?: never;
2507
- supplementaryWebLinksEvent?: never;
2508
- followupPromptEvent?: never;
2509
- codeEvent?: never;
2510
- intentsEvent?: never;
2511
- interactionComponentsEvent?: never;
2512
- toolUseEvent?: never;
2513
- toolResultEvent?: never;
2514
- citationEvent?: never;
2515
- invalidStateEvent?: never;
2516
- error?: never;
2517
- $unknown?: never;
2518
- }
2519
- /**
2520
- * Code References event
2521
- * @public
2522
- */
2523
- interface CodeReferenceEventMember {
2524
- messageMetadataEvent?: never;
2525
- assistantResponseEvent?: never;
2526
- dryRunSucceedEvent?: never;
2527
- codeReferenceEvent: CodeReferenceEvent;
2528
- supplementaryWebLinksEvent?: never;
2529
- followupPromptEvent?: never;
2530
- codeEvent?: never;
2531
- intentsEvent?: never;
2532
- interactionComponentsEvent?: never;
2533
- toolUseEvent?: never;
2534
- toolResultEvent?: never;
2535
- citationEvent?: never;
2536
- invalidStateEvent?: never;
2537
- error?: never;
2538
- $unknown?: never;
2539
- }
2540
- /**
2541
- * Web Reference links event
2542
- * @public
2543
- */
2544
- interface SupplementaryWebLinksEventMember {
2545
- messageMetadataEvent?: never;
2546
- assistantResponseEvent?: never;
2547
- dryRunSucceedEvent?: never;
2548
- codeReferenceEvent?: never;
2549
- supplementaryWebLinksEvent: SupplementaryWebLinksEvent;
2550
- followupPromptEvent?: never;
2551
- codeEvent?: never;
2552
- intentsEvent?: never;
2553
- interactionComponentsEvent?: never;
2554
- toolUseEvent?: never;
2555
- toolResultEvent?: never;
2556
- citationEvent?: never;
2557
- invalidStateEvent?: never;
2558
- error?: never;
2559
- $unknown?: never;
2560
- }
2561
- /**
2562
- * Followup prompt event
2563
- * @public
2564
- */
2565
- interface FollowupPromptEventMember {
2566
- messageMetadataEvent?: never;
2567
- assistantResponseEvent?: never;
2568
- dryRunSucceedEvent?: never;
2569
- codeReferenceEvent?: never;
2570
- supplementaryWebLinksEvent?: never;
2571
- followupPromptEvent: FollowupPromptEvent;
2572
- codeEvent?: never;
2573
- intentsEvent?: never;
2574
- interactionComponentsEvent?: never;
2575
- toolUseEvent?: never;
2576
- toolResultEvent?: never;
2577
- citationEvent?: never;
2578
- invalidStateEvent?: never;
2579
- error?: never;
2580
- $unknown?: never;
2581
- }
2582
- /**
2583
- * Code Generated event
2584
- * @public
2585
- */
2586
- interface CodeEventMember {
2587
- messageMetadataEvent?: never;
2588
- assistantResponseEvent?: never;
2589
- dryRunSucceedEvent?: never;
2590
- codeReferenceEvent?: never;
2591
- supplementaryWebLinksEvent?: never;
2592
- followupPromptEvent?: never;
2593
- codeEvent: CodeEvent;
2594
- intentsEvent?: never;
2595
- interactionComponentsEvent?: never;
2596
- toolUseEvent?: never;
2597
- toolResultEvent?: never;
2598
- citationEvent?: never;
2599
- invalidStateEvent?: never;
2600
- error?: never;
2601
- $unknown?: never;
2602
- }
2603
- /**
2604
- * Intents event
2605
- * @public
2606
- */
2607
- interface IntentsEventMember {
2608
- messageMetadataEvent?: never;
2609
- assistantResponseEvent?: never;
2610
- dryRunSucceedEvent?: never;
2611
- codeReferenceEvent?: never;
2612
- supplementaryWebLinksEvent?: never;
2613
- followupPromptEvent?: never;
2614
- codeEvent?: never;
2615
- intentsEvent: IntentsEvent;
2616
- interactionComponentsEvent?: never;
2617
- toolUseEvent?: never;
2618
- toolResultEvent?: never;
2619
- citationEvent?: never;
2620
- invalidStateEvent?: never;
2621
- error?: never;
2622
- $unknown?: never;
2623
- }
2624
- /**
2625
- * Interactions components event
2626
- * @public
2627
- */
2628
- interface InteractionComponentsEventMember {
2629
- messageMetadataEvent?: never;
2630
- assistantResponseEvent?: never;
2631
- dryRunSucceedEvent?: never;
2632
- codeReferenceEvent?: never;
2633
- supplementaryWebLinksEvent?: never;
2634
- followupPromptEvent?: never;
2635
- codeEvent?: never;
2636
- intentsEvent?: never;
2637
- interactionComponentsEvent: InteractionComponentsEvent;
2638
- toolUseEvent?: never;
2639
- toolResultEvent?: never;
2640
- citationEvent?: never;
2641
- invalidStateEvent?: never;
2642
- error?: never;
2643
- $unknown?: never;
2644
- }
2645
- /**
2646
- * ToolUse event
2647
- * @public
2648
- */
2649
- interface ToolUseEventMember {
2650
- messageMetadataEvent?: never;
2651
- assistantResponseEvent?: never;
2652
- dryRunSucceedEvent?: never;
2653
- codeReferenceEvent?: never;
2654
- supplementaryWebLinksEvent?: never;
2655
- followupPromptEvent?: never;
2656
- codeEvent?: never;
2657
- intentsEvent?: never;
2658
- interactionComponentsEvent?: never;
2659
- toolUseEvent: ToolUseEvent;
2660
- toolResultEvent?: never;
2661
- citationEvent?: never;
2662
- invalidStateEvent?: never;
2663
- error?: never;
2664
- $unknown?: never;
2665
- }
2666
- /**
2667
- * Tool use result
2668
- * @public
2669
- */
2670
- interface ToolResultEventMember {
2671
- messageMetadataEvent?: never;
2672
- assistantResponseEvent?: never;
2673
- dryRunSucceedEvent?: never;
2674
- codeReferenceEvent?: never;
2675
- supplementaryWebLinksEvent?: never;
2676
- followupPromptEvent?: never;
2677
- codeEvent?: never;
2678
- intentsEvent?: never;
2679
- interactionComponentsEvent?: never;
2680
- toolUseEvent?: never;
2681
- toolResultEvent: ToolResultEvent;
2682
- citationEvent?: never;
2683
- invalidStateEvent?: never;
2684
- error?: never;
2685
- $unknown?: never;
2686
- }
2687
- /**
2688
- * Citation event
2689
- * @public
2690
- */
2691
- interface CitationEventMember {
2692
- messageMetadataEvent?: never;
2693
- assistantResponseEvent?: never;
2694
- dryRunSucceedEvent?: never;
2695
- codeReferenceEvent?: never;
2696
- supplementaryWebLinksEvent?: never;
2697
- followupPromptEvent?: never;
2698
- codeEvent?: never;
2699
- intentsEvent?: never;
2700
- interactionComponentsEvent?: never;
2701
- toolUseEvent?: never;
2702
- toolResultEvent?: never;
2703
- citationEvent: CitationEvent;
2704
- invalidStateEvent?: never;
2705
- error?: never;
2706
- $unknown?: never;
2707
- }
2708
- /**
2709
- * Invalid State event
2710
- * @public
2711
- */
2712
- interface InvalidStateEventMember {
2713
- messageMetadataEvent?: never;
2714
- assistantResponseEvent?: never;
2715
- dryRunSucceedEvent?: never;
2716
- codeReferenceEvent?: never;
2717
- supplementaryWebLinksEvent?: never;
2718
- followupPromptEvent?: never;
2719
- codeEvent?: never;
2720
- intentsEvent?: never;
2721
- interactionComponentsEvent?: never;
2722
- toolUseEvent?: never;
2723
- toolResultEvent?: never;
2724
- citationEvent?: never;
2725
- invalidStateEvent: InvalidStateEvent;
2726
- error?: never;
2727
- $unknown?: never;
2728
- }
2729
- /**
2730
- * Internal Server Exception
2731
- * @public
2732
- */
2733
- interface ErrorMember {
2734
- messageMetadataEvent?: never;
2735
- assistantResponseEvent?: never;
2736
- dryRunSucceedEvent?: never;
2737
- codeReferenceEvent?: never;
2738
- supplementaryWebLinksEvent?: never;
2739
- followupPromptEvent?: never;
2740
- codeEvent?: never;
2741
- intentsEvent?: never;
2742
- interactionComponentsEvent?: never;
2743
- toolUseEvent?: never;
2744
- toolResultEvent?: never;
2745
- citationEvent?: never;
2746
- invalidStateEvent?: never;
2747
- error: InternalServerException;
2748
- $unknown?: never;
2749
- }
2750
- /**
2751
- * @public
2752
- */
2753
- interface $UnknownMember {
2754
- messageMetadataEvent?: never;
2755
- assistantResponseEvent?: never;
2756
- dryRunSucceedEvent?: never;
2757
- codeReferenceEvent?: never;
2758
- supplementaryWebLinksEvent?: never;
2759
- followupPromptEvent?: never;
2760
- codeEvent?: never;
2761
- intentsEvent?: never;
2762
- interactionComponentsEvent?: never;
2763
- toolUseEvent?: never;
2764
- toolResultEvent?: never;
2765
- citationEvent?: never;
2766
- invalidStateEvent?: never;
2767
- error?: never;
2768
- $unknown: [string, any];
2769
- }
2770
- interface Visitor<T> {
2771
- messageMetadataEvent: (value: MessageMetadataEvent) => T;
2772
- assistantResponseEvent: (value: AssistantResponseEvent) => T;
2773
- dryRunSucceedEvent: (value: DryRunSucceedEvent) => T;
2774
- codeReferenceEvent: (value: CodeReferenceEvent) => T;
2775
- supplementaryWebLinksEvent: (value: SupplementaryWebLinksEvent) => T;
2776
- followupPromptEvent: (value: FollowupPromptEvent) => T;
2777
- codeEvent: (value: CodeEvent) => T;
2778
- intentsEvent: (value: IntentsEvent) => T;
2779
- interactionComponentsEvent: (value: InteractionComponentsEvent) => T;
2780
- toolUseEvent: (value: ToolUseEvent) => T;
2781
- toolResultEvent: (value: ToolResultEvent) => T;
2782
- citationEvent: (value: CitationEvent) => T;
2783
- invalidStateEvent: (value: InvalidStateEvent) => T;
2784
- error: (value: InternalServerException) => T;
2785
- _: (name: string, value: any) => T;
2786
- }
2787
- const visit: <T>(value: ChatResponseStream, visitor: Visitor<T>) => T;
2788
- }
2789
- /**
2790
- * @internal
2791
- */
2792
- export declare const ChatResponseStreamFilterSensitiveLog: (obj: ChatResponseStream) => any;
2793
- /**
2794
- * @public
2795
- * @enum
2796
- */
2797
- export declare const ChatTriggerType: {
2798
- /**
2799
- * Indicates the Chat was triggered in response to a IDE diagnostic
2800
- */
2801
- readonly DIAGNOSTIC: "DIAGNOSTIC";
2802
- /**
2803
- * Indicates the Chat was triggered in response to an inline chat event
2804
- */
2805
- readonly INLINE_CHAT: "INLINE_CHAT";
2806
- /**
2807
- * Indicates the Chat was triggered due to an explicit chat request by an end-user
2808
- */
2809
- readonly MANUAL: "MANUAL";
2810
- };
2811
- /**
2812
- * @public
2813
- */
2814
- export type ChatTriggerType = typeof ChatTriggerType[keyof typeof ChatTriggerType];
2815
- /**
2816
- * @public
2817
- * @enum
2818
- */
2819
- export declare const ContextTruncationScheme: {
2820
- readonly ANALYSIS: "ANALYSIS";
2821
- readonly GUMBY: "GUMBY";
2822
- };
2823
- /**
2824
- * @public
2825
- */
2826
- export type ContextTruncationScheme = typeof ContextTruncationScheme[keyof typeof ContextTruncationScheme];
2827
- /**
2828
- * Structure to represent the current state of a chat conversation.
2829
- * @public
2830
- */
2831
- export interface ConversationState {
2832
- /**
2833
- * Unique identifier for the chat conversation stream
2834
- * @public
2835
- */
2836
- conversationId?: string | undefined;
2837
- /**
2838
- * Unique identifier for remote workspace
2839
- * @public
2840
- */
2841
- workspaceId?: string | undefined;
2842
- /**
2843
- * Holds the history of chat messages.
2844
- * @public
2845
- */
2846
- history?: (ChatMessage)[] | undefined;
2847
- /**
2848
- * Holds the current message being processed or displayed.
2849
- * @public
2850
- */
2851
- currentMessage: ChatMessage | undefined;
2852
- /**
2853
- * Trigger Reason for Chat
2854
- * @public
2855
- */
2856
- chatTriggerType: ChatTriggerType | undefined;
2857
- customizationArn?: string | undefined;
2858
- }
2859
- /**
2860
- * @internal
2861
- */
2862
- export declare const ConversationStateFilterSensitiveLog: (obj: ConversationState) => any;
2863
- /**
2864
- * This exception is translated to a 204 as it succeeded the IAM Auth.
2865
- * @public
2866
- */
2867
- export declare class DryRunOperationException extends __BaseException {
2868
- readonly name: "DryRunOperationException";
2869
- readonly $fault: "client";
2870
- responseCode?: number | undefined;
2871
- /**
2872
- * @internal
2873
- */
2874
- constructor(opts: __ExceptionOptionType<DryRunOperationException, __BaseException>);
2875
- }
2876
- /**
2877
- * @public
2878
- * @enum
2879
- */
2880
- export declare const TransformationDownloadArtifactType: {
2881
- readonly CLIENT_INSTRUCTIONS: "ClientInstructions";
2882
- readonly GENERATED_CODE: "GeneratedCode";
2883
- readonly LOGS: "Logs";
2884
- };
2885
- /**
2886
- * @public
2887
- */
2888
- export type TransformationDownloadArtifactType = typeof TransformationDownloadArtifactType[keyof typeof TransformationDownloadArtifactType];
2889
- /**
2890
- * Transformation export context
2891
- * @public
2892
- */
2893
- export interface TransformationExportContext {
2894
- downloadArtifactId: string | undefined;
2895
- downloadArtifactType: TransformationDownloadArtifactType | undefined;
2896
- }
2897
- /**
2898
- * Unit test generation export context
2899
- * @public
2900
- */
2901
- export interface UnitTestGenerationExportContext {
2902
- /**
2903
- * Test generation job group name
2904
- * @public
2905
- */
2906
- testGenerationJobGroupName: string | undefined;
2907
- testGenerationJobId?: string | undefined;
2908
- }
2909
- /**
2910
- * Export Context
2911
- * @public
2912
- */
2913
- export type ExportContext = ExportContext.TransformationExportContextMember | ExportContext.UnitTestGenerationExportContextMember | ExportContext.$UnknownMember;
2914
- /**
2915
- * @public
2916
- */
2917
- export declare namespace ExportContext {
2918
- /**
2919
- * Transformation export context
2920
- * @public
2921
- */
2922
- interface TransformationExportContextMember {
2923
- transformationExportContext: TransformationExportContext;
2924
- unitTestGenerationExportContext?: never;
2925
- $unknown?: never;
2926
- }
2927
- /**
2928
- * Unit test generation export context
2929
- * @public
2930
- */
2931
- interface UnitTestGenerationExportContextMember {
2932
- transformationExportContext?: never;
2933
- unitTestGenerationExportContext: UnitTestGenerationExportContext;
2934
- $unknown?: never;
2935
- }
2936
- /**
2937
- * @public
2938
- */
2939
- interface $UnknownMember {
2940
- transformationExportContext?: never;
2941
- unitTestGenerationExportContext?: never;
2942
- $unknown: [string, any];
2943
- }
2944
- interface Visitor<T> {
2945
- transformationExportContext: (value: TransformationExportContext) => T;
2946
- unitTestGenerationExportContext: (value: UnitTestGenerationExportContext) => T;
2947
- _: (name: string, value: any) => T;
2948
- }
2949
- const visit: <T>(value: ExportContext, visitor: Visitor<T>) => T;
2950
- }
2951
- /**
2952
- * @public
2953
- * @enum
2954
- */
2955
- export declare const ExportIntent: {
2956
- /**
2957
- * Code Task Assist
2958
- */
2959
- readonly TASK_ASSIST: "TASK_ASSIST";
2960
- /**
2961
- * Code Transformation
2962
- */
2963
- readonly TRANSFORMATION: "TRANSFORMATION";
2964
- /**
2965
- * Unit Test
2966
- */
2967
- readonly UNIT_TESTS: "UNIT_TESTS";
2968
- };
2969
- /**
2970
- * @public
2971
- */
2972
- export type ExportIntent = typeof ExportIntent[keyof typeof ExportIntent];
2973
- /**
2974
- * Response Stream
2975
- * @public
2976
- */
2977
- export type ResultArchiveStream = ResultArchiveStream.BinaryMetadataEventMember | ResultArchiveStream.BinaryPayloadEventMember | ResultArchiveStream.InternalServerExceptionMember | ResultArchiveStream.$UnknownMember;
2978
- /**
2979
- * @public
2980
- */
2981
- export declare namespace ResultArchiveStream {
2982
- /**
2983
- * Payload Part
2984
- * @public
2985
- */
2986
- interface BinaryMetadataEventMember {
2987
- binaryMetadataEvent: BinaryMetadataEvent;
2988
- binaryPayloadEvent?: never;
2989
- internalServerException?: never;
2990
- $unknown?: never;
2991
- }
2992
- /**
2993
- * Payload Part
2994
- * @public
2995
- */
2996
- interface BinaryPayloadEventMember {
2997
- binaryMetadataEvent?: never;
2998
- binaryPayloadEvent: BinaryPayloadEvent;
2999
- internalServerException?: never;
3000
- $unknown?: never;
3001
- }
3002
- /**
3003
- * This exception is thrown when an unexpected error occurred during the processing of a request.
3004
- * @public
3005
- */
3006
- interface InternalServerExceptionMember {
3007
- binaryMetadataEvent?: never;
3008
- binaryPayloadEvent?: never;
3009
- internalServerException: InternalServerException;
3010
- $unknown?: never;
3011
- }
3012
- /**
3013
- * @public
3014
- */
3015
- interface $UnknownMember {
3016
- binaryMetadataEvent?: never;
3017
- binaryPayloadEvent?: never;
3018
- internalServerException?: never;
3019
- $unknown: [string, any];
3020
- }
3021
- interface Visitor<T> {
3022
- binaryMetadataEvent: (value: BinaryMetadataEvent) => T;
3023
- binaryPayloadEvent: (value: BinaryPayloadEvent) => T;
3024
- internalServerException: (value: InternalServerException) => T;
3025
- _: (name: string, value: any) => T;
3026
- }
3027
- const visit: <T>(value: ResultArchiveStream, visitor: Visitor<T>) => T;
3028
- }
3029
- /**
3030
- * @internal
3031
- */
3032
- export declare const ResultArchiveStreamFilterSensitiveLog: (obj: ResultArchiveStream) => any;
3033
- /**
3034
- * @public
3035
- * @enum
3036
- */
3037
- export declare const ServiceQuotaExceededExceptionReason: {
3038
- readonly CONVERSATION_LIMIT_EXCEEDED: "CONVERSATION_LIMIT_EXCEEDED";
3039
- };
3040
- /**
3041
- * @public
3042
- */
3043
- export type ServiceQuotaExceededExceptionReason = typeof ServiceQuotaExceededExceptionReason[keyof typeof ServiceQuotaExceededExceptionReason];
3044
- /**
3045
- * This exception is thrown when request was denied due to caller exceeding their usage limits
3046
- * @public
3047
- */
3048
- export declare class ServiceQuotaExceededException extends __BaseException {
3049
- readonly name: "ServiceQuotaExceededException";
3050
- readonly $fault: "client";
3051
- /**
3052
- * Reason for ServiceQuotaExceededException
3053
- * @public
3054
- */
3055
- reason?: ServiceQuotaExceededExceptionReason | undefined;
3056
- /**
3057
- * @internal
3058
- */
3059
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
3060
- }
3061
- /**
3062
- * Represents a Workspace state uploaded to S3 for Async Code Actions
3063
- * @public
3064
- */
3065
- export interface WorkspaceState {
3066
- /**
3067
- * Upload ID representing an Upload using a PreSigned URL
3068
- * @public
3069
- */
3070
- uploadId: string | undefined;
3071
- /**
3072
- * Primary programming language of the Workspace
3073
- * @public
3074
- */
3075
- programmingLanguage: ProgrammingLanguage | undefined;
3076
- /**
3077
- * Workspace context truncation schemes based on usecase
3078
- * @public
3079
- */
3080
- contextTruncationScheme?: ContextTruncationScheme | undefined;
3081
- }
3082
- /**
3083
- * Structure to represent a new generate assistant response request.
3084
- * @public
3085
- */
3086
- export interface GenerateAssistantResponseRequest {
3087
- /**
3088
- * Structure to represent the current state of a chat conversation.
3089
- * @public
3090
- */
3091
- conversationState: ConversationState | undefined;
3092
- profileArn?: string | undefined;
3093
- }
3094
- /**
3095
- * @internal
3096
- */
3097
- export declare const GenerateAssistantResponseRequestFilterSensitiveLog: (obj: GenerateAssistantResponseRequest) => any;
3098
- /**
3099
- * Structure to represent generate assistant response response.
3100
- * @public
3101
- */
3102
- export interface GenerateAssistantResponseResponse {
3103
- /**
3104
- * ID which represents a multi-turn conversation
3105
- * @public
3106
- */
3107
- conversationId: string | undefined;
3108
- /**
3109
- * Streaming events from UniDirectional Streaming Conversational APIs.
3110
- * @public
3111
- */
3112
- generateAssistantResponseResponse: AsyncIterable<ChatResponseStream> | undefined;
3113
- }
3114
- /**
3115
- * @internal
3116
- */
3117
- export declare const GenerateAssistantResponseResponseFilterSensitiveLog: (obj: GenerateAssistantResponseResponse) => any;
3118
- /**
3119
- * Structure to represent a new ExportResultArchive request.
3120
- * @public
3121
- */
3122
- export interface ExportResultArchiveRequest {
3123
- exportId: string | undefined;
3124
- /**
3125
- * Export Intent
3126
- * @public
3127
- */
3128
- exportIntent: ExportIntent | undefined;
3129
- /**
3130
- * Export Context
3131
- * @public
3132
- */
3133
- exportContext?: ExportContext | undefined;
3134
- profileArn?: string | undefined;
3135
- }
3136
- /**
3137
- * Structure to represent ExportResultArchive response.
3138
- * @public
3139
- */
3140
- export interface ExportResultArchiveResponse {
3141
- /**
3142
- * Response Stream
3143
- * @public
3144
- */
3145
- body: AsyncIterable<ResultArchiveStream> | undefined;
3146
- }
3147
- /**
3148
- * @internal
3149
- */
3150
- export declare const ExportResultArchiveResponseFilterSensitiveLog: (obj: ExportResultArchiveResponse) => any;
3151
- /**
3152
- * Structure to represent a SendMessage request.
3153
- * @public
3154
- */
3155
- export interface SendMessageRequest {
3156
- /**
3157
- * Structure to represent the current state of a chat conversation.
3158
- * @public
3159
- */
3160
- conversationState: ConversationState | undefined;
3161
- profileArn?: string | undefined;
3162
- /**
3163
- * The origin of the caller
3164
- * @public
3165
- */
3166
- source?: Origin | undefined;
3167
- dryRun?: boolean | undefined;
3168
- }
3169
- /**
3170
- * @internal
3171
- */
3172
- export declare const SendMessageRequestFilterSensitiveLog: (obj: SendMessageRequest) => any;
3173
- /**
3174
- * Structure to represent a SendMessage response.
3175
- * @public
3176
- */
3177
- export interface SendMessageResponse {
3178
- /**
3179
- * Streaming events from UniDirectional Streaming Conversational APIs.
3180
- * @public
3181
- */
3182
- sendMessageResponse: AsyncIterable<ChatResponseStream> | undefined;
3183
- }
3184
- /**
3185
- * @internal
3186
- */
3187
- export declare const SendMessageResponseFilterSensitiveLog: (obj: SendMessageResponse) => any;
3188
- /**
3189
- * Structure to represent execute planning interaction request.
3190
- * @public
3191
- */
3192
- export interface GenerateTaskAssistPlanRequest {
3193
- /**
3194
- * Structure to represent the current state of a chat conversation.
3195
- * @public
3196
- */
3197
- conversationState: ConversationState | undefined;
3198
- /**
3199
- * Represents a Workspace state uploaded to S3 for Async Code Actions
3200
- * @public
3201
- */
3202
- workspaceState: WorkspaceState | undefined;
3203
- profileArn?: string | undefined;
3204
- }
3205
- /**
3206
- * @internal
3207
- */
3208
- export declare const GenerateTaskAssistPlanRequestFilterSensitiveLog: (obj: GenerateTaskAssistPlanRequest) => any;
3209
- /**
3210
- * Structure to represent execute planning interaction response.
3211
- * @public
3212
- */
3213
- export interface GenerateTaskAssistPlanResponse {
3214
- /**
3215
- * Streaming events from UniDirectional Streaming Conversational APIs.
3216
- * @public
3217
- */
3218
- planningResponseStream?: AsyncIterable<ChatResponseStream> | undefined;
3219
- }
3220
- /**
3221
- * @internal
3222
- */
3223
- export declare const GenerateTaskAssistPlanResponseFilterSensitiveLog: (obj: GenerateTaskAssistPlanResponse) => any;