@aws/lsp-codewhisperer 0.0.86 → 0.0.89

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 (267) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/node_modules/@amzn/codewhisperer-runtime/README.md +78 -15
  3. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/CodeWhispererRuntimeClient.js +13 -10
  4. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateArtifactUploadUrlCommand.js +4 -0
  5. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateSubscriptionTokenCommand.js +4 -0
  6. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateTaskAssistConversationCommand.js +4 -0
  7. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateUploadUrlCommand.js +4 -0
  8. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateUserMemoryEntryCommand.js +4 -0
  9. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateWorkspaceCommand.js +4 -0
  10. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/DeleteTaskAssistConversationCommand.js +4 -0
  11. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/DeleteUserMemoryEntryCommand.js +4 -0
  12. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/DeleteWorkspaceCommand.js +4 -0
  13. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GenerateCompletionsCommand.js +4 -0
  14. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetCodeAnalysisCommand.js +4 -0
  15. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetCodeFixJobCommand.js +4 -0
  16. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetProfileCommand.js +4 -0
  17. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetRetrievalsCommand.js +4 -0
  18. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetTaskAssistCodeGenerationCommand.js +6 -2
  19. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetTestGenerationCommand.js +4 -0
  20. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetTransformationCommand.js +4 -0
  21. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetTransformationPlanCommand.js +4 -0
  22. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetUsageLimitsCommand.js +4 -0
  23. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListAvailableCustomizationsCommand.js +4 -0
  24. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListAvailableModelsCommand.js +4 -0
  25. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListAvailableProfilesCommand.js +4 -0
  26. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListAvailableSubscriptionsCommand.js +4 -0
  27. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListCodeAnalysisFindingsCommand.js +4 -0
  28. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListEventsCommand.js +4 -0
  29. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListFeatureEvaluationsCommand.js +4 -0
  30. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListUserMemoryEntriesCommand.js +4 -0
  31. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListWorkspaceMetadataCommand.js +4 -0
  32. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/PushTelemetryEventCommand.js +4 -0
  33. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ResumeTransformationCommand.js +4 -0
  34. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/SendTelemetryEventCommand.js +4 -0
  35. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/SetUserPreferenceCommand.js +4 -0
  36. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StartCodeAnalysisCommand.js +4 -0
  37. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StartCodeFixJobCommand.js +4 -0
  38. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StartTaskAssistCodeGenerationCommand.js +4 -0
  39. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StartTestGenerationCommand.js +4 -0
  40. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StartTransformationCommand.js +4 -0
  41. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StopTransformationCommand.js +4 -0
  42. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/UpdateUsageLimitsCommand.js +4 -0
  43. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/endpoint/EndpointParameters.js +15 -0
  44. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/endpoint/endpointResolver.js +19 -0
  45. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/endpoint/ruleset.js +61 -0
  46. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/models/models_0.js +52 -43
  47. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/models/models_1.js +7 -1
  48. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/protocols/Aws_restJson1.js +23 -2
  49. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/runtimeConfig.shared.js +2 -2
  50. package/node_modules/@amzn/codewhisperer-runtime/dist-es/CodeWhispererRuntimeClient.js +15 -12
  51. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateArtifactUploadUrlCommand.js +4 -0
  52. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateSubscriptionTokenCommand.js +4 -0
  53. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateTaskAssistConversationCommand.js +4 -0
  54. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateUploadUrlCommand.js +4 -0
  55. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateUserMemoryEntryCommand.js +4 -0
  56. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateWorkspaceCommand.js +4 -0
  57. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/DeleteTaskAssistConversationCommand.js +4 -0
  58. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/DeleteUserMemoryEntryCommand.js +4 -0
  59. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/DeleteWorkspaceCommand.js +4 -0
  60. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GenerateCompletionsCommand.js +4 -0
  61. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetCodeAnalysisCommand.js +4 -0
  62. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetCodeFixJobCommand.js +4 -0
  63. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetProfileCommand.js +4 -0
  64. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetRetrievalsCommand.js +4 -0
  65. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetTaskAssistCodeGenerationCommand.js +5 -1
  66. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetTestGenerationCommand.js +4 -0
  67. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetTransformationCommand.js +4 -0
  68. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetTransformationPlanCommand.js +4 -0
  69. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetUsageLimitsCommand.js +4 -0
  70. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListAvailableCustomizationsCommand.js +4 -0
  71. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListAvailableModelsCommand.js +4 -0
  72. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListAvailableProfilesCommand.js +4 -0
  73. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListAvailableSubscriptionsCommand.js +4 -0
  74. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListCodeAnalysisFindingsCommand.js +4 -0
  75. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListEventsCommand.js +4 -0
  76. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListFeatureEvaluationsCommand.js +4 -0
  77. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListUserMemoryEntriesCommand.js +4 -0
  78. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListWorkspaceMetadataCommand.js +4 -0
  79. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/PushTelemetryEventCommand.js +4 -0
  80. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ResumeTransformationCommand.js +4 -0
  81. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/SendTelemetryEventCommand.js +4 -0
  82. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/SetUserPreferenceCommand.js +4 -0
  83. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StartCodeAnalysisCommand.js +4 -0
  84. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StartCodeFixJobCommand.js +4 -0
  85. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StartTaskAssistCodeGenerationCommand.js +4 -0
  86. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StartTestGenerationCommand.js +4 -0
  87. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StartTransformationCommand.js +4 -0
  88. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StopTransformationCommand.js +4 -0
  89. package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/UpdateUsageLimitsCommand.js +4 -0
  90. package/node_modules/@amzn/codewhisperer-runtime/dist-es/endpoint/EndpointParameters.js +11 -0
  91. package/node_modules/@amzn/codewhisperer-runtime/dist-es/endpoint/endpointResolver.js +15 -0
  92. package/node_modules/@amzn/codewhisperer-runtime/dist-es/endpoint/ruleset.js +58 -0
  93. package/node_modules/@amzn/codewhisperer-runtime/dist-es/models/models_0.js +47 -37
  94. package/node_modules/@amzn/codewhisperer-runtime/dist-es/models/models_1.js +5 -0
  95. package/node_modules/@amzn/codewhisperer-runtime/dist-es/protocols/Aws_restJson1.js +23 -2
  96. package/node_modules/@amzn/codewhisperer-runtime/dist-es/runtimeConfig.shared.js +2 -2
  97. package/node_modules/@amzn/codewhisperer-runtime/dist-types/CodeWhispererRuntimeClient.d.ts +6 -9
  98. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateArtifactUploadUrlCommand.d.ts +7 -7
  99. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateSubscriptionTokenCommand.d.ts +8 -6
  100. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateTaskAssistConversationCommand.d.ts +4 -4
  101. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateUploadUrlCommand.d.ts +11 -11
  102. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateUserMemoryEntryCommand.d.ts +10 -10
  103. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateWorkspaceCommand.d.ts +8 -8
  104. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/DeleteTaskAssistConversationCommand.d.ts +5 -4
  105. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/DeleteUserMemoryEntryCommand.d.ts +4 -4
  106. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/DeleteWorkspaceCommand.d.ts +6 -6
  107. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GenerateCompletionsCommand.d.ts +6 -6
  108. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetCodeAnalysisCommand.d.ts +8 -8
  109. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetCodeFixJobCommand.d.ts +7 -7
  110. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetProfileCommand.d.ts +10 -6
  111. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetRetrievalsCommand.d.ts +6 -6
  112. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetTaskAssistCodeGenerationCommand.d.ts +6 -6
  113. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetTestGenerationCommand.d.ts +4 -4
  114. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetTransformationCommand.d.ts +5 -5
  115. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetTransformationPlanCommand.d.ts +5 -5
  116. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetUsageLimitsCommand.d.ts +6 -6
  117. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListAvailableCustomizationsCommand.d.ts +6 -6
  118. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListAvailableModelsCommand.d.ts +10 -6
  119. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListAvailableProfilesCommand.d.ts +9 -6
  120. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListAvailableSubscriptionsCommand.d.ts +3 -3
  121. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListCodeAnalysisFindingsCommand.d.ts +6 -6
  122. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListEventsCommand.d.ts +6 -6
  123. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListFeatureEvaluationsCommand.d.ts +6 -6
  124. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListUserMemoryEntriesCommand.d.ts +4 -4
  125. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListWorkspaceMetadataCommand.d.ts +6 -6
  126. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/PushTelemetryEventCommand.d.ts +6 -6
  127. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ResumeTransformationCommand.d.ts +5 -5
  128. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/SendTelemetryEventCommand.d.ts +7 -6
  129. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/SetUserPreferenceCommand.d.ts +6 -6
  130. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StartCodeAnalysisCommand.d.ts +8 -8
  131. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StartCodeFixJobCommand.d.ts +7 -7
  132. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StartTaskAssistCodeGenerationCommand.d.ts +8 -8
  133. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StartTestGenerationCommand.d.ts +7 -7
  134. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StartTransformationCommand.d.ts +5 -5
  135. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StopTransformationCommand.d.ts +5 -5
  136. package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/UpdateUsageLimitsCommand.d.ts +8 -8
  137. package/node_modules/@amzn/codewhisperer-runtime/dist-types/endpoint/EndpointParameters.d.ts +28 -0
  138. package/node_modules/@amzn/codewhisperer-runtime/dist-types/endpoint/endpointResolver.d.ts +5 -0
  139. package/node_modules/@amzn/codewhisperer-runtime/dist-types/endpoint/ruleset.d.ts +2 -0
  140. package/node_modules/@amzn/codewhisperer-runtime/dist-types/index.d.ts +1 -0
  141. package/node_modules/@amzn/codewhisperer-runtime/dist-types/models/models_0.d.ts +151 -131
  142. package/node_modules/@amzn/codewhisperer-runtime/dist-types/models/models_1.d.ts +52 -1
  143. package/node_modules/@amzn/codewhisperer-runtime/dist-types/runtimeConfig.browser.d.ts +5 -2
  144. package/node_modules/@amzn/codewhisperer-runtime/dist-types/runtimeConfig.d.ts +5 -2
  145. package/node_modules/@amzn/codewhisperer-runtime/dist-types/runtimeConfig.native.d.ts +5 -2
  146. package/node_modules/@amzn/codewhisperer-runtime/dist-types/runtimeConfig.shared.d.ts +3 -1
  147. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
  148. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
  149. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +423 -0
  150. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +229 -0
  151. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +10 -0
  152. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +5 -0
  153. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
  154. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
  155. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +18 -0
  156. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +41 -0
  157. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +229 -0
  158. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -0
  159. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -0
  160. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -0
  161. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
  162. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
  163. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
  164. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
  165. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
  166. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
  167. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +2 -0
  168. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +5 -0
  169. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
  170. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
  171. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
  172. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +38 -0
  173. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -0
  174. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -0
  175. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +2 -0
  176. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +5 -0
  177. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
  178. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
  179. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
  180. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +28 -0
  181. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
  182. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -0
  183. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -0
  184. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +6 -0
  185. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -0
  186. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +5 -0
  187. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -0
  188. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
  189. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +12 -0
  190. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -0
  191. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -0
  192. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -0
  193. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -0
  194. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -0
  195. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
  196. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -0
  197. package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/util-endpoints/package.json +58 -0
  198. package/node_modules/@amzn/codewhisperer-runtime/package.json +3 -0
  199. package/out/language-server/agenticChat/agenticChatController.d.ts +7 -0
  200. package/out/language-server/agenticChat/agenticChatController.js +77 -14
  201. package/out/language-server/agenticChat/agenticChatController.js.map +1 -1
  202. package/out/language-server/agenticChat/context/contextCommandsProvider.d.ts +6 -0
  203. package/out/language-server/agenticChat/context/contextCommandsProvider.js +24 -0
  204. package/out/language-server/agenticChat/context/contextCommandsProvider.js.map +1 -1
  205. package/out/language-server/agenticChat/tools/mcp/mcpEventHandler.d.ts +7 -0
  206. package/out/language-server/agenticChat/tools/mcp/mcpEventHandler.js +202 -34
  207. package/out/language-server/agenticChat/tools/mcp/mcpEventHandler.js.map +1 -1
  208. package/out/language-server/agenticChat/tools/mcp/mcpManager.d.ts +4 -0
  209. package/out/language-server/agenticChat/tools/mcp/mcpManager.js +19 -6
  210. package/out/language-server/agenticChat/tools/mcp/mcpManager.js.map +1 -1
  211. package/out/language-server/agenticChat/tools/mcp/mcpUtils.js +2 -2
  212. package/out/language-server/agenticChat/tools/mcp/mcpUtils.js.map +1 -1
  213. package/out/language-server/agenticChat/tools/mcp/profileStatusMonitor.d.ts +6 -0
  214. package/out/language-server/agenticChat/tools/mcp/profileStatusMonitor.js +6 -0
  215. package/out/language-server/agenticChat/tools/mcp/profileStatusMonitor.js.map +1 -1
  216. package/out/language-server/agenticChat/tools/qCodeAnalysis/codeReview.d.ts +2 -1
  217. package/out/language-server/agenticChat/tools/qCodeAnalysis/codeReview.js +8 -3
  218. package/out/language-server/agenticChat/tools/qCodeAnalysis/codeReview.js.map +1 -1
  219. package/out/language-server/agenticChat/tools/qCodeAnalysis/codeReviewSchemas.d.ts +4 -1
  220. package/out/language-server/agenticChat/tools/qCodeAnalysis/codeReviewSchemas.js +4 -2
  221. package/out/language-server/agenticChat/tools/qCodeAnalysis/codeReviewSchemas.js.map +1 -1
  222. package/out/language-server/agenticChat/tools/qCodeAnalysis/codeReviewTypes.d.ts +1 -0
  223. package/out/language-server/agenticChat/tools/toolServer.js +1 -1
  224. package/out/language-server/agenticChat/tools/toolServer.js.map +1 -1
  225. package/out/language-server/inline-completion/auto-trigger/autoTrigger.js +2 -2
  226. package/out/language-server/inline-completion/auto-trigger/autoTrigger.js.map +1 -1
  227. package/out/language-server/inline-completion/auto-trigger/editPredictionAutoTrigger.d.ts +44 -1
  228. package/out/language-server/inline-completion/auto-trigger/editPredictionAutoTrigger.js +335 -1
  229. package/out/language-server/inline-completion/auto-trigger/editPredictionAutoTrigger.js.map +1 -1
  230. package/out/language-server/inline-completion/handler/editCompletionHandler.js +54 -58
  231. package/out/language-server/inline-completion/handler/editCompletionHandler.js.map +1 -1
  232. package/out/language-server/inline-completion/handler/inlineCompletionHandler.js +8 -3
  233. package/out/language-server/inline-completion/handler/inlineCompletionHandler.js.map +1 -1
  234. package/out/language-server/inline-completion/handler/sessionResultsHandler.js +15 -2
  235. package/out/language-server/inline-completion/handler/sessionResultsHandler.js.map +1 -1
  236. package/out/language-server/inline-completion/session/sessionManager.d.ts +5 -0
  237. package/out/language-server/inline-completion/session/sessionManager.js +16 -0
  238. package/out/language-server/inline-completion/session/sessionManager.js.map +1 -1
  239. package/out/language-server/inline-completion/telemetry/telemetry.d.ts +4 -4
  240. package/out/language-server/inline-completion/telemetry/telemetry.js +6 -6
  241. package/out/language-server/inline-completion/telemetry/telemetry.js.map +1 -1
  242. package/out/language-server/inline-completion/utils/triggerUtils.d.ts +11 -3
  243. package/out/language-server/inline-completion/utils/triggerUtils.js +58 -0
  244. package/out/language-server/inline-completion/utils/triggerUtils.js.map +1 -1
  245. package/out/shared/amazonQServiceManager/AmazonQTokenServiceManager.js +5 -1
  246. package/out/shared/amazonQServiceManager/AmazonQTokenServiceManager.js.map +1 -1
  247. package/out/shared/codeWhispererService.d.ts +26 -10
  248. package/out/shared/codeWhispererService.js +114 -25
  249. package/out/shared/codeWhispererService.js.map +1 -1
  250. package/out/shared/constants.js +3 -0
  251. package/out/shared/constants.js.map +1 -1
  252. package/out/shared/localProjectContextController.d.ts +1 -0
  253. package/out/shared/localProjectContextController.js +4 -0
  254. package/out/shared/localProjectContextController.js.map +1 -1
  255. package/out/shared/supplementalContextUtil/crossFileContextUtil.d.ts +3 -3
  256. package/out/shared/supplementalContextUtil/crossFileContextUtil.js +9 -9
  257. package/out/shared/supplementalContextUtil/crossFileContextUtil.js.map +1 -1
  258. package/out/shared/supplementalContextUtil/supplementalContextUtil.d.ts +1 -1
  259. package/out/shared/supplementalContextUtil/supplementalContextUtil.js +2 -2
  260. package/out/shared/supplementalContextUtil/supplementalContextUtil.js.map +1 -1
  261. package/out/shared/telemetry/telemetryService.d.ts +2 -2
  262. package/out/shared/telemetry/telemetryService.js +4 -2
  263. package/out/shared/telemetry/telemetryService.js.map +1 -1
  264. package/package.json +4 -4
  265. package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/endpoints.js +0 -211
  266. package/node_modules/@amzn/codewhisperer-runtime/dist-es/endpoints.js +0 -207
  267. package/node_modules/@amzn/codewhisperer-runtime/dist-types/endpoints.d.ts +0 -2
