@aws/lsp-codewhisperer 0.0.84 → 0.0.85

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 (1536) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/node_modules/@amzn/codewhisperer/LICENSE +201 -0
  3. package/node_modules/@amzn/codewhisperer/README.md +1032 -0
  4. package/node_modules/@amzn/codewhisperer/dist-cjs/CodeWhisperer.js +49 -0
  5. package/node_modules/@amzn/codewhisperer/dist-cjs/CodeWhispererClient.js +47 -0
  6. package/node_modules/@amzn/codewhisperer/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  7. package/node_modules/@amzn/codewhisperer/dist-cjs/auth/httpAuthSchemeProvider.js +50 -0
  8. package/node_modules/@amzn/codewhisperer/dist-cjs/commands/AllowVendedLogDeliveryForResourceCommand.js +21 -0
  9. package/node_modules/@amzn/codewhisperer/dist-cjs/commands/AssociateCustomizationPermissionCommand.js +21 -0
  10. package/node_modules/@amzn/codewhisperer/dist-cjs/commands/CreateCustomizationCommand.js +22 -0
  11. package/node_modules/@amzn/codewhisperer/dist-cjs/commands/CreateProfileCommand.js +21 -0
  12. package/node_modules/@amzn/codewhisperer/dist-cjs/commands/DeleteCustomizationCommand.js +21 -0
  13. package/node_modules/@amzn/codewhisperer/dist-cjs/commands/DeleteProfileCommand.js +21 -0
  14. package/node_modules/@amzn/codewhisperer/dist-cjs/commands/DisassociateCustomizationPermissionCommand.js +21 -0
  15. package/node_modules/@amzn/codewhisperer/dist-cjs/commands/GenerateRecommendationsCommand.js +22 -0
  16. package/node_modules/@amzn/codewhisperer/dist-cjs/commands/GetCustomizationCommand.js +22 -0
  17. package/node_modules/@amzn/codewhisperer/dist-cjs/commands/ListCustomizationPermissionsCommand.js +21 -0
  18. package/node_modules/@amzn/codewhisperer/dist-cjs/commands/ListCustomizationVersionsCommand.js +21 -0
  19. package/node_modules/@amzn/codewhisperer/dist-cjs/commands/ListCustomizationsCommand.js +21 -0
  20. package/node_modules/@amzn/codewhisperer/dist-cjs/commands/ListProfilesCommand.js +21 -0
  21. package/node_modules/@amzn/codewhisperer/dist-cjs/commands/ListTagsForResourceCommand.js +21 -0
  22. package/node_modules/@amzn/codewhisperer/dist-cjs/commands/TagResourceCommand.js +21 -0
  23. package/node_modules/@amzn/codewhisperer/dist-cjs/commands/UntagResourceCommand.js +21 -0
  24. package/node_modules/@amzn/codewhisperer/dist-cjs/commands/UpdateCustomizationCommand.js +22 -0
  25. package/node_modules/@amzn/codewhisperer/dist-cjs/commands/UpdateProfileCommand.js +21 -0
  26. package/node_modules/@amzn/codewhisperer/dist-cjs/commands/VendKeyGrantCommand.js +21 -0
  27. package/node_modules/@amzn/codewhisperer/dist-cjs/commands/index.js +22 -0
  28. package/node_modules/@amzn/codewhisperer/dist-cjs/endpoints.js +211 -0
  29. package/node_modules/@amzn/codewhisperer/dist-cjs/extensionConfiguration.js +2 -0
  30. package/node_modules/@amzn/codewhisperer/dist-cjs/index.js +11 -0
  31. package/node_modules/@amzn/codewhisperer/dist-cjs/models/CodeWhispererServiceException.js +12 -0
  32. package/node_modules/@amzn/codewhisperer/dist-cjs/models/index.js +4 -0
  33. package/node_modules/@amzn/codewhisperer/dist-cjs/models/models_0.js +316 -0
  34. package/node_modules/@amzn/codewhisperer/dist-cjs/pagination/Interfaces.js +2 -0
  35. package/node_modules/@amzn/codewhisperer/dist-cjs/pagination/ListCustomizationPermissionsPaginator.js +7 -0
  36. package/node_modules/@amzn/codewhisperer/dist-cjs/pagination/ListCustomizationVersionsPaginator.js +7 -0
  37. package/node_modules/@amzn/codewhisperer/dist-cjs/pagination/ListCustomizationsPaginator.js +7 -0
  38. package/node_modules/@amzn/codewhisperer/dist-cjs/pagination/ListProfilesPaginator.js +7 -0
  39. package/node_modules/@amzn/codewhisperer/dist-cjs/pagination/index.js +8 -0
  40. package/node_modules/@amzn/codewhisperer/dist-cjs/protocols/Aws_restJson1.js +791 -0
  41. package/node_modules/@amzn/codewhisperer/dist-cjs/runtimeConfig.browser.js +38 -0
  42. package/node_modules/@amzn/codewhisperer/dist-cjs/runtimeConfig.js +46 -0
  43. package/node_modules/@amzn/codewhisperer/dist-cjs/runtimeConfig.native.js +15 -0
  44. package/node_modules/@amzn/codewhisperer/dist-cjs/runtimeConfig.shared.js +32 -0
  45. package/node_modules/@amzn/codewhisperer/dist-cjs/runtimeExtensions.js +25 -0
  46. package/node_modules/@amzn/codewhisperer/dist-es/CodeWhisperer.js +45 -0
  47. package/node_modules/@amzn/codewhisperer/dist-es/CodeWhispererClient.js +43 -0
  48. package/node_modules/@amzn/codewhisperer/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  49. package/node_modules/@amzn/codewhisperer/dist-es/auth/httpAuthSchemeProvider.js +44 -0
  50. package/node_modules/@amzn/codewhisperer/dist-es/commands/AllowVendedLogDeliveryForResourceCommand.js +17 -0
  51. package/node_modules/@amzn/codewhisperer/dist-es/commands/AssociateCustomizationPermissionCommand.js +17 -0
  52. package/node_modules/@amzn/codewhisperer/dist-es/commands/CreateCustomizationCommand.js +18 -0
  53. package/node_modules/@amzn/codewhisperer/dist-es/commands/CreateProfileCommand.js +17 -0
  54. package/node_modules/@amzn/codewhisperer/dist-es/commands/DeleteCustomizationCommand.js +17 -0
  55. package/node_modules/@amzn/codewhisperer/dist-es/commands/DeleteProfileCommand.js +17 -0
  56. package/node_modules/@amzn/codewhisperer/dist-es/commands/DisassociateCustomizationPermissionCommand.js +17 -0
  57. package/node_modules/@amzn/codewhisperer/dist-es/commands/GenerateRecommendationsCommand.js +18 -0
  58. package/node_modules/@amzn/codewhisperer/dist-es/commands/GetCustomizationCommand.js +18 -0
  59. package/node_modules/@amzn/codewhisperer/dist-es/commands/ListCustomizationPermissionsCommand.js +17 -0
  60. package/node_modules/@amzn/codewhisperer/dist-es/commands/ListCustomizationVersionsCommand.js +17 -0
  61. package/node_modules/@amzn/codewhisperer/dist-es/commands/ListCustomizationsCommand.js +17 -0
  62. package/node_modules/@amzn/codewhisperer/dist-es/commands/ListProfilesCommand.js +17 -0
  63. package/node_modules/@amzn/codewhisperer/dist-es/commands/ListTagsForResourceCommand.js +17 -0
  64. package/node_modules/@amzn/codewhisperer/dist-es/commands/TagResourceCommand.js +17 -0
  65. package/node_modules/@amzn/codewhisperer/dist-es/commands/UntagResourceCommand.js +17 -0
  66. package/node_modules/@amzn/codewhisperer/dist-es/commands/UpdateCustomizationCommand.js +18 -0
  67. package/node_modules/@amzn/codewhisperer/dist-es/commands/UpdateProfileCommand.js +17 -0
  68. package/node_modules/@amzn/codewhisperer/dist-es/commands/VendKeyGrantCommand.js +17 -0
  69. package/node_modules/@amzn/codewhisperer/dist-es/commands/index.js +19 -0
  70. package/node_modules/@amzn/codewhisperer/dist-es/endpoints.js +207 -0
  71. package/node_modules/@amzn/codewhisperer/dist-es/index.js +6 -0
  72. package/node_modules/@amzn/codewhisperer/dist-es/models/CodeWhispererServiceException.js +8 -0
  73. package/node_modules/@amzn/codewhisperer/dist-es/models/index.js +1 -0
  74. package/node_modules/@amzn/codewhisperer/dist-es/models/models_0.js +298 -0
  75. package/node_modules/@amzn/codewhisperer/dist-es/pagination/ListCustomizationPermissionsPaginator.js +4 -0
  76. package/node_modules/@amzn/codewhisperer/dist-es/pagination/ListCustomizationVersionsPaginator.js +4 -0
  77. package/node_modules/@amzn/codewhisperer/dist-es/pagination/ListCustomizationsPaginator.js +4 -0
  78. package/node_modules/@amzn/codewhisperer/dist-es/pagination/ListProfilesPaginator.js +4 -0
  79. package/node_modules/@amzn/codewhisperer/dist-es/pagination/index.js +5 -0
  80. package/node_modules/@amzn/codewhisperer/dist-es/protocols/Aws_restJson1.js +750 -0
  81. package/node_modules/@amzn/codewhisperer/dist-es/runtimeConfig.browser.js +33 -0
  82. package/node_modules/@amzn/codewhisperer/dist-es/runtimeConfig.js +41 -0
  83. package/node_modules/@amzn/codewhisperer/dist-es/runtimeConfig.native.js +11 -0
  84. package/node_modules/@amzn/codewhisperer/dist-es/runtimeConfig.shared.js +28 -0
  85. package/node_modules/@amzn/codewhisperer/dist-es/runtimeExtensions.js +21 -0
  86. package/node_modules/@amzn/codewhisperer/dist-types/CodeWhisperer.d.ts +144 -0
  87. package/node_modules/@amzn/codewhisperer/dist-types/CodeWhispererClient.d.ts +208 -0
  88. package/node_modules/@amzn/codewhisperer/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  89. package/node_modules/@amzn/codewhisperer/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  90. package/node_modules/@amzn/codewhisperer/dist-types/commands/AllowVendedLogDeliveryForResourceCommand.d.ts +87 -0
  91. package/node_modules/@amzn/codewhisperer/dist-types/commands/AssociateCustomizationPermissionCommand.d.ts +91 -0
  92. package/node_modules/@amzn/codewhisperer/dist-types/commands/CreateCustomizationCommand.d.ts +106 -0
  93. package/node_modules/@amzn/codewhisperer/dist-types/commands/CreateProfileCommand.d.ts +146 -0
  94. package/node_modules/@amzn/codewhisperer/dist-types/commands/DeleteCustomizationCommand.d.ts +88 -0
  95. package/node_modules/@amzn/codewhisperer/dist-types/commands/DeleteProfileCommand.d.ts +88 -0
  96. package/node_modules/@amzn/codewhisperer/dist-types/commands/DisassociateCustomizationPermissionCommand.d.ts +91 -0
  97. package/node_modules/@amzn/codewhisperer/dist-types/commands/GenerateRecommendationsCommand.d.ts +130 -0
  98. package/node_modules/@amzn/codewhisperer/dist-types/commands/GetCustomizationCommand.d.ts +107 -0
  99. package/node_modules/@amzn/codewhisperer/dist-types/commands/ListCustomizationPermissionsCommand.d.ts +94 -0
  100. package/node_modules/@amzn/codewhisperer/dist-types/commands/ListCustomizationVersionsCommand.d.ts +107 -0
  101. package/node_modules/@amzn/codewhisperer/dist-types/commands/ListCustomizationsCommand.d.ts +94 -0
  102. package/node_modules/@amzn/codewhisperer/dist-types/commands/ListProfilesCommand.d.ts +155 -0
  103. package/node_modules/@amzn/codewhisperer/dist-types/commands/ListTagsForResourceCommand.d.ts +92 -0
  104. package/node_modules/@amzn/codewhisperer/dist-types/commands/TagResourceCommand.d.ts +91 -0
  105. package/node_modules/@amzn/codewhisperer/dist-types/commands/UntagResourceCommand.d.ts +88 -0
  106. package/node_modules/@amzn/codewhisperer/dist-types/commands/UpdateCustomizationCommand.d.ts +101 -0
  107. package/node_modules/@amzn/codewhisperer/dist-types/commands/UpdateProfileCommand.d.ts +141 -0
  108. package/node_modules/@amzn/codewhisperer/dist-types/commands/VendKeyGrantCommand.d.ts +91 -0
  109. package/node_modules/@amzn/codewhisperer/dist-types/commands/index.d.ts +19 -0
  110. package/node_modules/@amzn/codewhisperer/dist-types/endpoints.d.ts +2 -0
  111. package/node_modules/@amzn/codewhisperer/dist-types/extensionConfiguration.d.ts +9 -0
  112. package/node_modules/@amzn/codewhisperer/dist-types/index.d.ts +8 -0
  113. package/node_modules/@amzn/codewhisperer/dist-types/models/CodeWhispererServiceException.d.ts +14 -0
  114. package/node_modules/@amzn/codewhisperer/dist-types/models/index.d.ts +1 -0
  115. package/node_modules/@amzn/codewhisperer/dist-types/models/models_0.d.ts +1174 -0
  116. package/node_modules/@amzn/codewhisperer/dist-types/pagination/Interfaces.d.ts +8 -0
  117. package/node_modules/@amzn/codewhisperer/dist-types/pagination/ListCustomizationPermissionsPaginator.d.ts +7 -0
  118. package/node_modules/@amzn/codewhisperer/dist-types/pagination/ListCustomizationVersionsPaginator.d.ts +7 -0
  119. package/node_modules/@amzn/codewhisperer/dist-types/pagination/ListCustomizationsPaginator.d.ts +7 -0
  120. package/node_modules/@amzn/codewhisperer/dist-types/pagination/ListProfilesPaginator.d.ts +7 -0
  121. package/node_modules/@amzn/codewhisperer/dist-types/pagination/index.d.ts +5 -0
  122. package/node_modules/@amzn/codewhisperer/dist-types/protocols/Aws_restJson1.d.ts +173 -0
  123. package/node_modules/@amzn/codewhisperer/dist-types/runtimeConfig.browser.d.ts +46 -0
  124. package/node_modules/@amzn/codewhisperer/dist-types/runtimeConfig.d.ts +46 -0
  125. package/node_modules/@amzn/codewhisperer/dist-types/runtimeConfig.native.d.ts +45 -0
  126. package/node_modules/@amzn/codewhisperer/dist-types/runtimeConfig.shared.d.ts +19 -0
  127. package/node_modules/@amzn/codewhisperer/dist-types/runtimeExtensions.d.ts +17 -0
  128. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/README.md +4 -0
  129. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-cjs/index.js +294 -0
  130. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-es/auth.js +1 -0
  131. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-es/dns.js +5 -0
  132. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -0
  133. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-es/identity/index.js +5 -0
  134. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-es/index.js +33 -0
  135. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
  136. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -0
  137. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/auth.d.ts +1 -0
  138. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -0
  139. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -0
  140. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -0
  141. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -0
  142. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -0
  143. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +50 -0
  144. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -0
  145. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/dns.d.ts +85 -0
  146. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -0
  147. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +1 -0
  148. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -0
  149. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +8 -0
  150. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +59 -0
  151. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/http.d.ts +33 -0
  152. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +6 -0
  153. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +47 -0
  154. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -0
  155. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +18 -0
  156. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +1 -0
  157. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -0
  158. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/index.d.ts +33 -0
  159. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/logger.d.ts +22 -0
  160. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +13 -0
  161. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -0
  162. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -0
  163. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/request.d.ts +7 -0
  164. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/response.d.ts +7 -0
  165. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -0
  166. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/serde.d.ts +24 -0
  167. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -0
  168. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -0
  169. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -0
  170. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/token.d.ts +17 -0
  171. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +1 -0
  172. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +1 -0
  173. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +5 -0
  174. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +2 -0
  175. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +1 -0
  176. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +1 -0
  177. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +1 -0
  178. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +6 -0
  179. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +13 -0
  180. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +7 -0
  181. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +19 -0
  182. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +6 -0
  183. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +9 -0
  184. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +24 -0
  185. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +5 -0
  186. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +54 -0
  187. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +17 -0
  188. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +2 -0
  189. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +25 -0
  190. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +1 -0
  191. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +6 -0
  192. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +1 -0
  193. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +5 -0
  194. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +33 -0
  195. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +15 -0
  196. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +47 -0
  197. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +1 -0
  198. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +6 -0
  199. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +4 -0
  200. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +4 -0
  201. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +12 -0
  202. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +16 -0
  203. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +6 -0
  204. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +15 -0
  205. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +4 -0
  206. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +4 -0
  207. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +7 -0
  208. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +1 -0
  209. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +14 -0
  210. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +1 -0
  211. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -0
  212. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -0
  213. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -0
  214. package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/package.json +56 -0
  215. package/node_modules/@amzn/codewhisperer/node_modules/uuid/CHANGELOG.md +274 -0
  216. package/node_modules/@amzn/codewhisperer/node_modules/uuid/CONTRIBUTING.md +18 -0
  217. package/node_modules/@amzn/codewhisperer/node_modules/uuid/LICENSE.md +9 -0
  218. package/node_modules/@amzn/codewhisperer/node_modules/uuid/README.md +466 -0
  219. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/bin/uuid +2 -0
  220. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/index.js +79 -0
  221. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/md5.js +223 -0
  222. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/native.js +11 -0
  223. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/nil.js +8 -0
  224. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/parse.js +45 -0
  225. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/regex.js +8 -0
  226. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/rng.js +25 -0
  227. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/sha1.js +104 -0
  228. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/stringify.js +44 -0
  229. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/v1.js +107 -0
  230. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/v3.js +16 -0
  231. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/v35.js +80 -0
  232. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/v4.js +43 -0
  233. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/v5.js +16 -0
  234. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/validate.js +17 -0
  235. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/version.js +21 -0
  236. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/index.js +9 -0
  237. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/md5.js +215 -0
  238. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/native.js +4 -0
  239. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/nil.js +1 -0
  240. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/parse.js +35 -0
  241. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/regex.js +1 -0
  242. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/rng.js +18 -0
  243. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
  244. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/stringify.js +33 -0
  245. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/v1.js +95 -0
  246. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/v3.js +4 -0
  247. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/v35.js +66 -0
  248. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/v4.js +29 -0
  249. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/v5.js +4 -0
  250. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/validate.js +7 -0
  251. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/version.js +11 -0
  252. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/index.js +9 -0
  253. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/md5.js +13 -0
  254. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/native.js +4 -0
  255. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/nil.js +1 -0
  256. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/parse.js +35 -0
  257. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/regex.js +1 -0
  258. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/rng.js +12 -0
  259. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/sha1.js +13 -0
  260. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/stringify.js +33 -0
  261. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/v1.js +95 -0
  262. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/v3.js +4 -0
  263. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/v35.js +66 -0
  264. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/v4.js +29 -0
  265. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/v5.js +4 -0
  266. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/validate.js +7 -0
  267. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/version.js +11 -0
  268. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/index.js +79 -0
  269. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/md5-browser.js +223 -0
  270. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/md5.js +23 -0
  271. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/native-browser.js +11 -0
  272. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/native.js +15 -0
  273. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/nil.js +8 -0
  274. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/parse.js +45 -0
  275. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/regex.js +8 -0
  276. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/rng-browser.js +25 -0
  277. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/rng.js +24 -0
  278. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/sha1-browser.js +104 -0
  279. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/sha1.js +23 -0
  280. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/stringify.js +44 -0
  281. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/uuid-bin.js +85 -0
  282. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/v1.js +107 -0
  283. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/v3.js +16 -0
  284. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/v35.js +80 -0
  285. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/v4.js +43 -0
  286. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/v5.js +16 -0
  287. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/validate.js +17 -0
  288. package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/version.js +21 -0
  289. package/node_modules/@amzn/codewhisperer/node_modules/uuid/package.json +135 -0
  290. package/node_modules/@amzn/codewhisperer/node_modules/uuid/wrapper.mjs +10 -0
  291. package/node_modules/@amzn/codewhisperer/package.json +85 -0
  292. package/node_modules/@amzn/codewhisperer-runtime/LICENSE +201 -0
  293. package/node_modules/@amzn/codewhisperer-runtime/README.md +1032 -0
  294. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/CodeWhispererRuntime.js +89 -0
  295. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/CodeWhispererRuntimeClient.js +47 -0
  296. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  297. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
  298. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateArtifactUploadUrlCommand.js +22 -0
  299. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateSubscriptionTokenCommand.js +21 -0
  300. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateTaskAssistConversationCommand.js +21 -0
  301. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateUploadUrlCommand.js +22 -0
  302. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateUserMemoryEntryCommand.js +22 -0
  303. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateWorkspaceCommand.js +22 -0
  304. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/DeleteTaskAssistConversationCommand.js +21 -0
  305. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/DeleteUserMemoryEntryCommand.js +21 -0
  306. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/DeleteWorkspaceCommand.js +21 -0
  307. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GenerateCompletionsCommand.js +22 -0
  308. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetCodeAnalysisCommand.js +22 -0
  309. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetCodeFixJobCommand.js +22 -0
  310. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetProfileCommand.js +21 -0
  311. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetRetrievalsCommand.js +21 -0
  312. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetTaskAssistCodeGenerationCommand.js +22 -0
  313. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetTestGenerationCommand.js +22 -0
  314. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetTransformationCommand.js +21 -0
  315. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetTransformationPlanCommand.js +21 -0
  316. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetUsageLimitsCommand.js +22 -0
  317. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListAvailableCustomizationsCommand.js +21 -0
  318. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListAvailableModelsCommand.js +21 -0
  319. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListAvailableProfilesCommand.js +21 -0
  320. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListAvailableSubscriptionsCommand.js +21 -0
  321. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListCodeAnalysisFindingsCommand.js +22 -0
  322. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListEventsCommand.js +22 -0
  323. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListFeatureEvaluationsCommand.js +21 -0
  324. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListUserMemoryEntriesCommand.js +22 -0
  325. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListWorkspaceMetadataCommand.js +22 -0
  326. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/PushTelemetryEventCommand.js +21 -0
  327. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ResumeTransformationCommand.js +21 -0
  328. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/SendTelemetryEventCommand.js +22 -0
  329. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/SetUserPreferenceCommand.js +21 -0
  330. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StartCodeAnalysisCommand.js +22 -0
  331. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StartCodeFixJobCommand.js +22 -0
  332. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StartTaskAssistCodeGenerationCommand.js +22 -0
  333. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StartTestGenerationCommand.js +22 -0
  334. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StartTransformationCommand.js +21 -0
  335. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StopTransformationCommand.js +21 -0
  336. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/UpdateUsageLimitsCommand.js +21 -0
  337. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/index.js +42 -0
  338. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/endpoints.js +211 -0
  339. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/extensionConfiguration.js +2 -0
  340. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/index.js +11 -0
  341. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/models/CodeWhispererRuntimeServiceException.js +12 -0
  342. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/models/index.js +5 -0
  343. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/models/models_0.js +1519 -0
  344. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/models/models_1.js +52 -0
  345. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/GenerateCompletionsPaginator.js +7 -0
  346. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/Interfaces.js +2 -0
  347. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListAvailableCustomizationsPaginator.js +7 -0
  348. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListAvailableModelsPaginator.js +7 -0
  349. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListAvailableProfilesPaginator.js +7 -0
  350. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListCodeAnalysisFindingsPaginator.js +7 -0
  351. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListEventsPaginator.js +7 -0
  352. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListUserMemoryEntriesPaginator.js +7 -0
  353. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListWorkspaceMetadataPaginator.js +7 -0
  354. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/index.js +12 -0
  355. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/protocols/Aws_restJson1.js +2089 -0
  356. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/runtimeConfig.browser.js +37 -0
  357. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/runtimeConfig.js +51 -0
  358. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/runtimeConfig.native.js +15 -0
  359. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/runtimeConfig.shared.js +32 -0
  360. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/runtimeExtensions.js +25 -0
  361. package/node_modules/@amzn/codewhisperer-runtime/dist-es/CodeWhispererRuntime.js +85 -0
  362. package/node_modules/@amzn/codewhisperer-runtime/dist-es/CodeWhispererRuntimeClient.js +43 -0
  363. package/node_modules/@amzn/codewhisperer-runtime/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  364. package/node_modules/@amzn/codewhisperer-runtime/dist-es/auth/httpAuthSchemeProvider.js +40 -0
  365. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateArtifactUploadUrlCommand.js +18 -0
  366. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateSubscriptionTokenCommand.js +17 -0
  367. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateTaskAssistConversationCommand.js +17 -0
  368. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateUploadUrlCommand.js +18 -0
  369. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateUserMemoryEntryCommand.js +18 -0
  370. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateWorkspaceCommand.js +18 -0
  371. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/DeleteTaskAssistConversationCommand.js +17 -0
  372. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/DeleteUserMemoryEntryCommand.js +17 -0
  373. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/DeleteWorkspaceCommand.js +17 -0
  374. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GenerateCompletionsCommand.js +18 -0
  375. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetCodeAnalysisCommand.js +18 -0
  376. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetCodeFixJobCommand.js +18 -0
  377. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetProfileCommand.js +17 -0
  378. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetRetrievalsCommand.js +17 -0
  379. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetTaskAssistCodeGenerationCommand.js +18 -0
  380. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetTestGenerationCommand.js +18 -0
  381. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetTransformationCommand.js +17 -0
  382. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetTransformationPlanCommand.js +17 -0
  383. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetUsageLimitsCommand.js +18 -0
  384. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListAvailableCustomizationsCommand.js +17 -0
  385. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListAvailableModelsCommand.js +17 -0
  386. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListAvailableProfilesCommand.js +17 -0
  387. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListAvailableSubscriptionsCommand.js +17 -0
  388. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListCodeAnalysisFindingsCommand.js +18 -0
  389. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListEventsCommand.js +18 -0
  390. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListFeatureEvaluationsCommand.js +17 -0
  391. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListUserMemoryEntriesCommand.js +18 -0
  392. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListWorkspaceMetadataCommand.js +18 -0
  393. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/PushTelemetryEventCommand.js +17 -0
  394. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ResumeTransformationCommand.js +17 -0
  395. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/SendTelemetryEventCommand.js +18 -0
  396. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/SetUserPreferenceCommand.js +17 -0
  397. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StartCodeAnalysisCommand.js +18 -0
  398. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StartCodeFixJobCommand.js +18 -0
  399. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StartTaskAssistCodeGenerationCommand.js +18 -0
  400. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StartTestGenerationCommand.js +18 -0
  401. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StartTransformationCommand.js +17 -0
  402. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StopTransformationCommand.js +17 -0
  403. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/UpdateUsageLimitsCommand.js +17 -0
  404. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/index.js +39 -0
  405. package/node_modules/@amzn/codewhisperer-runtime/dist-es/endpoints.js +207 -0
  406. package/node_modules/@amzn/codewhisperer-runtime/dist-es/index.js +6 -0
  407. package/node_modules/@amzn/codewhisperer-runtime/dist-es/models/CodeWhispererRuntimeServiceException.js +8 -0
  408. package/node_modules/@amzn/codewhisperer-runtime/dist-es/models/index.js +2 -0
  409. package/node_modules/@amzn/codewhisperer-runtime/dist-es/models/models_0.js +1429 -0
  410. package/node_modules/@amzn/codewhisperer-runtime/dist-es/models/models_1.js +43 -0
  411. package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/GenerateCompletionsPaginator.js +4 -0
  412. package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListAvailableCustomizationsPaginator.js +4 -0
  413. package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListAvailableModelsPaginator.js +4 -0
  414. package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListAvailableProfilesPaginator.js +4 -0
  415. package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListCodeAnalysisFindingsPaginator.js +4 -0
  416. package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListEventsPaginator.js +4 -0
  417. package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListUserMemoryEntriesPaginator.js +4 -0
  418. package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListWorkspaceMetadataPaginator.js +4 -0
  419. package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/index.js +9 -0
  420. package/node_modules/@amzn/codewhisperer-runtime/dist-es/protocols/Aws_restJson1.js +2007 -0
  421. package/node_modules/@amzn/codewhisperer-runtime/dist-es/runtimeConfig.browser.js +32 -0
  422. package/node_modules/@amzn/codewhisperer-runtime/dist-es/runtimeConfig.js +46 -0
  423. package/node_modules/@amzn/codewhisperer-runtime/dist-es/runtimeConfig.native.js +11 -0
  424. package/node_modules/@amzn/codewhisperer-runtime/dist-es/runtimeConfig.shared.js +28 -0
  425. package/node_modules/@amzn/codewhisperer-runtime/dist-es/runtimeExtensions.js +21 -0
  426. package/node_modules/@amzn/codewhisperer-runtime/dist-types/CodeWhispererRuntime.d.ts +293 -0
  427. package/node_modules/@amzn/codewhisperer-runtime/dist-types/CodeWhispererRuntimeClient.d.ts +222 -0
  428. package/node_modules/@amzn/codewhisperer-runtime/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  429. package/node_modules/@amzn/codewhisperer-runtime/dist-types/auth/httpAuthSchemeProvider.d.ts +67 -0
  430. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateArtifactUploadUrlCommand.d.ts +117 -0
  431. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateSubscriptionTokenCommand.d.ts +91 -0
  432. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateTaskAssistConversationCommand.d.ts +86 -0
  433. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateUploadUrlCommand.d.ts +126 -0
  434. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateUserMemoryEntryCommand.d.ts +106 -0
  435. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateWorkspaceCommand.d.ts +95 -0
  436. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/DeleteTaskAssistConversationCommand.d.ts +87 -0
  437. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/DeleteUserMemoryEntryCommand.d.ts +85 -0
  438. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/DeleteWorkspaceCommand.d.ts +82 -0
  439. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GenerateCompletionsCommand.d.ts +236 -0
  440. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetCodeAnalysisCommand.d.ts +88 -0
  441. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetCodeFixJobCommand.d.ts +102 -0
  442. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetProfileCommand.d.ts +121 -0
  443. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetRetrievalsCommand.d.ts +100 -0
  444. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetTaskAssistCodeGenerationCommand.d.ts +98 -0
  445. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetTestGenerationCommand.d.ts +126 -0
  446. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetTransformationCommand.d.ts +143 -0
  447. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetTransformationPlanCommand.d.ts +113 -0
  448. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetUsageLimitsCommand.d.ts +163 -0
  449. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListAvailableCustomizationsCommand.d.ts +93 -0
  450. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListAvailableModelsCommand.d.ts +115 -0
  451. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListAvailableProfilesCommand.d.ts +153 -0
  452. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListAvailableSubscriptionsCommand.d.ts +101 -0
  453. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListCodeAnalysisFindingsCommand.d.ts +90 -0
  454. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListEventsCommand.d.ts +95 -0
  455. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListFeatureEvaluationsCommand.d.ts +104 -0
  456. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListUserMemoryEntriesCommand.d.ts +105 -0
  457. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListWorkspaceMetadataCommand.d.ts +94 -0
  458. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/PushTelemetryEventCommand.d.ts +83 -0
  459. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ResumeTransformationCommand.d.ts +88 -0
  460. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/SendTelemetryEventCommand.d.ts +403 -0
  461. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/SetUserPreferenceCommand.d.ts +84 -0
  462. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StartCodeAnalysisCommand.d.ts +105 -0
  463. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StartCodeFixJobCommand.d.ts +101 -0
  464. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StartTaskAssistCodeGenerationCommand.d.ts +577 -0
  465. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StartTestGenerationCommand.d.ts +151 -0
  466. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StartTransformationCommand.d.ts +142 -0
  467. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StopTransformationCommand.d.ts +87 -0
  468. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/UpdateUsageLimitsCommand.d.ts +94 -0
  469. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/index.d.ts +39 -0
  470. package/node_modules/@amzn/codewhisperer-runtime/dist-types/endpoints.d.ts +2 -0
  471. package/node_modules/@amzn/codewhisperer-runtime/dist-types/extensionConfiguration.d.ts +9 -0
  472. package/node_modules/@amzn/codewhisperer-runtime/dist-types/index.d.ts +8 -0
  473. package/node_modules/@amzn/codewhisperer-runtime/dist-types/models/CodeWhispererRuntimeServiceException.d.ts +14 -0
  474. package/node_modules/@amzn/codewhisperer-runtime/dist-types/models/index.d.ts +2 -0
  475. package/node_modules/@amzn/codewhisperer-runtime/dist-types/models/models_0.d.ts +5940 -0
  476. package/node_modules/@amzn/codewhisperer-runtime/dist-types/models/models_1.d.ts +136 -0
  477. package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/GenerateCompletionsPaginator.d.ts +7 -0
  478. package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/Interfaces.d.ts +8 -0
  479. package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListAvailableCustomizationsPaginator.d.ts +7 -0
  480. package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListAvailableModelsPaginator.d.ts +7 -0
  481. package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListAvailableProfilesPaginator.d.ts +7 -0
  482. package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListCodeAnalysisFindingsPaginator.d.ts +7 -0
  483. package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListEventsPaginator.d.ts +7 -0
  484. package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListUserMemoryEntriesPaginator.d.ts +7 -0
  485. package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListWorkspaceMetadataPaginator.d.ts +7 -0
  486. package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/index.d.ts +9 -0
  487. package/node_modules/@amzn/codewhisperer-runtime/dist-types/protocols/Aws_restJson1.d.ts +353 -0
  488. package/node_modules/@amzn/codewhisperer-runtime/dist-types/runtimeConfig.browser.d.ts +44 -0
  489. package/node_modules/@amzn/codewhisperer-runtime/dist-types/runtimeConfig.d.ts +46 -0
  490. package/node_modules/@amzn/codewhisperer-runtime/dist-types/runtimeConfig.native.d.ts +43 -0
  491. package/node_modules/@amzn/codewhisperer-runtime/dist-types/runtimeConfig.shared.d.ts +25 -0
  492. package/node_modules/@amzn/codewhisperer-runtime/dist-types/runtimeExtensions.d.ts +17 -0
  493. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/README.md +4 -0
  494. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-cjs/index.js +294 -0
  495. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/auth.js +1 -0
  496. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/dns.js +5 -0
  497. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -0
  498. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/identity/index.js +5 -0
  499. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/index.js +33 -0
  500. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
  501. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -0
  502. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/auth.d.ts +1 -0
  503. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -0
  504. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -0
  505. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -0
  506. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -0
  507. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -0
  508. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +50 -0
  509. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -0
  510. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/dns.d.ts +85 -0
  511. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -0
  512. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +1 -0
  513. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -0
  514. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +8 -0
  515. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +59 -0
  516. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/http.d.ts +33 -0
  517. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +6 -0
  518. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +47 -0
  519. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -0
  520. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +18 -0
  521. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +1 -0
  522. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -0
  523. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/index.d.ts +33 -0
  524. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/logger.d.ts +22 -0
  525. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +13 -0
  526. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -0
  527. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -0
  528. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/request.d.ts +7 -0
  529. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/response.d.ts +7 -0
  530. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -0
  531. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/serde.d.ts +24 -0
  532. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -0
  533. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -0
  534. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -0
  535. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/token.d.ts +17 -0
  536. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +1 -0
  537. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +1 -0
  538. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +5 -0
  539. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +2 -0
  540. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +1 -0
  541. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +1 -0
  542. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +1 -0
  543. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +6 -0
  544. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +13 -0
  545. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +7 -0
  546. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +19 -0
  547. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +6 -0
  548. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +9 -0
  549. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +24 -0
  550. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +5 -0
  551. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +54 -0
  552. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +17 -0
  553. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +2 -0
  554. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +25 -0
  555. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +1 -0
  556. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +6 -0
  557. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +1 -0
  558. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +5 -0
  559. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +33 -0
  560. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +15 -0
  561. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +47 -0
  562. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +1 -0
  563. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +6 -0
  564. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +4 -0
  565. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +4 -0
  566. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +12 -0
  567. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +16 -0
  568. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +6 -0
  569. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +15 -0
  570. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +4 -0
  571. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +4 -0
  572. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +7 -0
  573. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +1 -0
  574. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +14 -0
  575. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +1 -0
  576. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -0
  577. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -0
  578. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -0
  579. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/package.json +56 -0
  580. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/CHANGELOG.md +274 -0
  581. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/CONTRIBUTING.md +18 -0
  582. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/LICENSE.md +9 -0
  583. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/README.md +466 -0
  584. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/bin/uuid +2 -0
  585. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/index.js +79 -0
  586. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/md5.js +223 -0
  587. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/native.js +11 -0
  588. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/nil.js +8 -0
  589. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/parse.js +45 -0
  590. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/regex.js +8 -0
  591. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/rng.js +25 -0
  592. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/sha1.js +104 -0
  593. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/stringify.js +44 -0
  594. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/v1.js +107 -0
  595. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/v3.js +16 -0
  596. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/v35.js +80 -0
  597. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/v4.js +43 -0
  598. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/v5.js +16 -0
  599. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/validate.js +17 -0
  600. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/version.js +21 -0
  601. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/index.js +9 -0
  602. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/md5.js +215 -0
  603. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/native.js +4 -0
  604. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/nil.js +1 -0
  605. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/parse.js +35 -0
  606. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/regex.js +1 -0
  607. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/rng.js +18 -0
  608. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
  609. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/stringify.js +33 -0
  610. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/v1.js +95 -0
  611. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/v3.js +4 -0
  612. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/v35.js +66 -0
  613. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/v4.js +29 -0
  614. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/v5.js +4 -0
  615. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/validate.js +7 -0
  616. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/version.js +11 -0
  617. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/index.js +9 -0
  618. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/md5.js +13 -0
  619. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/native.js +4 -0
  620. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/nil.js +1 -0
  621. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/parse.js +35 -0
  622. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/regex.js +1 -0
  623. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/rng.js +12 -0
  624. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/sha1.js +13 -0
  625. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/stringify.js +33 -0
  626. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/v1.js +95 -0
  627. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/v3.js +4 -0
  628. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/v35.js +66 -0
  629. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/v4.js +29 -0
  630. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/v5.js +4 -0
  631. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/validate.js +7 -0
  632. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/version.js +11 -0
  633. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/index.js +79 -0
  634. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/md5-browser.js +223 -0
  635. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/md5.js +23 -0
  636. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/native-browser.js +11 -0
  637. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/native.js +15 -0
  638. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/nil.js +8 -0
  639. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/parse.js +45 -0
  640. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/regex.js +8 -0
  641. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/rng-browser.js +25 -0
  642. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/rng.js +24 -0
  643. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/sha1-browser.js +104 -0
  644. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/sha1.js +23 -0
  645. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/stringify.js +44 -0
  646. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/uuid-bin.js +85 -0
  647. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/v1.js +107 -0
  648. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/v3.js +16 -0
  649. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/v35.js +80 -0
  650. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/v4.js +43 -0
  651. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/v5.js +16 -0
  652. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/validate.js +17 -0
  653. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/version.js +21 -0
  654. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/package.json +135 -0
  655. package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/wrapper.mjs +10 -0
  656. package/node_modules/@amzn/codewhisperer-runtime/package.json +85 -0
  657. package/node_modules/@smithy/abort-controller/dist-cjs/index.js +82 -0
  658. package/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +13 -0
  659. package/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +18 -0
  660. package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +13 -0
  661. package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +18 -0
  662. package/node_modules/@smithy/abort-controller/package.json +62 -0
  663. package/node_modules/@smithy/node-http-handler/README.md +4 -0
  664. package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +687 -0
  665. package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +184 -0
  666. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +86 -0
  667. package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +159 -0
  668. package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +81 -0
  669. package/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +21 -0
  670. package/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +8 -0
  671. package/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +6 -0
  672. package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +14 -0
  673. package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +52 -0
  674. package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +37 -0
  675. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +22 -0
  676. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +13 -0
  677. package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +57 -0
  678. package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +14 -0
  679. package/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
  680. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
  681. package/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
  682. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +7 -0
  683. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +2 -0
  684. package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +14 -0
  685. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +36 -0
  686. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +22 -0
  687. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +13 -0
  688. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +57 -0
  689. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
  690. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
  691. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
  692. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
  693. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +6 -0
  694. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +2 -0
  695. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
  696. package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
  697. package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +13 -0
  698. package/node_modules/@smithy/node-http-handler/package.json +67 -0
  699. package/out/client/sigv4/codewhisperer.d.ts +4 -4
  700. package/out/client/sigv4/codewhisperer.js +39 -8
  701. package/out/client/sigv4/codewhisperer.js.map +1 -1
  702. package/out/client/token/codewhisperer.d.ts +5 -14
  703. package/out/client/token/codewhisperer.js +33 -17
  704. package/out/client/token/codewhisperer.js.map +1 -1
  705. package/out/language-server/agenticChat/agenticChatController.d.ts +1 -1
  706. package/out/language-server/agenticChat/agenticChatController.js +10 -7
  707. package/out/language-server/agenticChat/agenticChatController.js.map +1 -1
  708. package/out/language-server/agenticChat/tools/qCodeAnalysis/codeReview.js +3 -0
  709. package/out/language-server/agenticChat/tools/qCodeAnalysis/codeReview.js.map +1 -1
  710. package/out/language-server/agenticChat/tools/qCodeAnalysis/codeReviewTypes.d.ts +1 -1
  711. package/out/language-server/chat/chatController.js +8 -7
  712. package/out/language-server/chat/chatController.js.map +1 -1
  713. package/out/language-server/chat/telemetry/chatTelemetryController.js.map +1 -1
  714. package/out/language-server/configuration/qConfigurationServer.d.ts +3 -3
  715. package/out/language-server/configuration/qConfigurationServer.js +4 -4
  716. package/out/language-server/configuration/qConfigurationServer.js.map +1 -1
  717. package/out/language-server/inline-completion/handler/editCompletionHandler.js +3 -3
  718. package/out/language-server/inline-completion/handler/editCompletionHandler.js.map +1 -1
  719. package/out/language-server/inline-completion/handler/inlineCompletionHandler.js +7 -5
  720. package/out/language-server/inline-completion/handler/inlineCompletionHandler.js.map +1 -1
  721. package/out/language-server/inline-completion/handler/sessionResultsHandler.js +8 -3
  722. package/out/language-server/inline-completion/handler/sessionResultsHandler.js.map +1 -1
  723. package/out/language-server/inline-completion/telemetry/telemetry.d.ts +5 -4
  724. package/out/language-server/inline-completion/telemetry/telemetry.js +3 -3
  725. package/out/language-server/inline-completion/telemetry/telemetry.js.map +1 -1
  726. package/out/language-server/inline-completion/utils/mergeRightUtils.js +1 -1
  727. package/out/language-server/inline-completion/utils/mergeRightUtils.js.map +1 -1
  728. package/out/language-server/netTransform/converter.d.ts +3 -6
  729. package/out/language-server/netTransform/converter.js +6 -15
  730. package/out/language-server/netTransform/converter.js.map +1 -1
  731. package/out/language-server/netTransform/metrics.js.map +1 -1
  732. package/out/language-server/netTransform/models.d.ts +3 -3
  733. package/out/language-server/netTransform/transformHandler.d.ts +4 -4
  734. package/out/language-server/netTransform/transformHandler.js +3 -4
  735. package/out/language-server/netTransform/transformHandler.js.map +1 -1
  736. package/out/language-server/netTransform/validation.d.ts +1 -1
  737. package/out/language-server/netTransform/validation.js.map +1 -1
  738. package/out/language-server/securityScan/codeWhispererSecurityScanServer.js.map +1 -1
  739. package/out/language-server/securityScan/securityScanHandler.d.ts +6 -6
  740. package/out/language-server/securityScan/securityScanHandler.js +8 -5
  741. package/out/language-server/securityScan/securityScanHandler.js.map +1 -1
  742. package/out/language-server/securityScan/types.d.ts +3 -0
  743. package/out/language-server/workspaceContext/util.d.ts +1 -1
  744. package/out/language-server/workspaceContext/util.js +1 -1
  745. package/out/language-server/workspaceContext/util.js.map +1 -1
  746. package/out/language-server/workspaceContext/workspaceFolderManager.d.ts +1 -1
  747. package/out/language-server/workspaceContext/workspaceFolderManager.js +18 -11
  748. package/out/language-server/workspaceContext/workspaceFolderManager.js.map +1 -1
  749. package/out/shared/amazonQServiceManager/AmazonQTokenServiceManager.js +1 -4
  750. package/out/shared/amazonQServiceManager/AmazonQTokenServiceManager.js.map +1 -1
  751. package/out/shared/amazonQServiceManager/BaseAmazonQServiceManager.js.map +1 -1
  752. package/out/shared/amazonQServiceManager/qDeveloperProfiles.d.ts +2 -2
  753. package/out/shared/amazonQServiceManager/qDeveloperProfiles.js +2 -2
  754. package/out/shared/amazonQServiceManager/qDeveloperProfiles.js.map +1 -1
  755. package/out/shared/codeWhispererService.d.ts +37 -51
  756. package/out/shared/codeWhispererService.js +62 -131
  757. package/out/shared/codeWhispererService.js.map +1 -1
  758. package/out/shared/streamingClientService.js.map +1 -1
  759. package/out/shared/telemetry/telemetryService.d.ts +1 -1
  760. package/out/shared/telemetry/telemetryService.js +12 -7
  761. package/out/shared/telemetry/telemetryService.js.map +1 -1
  762. package/out/shared/telemetry/types.d.ts +4 -4
  763. package/out/shared/telemetryUtils.d.ts +2 -2
  764. package/out/shared/telemetryUtils.js +11 -10
  765. package/out/shared/telemetryUtils.js.map +1 -1
  766. package/out/shared/testUtils.d.ts +7 -7
  767. package/out/shared/utils.d.ts +6 -3
  768. package/out/shared/utils.js +10 -30
  769. package/out/shared/utils.js.map +1 -1
  770. package/package.json +7 -5
  771. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/dist-cjs/index.js +0 -84
  772. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +0 -16
  773. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +0 -21
  774. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +0 -16
  775. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +0 -21
  776. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/package.json +0 -62
  777. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/README.md +0 -9
  778. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-cjs/index.js +0 -806
  779. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-cjs/timing.js +0 -1
  780. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +0 -209
  781. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +0 -86
  782. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +0 -167
  783. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +0 -88
  784. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +0 -36
  785. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +0 -22
  786. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +0 -24
  787. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +0 -41
  788. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/timing.js +0 -4
  789. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +0 -56
  790. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +0 -45
  791. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +0 -24
  792. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +0 -12
  793. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +0 -62
  794. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +0 -12
  795. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +0 -2
  796. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +0 -6
  797. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +0 -2
  798. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +0 -5
  799. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +0 -6
  800. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +0 -12
  801. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +0 -8
  802. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +0 -45
  803. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +0 -24
  804. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +0 -12
  805. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +0 -62
  806. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +0 -12
  807. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +0 -2
  808. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +0 -6
  809. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +0 -2
  810. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +0 -5
  811. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +0 -6
  812. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +0 -12
  813. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +0 -8
  814. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +0 -11
  815. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +0 -11
  816. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/package.json +0 -67
  817. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/LICENSE +0 -201
  818. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/README.md +0 -115
  819. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/abort-handler.js +0 -1
  820. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/abort.js +0 -1
  821. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +0 -1
  822. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +0 -1
  823. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +0 -1
  824. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +0 -1
  825. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +0 -1
  826. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/auth.js +0 -1
  827. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/index.js +0 -1
  828. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +0 -1
  829. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/checksum.js +0 -1
  830. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/client.js +0 -1
  831. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/command.js +0 -1
  832. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/connection/config.js +0 -1
  833. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/connection/index.js +0 -1
  834. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/connection/manager.js +0 -1
  835. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/connection/pool.js +0 -1
  836. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/crypto.js +0 -1
  837. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +0 -1
  838. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/encode.js +0 -1
  839. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoint.js +0 -1
  840. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +0 -1
  841. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +0 -1
  842. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +0 -1
  843. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +0 -1
  844. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/index.js +0 -1
  845. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +0 -1
  846. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/eventStream.js +0 -1
  847. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +0 -1
  848. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +0 -1
  849. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +0 -1
  850. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/extensions/index.js +0 -1
  851. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/extensions/retry.js +0 -1
  852. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +0 -1
  853. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/feature-ids.js +0 -1
  854. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +0 -1
  855. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/http.js +0 -1
  856. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +0 -1
  857. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +0 -1
  858. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/identity/identity.js +0 -1
  859. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/identity/index.js +0 -1
  860. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +0 -1
  861. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/index.js +0 -144
  862. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/logger.js +0 -1
  863. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/middleware.js +0 -1
  864. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/pagination.js +0 -1
  865. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/profile.js +0 -1
  866. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/response.js +0 -1
  867. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/retry.js +0 -1
  868. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/schema/schema.js +0 -1
  869. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/schema/sentinels.js +0 -1
  870. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/schema/traits.js +0 -1
  871. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/serde.js +0 -1
  872. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/shapes.js +0 -1
  873. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/signature.js +0 -1
  874. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/stream.js +0 -1
  875. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +0 -1
  876. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-input-types.js +0 -1
  877. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-output-types.js +0 -1
  878. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transfer.js +0 -1
  879. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +0 -1
  880. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +0 -1
  881. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/exact.js +0 -1
  882. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/mutable.js +0 -1
  883. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +0 -1
  884. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +0 -1
  885. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/uri.js +0 -1
  886. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/util.js +0 -1
  887. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/waiter.js +0 -1
  888. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +0 -5
  889. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/auth.js +0 -5
  890. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/index.js +0 -6
  891. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/connection/index.js +0 -3
  892. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoint.js +0 -5
  893. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoints/index.js +0 -5
  894. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/extensions/checksum.js +0 -38
  895. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +0 -7
  896. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/extensions/index.js +0 -3
  897. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/http.js +0 -5
  898. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/identity/index.js +0 -4
  899. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/index.js +0 -40
  900. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/middleware.js +0 -1
  901. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/profile.js +0 -6
  902. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transfer.js +0 -6
  903. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/mutable.js +0 -1
  904. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/no-undefined.js +0 -1
  905. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/type-transform.js +0 -1
  906. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/abort-handler.d.ts +0 -7
  907. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/abort.d.ts +0 -50
  908. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +0 -7
  909. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +0 -49
  910. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +0 -20
  911. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +0 -41
  912. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +0 -14
  913. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/auth.d.ts +0 -57
  914. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/index.d.ts +0 -6
  915. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +0 -40
  916. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/checksum.d.ts +0 -63
  917. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/client.d.ts +0 -57
  918. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/command.d.ts +0 -28
  919. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/connection/config.d.ts +0 -10
  920. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/connection/index.d.ts +0 -3
  921. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/connection/manager.d.ts +0 -34
  922. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/connection/pool.d.ts +0 -32
  923. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/crypto.d.ts +0 -60
  924. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +0 -25
  925. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/encode.d.ts +0 -31
  926. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoint.d.ts +0 -77
  927. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +0 -27
  928. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +0 -10
  929. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +0 -28
  930. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +0 -16
  931. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +0 -5
  932. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +0 -55
  933. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/eventStream.d.ts +0 -137
  934. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +0 -58
  935. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +0 -33
  936. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -9
  937. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/extensions/index.d.ts +0 -4
  938. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +0 -18
  939. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +0 -35
  940. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/feature-ids.d.ts +0 -16
  941. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +0 -121
  942. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/http.d.ts +0 -112
  943. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +0 -14
  944. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +0 -31
  945. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/identity/identity.d.ts +0 -15
  946. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/identity/index.d.ts +0 -4
  947. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +0 -14
  948. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/index.d.ts +0 -40
  949. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/logger.d.ts +0 -13
  950. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/middleware.d.ts +0 -534
  951. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/pagination.d.ts +0 -33
  952. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/profile.d.ts +0 -30
  953. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/response.d.ts +0 -40
  954. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/retry.d.ts +0 -133
  955. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/schema/schema.d.ts +0 -261
  956. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +0 -65
  957. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/schema/traits.d.ts +0 -46
  958. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/serde.d.ts +0 -114
  959. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/shapes.d.ts +0 -82
  960. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/signature.d.ts +0 -155
  961. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/stream.d.ts +0 -22
  962. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +0 -32
  963. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
  964. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
  965. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transfer.d.ts +0 -41
  966. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +0 -26
  967. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +0 -77
  968. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/exact.d.ts +0 -6
  969. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +0 -6
  970. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +0 -68
  971. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +0 -34
  972. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +0 -7
  973. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +0 -50
  974. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +0 -7
  975. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +0 -49
  976. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +0 -20
  977. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +0 -41
  978. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +0 -14
  979. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +0 -57
  980. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +0 -6
  981. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +0 -40
  982. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +0 -63
  983. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +0 -57
  984. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +0 -28
  985. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +0 -10
  986. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +0 -3
  987. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +0 -34
  988. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +0 -32
  989. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +0 -60
  990. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +0 -41
  991. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +0 -31
  992. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +0 -77
  993. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +0 -27
  994. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +0 -10
  995. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +0 -28
  996. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +0 -16
  997. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +0 -5
  998. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +0 -55
  999. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +0 -137
  1000. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +0 -58
  1001. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +0 -33
  1002. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +0 -9
  1003. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +0 -4
  1004. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +0 -18
  1005. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +0 -35
  1006. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +0 -16
  1007. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +0 -121
  1008. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +0 -112
  1009. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +0 -14
  1010. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +0 -31
  1011. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +0 -15
  1012. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +0 -4
  1013. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +0 -14
  1014. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +0 -40
  1015. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +0 -13
  1016. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +0 -534
  1017. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +0 -33
  1018. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +0 -30
  1019. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +0 -40
  1020. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +0 -133
  1021. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +0 -276
  1022. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +0 -65
  1023. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +0 -46
  1024. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +0 -114
  1025. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +0 -82
  1026. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +0 -155
  1027. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +0 -22
  1028. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +0 -32
  1029. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
  1030. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
  1031. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +0 -41
  1032. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +0 -26
  1033. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +0 -81
  1034. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +0 -14
  1035. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +0 -6
  1036. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +0 -88
  1037. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +0 -41
  1038. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +0 -17
  1039. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +0 -192
  1040. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +0 -35
  1041. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/uri.d.ts +0 -17
  1042. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/util.d.ts +0 -176
  1043. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/waiter.d.ts +0 -35
  1044. package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/package.json +0 -60
  1045. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/README.md +0 -53
  1046. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +0 -217
  1047. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/constants.js +0 -2
  1048. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +0 -88
  1049. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +0 -8
  1050. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +0 -11
  1051. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +0 -8
  1052. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/index.js +0 -3
  1053. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +0 -5
  1054. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +0 -7
  1055. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +0 -7
  1056. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +0 -8
  1057. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +0 -8
  1058. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +0 -12
  1059. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +0 -9
  1060. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +0 -8
  1061. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +0 -7
  1062. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +0 -3
  1063. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +0 -18
  1064. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +0 -3
  1065. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +0 -14
  1066. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +0 -12
  1067. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +0 -9
  1068. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +0 -5
  1069. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +0 -3
  1070. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +0 -5
  1071. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +0 -2
  1072. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +0 -5
  1073. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +0 -5
  1074. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +0 -5
  1075. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +0 -4
  1076. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +0 -5
  1077. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/package.json +0 -67
  1078. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/README.md +0 -4
  1079. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-cjs/AbortController.js +0 -1
  1080. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-cjs/AbortSignal.js +0 -1
  1081. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-cjs/index.js +0 -84
  1082. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-es/AbortController.js +0 -9
  1083. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +0 -20
  1084. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-es/index.js +0 -2
  1085. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +0 -16
  1086. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +0 -21
  1087. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/index.d.ts +0 -9
  1088. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +0 -16
  1089. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +0 -21
  1090. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +0 -9
  1091. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/package.json +0 -62
  1092. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/LICENSE +0 -201
  1093. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/README.md +0 -9
  1094. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/constants.js +0 -1
  1095. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/get-transformed-headers.js +0 -1
  1096. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/index.js +0 -806
  1097. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/node-http-handler.js +0 -1
  1098. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-manager.js +0 -1
  1099. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-pool.js +0 -1
  1100. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-handler.js +0 -1
  1101. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/readable.mock.js +0 -1
  1102. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/server.mock.js +0 -1
  1103. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/set-connection-timeout.js +0 -1
  1104. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-keep-alive.js +0 -1
  1105. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-timeout.js +0 -1
  1106. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/collector.js +0 -1
  1107. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/index.js +0 -1
  1108. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/readable.mock.js +0 -1
  1109. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/timing.js +0 -1
  1110. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/write-request-body.js +0 -1
  1111. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/constants.js +0 -1
  1112. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +0 -9
  1113. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/index.js +0 -3
  1114. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +0 -209
  1115. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +0 -86
  1116. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +0 -32
  1117. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +0 -167
  1118. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +0 -19
  1119. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +0 -88
  1120. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +0 -36
  1121. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +0 -22
  1122. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +0 -24
  1123. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +0 -11
  1124. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +0 -41
  1125. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +0 -19
  1126. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/timing.js +0 -4
  1127. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +0 -56
  1128. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +0 -5
  1129. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +0 -4
  1130. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +0 -3
  1131. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +0 -45
  1132. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +0 -24
  1133. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +0 -12
  1134. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +0 -62
  1135. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +0 -12
  1136. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +0 -12
  1137. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +0 -2
  1138. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +0 -6
  1139. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +0 -2
  1140. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +0 -5
  1141. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +0 -6
  1142. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +0 -12
  1143. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +0 -8
  1144. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +0 -5
  1145. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +0 -4
  1146. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +0 -3
  1147. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +0 -45
  1148. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +0 -24
  1149. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +0 -12
  1150. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +0 -62
  1151. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +0 -12
  1152. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +0 -12
  1153. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +0 -2
  1154. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +0 -6
  1155. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +0 -2
  1156. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +0 -5
  1157. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +0 -6
  1158. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +0 -12
  1159. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +0 -8
  1160. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +0 -11
  1161. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +0 -11
  1162. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/package.json +0 -67
  1163. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/LICENSE +0 -201
  1164. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/README.md +0 -115
  1165. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/abort-handler.js +0 -1
  1166. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/abort.js +0 -1
  1167. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +0 -1
  1168. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +0 -1
  1169. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +0 -1
  1170. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +0 -1
  1171. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +0 -1
  1172. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/auth.js +0 -1
  1173. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/index.js +0 -1
  1174. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +0 -1
  1175. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/checksum.js +0 -1
  1176. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/client.js +0 -1
  1177. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/command.js +0 -1
  1178. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/connection/config.js +0 -1
  1179. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/connection/index.js +0 -1
  1180. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/connection/manager.js +0 -1
  1181. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/connection/pool.js +0 -1
  1182. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/crypto.js +0 -1
  1183. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +0 -1
  1184. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/encode.js +0 -1
  1185. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoint.js +0 -1
  1186. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +0 -1
  1187. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +0 -1
  1188. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +0 -1
  1189. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +0 -1
  1190. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/index.js +0 -1
  1191. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +0 -1
  1192. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/eventStream.js +0 -1
  1193. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +0 -1
  1194. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +0 -1
  1195. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +0 -1
  1196. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/index.js +0 -1
  1197. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/retry.js +0 -1
  1198. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +0 -1
  1199. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/feature-ids.js +0 -1
  1200. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +0 -1
  1201. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/http.js +0 -1
  1202. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +0 -1
  1203. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +0 -1
  1204. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/identity.js +0 -1
  1205. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/index.js +0 -1
  1206. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +0 -1
  1207. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/index.js +0 -144
  1208. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/logger.js +0 -1
  1209. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/middleware.js +0 -1
  1210. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/pagination.js +0 -1
  1211. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/profile.js +0 -1
  1212. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/response.js +0 -1
  1213. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/retry.js +0 -1
  1214. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/schema/schema.js +0 -1
  1215. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/schema/sentinels.js +0 -1
  1216. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/schema/traits.js +0 -1
  1217. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/serde.js +0 -1
  1218. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/shapes.js +0 -1
  1219. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/signature.js +0 -1
  1220. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/stream.js +0 -1
  1221. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +0 -1
  1222. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-input-types.js +0 -1
  1223. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-output-types.js +0 -1
  1224. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transfer.js +0 -1
  1225. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +0 -1
  1226. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +0 -1
  1227. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/exact.js +0 -1
  1228. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/mutable.js +0 -1
  1229. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +0 -1
  1230. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +0 -1
  1231. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/uri.js +0 -1
  1232. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/util.js +0 -1
  1233. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/waiter.js +0 -1
  1234. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/abort-handler.js +0 -1
  1235. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +0 -5
  1236. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +0 -1
  1237. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +0 -1
  1238. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +0 -1
  1239. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +0 -1
  1240. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/auth.js +0 -5
  1241. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/index.js +0 -6
  1242. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +0 -1
  1243. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/connection/config.js +0 -1
  1244. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/connection/index.js +0 -3
  1245. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/connection/manager.js +0 -1
  1246. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/connection/pool.js +0 -1
  1247. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +0 -1
  1248. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoint.js +0 -5
  1249. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +0 -1
  1250. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +0 -1
  1251. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +0 -1
  1252. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +0 -1
  1253. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/index.js +0 -5
  1254. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/shared.js +0 -1
  1255. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/checksum.js +0 -38
  1256. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +0 -7
  1257. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +0 -1
  1258. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/index.js +0 -3
  1259. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +0 -1
  1260. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +0 -1
  1261. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/http.js +0 -5
  1262. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +0 -1
  1263. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +0 -1
  1264. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/identity.js +0 -1
  1265. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/index.js +0 -4
  1266. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +0 -1
  1267. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/index.js +0 -40
  1268. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/middleware.js +0 -1
  1269. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/profile.js +0 -6
  1270. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/retry.js +0 -1
  1271. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/schema/schema.js +0 -1
  1272. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/schema/sentinels.js +0 -1
  1273. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/schema/traits.js +0 -1
  1274. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +0 -1
  1275. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +0 -1
  1276. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +0 -1
  1277. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transfer.js +0 -6
  1278. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +0 -1
  1279. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +0 -1
  1280. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/exact.js +0 -1
  1281. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/mutable.js +0 -1
  1282. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/no-undefined.js +0 -1
  1283. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/type-transform.js +0 -1
  1284. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/abort-handler.d.ts +0 -7
  1285. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/abort.d.ts +0 -50
  1286. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +0 -7
  1287. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +0 -49
  1288. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +0 -20
  1289. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +0 -41
  1290. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +0 -14
  1291. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/auth.d.ts +0 -57
  1292. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/index.d.ts +0 -6
  1293. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +0 -40
  1294. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/checksum.d.ts +0 -63
  1295. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/client.d.ts +0 -57
  1296. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/command.d.ts +0 -28
  1297. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/connection/config.d.ts +0 -10
  1298. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/connection/index.d.ts +0 -3
  1299. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/connection/manager.d.ts +0 -34
  1300. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/connection/pool.d.ts +0 -32
  1301. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/crypto.d.ts +0 -60
  1302. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +0 -25
  1303. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/encode.d.ts +0 -31
  1304. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoint.d.ts +0 -77
  1305. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +0 -27
  1306. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +0 -10
  1307. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +0 -28
  1308. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +0 -16
  1309. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +0 -5
  1310. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +0 -55
  1311. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/eventStream.d.ts +0 -137
  1312. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +0 -58
  1313. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +0 -33
  1314. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -9
  1315. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/index.d.ts +0 -4
  1316. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +0 -18
  1317. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +0 -35
  1318. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/feature-ids.d.ts +0 -16
  1319. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +0 -121
  1320. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/http.d.ts +0 -112
  1321. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +0 -14
  1322. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +0 -31
  1323. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/identity.d.ts +0 -15
  1324. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/index.d.ts +0 -4
  1325. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +0 -14
  1326. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/index.d.ts +0 -40
  1327. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/logger.d.ts +0 -13
  1328. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/middleware.d.ts +0 -534
  1329. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/pagination.d.ts +0 -33
  1330. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/profile.d.ts +0 -30
  1331. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/response.d.ts +0 -40
  1332. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/retry.d.ts +0 -133
  1333. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/schema/schema.d.ts +0 -261
  1334. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +0 -65
  1335. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/schema/traits.d.ts +0 -46
  1336. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/serde.d.ts +0 -114
  1337. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/shapes.d.ts +0 -82
  1338. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/signature.d.ts +0 -155
  1339. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/stream.d.ts +0 -22
  1340. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +0 -32
  1341. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
  1342. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
  1343. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transfer.d.ts +0 -41
  1344. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +0 -26
  1345. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +0 -77
  1346. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/exact.d.ts +0 -6
  1347. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +0 -6
  1348. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +0 -68
  1349. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +0 -34
  1350. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +0 -7
  1351. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +0 -50
  1352. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +0 -7
  1353. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +0 -49
  1354. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +0 -20
  1355. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +0 -41
  1356. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +0 -14
  1357. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +0 -57
  1358. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +0 -6
  1359. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +0 -40
  1360. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +0 -63
  1361. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +0 -57
  1362. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +0 -28
  1363. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +0 -10
  1364. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +0 -3
  1365. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +0 -34
  1366. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +0 -32
  1367. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +0 -60
  1368. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +0 -41
  1369. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +0 -31
  1370. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +0 -77
  1371. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +0 -27
  1372. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +0 -10
  1373. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +0 -28
  1374. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +0 -16
  1375. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +0 -5
  1376. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +0 -55
  1377. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +0 -137
  1378. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +0 -58
  1379. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +0 -33
  1380. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +0 -9
  1381. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +0 -4
  1382. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +0 -18
  1383. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +0 -35
  1384. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +0 -16
  1385. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +0 -121
  1386. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +0 -112
  1387. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +0 -14
  1388. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +0 -31
  1389. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +0 -15
  1390. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +0 -4
  1391. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +0 -14
  1392. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +0 -40
  1393. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +0 -13
  1394. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +0 -534
  1395. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +0 -33
  1396. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +0 -30
  1397. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +0 -40
  1398. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +0 -133
  1399. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +0 -276
  1400. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +0 -65
  1401. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +0 -46
  1402. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +0 -114
  1403. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +0 -82
  1404. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +0 -155
  1405. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +0 -22
  1406. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +0 -32
  1407. 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
  1408. 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
  1409. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +0 -41
  1410. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +0 -26
  1411. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +0 -81
  1412. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +0 -14
  1413. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +0 -6
  1414. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +0 -88
  1415. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +0 -41
  1416. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +0 -17
  1417. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +0 -192
  1418. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +0 -35
  1419. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/uri.d.ts +0 -17
  1420. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/util.d.ts +0 -176
  1421. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/waiter.d.ts +0 -35
  1422. package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/package.json +0 -60
  1423. package/out/client/sigv4/service.json +0 -2145
  1424. package/out/client/token/bearer-token-service.json +0 -6690
  1425. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js → codewhisperer/dist-es/extensionConfiguration.js} +0 -0
  1426. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js → codewhisperer/dist-es/pagination/Interfaces.js} +0 -0
  1427. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler → codewhisperer/node_modules/@aws-sdk/types}/LICENSE +0 -0
  1428. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/abort.js} +0 -0
  1429. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js} +0 -0
  1430. /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/checksum.js +0 -0
  1431. /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/client.js +0 -0
  1432. /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/command.js +0 -0
  1433. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/connection.js} +0 -0
  1434. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/identity/identity.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/credentials.js} +0 -0
  1435. /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/crypto.js +0 -0
  1436. /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/encode.js +0 -0
  1437. /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/eventStream.js +0 -0
  1438. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/extensions/index.js} +0 -0
  1439. /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/feature-ids.js +0 -0
  1440. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/retry.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/http.js} +0 -0
  1441. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/schema/schema.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js} +0 -0
  1442. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/schema/sentinels.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js} +0 -0
  1443. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/schema/traits.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/identity/Identity.js} +0 -0
  1444. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js} +0 -0
  1445. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js} +0 -0
  1446. /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/logger.js +0 -0
  1447. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/middleware.js} +0 -0
  1448. /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/pagination.js +0 -0
  1449. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/profile.js} +0 -0
  1450. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/request.js} +0 -0
  1451. /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/response.js +0 -0
  1452. /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions → codewhisperer/node_modules/@aws-sdk/types/dist-es}/retry.js +0 -0
  1453. /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/serde.js +0 -0
  1454. /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/shapes.js +0 -0
  1455. /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/signature.js +0 -0
  1456. /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/stream.js +0 -0
  1457. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/exact.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/token.js} +0 -0
  1458. /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/uri.js +0 -0
  1459. /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/util.js +0 -0
  1460. /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/waiter.js +0 -0
  1461. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/abort-handler.js → codewhisperer-runtime/dist-es/extensionConfiguration.js} +0 -0
  1462. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/abort.js → codewhisperer-runtime/dist-es/pagination/Interfaces.js} +0 -0
  1463. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller → codewhisperer-runtime/node_modules/@aws-sdk/types}/LICENSE +0 -0
  1464. /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/abort.js +0 -0
  1465. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js} +0 -0
  1466. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/checksum.js +0 -0
  1467. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/client.js +0 -0
  1468. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/command.js +0 -0
  1469. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/connection.js} +0 -0
  1470. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/HttpSigner.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/credentials.js} +0 -0
  1471. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/crypto.js +0 -0
  1472. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/encode.js +0 -0
  1473. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/eventStream.js +0 -0
  1474. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/extensions/index.js} +0 -0
  1475. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/feature-ids.js +0 -0
  1476. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/http.js} +0 -0
  1477. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/connection/config.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js} +0 -0
  1478. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/connection/manager.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js} +0 -0
  1479. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/connection/pool.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/identity/Identity.js} +0 -0
  1480. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js} +0 -0
  1481. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js} +0 -0
  1482. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/logger.js +0 -0
  1483. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/middleware.js} +0 -0
  1484. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/pagination.js +0 -0
  1485. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/profile.js} +0 -0
  1486. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/request.js} +0 -0
  1487. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/response.js +0 -0
  1488. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/extensions → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es}/retry.js +0 -0
  1489. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/serde.js +0 -0
  1490. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/shapes.js +0 -0
  1491. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/signature.js +0 -0
  1492. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/stream.js +0 -0
  1493. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoints/shared.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/token.js} +0 -0
  1494. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/uri.js +0 -0
  1495. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/util.js +0 -0
  1496. /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/waiter.js +0 -0
  1497. /package/node_modules/{@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers → @smithy/abort-controller}/LICENSE +0 -0
  1498. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/README.md +0 -0
  1499. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-cjs/AbortController.js +0 -0
  1500. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-cjs/AbortSignal.js +0 -0
  1501. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-es/AbortController.js +0 -0
  1502. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-es/AbortSignal.js +0 -0
  1503. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-es/index.js +0 -0
  1504. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-types/index.d.ts +0 -0
  1505. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-types/ts3.4/index.d.ts +0 -0
  1506. /package/node_modules/{@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller → @smithy/node-http-handler}/LICENSE +0 -0
  1507. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/constants.js +0 -0
  1508. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/get-transformed-headers.js +0 -0
  1509. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/node-http-handler.js +0 -0
  1510. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/node-http2-connection-manager.js +0 -0
  1511. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/node-http2-connection-pool.js +0 -0
  1512. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/node-http2-handler.js +0 -0
  1513. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/readable.mock.js +0 -0
  1514. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/server.mock.js +0 -0
  1515. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/set-connection-timeout.js +0 -0
  1516. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/set-socket-keep-alive.js +0 -0
  1517. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/set-socket-timeout.js +0 -0
  1518. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/stream-collector/collector.js +0 -0
  1519. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/stream-collector/index.js +0 -0
  1520. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/stream-collector/readable.mock.js +0 -0
  1521. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/write-request-body.js +0 -0
  1522. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/constants.js +0 -0
  1523. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/get-transformed-headers.js +0 -0
  1524. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/index.js +0 -0
  1525. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/node-http2-connection-pool.js +0 -0
  1526. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/readable.mock.js +0 -0
  1527. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/stream-collector/collector.js +0 -0
  1528. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/stream-collector/readable.mock.js +0 -0
  1529. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/constants.d.ts +0 -0
  1530. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/get-transformed-headers.d.ts +0 -0
  1531. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/index.d.ts +0 -0
  1532. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/server.mock.d.ts +0 -0
  1533. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/ts3.4/constants.d.ts +0 -0
  1534. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +0 -0
  1535. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/ts3.4/index.d.ts +0 -0
  1536. /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/ts3.4/server.mock.d.ts +0 -0
