@aws/lsp-codewhisperer 0.0.84 → 0.0.86
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.
- package/CHANGELOG.md +14 -0
- package/node_modules/@amzn/codewhisperer/LICENSE +201 -0
- package/node_modules/@amzn/codewhisperer/README.md +1032 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/CodeWhisperer.js +49 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/CodeWhispererClient.js +47 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/auth/httpAuthSchemeProvider.js +50 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/AllowVendedLogDeliveryForResourceCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/AssociateCustomizationPermissionCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/CreateCustomizationCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/CreateProfileCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/DeleteCustomizationCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/DeleteProfileCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/DisassociateCustomizationPermissionCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/GenerateRecommendationsCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/GetCustomizationCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/ListCustomizationPermissionsCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/ListCustomizationVersionsCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/ListCustomizationsCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/ListProfilesCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/ListTagsForResourceCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/TagResourceCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/UntagResourceCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/UpdateCustomizationCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/UpdateProfileCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/VendKeyGrantCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/commands/index.js +22 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/endpoints.js +211 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/extensionConfiguration.js +2 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/index.js +11 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/models/CodeWhispererServiceException.js +12 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/models/index.js +4 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/models/models_0.js +316 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/pagination/Interfaces.js +2 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/pagination/ListCustomizationPermissionsPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/pagination/ListCustomizationVersionsPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/pagination/ListCustomizationsPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/pagination/ListProfilesPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/pagination/index.js +8 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/protocols/Aws_restJson1.js +791 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/runtimeConfig.browser.js +38 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/runtimeConfig.js +46 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/runtimeConfig.shared.js +32 -0
- package/node_modules/@amzn/codewhisperer/dist-cjs/runtimeExtensions.js +25 -0
- package/node_modules/@amzn/codewhisperer/dist-es/CodeWhisperer.js +45 -0
- package/node_modules/@amzn/codewhisperer/dist-es/CodeWhispererClient.js +43 -0
- package/node_modules/@amzn/codewhisperer/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@amzn/codewhisperer/dist-es/auth/httpAuthSchemeProvider.js +44 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/AllowVendedLogDeliveryForResourceCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/AssociateCustomizationPermissionCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/CreateCustomizationCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/CreateProfileCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/DeleteCustomizationCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/DeleteProfileCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/DisassociateCustomizationPermissionCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/GenerateRecommendationsCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/GetCustomizationCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/ListCustomizationPermissionsCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/ListCustomizationVersionsCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/ListCustomizationsCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/ListProfilesCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/ListTagsForResourceCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/TagResourceCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/UntagResourceCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/UpdateCustomizationCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/UpdateProfileCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/VendKeyGrantCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer/dist-es/commands/index.js +19 -0
- package/node_modules/@amzn/codewhisperer/dist-es/endpoints.js +207 -0
- package/node_modules/@amzn/codewhisperer/dist-es/index.js +6 -0
- package/node_modules/@amzn/codewhisperer/dist-es/models/CodeWhispererServiceException.js +8 -0
- package/node_modules/@amzn/codewhisperer/dist-es/models/index.js +1 -0
- package/node_modules/@amzn/codewhisperer/dist-es/models/models_0.js +298 -0
- package/node_modules/@amzn/codewhisperer/dist-es/pagination/ListCustomizationPermissionsPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer/dist-es/pagination/ListCustomizationVersionsPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer/dist-es/pagination/ListCustomizationsPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer/dist-es/pagination/ListProfilesPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer/dist-es/pagination/index.js +5 -0
- package/node_modules/@amzn/codewhisperer/dist-es/protocols/Aws_restJson1.js +750 -0
- package/node_modules/@amzn/codewhisperer/dist-es/runtimeConfig.browser.js +33 -0
- package/node_modules/@amzn/codewhisperer/dist-es/runtimeConfig.js +41 -0
- package/node_modules/@amzn/codewhisperer/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@amzn/codewhisperer/dist-es/runtimeConfig.shared.js +28 -0
- package/node_modules/@amzn/codewhisperer/dist-es/runtimeExtensions.js +21 -0
- package/node_modules/@amzn/codewhisperer/dist-types/CodeWhisperer.d.ts +144 -0
- package/node_modules/@amzn/codewhisperer/dist-types/CodeWhispererClient.d.ts +208 -0
- package/node_modules/@amzn/codewhisperer/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@amzn/codewhisperer/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/AllowVendedLogDeliveryForResourceCommand.d.ts +87 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/AssociateCustomizationPermissionCommand.d.ts +91 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/CreateCustomizationCommand.d.ts +106 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/CreateProfileCommand.d.ts +146 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/DeleteCustomizationCommand.d.ts +88 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/DeleteProfileCommand.d.ts +88 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/DisassociateCustomizationPermissionCommand.d.ts +91 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/GenerateRecommendationsCommand.d.ts +130 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/GetCustomizationCommand.d.ts +107 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/ListCustomizationPermissionsCommand.d.ts +94 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/ListCustomizationVersionsCommand.d.ts +107 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/ListCustomizationsCommand.d.ts +94 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/ListProfilesCommand.d.ts +155 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/ListTagsForResourceCommand.d.ts +92 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/TagResourceCommand.d.ts +91 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/UntagResourceCommand.d.ts +88 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/UpdateCustomizationCommand.d.ts +101 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/UpdateProfileCommand.d.ts +141 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/VendKeyGrantCommand.d.ts +91 -0
- package/node_modules/@amzn/codewhisperer/dist-types/commands/index.d.ts +19 -0
- package/node_modules/@amzn/codewhisperer/dist-types/endpoints.d.ts +2 -0
- package/node_modules/@amzn/codewhisperer/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@amzn/codewhisperer/dist-types/index.d.ts +8 -0
- package/node_modules/@amzn/codewhisperer/dist-types/models/CodeWhispererServiceException.d.ts +14 -0
- package/node_modules/@amzn/codewhisperer/dist-types/models/index.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/dist-types/models/models_0.d.ts +1174 -0
- package/node_modules/@amzn/codewhisperer/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@amzn/codewhisperer/dist-types/pagination/ListCustomizationPermissionsPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer/dist-types/pagination/ListCustomizationVersionsPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer/dist-types/pagination/ListCustomizationsPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer/dist-types/pagination/ListProfilesPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer/dist-types/pagination/index.d.ts +5 -0
- package/node_modules/@amzn/codewhisperer/dist-types/protocols/Aws_restJson1.d.ts +173 -0
- package/node_modules/@amzn/codewhisperer/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/node_modules/@amzn/codewhisperer/dist-types/runtimeConfig.d.ts +46 -0
- package/node_modules/@amzn/codewhisperer/dist-types/runtimeConfig.native.d.ts +45 -0
- package/node_modules/@amzn/codewhisperer/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/node_modules/@amzn/codewhisperer/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/README.md +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-cjs/index.js +294 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-es/auth.js +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-es/dns.js +5 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-es/identity/index.js +5 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-es/index.js +33 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/auth.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +50 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/dns.d.ts +85 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +8 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +59 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/http.d.ts +33 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +47 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +18 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/index.d.ts +33 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/logger.d.ts +22 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +13 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/request.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/response.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/serde.d.ts +24 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/token.d.ts +17 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +5 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +2 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +13 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +19 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +9 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +24 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +5 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +54 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +17 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +2 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +25 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +5 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +33 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +15 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +47 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +12 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +16 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +15 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +14 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/@aws-sdk/types/package.json +56 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/CHANGELOG.md +274 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/LICENSE.md +9 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/README.md +466 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/bin/uuid +2 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/index.js +79 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/md5.js +223 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/native.js +11 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/nil.js +8 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/parse.js +45 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/regex.js +8 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/rng.js +25 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/sha1.js +104 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/stringify.js +44 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/v1.js +107 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/v3.js +16 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/v35.js +80 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/v4.js +43 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/v5.js +16 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/validate.js +17 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/commonjs-browser/version.js +21 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/native.js +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/rng.js +18 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/stringify.js +33 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/v35.js +66 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/v4.js +29 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/native.js +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/stringify.js +33 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/v35.js +66 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/v4.js +29 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/index.js +79 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/md5-browser.js +223 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/md5.js +23 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/native-browser.js +11 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/native.js +15 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/nil.js +8 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/parse.js +45 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/regex.js +8 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/rng-browser.js +25 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/rng.js +24 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/sha1.js +23 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/stringify.js +44 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/v1.js +107 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/v3.js +16 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/v35.js +80 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/v4.js +43 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/v5.js +16 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/validate.js +17 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/dist/version.js +21 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/package.json +135 -0
- package/node_modules/@amzn/codewhisperer/node_modules/uuid/wrapper.mjs +10 -0
- package/node_modules/@amzn/codewhisperer/package.json +85 -0
- package/node_modules/@amzn/codewhisperer-runtime/LICENSE +201 -0
- package/node_modules/@amzn/codewhisperer-runtime/README.md +1032 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/CodeWhispererRuntime.js +89 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/CodeWhispererRuntimeClient.js +47 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateArtifactUploadUrlCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateSubscriptionTokenCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateTaskAssistConversationCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateUploadUrlCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateUserMemoryEntryCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/CreateWorkspaceCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/DeleteTaskAssistConversationCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/DeleteUserMemoryEntryCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/DeleteWorkspaceCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GenerateCompletionsCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetCodeAnalysisCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetCodeFixJobCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetProfileCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetRetrievalsCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetTaskAssistCodeGenerationCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetTestGenerationCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetTransformationCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetTransformationPlanCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/GetUsageLimitsCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListAvailableCustomizationsCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListAvailableModelsCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListAvailableProfilesCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListAvailableSubscriptionsCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListCodeAnalysisFindingsCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListEventsCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListFeatureEvaluationsCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListUserMemoryEntriesCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ListWorkspaceMetadataCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/PushTelemetryEventCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/ResumeTransformationCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/SendTelemetryEventCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/SetUserPreferenceCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StartCodeAnalysisCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StartCodeFixJobCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StartTaskAssistCodeGenerationCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StartTestGenerationCommand.js +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StartTransformationCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/StopTransformationCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/UpdateUsageLimitsCommand.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/commands/index.js +42 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/endpoints.js +211 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/extensionConfiguration.js +2 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/index.js +11 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/models/CodeWhispererRuntimeServiceException.js +12 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/models/index.js +5 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/models/models_0.js +1519 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/models/models_1.js +52 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/GenerateCompletionsPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/Interfaces.js +2 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListAvailableCustomizationsPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListAvailableModelsPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListAvailableProfilesPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListCodeAnalysisFindingsPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListEventsPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListUserMemoryEntriesPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/ListWorkspaceMetadataPaginator.js +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/pagination/index.js +12 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/protocols/Aws_restJson1.js +2089 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/runtimeConfig.browser.js +37 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/runtimeConfig.js +51 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/runtimeConfig.shared.js +32 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-cjs/runtimeExtensions.js +25 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/CodeWhispererRuntime.js +85 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/CodeWhispererRuntimeClient.js +43 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateArtifactUploadUrlCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateSubscriptionTokenCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateTaskAssistConversationCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateUploadUrlCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateUserMemoryEntryCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/CreateWorkspaceCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/DeleteTaskAssistConversationCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/DeleteUserMemoryEntryCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/DeleteWorkspaceCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GenerateCompletionsCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetCodeAnalysisCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetCodeFixJobCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetProfileCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetRetrievalsCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetTaskAssistCodeGenerationCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetTestGenerationCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetTransformationCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetTransformationPlanCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/GetUsageLimitsCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListAvailableCustomizationsCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListAvailableModelsCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListAvailableProfilesCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListAvailableSubscriptionsCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListCodeAnalysisFindingsCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListEventsCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListFeatureEvaluationsCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListUserMemoryEntriesCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ListWorkspaceMetadataCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/PushTelemetryEventCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/ResumeTransformationCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/SendTelemetryEventCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/SetUserPreferenceCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StartCodeAnalysisCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StartCodeFixJobCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StartTaskAssistCodeGenerationCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StartTestGenerationCommand.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StartTransformationCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/StopTransformationCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/UpdateUsageLimitsCommand.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/commands/index.js +39 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/endpoints.js +207 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/index.js +6 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/models/CodeWhispererRuntimeServiceException.js +8 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/models/index.js +2 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/models/models_0.js +1429 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/models/models_1.js +43 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/GenerateCompletionsPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListAvailableCustomizationsPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListAvailableModelsPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListAvailableProfilesPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListCodeAnalysisFindingsPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListEventsPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListUserMemoryEntriesPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/ListWorkspaceMetadataPaginator.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/pagination/index.js +9 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/protocols/Aws_restJson1.js +2007 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/runtimeConfig.browser.js +32 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/runtimeConfig.js +46 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/runtimeConfig.shared.js +28 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-es/runtimeExtensions.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/CodeWhispererRuntime.d.ts +293 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/CodeWhispererRuntimeClient.d.ts +222 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/auth/httpAuthSchemeProvider.d.ts +67 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateArtifactUploadUrlCommand.d.ts +117 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateSubscriptionTokenCommand.d.ts +91 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateTaskAssistConversationCommand.d.ts +86 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateUploadUrlCommand.d.ts +126 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateUserMemoryEntryCommand.d.ts +106 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/CreateWorkspaceCommand.d.ts +95 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/DeleteTaskAssistConversationCommand.d.ts +87 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/DeleteUserMemoryEntryCommand.d.ts +85 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/DeleteWorkspaceCommand.d.ts +82 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GenerateCompletionsCommand.d.ts +236 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetCodeAnalysisCommand.d.ts +88 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetCodeFixJobCommand.d.ts +102 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetProfileCommand.d.ts +121 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetRetrievalsCommand.d.ts +100 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetTaskAssistCodeGenerationCommand.d.ts +98 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetTestGenerationCommand.d.ts +126 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetTransformationCommand.d.ts +143 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetTransformationPlanCommand.d.ts +113 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/GetUsageLimitsCommand.d.ts +163 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListAvailableCustomizationsCommand.d.ts +93 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListAvailableModelsCommand.d.ts +115 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListAvailableProfilesCommand.d.ts +153 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListAvailableSubscriptionsCommand.d.ts +101 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListCodeAnalysisFindingsCommand.d.ts +90 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListEventsCommand.d.ts +95 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListFeatureEvaluationsCommand.d.ts +104 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListUserMemoryEntriesCommand.d.ts +105 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ListWorkspaceMetadataCommand.d.ts +94 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/PushTelemetryEventCommand.d.ts +83 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/ResumeTransformationCommand.d.ts +88 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/SendTelemetryEventCommand.d.ts +403 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/SetUserPreferenceCommand.d.ts +84 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StartCodeAnalysisCommand.d.ts +105 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StartCodeFixJobCommand.d.ts +101 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StartTaskAssistCodeGenerationCommand.d.ts +577 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StartTestGenerationCommand.d.ts +151 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StartTransformationCommand.d.ts +142 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/StopTransformationCommand.d.ts +87 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/UpdateUsageLimitsCommand.d.ts +94 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/commands/index.d.ts +39 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/endpoints.d.ts +2 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/index.d.ts +8 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/models/CodeWhispererRuntimeServiceException.d.ts +14 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/models/index.d.ts +2 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/models/models_0.d.ts +5940 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/models/models_1.d.ts +136 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/GenerateCompletionsPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListAvailableCustomizationsPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListAvailableModelsPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListAvailableProfilesPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListCodeAnalysisFindingsPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListEventsPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListUserMemoryEntriesPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/ListWorkspaceMetadataPaginator.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/pagination/index.d.ts +9 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/protocols/Aws_restJson1.d.ts +353 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/runtimeConfig.browser.d.ts +44 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/runtimeConfig.d.ts +46 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/runtimeConfig.native.d.ts +43 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/runtimeConfig.shared.d.ts +25 -0
- package/node_modules/@amzn/codewhisperer-runtime/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/README.md +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-cjs/index.js +294 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/auth.js +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/dns.js +5 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/identity/index.js +5 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/index.js +33 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/auth.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +50 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/dns.d.ts +85 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +8 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +59 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/http.d.ts +33 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +47 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/index.d.ts +33 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/logger.d.ts +22 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +13 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/request.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/response.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/serde.d.ts +24 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/token.d.ts +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +5 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +2 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +13 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +19 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +9 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +24 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +5 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +54 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +2 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +25 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +5 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +33 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +15 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +47 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +12 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +16 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +6 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +15 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +14 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/@aws-sdk/types/package.json +56 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/CHANGELOG.md +274 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/LICENSE.md +9 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/README.md +466 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/bin/uuid +2 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/index.js +79 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/md5.js +223 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/native.js +11 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/nil.js +8 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/parse.js +45 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/regex.js +8 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/rng.js +25 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/sha1.js +104 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/stringify.js +44 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/v1.js +107 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/v3.js +16 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/v35.js +80 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/v4.js +43 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/v5.js +16 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/validate.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/commonjs-browser/version.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/native.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/rng.js +18 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/stringify.js +33 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/v35.js +66 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/v4.js +29 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/native.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/stringify.js +33 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/v35.js +66 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/v4.js +29 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/index.js +79 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/md5-browser.js +223 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/md5.js +23 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/native-browser.js +11 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/native.js +15 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/nil.js +8 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/parse.js +45 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/regex.js +8 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/rng-browser.js +25 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/rng.js +24 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/sha1.js +23 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/stringify.js +44 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/v1.js +107 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/v3.js +16 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/v35.js +80 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/v4.js +43 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/v5.js +16 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/validate.js +17 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/dist/version.js +21 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/package.json +135 -0
- package/node_modules/@amzn/codewhisperer-runtime/node_modules/uuid/wrapper.mjs +10 -0
- package/node_modules/@amzn/codewhisperer-runtime/package.json +85 -0
- package/node_modules/@smithy/abort-controller/dist-cjs/index.js +82 -0
- package/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +13 -0
- package/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +18 -0
- package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +13 -0
- package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +18 -0
- package/node_modules/@smithy/abort-controller/package.json +62 -0
- package/node_modules/@smithy/node-http-handler/README.md +4 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +687 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +184 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +86 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +159 -0
- package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +81 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +21 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +8 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +6 -0
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +14 -0
- package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +52 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +37 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +22 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +57 -0
- package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +14 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +7 -0
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +14 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +36 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +22 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +57 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/package.json +67 -0
- package/out/client/sigv4/codewhisperer.d.ts +4 -4
- package/out/client/sigv4/codewhisperer.js +39 -8
- package/out/client/sigv4/codewhisperer.js.map +1 -1
- package/out/client/token/codewhisperer.d.ts +5 -14
- package/out/client/token/codewhisperer.js +33 -17
- package/out/client/token/codewhisperer.js.map +1 -1
- package/out/language-server/agenticChat/agenticChatController.d.ts +1 -1
- package/out/language-server/agenticChat/agenticChatController.js +17 -59
- package/out/language-server/agenticChat/agenticChatController.js.map +1 -1
- package/out/language-server/agenticChat/constants/constants.d.ts +0 -1
- package/out/language-server/agenticChat/constants/constants.js +1 -4
- package/out/language-server/agenticChat/constants/constants.js.map +1 -1
- package/out/language-server/agenticChat/context/agenticChatTriggerContext.d.ts +1 -2
- package/out/language-server/agenticChat/context/agenticChatTriggerContext.js +1 -3
- package/out/language-server/agenticChat/context/agenticChatTriggerContext.js.map +1 -1
- package/out/language-server/agenticChat/tools/qCodeAnalysis/codeReview.js +3 -0
- package/out/language-server/agenticChat/tools/qCodeAnalysis/codeReview.js.map +1 -1
- package/out/language-server/agenticChat/tools/qCodeAnalysis/codeReviewTypes.d.ts +1 -1
- package/out/language-server/chat/chatController.js +8 -7
- package/out/language-server/chat/chatController.js.map +1 -1
- package/out/language-server/chat/chatSessionService.d.ts +0 -1
- package/out/language-server/chat/chatSessionService.js +0 -1
- package/out/language-server/chat/chatSessionService.js.map +1 -1
- package/out/language-server/chat/telemetry/chatTelemetryController.d.ts +0 -1
- package/out/language-server/chat/telemetry/chatTelemetryController.js +0 -11
- package/out/language-server/chat/telemetry/chatTelemetryController.js.map +1 -1
- package/out/language-server/configuration/qConfigurationServer.d.ts +3 -3
- package/out/language-server/configuration/qConfigurationServer.js +4 -4
- package/out/language-server/configuration/qConfigurationServer.js.map +1 -1
- package/out/language-server/inline-completion/handler/editCompletionHandler.js +3 -3
- package/out/language-server/inline-completion/handler/editCompletionHandler.js.map +1 -1
- package/out/language-server/inline-completion/handler/inlineCompletionHandler.js +7 -5
- package/out/language-server/inline-completion/handler/inlineCompletionHandler.js.map +1 -1
- package/out/language-server/inline-completion/handler/sessionResultsHandler.js +8 -3
- package/out/language-server/inline-completion/handler/sessionResultsHandler.js.map +1 -1
- package/out/language-server/inline-completion/telemetry/telemetry.d.ts +5 -4
- package/out/language-server/inline-completion/telemetry/telemetry.js +3 -3
- package/out/language-server/inline-completion/telemetry/telemetry.js.map +1 -1
- package/out/language-server/inline-completion/utils/mergeRightUtils.js +1 -1
- package/out/language-server/inline-completion/utils/mergeRightUtils.js.map +1 -1
- package/out/language-server/netTransform/converter.d.ts +3 -6
- package/out/language-server/netTransform/converter.js +6 -15
- package/out/language-server/netTransform/converter.js.map +1 -1
- package/out/language-server/netTransform/metrics.js.map +1 -1
- package/out/language-server/netTransform/models.d.ts +3 -3
- package/out/language-server/netTransform/transformHandler.d.ts +4 -4
- package/out/language-server/netTransform/transformHandler.js +3 -4
- package/out/language-server/netTransform/transformHandler.js.map +1 -1
- package/out/language-server/netTransform/validation.d.ts +1 -1
- package/out/language-server/netTransform/validation.js.map +1 -1
- package/out/language-server/securityScan/codeWhispererSecurityScanServer.js.map +1 -1
- package/out/language-server/securityScan/securityScanHandler.d.ts +6 -6
- package/out/language-server/securityScan/securityScanHandler.js +8 -5
- package/out/language-server/securityScan/securityScanHandler.js.map +1 -1
- package/out/language-server/securityScan/types.d.ts +3 -0
- package/out/language-server/workspaceContext/util.d.ts +1 -1
- package/out/language-server/workspaceContext/util.js +1 -1
- package/out/language-server/workspaceContext/util.js.map +1 -1
- package/out/language-server/workspaceContext/workspaceFolderManager.d.ts +1 -1
- package/out/language-server/workspaceContext/workspaceFolderManager.js +18 -11
- package/out/language-server/workspaceContext/workspaceFolderManager.js.map +1 -1
- package/out/shared/amazonQServiceManager/AmazonQTokenServiceManager.js +1 -4
- package/out/shared/amazonQServiceManager/AmazonQTokenServiceManager.js.map +1 -1
- package/out/shared/amazonQServiceManager/BaseAmazonQServiceManager.js.map +1 -1
- package/out/shared/amazonQServiceManager/qDeveloperProfiles.d.ts +2 -2
- package/out/shared/amazonQServiceManager/qDeveloperProfiles.js +2 -2
- package/out/shared/amazonQServiceManager/qDeveloperProfiles.js.map +1 -1
- package/out/shared/codeWhispererService.d.ts +37 -51
- package/out/shared/codeWhispererService.js +62 -131
- package/out/shared/codeWhispererService.js.map +1 -1
- package/out/shared/streamingClientService.js.map +1 -1
- package/out/shared/telemetry/telemetryService.d.ts +1 -1
- package/out/shared/telemetry/telemetryService.js +12 -7
- package/out/shared/telemetry/telemetryService.js.map +1 -1
- package/out/shared/telemetry/types.d.ts +4 -12
- package/out/shared/telemetry/types.js +0 -1
- package/out/shared/telemetry/types.js.map +1 -1
- package/out/shared/telemetryUtils.d.ts +2 -2
- package/out/shared/telemetryUtils.js +11 -10
- package/out/shared/telemetryUtils.js.map +1 -1
- package/out/shared/testUtils.d.ts +7 -7
- package/out/shared/utils.d.ts +6 -3
- package/out/shared/utils.js +10 -30
- package/out/shared/utils.js.map +1 -1
- package/package.json +7 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/dist-cjs/index.js +0 -84
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +0 -16
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +0 -21
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +0 -16
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +0 -21
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/package.json +0 -62
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/README.md +0 -9
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-cjs/index.js +0 -806
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-cjs/timing.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +0 -209
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +0 -86
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +0 -167
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +0 -88
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +0 -36
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +0 -22
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +0 -24
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +0 -41
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/timing.js +0 -4
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +0 -56
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +0 -45
- 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
- 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
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +0 -62
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +0 -2
- 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
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +0 -2
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +0 -6
- 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
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +0 -8
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +0 -8
- 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
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +0 -11
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/package.json +0 -67
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/LICENSE +0 -201
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/README.md +0 -115
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/abort-handler.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/abort.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/auth.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/index.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/checksum.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/client.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/command.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/connection/config.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/connection/index.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/connection/manager.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/connection/pool.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/crypto.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/encode.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoint.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/index.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/eventStream.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/extensions/index.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/extensions/retry.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/feature-ids.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/http.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/identity/identity.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/identity/index.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/index.js +0 -144
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/logger.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/middleware.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/pagination.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/profile.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/response.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/retry.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/schema/schema.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/schema/sentinels.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/schema/traits.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/serde.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/shapes.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/signature.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/stream.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +0 -1
- 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
- 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
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transfer.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/exact.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/mutable.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/uri.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/util.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/waiter.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/auth.js +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/index.js +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/connection/index.js +0 -3
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoint.js +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoints/index.js +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/extensions/checksum.js +0 -38
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +0 -7
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/extensions/index.js +0 -3
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/http.js +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/identity/index.js +0 -4
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/index.js +0 -40
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/middleware.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/profile.js +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transfer.js +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/mutable.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/no-undefined.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/type-transform.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/abort-handler.d.ts +0 -7
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/abort.d.ts +0 -50
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +0 -7
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +0 -49
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +0 -20
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +0 -41
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/auth.d.ts +0 -57
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/index.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +0 -40
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/checksum.d.ts +0 -63
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/client.d.ts +0 -57
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/command.d.ts +0 -28
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/connection/config.d.ts +0 -10
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/connection/index.d.ts +0 -3
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/connection/manager.d.ts +0 -34
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/connection/pool.d.ts +0 -32
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/crypto.d.ts +0 -60
- 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
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/encode.d.ts +0 -31
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoint.d.ts +0 -77
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +0 -27
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +0 -10
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +0 -28
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +0 -16
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +0 -55
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/eventStream.d.ts +0 -137
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +0 -58
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +0 -33
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -9
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/extensions/index.d.ts +0 -4
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +0 -18
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +0 -35
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/feature-ids.d.ts +0 -16
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +0 -121
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/http.d.ts +0 -112
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +0 -31
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/identity/identity.d.ts +0 -15
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/identity/index.d.ts +0 -4
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/index.d.ts +0 -40
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/logger.d.ts +0 -13
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/middleware.d.ts +0 -534
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/pagination.d.ts +0 -33
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/profile.d.ts +0 -30
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/response.d.ts +0 -40
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/retry.d.ts +0 -133
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/schema/schema.d.ts +0 -261
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +0 -65
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/schema/traits.d.ts +0 -46
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/serde.d.ts +0 -114
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/shapes.d.ts +0 -82
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/signature.d.ts +0 -155
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/stream.d.ts +0 -22
- 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
- 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
- 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
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transfer.d.ts +0 -41
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +0 -26
- 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
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/exact.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +0 -68
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +0 -34
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +0 -7
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +0 -50
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +0 -7
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +0 -49
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +0 -20
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +0 -41
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +0 -57
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +0 -6
- 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
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +0 -63
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +0 -57
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +0 -28
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +0 -10
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +0 -3
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +0 -34
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +0 -32
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +0 -60
- 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
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +0 -31
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +0 -77
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +0 -27
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +0 -10
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +0 -28
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +0 -16
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +0 -55
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +0 -137
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +0 -58
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +0 -33
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +0 -9
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +0 -4
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +0 -18
- 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
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +0 -16
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +0 -121
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +0 -112
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +0 -31
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +0 -15
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +0 -4
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +0 -40
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +0 -13
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +0 -534
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +0 -33
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +0 -30
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +0 -40
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +0 -133
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +0 -276
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +0 -65
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +0 -46
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +0 -114
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +0 -82
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +0 -155
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +0 -22
- 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
- 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
- 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
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +0 -41
- 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
- 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
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +0 -88
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +0 -41
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +0 -17
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +0 -192
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +0 -35
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/uri.d.ts +0 -17
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/util.d.ts +0 -176
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/waiter.d.ts +0 -35
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/package.json +0 -60
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/README.md +0 -53
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +0 -217
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/constants.js +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +0 -88
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +0 -11
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/index.js +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +0 -18
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/package.json +0 -67
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/README.md +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-cjs/AbortController.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-cjs/AbortSignal.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-cjs/index.js +0 -84
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-es/AbortController.js +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +0 -20
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-es/index.js +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +0 -21
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/index.d.ts +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +0 -21
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/package.json +0 -62
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/LICENSE +0 -201
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/README.md +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/constants.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/get-transformed-headers.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/index.js +0 -806
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/node-http-handler.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-manager.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-pool.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-handler.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/readable.mock.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/server.mock.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/set-connection-timeout.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-keep-alive.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-timeout.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/collector.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/index.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/readable.mock.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/timing.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/write-request-body.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/constants.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/index.js +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +0 -209
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +0 -86
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +0 -32
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +0 -167
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +0 -19
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +0 -88
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +0 -36
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +0 -22
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +0 -24
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +0 -11
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +0 -19
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/timing.js +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +0 -56
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +0 -45
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +0 -24
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +0 -62
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +0 -45
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +0 -24
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +0 -62
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +0 -11
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +0 -11
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/package.json +0 -67
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/LICENSE +0 -201
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/README.md +0 -115
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/abort-handler.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/abort.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/auth.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/index.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/checksum.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/client.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/command.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/connection/config.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/connection/index.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/connection/manager.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/connection/pool.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/crypto.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/encode.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoint.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/index.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/eventStream.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/index.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/retry.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/feature-ids.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/http.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/identity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/index.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/index.js +0 -144
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/logger.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/middleware.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/pagination.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/profile.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/response.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/retry.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/schema/schema.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/schema/sentinels.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/schema/traits.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/serde.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/shapes.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/signature.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/stream.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-input-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-output-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transfer.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/exact.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/mutable.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/uri.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/util.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/waiter.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/abort-handler.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/auth.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/index.js +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/connection/config.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/connection/index.js +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/connection/manager.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/connection/pool.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoint.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/index.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/shared.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/checksum.js +0 -38
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/index.js +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/http.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/identity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/index.js +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/index.js +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/middleware.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/profile.js +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/retry.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/schema/schema.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/schema/sentinels.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/schema/traits.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transfer.js +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/exact.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/mutable.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/no-undefined.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/type-transform.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/abort-handler.d.ts +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/abort.d.ts +0 -50
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +0 -49
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +0 -20
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/auth.d.ts +0 -57
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/index.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/checksum.d.ts +0 -63
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/client.d.ts +0 -57
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/command.d.ts +0 -28
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/connection/config.d.ts +0 -10
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/connection/index.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/connection/manager.d.ts +0 -34
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/connection/pool.d.ts +0 -32
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/crypto.d.ts +0 -60
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +0 -25
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/encode.d.ts +0 -31
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoint.d.ts +0 -77
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +0 -27
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +0 -10
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +0 -28
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +0 -55
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/eventStream.d.ts +0 -137
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +0 -58
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +0 -33
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/index.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +0 -18
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +0 -35
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/feature-ids.d.ts +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +0 -121
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/http.d.ts +0 -112
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +0 -31
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/identity.d.ts +0 -15
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/index.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/index.d.ts +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/logger.d.ts +0 -13
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/middleware.d.ts +0 -534
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/pagination.d.ts +0 -33
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/profile.d.ts +0 -30
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/response.d.ts +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/retry.d.ts +0 -133
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/schema/schema.d.ts +0 -261
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +0 -65
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/schema/traits.d.ts +0 -46
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/serde.d.ts +0 -114
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/shapes.d.ts +0 -82
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/signature.d.ts +0 -155
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/stream.d.ts +0 -22
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +0 -32
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transfer.d.ts +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +0 -26
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +0 -77
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/exact.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +0 -68
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +0 -34
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +0 -50
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +0 -49
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +0 -20
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +0 -57
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +0 -63
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +0 -57
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +0 -28
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +0 -10
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +0 -34
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +0 -32
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +0 -60
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +0 -31
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +0 -77
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +0 -27
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +0 -10
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +0 -28
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +0 -55
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +0 -137
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +0 -58
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +0 -33
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +0 -18
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +0 -35
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +0 -121
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +0 -112
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +0 -31
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +0 -15
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +0 -13
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +0 -534
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +0 -33
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +0 -30
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +0 -133
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +0 -276
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +0 -65
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +0 -46
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +0 -114
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +0 -82
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +0 -155
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +0 -22
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +0 -32
- 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
- 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
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +0 -26
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +0 -81
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +0 -88
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +0 -17
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +0 -192
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +0 -35
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/uri.d.ts +0 -17
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/util.d.ts +0 -176
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/waiter.d.ts +0 -35
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/package.json +0 -60
- package/out/client/sigv4/service.json +0 -2145
- package/out/client/token/bearer-token-service.json +0 -6690
- /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
- /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
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler → codewhisperer/node_modules/@aws-sdk/types}/LICENSE +0 -0
- /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
- /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
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/checksum.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/client.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/command.js +0 -0
- /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
- /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
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/crypto.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/encode.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/eventStream.js +0 -0
- /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
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/feature-ids.js +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/logger.js +0 -0
- /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
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/pagination.js +0 -0
- /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
- /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
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/response.js +0 -0
- /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
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/serde.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/shapes.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/signature.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/stream.js +0 -0
- /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
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/uri.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/util.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/waiter.js +0 -0
- /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
- /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
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller → codewhisperer-runtime/node_modules/@aws-sdk/types}/LICENSE +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/abort.js +0 -0
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /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
- /package/node_modules/{@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers → @smithy/abort-controller}/LICENSE +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/README.md +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-cjs/AbortController.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-cjs/AbortSignal.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-es/AbortController.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-es/AbortSignal.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-es/index.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-types/index.d.ts +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-types/ts3.4/index.d.ts +0 -0
- /package/node_modules/{@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller → @smithy/node-http-handler}/LICENSE +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/constants.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/get-transformed-headers.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/node-http-handler.js +0 -0
- /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
- /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
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/node-http2-handler.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/readable.mock.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/server.mock.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/set-connection-timeout.js +0 -0
- /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
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/set-socket-timeout.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/stream-collector/collector.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/stream-collector/index.js +0 -0
- /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
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/write-request-body.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/constants.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/get-transformed-headers.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/index.js +0 -0
- /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
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/readable.mock.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/stream-collector/collector.js +0 -0
- /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
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/constants.d.ts +0 -0
- /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
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/index.d.ts +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/server.mock.d.ts +0 -0
- /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
- /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
- /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
- /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
|
@@ -0,0 +1,1429 @@
|
|
|
1
|
+
import { CodeWhispererRuntimeServiceException as __BaseException } from "./CodeWhispererRuntimeServiceException";
|
|
2
|
+
import { SENSITIVE_STRING, } from "@smithy/smithy-client";
|
|
3
|
+
export const AccessDeniedExceptionReason = {
|
|
4
|
+
FEATURE_NOT_SUPPORTED: "FEATURE_NOT_SUPPORTED",
|
|
5
|
+
TEMPORARILY_SUSPENDED: "TEMPORARILY_SUSPENDED",
|
|
6
|
+
UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS: "UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS",
|
|
7
|
+
UNAUTHORIZED_WORKSPACE_CONTEXT_FEATURE_ACCESS: "UNAUTHORIZED_WORKSPACE_CONTEXT_FEATURE_ACCESS",
|
|
8
|
+
};
|
|
9
|
+
export class AccessDeniedException extends __BaseException {
|
|
10
|
+
name = "AccessDeniedException";
|
|
11
|
+
$fault = "client";
|
|
12
|
+
reason;
|
|
13
|
+
constructor(opts) {
|
|
14
|
+
super({
|
|
15
|
+
name: "AccessDeniedException",
|
|
16
|
+
$fault: "client",
|
|
17
|
+
...opts
|
|
18
|
+
});
|
|
19
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
20
|
+
this.reason = opts.reason;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
export const FunctionalityName = {
|
|
24
|
+
Analysis: "ANALYSIS",
|
|
25
|
+
ChatCustomization: "CHAT_CUSTOMIZATION",
|
|
26
|
+
Completions: "COMPLETIONS",
|
|
27
|
+
Conversations: "CONVERSATIONS",
|
|
28
|
+
FeatureDevelopment: "FEATURE_DEVELOPMENT",
|
|
29
|
+
TaskAssist: "TASK_ASSIST",
|
|
30
|
+
Transformations: "TRANSFORMATIONS",
|
|
31
|
+
TransformationsWebApp: "TRANSFORMATIONS_WEBAPP",
|
|
32
|
+
};
|
|
33
|
+
export const AdditionalContentEntryFilterSensitiveLog = (obj) => ({
|
|
34
|
+
...obj,
|
|
35
|
+
...(obj.name && { name: SENSITIVE_STRING
|
|
36
|
+
}),
|
|
37
|
+
...(obj.description && { description: SENSITIVE_STRING
|
|
38
|
+
}),
|
|
39
|
+
...(obj.innerContext && { innerContext: SENSITIVE_STRING
|
|
40
|
+
}),
|
|
41
|
+
});
|
|
42
|
+
export const AgenticChatEventStatus = {
|
|
43
|
+
Cancelled: "CANCELLED",
|
|
44
|
+
Failed: "FAILED",
|
|
45
|
+
Succeeded: "SUCCEEDED",
|
|
46
|
+
};
|
|
47
|
+
export const AgentTaskType = {
|
|
48
|
+
SPEC_TASK: "spectask",
|
|
49
|
+
VIBE: "vibe",
|
|
50
|
+
};
|
|
51
|
+
export const InternalServerExceptionReason = {
|
|
52
|
+
MODEL_TEMPORARILY_UNAVAILABLE: "MODEL_TEMPORARILY_UNAVAILABLE",
|
|
53
|
+
};
|
|
54
|
+
export class InternalServerException extends __BaseException {
|
|
55
|
+
name = "InternalServerException";
|
|
56
|
+
$fault = "server";
|
|
57
|
+
$retryable = {};
|
|
58
|
+
reason;
|
|
59
|
+
constructor(opts) {
|
|
60
|
+
super({
|
|
61
|
+
name: "InternalServerException",
|
|
62
|
+
$fault: "server",
|
|
63
|
+
...opts
|
|
64
|
+
});
|
|
65
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
66
|
+
this.reason = opts.reason;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
70
|
+
name = "ResourceNotFoundException";
|
|
71
|
+
$fault = "client";
|
|
72
|
+
constructor(opts) {
|
|
73
|
+
super({
|
|
74
|
+
name: "ResourceNotFoundException",
|
|
75
|
+
$fault: "client",
|
|
76
|
+
...opts
|
|
77
|
+
});
|
|
78
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
export const ThrottlingExceptionReason = {
|
|
82
|
+
DAILY_REQUEST_COUNT: "DAILY_REQUEST_COUNT",
|
|
83
|
+
INSUFFICIENT_MODEL_CAPACITY: "INSUFFICIENT_MODEL_CAPACITY",
|
|
84
|
+
MONTHLY_REQUEST_COUNT: "MONTHLY_REQUEST_COUNT",
|
|
85
|
+
};
|
|
86
|
+
export class ThrottlingException extends __BaseException {
|
|
87
|
+
name = "ThrottlingException";
|
|
88
|
+
$fault = "client";
|
|
89
|
+
$retryable = {
|
|
90
|
+
throttling: true,
|
|
91
|
+
};
|
|
92
|
+
reason;
|
|
93
|
+
constructor(opts) {
|
|
94
|
+
super({
|
|
95
|
+
name: "ThrottlingException",
|
|
96
|
+
$fault: "client",
|
|
97
|
+
...opts
|
|
98
|
+
});
|
|
99
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
100
|
+
this.reason = opts.reason;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
export const ValidationExceptionReason = {
|
|
104
|
+
CONTENT_LENGTH_EXCEEDS_THRESHOLD: "CONTENT_LENGTH_EXCEEDS_THRESHOLD",
|
|
105
|
+
INVALID_CONVERSATION_ID: "INVALID_CONVERSATION_ID",
|
|
106
|
+
INVALID_KMS_GRANT: "INVALID_KMS_GRANT",
|
|
107
|
+
};
|
|
108
|
+
export class ValidationException extends __BaseException {
|
|
109
|
+
name = "ValidationException";
|
|
110
|
+
$fault = "client";
|
|
111
|
+
reason;
|
|
112
|
+
constructor(opts) {
|
|
113
|
+
super({
|
|
114
|
+
name: "ValidationException",
|
|
115
|
+
$fault: "client",
|
|
116
|
+
...opts
|
|
117
|
+
});
|
|
118
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
119
|
+
this.reason = opts.reason;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
export const AppStudioStateFilterSensitiveLog = (obj) => ({
|
|
123
|
+
...obj,
|
|
124
|
+
...(obj.namespace && { namespace: SENSITIVE_STRING
|
|
125
|
+
}),
|
|
126
|
+
...(obj.propertyName && { propertyName: SENSITIVE_STRING
|
|
127
|
+
}),
|
|
128
|
+
...(obj.propertyValue && { propertyValue: SENSITIVE_STRING
|
|
129
|
+
}),
|
|
130
|
+
...(obj.propertyContext && { propertyContext: SENSITIVE_STRING
|
|
131
|
+
}),
|
|
132
|
+
});
|
|
133
|
+
export const ArtifactType = {
|
|
134
|
+
BUILT_JARS: "BuiltJars",
|
|
135
|
+
SOURCE_CODE: "SourceCode",
|
|
136
|
+
};
|
|
137
|
+
export const CachePointType = {
|
|
138
|
+
DEFAULT: "default",
|
|
139
|
+
};
|
|
140
|
+
export const UserIntent = {
|
|
141
|
+
APPLY_COMMON_BEST_PRACTICES: "APPLY_COMMON_BEST_PRACTICES",
|
|
142
|
+
CITE_SOURCES: "CITE_SOURCES",
|
|
143
|
+
CODE_GENERATION: "CODE_GENERATION",
|
|
144
|
+
EXPLAIN_CODE_SELECTION: "EXPLAIN_CODE_SELECTION",
|
|
145
|
+
EXPLAIN_LINE_BY_LINE: "EXPLAIN_LINE_BY_LINE",
|
|
146
|
+
GENERATE_CLOUDFORMATION_TEMPLATE: "GENERATE_CLOUDFORMATION_TEMPLATE",
|
|
147
|
+
GENERATE_UNIT_TESTS: "GENERATE_UNIT_TESTS",
|
|
148
|
+
IMPROVE_CODE: "IMPROVE_CODE",
|
|
149
|
+
SHOW_EXAMPLES: "SHOW_EXAMPLES",
|
|
150
|
+
SUGGEST_ALTERNATE_IMPLEMENTATION: "SUGGEST_ALTERNATE_IMPLEMENTATION",
|
|
151
|
+
};
|
|
152
|
+
export const FollowupPromptFilterSensitiveLog = (obj) => ({
|
|
153
|
+
...obj,
|
|
154
|
+
...(obj.content && { content: SENSITIVE_STRING
|
|
155
|
+
}),
|
|
156
|
+
});
|
|
157
|
+
export const ReasoningTextFilterSensitiveLog = (obj) => ({
|
|
158
|
+
...obj,
|
|
159
|
+
...(obj.text && { text: SENSITIVE_STRING
|
|
160
|
+
}),
|
|
161
|
+
...(obj.signature && { signature: SENSITIVE_STRING
|
|
162
|
+
}),
|
|
163
|
+
});
|
|
164
|
+
export var ReasoningContent;
|
|
165
|
+
(function (ReasoningContent) {
|
|
166
|
+
ReasoningContent.visit = (value, visitor) => {
|
|
167
|
+
if (value.reasoningText !== undefined)
|
|
168
|
+
return visitor.reasoningText(value.reasoningText);
|
|
169
|
+
if (value.redactedContent !== undefined)
|
|
170
|
+
return visitor.redactedContent(value.redactedContent);
|
|
171
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
172
|
+
};
|
|
173
|
+
})(ReasoningContent || (ReasoningContent = {}));
|
|
174
|
+
export const ReasoningContentFilterSensitiveLog = (obj) => {
|
|
175
|
+
if (obj.reasoningText !== undefined)
|
|
176
|
+
return { reasoningText: SENSITIVE_STRING
|
|
177
|
+
};
|
|
178
|
+
if (obj.redactedContent !== undefined)
|
|
179
|
+
return { redactedContent: obj.redactedContent
|
|
180
|
+
};
|
|
181
|
+
if (obj.$unknown !== undefined)
|
|
182
|
+
return { [obj.$unknown[0]]: 'UNKNOWN' };
|
|
183
|
+
};
|
|
184
|
+
export const SupplementaryWebLinkFilterSensitiveLog = (obj) => ({
|
|
185
|
+
...obj,
|
|
186
|
+
...(obj.url && { url: SENSITIVE_STRING
|
|
187
|
+
}),
|
|
188
|
+
...(obj.title && { title: SENSITIVE_STRING
|
|
189
|
+
}),
|
|
190
|
+
...(obj.snippet && { snippet: SENSITIVE_STRING
|
|
191
|
+
}),
|
|
192
|
+
});
|
|
193
|
+
export const ToolUseFilterSensitiveLog = (obj) => ({
|
|
194
|
+
...obj,
|
|
195
|
+
...(obj.name && { name: SENSITIVE_STRING
|
|
196
|
+
}),
|
|
197
|
+
...(obj.input && { input: SENSITIVE_STRING
|
|
198
|
+
}),
|
|
199
|
+
});
|
|
200
|
+
export const AssistantResponseMessageFilterSensitiveLog = (obj) => ({
|
|
201
|
+
...obj,
|
|
202
|
+
...(obj.content && { content: SENSITIVE_STRING
|
|
203
|
+
}),
|
|
204
|
+
...(obj.supplementaryWebLinks && { supplementaryWebLinks: obj.supplementaryWebLinks.map(item => SupplementaryWebLinkFilterSensitiveLog(item))
|
|
205
|
+
}),
|
|
206
|
+
...(obj.followupPrompt && { followupPrompt: FollowupPromptFilterSensitiveLog(obj.followupPrompt)
|
|
207
|
+
}),
|
|
208
|
+
...(obj.toolUses && { toolUses: obj.toolUses.map(item => ToolUseFilterSensitiveLog(item))
|
|
209
|
+
}),
|
|
210
|
+
...(obj.reasoningContent && { reasoningContent: SENSITIVE_STRING
|
|
211
|
+
}),
|
|
212
|
+
});
|
|
213
|
+
export const ConflictExceptionReason = {
|
|
214
|
+
CUSTOMER_KMS_KEY_DISABLED: "CUSTOMER_KMS_KEY_DISABLED",
|
|
215
|
+
CUSTOMER_KMS_KEY_INVALID_KEY_POLICY: "CUSTOMER_KMS_KEY_INVALID_KEY_POLICY",
|
|
216
|
+
MISMATCHED_KMS_KEY: "MISMATCHED_KMS_KEY",
|
|
217
|
+
};
|
|
218
|
+
export class ConflictException extends __BaseException {
|
|
219
|
+
name = "ConflictException";
|
|
220
|
+
$fault = "client";
|
|
221
|
+
reason;
|
|
222
|
+
constructor(opts) {
|
|
223
|
+
super({
|
|
224
|
+
name: "ConflictException",
|
|
225
|
+
$fault: "client",
|
|
226
|
+
...opts
|
|
227
|
+
});
|
|
228
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
229
|
+
this.reason = opts.reason;
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
export const OptInFeatureToggle = {
|
|
233
|
+
OFF: "OFF",
|
|
234
|
+
ON: "ON",
|
|
235
|
+
};
|
|
236
|
+
export const OverageStatus = {
|
|
237
|
+
DISABLED: "DISABLED",
|
|
238
|
+
ENABLED: "ENABLED",
|
|
239
|
+
};
|
|
240
|
+
export const RecommendationsWithReferencesPreference = {
|
|
241
|
+
ALLOW: "ALLOW",
|
|
242
|
+
BLOCK: "BLOCK",
|
|
243
|
+
};
|
|
244
|
+
export const ResourcePolicyEffect = {
|
|
245
|
+
ALLOW: "ALLOW",
|
|
246
|
+
DENY: "DENY",
|
|
247
|
+
};
|
|
248
|
+
export var IdentityDetails;
|
|
249
|
+
(function (IdentityDetails) {
|
|
250
|
+
IdentityDetails.visit = (value, visitor) => {
|
|
251
|
+
if (value.ssoIdentityDetails !== undefined)
|
|
252
|
+
return visitor.ssoIdentityDetails(value.ssoIdentityDetails);
|
|
253
|
+
if (value.externalIdentityDetails !== undefined)
|
|
254
|
+
return visitor.externalIdentityDetails(value.externalIdentityDetails);
|
|
255
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
256
|
+
};
|
|
257
|
+
})(IdentityDetails || (IdentityDetails = {}));
|
|
258
|
+
export const ProfileType = {
|
|
259
|
+
CODEWHISPERER: "CODEWHISPERER",
|
|
260
|
+
Q_DEVELOPER: "Q_DEVELOPER",
|
|
261
|
+
};
|
|
262
|
+
export const ProfileStatus = {
|
|
263
|
+
ACTIVE: "ACTIVE",
|
|
264
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
265
|
+
CREATING: "CREATING",
|
|
266
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
267
|
+
DELETING: "DELETING",
|
|
268
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
269
|
+
UPDATING: "UPDATING",
|
|
270
|
+
};
|
|
271
|
+
export const FileContextFilterSensitiveLog = (obj) => ({
|
|
272
|
+
...obj,
|
|
273
|
+
...(obj.leftFileContent && { leftFileContent: SENSITIVE_STRING
|
|
274
|
+
}),
|
|
275
|
+
...(obj.rightFileContent && { rightFileContent: SENSITIVE_STRING
|
|
276
|
+
}),
|
|
277
|
+
...(obj.filename && { filename: SENSITIVE_STRING
|
|
278
|
+
}),
|
|
279
|
+
...(obj.fileUri && { fileUri: SENSITIVE_STRING
|
|
280
|
+
}),
|
|
281
|
+
});
|
|
282
|
+
export var SupplementalContextMetadata;
|
|
283
|
+
(function (SupplementalContextMetadata) {
|
|
284
|
+
SupplementalContextMetadata.visit = (value, visitor) => {
|
|
285
|
+
if (value.previousEditorStateMetadata !== undefined)
|
|
286
|
+
return visitor.previousEditorStateMetadata(value.previousEditorStateMetadata);
|
|
287
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
288
|
+
};
|
|
289
|
+
})(SupplementalContextMetadata || (SupplementalContextMetadata = {}));
|
|
290
|
+
export const SupplementalContextType = {
|
|
291
|
+
PREVIOUS_EDITOR_STATE: "PreviousEditorState",
|
|
292
|
+
WORKSPACE_CONTEXT: "WorkspaceContext",
|
|
293
|
+
};
|
|
294
|
+
export const SupplementalContextFilterSensitiveLog = (obj) => ({
|
|
295
|
+
...obj,
|
|
296
|
+
...(obj.filePath && { filePath: SENSITIVE_STRING
|
|
297
|
+
}),
|
|
298
|
+
...(obj.content && { content: SENSITIVE_STRING
|
|
299
|
+
}),
|
|
300
|
+
...(obj.metadata && { metadata: obj.metadata
|
|
301
|
+
}),
|
|
302
|
+
});
|
|
303
|
+
export const ImportFilterSensitiveLog = (obj) => ({
|
|
304
|
+
...obj,
|
|
305
|
+
...(obj.statement && { statement: SENSITIVE_STRING
|
|
306
|
+
}),
|
|
307
|
+
});
|
|
308
|
+
export const ContentChecksumType = {
|
|
309
|
+
SHA_256: "SHA_256",
|
|
310
|
+
};
|
|
311
|
+
export const ChangeLogGranularityType = {
|
|
312
|
+
BUSINESS: "BUSINESS",
|
|
313
|
+
STANDARD: "STANDARD",
|
|
314
|
+
};
|
|
315
|
+
export const ImageFormat = {
|
|
316
|
+
GIF: "gif",
|
|
317
|
+
JPEG: "jpeg",
|
|
318
|
+
PNG: "png",
|
|
319
|
+
WEBP: "webp",
|
|
320
|
+
};
|
|
321
|
+
export var ImageSource;
|
|
322
|
+
(function (ImageSource) {
|
|
323
|
+
ImageSource.visit = (value, visitor) => {
|
|
324
|
+
if (value.bytes !== undefined)
|
|
325
|
+
return visitor.bytes(value.bytes);
|
|
326
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
327
|
+
};
|
|
328
|
+
})(ImageSource || (ImageSource = {}));
|
|
329
|
+
export const ImageSourceFilterSensitiveLog = (obj) => {
|
|
330
|
+
if (obj.bytes !== undefined)
|
|
331
|
+
return { bytes: obj.bytes
|
|
332
|
+
};
|
|
333
|
+
if (obj.$unknown !== undefined)
|
|
334
|
+
return { [obj.$unknown[0]]: 'UNKNOWN' };
|
|
335
|
+
};
|
|
336
|
+
export const ImageBlockFilterSensitiveLog = (obj) => ({
|
|
337
|
+
...obj,
|
|
338
|
+
...(obj.source && { source: SENSITIVE_STRING
|
|
339
|
+
}),
|
|
340
|
+
});
|
|
341
|
+
export const Origin = {
|
|
342
|
+
AI_EDITOR: "AI_EDITOR",
|
|
343
|
+
CHATBOT: "CHATBOT",
|
|
344
|
+
CLI: "CLI",
|
|
345
|
+
CONSOLE: "CONSOLE",
|
|
346
|
+
DOCUMENTATION: "DOCUMENTATION",
|
|
347
|
+
GITLAB: "GITLAB",
|
|
348
|
+
IDE: "IDE",
|
|
349
|
+
INLINE_CHAT: "INLINE_CHAT",
|
|
350
|
+
MARKETING: "MARKETING",
|
|
351
|
+
MD: "MD",
|
|
352
|
+
MD_CE: "MD_CE",
|
|
353
|
+
MD_IDE: "MD_IDE",
|
|
354
|
+
MOBILE: "MOBILE",
|
|
355
|
+
OPENSEARCH_DASHBOARD: "OPENSEARCH_DASHBOARD",
|
|
356
|
+
Q_DEV_BEXT: "Q_DEV_BEXT",
|
|
357
|
+
SAGE_MAKER: "SAGE_MAKER",
|
|
358
|
+
SERVICE_INTERNAL: "SERVICE_INTERNAL",
|
|
359
|
+
SM_AI_STUDIO_IDE: "SM_AI_STUDIO_IDE",
|
|
360
|
+
UNIFIED_SEARCH: "UNIFIED_SEARCH",
|
|
361
|
+
UNKNOWN: "UNKNOWN",
|
|
362
|
+
};
|
|
363
|
+
export const ConsoleStateFilterSensitiveLog = (obj) => ({
|
|
364
|
+
...obj,
|
|
365
|
+
...(obj.consoleUrl && { consoleUrl: SENSITIVE_STRING
|
|
366
|
+
}),
|
|
367
|
+
...(obj.taskName && { taskName: SENSITIVE_STRING
|
|
368
|
+
}),
|
|
369
|
+
});
|
|
370
|
+
export const DiagnosticSeverity = {
|
|
371
|
+
ERROR: "ERROR",
|
|
372
|
+
HINT: "HINT",
|
|
373
|
+
INFORMATION: "INFORMATION",
|
|
374
|
+
WARNING: "WARNING",
|
|
375
|
+
};
|
|
376
|
+
export const RuntimeDiagnosticFilterSensitiveLog = (obj) => ({
|
|
377
|
+
...obj,
|
|
378
|
+
...(obj.source && { source: SENSITIVE_STRING
|
|
379
|
+
}),
|
|
380
|
+
...(obj.message && { message: SENSITIVE_STRING
|
|
381
|
+
}),
|
|
382
|
+
});
|
|
383
|
+
export const CodeDescriptionFilterSensitiveLog = (obj) => ({
|
|
384
|
+
...obj,
|
|
385
|
+
...(obj.href && { href: SENSITIVE_STRING
|
|
386
|
+
}),
|
|
387
|
+
});
|
|
388
|
+
export const SymbolType = {
|
|
389
|
+
DECLARATION: "DECLARATION",
|
|
390
|
+
USAGE: "USAGE",
|
|
391
|
+
};
|
|
392
|
+
export const TextDocumentFilterSensitiveLog = (obj) => ({
|
|
393
|
+
...obj,
|
|
394
|
+
...(obj.relativeFilePath && { relativeFilePath: SENSITIVE_STRING
|
|
395
|
+
}),
|
|
396
|
+
...(obj.text && { text: SENSITIVE_STRING
|
|
397
|
+
}),
|
|
398
|
+
});
|
|
399
|
+
export const DiagnosticLocationFilterSensitiveLog = (obj) => ({
|
|
400
|
+
...obj,
|
|
401
|
+
...(obj.uri && { uri: SENSITIVE_STRING
|
|
402
|
+
}),
|
|
403
|
+
});
|
|
404
|
+
export const DiagnosticRelatedInformationFilterSensitiveLog = (obj) => ({
|
|
405
|
+
...obj,
|
|
406
|
+
...(obj.location && { location: DiagnosticLocationFilterSensitiveLog(obj.location)
|
|
407
|
+
}),
|
|
408
|
+
...(obj.message && { message: SENSITIVE_STRING
|
|
409
|
+
}),
|
|
410
|
+
});
|
|
411
|
+
export const DiagnosticTag = {
|
|
412
|
+
DEPRECATED: "DEPRECATED",
|
|
413
|
+
UNNECESSARY: "UNNECESSARY",
|
|
414
|
+
};
|
|
415
|
+
export const TextDocumentDiagnosticFilterSensitiveLog = (obj) => ({
|
|
416
|
+
...obj,
|
|
417
|
+
...(obj.document && { document: TextDocumentFilterSensitiveLog(obj.document)
|
|
418
|
+
}),
|
|
419
|
+
...(obj.source && { source: SENSITIVE_STRING
|
|
420
|
+
}),
|
|
421
|
+
...(obj.message && { message: SENSITIVE_STRING
|
|
422
|
+
}),
|
|
423
|
+
...(obj.code && { code: SENSITIVE_STRING
|
|
424
|
+
}),
|
|
425
|
+
...(obj.codeDescription && { codeDescription: CodeDescriptionFilterSensitiveLog(obj.codeDescription)
|
|
426
|
+
}),
|
|
427
|
+
...(obj.relatedInformation && { relatedInformation: obj.relatedInformation.map(item => DiagnosticRelatedInformationFilterSensitiveLog(item))
|
|
428
|
+
}),
|
|
429
|
+
...(obj.data && { data: SENSITIVE_STRING
|
|
430
|
+
}),
|
|
431
|
+
});
|
|
432
|
+
export var Diagnostic;
|
|
433
|
+
(function (Diagnostic) {
|
|
434
|
+
Diagnostic.visit = (value, visitor) => {
|
|
435
|
+
if (value.textDocumentDiagnostic !== undefined)
|
|
436
|
+
return visitor.textDocumentDiagnostic(value.textDocumentDiagnostic);
|
|
437
|
+
if (value.runtimeDiagnostic !== undefined)
|
|
438
|
+
return visitor.runtimeDiagnostic(value.runtimeDiagnostic);
|
|
439
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
440
|
+
};
|
|
441
|
+
})(Diagnostic || (Diagnostic = {}));
|
|
442
|
+
export const DiagnosticFilterSensitiveLog = (obj) => {
|
|
443
|
+
if (obj.textDocumentDiagnostic !== undefined)
|
|
444
|
+
return { textDocumentDiagnostic: TextDocumentDiagnosticFilterSensitiveLog(obj.textDocumentDiagnostic)
|
|
445
|
+
};
|
|
446
|
+
if (obj.runtimeDiagnostic !== undefined)
|
|
447
|
+
return { runtimeDiagnostic: RuntimeDiagnosticFilterSensitiveLog(obj.runtimeDiagnostic)
|
|
448
|
+
};
|
|
449
|
+
if (obj.$unknown !== undefined)
|
|
450
|
+
return { [obj.$unknown[0]]: 'UNKNOWN' };
|
|
451
|
+
};
|
|
452
|
+
export var CursorState;
|
|
453
|
+
(function (CursorState) {
|
|
454
|
+
CursorState.visit = (value, visitor) => {
|
|
455
|
+
if (value.position !== undefined)
|
|
456
|
+
return visitor.position(value.position);
|
|
457
|
+
if (value.range !== undefined)
|
|
458
|
+
return visitor.range(value.range);
|
|
459
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
460
|
+
};
|
|
461
|
+
})(CursorState || (CursorState = {}));
|
|
462
|
+
export const ContentType = {
|
|
463
|
+
CODE: "CODE",
|
|
464
|
+
FILE: "FILE",
|
|
465
|
+
PROMPT: "PROMPT",
|
|
466
|
+
WORKSPACE: "WORKSPACE",
|
|
467
|
+
};
|
|
468
|
+
export const RelevantTextDocumentFilterSensitiveLog = (obj) => ({
|
|
469
|
+
...obj,
|
|
470
|
+
...(obj.relativeFilePath && { relativeFilePath: SENSITIVE_STRING
|
|
471
|
+
}),
|
|
472
|
+
...(obj.text && { text: SENSITIVE_STRING
|
|
473
|
+
}),
|
|
474
|
+
});
|
|
475
|
+
export const EditorStateFilterSensitiveLog = (obj) => ({
|
|
476
|
+
...obj,
|
|
477
|
+
...(obj.document && { document: TextDocumentFilterSensitiveLog(obj.document)
|
|
478
|
+
}),
|
|
479
|
+
...(obj.cursorState && { cursorState: obj.cursorState
|
|
480
|
+
}),
|
|
481
|
+
...(obj.relevantDocuments && { relevantDocuments: obj.relevantDocuments.map(item => RelevantTextDocumentFilterSensitiveLog(item))
|
|
482
|
+
}),
|
|
483
|
+
...(obj.workspaceFolders && { workspaceFolders: SENSITIVE_STRING
|
|
484
|
+
}),
|
|
485
|
+
});
|
|
486
|
+
export const EnvironmentVariableFilterSensitiveLog = (obj) => ({
|
|
487
|
+
...obj,
|
|
488
|
+
...(obj.key && { key: SENSITIVE_STRING
|
|
489
|
+
}),
|
|
490
|
+
...(obj.value && { value: SENSITIVE_STRING
|
|
491
|
+
}),
|
|
492
|
+
});
|
|
493
|
+
export const EnvStateFilterSensitiveLog = (obj) => ({
|
|
494
|
+
...obj,
|
|
495
|
+
...(obj.currentWorkingDirectory && { currentWorkingDirectory: SENSITIVE_STRING
|
|
496
|
+
}),
|
|
497
|
+
...(obj.environmentVariables && { environmentVariables: obj.environmentVariables.map(item => EnvironmentVariableFilterSensitiveLog(item))
|
|
498
|
+
}),
|
|
499
|
+
});
|
|
500
|
+
export const GitStateFilterSensitiveLog = (obj) => ({
|
|
501
|
+
...obj,
|
|
502
|
+
...(obj.status && { status: SENSITIVE_STRING
|
|
503
|
+
}),
|
|
504
|
+
});
|
|
505
|
+
export const ShellHistoryEntryFilterSensitiveLog = (obj) => ({
|
|
506
|
+
...obj,
|
|
507
|
+
...(obj.command && { command: SENSITIVE_STRING
|
|
508
|
+
}),
|
|
509
|
+
...(obj.directory && { directory: SENSITIVE_STRING
|
|
510
|
+
}),
|
|
511
|
+
...(obj.stdout && { stdout: SENSITIVE_STRING
|
|
512
|
+
}),
|
|
513
|
+
...(obj.stderr && { stderr: SENSITIVE_STRING
|
|
514
|
+
}),
|
|
515
|
+
});
|
|
516
|
+
export const ShellStateFilterSensitiveLog = (obj) => ({
|
|
517
|
+
...obj,
|
|
518
|
+
...(obj.shellHistory && { shellHistory: obj.shellHistory.map(item => ShellHistoryEntryFilterSensitiveLog(item))
|
|
519
|
+
}),
|
|
520
|
+
});
|
|
521
|
+
export var ToolResultContentBlock;
|
|
522
|
+
(function (ToolResultContentBlock) {
|
|
523
|
+
ToolResultContentBlock.visit = (value, visitor) => {
|
|
524
|
+
if (value.text !== undefined)
|
|
525
|
+
return visitor.text(value.text);
|
|
526
|
+
if (value.json !== undefined)
|
|
527
|
+
return visitor.json(value.json);
|
|
528
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
529
|
+
};
|
|
530
|
+
})(ToolResultContentBlock || (ToolResultContentBlock = {}));
|
|
531
|
+
export const ToolResultContentBlockFilterSensitiveLog = (obj) => {
|
|
532
|
+
if (obj.text !== undefined)
|
|
533
|
+
return { text: SENSITIVE_STRING
|
|
534
|
+
};
|
|
535
|
+
if (obj.json !== undefined)
|
|
536
|
+
return { json: SENSITIVE_STRING
|
|
537
|
+
};
|
|
538
|
+
if (obj.$unknown !== undefined)
|
|
539
|
+
return { [obj.$unknown[0]]: 'UNKNOWN' };
|
|
540
|
+
};
|
|
541
|
+
export const ToolResultStatus = {
|
|
542
|
+
ERROR: "error",
|
|
543
|
+
SUCCESS: "success",
|
|
544
|
+
};
|
|
545
|
+
export const ToolResultFilterSensitiveLog = (obj) => ({
|
|
546
|
+
...obj,
|
|
547
|
+
...(obj.content && { content: obj.content.map(item => ToolResultContentBlockFilterSensitiveLog(item))
|
|
548
|
+
}),
|
|
549
|
+
});
|
|
550
|
+
export const ToolInputSchemaFilterSensitiveLog = (obj) => ({
|
|
551
|
+
...obj,
|
|
552
|
+
...(obj.json && { json: SENSITIVE_STRING
|
|
553
|
+
}),
|
|
554
|
+
});
|
|
555
|
+
export const ToolSpecificationFilterSensitiveLog = (obj) => ({
|
|
556
|
+
...obj,
|
|
557
|
+
...(obj.inputSchema && { inputSchema: ToolInputSchemaFilterSensitiveLog(obj.inputSchema)
|
|
558
|
+
}),
|
|
559
|
+
...(obj.name && { name: SENSITIVE_STRING
|
|
560
|
+
}),
|
|
561
|
+
...(obj.description && { description: SENSITIVE_STRING
|
|
562
|
+
}),
|
|
563
|
+
});
|
|
564
|
+
export var Tool;
|
|
565
|
+
(function (Tool) {
|
|
566
|
+
Tool.visit = (value, visitor) => {
|
|
567
|
+
if (value.toolSpecification !== undefined)
|
|
568
|
+
return visitor.toolSpecification(value.toolSpecification);
|
|
569
|
+
if (value.cachePoint !== undefined)
|
|
570
|
+
return visitor.cachePoint(value.cachePoint);
|
|
571
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
572
|
+
};
|
|
573
|
+
})(Tool || (Tool = {}));
|
|
574
|
+
export const ToolFilterSensitiveLog = (obj) => {
|
|
575
|
+
if (obj.toolSpecification !== undefined)
|
|
576
|
+
return { toolSpecification: ToolSpecificationFilterSensitiveLog(obj.toolSpecification)
|
|
577
|
+
};
|
|
578
|
+
if (obj.cachePoint !== undefined)
|
|
579
|
+
return { cachePoint: obj.cachePoint
|
|
580
|
+
};
|
|
581
|
+
if (obj.$unknown !== undefined)
|
|
582
|
+
return { [obj.$unknown[0]]: 'UNKNOWN' };
|
|
583
|
+
};
|
|
584
|
+
export const UserInputMessageContextFilterSensitiveLog = (obj) => ({
|
|
585
|
+
...obj,
|
|
586
|
+
...(obj.editorState && { editorState: EditorStateFilterSensitiveLog(obj.editorState)
|
|
587
|
+
}),
|
|
588
|
+
...(obj.shellState && { shellState: ShellStateFilterSensitiveLog(obj.shellState)
|
|
589
|
+
}),
|
|
590
|
+
...(obj.gitState && { gitState: GitStateFilterSensitiveLog(obj.gitState)
|
|
591
|
+
}),
|
|
592
|
+
...(obj.envState && { envState: EnvStateFilterSensitiveLog(obj.envState)
|
|
593
|
+
}),
|
|
594
|
+
...(obj.appStudioContext && { appStudioContext: AppStudioStateFilterSensitiveLog(obj.appStudioContext)
|
|
595
|
+
}),
|
|
596
|
+
...(obj.diagnostic && { diagnostic: DiagnosticFilterSensitiveLog(obj.diagnostic)
|
|
597
|
+
}),
|
|
598
|
+
...(obj.consoleState && { consoleState: ConsoleStateFilterSensitiveLog(obj.consoleState)
|
|
599
|
+
}),
|
|
600
|
+
...(obj.additionalContext && { additionalContext: obj.additionalContext.map(item => AdditionalContentEntryFilterSensitiveLog(item))
|
|
601
|
+
}),
|
|
602
|
+
...(obj.toolResults && { toolResults: obj.toolResults.map(item => ToolResultFilterSensitiveLog(item))
|
|
603
|
+
}),
|
|
604
|
+
...(obj.tools && { tools: obj.tools.map(item => ToolFilterSensitiveLog(item))
|
|
605
|
+
}),
|
|
606
|
+
});
|
|
607
|
+
export const UserInputMessageFilterSensitiveLog = (obj) => ({
|
|
608
|
+
...obj,
|
|
609
|
+
...(obj.content && { content: SENSITIVE_STRING
|
|
610
|
+
}),
|
|
611
|
+
...(obj.userInputMessageContext && { userInputMessageContext: UserInputMessageContextFilterSensitiveLog(obj.userInputMessageContext)
|
|
612
|
+
}),
|
|
613
|
+
...(obj.images && { images: obj.images.map(item => ImageBlockFilterSensitiveLog(item))
|
|
614
|
+
}),
|
|
615
|
+
});
|
|
616
|
+
export var ChatMessage;
|
|
617
|
+
(function (ChatMessage) {
|
|
618
|
+
ChatMessage.visit = (value, visitor) => {
|
|
619
|
+
if (value.userInputMessage !== undefined)
|
|
620
|
+
return visitor.userInputMessage(value.userInputMessage);
|
|
621
|
+
if (value.assistantResponseMessage !== undefined)
|
|
622
|
+
return visitor.assistantResponseMessage(value.assistantResponseMessage);
|
|
623
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
624
|
+
};
|
|
625
|
+
})(ChatMessage || (ChatMessage = {}));
|
|
626
|
+
export const ChatMessageFilterSensitiveLog = (obj) => {
|
|
627
|
+
if (obj.userInputMessage !== undefined)
|
|
628
|
+
return { userInputMessage: UserInputMessageFilterSensitiveLog(obj.userInputMessage)
|
|
629
|
+
};
|
|
630
|
+
if (obj.assistantResponseMessage !== undefined)
|
|
631
|
+
return { assistantResponseMessage: AssistantResponseMessageFilterSensitiveLog(obj.assistantResponseMessage)
|
|
632
|
+
};
|
|
633
|
+
if (obj.$unknown !== undefined)
|
|
634
|
+
return { [obj.$unknown[0]]: 'UNKNOWN' };
|
|
635
|
+
};
|
|
636
|
+
export const IdeDiagnosticType = {
|
|
637
|
+
BEST_PRACTICE: "BEST_PRACTICE",
|
|
638
|
+
OTHER: "OTHER",
|
|
639
|
+
REFERENCE_ERROR: "REFERENCE_ERROR",
|
|
640
|
+
SECURITY: "SECURITY",
|
|
641
|
+
SYNTAX_ERROR: "SYNTAX_ERROR",
|
|
642
|
+
TYPE_ERROR: "TYPE_ERROR",
|
|
643
|
+
};
|
|
644
|
+
export const IdeDiagnosticFilterSensitiveLog = (obj) => ({
|
|
645
|
+
...obj,
|
|
646
|
+
...(obj.source && { source: SENSITIVE_STRING
|
|
647
|
+
}),
|
|
648
|
+
});
|
|
649
|
+
export const ChatMessageInteractionType = {
|
|
650
|
+
AGENTIC_CODE_ACCEPTED: "AGENTIC_CODE_ACCEPTED",
|
|
651
|
+
CLICK_BODY_LINK: "CLICK_BODY_LINK",
|
|
652
|
+
CLICK_FOLLOW_UP: "CLICK_FOLLOW_UP",
|
|
653
|
+
CLICK_LINK: "CLICK_LINK",
|
|
654
|
+
COPY: "COPY",
|
|
655
|
+
COPY_SNIPPET: "COPY_SNIPPET",
|
|
656
|
+
DOWNVOTE: "DOWNVOTE",
|
|
657
|
+
HOVER_REFERENCE: "HOVER_REFERENCE",
|
|
658
|
+
INSERT_AT_CURSOR: "INSERT_AT_CURSOR",
|
|
659
|
+
UPVOTE: "UPVOTE",
|
|
660
|
+
};
|
|
661
|
+
export const ChatInteractWithMessageEventFilterSensitiveLog = (obj) => ({
|
|
662
|
+
...obj,
|
|
663
|
+
...(obj.addedIdeDiagnostics && { addedIdeDiagnostics: obj.addedIdeDiagnostics.map(item => IdeDiagnosticFilterSensitiveLog(item))
|
|
664
|
+
}),
|
|
665
|
+
...(obj.removedIdeDiagnostics && { removedIdeDiagnostics: obj.removedIdeDiagnostics.map(item => IdeDiagnosticFilterSensitiveLog(item))
|
|
666
|
+
}),
|
|
667
|
+
});
|
|
668
|
+
export const ChatTriggerType = {
|
|
669
|
+
DIAGNOSTIC: "DIAGNOSTIC",
|
|
670
|
+
INLINE_CHAT: "INLINE_CHAT",
|
|
671
|
+
MANUAL: "MANUAL",
|
|
672
|
+
};
|
|
673
|
+
export const CodeAnalysisFindingsSchema = {
|
|
674
|
+
CODEANALYSIS_FINDINGS_V1_0: "codeanalysis/findings/1.0",
|
|
675
|
+
};
|
|
676
|
+
export const CodeAnalysisScope = {
|
|
677
|
+
Agentic: "AGENTIC",
|
|
678
|
+
File: "FILE",
|
|
679
|
+
Project: "PROJECT",
|
|
680
|
+
};
|
|
681
|
+
export const CodeAnalysisStatus = {
|
|
682
|
+
COMPLETED: "Completed",
|
|
683
|
+
FAILED: "Failed",
|
|
684
|
+
PENDING: "Pending",
|
|
685
|
+
};
|
|
686
|
+
export const CodeFixJobStatus = {
|
|
687
|
+
FAILED: "Failed",
|
|
688
|
+
IN_PROGRESS: "InProgress",
|
|
689
|
+
SUCCEEDED: "Succeeded",
|
|
690
|
+
};
|
|
691
|
+
export const CodeGenerationWorkflowStage = {
|
|
692
|
+
INITIAL: "InitialCodeGeneration",
|
|
693
|
+
REFINEMENT: "CodeRefinement",
|
|
694
|
+
};
|
|
695
|
+
export const CodeGenerationWorkflowStatus = {
|
|
696
|
+
COMPLETE: "Complete",
|
|
697
|
+
FAILED: "Failed",
|
|
698
|
+
IN_PROGRESS: "InProgress",
|
|
699
|
+
};
|
|
700
|
+
export const CodeScanRemediationsEventType = {
|
|
701
|
+
CODESCAN_ISSUE_APPLY_FIX: "CODESCAN_ISSUE_APPLY_FIX",
|
|
702
|
+
CODESCAN_ISSUE_HOVER: "CODESCAN_ISSUE_HOVER",
|
|
703
|
+
CODESCAN_ISSUE_VIEW_DETAILS: "CODESCAN_ISSUE_VIEW_DETAILS",
|
|
704
|
+
};
|
|
705
|
+
export const CompletionFilterSensitiveLog = (obj) => ({
|
|
706
|
+
...obj,
|
|
707
|
+
...(obj.content && { content: SENSITIVE_STRING
|
|
708
|
+
}),
|
|
709
|
+
...(obj.mostRelevantMissingImports && { mostRelevantMissingImports: obj.mostRelevantMissingImports.map(item => ImportFilterSensitiveLog(item))
|
|
710
|
+
}),
|
|
711
|
+
});
|
|
712
|
+
export const CompletionType = {
|
|
713
|
+
Block: "BLOCK",
|
|
714
|
+
Line: "LINE",
|
|
715
|
+
};
|
|
716
|
+
export const ContextTruncationScheme = {
|
|
717
|
+
ANALYSIS: "ANALYSIS",
|
|
718
|
+
GUMBY: "GUMBY",
|
|
719
|
+
};
|
|
720
|
+
export const ConversationStateFilterSensitiveLog = (obj) => ({
|
|
721
|
+
...obj,
|
|
722
|
+
...(obj.history && { history: obj.history.map(item => ChatMessageFilterSensitiveLog(item))
|
|
723
|
+
}),
|
|
724
|
+
...(obj.currentMessage && { currentMessage: ChatMessageFilterSensitiveLog(obj.currentMessage)
|
|
725
|
+
}),
|
|
726
|
+
});
|
|
727
|
+
export const TransformationUploadArtifactType = {
|
|
728
|
+
CLIENT_BUILD_RESULT: "ClientBuildResult",
|
|
729
|
+
DEPENDENCIES: "Dependencies",
|
|
730
|
+
};
|
|
731
|
+
export const WorkspaceContextUploadContextFilterSensitiveLog = (obj) => ({
|
|
732
|
+
...obj,
|
|
733
|
+
...(obj.relativePath && { relativePath: SENSITIVE_STRING
|
|
734
|
+
}),
|
|
735
|
+
});
|
|
736
|
+
export var UploadContext;
|
|
737
|
+
(function (UploadContext) {
|
|
738
|
+
UploadContext.visit = (value, visitor) => {
|
|
739
|
+
if (value.taskAssistPlanningUploadContext !== undefined)
|
|
740
|
+
return visitor.taskAssistPlanningUploadContext(value.taskAssistPlanningUploadContext);
|
|
741
|
+
if (value.transformationUploadContext !== undefined)
|
|
742
|
+
return visitor.transformationUploadContext(value.transformationUploadContext);
|
|
743
|
+
if (value.codeAnalysisUploadContext !== undefined)
|
|
744
|
+
return visitor.codeAnalysisUploadContext(value.codeAnalysisUploadContext);
|
|
745
|
+
if (value.codeFixUploadContext !== undefined)
|
|
746
|
+
return visitor.codeFixUploadContext(value.codeFixUploadContext);
|
|
747
|
+
if (value.workspaceContextUploadContext !== undefined)
|
|
748
|
+
return visitor.workspaceContextUploadContext(value.workspaceContextUploadContext);
|
|
749
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
750
|
+
};
|
|
751
|
+
})(UploadContext || (UploadContext = {}));
|
|
752
|
+
export const UploadContextFilterSensitiveLog = (obj) => {
|
|
753
|
+
if (obj.taskAssistPlanningUploadContext !== undefined)
|
|
754
|
+
return { taskAssistPlanningUploadContext: obj.taskAssistPlanningUploadContext
|
|
755
|
+
};
|
|
756
|
+
if (obj.transformationUploadContext !== undefined)
|
|
757
|
+
return { transformationUploadContext: obj.transformationUploadContext
|
|
758
|
+
};
|
|
759
|
+
if (obj.codeAnalysisUploadContext !== undefined)
|
|
760
|
+
return { codeAnalysisUploadContext: obj.codeAnalysisUploadContext
|
|
761
|
+
};
|
|
762
|
+
if (obj.codeFixUploadContext !== undefined)
|
|
763
|
+
return { codeFixUploadContext: obj.codeFixUploadContext
|
|
764
|
+
};
|
|
765
|
+
if (obj.workspaceContextUploadContext !== undefined)
|
|
766
|
+
return { workspaceContextUploadContext: WorkspaceContextUploadContextFilterSensitiveLog(obj.workspaceContextUploadContext)
|
|
767
|
+
};
|
|
768
|
+
if (obj.$unknown !== undefined)
|
|
769
|
+
return { [obj.$unknown[0]]: 'UNKNOWN' };
|
|
770
|
+
};
|
|
771
|
+
export const UploadIntent = {
|
|
772
|
+
AGENTIC_CODE_REVIEW: "AGENTIC_CODE_REVIEW",
|
|
773
|
+
AUTOMATIC_FILE_SECURITY_SCAN: "AUTOMATIC_FILE_SECURITY_SCAN",
|
|
774
|
+
CODE_FIX_GENERATION: "CODE_FIX_GENERATION",
|
|
775
|
+
FULL_PROJECT_SECURITY_SCAN: "FULL_PROJECT_SECURITY_SCAN",
|
|
776
|
+
TASK_ASSIST_PLANNING: "TASK_ASSIST_PLANNING",
|
|
777
|
+
TRANSFORMATION: "TRANSFORMATION",
|
|
778
|
+
UNIT_TESTS_GENERATION: "UNIT_TESTS_GENERATION",
|
|
779
|
+
WORKSPACE_CONTEXT: "WORKSPACE_CONTEXT",
|
|
780
|
+
};
|
|
781
|
+
export const CreateUploadUrlRequestFilterSensitiveLog = (obj) => ({
|
|
782
|
+
...obj,
|
|
783
|
+
...(obj.contentMd5 && { contentMd5: SENSITIVE_STRING
|
|
784
|
+
}),
|
|
785
|
+
...(obj.contentChecksum && { contentChecksum: SENSITIVE_STRING
|
|
786
|
+
}),
|
|
787
|
+
...(obj.uploadContext && { uploadContext: UploadContextFilterSensitiveLog(obj.uploadContext)
|
|
788
|
+
}),
|
|
789
|
+
});
|
|
790
|
+
export const CreateUploadUrlResponseFilterSensitiveLog = (obj) => ({
|
|
791
|
+
...obj,
|
|
792
|
+
...(obj.uploadUrl && { uploadUrl: SENSITIVE_STRING
|
|
793
|
+
}),
|
|
794
|
+
...(obj.requestHeaders && { requestHeaders: SENSITIVE_STRING
|
|
795
|
+
}),
|
|
796
|
+
});
|
|
797
|
+
export const DocFolderLevel = {
|
|
798
|
+
ENTIRE_WORKSPACE: "ENTIRE_WORKSPACE",
|
|
799
|
+
SUB_FOLDER: "SUB_FOLDER",
|
|
800
|
+
};
|
|
801
|
+
export const DocInteractionType = {
|
|
802
|
+
EDIT_README: "EDIT_README",
|
|
803
|
+
GENERATE_README: "GENERATE_README",
|
|
804
|
+
UPDATE_README: "UPDATE_README",
|
|
805
|
+
};
|
|
806
|
+
export const DocUserDecision = {
|
|
807
|
+
ACCEPT: "ACCEPT",
|
|
808
|
+
REJECT: "REJECT",
|
|
809
|
+
};
|
|
810
|
+
export const DocumentationType = {
|
|
811
|
+
CHANGE_LOG: "CHANGE_LOG",
|
|
812
|
+
README: "README",
|
|
813
|
+
};
|
|
814
|
+
export const DocumentationIntentContextFilterSensitiveLog = (obj) => ({
|
|
815
|
+
...obj,
|
|
816
|
+
...(obj.scope && { scope: SENSITIVE_STRING
|
|
817
|
+
}),
|
|
818
|
+
});
|
|
819
|
+
export const EditFilterSensitiveLog = (obj) => ({
|
|
820
|
+
...obj,
|
|
821
|
+
...(obj.content && { content: SENSITIVE_STRING
|
|
822
|
+
}),
|
|
823
|
+
});
|
|
824
|
+
export const TransformationDownloadArtifactType = {
|
|
825
|
+
CLIENT_INSTRUCTIONS: "ClientInstructions",
|
|
826
|
+
GENERATED_CODE: "GeneratedCode",
|
|
827
|
+
LOGS: "Logs",
|
|
828
|
+
};
|
|
829
|
+
export var FeatureValue;
|
|
830
|
+
(function (FeatureValue) {
|
|
831
|
+
FeatureValue.visit = (value, visitor) => {
|
|
832
|
+
if (value.boolValue !== undefined)
|
|
833
|
+
return visitor.boolValue(value.boolValue);
|
|
834
|
+
if (value.doubleValue !== undefined)
|
|
835
|
+
return visitor.doubleValue(value.doubleValue);
|
|
836
|
+
if (value.longValue !== undefined)
|
|
837
|
+
return visitor.longValue(value.longValue);
|
|
838
|
+
if (value.stringValue !== undefined)
|
|
839
|
+
return visitor.stringValue(value.stringValue);
|
|
840
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
841
|
+
};
|
|
842
|
+
})(FeatureValue || (FeatureValue = {}));
|
|
843
|
+
export const OptOutPreference = {
|
|
844
|
+
OptIn: "OPTIN",
|
|
845
|
+
OptOut: "OPTOUT",
|
|
846
|
+
};
|
|
847
|
+
export const PredictionType = {
|
|
848
|
+
COMPLETIONS: "COMPLETIONS",
|
|
849
|
+
EDITS: "EDITS",
|
|
850
|
+
};
|
|
851
|
+
export const IdeCategory = {
|
|
852
|
+
CLI: "CLI",
|
|
853
|
+
Eclipse: "ECLIPSE",
|
|
854
|
+
JetBrains: "JETBRAINS",
|
|
855
|
+
JupyterMD: "JUPYTER_MD",
|
|
856
|
+
JupyterSM: "JUPYTER_SM",
|
|
857
|
+
VSCode: "VSCODE",
|
|
858
|
+
VisualStudio: "VISUAL_STUDIO",
|
|
859
|
+
};
|
|
860
|
+
export const OperatingSystem = {
|
|
861
|
+
Linux: "LINUX",
|
|
862
|
+
Mac: "MAC",
|
|
863
|
+
Windows: "WINDOWS",
|
|
864
|
+
};
|
|
865
|
+
export const GenerateCompletionsRequestFilterSensitiveLog = (obj) => ({
|
|
866
|
+
...obj,
|
|
867
|
+
...(obj.fileContext && { fileContext: FileContextFilterSensitiveLog(obj.fileContext)
|
|
868
|
+
}),
|
|
869
|
+
...(obj.editorState && { editorState: EditorStateFilterSensitiveLog(obj.editorState)
|
|
870
|
+
}),
|
|
871
|
+
...(obj.nextToken && { nextToken: SENSITIVE_STRING
|
|
872
|
+
}),
|
|
873
|
+
...(obj.supplementalContexts && { supplementalContexts: obj.supplementalContexts.map(item => SupplementalContextFilterSensitiveLog(item))
|
|
874
|
+
}),
|
|
875
|
+
});
|
|
876
|
+
export var Prediction;
|
|
877
|
+
(function (Prediction) {
|
|
878
|
+
Prediction.visit = (value, visitor) => {
|
|
879
|
+
if (value.completion !== undefined)
|
|
880
|
+
return visitor.completion(value.completion);
|
|
881
|
+
if (value.edit !== undefined)
|
|
882
|
+
return visitor.edit(value.edit);
|
|
883
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
884
|
+
};
|
|
885
|
+
})(Prediction || (Prediction = {}));
|
|
886
|
+
export const PredictionFilterSensitiveLog = (obj) => {
|
|
887
|
+
if (obj.completion !== undefined)
|
|
888
|
+
return { completion: CompletionFilterSensitiveLog(obj.completion)
|
|
889
|
+
};
|
|
890
|
+
if (obj.edit !== undefined)
|
|
891
|
+
return { edit: EditFilterSensitiveLog(obj.edit)
|
|
892
|
+
};
|
|
893
|
+
if (obj.$unknown !== undefined)
|
|
894
|
+
return { [obj.$unknown[0]]: 'UNKNOWN' };
|
|
895
|
+
};
|
|
896
|
+
export const GenerateCompletionsResponseFilterSensitiveLog = (obj) => ({
|
|
897
|
+
...obj,
|
|
898
|
+
...(obj.predictions && { predictions: obj.predictions.map(item => PredictionFilterSensitiveLog(item))
|
|
899
|
+
}),
|
|
900
|
+
...(obj.completions && { completions: obj.completions.map(item => CompletionFilterSensitiveLog(item))
|
|
901
|
+
}),
|
|
902
|
+
...(obj.nextToken && { nextToken: SENSITIVE_STRING
|
|
903
|
+
}),
|
|
904
|
+
});
|
|
905
|
+
export const GetCodeAnalysisResponseFilterSensitiveLog = (obj) => ({
|
|
906
|
+
...obj,
|
|
907
|
+
...(obj.errorMessage && { errorMessage: SENSITIVE_STRING
|
|
908
|
+
}),
|
|
909
|
+
});
|
|
910
|
+
export const SuggestedFixFilterSensitiveLog = (obj) => ({
|
|
911
|
+
...obj,
|
|
912
|
+
...(obj.codeDiff && { codeDiff: SENSITIVE_STRING
|
|
913
|
+
}),
|
|
914
|
+
...(obj.description && { description: SENSITIVE_STRING
|
|
915
|
+
}),
|
|
916
|
+
});
|
|
917
|
+
export const GetCodeFixJobResponseFilterSensitiveLog = (obj) => ({
|
|
918
|
+
...obj,
|
|
919
|
+
...(obj.suggestedFix && { suggestedFix: SuggestedFixFilterSensitiveLog(obj.suggestedFix)
|
|
920
|
+
}),
|
|
921
|
+
});
|
|
922
|
+
export const InlineChatUserDecision = {
|
|
923
|
+
ACCEPT: "ACCEPT",
|
|
924
|
+
DISMISS: "DISMISS",
|
|
925
|
+
REJECT: "REJECT",
|
|
926
|
+
};
|
|
927
|
+
export const Intent = {
|
|
928
|
+
DEV: "DEV",
|
|
929
|
+
DOC: "DOC",
|
|
930
|
+
};
|
|
931
|
+
export var IntentContext;
|
|
932
|
+
(function (IntentContext) {
|
|
933
|
+
IntentContext.visit = (value, visitor) => {
|
|
934
|
+
if (value.documentation !== undefined)
|
|
935
|
+
return visitor.documentation(value.documentation);
|
|
936
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
937
|
+
};
|
|
938
|
+
})(IntentContext || (IntentContext = {}));
|
|
939
|
+
export const IntentContextFilterSensitiveLog = (obj) => {
|
|
940
|
+
if (obj.documentation !== undefined)
|
|
941
|
+
return { documentation: DocumentationIntentContextFilterSensitiveLog(obj.documentation)
|
|
942
|
+
};
|
|
943
|
+
if (obj.$unknown !== undefined)
|
|
944
|
+
return { [obj.$unknown[0]]: 'UNKNOWN' };
|
|
945
|
+
};
|
|
946
|
+
export const ListCodeAnalysisFindingsResponseFilterSensitiveLog = (obj) => ({
|
|
947
|
+
...obj,
|
|
948
|
+
...(obj.codeAnalysisFindings && { codeAnalysisFindings: SENSITIVE_STRING
|
|
949
|
+
}),
|
|
950
|
+
});
|
|
951
|
+
export const TargetFileInfoFilterSensitiveLog = (obj) => ({
|
|
952
|
+
...obj,
|
|
953
|
+
...(obj.filePath && { filePath: SENSITIVE_STRING
|
|
954
|
+
}),
|
|
955
|
+
...(obj.testFilePath && { testFilePath: SENSITIVE_STRING
|
|
956
|
+
}),
|
|
957
|
+
...(obj.fileSummary && { fileSummary: SENSITIVE_STRING
|
|
958
|
+
}),
|
|
959
|
+
...(obj.filePlan && { filePlan: SENSITIVE_STRING
|
|
960
|
+
}),
|
|
961
|
+
});
|
|
962
|
+
export const PackageInfoFilterSensitiveLog = (obj) => ({
|
|
963
|
+
...obj,
|
|
964
|
+
...(obj.executionCommand && { executionCommand: SENSITIVE_STRING
|
|
965
|
+
}),
|
|
966
|
+
...(obj.buildCommand && { buildCommand: SENSITIVE_STRING
|
|
967
|
+
}),
|
|
968
|
+
...(obj.packageSummary && { packageSummary: SENSITIVE_STRING
|
|
969
|
+
}),
|
|
970
|
+
...(obj.packagePlan && { packagePlan: SENSITIVE_STRING
|
|
971
|
+
}),
|
|
972
|
+
...(obj.targetFileInfoList && { targetFileInfoList: obj.targetFileInfoList.map(item => TargetFileInfoFilterSensitiveLog(item))
|
|
973
|
+
}),
|
|
974
|
+
});
|
|
975
|
+
export const TransformationProgressUpdateStatus = {
|
|
976
|
+
AWAITING_CLIENT_ACTION: "AWAITING_CLIENT_ACTION",
|
|
977
|
+
COMPLETED: "COMPLETED",
|
|
978
|
+
FAILED: "FAILED",
|
|
979
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
980
|
+
PAUSED: "PAUSED",
|
|
981
|
+
SKIPPED: "SKIPPED",
|
|
982
|
+
};
|
|
983
|
+
export const TerminalUserInteractionEventType = {
|
|
984
|
+
CODEWHISPERER_TERMINAL_COMPLETION_INSERTED: "CODEWHISPERER_TERMINAL_COMPLETION_INSERTED",
|
|
985
|
+
CODEWHISPERER_TERMINAL_TRANSLATION_ACTION: "CODEWHISPERER_TERMINAL_TRANSLATION_ACTION",
|
|
986
|
+
};
|
|
987
|
+
export const SuggestionState = {
|
|
988
|
+
Accept: "ACCEPT",
|
|
989
|
+
Discard: "DISCARD",
|
|
990
|
+
Empty: "EMPTY",
|
|
991
|
+
Merge: "MERGE",
|
|
992
|
+
Reject: "REJECT",
|
|
993
|
+
};
|
|
994
|
+
export const SuggestionType = {
|
|
995
|
+
Completions: "COMPLETIONS",
|
|
996
|
+
Edits: "EDITS",
|
|
997
|
+
};
|
|
998
|
+
export const UserTriggerDecisionEventFilterSensitiveLog = (obj) => ({
|
|
999
|
+
...obj,
|
|
1000
|
+
...(obj.addedIdeDiagnostics && { addedIdeDiagnostics: obj.addedIdeDiagnostics.map(item => IdeDiagnosticFilterSensitiveLog(item))
|
|
1001
|
+
}),
|
|
1002
|
+
...(obj.removedIdeDiagnostics && { removedIdeDiagnostics: obj.removedIdeDiagnostics.map(item => IdeDiagnosticFilterSensitiveLog(item))
|
|
1003
|
+
}),
|
|
1004
|
+
});
|
|
1005
|
+
export var TelemetryEvent;
|
|
1006
|
+
(function (TelemetryEvent) {
|
|
1007
|
+
TelemetryEvent.visit = (value, visitor) => {
|
|
1008
|
+
if (value.userTriggerDecisionEvent !== undefined)
|
|
1009
|
+
return visitor.userTriggerDecisionEvent(value.userTriggerDecisionEvent);
|
|
1010
|
+
if (value.codeCoverageEvent !== undefined)
|
|
1011
|
+
return visitor.codeCoverageEvent(value.codeCoverageEvent);
|
|
1012
|
+
if (value.userModificationEvent !== undefined)
|
|
1013
|
+
return visitor.userModificationEvent(value.userModificationEvent);
|
|
1014
|
+
if (value.codeScanEvent !== undefined)
|
|
1015
|
+
return visitor.codeScanEvent(value.codeScanEvent);
|
|
1016
|
+
if (value.codeScanSucceededEvent !== undefined)
|
|
1017
|
+
return visitor.codeScanSucceededEvent(value.codeScanSucceededEvent);
|
|
1018
|
+
if (value.codeScanFailedEvent !== undefined)
|
|
1019
|
+
return visitor.codeScanFailedEvent(value.codeScanFailedEvent);
|
|
1020
|
+
if (value.codeScanRemediationsEvent !== undefined)
|
|
1021
|
+
return visitor.codeScanRemediationsEvent(value.codeScanRemediationsEvent);
|
|
1022
|
+
if (value.codeFixGenerationEvent !== undefined)
|
|
1023
|
+
return visitor.codeFixGenerationEvent(value.codeFixGenerationEvent);
|
|
1024
|
+
if (value.codeFixAcceptanceEvent !== undefined)
|
|
1025
|
+
return visitor.codeFixAcceptanceEvent(value.codeFixAcceptanceEvent);
|
|
1026
|
+
if (value.metricData !== undefined)
|
|
1027
|
+
return visitor.metricData(value.metricData);
|
|
1028
|
+
if (value.chatAddMessageEvent !== undefined)
|
|
1029
|
+
return visitor.chatAddMessageEvent(value.chatAddMessageEvent);
|
|
1030
|
+
if (value.chatInteractWithMessageEvent !== undefined)
|
|
1031
|
+
return visitor.chatInteractWithMessageEvent(value.chatInteractWithMessageEvent);
|
|
1032
|
+
if (value.chatUserModificationEvent !== undefined)
|
|
1033
|
+
return visitor.chatUserModificationEvent(value.chatUserModificationEvent);
|
|
1034
|
+
if (value.terminalUserInteractionEvent !== undefined)
|
|
1035
|
+
return visitor.terminalUserInteractionEvent(value.terminalUserInteractionEvent);
|
|
1036
|
+
if (value.featureDevEvent !== undefined)
|
|
1037
|
+
return visitor.featureDevEvent(value.featureDevEvent);
|
|
1038
|
+
if (value.featureDevCodeGenerationEvent !== undefined)
|
|
1039
|
+
return visitor.featureDevCodeGenerationEvent(value.featureDevCodeGenerationEvent);
|
|
1040
|
+
if (value.featureDevCodeAcceptanceEvent !== undefined)
|
|
1041
|
+
return visitor.featureDevCodeAcceptanceEvent(value.featureDevCodeAcceptanceEvent);
|
|
1042
|
+
if (value.inlineChatEvent !== undefined)
|
|
1043
|
+
return visitor.inlineChatEvent(value.inlineChatEvent);
|
|
1044
|
+
if (value.transformEvent !== undefined)
|
|
1045
|
+
return visitor.transformEvent(value.transformEvent);
|
|
1046
|
+
if (value.docGenerationEvent !== undefined)
|
|
1047
|
+
return visitor.docGenerationEvent(value.docGenerationEvent);
|
|
1048
|
+
if (value.docV2GenerationEvent !== undefined)
|
|
1049
|
+
return visitor.docV2GenerationEvent(value.docV2GenerationEvent);
|
|
1050
|
+
if (value.docV2AcceptanceEvent !== undefined)
|
|
1051
|
+
return visitor.docV2AcceptanceEvent(value.docV2AcceptanceEvent);
|
|
1052
|
+
if (value.testGenerationEvent !== undefined)
|
|
1053
|
+
return visitor.testGenerationEvent(value.testGenerationEvent);
|
|
1054
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1055
|
+
};
|
|
1056
|
+
})(TelemetryEvent || (TelemetryEvent = {}));
|
|
1057
|
+
export const TelemetryEventFilterSensitiveLog = (obj) => {
|
|
1058
|
+
if (obj.userTriggerDecisionEvent !== undefined)
|
|
1059
|
+
return { userTriggerDecisionEvent: UserTriggerDecisionEventFilterSensitiveLog(obj.userTriggerDecisionEvent)
|
|
1060
|
+
};
|
|
1061
|
+
if (obj.codeCoverageEvent !== undefined)
|
|
1062
|
+
return { codeCoverageEvent: obj.codeCoverageEvent
|
|
1063
|
+
};
|
|
1064
|
+
if (obj.userModificationEvent !== undefined)
|
|
1065
|
+
return { userModificationEvent: obj.userModificationEvent
|
|
1066
|
+
};
|
|
1067
|
+
if (obj.codeScanEvent !== undefined)
|
|
1068
|
+
return { codeScanEvent: obj.codeScanEvent
|
|
1069
|
+
};
|
|
1070
|
+
if (obj.codeScanSucceededEvent !== undefined)
|
|
1071
|
+
return { codeScanSucceededEvent: obj.codeScanSucceededEvent
|
|
1072
|
+
};
|
|
1073
|
+
if (obj.codeScanFailedEvent !== undefined)
|
|
1074
|
+
return { codeScanFailedEvent: obj.codeScanFailedEvent
|
|
1075
|
+
};
|
|
1076
|
+
if (obj.codeScanRemediationsEvent !== undefined)
|
|
1077
|
+
return { codeScanRemediationsEvent: obj.codeScanRemediationsEvent
|
|
1078
|
+
};
|
|
1079
|
+
if (obj.codeFixGenerationEvent !== undefined)
|
|
1080
|
+
return { codeFixGenerationEvent: obj.codeFixGenerationEvent
|
|
1081
|
+
};
|
|
1082
|
+
if (obj.codeFixAcceptanceEvent !== undefined)
|
|
1083
|
+
return { codeFixAcceptanceEvent: obj.codeFixAcceptanceEvent
|
|
1084
|
+
};
|
|
1085
|
+
if (obj.metricData !== undefined)
|
|
1086
|
+
return { metricData: obj.metricData
|
|
1087
|
+
};
|
|
1088
|
+
if (obj.chatAddMessageEvent !== undefined)
|
|
1089
|
+
return { chatAddMessageEvent: obj.chatAddMessageEvent
|
|
1090
|
+
};
|
|
1091
|
+
if (obj.chatInteractWithMessageEvent !== undefined)
|
|
1092
|
+
return { chatInteractWithMessageEvent: ChatInteractWithMessageEventFilterSensitiveLog(obj.chatInteractWithMessageEvent)
|
|
1093
|
+
};
|
|
1094
|
+
if (obj.chatUserModificationEvent !== undefined)
|
|
1095
|
+
return { chatUserModificationEvent: obj.chatUserModificationEvent
|
|
1096
|
+
};
|
|
1097
|
+
if (obj.terminalUserInteractionEvent !== undefined)
|
|
1098
|
+
return { terminalUserInteractionEvent: obj.terminalUserInteractionEvent
|
|
1099
|
+
};
|
|
1100
|
+
if (obj.featureDevEvent !== undefined)
|
|
1101
|
+
return { featureDevEvent: obj.featureDevEvent
|
|
1102
|
+
};
|
|
1103
|
+
if (obj.featureDevCodeGenerationEvent !== undefined)
|
|
1104
|
+
return { featureDevCodeGenerationEvent: obj.featureDevCodeGenerationEvent
|
|
1105
|
+
};
|
|
1106
|
+
if (obj.featureDevCodeAcceptanceEvent !== undefined)
|
|
1107
|
+
return { featureDevCodeAcceptanceEvent: obj.featureDevCodeAcceptanceEvent
|
|
1108
|
+
};
|
|
1109
|
+
if (obj.inlineChatEvent !== undefined)
|
|
1110
|
+
return { inlineChatEvent: obj.inlineChatEvent
|
|
1111
|
+
};
|
|
1112
|
+
if (obj.transformEvent !== undefined)
|
|
1113
|
+
return { transformEvent: obj.transformEvent
|
|
1114
|
+
};
|
|
1115
|
+
if (obj.docGenerationEvent !== undefined)
|
|
1116
|
+
return { docGenerationEvent: obj.docGenerationEvent
|
|
1117
|
+
};
|
|
1118
|
+
if (obj.docV2GenerationEvent !== undefined)
|
|
1119
|
+
return { docV2GenerationEvent: obj.docV2GenerationEvent
|
|
1120
|
+
};
|
|
1121
|
+
if (obj.docV2AcceptanceEvent !== undefined)
|
|
1122
|
+
return { docV2AcceptanceEvent: obj.docV2AcceptanceEvent
|
|
1123
|
+
};
|
|
1124
|
+
if (obj.testGenerationEvent !== undefined)
|
|
1125
|
+
return { testGenerationEvent: obj.testGenerationEvent
|
|
1126
|
+
};
|
|
1127
|
+
if (obj.$unknown !== undefined)
|
|
1128
|
+
return { [obj.$unknown[0]]: 'UNKNOWN' };
|
|
1129
|
+
};
|
|
1130
|
+
export const SendTelemetryEventRequestFilterSensitiveLog = (obj) => ({
|
|
1131
|
+
...obj,
|
|
1132
|
+
...(obj.telemetryEvent && { telemetryEvent: TelemetryEventFilterSensitiveLog(obj.telemetryEvent)
|
|
1133
|
+
}),
|
|
1134
|
+
});
|
|
1135
|
+
export const ServiceQuotaExceededExceptionReason = {
|
|
1136
|
+
CONVERSATION_LIMIT_EXCEEDED: "CONVERSATION_LIMIT_EXCEEDED",
|
|
1137
|
+
MONTHLY_REQUEST_COUNT: "MONTHLY_REQUEST_COUNT",
|
|
1138
|
+
OVERAGE_REQUEST_LIMIT_EXCEEDED: "OVERAGE_REQUEST_LIMIT_EXCEEDED",
|
|
1139
|
+
};
|
|
1140
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
1141
|
+
name = "ServiceQuotaExceededException";
|
|
1142
|
+
$fault = "client";
|
|
1143
|
+
reason;
|
|
1144
|
+
constructor(opts) {
|
|
1145
|
+
super({
|
|
1146
|
+
name: "ServiceQuotaExceededException",
|
|
1147
|
+
$fault: "client",
|
|
1148
|
+
...opts
|
|
1149
|
+
});
|
|
1150
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
1151
|
+
this.reason = opts.reason;
|
|
1152
|
+
}
|
|
1153
|
+
}
|
|
1154
|
+
export const StartCodeAnalysisResponseFilterSensitiveLog = (obj) => ({
|
|
1155
|
+
...obj,
|
|
1156
|
+
...(obj.errorMessage && { errorMessage: SENSITIVE_STRING
|
|
1157
|
+
}),
|
|
1158
|
+
});
|
|
1159
|
+
export const StartCodeFixJobRequestFilterSensitiveLog = (obj) => ({
|
|
1160
|
+
...obj,
|
|
1161
|
+
...(obj.description && { description: SENSITIVE_STRING
|
|
1162
|
+
}),
|
|
1163
|
+
});
|
|
1164
|
+
export const TargetCodeFilterSensitiveLog = (obj) => ({
|
|
1165
|
+
...obj,
|
|
1166
|
+
...(obj.relativeTargetPath && { relativeTargetPath: SENSITIVE_STRING
|
|
1167
|
+
}),
|
|
1168
|
+
});
|
|
1169
|
+
export const TaskAssistPlanStepAction = {
|
|
1170
|
+
CREATE: "CREATE",
|
|
1171
|
+
DELETE: "DELETE",
|
|
1172
|
+
MODIFY: "MODIFY",
|
|
1173
|
+
UNKNOWN: "UNKNOWN",
|
|
1174
|
+
};
|
|
1175
|
+
export const TestGenerationJobStatus = {
|
|
1176
|
+
COMPLETED: "COMPLETED",
|
|
1177
|
+
FAILED: "FAILED",
|
|
1178
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
1179
|
+
};
|
|
1180
|
+
export const TestGenerationJobFilterSensitiveLog = (obj) => ({
|
|
1181
|
+
...obj,
|
|
1182
|
+
...(obj.shortAnswer && { shortAnswer: SENSITIVE_STRING
|
|
1183
|
+
}),
|
|
1184
|
+
...(obj.jobSummary && { jobSummary: SENSITIVE_STRING
|
|
1185
|
+
}),
|
|
1186
|
+
...(obj.jobPlan && { jobPlan: SENSITIVE_STRING
|
|
1187
|
+
}),
|
|
1188
|
+
...(obj.packageInfoList && { packageInfoList: obj.packageInfoList.map(item => PackageInfoFilterSensitiveLog(item))
|
|
1189
|
+
}),
|
|
1190
|
+
});
|
|
1191
|
+
export const TransformationDotNetRuntimeEnv = {
|
|
1192
|
+
NET_5_0: "NET_5_0",
|
|
1193
|
+
NET_6_0: "NET_6_0",
|
|
1194
|
+
NET_7_0: "NET_7_0",
|
|
1195
|
+
NET_8_0: "NET_8_0",
|
|
1196
|
+
NET_9_0: "NET_9_0",
|
|
1197
|
+
NET_STANDARD_2_0: "NET_STANDARD_2_0",
|
|
1198
|
+
};
|
|
1199
|
+
export const TransformationJavaRuntimeEnv = {
|
|
1200
|
+
JVM_11: "JVM_11",
|
|
1201
|
+
JVM_17: "JVM_17",
|
|
1202
|
+
JVM_21: "JVM_21",
|
|
1203
|
+
JVM_8: "JVM_8",
|
|
1204
|
+
};
|
|
1205
|
+
export const TransformationStatus = {
|
|
1206
|
+
ACCEPTED: "ACCEPTED",
|
|
1207
|
+
COMPLETED: "COMPLETED",
|
|
1208
|
+
CREATED: "CREATED",
|
|
1209
|
+
FAILED: "FAILED",
|
|
1210
|
+
PARTIALLY_COMPLETED: "PARTIALLY_COMPLETED",
|
|
1211
|
+
PAUSED: "PAUSED",
|
|
1212
|
+
PLANNED: "PLANNED",
|
|
1213
|
+
PLANNING: "PLANNING",
|
|
1214
|
+
PREPARED: "PREPARED",
|
|
1215
|
+
PREPARING: "PREPARING",
|
|
1216
|
+
REJECTED: "REJECTED",
|
|
1217
|
+
RESUMED: "RESUMED",
|
|
1218
|
+
STARTED: "STARTED",
|
|
1219
|
+
STOPPED: "STOPPED",
|
|
1220
|
+
STOPPING: "STOPPING",
|
|
1221
|
+
TRANSFORMED: "TRANSFORMED",
|
|
1222
|
+
TRANSFORMING: "TRANSFORMING",
|
|
1223
|
+
};
|
|
1224
|
+
export const TransformationLanguage = {
|
|
1225
|
+
COBOL: "COBOL",
|
|
1226
|
+
C_SHARP: "C_SHARP",
|
|
1227
|
+
JAVA_11: "JAVA_11",
|
|
1228
|
+
JAVA_17: "JAVA_17",
|
|
1229
|
+
JAVA_21: "JAVA_21",
|
|
1230
|
+
JAVA_8: "JAVA_8",
|
|
1231
|
+
JCL: "JCL",
|
|
1232
|
+
PL_I: "PL_I",
|
|
1233
|
+
};
|
|
1234
|
+
export const TransformationOperatingSystemFamily = {
|
|
1235
|
+
LINUX: "LINUX",
|
|
1236
|
+
WINDOWS: "WINDOWS",
|
|
1237
|
+
};
|
|
1238
|
+
export const TransformationMainframeRuntimeEnv = {
|
|
1239
|
+
MAINFRAME: "MAINFRAME",
|
|
1240
|
+
};
|
|
1241
|
+
export var TransformationRuntimeEnv;
|
|
1242
|
+
(function (TransformationRuntimeEnv) {
|
|
1243
|
+
TransformationRuntimeEnv.visit = (value, visitor) => {
|
|
1244
|
+
if (value.java !== undefined)
|
|
1245
|
+
return visitor.java(value.java);
|
|
1246
|
+
if (value.dotNet !== undefined)
|
|
1247
|
+
return visitor.dotNet(value.dotNet);
|
|
1248
|
+
if (value.mainframe !== undefined)
|
|
1249
|
+
return visitor.mainframe(value.mainframe);
|
|
1250
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1251
|
+
};
|
|
1252
|
+
})(TransformationRuntimeEnv || (TransformationRuntimeEnv = {}));
|
|
1253
|
+
export var TransformationProjectArtifactDescriptor;
|
|
1254
|
+
(function (TransformationProjectArtifactDescriptor) {
|
|
1255
|
+
TransformationProjectArtifactDescriptor.visit = (value, visitor) => {
|
|
1256
|
+
if (value.sourceCodeArtifact !== undefined)
|
|
1257
|
+
return visitor.sourceCodeArtifact(value.sourceCodeArtifact);
|
|
1258
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1259
|
+
};
|
|
1260
|
+
})(TransformationProjectArtifactDescriptor || (TransformationProjectArtifactDescriptor = {}));
|
|
1261
|
+
export const TransformationType = {
|
|
1262
|
+
DOCUMENT_GENERATION: "DOCUMENT_GENERATION",
|
|
1263
|
+
LANGUAGE_UPGRADE: "LANGUAGE_UPGRADE",
|
|
1264
|
+
};
|
|
1265
|
+
export const TransformationStepStatus = {
|
|
1266
|
+
COMPLETED: "COMPLETED",
|
|
1267
|
+
CREATED: "CREATED",
|
|
1268
|
+
FAILED: "FAILED",
|
|
1269
|
+
PARTIALLY_COMPLETED: "PARTIALLY_COMPLETED",
|
|
1270
|
+
PAUSED: "PAUSED",
|
|
1271
|
+
SKIPPED: "SKIPPED",
|
|
1272
|
+
STOPPED: "STOPPED",
|
|
1273
|
+
};
|
|
1274
|
+
export const TransformationUserActionStatus = {
|
|
1275
|
+
COMPLETED: "COMPLETED",
|
|
1276
|
+
REJECTED: "REJECTED",
|
|
1277
|
+
};
|
|
1278
|
+
export const UsageLimitType = {
|
|
1279
|
+
AGENTIC_REQUEST: "AGENTIC_REQUEST",
|
|
1280
|
+
AI_EDITOR: "AI_EDITOR",
|
|
1281
|
+
CODE_COMPLETIONS: "CODE_COMPLETIONS",
|
|
1282
|
+
TRANSFORM: "TRANSFORM",
|
|
1283
|
+
};
|
|
1284
|
+
export const UsageLimitUpdateRequestStatus = {
|
|
1285
|
+
APPROVED: "APPROVED",
|
|
1286
|
+
PENDING_REVIEW: "PENDING_REVIEW",
|
|
1287
|
+
REJECTED: "REJECTED",
|
|
1288
|
+
};
|
|
1289
|
+
export const UserInfoFilterSensitiveLog = (obj) => ({
|
|
1290
|
+
...obj,
|
|
1291
|
+
...(obj.email && { email: SENSITIVE_STRING
|
|
1292
|
+
}),
|
|
1293
|
+
});
|
|
1294
|
+
export const EventFilterSensitiveLog = (obj) => ({
|
|
1295
|
+
...obj,
|
|
1296
|
+
...(obj.eventBlob && { eventBlob: SENSITIVE_STRING
|
|
1297
|
+
}),
|
|
1298
|
+
});
|
|
1299
|
+
export const ListEventsResponseFilterSensitiveLog = (obj) => ({
|
|
1300
|
+
...obj,
|
|
1301
|
+
...(obj.events && { events: obj.events.map(item => EventFilterSensitiveLog(item))
|
|
1302
|
+
}),
|
|
1303
|
+
});
|
|
1304
|
+
export const ModelProvider = {
|
|
1305
|
+
DEFAULT: "DEFAULT",
|
|
1306
|
+
};
|
|
1307
|
+
export const InputType = {
|
|
1308
|
+
IMAGE: "IMAGE",
|
|
1309
|
+
TEXT: "TEXT",
|
|
1310
|
+
};
|
|
1311
|
+
export const CreateUserMemoryEntryInputFilterSensitiveLog = (obj) => ({
|
|
1312
|
+
...obj,
|
|
1313
|
+
...(obj.memoryEntryString && { memoryEntryString: SENSITIVE_STRING
|
|
1314
|
+
}),
|
|
1315
|
+
});
|
|
1316
|
+
export const MemoryStatus = {
|
|
1317
|
+
DECRYPTION_FAILURE: "DECRYPTION_FAILURE",
|
|
1318
|
+
VALID: "VALID",
|
|
1319
|
+
};
|
|
1320
|
+
export const MemoryEntryMetadataFilterSensitiveLog = (obj) => ({
|
|
1321
|
+
...obj,
|
|
1322
|
+
...(obj.attributes && { attributes: Object.entries(obj.attributes).reduce((acc, [key, value]) => (acc[key] =
|
|
1323
|
+
SENSITIVE_STRING
|
|
1324
|
+
,
|
|
1325
|
+
acc), {})
|
|
1326
|
+
}),
|
|
1327
|
+
});
|
|
1328
|
+
export const MemoryEntryFilterSensitiveLog = (obj) => ({
|
|
1329
|
+
...obj,
|
|
1330
|
+
...(obj.memoryEntryString && { memoryEntryString: SENSITIVE_STRING
|
|
1331
|
+
}),
|
|
1332
|
+
...(obj.metadata && { metadata: MemoryEntryMetadataFilterSensitiveLog(obj.metadata)
|
|
1333
|
+
}),
|
|
1334
|
+
});
|
|
1335
|
+
export const CreateUserMemoryEntryOutputFilterSensitiveLog = (obj) => ({
|
|
1336
|
+
...obj,
|
|
1337
|
+
...(obj.memoryEntry && { memoryEntry: MemoryEntryFilterSensitiveLog(obj.memoryEntry)
|
|
1338
|
+
}),
|
|
1339
|
+
});
|
|
1340
|
+
export const ListUserMemoryEntriesOutputFilterSensitiveLog = (obj) => ({
|
|
1341
|
+
...obj,
|
|
1342
|
+
...(obj.memoryEntries && { memoryEntries: obj.memoryEntries.map(item => MemoryEntryFilterSensitiveLog(item))
|
|
1343
|
+
}),
|
|
1344
|
+
});
|
|
1345
|
+
export const SubscriptionProvider = {
|
|
1346
|
+
AWS_ACCOUNT: "AWS_ACCOUNT",
|
|
1347
|
+
STRIPE: "STRIPE",
|
|
1348
|
+
};
|
|
1349
|
+
export const SubscriptionType = {
|
|
1350
|
+
Q_DEVELOPER_STANDALONE: "Q_DEVELOPER_STANDALONE",
|
|
1351
|
+
Q_DEVELOPER_STANDALONE_FREE: "Q_DEVELOPER_STANDALONE_FREE",
|
|
1352
|
+
Q_DEVELOPER_STANDALONE_POWER: "Q_DEVELOPER_STANDALONE_POWER",
|
|
1353
|
+
Q_DEVELOPER_STANDALONE_PRO: "Q_DEVELOPER_STANDALONE_PRO",
|
|
1354
|
+
Q_DEVELOPER_STANDALONE_PRO_PLUS: "Q_DEVELOPER_STANDALONE_PRO_PLUS",
|
|
1355
|
+
};
|
|
1356
|
+
export const SubscriptionStatus = {
|
|
1357
|
+
ACTIVE: "ACTIVE",
|
|
1358
|
+
INACTIVE: "INACTIVE",
|
|
1359
|
+
};
|
|
1360
|
+
export const SubscriptionName = {
|
|
1361
|
+
KIRO_FREE: "KIRO_FREE",
|
|
1362
|
+
KIRO_POWER: "KIRO_POWER",
|
|
1363
|
+
KIRO_PRO: "KIRO_PRO",
|
|
1364
|
+
KIRO_PRO_PLUS: "KIRO_PRO_PLUS",
|
|
1365
|
+
};
|
|
1366
|
+
export const Currency = {
|
|
1367
|
+
USD: "USD",
|
|
1368
|
+
};
|
|
1369
|
+
export const GetTestGenerationResponseFilterSensitiveLog = (obj) => ({
|
|
1370
|
+
...obj,
|
|
1371
|
+
...(obj.testGenerationJob && { testGenerationJob: TestGenerationJobFilterSensitiveLog(obj.testGenerationJob)
|
|
1372
|
+
}),
|
|
1373
|
+
});
|
|
1374
|
+
export const StartTestGenerationRequestFilterSensitiveLog = (obj) => ({
|
|
1375
|
+
...obj,
|
|
1376
|
+
...(obj.targetCodeList && { targetCodeList: obj.targetCodeList.map(item => TargetCodeFilterSensitiveLog(item))
|
|
1377
|
+
}),
|
|
1378
|
+
...(obj.userInput && { userInput: SENSITIVE_STRING
|
|
1379
|
+
}),
|
|
1380
|
+
});
|
|
1381
|
+
export const StartTestGenerationResponseFilterSensitiveLog = (obj) => ({
|
|
1382
|
+
...obj,
|
|
1383
|
+
...(obj.testGenerationJob && { testGenerationJob: TestGenerationJobFilterSensitiveLog(obj.testGenerationJob)
|
|
1384
|
+
}),
|
|
1385
|
+
});
|
|
1386
|
+
export const ResourceType = {
|
|
1387
|
+
AGENTIC_REQUEST: "AGENTIC_REQUEST",
|
|
1388
|
+
CREDIT: "CREDIT",
|
|
1389
|
+
SPEC: "SPEC",
|
|
1390
|
+
VIBE: "VIBE",
|
|
1391
|
+
};
|
|
1392
|
+
export const OverageCapability = {
|
|
1393
|
+
OVERAGE_CAPABLE: "OVERAGE_CAPABLE",
|
|
1394
|
+
OVERAGE_INCAPABLE: "OVERAGE_INCAPABLE",
|
|
1395
|
+
};
|
|
1396
|
+
export const SubscriptionManagementTarget = {
|
|
1397
|
+
MANAGE: "MANAGE",
|
|
1398
|
+
PURCHASE: "PURCHASE",
|
|
1399
|
+
};
|
|
1400
|
+
export const UpgradeCapability = {
|
|
1401
|
+
UPGRADE_CAPABLE: "UPGRADE_CAPABLE",
|
|
1402
|
+
UPGRADE_INCAPABLE: "UPGRADE_INCAPABLE",
|
|
1403
|
+
};
|
|
1404
|
+
export const FreeTrialStatus = {
|
|
1405
|
+
ACTIVE: "ACTIVE",
|
|
1406
|
+
EXPIRED: "EXPIRED",
|
|
1407
|
+
};
|
|
1408
|
+
export const GetUsageLimitsResponseFilterSensitiveLog = (obj) => ({
|
|
1409
|
+
...obj,
|
|
1410
|
+
...(obj.userInfo && { userInfo: UserInfoFilterSensitiveLog(obj.userInfo)
|
|
1411
|
+
}),
|
|
1412
|
+
});
|
|
1413
|
+
export class UpdateUsageLimitQuotaExceededException extends __BaseException {
|
|
1414
|
+
name = "UpdateUsageLimitQuotaExceededException";
|
|
1415
|
+
$fault = "client";
|
|
1416
|
+
constructor(opts) {
|
|
1417
|
+
super({
|
|
1418
|
+
name: "UpdateUsageLimitQuotaExceededException",
|
|
1419
|
+
$fault: "client",
|
|
1420
|
+
...opts
|
|
1421
|
+
});
|
|
1422
|
+
Object.setPrototypeOf(this, UpdateUsageLimitQuotaExceededException.prototype);
|
|
1423
|
+
}
|
|
1424
|
+
}
|
|
1425
|
+
export const GetTaskAssistCodeGenerationResponseFilterSensitiveLog = (obj) => ({
|
|
1426
|
+
...obj,
|
|
1427
|
+
...(obj.codeGenerationStatusDetail && { codeGenerationStatusDetail: SENSITIVE_STRING
|
|
1428
|
+
}),
|
|
1429
|
+
});
|