@@ -59,20 +59,20 @@ declare const UpdateUsageLimitsCommand_base: {
59
59
  * @see {@link UpdateUsageLimitsCommandOutput} for command's `response` shape.
60
60
  * @see {@link CodeWhispererRuntimeClientResolvedConfig | config} for CodeWhispererRuntimeClient's `config` shape.
61
61
  *
62
- * @throws {@link InternalServerException} (server fault)
63
- * This exception is thrown when an unexpected error occurred during the processing of a request.
62
+ * @throws {@link ValidationException} (client fault)
63
+ * This exception is thrown when the input fails to satisfy the constraints specified by the service.
64
64
  *
65
- * @throws {@link UpdateUsageLimitQuotaExceededException} (client fault)
66
- * Exception thrown when the number of usage limit update requests exceeds the monthly quota (default 3 requests per month)
65
+ * @throws {@link AccessDeniedException} (client fault)
66
+ * This exception is thrown when the user does not have sufficient access to perform this action.
67
67
  *
68
68
  * @throws {@link ThrottlingException} (client fault)
69
69
  * This exception is thrown when request was denied due to request throttling.
70
70
  *
71
- * @throws {@link ValidationException} (client fault)
72
- * This exception is thrown when the input fails to satisfy the constraints specified by the service.
71
+ * @throws {@link InternalServerException} (server fault)
72
+ * This exception is thrown when an unexpected error occurred during the processing of a request.
73
73
  *
74
- * @throws {@link AccessDeniedException} (client fault)
75
- * This exception is thrown when the user does not have sufficient access to perform this action.
74
+ * @throws {@link UpdateUsageLimitQuotaExceededException} (client fault)
75
+ * Exception thrown when the number of usage limit update requests exceeds the monthly quota (default 3 requests per month)
76
76
  *
77
77
  * @throws {@link CodeWhispererRuntimeServiceException}
78
78
  * <p>Base exception class for all service exceptions from CodeWhispererRuntime service.</p>
@@ -0,0 +1,28 @@
1
+ import { Endpoint, EndpointV2, Provider, EndpointParameters as __EndpointParameters } from "@smithy/types";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface ClientInputEndpointParameters {
6
+ endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
7
+ region?: string | Provider<string>;
8
+ }
9
+ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
10
+ defaultSigningName: string;
11
+ };
12
+ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
13
+ defaultSigningName: string;
14
+ };
15
+ export declare const commonParams: {
16
+ readonly endpoint: {
17
+ readonly type: "builtInParams";
18
+ readonly name: "endpoint";
19
+ };
20
+ readonly region: {
21
+ readonly type: "builtInParams";
22
+ readonly name: "region";
23
+ };
24
+ };
25
+ export interface EndpointParameters extends __EndpointParameters {
26
+ endpoint?: string;
27
+ region?: string;
28
+ }
@@ -0,0 +1,5 @@
1
+ import { EndpointParameters } from "./EndpointParameters";
2
+ import { EndpointV2, Logger } from "@smithy/types";
3
+ export declare const defaultEndpointResolver: (endpointParams: EndpointParameters, context?: {
4
+ logger?: Logger;
5
+ }) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -1,5 +1,6 @@
1
1
  export * from "./CodeWhispererRuntimeClient";