@@ -1,2145 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "metadata": {
4
- "apiVersion": "2024-10-25",
5
- "auth": ["aws.auth#sigv4"],
6
- "endpointPrefix": "codewhisperer",
7
- "jsonVersion": "1.0",
8
- "protocol": "json",
9
- "protocols": ["json"],
10
- "serviceFullName": "AWS CodeWhisperer",
11
- "serviceId": "CodeWhisperer",
12
- "signatureVersion": "v4",
13
- "signingName": "codewhisperer",
14
- "targetPrefix": "AWSCodeWhispererService",
15
- "uid": "codewhisperer-2024-10-25"
16
- },
17
- "operations": {
18
- "AllowVendedLogDeliveryForResource": {
19
- "name": "AllowVendedLogDeliveryForResource",
20
- "http": {
21
- "method": "POST",
22
- "requestUri": "/"
23
- },
24
- "input": {
25
- "shape": "AllowVendedLogDeliveryForResourceRequest"
26
- },
27
- "output": {
28
- "shape": "AllowVendedLogDeliveryForResourceResponse"
29
- },
30
- "errors": [
31
- {
32
- "shape": "ThrottlingException"
33
- },
34
- {
35
- "shape": "ResourceNotFoundException"
36
- },
37
- {
38
- "shape": "InternalServerException"
39
- },
40
- {
41
- "shape": "ValidationException"
42
- },
43
- {
44
- "shape": "AccessDeniedException"
45
- }
46
- ],
47
- "documentation": "<p>Internal API to authorize a CodeWhisperer resource for vended log delivery.</p>"
48
- },
49
- "AssociateCustomizationPermission": {
50
- "name": "AssociateCustomizationPermission",
51
- "http": {
52
- "method": "POST",
53
- "requestUri": "/"
54
- },
55
- "input": {
56
- "shape": "AssociateCustomizationPermissionRequest"
57
- },
58
- "output": {
59
- "shape": "AssociateCustomizationPermissionResponse"
60
- },
61
- "errors": [
62
- {
63
- "shape": "ThrottlingException"
64
- },
65
- {
66
- "shape": "ConflictException"
67
- },
68
- {
69
- "shape": "ResourceNotFoundException"
70
- },
71
- {
72
- "shape": "InternalServerException"
73
- },
74
- {
75
- "shape": "ValidationException"
76
- },
77
- {
78
- "shape": "AccessDeniedException"
79
- }
80
- ],
81
- "documentation": "<p>Add permission for an Identity Center User/Group to use the Customization.</p>"
82
- },
83
- "CreateCustomization": {
84
- "name": "CreateCustomization",
85
- "http": {
86
- "method": "POST",
87
- "requestUri": "/"
88
- },
89
- "input": {
90
- "shape": "CreateCustomizationRequest"
91
- },
92
- "output": {
93
- "shape": "CreateCustomizationResponse"
94
- },
95
- "errors": [
96
- {
97
- "shape": "ThrottlingException"
98
- },
99
- {
100
- "shape": "ConflictException"
101
- },
102
- {
103
- "shape": "InternalServerException"
104
- },
105
- {
106
- "shape": "ValidationException"
107
- },
108
- {
109
- "shape": "AccessDeniedException"
110
- }
111
- ]
112
- },
113
- "CreateProfile": {
114
- "name": "CreateProfile",
115
- "http": {
116
- "method": "POST",
117
- "requestUri": "/"
118
- },
119
- "input": {
120
- "shape": "CreateProfileRequest"
121
- },
122
- "output": {
123
- "shape": "CreateProfileResponse"
124
- },
125
- "errors": [
126
- {
127
- "shape": "ThrottlingException"
128
- },
129
- {
130
- "shape": "ConflictException"
131
- },
132
- {
133
- "shape": "ResourceNotFoundException"
134
- },
135
- {
136
- "shape": "InternalServerException"
137
- },
138
- {
139
- "shape": "ValidationException"
140
- },
141
- {
142
- "shape": "AccessDeniedException"
143
- }
144
- ],
145
- "documentation": "<p>Creates a CodeWhisperer profile which can then be associated to users/groups of an identity source</p>"
146
- },
147
- "DeleteCustomization": {
148
- "name": "DeleteCustomization",
149
- "http": {
150
- "method": "POST",
151
- "requestUri": "/"
152
- },
153
- "input": {
154
- "shape": "DeleteCustomizationRequest"
155
- },
156
- "output": {
157
- "shape": "DeleteCustomizationResponse"
158
- },
159
- "errors": [
160
- {
161
- "shape": "ThrottlingException"
162
- },
163
- {
164
- "shape": "ConflictException"
165
- },
166
- {
167
- "shape": "ResourceNotFoundException"
168
- },
169
- {
170
- "shape": "InternalServerException"
171
- },
172
- {
173
- "shape": "ValidationException"
174
- },
175
- {
176
- "shape": "AccessDeniedException"
177
- }
178
- ],
179
- "documentation": "<p>Deletes CodeWhisperer Customization and associated resources</p>"
180
- },
181
- "DeleteProfile": {
182
- "name": "DeleteProfile",
183
- "http": {
184
- "method": "POST",
185
- "requestUri": "/"
186
- },
187
- "input": {
188
- "shape": "DeleteProfileRequest"
189
- },
190
- "output": {
191
- "shape": "DeleteProfileResponse"
192
- },
193
- "errors": [
194
- {
195
- "shape": "ThrottlingException"
196
- },
197
- {
198
- "shape": "ConflictException"
199
- },
200
- {
201
- "shape": "ResourceNotFoundException"
202
- },
203
- {
204
- "shape": "InternalServerException"
205
- },
206
- {
207
- "shape": "ValidationException"
208
- },
209
- {
210
- "shape": "AccessDeniedException"
211
- }
212
- ],
213
- "documentation": "<p>Deletes CodeWhisperer profile and associated resources</p>"
214
- },
215
- "DisassociateCustomizationPermission": {
216
- "name": "DisassociateCustomizationPermission",
217
- "http": {
218
- "method": "POST",
219
- "requestUri": "/"
220
- },
221
- "input": {
222
- "shape": "DisassociateCustomizationPermissionRequest"
223
- },
224
- "output": {
225
- "shape": "DisassociateCustomizationPermissionResponse"
226
- },
227
- "errors": [
228
- {
229
- "shape": "ThrottlingException"
230
- },
231
- {
232
- "shape": "ConflictException"
233
- },
234
- {
235
- "shape": "ResourceNotFoundException"
236
- },
237
- {
238
- "shape": "InternalServerException"
239
- },
240
- {
241
- "shape": "ValidationException"
242
- },
243
- {
244
- "shape": "AccessDeniedException"
245
- }
246
- ],
247
- "documentation": "<p>Disassociate the permission for a Customization from an Identity Center User/Group.</p>"
248
- },
249
- "GenerateRecommendations": {
250
- "name": "GenerateRecommendations",
251
- "http": {
252
- "method": "POST",
253
- "requestUri": "/"
254
- },
255
- "input": {
256
- "shape": "GenerateRecommendationsRequest"
257
- },
258
- "output": {
259
- "shape": "GenerateRecommendationsResponse"
260
- },
261
- "errors": [
262
- {
263
- "shape": "ThrottlingException"
264
- },
265
- {
266
- "shape": "InternalServerException"
267
- },
268
- {
269
- "shape": "ValidationException"
270
- },
271
- {
272
- "shape": "AccessDeniedException"
273
- }
274
- ],
275
- "documentation": "<p>Generates recommendations based on the provided file context.</p>"
276
- },
277
- "GetCustomization": {
278
- "name": "GetCustomization",
279
- "http": {
280
- "method": "POST",
281
- "requestUri": "/"
282
- },
283
- "input": {
284
- "shape": "GetCustomizationRequest"
285
- },
286
- "output": {
287
- "shape": "GetCustomizationResponse"
288
- },
289
- "errors": [
290
- {
291
- "shape": "ThrottlingException"
292
- },
293
- {
294
- "shape": "ResourceNotFoundException"
295
- },
296
- {
297
- "shape": "InternalServerException"
298
- },
299
- {
300
- "shape": "ValidationException"
301
- },
302
- {
303
- "shape": "AccessDeniedException"
304
- }
305
- ]
306
- },
307
- "ListCustomizationPermissions": {
308
- "name": "ListCustomizationPermissions",
309
- "http": {
310
- "method": "POST",
311
- "requestUri": "/"
312
- },
313
- "input": {
314
- "shape": "ListCustomizationPermissionsRequest"
315
- },
316
- "output": {
317
- "shape": "ListCustomizationPermissionsResponse"
318
- },
319
- "errors": [
320
- {
321
- "shape": "ThrottlingException"
322
- },
323
- {
324
- "shape": "ResourceNotFoundException"
325
- },
326
- {
327
- "shape": "InternalServerException"
328
- },
329
- {
330
- "shape": "ValidationException"
331
- },
332
- {
333
- "shape": "AccessDeniedException"
334
- }
335
- ],
336
- "documentation": "<p>List User(s)/Group(s) who have permissions to use a Customization.</p>"
337
- },
338
- "ListCustomizationVersions": {
339
- "name": "ListCustomizationVersions",
340
- "http": {
341
- "method": "POST",
342
- "requestUri": "/"
343
- },
344
- "input": {
345
- "shape": "ListCustomizationVersionsRequest"
346
- },
347
- "output": {
348
- "shape": "ListCustomizationVersionsResponse"
349
- },
350
- "errors": [
351
- {
352
- "shape": "ThrottlingException"
353
- },
354
- {
355
- "shape": "ResourceNotFoundException"
356
- },
357
- {
358
- "shape": "InternalServerException"
359
- },
360
- {
361
- "shape": "ValidationException"
362
- },
363
- {
364
- "shape": "AccessDeniedException"
365
- }
366
- ],
367
- "documentation": "<p>List actionable versions associated with a Customization.</p>"
368
- },
369
- "ListCustomizations": {
370
- "name": "ListCustomizations",
371
- "http": {
372
- "method": "POST",
373
- "requestUri": "/"
374
- },
375
- "input": {
376
- "shape": "ListCustomizationsRequest"
377
- },
378
- "output": {
379
- "shape": "ListCustomizationsResponse"
380
- },
381
- "errors": [
382
- {
383
- "shape": "ThrottlingException"
384
- },
385
- {
386
- "shape": "InternalServerException"
387
- },
388
- {
389
- "shape": "ValidationException"
390
- },
391
- {
392
- "shape": "AccessDeniedException"
393
- }
394
- ]
395
- },
396
- "ListProfiles": {
397
- "name": "ListProfiles",
398
- "http": {
399
- "method": "POST",
400
- "requestUri": "/"
401
- },
402
- "input": {
403
- "shape": "ListProfilesRequest"
404
- },
405
- "output": {
406
- "shape": "ListProfilesResponse"
407
- },
408
- "errors": [
409
- {
410
- "shape": "ThrottlingException"
411
- },
412
- {
413
- "shape": "InternalServerException"
414
- },
415
- {
416
- "shape": "ValidationException"
417
- },
418
- {
419
- "shape": "AccessDeniedException"
420
- }
421
- ],
422
- "documentation": "<p>Lists one or more CodeWhisperer profiles that you have created.</p>"
423
- },
424
- "ListTagsForResource": {
425
- "name": "ListTagsForResource",
426
- "http": {
427
- "method": "POST",
428
- "requestUri": "/"
429
- },
430
- "input": {
431
- "shape": "ListTagsForResourceRequest"
432
- },
433
- "output": {
434
- "shape": "ListTagsForResourceResponse"
435
- },
436
- "errors": [
437
- {
438
- "shape": "ThrottlingException"
439
- },
440
- {
441
- "shape": "ResourceNotFoundException"
442
- },
443
- {
444
- "shape": "InternalServerException"
445
- },
446
- {
447
- "shape": "ValidationException"
448
- },
449
- {
450
- "shape": "AccessDeniedException"
451
- }
452
- ],
453
- "documentation": "<p>List tags of an existing CodeWhisperer profile.</p>"
454
- },
455
- "TagResource": {
456
- "name": "TagResource",
457
- "http": {
458
- "method": "POST",
459
- "requestUri": "/"
460
- },
461
- "input": {
462
- "shape": "TagResourceRequest"
463
- },
464
- "output": {
465
- "shape": "TagResourceResponse"
466
- },
467
- "errors": [
468
- {
469
- "shape": "ThrottlingException"
470
- },
471
- {
472
- "shape": "ResourceNotFoundException"
473
- },
474
- {
475
- "shape": "InternalServerException"
476
- },
477
- {
478
- "shape": "ValidationException"
479
- },
480
- {
481
- "shape": "AccessDeniedException"
482
- }
483
- ],
484
- "documentation": "<p>Add tags to an existing CodeWhisperer profile.</p>"
485
- },
486
- "UntagResource": {
487
- "name": "UntagResource",
488
- "http": {
489
- "method": "POST",
490
- "requestUri": "/"
491
- },
492
- "input": {
493
- "shape": "UntagResourceRequest"
494
- },
495
- "output": {
496
- "shape": "UntagResourceResponse"
497
- },
498
- "errors": [
499
- {
500
- "shape": "ThrottlingException"
501
- },
502
- {
503
- "shape": "ResourceNotFoundException"
504
- },
505
- {
506
- "shape": "InternalServerException"
507
- },
508
- {
509
- "shape": "ValidationException"
510
- },
511
- {
512
- "shape": "AccessDeniedException"
513
- }
514
- ],
515
- "documentation": "<p>Remove tags from an existing CodeWhisperer profile.</p>"
516
- },
517
- "UpdateCustomization": {
518
- "name": "UpdateCustomization",
519
- "http": {
520
- "method": "POST",
521
- "requestUri": "/"
522
- },
523
- "input": {
524
- "shape": "UpdateCustomizationRequest"
525
- },
526
- "output": {
527
- "shape": "UpdateCustomizationResponse"
528
- },
529
- "errors": [
530
- {
531
- "shape": "ThrottlingException"
532
- },
533
- {
534
- "shape": "ConflictException"
535
- },
536
- {
537
- "shape": "ResourceNotFoundException"
538
- },
539
- {
540
- "shape": "InternalServerException"
541
- },
542
- {
543
- "shape": "ValidationException"
544
- },
545
- {
546
- "shape": "AccessDeniedException"
547
- }
548
- ]
549
- },
550
- "UpdateProfile": {
551
- "name": "UpdateProfile",
552
- "http": {
553
- "method": "POST",
554
- "requestUri": "/"
555
- },
556
- "input": {
557
- "shape": "UpdateProfileRequest"
558
- },
559
- "output": {
560
- "shape": "UpdateProfileResponse"
561
- },
562
- "errors": [
563
- {
564
- "shape": "ThrottlingException"
565
- },
566
- {
567
- "shape": "ConflictException"
568
- },
569
- {
570
- "shape": "ResourceNotFoundException"
571
- },
572
- {
573
- "shape": "InternalServerException"
574
- },
575
- {
576
- "shape": "ValidationException"
577
- },
578
- {
579
- "shape": "AccessDeniedException"
580
- }
581
- ],
582
- "documentation": "<p>Updates an existing CodeWhisperer profile.</p>"
583
- },
584
- "VendKeyGrant": {
585
- "name": "VendKeyGrant",
586
- "http": {
587
- "method": "POST",
588
- "requestUri": "/"
589
- },
590
- "input": {
591
- "shape": "VendKeyGrantRequest"
592
- },
593
- "output": {
594
- "shape": "VendKeyGrantResponse"
595
- },
596
- "errors": [
597
- {
598
- "shape": "ThrottlingException"
599
- },
600
- {
601
- "shape": "ResourceNotFoundException"
602
- },
603
- {
604
- "shape": "InternalServerException"
605
- },
606
- {
607
- "shape": "ValidationException"
608
- },
609
- {
610
- "shape": "AccessDeniedException"
611
- }
612
- ],
613
- "documentation": "<p>Returns grant details associated with the profile under the input account Id Output includes cmk arn, grant token, and grant id</p>"
614
- }
615
- },
616
- "shapes": {
617
- "AWSAccountId": {
618
- "type": "string",
619
- "documentation": "<p>Represents the AWS account ID of the customer</p>",
620
- "pattern": "[0-9]{12}"
621
- },
622
- "AccessDeniedException": {
623
- "type": "structure",
624
- "required": ["message"],
625
- "members": {
626
- "message": {
627
- "shape": "String"
628
- },
629
- "reason": {
630
- "shape": "AccessDeniedExceptionReason"
631
- }
632
- },
633
- "documentation": "<p>This exception is thrown when the user does not have sufficient access to perform this action.</p>",
634
- "exception": true
635
- },
636
- "AccessDeniedExceptionReason": {
637
- "type": "string",
638
- "documentation": "<p>Reason for AccessDeniedException</p>",
639
- "enum": ["UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS", "UNAUTHORIZED_WORKSPACE_CONTEXT_FEATURE_ACCESS"]
640
- },
641
- "ActiveFunctionalityList": {
642
- "type": "list",
643
- "member": {
644
- "shape": "FunctionalityName"
645
- },
646
- "max": 10,
647
- "min": 0
648
- },
649
- "AllowVendedLogDeliveryForResourceRequest": {
650
- "type": "structure",
651
- "required": ["resourceArnBeingAuthorized", "deliverySourceArn"],
652
- "members": {
653
- "resourceArnBeingAuthorized": {
654
- "shape": "ResourceArn"
655
- },
656
- "deliverySourceArn": {
657
- "shape": "ResourceArn"
658
- }
659
- }
660
- },
661
- "AllowVendedLogDeliveryForResourceResponse": {
662
- "type": "structure",
663
- "members": {
664
- "message": {
665
- "shape": "String"
666
- }
667
- }
668
- },
669
- "ApplicationProperties": {
670
- "type": "structure",
671
- "required": ["tenantId", "applicationArn", "tenantUrl", "applicationType"],
672
- "members": {
673
- "tenantId": {
674
- "shape": "TenantId"
675
- },
676
- "applicationArn": {
677
- "shape": "ResourceArn"
678
- },
679
- "tenantUrl": {
680
- "shape": "Url"
681
- },
682
- "applicationType": {
683
- "shape": "FunctionalityName"
684
- }
685
- }
686
- },
687
- "ApplicationPropertiesList": {
688
- "type": "list",
689
- "member": {
690
- "shape": "ApplicationProperties"
691
- }
692
- },
693
- "AssociateCustomizationPermissionRequest": {
694
- "type": "structure",
695
- "required": ["identifier", "permission"],
696
- "members": {
697
- "identifier": {
698
- "shape": "CustomizationIdentifier"
699
- },
700
- "permission": {
701
- "shape": "CustomizationPermission"
702
- }
703
- }
704
- },
705
- "AssociateCustomizationPermissionResponse": {
706
- "type": "structure",
707
- "members": {}
708
- },
709
- "Base64EncodedPaginationToken": {
710
- "type": "string",
711
- "max": 2048,
712
- "min": 1,
713
- "pattern": "(?:[A-Za-z0-9\\+/]{4})*(?:[A-Za-z0-9\\+/]{2}\\=\\=|[A-Za-z0-9\\+/]{3}\\=)?"
714
- },
715
- "Boolean": {
716
- "type": "boolean",
717
- "box": true
718
- },
719
- "ByUserAnalytics": {
720
- "type": "structure",
721
- "required": ["toggle"],
722
- "members": {
723
- "s3Uri": {
724
- "shape": "S3Uri"
725
- },
726
- "toggle": {
727
- "shape": "OptInFeatureToggle"
728
- }
729
- }
730
- },
731
- "ClientId": {
732
- "type": "string",
733
- "max": 255,
734
- "min": 1
735
- },
736
- "CodeStarReference": {
737
- "type": "structure",
738
- "required": ["connectionArn"],
739
- "members": {
740
- "connectionArn": {
741
- "shape": "ResourceArn"
742
- }
743
- }
744
- },
745
- "ConflictException": {
746
- "type": "structure",
747
- "required": ["message"],
748
- "members": {
749
- "message": {
750
- "shape": "String"
751
- },
752
- "reason": {
753
- "shape": "ConflictExceptionReason"
754
- }
755
- },
756
- "documentation": "<p>This exception is thrown when the action to perform could not be completed because the resource is in a conflicting state.</p>",
757
- "exception": true
758
- },
759
- "ConflictExceptionReason": {
760
- "type": "string",
761
- "documentation": "<p>Reason for ConflictException</p>",
762
- "enum": ["CUSTOMER_KMS_KEY_INVALID_KEY_POLICY", "CUSTOMER_KMS_KEY_DISABLED", "MISMATCHED_KMS_KEY"]
763
- },
764
- "CreateCustomizationRequest": {
765
- "type": "structure",
766
- "required": ["dataReference", "customizationName", "profileArn"],
767
- "members": {
768
- "dataReference": {
769
- "shape": "DataReference"
770
- },
771
- "customizationName": {
772
- "shape": "CustomizationName"
773
- },
774
- "description": {
775
- "shape": "Description"
776
- },
777
- "profileArn": {
778
- "shape": "ProfileArn"
779
- },
780
- "tags": {
781
- "shape": "TagList"
782
- },
783
- "clientToken": {
784
- "shape": "IdempotencyToken"
785
- },
786
- "includeRepos": {
787
- "shape": "RepositoryList"
788
- }
789
- }
790
- },
791
- "CreateCustomizationResponse": {
792
- "type": "structure",
793
- "required": ["customizationArn"],
794
- "members": {
795
- "customizationArn": {
796
- "shape": "CustomizationArn"
797
- }
798
- }
799
- },
800
- "CreateProfileRequest": {
801
- "type": "structure",
802
- "required": ["profileName", "referenceTrackerConfiguration"],
803
- "members": {
804
- "identitySource": {
805
- "shape": "IdentitySource"
806
- },
807
- "profileName": {
808
- "shape": "ProfileName"
809
- },
810
- "description": {
811
- "shape": "ProfileDescription"
812
- },
813
- "referenceTrackerConfiguration": {
814
- "shape": "ReferenceTrackerConfiguration"
815
- },
816
- "activeFunctionalities": {
817
- "shape": "ActiveFunctionalityList"
818
- },
819
- "clientToken": {
820
- "shape": "IdempotencyToken",
821
- "idempotencyToken": true
822
- },
823
- "kmsKeyArn": {
824
- "shape": "ResourceArn"
825
- },
826
- "tags": {
827
- "shape": "TagList"
828
- },
829
- "resourcePolicy": {
830
- "shape": "ResourcePolicy"
831
- },
832
- "optInFeatures": {
833
- "shape": "OptInFeatures"
834
- }
835
- }
836
- },
837
- "CreateProfileResponse": {
838
- "type": "structure",
839
- "required": ["profileArn"],
840
- "members": {
841
- "profileArn": {
842
- "shape": "ProfileArn"
843
- }
844
- }
845
- },
846
- "CustomizationArn": {
847
- "type": "string",
848
- "max": 950,
849
- "min": 0,
850
- "pattern": "arn:[-.a-z0-9]{1,63}:codewhisperer:([-.a-z0-9]{0,63}:){2}([a-zA-Z0-9-_:/]){1,1023}"
851
- },
852
- "CustomizationIdentifier": {
853
- "type": "string",
854
- "max": 950,
855
- "min": 1,
856
- "pattern": ".*[a-zA-Z0-9-:/]*.*"
857
- },
858
- "CustomizationName": {
859
- "type": "string",
860
- "max": 100,
861
- "min": 1,
862
- "pattern": "[a-zA-Z][a-zA-Z0-9_-]*"
863
- },
864
- "CustomizationPermission": {
865
- "type": "structure",
866
- "members": {
867
- "user": {
868
- "shape": "IdentityCenterIdentifier"
869
- },
870
- "group": {
871
- "shape": "IdentityCenterIdentifier"
872
- }
873
- },
874
- "union": true
875
- },
876
- "CustomizationStatus": {
877
- "type": "string",
878
- "enum": [
879
- "CREATED",
880
- "UPDATED",
881
- "CREATING",
882
- "UPDATING",
883
- "DELETING",
884
- "ACTIVATING",
885
- "DEACTIVATING",
886
- "ACTIVATED",
887
- "CREATION_FAILED",
888
- "UPDATE_FAILED",
889
- "DELETION_FAILED",
890
- "ACTIVATION_FAILED",
891
- "DEACTIVATION_FAILED"
892
- ]
893
- },
894
- "CustomizationSummary": {
895
- "type": "structure",
896
- "required": ["arn", "customizationName", "status", "updatedAt"],
897
- "members": {
898
- "arn": {
899
- "shape": "CustomizationArn"
900
- },
901
- "version": {
902
- "shape": "Version"
903
- },
904
- "customizationName": {
905
- "shape": "CustomizationName"
906
- },
907
- "description": {
908
- "shape": "Description"
909
- },
910
- "status": {
911
- "shape": "CustomizationStatus"
912
- },
913
- "updatedAt": {
914
- "shape": "Timestamp"
915
- }
916
- }
917
- },
918
- "CustomizationSummaryList": {
919
- "type": "list",
920
- "member": {
921
- "shape": "CustomizationSummary"
922
- }
923
- },
924
- "CustomizationVersionSummary": {
925
- "type": "structure",
926
- "required": ["version", "status", "dataReference", "updatedAt"],
927
- "members": {
928
- "version": {
929
- "shape": "Version"
930
- },
931
- "baseVersion": {
932
- "shape": "Version"
933
- },
934
- "status": {
935
- "shape": "CustomizationStatus"
936
- },
937
- "dataReference": {
938
- "shape": "DataReference"
939
- },
940
- "updatedAt": {
941
- "shape": "Timestamp"
942
- },
943
- "evaluationMetrics": {
944
- "shape": "EvaluationMetrics"
945
- }
946
- }
947
- },
948
- "CustomizationVersionSummaryList": {
949
- "type": "list",
950
- "member": {
951
- "shape": "CustomizationVersionSummary"
952
- }
953
- },
954
- "DashboardAnalytics": {
955
- "type": "structure",
956
- "required": ["toggle"],
957
- "members": {
958
- "toggle": {
959
- "shape": "OptInFeatureToggle"
960
- }
961
- }
962
- },
963
- "DataReference": {
964
- "type": "structure",
965
- "members": {
966
- "codeStarReference": {
967
- "shape": "CodeStarReference"
968
- },
969
- "s3Reference": {
970
- "shape": "S3Reference"
971
- }
972
- },
973
- "union": true
974
- },
975
- "DeleteCustomizationRequest": {
976
- "type": "structure",
977
- "required": ["identifier"],
978
- "members": {
979
- "identifier": {
980
- "shape": "CustomizationIdentifier"
981
- },
982
- "clientToken": {
983
- "shape": "IdempotencyToken"
984
- }
985
- }
986
- },
987
- "DeleteCustomizationResponse": {
988
- "type": "structure",
989
- "members": {}
990
- },
991
- "DeleteProfileRequest": {
992
- "type": "structure",
993
- "required": ["profileArn"],
994
- "members": {
995
- "profileArn": {
996
- "shape": "ProfileArn"
997
- }
998
- }
999
- },
1000
- "DeleteProfileResponse": {
1001
- "type": "structure",
1002
- "members": {}
1003
- },
1004
- "Description": {
1005
- "type": "string",
1006
- "max": 256,
1007
- "min": 0,
1008
- "pattern": "[\\sa-zA-Z0-9_-]*"
1009
- },
1010
- "DisassociateCustomizationPermissionRequest": {
1011
- "type": "structure",
1012
- "required": ["identifier", "permission"],
1013
- "members": {
1014
- "identifier": {
1015
- "shape": "CustomizationIdentifier"
1016
- },
1017
- "permission": {
1018
- "shape": "CustomizationPermission"
1019
- }
1020
- }
1021
- },
1022
- "DisassociateCustomizationPermissionResponse": {
1023
- "type": "structure",
1024
- "members": {}
1025
- },
1026
- "ErrorDetails": {
1027
- "type": "string",
1028
- "max": 2048,
1029
- "min": 0
1030
- },
1031
- "EvaluationMetrics": {
1032
- "type": "structure",
1033
- "required": ["compositeScore"],
1034
- "members": {
1035
- "compositeScore": {
1036
- "shape": "Integer"
1037
- }
1038
- }
1039
- },
1040
- "ExternalIdentityDetails": {
1041
- "type": "structure",
1042
- "members": {
1043
- "issuerUrl": {
1044
- "shape": "IssuerUrl"
1045
- },
1046
- "clientId": {
1047
- "shape": "ClientId"
1048
- },
1049
- "scimEndpoint": {
1050
- "shape": "String"
1051
- }
1052
- }
1053
- },
1054
- "ExternalIdentitySource": {
1055
- "type": "structure",
1056
- "required": ["issuerUrl", "clientId"],
1057
- "members": {
1058
- "issuerUrl": {
1059
- "shape": "IssuerUrl"
1060
- },
1061
- "clientId": {
1062
- "shape": "ClientId"
1063
- }
1064
- }
1065
- },
1066
- "FeatureName": {
1067
- "type": "string",
1068
- "max": 128,
1069
- "min": 1,
1070
- "pattern": "[-a-zA-Z0-9._]*"
1071
- },
1072
- "FileContext": {
1073
- "type": "structure",
1074
- "required": ["leftFileContent", "rightFileContent", "filename", "programmingLanguage"],
1075
- "members": {
1076
- "leftFileContent": {
1077
- "shape": "FileContextLeftFileContentString"
1078
- },
1079
- "rightFileContent": {
1080
- "shape": "FileContextRightFileContentString"
1081
- },
1082
- "filename": {
1083
- "shape": "FileContextFilenameString"
1084
- },
1085
- "fileUri": {
1086
- "shape": "FileContextFileUriString"
1087
- },
1088
- "programmingLanguage": {
1089
- "shape": "ProgrammingLanguage"
1090
- }
1091
- }
1092
- },
1093
- "FileContextFileUriString": {
1094
- "type": "string",
1095
- "max": 1024,
1096
- "min": 1,
1097
- "sensitive": true
1098
- },
1099
- "FileContextFilenameString": {
1100
- "type": "string",
1101
- "max": 1024,
1102
- "min": 1,
1103
- "sensitive": true
1104
- },
1105
- "FileContextLeftFileContentString": {
1106
- "type": "string",
1107
- "max": 10240,
1108
- "min": 0,
1109
- "sensitive": true
1110
- },
1111
- "FileContextRightFileContentString": {
1112
- "type": "string",
1113
- "max": 10240,
1114
- "min": 0,
1115
- "sensitive": true
1116
- },
1117
- "FunctionalityName": {
1118
- "type": "string",
1119
- "enum": [
1120
- "COMPLETIONS",
1121
- "ANALYSIS",
1122
- "CONVERSATIONS",
1123
- "TASK_ASSIST",
1124
- "TRANSFORMATIONS",
1125
- "CHAT_CUSTOMIZATION",
1126
- "TRANSFORMATIONS_WEBAPP",
1127
- "FEATURE_DEVELOPMENT"
1128
- ],
1129
- "max": 64,
1130
- "min": 1
1131
- },
1132
- "GenerateRecommendationsRequest": {
1133
- "type": "structure",
1134
- "required": ["fileContext"],
1135
- "members": {
1136
- "fileContext": {
1137
- "shape": "FileContext"
1138
- },
1139
- "maxResults": {
1140
- "shape": "GenerateRecommendationsRequestMaxResultsInteger"
1141
- },
1142
- "nextToken": {
1143
- "shape": "GenerateRecommendationsRequestNextTokenString"
1144
- },
1145
- "referenceTrackerConfiguration": {
1146
- "shape": "ReferenceTrackerConfiguration"
1147
- },
1148
- "supplementalContexts": {
1149
- "shape": "SupplementalContextList"
1150
- }
1151
- }
1152
- },
1153
- "GenerateRecommendationsRequestMaxResultsInteger": {
1154
- "type": "integer",
1155
- "box": true,
1156
- "max": 10,
1157
- "min": 1
1158
- },
1159
- "GenerateRecommendationsRequestNextTokenString": {
1160
- "type": "string",
1161
- "max": 2048,
1162
- "min": 0,
1163
- "pattern": "(?:[A-Za-z0-9\\+/]{4})*(?:[A-Za-z0-9\\+/]{2}\\=\\=|[A-Za-z0-9\\+/]{3}\\=)?"
1164
- },
1165
- "GenerateRecommendationsResponse": {
1166
- "type": "structure",
1167
- "members": {
1168
- "recommendations": {
1169
- "shape": "RecommendationsList"
1170
- },
1171
- "nextToken": {
1172
- "shape": "String"
1173
- }
1174
- }
1175
- },
1176
- "GetCustomizationRequest": {
1177
- "type": "structure",
1178
- "required": ["identifier"],
1179
- "members": {
1180
- "identifier": {
1181
- "shape": "CustomizationIdentifier"
1182
- }
1183
- }
1184
- },
1185
- "GetCustomizationResponse": {
1186
- "type": "structure",
1187
- "required": ["arn", "status", "dataReference", "customizationName", "profileArn", "updatedAt"],
1188
- "members": {
1189
- "arn": {
1190
- "shape": "CustomizationArn"
1191
- },
1192
- "version": {
1193
- "shape": "Version"
1194
- },
1195
- "status": {
1196
- "shape": "CustomizationStatus"
1197
- },
1198
- "errorDetails": {
1199
- "shape": "ErrorDetails"
1200
- },
1201
- "dataReference": {
1202
- "shape": "DataReference"
1203
- },
1204
- "customizationName": {
1205
- "shape": "CustomizationName"
1206
- },
1207
- "description": {
1208
- "shape": "Description"
1209
- },
1210
- "profileArn": {
1211
- "shape": "ProfileArn"
1212
- },
1213
- "updatedAt": {
1214
- "shape": "Timestamp"
1215
- },
1216
- "evaluationMetrics": {
1217
- "shape": "EvaluationMetrics"
1218
- },
1219
- "includeRepos": {
1220
- "shape": "RepositoryList"
1221
- }
1222
- }
1223
- },
1224
- "GrantId": {
1225
- "type": "string",
1226
- "max": 128,
1227
- "min": 1
1228
- },
1229
- "GrantToken": {
1230
- "type": "string",
1231
- "max": 8192,
1232
- "min": 1
1233
- },
1234
- "IdempotencyToken": {
1235
- "type": "string",
1236
- "max": 256,
1237
- "min": 1
1238
- },
1239
- "IdentityCenterIdentifier": {
1240
- "type": "string",
1241
- "max": 64,
1242
- "min": 1,
1243
- "pattern": "([0-9a-f]{10}-|)[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{12}"
1244
- },
1245
- "IdentityCenterPermissions": {
1246
- "type": "list",
1247
- "member": {
1248
- "shape": "CustomizationPermission"
1249
- }
1250
- },
1251
- "IdentityDetails": {
1252
- "type": "structure",
1253
- "members": {
1254
- "ssoIdentityDetails": {
1255
- "shape": "SSOIdentityDetails"
1256
- },
1257
- "externalIdentityDetails": {
1258
- "shape": "ExternalIdentityDetails"
1259
- }
1260
- },
1261
- "union": true
1262
- },
1263
- "IdentitySource": {
1264
- "type": "structure",
1265
- "members": {
1266
- "ssoIdentitySource": {
1267
- "shape": "SSOIdentitySource"
1268
- },
1269
- "externalIdentitySource": {
1270
- "shape": "ExternalIdentitySource"
1271
- }
1272
- },
1273
- "union": true
1274
- },
1275
- "Import": {
1276
- "type": "structure",
1277
- "members": {
1278
- "statement": {
1279
- "shape": "ImportStatementString"
1280
- }
1281
- }
1282
- },
1283
- "ImportStatementString": {
1284
- "type": "string",
1285
- "max": 1024,
1286
- "min": 1,
1287
- "sensitive": true
1288
- },
1289
- "Imports": {
1290
- "type": "list",
1291
- "member": {
1292
- "shape": "Import"
1293
- },
1294
- "max": 10,
1295
- "min": 0
1296
- },
1297
- "Integer": {
1298
- "type": "integer",
1299
- "box": true
1300
- },
1301
- "InternalServerException": {
1302
- "type": "structure",
1303
- "required": ["message"],
1304
- "members": {
1305
- "message": {
1306
- "shape": "String"
1307
- },
1308
- "reason": {
1309
- "shape": "InternalServerExceptionReason"
1310
- }
1311
- },
1312
- "documentation": "<p>This exception is thrown when an unexpected error occurred during the processing of a request.</p>",
1313
- "exception": true,
1314
- "fault": true,
1315
- "retryable": {
1316
- "throttling": false
1317
- }
1318
- },
1319
- "InternalServerExceptionReason": {
1320
- "type": "string",
1321
- "documentation": "<p>Reason for InternalServerException</p>",
1322
- "enum": ["MODEL_TEMPORARILY_UNAVAILABLE"]
1323
- },
1324
- "IssuerUrl": {
1325
- "type": "string",
1326
- "max": 255,
1327
- "min": 1
1328
- },
1329
- "ListCustomizationPermissionsRequest": {
1330
- "type": "structure",
1331
- "required": ["identifier"],
1332
- "members": {
1333
- "identifier": {
1334
- "shape": "CustomizationIdentifier"
1335
- },
1336
- "maxResults": {
1337
- "shape": "ListCustomizationPermissionsRequestMaxResultsInteger"
1338
- },
1339
- "nextToken": {
1340
- "shape": "Base64EncodedPaginationToken"
1341
- }
1342
- }
1343
- },
1344
- "ListCustomizationPermissionsRequestMaxResultsInteger": {
1345
- "type": "integer",
1346
- "box": true,
1347
- "max": 50,
1348
- "min": 1
1349
- },
1350
- "ListCustomizationPermissionsResponse": {
1351
- "type": "structure",
1352
- "required": ["permissions"],
1353
- "members": {
1354
- "permissions": {
1355
- "shape": "IdentityCenterPermissions"
1356
- },
1357
- "nextToken": {
1358
- "shape": "Base64EncodedPaginationToken"
1359
- }
1360
- }
1361
- },
1362
- "ListCustomizationVersionsRequest": {
1363
- "type": "structure",
1364
- "required": ["identifier"],
1365
- "members": {
1366
- "identifier": {
1367
- "shape": "CustomizationIdentifier"
1368
- },
1369
- "maxResults": {
1370
- "shape": "ListCustomizationVersionsRequestMaxResultsInteger"
1371
- },
1372
- "nextToken": {
1373
- "shape": "Base64EncodedPaginationToken"
1374
- }
1375
- }
1376
- },
1377
- "ListCustomizationVersionsRequestMaxResultsInteger": {
1378
- "type": "integer",
1379
- "box": true,
1380
- "max": 100,
1381
- "min": 1
1382
- },
1383
- "ListCustomizationVersionsResponse": {
1384
- "type": "structure",
1385
- "required": ["versions"],
1386
- "members": {
1387
- "versions": {
1388
- "shape": "CustomizationVersionSummaryList"
1389
- },
1390
- "nextToken": {
1391
- "shape": "Base64EncodedPaginationToken"
1392
- }
1393
- }
1394
- },
1395
- "ListCustomizationsRequest": {
1396
- "type": "structure",
1397
- "members": {
1398
- "maxResults": {
1399
- "shape": "ListCustomizationsRequestMaxResultsInteger"
1400
- },
1401
- "nextToken": {
1402
- "shape": "Base64EncodedPaginationToken"
1403
- }
1404
- }
1405
- },
1406
- "ListCustomizationsRequestMaxResultsInteger": {
1407
- "type": "integer",
1408
- "box": true,
1409
- "max": 100,
1410
- "min": 1
1411
- },
1412
- "ListCustomizationsResponse": {
1413
- "type": "structure",
1414
- "required": ["customizations"],
1415
- "members": {
1416
- "customizations": {
1417
- "shape": "CustomizationSummaryList"
1418
- },
1419
- "nextToken": {
1420
- "shape": "Base64EncodedPaginationToken"
1421
- }
1422
- }
1423
- },
1424
- "ListProfilesRequest": {
1425
- "type": "structure",
1426
- "members": {
1427
- "maxResults": {
1428
- "shape": "ListProfilesRequestMaxResultsInteger"
1429
- },
1430
- "includeManagementAccount": {
1431
- "shape": "Boolean"
1432
- },
1433
- "nextToken": {
1434
- "shape": "Base64EncodedPaginationToken"
1435
- }
1436
- }
1437
- },
1438
- "ListProfilesRequestMaxResultsInteger": {
1439
- "type": "integer",
1440
- "box": true,
1441
- "max": 100,
1442
- "min": 1
1443
- },
1444
- "ListProfilesResponse": {
1445
- "type": "structure",
1446
- "required": ["profiles"],
1447
- "members": {
1448
- "profiles": {
1449
- "shape": "ProfileList"
1450
- },
1451
- "nextToken": {
1452
- "shape": "Base64EncodedPaginationToken"
1453
- }
1454
- }
1455
- },
1456
- "ListTagsForResourceRequest": {
1457
- "type": "structure",
1458
- "required": ["resourceArn"],
1459
- "members": {
1460
- "resourceArn": {
1461
- "shape": "ResourceArn"
1462
- }
1463
- }
1464
- },
1465
- "ListTagsForResourceResponse": {
1466
- "type": "structure",
1467
- "members": {
1468
- "tags": {
1469
- "shape": "TagList"
1470
- }
1471
- }
1472
- },
1473
- "Notifications": {
1474
- "type": "list",
1475
- "member": {
1476
- "shape": "NotificationsFeature"
1477
- },
1478
- "max": 10,
1479
- "min": 0
1480
- },
1481
- "NotificationsFeature": {
1482
- "type": "structure",
1483
- "required": ["feature", "toggle"],
1484
- "members": {
1485
- "feature": {
1486
- "shape": "FeatureName"
1487
- },
1488
- "toggle": {
1489
- "shape": "OptInFeatureToggle"
1490
- }
1491
- }
1492
- },
1493
- "OptInFeatureToggle": {
1494
- "type": "string",
1495
- "enum": ["ON", "OFF"]
1496
- },
1497
- "OptInFeatures": {
1498
- "type": "structure",
1499
- "members": {
1500
- "promptLogging": {
1501
- "shape": "PromptLogging"
1502
- },
1503
- "byUserAnalytics": {
1504
- "shape": "ByUserAnalytics"
1505
- },
1506
- "dashboardAnalytics": {
1507
- "shape": "DashboardAnalytics"
1508
- },
1509
- "notifications": {
1510
- "shape": "Notifications"
1511
- },
1512
- "workspaceContext": {
1513
- "shape": "WorkspaceContext"
1514
- }
1515
- }
1516
- },
1517
- "PreviousEditorStateMetadata": {
1518
- "type": "structure",
1519
- "required": ["timeOffset"],
1520
- "members": {
1521
- "timeOffset": {
1522
- "shape": "Integer"
1523
- }
1524
- }
1525
- },
1526
- "Profile": {
1527
- "type": "structure",
1528
- "required": ["arn", "profileName"],
1529
- "members": {
1530
- "arn": {
1531
- "shape": "ProfileArn"
1532
- },
1533
- "identityDetails": {
1534
- "shape": "IdentityDetails"
1535
- },
1536
- "profileName": {
1537
- "shape": "ProfileName"
1538
- },
1539
- "description": {
1540
- "shape": "ProfileDescription"
1541
- },
1542
- "referenceTrackerConfiguration": {
1543
- "shape": "ReferenceTrackerConfiguration"
1544
- },
1545
- "kmsKeyArn": {
1546
- "shape": "ResourceArn"
1547
- },
1548
- "activeFunctionalities": {
1549
- "shape": "ActiveFunctionalityList"
1550
- },
1551
- "status": {
1552
- "shape": "ProfileStatus"
1553
- },
1554
- "errorDetails": {
1555
- "shape": "ErrorDetails"
1556
- },
1557
- "resourcePolicy": {
1558
- "shape": "ResourcePolicy"
1559
- },
1560
- "profileType": {
1561
- "shape": "ProfileType"
1562
- },
1563
- "optInFeatures": {
1564
- "shape": "OptInFeatures"
1565
- },
1566
- "permissionUpdateRequired": {
1567
- "shape": "Boolean"
1568
- },
1569
- "applicationProperties": {
1570
- "shape": "ApplicationPropertiesList"
1571
- }
1572
- }
1573
- },
1574
- "ProfileArn": {
1575
- "type": "string",
1576
- "max": 950,
1577
- "min": 0,
1578
- "pattern": "arn:aws:(codewhisperer|transform):[-.a-z0-9]{1,63}:\\d{12}:profile/([a-zA-Z0-9]){12}"
1579
- },
1580
- "ProfileDescription": {
1581
- "type": "string",
1582
- "max": 256,
1583
- "min": 1,
1584
- "pattern": "[\\sa-zA-Z0-9_-]*"
1585
- },
1586
- "ProfileList": {
1587
- "type": "list",
1588
- "member": {
1589
- "shape": "Profile"
1590
- }
1591
- },
1592
- "ProfileName": {
1593
- "type": "string",
1594
- "max": 100,
1595
- "min": 1,
1596
- "pattern": "[a-zA-Z][a-zA-Z0-9_-]*"
1597
- },
1598
- "ProfileStatus": {
1599
- "type": "string",
1600
- "enum": ["ACTIVE", "CREATING", "CREATE_FAILED", "UPDATING", "UPDATE_FAILED", "DELETING", "DELETE_FAILED"]
1601
- },
1602
- "ProfileType": {
1603
- "type": "string",
1604
- "enum": ["Q_DEVELOPER", "CODEWHISPERER"]
1605
- },
1606
- "ProgrammingLanguage": {
1607
- "type": "structure",
1608
- "required": ["languageName"],
1609
- "members": {
1610
- "languageName": {
1611
- "shape": "ProgrammingLanguageLanguageNameString"
1612
- }
1613
- },
1614
- "documentation": "<p>Programming Languages supported by CodeWhisperer</p>"
1615
- },
1616
- "ProgrammingLanguageLanguageNameString": {
1617
- "type": "string",
1618
- "max": 128,
1619
- "min": 1,
1620
- "pattern": "(python|javascript|java|csharp|typescript|c|cpp|go|kotlin|php|ruby|rust|scala|shell|sql|json|yaml|vue|tf|tsx|jsx|plaintext|systemverilog|dart|lua|swift|hcl|powershell|r|abap)"
1621
- },
1622
- "PromptLogging": {
1623
- "type": "structure",
1624
- "required": ["s3Uri", "toggle"],
1625
- "members": {
1626
- "s3Uri": {
1627
- "shape": "S3Uri"
1628
- },
1629
- "toggle": {
1630
- "shape": "OptInFeatureToggle"
1631
- }
1632
- }
1633
- },
1634
- "Recommendation": {
1635
- "type": "structure",
1636
- "required": ["content"],
1637
- "members": {
1638
- "content": {
1639
- "shape": "RecommendationContentString"
1640
- },
1641
- "references": {
1642
- "shape": "References"
1643
- },
1644
- "mostRelevantMissingImports": {
1645
- "shape": "Imports"
1646
- }
1647
- }
1648
- },
1649
- "RecommendationContentString": {
1650
- "type": "string",
1651
- "max": 5120,
1652
- "min": 1,
1653
- "sensitive": true
1654
- },
1655
- "RecommendationsList": {
1656
- "type": "list",
1657
- "member": {
1658
- "shape": "Recommendation"
1659
- },
1660
- "max": 10,
1661
- "min": 0
1662
- },
1663
- "RecommendationsWithReferencesPreference": {
1664
- "type": "string",
1665
- "documentation": "<p>Recommendations with references setting for CodeWhisperer</p>",
1666
- "enum": ["BLOCK", "ALLOW"]
1667
- },
1668
- "Reference": {
1669
- "type": "structure",
1670
- "members": {
1671
- "licenseName": {
1672
- "shape": "ReferenceLicenseNameString",
1673
- "documentation": "<p>License name</p>"
1674
- },
1675
- "repository": {
1676
- "shape": "ReferenceRepositoryString",
1677
- "documentation": "<p>Code Repsitory for the associated reference</p>"
1678
- },
1679
- "url": {
1680
- "shape": "ReferenceUrlString",
1681
- "documentation": "<p>Respository URL</p>"
1682
- },
1683
- "recommendationContentSpan": {
1684
- "shape": "Span",
1685
- "documentation": "<p>Span / Range for the Reference</p>"
1686
- }
1687
- },
1688
- "documentation": "<p>Code Reference / Repository details</p>"
1689
- },
1690
- "ReferenceLicenseNameString": {
1691
- "type": "string",
1692
- "max": 1024,
1693
- "min": 1
1694
- },
1695
- "ReferenceRepositoryString": {
1696
- "type": "string",
1697
- "max": 1024,
1698
- "min": 1
1699
- },
1700
- "ReferenceTrackerConfiguration": {
1701
- "type": "structure",
1702
- "required": ["recommendationsWithReferences"],
1703
- "members": {
1704
- "recommendationsWithReferences": {
1705
- "shape": "RecommendationsWithReferencesPreference"
1706
- }
1707
- }
1708
- },
1709
- "ReferenceUrlString": {
1710
- "type": "string",
1711
- "max": 1024,
1712
- "min": 1
1713
- },
1714
- "References": {
1715
- "type": "list",
1716
- "member": {
1717
- "shape": "Reference"
1718
- },
1719
- "max": 10,
1720
- "min": 0
1721
- },
1722
- "RepositoryId": {
1723
- "type": "string",
1724
- "max": 255,
1725
- "min": 1,
1726
- "pattern": ".*(?x)^([a-zA-Z0-9-_\\.\\s()]+/)+[\\w-\\.\\+_\\s]+",
1727
- "sensitive": true
1728
- },
1729
- "RepositoryList": {
1730
- "type": "list",
1731
- "member": {
1732
- "shape": "RepositoryId"
1733
- },
1734
- "max": 100,
1735
- "min": 1,
1736
- "sensitive": true
1737
- },
1738
- "ResourceArn": {
1739
- "type": "string",
1740
- "max": 1224,
1741
- "min": 0,
1742
- "pattern": "arn:([-.a-z0-9]{1,63}:){2}([-.a-z0-9]{0,63}:){2}([a-zA-Z0-9-_:/]){1,1023}"
1743
- },
1744
- "ResourceNotFoundException": {
1745
- "type": "structure",
1746
- "required": ["message"],
1747
- "members": {
1748
- "message": {
1749
- "shape": "String"
1750
- }
1751
- },
1752
- "documentation": "<p>This exception is thrown when describing a resource that does not exist.</p>",
1753
- "exception": true
1754
- },
1755
- "ResourcePolicy": {
1756
- "type": "structure",
1757
- "required": ["effect"],
1758
- "members": {
1759
- "effect": {
1760
- "shape": "ResourcePolicyEffect"
1761
- }
1762
- }
1763
- },
1764
- "ResourcePolicyEffect": {
1765
- "type": "string",
1766
- "enum": ["ALLOW", "DENY"]
1767
- },
1768
- "S3Reference": {
1769
- "type": "structure",
1770
- "required": ["uri"],
1771
- "members": {
1772
- "uri": {
1773
- "shape": "S3Uri"
1774
- }
1775
- }
1776
- },
1777
- "S3Uri": {
1778
- "type": "string",
1779
- "max": 1024,
1780
- "min": 1,
1781
- "pattern": "s3://((?!xn--)[a-z0-9](?![^/]*[.]{2})[a-z0-9-.]{1,61}[a-z0-9](?<!-s3alias)(?<!--ol-s3)(?<!([0-9]{1,3}\\.)([0-9]{1,3}\\.)([0-9]{1,3}\\.)([0-9]{1,3})))/(.{0,1024})"
1782
- },
1783
- "SSOIdentityDetails": {
1784
- "type": "structure",
1785
- "required": ["instanceArn", "oidcClientId"],
1786
- "members": {
1787
- "instanceArn": {
1788
- "shape": "ResourceArn"
1789
- },
1790
- "oidcClientId": {
1791
- "shape": "String"
1792
- },
1793
- "ssoRegion": {
1794
- "shape": "SSORegion"
1795
- }
1796
- }
1797
- },
1798
- "SSOIdentitySource": {
1799
- "type": "structure",
1800
- "required": ["instanceArn"],
1801
- "members": {
1802
- "instanceArn": {
1803
- "shape": "ResourceArn"
1804
- },
1805
- "ssoRegion": {
1806
- "shape": "SSORegion"
1807
- }
1808
- }
1809
- },
1810
- "SSORegion": {
1811
- "type": "string",
1812
- "max": 63,
1813
- "min": 1,
1814
- "pattern": "[-a-z0-9]{1,63}"
1815
- },
1816
- "Span": {
1817
- "type": "structure",
1818
- "members": {
1819
- "start": {
1820
- "shape": "SpanStartInteger"
1821
- },
1822
- "end": {
1823
- "shape": "SpanEndInteger"
1824
- }
1825
- },
1826
- "documentation": "<p>Represents span in a text.</p>"
1827
- },
1828
- "SpanEndInteger": {
1829
- "type": "integer",
1830
- "box": true,
1831
- "min": 0
1832
- },
1833
- "SpanStartInteger": {
1834
- "type": "integer",
1835
- "box": true,
1836
- "min": 0
1837
- },
1838
- "String": {
1839
- "type": "string"
1840
- },
1841
- "SupplementalContext": {
1842
- "type": "structure",
1843
- "required": ["filePath", "content"],
1844
- "members": {
1845
- "filePath": {
1846
- "shape": "SupplementalContextFilePathString"
1847
- },
1848
- "content": {
1849
- "shape": "SupplementalContextContentString"
1850
- },
1851
- "type": {
1852
- "shape": "SupplementalContextType"
1853
- },
1854
- "metadata": {
1855
- "shape": "SupplementalContextMetadata"
1856
- }
1857
- }
1858
- },
1859
- "SupplementalContextContentString": {
1860
- "type": "string",
1861
- "max": 10240,
1862
- "min": 1,
1863
- "sensitive": true
1864
- },
1865
- "SupplementalContextFilePathString": {
1866
- "type": "string",
1867
- "max": 1024,
1868
- "min": 1,
1869
- "sensitive": true
1870
- },
1871
- "SupplementalContextList": {
1872
- "type": "list",
1873
- "member": {
1874
- "shape": "SupplementalContext"
1875
- },
1876
- "max": 20,
1877
- "min": 0
1878
- },
1879
- "SupplementalContextMetadata": {
1880
- "type": "structure",
1881
- "members": {
1882
- "previousEditorStateMetadata": {
1883
- "shape": "PreviousEditorStateMetadata"
1884
- }
1885
- },
1886
- "union": true
1887
- },
1888
- "SupplementalContextType": {
1889
- "type": "string",
1890
- "enum": ["PreviousEditorState", "WorkspaceContext"]
1891
- },
1892
- "Tag": {
1893
- "type": "structure",
1894
- "required": ["key", "value"],
1895
- "members": {
1896
- "key": {
1897
- "shape": "TagKey"
1898
- },
1899
- "value": {
1900
- "shape": "TagValue"
1901
- }
1902
- }
1903
- },
1904
- "TagKey": {
1905
- "type": "string",
1906
- "max": 128,
1907
- "min": 1
1908
- },
1909
- "TagKeyList": {
1910
- "type": "list",
1911
- "member": {
1912
- "shape": "TagKey"
1913
- },
1914
- "max": 50,
1915
- "min": 0
1916
- },
1917
- "TagList": {
1918
- "type": "list",
1919
- "member": {
1920
- "shape": "Tag"
1921
- },
1922
- "max": 50,
1923
- "min": 0
1924
- },
1925
- "TagResourceRequest": {
1926
- "type": "structure",
1927
- "required": ["resourceArn", "tags"],
1928
- "members": {
1929
- "resourceArn": {
1930
- "shape": "ResourceArn"
1931
- },
1932
- "tags": {
1933
- "shape": "TagList"
1934
- }
1935
- }
1936
- },
1937
- "TagResourceResponse": {
1938
- "type": "structure",
1939
- "members": {}
1940
- },
1941
- "TagValue": {
1942
- "type": "string",
1943
- "max": 256,
1944
- "min": 0
1945
- },
1946
- "TenantId": {
1947
- "type": "string",
1948
- "max": 1024,
1949
- "min": 1
1950
- },
1951
- "ThrottlingException": {
1952
- "type": "structure",
1953
- "required": ["message"],
1954
- "members": {
1955
- "message": {
1956
- "shape": "String"
1957
- },
1958
- "reason": {
1959
- "shape": "ThrottlingExceptionReason"
1960
- }
1961
- },
1962
- "documentation": "<p>This exception is thrown when request was denied due to request throttling.</p>",
1963
- "exception": true,
1964
- "retryable": {
1965
- "throttling": true
1966
- }
1967
- },
1968
- "ThrottlingExceptionReason": {
1969
- "type": "string",
1970
- "documentation": "<p>Reason for ThrottlingException</p>",
1971
- "enum": ["MONTHLY_REQUEST_COUNT"]
1972
- },
1973
- "Timestamp": {
1974
- "type": "timestamp"
1975
- },
1976
- "UntagResourceRequest": {
1977
- "type": "structure",
1978
- "required": ["resourceArn", "tagKeys"],
1979
- "members": {
1980
- "resourceArn": {
1981
- "shape": "ResourceArn"
1982
- },
1983
- "tagKeys": {
1984
- "shape": "TagKeyList"
1985
- }
1986
- }
1987
- },
1988
- "UntagResourceResponse": {
1989
- "type": "structure",
1990
- "members": {}
1991
- },
1992
- "UpdateCustomizationRequest": {
1993
- "type": "structure",
1994
- "required": ["identifier", "operation"],
1995
- "members": {
1996
- "identifier": {
1997
- "shape": "CustomizationIdentifier"
1998
- },
1999
- "operation": {
2000
- "shape": "UpdateOperation"
2001
- },
2002
- "clientToken": {
2003
- "shape": "IdempotencyToken"
2004
- },
2005
- "dataReference": {
2006
- "shape": "DataReference"
2007
- },
2008
- "version": {
2009
- "shape": "Version"
2010
- },
2011
- "includeRepos": {
2012
- "shape": "RepositoryList"
2013
- }
2014
- }
2015
- },
2016
- "UpdateCustomizationResponse": {
2017
- "type": "structure",
2018
- "members": {}
2019
- },
2020
- "UpdateOperation": {
2021
- "type": "string",
2022
- "enum": ["ACTIVATE", "DEACTIVATE", "UPDATE"]
2023
- },
2024
- "UpdateProfileRequest": {
2025
- "type": "structure",
2026
- "required": ["profileArn"],
2027
- "members": {
2028
- "profileArn": {
2029
- "shape": "ProfileArn"
2030
- },
2031
- "identitySource": {
2032
- "shape": "IdentitySource"
2033
- },
2034
- "profileName": {
2035
- "shape": "ProfileName"
2036
- },
2037
- "description": {
2038
- "shape": "ProfileDescription"
2039
- },
2040
- "referenceTrackerConfiguration": {
2041
- "shape": "ReferenceTrackerConfiguration"
2042
- },
2043
- "activeFunctionalities": {
2044
- "shape": "ActiveFunctionalityList"
2045
- },
2046
- "kmsKeyArn": {
2047
- "shape": "ResourceArn"
2048
- },
2049
- "resourcePolicy": {
2050
- "shape": "ResourcePolicy"
2051
- },
2052
- "targetProfileType": {
2053
- "shape": "ProfileType"
2054
- },
2055
- "optInFeatures": {
2056
- "shape": "OptInFeatures"
2057
- }
2058
- }
2059
- },
2060
- "UpdateProfileResponse": {
2061
- "type": "structure",
2062
- "required": ["profileArn"],
2063
- "members": {
2064
- "profileArn": {
2065
- "shape": "ProfileArn"
2066
- }
2067
- }
2068
- },
2069
- "Url": {
2070
- "type": "string",
2071
- "max": 1024,
2072
- "min": 1
2073
- },
2074
- "ValidationException": {
2075
- "type": "structure",
2076
- "required": ["message"],
2077
- "members": {
2078
- "message": {
2079
- "shape": "String"
2080
- },
2081
- "reason": {
2082
- "shape": "ValidationExceptionReason"
2083
- }
2084
- },
2085
- "documentation": "<p>This exception is thrown when the input fails to satisfy the constraints specified by the service.</p>",
2086
- "exception": true
2087
- },
2088
- "ValidationExceptionReason": {
2089
- "type": "string",
2090
- "documentation": "<p>Reason for ValidationException</p>",
2091
- "enum": ["INVALID_CONVERSATION_ID", "CONTENT_LENGTH_EXCEEDS_THRESHOLD", "INVALID_KMS_GRANT"]
2092
- },
2093
- "VendKeyGrantRequest": {
2094
- "type": "structure",
2095
- "required": ["accountId", "usecase"],
2096
- "members": {
2097
- "accountId": {
2098
- "shape": "AWSAccountId"
2099
- },
2100
- "usecase": {
2101
- "shape": "VendKeyGrantUseCase"
2102
- }
2103
- }
2104
- },
2105
- "VendKeyGrantResponse": {
2106
- "type": "structure",
2107
- "members": {
2108
- "cmkArn": {
2109
- "shape": "ResourceArn"
2110
- },
2111
- "grantId": {
2112
- "shape": "GrantToken"
2113
- },
2114
- "grantToken": {
2115
- "shape": "GrantId"
2116
- }
2117
- }
2118
- },
2119
- "VendKeyGrantUseCase": {
2120
- "type": "string",
2121
- "enum": [
2122
- "TEST",
2123
- "WEAVER_BIRD",
2124
- "ELASTIC_GUMBY",
2125
- "LOCHNESS",
2126
- "BOWER_BIRD",
2127
- "ELASTIC_GUMBY_V2_JOB",
2128
- "ELASTIC_GUMBY_V2_CHAT"
2129
- ]
2130
- },
2131
- "Version": {
2132
- "type": "long",
2133
- "box": true
2134
- },
2135
- "WorkspaceContext": {
2136
- "type": "structure",
2137
- "required": ["toggle"],
2138
- "members": {
2139
- "toggle": {
2140
- "shape": "OptInFeatureToggle"
2141
- }
2142
- }
2143
- }
2144
- }
2145
- }