@aws/lsp-codewhisperer 0.0.83 → 0.0.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +24 -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 +70 -14
- package/out/language-server/agenticChat/agenticChatController.js.map +1 -1
- package/out/language-server/agenticChat/agenticChatResultStream.d.ts +1 -0
- package/out/language-server/agenticChat/agenticChatResultStream.js +21 -0
- package/out/language-server/agenticChat/agenticChatResultStream.js.map +1 -1
- package/out/language-server/agenticChat/constants/constants.d.ts +23 -0
- package/out/language-server/agenticChat/constants/constants.js +32 -1
- package/out/language-server/agenticChat/constants/constants.js.map +1 -1
- package/out/language-server/agenticChat/constants/modelSelection.d.ts +2 -2
- package/out/language-server/agenticChat/constants/modelSelection.js +6 -5
- package/out/language-server/agenticChat/constants/modelSelection.js.map +1 -1
- package/out/language-server/agenticChat/context/agenticChatTriggerContext.d.ts +2 -1
- package/out/language-server/agenticChat/context/agenticChatTriggerContext.js +3 -1
- package/out/language-server/agenticChat/context/agenticChatTriggerContext.js.map +1 -1
- package/out/language-server/agenticChat/retry/delayInterceptor.d.ts +33 -0
- package/out/language-server/agenticChat/retry/delayInterceptor.js +79 -0
- package/out/language-server/agenticChat/retry/delayInterceptor.js.map +1 -0
- package/out/language-server/agenticChat/retry/errorTransformer.d.ts +15 -0
- package/out/language-server/agenticChat/retry/errorTransformer.js +152 -0
- package/out/language-server/agenticChat/retry/errorTransformer.js.map +1 -0
- package/out/language-server/agenticChat/retry/index.d.ts +3 -0
- package/out/language-server/agenticChat/retry/index.js +11 -0
- package/out/language-server/agenticChat/retry/index.js.map +1 -0
- package/out/language-server/agenticChat/retry/qRetryStrategy.d.ts +20 -0
- package/out/language-server/agenticChat/retry/qRetryStrategy.js +71 -0
- package/out/language-server/agenticChat/retry/qRetryStrategy.js.map +1 -0
- package/out/language-server/agenticChat/retry/retryClassifier.d.ts +32 -0
- package/out/language-server/agenticChat/retry/retryClassifier.js +122 -0
- package/out/language-server/agenticChat/retry/retryClassifier.js.map +1 -0
- package/out/language-server/agenticChat/tabBarController.d.ts +4 -0
- package/out/language-server/agenticChat/tabBarController.js +19 -2
- package/out/language-server/agenticChat/tabBarController.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 +7 -0
- package/out/language-server/chat/chatSessionService.js +37 -80
- package/out/language-server/chat/chatSessionService.js.map +1 -1
- package/out/language-server/chat/constants.d.ts +1 -0
- package/out/language-server/chat/constants.js +2 -1
- package/out/language-server/chat/constants.js.map +1 -1
- package/out/language-server/chat/telemetry/chatTelemetryController.d.ts +1 -0
- package/out/language-server/chat/telemetry/chatTelemetryController.js +11 -0
- 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/codeWhispererServer.d.ts +0 -1
- package/out/language-server/inline-completion/codeWhispererServer.js +14 -478
- package/out/language-server/inline-completion/codeWhispererServer.js.map +1 -1
- package/out/language-server/inline-completion/handler/editCompletionHandler.d.ts +54 -0
- package/out/language-server/inline-completion/handler/editCompletionHandler.js +321 -0
- package/out/language-server/inline-completion/handler/editCompletionHandler.js.map +1 -0
- package/out/language-server/inline-completion/handler/inlineCompletionHandler.d.ts +32 -0
- package/out/language-server/inline-completion/handler/inlineCompletionHandler.js +379 -0
- package/out/language-server/inline-completion/handler/inlineCompletionHandler.js.map +1 -0
- package/out/language-server/inline-completion/handler/sessionResultsHandler.d.ts +23 -0
- package/out/language-server/inline-completion/handler/sessionResultsHandler.js +124 -0
- package/out/language-server/inline-completion/handler/sessionResultsHandler.js.map +1 -0
- 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/diffUtils.d.ts +28 -11
- package/out/language-server/inline-completion/utils/diffUtils.js +269 -117
- package/out/language-server/inline-completion/utils/diffUtils.js.map +1 -1
- package/out/language-server/inline-completion/utils/mergeRightUtils.d.ts +1 -9
- package/out/language-server/inline-completion/utils/mergeRightUtils.js +6 -34
- package/out/language-server/inline-completion/utils/mergeRightUtils.js.map +1 -1
- package/out/language-server/inline-completion/utils/textDocumentUtils.d.ts +3 -0
- package/out/language-server/inline-completion/utils/textDocumentUtils.js +37 -0
- package/out/language-server/inline-completion/utils/textDocumentUtils.js.map +1 -0
- package/out/language-server/inline-completion/utils/triggerUtils.d.ts +8 -0
- package/out/language-server/inline-completion/utils/triggerUtils.js +42 -0
- package/out/language-server/inline-completion/utils/triggerUtils.js.map +1 -0
- 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 -9
- 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 +81 -149
- package/out/shared/codeWhispererService.js.map +1 -1
- package/out/shared/streamingClientService.d.ts +6 -1
- package/out/shared/streamingClientService.js +33 -12
- 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 +12 -4
- package/out/shared/telemetry/types.js +1 -0
- 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 +13 -4
- package/out/shared/utils.js +23 -38
- package/out/shared/utils.js.map +1 -1
- package/package.json +8 -6
- 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/out/language-server/inline-completion/editCompletionHandler.d.ts +0 -54
- package/out/language-server/inline-completion/editCompletionHandler.js +0 -318
- package/out/language-server/inline-completion/editCompletionHandler.js.map +0 -1
- package/out/language-server/inline-completion/trigger.d.ts +0 -8
- package/out/language-server/inline-completion/trigger.js +0 -42
- package/out/language-server/inline-completion/trigger.js.map +0 -1
- /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,750 @@
|
|
|
1
|
+
import { CodeWhispererServiceException as __BaseException } from "../models/CodeWhispererServiceException";
|
|
2
|
+
import { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, } from "../models/models_0";
|
|
3
|
+
import { awsExpectUnion as __expectUnion, loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody, } from "@aws-sdk/core";
|
|
4
|
+
import { requestBuilder as rb } from "@smithy/core";
|
|
5
|
+
import { decorateServiceException as __decorateServiceException, expectLong as __expectLong, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectObject as __expectObject, expectString as __expectString, parseEpochTimestamp as __parseEpochTimestamp, _json, collectBody, map, take, withBaseException, } from "@smithy/smithy-client";
|
|
6
|
+
import { v4 as generateIdempotencyToken } from "uuid";
|
|
7
|
+
export const se_AllowVendedLogDeliveryForResourceCommand = async (input, context) => {
|
|
8
|
+
const b = rb(input, context);
|
|
9
|
+
const headers = {
|
|
10
|
+
'content-type': 'application/json',
|
|
11
|
+
};
|
|
12
|
+
b.bp("/AllowVendedLogDeliveryForResource");
|
|
13
|
+
let body;
|
|
14
|
+
body = JSON.stringify(take(input, {
|
|
15
|
+
'deliverySourceArn': [],
|
|
16
|
+
'resourceArnBeingAuthorized': [],
|
|
17
|
+
}));
|
|
18
|
+
b.m("POST")
|
|
19
|
+
.h(headers)
|
|
20
|
+
.b(body);
|
|
21
|
+
return b.build();
|
|
22
|
+
};
|
|
23
|
+
export const se_AssociateCustomizationPermissionCommand = async (input, context) => {
|
|
24
|
+
const b = rb(input, context);
|
|
25
|
+
const headers = {
|
|
26
|
+
'content-type': 'application/json',
|
|
27
|
+
};
|
|
28
|
+
b.bp("/AssociateCustomizationPermission");
|
|
29
|
+
let body;
|
|
30
|
+
body = JSON.stringify(take(input, {
|
|
31
|
+
'identifier': [],
|
|
32
|
+
'permission': _ => _json(_),
|
|
33
|
+
}));
|
|
34
|
+
b.m("POST")
|
|
35
|
+
.h(headers)
|
|
36
|
+
.b(body);
|
|
37
|
+
return b.build();
|
|
38
|
+
};
|
|
39
|
+
export const se_CreateCustomizationCommand = async (input, context) => {
|
|
40
|
+
const b = rb(input, context);
|
|
41
|
+
const headers = {
|
|
42
|
+
'content-type': 'application/json',
|
|
43
|
+
};
|
|
44
|
+
b.bp("/CreateCustomization");
|
|
45
|
+
let body;
|
|
46
|
+
body = JSON.stringify(take(input, {
|
|
47
|
+
'clientToken': [],
|
|
48
|
+
'customizationName': [],
|
|
49
|
+
'dataReference': _ => _json(_),
|
|
50
|
+
'description': [],
|
|
51
|
+
'includeRepos': _ => _json(_),
|
|
52
|
+
'profileArn': [],
|
|
53
|
+
'tags': _ => _json(_),
|
|
54
|
+
}));
|
|
55
|
+
b.m("POST")
|
|
56
|
+
.h(headers)
|
|
57
|
+
.b(body);
|
|
58
|
+
return b.build();
|
|
59
|
+
};
|
|
60
|
+
export const se_CreateProfileCommand = async (input, context) => {
|
|
61
|
+
const b = rb(input, context);
|
|
62
|
+
const headers = {
|
|
63
|
+
'content-type': 'application/json',
|
|
64
|
+
};
|
|
65
|
+
b.bp("/CreateProfile");
|
|
66
|
+
let body;
|
|
67
|
+
body = JSON.stringify(take(input, {
|
|
68
|
+
'activeFunctionalities': _ => _json(_),
|
|
69
|
+
'clientToken': [true, _ => _ ?? generateIdempotencyToken()],
|
|
70
|
+
'description': [],
|
|
71
|
+
'identitySource': _ => _json(_),
|
|
72
|
+
'kmsKeyArn': [],
|
|
73
|
+
'optInFeatures': _ => _json(_),
|
|
74
|
+
'profileName': [],
|
|
75
|
+
'referenceTrackerConfiguration': _ => _json(_),
|
|
76
|
+
'resourcePolicy': _ => _json(_),
|
|
77
|
+
'tags': _ => _json(_),
|
|
78
|
+
}));
|
|
79
|
+
b.m("POST")
|
|
80
|
+
.h(headers)
|
|
81
|
+
.b(body);
|
|
82
|
+
return b.build();
|
|
83
|
+
};
|
|
84
|
+
export const se_DeleteCustomizationCommand = async (input, context) => {
|
|
85
|
+
const b = rb(input, context);
|
|
86
|
+
const headers = {
|
|
87
|
+
'content-type': 'application/json',
|
|
88
|
+
};
|
|
89
|
+
b.bp("/DeleteCustomization");
|
|
90
|
+
let body;
|
|
91
|
+
body = JSON.stringify(take(input, {
|
|
92
|
+
'clientToken': [],
|
|
93
|
+
'identifier': [],
|
|
94
|
+
}));
|
|
95
|
+
b.m("POST")
|
|
96
|
+
.h(headers)
|
|
97
|
+
.b(body);
|
|
98
|
+
return b.build();
|
|
99
|
+
};
|
|
100
|
+
export const se_DeleteProfileCommand = async (input, context) => {
|
|
101
|
+
const b = rb(input, context);
|
|
102
|
+
const headers = {
|
|
103
|
+
'content-type': 'application/json',
|
|
104
|
+
};
|
|
105
|
+
b.bp("/DeleteProfile");
|
|
106
|
+
let body;
|
|
107
|
+
body = JSON.stringify(take(input, {
|
|
108
|
+
'profileArn': [],
|
|
109
|
+
}));
|
|
110
|
+
b.m("POST")
|
|
111
|
+
.h(headers)
|
|
112
|
+
.b(body);
|
|
113
|
+
return b.build();
|
|
114
|
+
};
|
|
115
|
+
export const se_DisassociateCustomizationPermissionCommand = async (input, context) => {
|
|
116
|
+
const b = rb(input, context);
|
|
117
|
+
const headers = {
|
|
118
|
+
'content-type': 'application/json',
|
|
119
|
+
};
|
|
120
|
+
b.bp("/DisassociateCustomizationPermission");
|
|
121
|
+
let body;
|
|
122
|
+
body = JSON.stringify(take(input, {
|
|
123
|
+
'identifier': [],
|
|
124
|
+
'permission': _ => _json(_),
|
|
125
|
+
}));
|
|
126
|
+
b.m("POST")
|
|
127
|
+
.h(headers)
|
|
128
|
+
.b(body);
|
|
129
|
+
return b.build();
|
|
130
|
+
};
|
|
131
|
+
export const se_GenerateRecommendationsCommand = async (input, context) => {
|
|
132
|
+
const b = rb(input, context);
|
|
133
|
+
const headers = {
|
|
134
|
+
'content-type': 'application/json',
|
|
135
|
+
};
|
|
136
|
+
b.bp("/GenerateRecommendations");
|
|
137
|
+
let body;
|
|
138
|
+
body = JSON.stringify(take(input, {
|
|
139
|
+
'fileContext': _ => _json(_),
|
|
140
|
+
'maxResults': [],
|
|
141
|
+
'nextToken': [],
|
|
142
|
+
'referenceTrackerConfiguration': _ => _json(_),
|
|
143
|
+
'supplementalContexts': _ => _json(_),
|
|
144
|
+
}));
|
|
145
|
+
b.m("POST")
|
|
146
|
+
.h(headers)
|
|
147
|
+
.b(body);
|
|
148
|
+
return b.build();
|
|
149
|
+
};
|
|
150
|
+
export const se_GetCustomizationCommand = async (input, context) => {
|
|
151
|
+
const b = rb(input, context);
|
|
152
|
+
const headers = {
|
|
153
|
+
'content-type': 'application/json',
|
|
154
|
+
};
|
|
155
|
+
b.bp("/GetCustomization");
|
|
156
|
+
let body;
|
|
157
|
+
body = JSON.stringify(take(input, {
|
|
158
|
+
'identifier': [],
|
|
159
|
+
}));
|
|
160
|
+
b.m("POST")
|
|
161
|
+
.h(headers)
|
|
162
|
+
.b(body);
|
|
163
|
+
return b.build();
|
|
164
|
+
};
|
|
165
|
+
export const se_ListCustomizationPermissionsCommand = async (input, context) => {
|
|
166
|
+
const b = rb(input, context);
|
|
167
|
+
const headers = {
|
|
168
|
+
'content-type': 'application/json',
|
|
169
|
+
};
|
|
170
|
+
b.bp("/ListCustomizationPermissions");
|
|
171
|
+
let body;
|
|
172
|
+
body = JSON.stringify(take(input, {
|
|
173
|
+
'identifier': [],
|
|
174
|
+
'maxResults': [],
|
|
175
|
+
'nextToken': [],
|
|
176
|
+
}));
|
|
177
|
+
b.m("POST")
|
|
178
|
+
.h(headers)
|
|
179
|
+
.b(body);
|
|
180
|
+
return b.build();
|
|
181
|
+
};
|
|
182
|
+
export const se_ListCustomizationsCommand = async (input, context) => {
|
|
183
|
+
const b = rb(input, context);
|
|
184
|
+
const headers = {
|
|
185
|
+
'content-type': 'application/json',
|
|
186
|
+
};
|
|
187
|
+
b.bp("/ListCustomizations");
|
|
188
|
+
let body;
|
|
189
|
+
body = JSON.stringify(take(input, {
|
|
190
|
+
'maxResults': [],
|
|
191
|
+
'nextToken': [],
|
|
192
|
+
}));
|
|
193
|
+
b.m("POST")
|
|
194
|
+
.h(headers)
|
|
195
|
+
.b(body);
|
|
196
|
+
return b.build();
|
|
197
|
+
};
|
|
198
|
+
export const se_ListCustomizationVersionsCommand = async (input, context) => {
|
|
199
|
+
const b = rb(input, context);
|
|
200
|
+
const headers = {
|
|
201
|
+
'content-type': 'application/json',
|
|
202
|
+
};
|
|
203
|
+
b.bp("/ListCustomizationVersions");
|
|
204
|
+
let body;
|
|
205
|
+
body = JSON.stringify(take(input, {
|
|
206
|
+
'identifier': [],
|
|
207
|
+
'maxResults': [],
|
|
208
|
+
'nextToken': [],
|
|
209
|
+
}));
|
|
210
|
+
b.m("POST")
|
|
211
|
+
.h(headers)
|
|
212
|
+
.b(body);
|
|
213
|
+
return b.build();
|
|
214
|
+
};
|
|
215
|
+
export const se_ListProfilesCommand = async (input, context) => {
|
|
216
|
+
const b = rb(input, context);
|
|
217
|
+
const headers = {
|
|
218
|
+
'content-type': 'application/json',
|
|
219
|
+
};
|
|
220
|
+
b.bp("/ListProfiles");
|
|
221
|
+
let body;
|
|
222
|
+
body = JSON.stringify(take(input, {
|
|
223
|
+
'includeManagementAccount': [],
|
|
224
|
+
'maxResults': [],
|
|
225
|
+
'nextToken': [],
|
|
226
|
+
}));
|
|
227
|
+
b.m("POST")
|
|
228
|
+
.h(headers)
|
|
229
|
+
.b(body);
|
|
230
|
+
return b.build();
|
|
231
|
+
};
|
|
232
|
+
export const se_ListTagsForResourceCommand = async (input, context) => {
|
|
233
|
+
const b = rb(input, context);
|
|
234
|
+
const headers = {
|
|
235
|
+
'content-type': 'application/json',
|
|
236
|
+
};
|
|
237
|
+
b.bp("/ListTagsForResource");
|
|
238
|
+
let body;
|
|
239
|
+
body = JSON.stringify(take(input, {
|
|
240
|
+
'resourceArn': [],
|
|
241
|
+
}));
|
|
242
|
+
b.m("POST")
|
|
243
|
+
.h(headers)
|
|
244
|
+
.b(body);
|
|
245
|
+
return b.build();
|
|
246
|
+
};
|
|
247
|
+
export const se_TagResourceCommand = async (input, context) => {
|
|
248
|
+
const b = rb(input, context);
|
|
249
|
+
const headers = {
|
|
250
|
+
'content-type': 'application/json',
|
|
251
|
+
};
|
|
252
|
+
b.bp("/TagResource");
|
|
253
|
+
let body;
|
|
254
|
+
body = JSON.stringify(take(input, {
|
|
255
|
+
'resourceArn': [],
|
|
256
|
+
'tags': _ => _json(_),
|
|
257
|
+
}));
|
|
258
|
+
b.m("POST")
|
|
259
|
+
.h(headers)
|
|
260
|
+
.b(body);
|
|
261
|
+
return b.build();
|
|
262
|
+
};
|
|
263
|
+
export const se_UntagResourceCommand = async (input, context) => {
|
|
264
|
+
const b = rb(input, context);
|
|
265
|
+
const headers = {
|
|
266
|
+
'content-type': 'application/json',
|
|
267
|
+
};
|
|
268
|
+
b.bp("/UntagResource");
|
|
269
|
+
let body;
|
|
270
|
+
body = JSON.stringify(take(input, {
|
|
271
|
+
'resourceArn': [],
|
|
272
|
+
'tagKeys': _ => _json(_),
|
|
273
|
+
}));
|
|
274
|
+
b.m("POST")
|
|
275
|
+
.h(headers)
|
|
276
|
+
.b(body);
|
|
277
|
+
return b.build();
|
|
278
|
+
};
|
|
279
|
+
export const se_UpdateCustomizationCommand = async (input, context) => {
|
|
280
|
+
const b = rb(input, context);
|
|
281
|
+
const headers = {
|
|
282
|
+
'content-type': 'application/json',
|
|
283
|
+
};
|
|
284
|
+
b.bp("/UpdateCustomization");
|
|
285
|
+
let body;
|
|
286
|
+
body = JSON.stringify(take(input, {
|
|
287
|
+
'clientToken': [],
|
|
288
|
+
'dataReference': _ => _json(_),
|
|
289
|
+
'identifier': [],
|
|
290
|
+
'includeRepos': _ => _json(_),
|
|
291
|
+
'operation': [],
|
|
292
|
+
'version': [],
|
|
293
|
+
}));
|
|
294
|
+
b.m("POST")
|
|
295
|
+
.h(headers)
|
|
296
|
+
.b(body);
|
|
297
|
+
return b.build();
|
|
298
|
+
};
|
|
299
|
+
export const se_UpdateProfileCommand = async (input, context) => {
|
|
300
|
+
const b = rb(input, context);
|
|
301
|
+
const headers = {
|
|
302
|
+
'content-type': 'application/json',
|
|
303
|
+
};
|
|
304
|
+
b.bp("/UpdateProfile");
|
|
305
|
+
let body;
|
|
306
|
+
body = JSON.stringify(take(input, {
|
|
307
|
+
'activeFunctionalities': _ => _json(_),
|
|
308
|
+
'description': [],
|
|
309
|
+
'identitySource': _ => _json(_),
|
|
310
|
+
'kmsKeyArn': [],
|
|
311
|
+
'optInFeatures': _ => _json(_),
|
|
312
|
+
'profileArn': [],
|
|
313
|
+
'profileName': [],
|
|
314
|
+
'referenceTrackerConfiguration': _ => _json(_),
|
|
315
|
+
'resourcePolicy': _ => _json(_),
|
|
316
|
+
'targetProfileType': [],
|
|
317
|
+
}));
|
|
318
|
+
b.m("POST")
|
|
319
|
+
.h(headers)
|
|
320
|
+
.b(body);
|
|
321
|
+
return b.build();
|
|
322
|
+
};
|
|
323
|
+
export const se_VendKeyGrantCommand = async (input, context) => {
|
|
324
|
+
const b = rb(input, context);
|
|
325
|
+
const headers = {
|
|
326
|
+
'content-type': 'application/json',
|
|
327
|
+
};
|
|
328
|
+
b.bp("/VendKeyGrant");
|
|
329
|
+
let body;
|
|
330
|
+
body = JSON.stringify(take(input, {
|
|
331
|
+
'accountId': [],
|
|
332
|
+
'usecase': [],
|
|
333
|
+
}));
|
|
334
|
+
b.m("POST")
|
|
335
|
+
.h(headers)
|
|
336
|
+
.b(body);
|
|
337
|
+
return b.build();
|
|
338
|
+
};
|
|
339
|
+
export const de_AllowVendedLogDeliveryForResourceCommand = async (output, context) => {
|
|
340
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
341
|
+
return de_CommandError(output, context);
|
|
342
|
+
}
|
|
343
|
+
const contents = map({
|
|
344
|
+
$metadata: deserializeMetadata(output),
|
|
345
|
+
});
|
|
346
|
+
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
347
|
+
const doc = take(data, {
|
|
348
|
+
'message': __expectString,
|
|
349
|
+
});
|
|
350
|
+
Object.assign(contents, doc);
|
|
351
|
+
return contents;
|
|
352
|
+
};
|
|
353
|
+
export const de_AssociateCustomizationPermissionCommand = async (output, context) => {
|
|
354
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
355
|
+
return de_CommandError(output, context);
|
|
356
|
+
}
|
|
357
|
+
const contents = map({
|
|
358
|
+
$metadata: deserializeMetadata(output),
|
|
359
|
+
});
|
|
360
|
+
await collectBody(output.body, context);
|
|
361
|
+
return contents;
|
|
362
|
+
};
|
|
363
|
+
export const de_CreateCustomizationCommand = async (output, context) => {
|
|
364
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
365
|
+
return de_CommandError(output, context);
|
|
366
|
+
}
|
|
367
|
+
const contents = map({
|
|
368
|
+
$metadata: deserializeMetadata(output),
|
|
369
|
+
});
|
|
370
|
+
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
371
|
+
const doc = take(data, {
|
|
372
|
+
'customizationArn': __expectString,
|
|
373
|
+
});
|
|
374
|
+
Object.assign(contents, doc);
|
|
375
|
+
return contents;
|
|
376
|
+
};
|
|
377
|
+
export const de_CreateProfileCommand = async (output, context) => {
|
|
378
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
379
|
+
return de_CommandError(output, context);
|
|
380
|
+
}
|
|
381
|
+
const contents = map({
|
|
382
|
+
$metadata: deserializeMetadata(output),
|
|
383
|
+
});
|
|
384
|
+
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
385
|
+
const doc = take(data, {
|
|
386
|
+
'profileArn': __expectString,
|
|
387
|
+
});
|
|
388
|
+
Object.assign(contents, doc);
|
|
389
|
+
return contents;
|
|
390
|
+
};
|
|
391
|
+
export const de_DeleteCustomizationCommand = async (output, context) => {
|
|
392
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
393
|
+
return de_CommandError(output, context);
|
|
394
|
+
}
|
|
395
|
+
const contents = map({
|
|
396
|
+
$metadata: deserializeMetadata(output),
|
|
397
|
+
});
|
|
398
|
+
await collectBody(output.body, context);
|
|
399
|
+
return contents;
|
|
400
|
+
};
|
|
401
|
+
export const de_DeleteProfileCommand = async (output, context) => {
|
|
402
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
403
|
+
return de_CommandError(output, context);
|
|
404
|
+
}
|
|
405
|
+
const contents = map({
|
|
406
|
+
$metadata: deserializeMetadata(output),
|
|
407
|
+
});
|
|
408
|
+
await collectBody(output.body, context);
|
|
409
|
+
return contents;
|
|
410
|
+
};
|
|
411
|
+
export const de_DisassociateCustomizationPermissionCommand = async (output, context) => {
|
|
412
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
413
|
+
return de_CommandError(output, context);
|
|
414
|
+
}
|
|
415
|
+
const contents = map({
|
|
416
|
+
$metadata: deserializeMetadata(output),
|
|
417
|
+
});
|
|
418
|
+
await collectBody(output.body, context);
|
|
419
|
+
return contents;
|
|
420
|
+
};
|
|
421
|
+
export const de_GenerateRecommendationsCommand = async (output, context) => {
|
|
422
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
423
|
+
return de_CommandError(output, context);
|
|
424
|
+
}
|
|
425
|
+
const contents = map({
|
|
426
|
+
$metadata: deserializeMetadata(output),
|
|
427
|
+
});
|
|
428
|
+
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
429
|
+
const doc = take(data, {
|
|
430
|
+
'nextToken': __expectString,
|
|
431
|
+
'recommendations': _json,
|
|
432
|
+
});
|
|
433
|
+
Object.assign(contents, doc);
|
|
434
|
+
return contents;
|
|
435
|
+
};
|
|
436
|
+
export const de_GetCustomizationCommand = async (output, context) => {
|
|
437
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
438
|
+
return de_CommandError(output, context);
|
|
439
|
+
}
|
|
440
|
+
const contents = map({
|
|
441
|
+
$metadata: deserializeMetadata(output),
|
|
442
|
+
});
|
|
443
|
+
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
444
|
+
const doc = take(data, {
|
|
445
|
+
'arn': __expectString,
|
|
446
|
+
'customizationName': __expectString,
|
|
447
|
+
'dataReference': _ => _json(__expectUnion(_)),
|
|
448
|
+
'description': __expectString,
|
|
449
|
+
'errorDetails': __expectString,
|
|
450
|
+
'evaluationMetrics': _json,
|
|
451
|
+
'includeRepos': _json,
|
|
452
|
+
'profileArn': __expectString,
|
|
453
|
+
'status': __expectString,
|
|
454
|
+
'updatedAt': _ => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
455
|
+
'version': __expectLong,
|
|
456
|
+
});
|
|
457
|
+
Object.assign(contents, doc);
|
|
458
|
+
return contents;
|
|
459
|
+
};
|
|
460
|
+
export const de_ListCustomizationPermissionsCommand = async (output, context) => {
|
|
461
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
462
|
+
return de_CommandError(output, context);
|
|
463
|
+
}
|
|
464
|
+
const contents = map({
|
|
465
|
+
$metadata: deserializeMetadata(output),
|
|
466
|
+
});
|
|
467
|
+
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
468
|
+
const doc = take(data, {
|
|
469
|
+
'nextToken': __expectString,
|
|
470
|
+
'permissions': _json,
|
|
471
|
+
});
|
|
472
|
+
Object.assign(contents, doc);
|
|
473
|
+
return contents;
|
|
474
|
+
};
|
|
475
|
+
export const de_ListCustomizationsCommand = async (output, context) => {
|
|
476
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
477
|
+
return de_CommandError(output, context);
|
|
478
|
+
}
|
|
479
|
+
const contents = map({
|
|
480
|
+
$metadata: deserializeMetadata(output),
|
|
481
|
+
});
|
|
482
|
+
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
483
|
+
const doc = take(data, {
|
|
484
|
+
'customizations': _ => de_CustomizationSummaryList(_, context),
|
|
485
|
+
'nextToken': __expectString,
|
|
486
|
+
});
|
|
487
|
+
Object.assign(contents, doc);
|
|
488
|
+
return contents;
|
|
489
|
+
};
|
|
490
|
+
export const de_ListCustomizationVersionsCommand = async (output, context) => {
|
|
491
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
492
|
+
return de_CommandError(output, context);
|
|
493
|
+
}
|
|
494
|
+
const contents = map({
|
|
495
|
+
$metadata: deserializeMetadata(output),
|
|
496
|
+
});
|
|
497
|
+
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
498
|
+
const doc = take(data, {
|
|
499
|
+
'nextToken': __expectString,
|
|
500
|
+
'versions': _ => de_CustomizationVersionSummaryList(_, context),
|
|
501
|
+
});
|
|
502
|
+
Object.assign(contents, doc);
|
|
503
|
+
return contents;
|
|
504
|
+
};
|
|
505
|
+
export const de_ListProfilesCommand = async (output, context) => {
|
|
506
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
507
|
+
return de_CommandError(output, context);
|
|
508
|
+
}
|
|
509
|
+
const contents = map({
|
|
510
|
+
$metadata: deserializeMetadata(output),
|
|
511
|
+
});
|
|
512
|
+
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
513
|
+
const doc = take(data, {
|
|
514
|
+
'nextToken': __expectString,
|
|
515
|
+
'profiles': _json,
|
|
516
|
+
});
|
|
517
|
+
Object.assign(contents, doc);
|
|
518
|
+
return contents;
|
|
519
|
+
};
|
|
520
|
+
export const de_ListTagsForResourceCommand = async (output, context) => {
|
|
521
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
522
|
+
return de_CommandError(output, context);
|
|
523
|
+
}
|
|
524
|
+
const contents = map({
|
|
525
|
+
$metadata: deserializeMetadata(output),
|
|
526
|
+
});
|
|
527
|
+
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
528
|
+
const doc = take(data, {
|
|
529
|
+
'tags': _json,
|
|
530
|
+
});
|
|
531
|
+
Object.assign(contents, doc);
|
|
532
|
+
return contents;
|
|
533
|
+
};
|
|
534
|
+
export const de_TagResourceCommand = async (output, context) => {
|
|
535
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
536
|
+
return de_CommandError(output, context);
|
|
537
|
+
}
|
|
538
|
+
const contents = map({
|
|
539
|
+
$metadata: deserializeMetadata(output),
|
|
540
|
+
});
|
|
541
|
+
await collectBody(output.body, context);
|
|
542
|
+
return contents;
|
|
543
|
+
};
|
|
544
|
+
export const de_UntagResourceCommand = async (output, context) => {
|
|
545
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
546
|
+
return de_CommandError(output, context);
|
|
547
|
+
}
|
|
548
|
+
const contents = map({
|
|
549
|
+
$metadata: deserializeMetadata(output),
|
|
550
|
+
});
|
|
551
|
+
await collectBody(output.body, context);
|
|
552
|
+
return contents;
|
|
553
|
+
};
|
|
554
|
+
export const de_UpdateCustomizationCommand = async (output, context) => {
|
|
555
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
556
|
+
return de_CommandError(output, context);
|
|
557
|
+
}
|
|
558
|
+
const contents = map({
|
|
559
|
+
$metadata: deserializeMetadata(output),
|
|
560
|
+
});
|
|
561
|
+
await collectBody(output.body, context);
|
|
562
|
+
return contents;
|
|
563
|
+
};
|
|
564
|
+
export const de_UpdateProfileCommand = async (output, context) => {
|
|
565
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
566
|
+
return de_CommandError(output, context);
|
|
567
|
+
}
|
|
568
|
+
const contents = map({
|
|
569
|
+
$metadata: deserializeMetadata(output),
|
|
570
|
+
});
|
|
571
|
+
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
572
|
+
const doc = take(data, {
|
|
573
|
+
'profileArn': __expectString,
|
|
574
|
+
});
|
|
575
|
+
Object.assign(contents, doc);
|
|
576
|
+
return contents;
|
|
577
|
+
};
|
|
578
|
+
export const de_VendKeyGrantCommand = async (output, context) => {
|
|
579
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
580
|
+
return de_CommandError(output, context);
|
|
581
|
+
}
|
|
582
|
+
const contents = map({
|
|
583
|
+
$metadata: deserializeMetadata(output),
|
|
584
|
+
});
|
|
585
|
+
const data = __expectNonNull((__expectObject(await parseBody(output.body, context))), "body");
|
|
586
|
+
const doc = take(data, {
|
|
587
|
+
'cmkArn': __expectString,
|
|
588
|
+
'grantId': __expectString,
|
|
589
|
+
'grantToken': __expectString,
|
|
590
|
+
});
|
|
591
|
+
Object.assign(contents, doc);
|
|
592
|
+
return contents;
|
|
593
|
+
};
|
|
594
|
+
const de_CommandError = async (output, context) => {
|
|
595
|
+
const parsedOutput = {
|
|
596
|
+
...output,
|
|
597
|
+
body: await parseErrorBody(output.body, context)
|
|
598
|
+
};
|
|
599
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
600
|
+
switch (errorCode) {
|
|
601
|
+
case "AccessDeniedException":
|
|
602
|
+
case "com.amazon.aws.codewhisperer#AccessDeniedException":
|
|
603
|
+
throw await de_AccessDeniedExceptionRes(parsedOutput, context);
|
|
604
|
+
case "InternalServerException":
|
|
605
|
+
case "com.amazon.aws.codewhisperer#InternalServerException":
|
|
606
|
+
throw await de_InternalServerExceptionRes(parsedOutput, context);
|
|
607
|
+
case "ResourceNotFoundException":
|
|
608
|
+
case "com.amazon.aws.codewhisperer#ResourceNotFoundException":
|
|
609
|
+
throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
|
|
610
|
+
case "ThrottlingException":
|
|
611
|
+
case "com.amazon.aws.codewhisperer#ThrottlingException":
|
|
612
|
+
throw await de_ThrottlingExceptionRes(parsedOutput, context);
|
|
613
|
+
case "ValidationException":
|
|
614
|
+
case "com.amazon.aws.codewhisperer#ValidationException":
|
|
615
|
+
throw await de_ValidationExceptionRes(parsedOutput, context);
|
|
616
|
+
case "ConflictException":
|
|
617
|
+
case "com.amazon.aws.codewhisperer#ConflictException":
|
|
618
|
+
throw await de_ConflictExceptionRes(parsedOutput, context);
|
|
619
|
+
default:
|
|
620
|
+
const parsedBody = parsedOutput.body;
|
|
621
|
+
return throwDefaultError({
|
|
622
|
+
output,
|
|
623
|
+
parsedBody,
|
|
624
|
+
errorCode
|
|
625
|
+
});
|
|
626
|
+
}
|
|
627
|
+
};
|
|
628
|
+
const throwDefaultError = withBaseException(__BaseException);
|
|
629
|
+
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
630
|
+
const contents = map({});
|
|
631
|
+
const data = parsedOutput.body;
|
|
632
|
+
const doc = take(data, {
|
|
633
|
+
'message': __expectString,
|
|
634
|
+
'reason': __expectString,
|
|
635
|
+
});
|
|
636
|
+
Object.assign(contents, doc);
|
|
637
|
+
const exception = new AccessDeniedException({
|
|
638
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
639
|
+
...contents
|
|
640
|
+
});
|
|
641
|
+
return __decorateServiceException(exception, parsedOutput.body);
|
|
642
|
+
};
|
|
643
|
+
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
644
|
+
const contents = map({});
|
|
645
|
+
const data = parsedOutput.body;
|
|
646
|
+
const doc = take(data, {
|
|
647
|
+
'message': __expectString,
|
|
648
|
+
'reason': __expectString,
|
|
649
|
+
});
|
|
650
|
+
Object.assign(contents, doc);
|
|
651
|
+
const exception = new ConflictException({
|
|
652
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
653
|
+
...contents
|
|
654
|
+
});
|
|
655
|
+
return __decorateServiceException(exception, parsedOutput.body);
|
|
656
|
+
};
|
|
657
|
+
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
658
|
+
const contents = map({});
|
|
659
|
+
const data = parsedOutput.body;
|
|
660
|
+
const doc = take(data, {
|
|
661
|
+
'message': __expectString,
|
|
662
|
+
'reason': __expectString,
|
|
663
|
+
});
|
|
664
|
+
Object.assign(contents, doc);
|
|
665
|
+
const exception = new InternalServerException({
|
|
666
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
667
|
+
...contents
|
|
668
|
+
});
|
|
669
|
+
return __decorateServiceException(exception, parsedOutput.body);
|
|
670
|
+
};
|
|
671
|
+
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
672
|
+
const contents = map({});
|
|
673
|
+
const data = parsedOutput.body;
|
|
674
|
+
const doc = take(data, {
|
|
675
|
+
'message': __expectString,
|
|
676
|
+
});
|
|
677
|
+
Object.assign(contents, doc);
|
|
678
|
+
const exception = new ResourceNotFoundException({
|
|
679
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
680
|
+
...contents
|
|
681
|
+
});
|
|
682
|
+
return __decorateServiceException(exception, parsedOutput.body);
|
|
683
|
+
};
|
|
684
|
+
const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
|
|
685
|
+
const contents = map({});
|
|
686
|
+
const data = parsedOutput.body;
|
|
687
|
+
const doc = take(data, {
|
|
688
|
+
'message': __expectString,
|
|
689
|
+
'reason': __expectString,
|
|
690
|
+
});
|
|
691
|
+
Object.assign(contents, doc);
|
|
692
|
+
const exception = new ThrottlingException({
|
|
693
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
694
|
+
...contents
|
|
695
|
+
});
|
|
696
|
+
return __decorateServiceException(exception, parsedOutput.body);
|
|
697
|
+
};
|
|
698
|
+
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
699
|
+
const contents = map({});
|
|
700
|
+
const data = parsedOutput.body;
|
|
701
|
+
const doc = take(data, {
|
|
702
|
+
'message': __expectString,
|
|
703
|
+
'reason': __expectString,
|
|
704
|
+
});
|
|
705
|
+
Object.assign(contents, doc);
|
|
706
|
+
const exception = new ValidationException({
|
|
707
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
708
|
+
...contents
|
|
709
|
+
});
|
|
710
|
+
return __decorateServiceException(exception, parsedOutput.body);
|
|
711
|
+
};
|
|
712
|
+
const de_CustomizationSummary = (output, context) => {
|
|
713
|
+
return take(output, {
|
|
714
|
+
'arn': __expectString,
|
|
715
|
+
'customizationName': __expectString,
|
|
716
|
+
'description': __expectString,
|
|
717
|
+
'status': __expectString,
|
|
718
|
+
'updatedAt': (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
719
|
+
'version': __expectLong,
|
|
720
|
+
});
|
|
721
|
+
};
|
|
722
|
+
const de_CustomizationSummaryList = (output, context) => {
|
|
723
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
724
|
+
return de_CustomizationSummary(entry, context);
|
|
725
|
+
});
|
|
726
|
+
return retVal;
|
|
727
|
+
};
|
|
728
|
+
const de_CustomizationVersionSummary = (output, context) => {
|
|
729
|
+
return take(output, {
|
|
730
|
+
'baseVersion': __expectLong,
|
|
731
|
+
'dataReference': (_) => _json(__expectUnion(_)),
|
|
732
|
+
'evaluationMetrics': _json,
|
|
733
|
+
'status': __expectString,
|
|
734
|
+
'updatedAt': (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
735
|
+
'version': __expectLong,
|
|
736
|
+
});
|
|
737
|
+
};
|
|
738
|
+
const de_CustomizationVersionSummaryList = (output, context) => {
|
|
739
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
740
|
+
return de_CustomizationVersionSummary(entry, context);
|
|
741
|
+
});
|
|
742
|
+
return retVal;
|
|
743
|
+
};
|
|
744
|
+
const deserializeMetadata = (output) => ({
|
|
745
|
+
httpStatusCode: output.statusCode,
|
|
746
|
+
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
747
|
+
extendedRequestId: output.headers["x-amz-id-2"],
|
|
748
|
+
cfId: output.headers["x-amz-cf-id"],
|
|
749
|
+
});
|
|
750
|
+
const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then(body => context.utf8Encoder(body));
|