2
2
  export * from "./CodeWhispererRuntime";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
3
4
  export type { RuntimeExtension } from "./runtimeExtensions";
4
5
  export type { CodeWhispererRuntimeExtensionConfiguration } from "./extensionConfiguration";
5
6
  export * from "./commands";
@@ -32,74 +32,6 @@ export declare class AccessDeniedException extends __BaseException {
32
32
  */
33
33
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
34
34
  }
35
- /**
36
- * @public
37
- * @enum
38
- */
39
- export declare const FunctionalityName: {
40
- readonly Analysis: "ANALYSIS";
41
- readonly ChatCustomization: "CHAT_CUSTOMIZATION";
42
- readonly Completions: "COMPLETIONS";
43
- readonly Conversations: "CONVERSATIONS";
44
- readonly FeatureDevelopment: "FEATURE_DEVELOPMENT";
45
- readonly TaskAssist: "TASK_ASSIST";
46
- readonly Transformations: "TRANSFORMATIONS";
47
- readonly TransformationsWebApp: "TRANSFORMATIONS_WEBAPP";
48
- };
49
- /**
50
- * @public
51
- */
52
- export type FunctionalityName = typeof FunctionalityName[keyof typeof FunctionalityName];
53
- /**
54
- * Structure representing a single entry of additional contextual content
55
- * @public
56
- */
57
- export interface AdditionalContentEntry {
58
- /**
59
- * The name/identifier for this context entry
60
- * @public
61
- */
62
- name: string | undefined;
63
- /**
64
- * A description of what this context entry represents
65
- * @public
66
- */
67
- description: string | undefined;
68
- /**
69
- * The actual contextual content
70
- * @public
71
- */
72
- innerContext?: string | undefined;
73
- }
74
- /**
75
- * @internal
76
- */
77
- export declare const AdditionalContentEntryFilterSensitiveLog: (obj: AdditionalContentEntry) => any;
78
- /**
79
- * @public
80
- * @enum
81
- */
82
- export declare const AgenticChatEventStatus: {
83
- readonly Cancelled: "CANCELLED";
84
- readonly Failed: "FAILED";
85
- readonly Succeeded: "SUCCEEDED";
86
- };
87
- /**
88
- * @public
89
- */
90
- export type AgenticChatEventStatus = typeof AgenticChatEventStatus[keyof typeof AgenticChatEventStatus];
91
- /**
92
- * @public
93
- * @enum
94
- */
95
- export declare const AgentTaskType: {
96
- readonly SPEC_TASK: "spectask";
97
- readonly VIBE: "vibe";
98
- };
99
- /**
100
- * @public
101
- */
102
- export type AgentTaskType = typeof AgentTaskType[keyof typeof AgentTaskType];
103
35
  /**
104
36
  * @public
105
37
  * @enum
@@ -182,6 +114,7 @@ export declare const ValidationExceptionReason: {
182
114
  readonly CONTENT_LENGTH_EXCEEDS_THRESHOLD: "CONTENT_LENGTH_EXCEEDS_THRESHOLD";
183
115
  readonly INVALID_CONVERSATION_ID: "INVALID_CONVERSATION_ID";
184
116
  readonly INVALID_KMS_GRANT: "INVALID_KMS_GRANT";
117
+ readonly INVALID_MODEL_ID: "INVALID_MODEL_ID";
185
118
  };
186
119
  /**
187
120
  * @public
@@ -204,6 +137,74 @@ export declare class ValidationException extends __BaseException {
204
137
  */
205
138
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
206
139
  }
140
+ /**
141
+ * @public
142
+ * @enum
143
+ */
144
+ export declare const FunctionalityName: {
145
+ readonly Analysis: "ANALYSIS";
146
+ readonly ChatCustomization: "CHAT_CUSTOMIZATION";
147
+ readonly Completions: "COMPLETIONS";
148
+ readonly Conversations: "CONVERSATIONS";
149
+ readonly FeatureDevelopment: "FEATURE_DEVELOPMENT";
150
+ readonly TaskAssist: "TASK_ASSIST";
151
+ readonly Transformations: "TRANSFORMATIONS";
152
+ readonly TransformationsWebApp: "TRANSFORMATIONS_WEBAPP";
153
+ };
154
+ /**
155
+ * @public
156
+ */
157
+ export type FunctionalityName = typeof FunctionalityName[keyof typeof FunctionalityName];
158
+ /**
159
+ * Structure representing a single entry of additional contextual content
160
+ * @public
161
+ */
162
+ export interface AdditionalContentEntry {
163
+ /**
164
+ * The name/identifier for this context entry
165
+ * @public
166
+ */
167
+ name: string | undefined;
168
+ /**
169
+ * A description of what this context entry represents
170
+ * @public
171
+ */
172
+ description: string | undefined;
173
+ /**
174
+ * The actual contextual content
175
+ * @public
176
+ */
177
+ innerContext?: string | undefined;
178
+ }
179
+ /**
180
+ * @internal
181
+ */
182
+ export declare const AdditionalContentEntryFilterSensitiveLog: (obj: AdditionalContentEntry) => any;
183
+ /**
184
+ * @public
185
+ * @enum
186
+ */
187
+ export declare const AgenticChatEventStatus: {
188
+ readonly Cancelled: "CANCELLED";
189
+ readonly Failed: "FAILED";
190
+ readonly Succeeded: "SUCCEEDED";
191
+ };
192
+ /**
193
+ * @public
194
+ */
195
+ export type AgenticChatEventStatus = typeof AgenticChatEventStatus[keyof typeof AgenticChatEventStatus];
196
+ /**
197
+ * @public
198
+ * @enum
199
+ */
200
+ export declare const AgentTaskType: {
201
+ readonly SPEC_TASK: "spectask";
202
+ readonly VIBE: "vibe";
203
+ };
204
+ /**
205
+ * @public
206
+ */
207
+ export type AgentTaskType = typeof AgentTaskType[keyof typeof AgentTaskType];
207
208
  /**
208
209
  * @public
209
210
  */
@@ -563,6 +564,24 @@ export declare class ConflictException extends __BaseException {
563
564
  */
564
565
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
565
566
  }
567
+ /**
568
+ * @public
569
+ * @enum
570
+ */
571
+ export declare const SubscriptionStartType: {
572
+ /**
573
+ * Typical usage where admin has subscribed the user
574
+ */
575
+ readonly ADMIN: "ADMIN";
576
+ /**
577
+ * Allows users to self-subscribe themselves as they use the service
578
+ */
579
+ readonly JUST_IN_TIME: "JUST_IN_TIME";
580
+ };
581
+ /**
582
+ * @public
583
+ */
584
+ export type SubscriptionStartType = typeof SubscriptionStartType[keyof typeof SubscriptionStartType];
566
585
  /**
567
586
  * @public
568
587
  * @enum
@@ -593,6 +612,7 @@ export interface DashboardAnalytics {
593
612
  */
594
613
  export interface MCPConfiguration {
595
614
  toggle: OptInFeatureToggle | undefined;
615
+ mcpRegistryUrl?: string | undefined;
596
616
  }
597
617
  /**
598
618
  * @public
@@ -650,6 +670,19 @@ export interface OptInFeatures {
650
670
  overageConfiguration?: OverageConfiguration | undefined;
651
671
  mcpConfiguration?: MCPConfiguration | undefined;
652
672
  }
673
+ /**
674
+ * @public
675
+ * @enum
676
+ */
677
+ export declare const ProfileType: {
678
+ readonly CODEWHISPERER: "CODEWHISPERER";
679
+ readonly KIRO: "KIRO";
680
+ readonly Q_DEVELOPER: "Q_DEVELOPER";
681
+ };
682
+ /**
683
+ * @public
684
+ */
685
+ export type ProfileType = typeof ProfileType[keyof typeof ProfileType];
653
686
  /**
654
687
  * @public
655
688
  * @enum
@@ -696,6 +729,24 @@ export type ResourcePolicyEffect = typeof ResourcePolicyEffect[keyof typeof Reso
696
729
  export interface ResourcePolicy {
697
730
  effect: ResourcePolicyEffect | undefined;
698
731
  }
732
+ /**
733
+ * @public
734
+ * @enum
735
+ */
736
+ export declare const OptInFeaturesType: {
737
+ /**
738
+ * For setting Kiro opt-in features
739
+ */
740
+ readonly KIRO: "KIRO";
741
+ /**
742
+ * For setting Q developer opt-in features
743
+ */
744
+ readonly Q_DEVELOPER: "Q_DEVELOPER";
745
+ };
746
+ /**
747
+ * @public
748
+ */
749
+ export type OptInFeaturesType = typeof OptInFeaturesType[keyof typeof OptInFeaturesType];
699
750
  /**
700
751
  * @public
701
752
  */
@@ -703,6 +754,7 @@ export interface ExternalIdentityDetails {
703
754
  issuerUrl?: string | undefined;
704
755
  clientId?: string | undefined;
705
756
  scimEndpoint?: string | undefined;
757
+ subscriptionStartType?: SubscriptionStartType | undefined;
706
758
  }
707
759
  /**
708
760
  * @public
@@ -745,18 +797,6 @@ export declare namespace IdentityDetails {
745
797
  }
746
798
  const visit: <T>(value: IdentityDetails, visitor: Visitor<T>) => T;
747
799
  }
748
- /**
749
- * @public
750
- * @enum
751
- */
752
- export declare const ProfileType: {
753
- readonly CODEWHISPERER: "CODEWHISPERER";
754
- readonly Q_DEVELOPER: "Q_DEVELOPER";
755
- };
756
- /**
757
- * @public
758
- */
759
- export type ProfileType = typeof ProfileType[keyof typeof ProfileType];
760
800
  /**
761
801
  * @public
762
802
  * @enum
@@ -811,6 +851,7 @@ export interface Profile {
811
851
  resourcePolicy?: ResourcePolicy | undefined;
812
852
  profileType?: ProfileType | undefined;
813
853
  optInFeatures?: OptInFeatures | undefined;
854
+ optInFeaturesType?: OptInFeaturesType | undefined;
814
855
  permissionUpdateRequired?: boolean | undefined;
815
856
  applicationProperties?: (ApplicationProperties)[] | undefined;
816
857
  }
@@ -1073,6 +1114,10 @@ export declare const Origin: {
1073
1114
  * Q Developer Inline Chat.
1074
1115
  */
1075
1116
  readonly INLINE_CHAT: "INLINE_CHAT";
1117
+ /**
1118
+ * KIRO CLI
1119
+ */
1120
+ readonly KIRO_CLI: "KIRO_CLI";
1076
1121
  /**
1077
1122
  * AWS Marketing Website (https://aws.amazon.com)
1078
1123
  */
@@ -3494,6 +3539,18 @@ export declare const SuggestionType: {
3494
3539
  * @public
3495
3540
  */
3496
3541
  export type SuggestionType = typeof SuggestionType[keyof typeof SuggestionType];
3542
+ /**
3543
+ * @public
3544
+ * @enum
3545
+ */
3546
+ export declare const UserDecisionReason: {
3547
+ readonly ExplicitReject: "EXPLICIT_REJECT";
3548
+ readonly ImplicitReject: "IMPLICIT_REJECT";
3549
+ };
3550
+ /**
3551
+ * @public
3552
+ */
3553
+ export type UserDecisionReason = typeof UserDecisionReason[keyof typeof UserDecisionReason];
3497
3554
  /**
3498
3555
  * @public
3499
3556
  */
@@ -3530,6 +3587,7 @@ export interface UserTriggerDecisionEvent {
3530
3587
  deletedCharacterCount?: number | undefined;
3531
3588
  streakLength?: number | undefined;
3532
3589
  suggestionType?: SuggestionType | undefined;
3590
+ userDecisionReason?: UserDecisionReason | undefined;
3533
3591
  }
3534
3592
  /**
3535
3593
  * @internal
@@ -5090,6 +5148,16 @@ export interface Model {
5090
5148
  * @public
5091
5149
  */
5092
5150
  description?: string | undefined;
5151
+ /**
5152
+ * Rate multiplier of the model
5153
+ * @public
5154
+ */
5155
+ rateMultiplier?: number | undefined;
5156
+ /**
5157
+ * Unit for the rate multiplier
5158
+ * @public
5159
+ */
5160
+ rateUnit?: string | undefined;
5093
5161
  /**
5094
5162
  * Limits on token usage for this model
5095
5163
  * @public
@@ -5142,6 +5210,7 @@ export interface ProfileInfo {
5142
5210
  status?: ProfileStatus | undefined;
5143
5211
  profileType?: ProfileType | undefined;
5144
5212
  optInFeatures?: OptInFeatures | undefined;
5213
+ referenceTrackerConfiguration?: ReferenceTrackerConfiguration | undefined;
5145
5214
  }
5146
5215
  /**
5147
5216
  * @public
@@ -5361,6 +5430,8 @@ export interface CreateSubscriptionTokenRequest {
5361
5430
  statusOnly?: boolean | undefined;
5362
5431
  provider?: SubscriptionProvider | undefined;
5363
5432
  subscriptionType?: SubscriptionType | undefined;
5433
+ successUrl?: string | undefined;
5434
+ cancelUrl?: string | undefined;
5364
5435
  }
5365
5436
  /**
5366
5437
  * @public
@@ -5887,54 +5958,3 @@ export interface DeleteTaskAssistConversationRequest {
5887
5958
  conversationId: string | undefined;
5888
5959
  profileArn?: string | undefined;
5889
5960
  }
5890
- /**
5891
- * Structure to represent bootstrap conversation response.
5892
- * @public
5893
- */
5894
- export interface DeleteTaskAssistConversationResponse {
5895
- /**
5896
- * ID which represents a multi-turn conversation
5897
- * @public
5898
- */
5899
- conversationId: string | undefined;
5900
- }
5901
- /**
5902
- * Request for getting task assist code generation.
5903
- * @public
5904
- */
5905
- export interface GetTaskAssistCodeGenerationRequest {
5906
- /**
5907
- * ID which represents a multi-turn conversation
5908
- * @public
5909
- */
5910
- conversationId: string | undefined;
5911
- /**
5912
- * ID which represents a single code generation in a conversation
5913
- * @public
5914
- */
5915
- codeGenerationId: string | undefined;
5916
- profileArn?: string | undefined;
5917
- }
5918
- /**
5919
- * Response for getting task assist code generation status.
5920
- * @public
5921
- */
5922
- export interface GetTaskAssistCodeGenerationResponse {
5923
- /**
5924
- * ID which represents a multi-turn conversation
5925
- * @public
5926
- */
5927
- conversationId: string | undefined;
5928
- codeGenerationStatus: CodeGenerationStatus | undefined;
5929
- /**
5930
- * Detailed message about the code generation status
5931
- * @public
5932
- */
5933
- codeGenerationStatusDetail?: string | undefined;
5934
- codeGenerationRemainingIterationCount?: number | undefined;
5935
- codeGenerationTotalIterationCount?: number | undefined;
5936
- }
5937
- /**
5938
- * @internal
5939
- */
5940
- export declare const GetTaskAssistCodeGenerationResponseFilterSensitiveLog: (obj: GetTaskAssistCodeGenerationResponse) => any;
@@ -1,4 +1,55 @@
1
- import { ConversationState, Intent, IntentContext, TaskAssistPlanStep, WorkspaceState } from "./models_0";
1
+ import { CodeGenerationStatus, ConversationState, Intent, IntentContext, TaskAssistPlanStep, WorkspaceState } from "./models_0";
2
+ /**
3
+ * Structure to represent bootstrap conversation response.
4
+ * @public
5
+ */
6
+ export interface DeleteTaskAssistConversationResponse {
7
+ /**
8
+ * ID which represents a multi-turn conversation
9
+ * @public
10
+ */
11
+ conversationId: string | undefined;
12
+ }
13
+ /**
14
+ * Request for getting task assist code generation.
15
+ * @public
16
+ */
17
+ export interface GetTaskAssistCodeGenerationRequest {
18
+ /**
19
+ * ID which represents a multi-turn conversation
20
+ * @public
21
+ */
22
+ conversationId: string | undefined;
23
+ /**
24
+ * ID which represents a single code generation in a conversation
25
+ * @public
26
+ */
27
+ codeGenerationId: string | undefined;
28
+ profileArn?: string | undefined;
29
+ }
30
+ /**
31
+ * Response for getting task assist code generation status.
32
+ * @public
33
+ */
34
+ export interface GetTaskAssistCodeGenerationResponse {
35
+ /**
36
+ * ID which represents a multi-turn conversation
37
+ * @public
38
+ */
39
+ conversationId: string | undefined;
40
+ codeGenerationStatus: CodeGenerationStatus | undefined;
41
+ /**
42
+ * Detailed message about the code generation status
43
+ * @public
44
+ */
45
+ codeGenerationStatusDetail?: string | undefined;
46
+ codeGenerationRemainingIterationCount?: number | undefined;
47
+ codeGenerationTotalIterationCount?: number | undefined;
48
+ }
49
+ /**
50
+ * @internal
51
+ */
52
+ export declare const GetTaskAssistCodeGenerationResponseFilterSensitiveLog: (obj: GetTaskAssistCodeGenerationResponse) => any;
2
53
  /**
3
54
  * Structure to represent start code generation request.
4
55
  * @public
@@ -26,14 +26,17 @@ export declare const getRuntimeConfig: (config: CodeWhispererRuntimeClientConfig
26
26
  disableHostPrefix: boolean;
27
27
  serviceId: string;
28
28
  profile?: string | undefined;
29
- regionInfoProvider: import("@smithy/types").RegionInfoProvider;
30
29
  logger: import("@smithy/types").Logger;
31
30
  extensions: import("./runtimeExtensions").RuntimeExtension[];
32
31
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
33
32
  userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
34
33
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
35
- endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | undefined;
34
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
35
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
36
+ logger?: import("@smithy/types").Logger | undefined;
37
+ }) => import("@smithy/types").EndpointV2;
36
38
  tls?: boolean | undefined;
39
+ serviceConfiguredEndpoint?: undefined;
37
40
  httpAuthSchemes: {
38
41
  schemeId: string;
39
42
  identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
@@ -34,13 +34,16 @@ export declare const getRuntimeConfig: (config: CodeWhispererRuntimeClientConfig
34
34
  disableHostPrefix: boolean;
35
35
  serviceId: string;
36
36
  profile?: string | undefined;
37
- regionInfoProvider: import("@smithy/types").RegionInfoProvider;
38
37
  logger: import("@smithy/types").Logger;
39
38
  extensions: import("./runtimeExtensions").RuntimeExtension[];
40
39
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
41
40
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
42
- endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | undefined;
41
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
42
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
43
+ logger?: import("@smithy/types").Logger | undefined;
44
+ }) => import("@smithy/types").EndpointV2;
43
45
  tls?: boolean | undefined;
46
+ serviceConfiguredEndpoint?: undefined;
44
47
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeWhispererRuntimeHttpAuthSchemeProvider;
45
48
  token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider | undefined;
46
49
  };
@@ -21,7 +21,6 @@ export declare const getRuntimeConfig: (config: CodeWhispererRuntimeClientConfig
21
21
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
22
  region: string | import("@smithy/types").Provider<any>;
23
23
  profile?: string | undefined;
24
- regionInfoProvider: import("@smithy/types").RegionInfoProvider;
25
24
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
26
25
  maxAttempts: number | import("@smithy/types").Provider<number>;
27
26
  retryMode: string | import("@smithy/types").Provider<string>;
@@ -31,8 +30,12 @@ export declare const getRuntimeConfig: (config: CodeWhispererRuntimeClientConfig
31
30
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
32
31
  userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
33
32
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
34
- endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | undefined;
33
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
34
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
35
+ logger?: import("@smithy/types").Logger | undefined;
36
+ }) => import("@smithy/types").EndpointV2;
35
37
  tls?: boolean | undefined;
38
+ serviceConfiguredEndpoint?: undefined;
36
39
  httpAuthSchemes: {
37
40
  schemeId: string;
38
41
  identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
@@ -9,6 +9,9 @@ export declare const getRuntimeConfig: (config: CodeWhispererRuntimeClientConfig
9
9
  base64Decoder: import("@smithy/types").Decoder;
10
10
  base64Encoder: (_input: string | Uint8Array) => string;
11
11
  disableHostPrefix: boolean;
12
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
13
+ logger?: import("@smithy/types").Logger | undefined;
14
+ }) => import("@smithy/types").EndpointV2;
12
15
  extensions: import("./runtimeExtensions").RuntimeExtension[];
13
16
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeWhispererRuntimeHttpAuthSchemeProvider;
14
17
  httpAuthSchemes: {
@@ -17,7 +20,6 @@ export declare const getRuntimeConfig: (config: CodeWhispererRuntimeClientConfig
17
20
  signer: HttpBearerAuthSigner;
18
21
  }[];
19
22
  logger: import("@smithy/types").Logger;
20
- regionInfoProvider: import("@smithy/types").RegionInfoProvider;
21
23
  serviceId: string;
22
24
  urlParser: import("@smithy/types").UrlParser;
23
25
  utf8Decoder: import("@smithy/types").Decoder;