@aws/lsp-codewhisperer 0.0.84 → 0.0.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -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 +10 -7
- package/out/language-server/agenticChat/agenticChatController.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/telemetry/chatTelemetryController.js.map +1 -1
- package/out/language-server/configuration/qConfigurationServer.d.ts +3 -3
- package/out/language-server/configuration/qConfigurationServer.js +4 -4
- package/out/language-server/configuration/qConfigurationServer.js.map +1 -1
- package/out/language-server/inline-completion/handler/editCompletionHandler.js +3 -3
- package/out/language-server/inline-completion/handler/editCompletionHandler.js.map +1 -1
- package/out/language-server/inline-completion/handler/inlineCompletionHandler.js +7 -5
- package/out/language-server/inline-completion/handler/inlineCompletionHandler.js.map +1 -1
- package/out/language-server/inline-completion/handler/sessionResultsHandler.js +8 -3
- package/out/language-server/inline-completion/handler/sessionResultsHandler.js.map +1 -1
- package/out/language-server/inline-completion/telemetry/telemetry.d.ts +5 -4
- package/out/language-server/inline-completion/telemetry/telemetry.js +3 -3
- package/out/language-server/inline-completion/telemetry/telemetry.js.map +1 -1
- package/out/language-server/inline-completion/utils/mergeRightUtils.js +1 -1
- package/out/language-server/inline-completion/utils/mergeRightUtils.js.map +1 -1
- package/out/language-server/netTransform/converter.d.ts +3 -6
- package/out/language-server/netTransform/converter.js +6 -15
- package/out/language-server/netTransform/converter.js.map +1 -1
- package/out/language-server/netTransform/metrics.js.map +1 -1
- package/out/language-server/netTransform/models.d.ts +3 -3
- package/out/language-server/netTransform/transformHandler.d.ts +4 -4
- package/out/language-server/netTransform/transformHandler.js +3 -4
- package/out/language-server/netTransform/transformHandler.js.map +1 -1
- package/out/language-server/netTransform/validation.d.ts +1 -1
- package/out/language-server/netTransform/validation.js.map +1 -1
- package/out/language-server/securityScan/codeWhispererSecurityScanServer.js.map +1 -1
- package/out/language-server/securityScan/securityScanHandler.d.ts +6 -6
- package/out/language-server/securityScan/securityScanHandler.js +8 -5
- package/out/language-server/securityScan/securityScanHandler.js.map +1 -1
- package/out/language-server/securityScan/types.d.ts +3 -0
- package/out/language-server/workspaceContext/util.d.ts +1 -1
- package/out/language-server/workspaceContext/util.js +1 -1
- package/out/language-server/workspaceContext/util.js.map +1 -1
- package/out/language-server/workspaceContext/workspaceFolderManager.d.ts +1 -1
- package/out/language-server/workspaceContext/workspaceFolderManager.js +18 -11
- package/out/language-server/workspaceContext/workspaceFolderManager.js.map +1 -1
- package/out/shared/amazonQServiceManager/AmazonQTokenServiceManager.js +1 -4
- package/out/shared/amazonQServiceManager/AmazonQTokenServiceManager.js.map +1 -1
- package/out/shared/amazonQServiceManager/BaseAmazonQServiceManager.js.map +1 -1
- package/out/shared/amazonQServiceManager/qDeveloperProfiles.d.ts +2 -2
- package/out/shared/amazonQServiceManager/qDeveloperProfiles.js +2 -2
- package/out/shared/amazonQServiceManager/qDeveloperProfiles.js.map +1 -1
- package/out/shared/codeWhispererService.d.ts +37 -51
- package/out/shared/codeWhispererService.js +62 -131
- package/out/shared/codeWhispererService.js.map +1 -1
- package/out/shared/streamingClientService.js.map +1 -1
- package/out/shared/telemetry/telemetryService.d.ts +1 -1
- package/out/shared/telemetry/telemetryService.js +12 -7
- package/out/shared/telemetry/telemetryService.js.map +1 -1
- package/out/shared/telemetry/types.d.ts +4 -4
- package/out/shared/telemetryUtils.d.ts +2 -2
- package/out/shared/telemetryUtils.js +11 -10
- package/out/shared/telemetryUtils.js.map +1 -1
- package/out/shared/testUtils.d.ts +7 -7
- package/out/shared/utils.d.ts +6 -3
- package/out/shared/utils.js +10 -30
- package/out/shared/utils.js.map +1 -1
- package/package.json +7 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/dist-cjs/index.js +0 -84
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +0 -16
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +0 -21
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +0 -16
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +0 -21
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller/package.json +0 -62
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/README.md +0 -9
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-cjs/index.js +0 -806
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-cjs/timing.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +0 -209
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +0 -86
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +0 -167
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +0 -88
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +0 -36
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +0 -22
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +0 -24
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +0 -41
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/timing.js +0 -4
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +0 -56
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +0 -45
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +0 -24
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +0 -12
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +0 -62
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +0 -2
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +0 -2
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +0 -8
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +0 -45
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +0 -24
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +0 -12
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +0 -62
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +0 -2
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +0 -2
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +0 -8
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +0 -11
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +0 -11
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler/package.json +0 -67
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/LICENSE +0 -201
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/README.md +0 -115
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/abort-handler.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/abort.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/auth.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/auth/index.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/checksum.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/client.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/command.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/connection/config.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/connection/index.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/connection/manager.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/connection/pool.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/crypto.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/encode.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoint.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/index.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/eventStream.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/extensions/index.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/extensions/retry.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/feature-ids.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/http.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/identity/identity.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/identity/index.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/index.js +0 -144
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/logger.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/middleware.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/pagination.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/profile.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/response.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/retry.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/schema/schema.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/schema/sentinels.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/schema/traits.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/serde.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/shapes.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/signature.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/stream.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-input-types.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-output-types.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transfer.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/exact.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/mutable.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/uri.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/util.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-cjs/waiter.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/auth.js +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/index.js +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/connection/index.js +0 -3
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoint.js +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoints/index.js +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/extensions/checksum.js +0 -38
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +0 -7
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/extensions/index.js +0 -3
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/http.js +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/identity/index.js +0 -4
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/index.js +0 -40
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/middleware.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/profile.js +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transfer.js +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/mutable.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/no-undefined.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/type-transform.js +0 -1
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/abort-handler.d.ts +0 -7
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/abort.d.ts +0 -50
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +0 -7
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +0 -49
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +0 -20
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +0 -41
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/auth.d.ts +0 -57
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/auth/index.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +0 -40
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/checksum.d.ts +0 -63
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/client.d.ts +0 -57
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/command.d.ts +0 -28
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/connection/config.d.ts +0 -10
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/connection/index.d.ts +0 -3
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/connection/manager.d.ts +0 -34
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/connection/pool.d.ts +0 -32
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/crypto.d.ts +0 -60
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +0 -25
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/encode.d.ts +0 -31
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoint.d.ts +0 -77
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +0 -27
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +0 -10
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +0 -28
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +0 -16
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +0 -55
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/eventStream.d.ts +0 -137
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +0 -58
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +0 -33
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -9
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/extensions/index.d.ts +0 -4
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +0 -18
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +0 -35
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/feature-ids.d.ts +0 -16
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +0 -121
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/http.d.ts +0 -112
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +0 -31
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/identity/identity.d.ts +0 -15
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/identity/index.d.ts +0 -4
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/index.d.ts +0 -40
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/logger.d.ts +0 -13
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/middleware.d.ts +0 -534
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/pagination.d.ts +0 -33
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/profile.d.ts +0 -30
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/response.d.ts +0 -40
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/retry.d.ts +0 -133
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/schema/schema.d.ts +0 -261
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +0 -65
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/schema/traits.d.ts +0 -46
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/serde.d.ts +0 -114
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/shapes.d.ts +0 -82
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/signature.d.ts +0 -155
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/stream.d.ts +0 -22
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +0 -32
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transfer.d.ts +0 -41
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +0 -26
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +0 -77
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/exact.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +0 -68
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +0 -34
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +0 -7
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +0 -50
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +0 -7
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +0 -49
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +0 -20
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +0 -41
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +0 -57
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +0 -40
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +0 -63
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +0 -57
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +0 -28
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +0 -10
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +0 -3
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +0 -34
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +0 -32
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +0 -60
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +0 -41
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +0 -31
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +0 -77
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +0 -27
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +0 -10
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +0 -28
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +0 -16
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +0 -5
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +0 -55
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +0 -137
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +0 -58
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +0 -33
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +0 -9
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +0 -4
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +0 -18
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +0 -35
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +0 -16
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +0 -121
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +0 -112
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +0 -31
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +0 -15
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +0 -4
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +0 -40
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +0 -13
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +0 -534
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +0 -33
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +0 -30
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +0 -40
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +0 -133
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +0 -276
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +0 -65
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +0 -46
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +0 -114
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +0 -82
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +0 -155
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +0 -22
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +0 -32
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +0 -41
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +0 -26
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +0 -81
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +0 -14
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +0 -6
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +0 -88
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +0 -41
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +0 -17
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +0 -192
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +0 -35
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/uri.d.ts +0 -17
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/util.d.ts +0 -176
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-types/waiter.d.ts +0 -35
- package/node_modules/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types/package.json +0 -60
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/README.md +0 -53
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +0 -217
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/constants.js +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +0 -88
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +0 -11
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/index.js +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +0 -18
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/package.json +0 -67
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/README.md +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-cjs/AbortController.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-cjs/AbortSignal.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-cjs/index.js +0 -84
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-es/AbortController.js +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +0 -20
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-es/index.js +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +0 -21
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/index.d.ts +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +0 -21
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/package.json +0 -62
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/LICENSE +0 -201
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/README.md +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/constants.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/get-transformed-headers.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/index.js +0 -806
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/node-http-handler.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-manager.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-pool.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-handler.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/readable.mock.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/server.mock.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/set-connection-timeout.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-keep-alive.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-timeout.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/collector.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/index.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/readable.mock.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/timing.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-cjs/write-request-body.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/constants.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/index.js +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +0 -209
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +0 -86
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +0 -32
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +0 -167
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +0 -19
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +0 -88
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +0 -36
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +0 -22
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +0 -24
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +0 -11
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +0 -19
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/timing.js +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +0 -56
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +0 -45
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +0 -24
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +0 -62
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +0 -45
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +0 -24
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +0 -62
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +0 -11
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +0 -11
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/node-http-handler/package.json +0 -67
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/LICENSE +0 -201
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/README.md +0 -115
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/abort-handler.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/abort.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/auth.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/auth/index.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/checksum.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/client.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/command.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/connection/config.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/connection/index.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/connection/manager.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/connection/pool.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/crypto.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/encode.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoint.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/index.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/eventStream.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/index.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/extensions/retry.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/feature-ids.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/http.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/identity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/index.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/index.js +0 -144
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/logger.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/middleware.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/pagination.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/profile.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/response.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/retry.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/schema/schema.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/schema/sentinels.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/schema/traits.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/serde.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/shapes.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/signature.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/stream.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-input-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-output-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transfer.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/exact.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/mutable.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/uri.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/util.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-cjs/waiter.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/abort-handler.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/auth.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/auth/index.js +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/connection/config.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/connection/index.js +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/connection/manager.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/connection/pool.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoint.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/index.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/endpoints/shared.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/checksum.js +0 -38
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions/index.js +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/http.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/identity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/index.js +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/index.js +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/middleware.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/profile.js +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/retry.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/schema/schema.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/schema/sentinels.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/schema/traits.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transfer.js +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/exact.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/mutable.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/no-undefined.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/transform/type-transform.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/abort-handler.d.ts +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/abort.d.ts +0 -50
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +0 -49
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +0 -20
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/auth.d.ts +0 -57
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/auth/index.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/checksum.d.ts +0 -63
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/client.d.ts +0 -57
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/command.d.ts +0 -28
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/connection/config.d.ts +0 -10
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/connection/index.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/connection/manager.d.ts +0 -34
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/connection/pool.d.ts +0 -32
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/crypto.d.ts +0 -60
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +0 -25
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/encode.d.ts +0 -31
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoint.d.ts +0 -77
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +0 -27
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +0 -10
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +0 -28
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +0 -55
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/eventStream.d.ts +0 -137
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +0 -58
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +0 -33
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/index.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +0 -18
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +0 -35
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/feature-ids.d.ts +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +0 -121
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/http.d.ts +0 -112
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +0 -31
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/identity.d.ts +0 -15
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/index.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/index.d.ts +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/logger.d.ts +0 -13
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/middleware.d.ts +0 -534
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/pagination.d.ts +0 -33
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/profile.d.ts +0 -30
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/response.d.ts +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/retry.d.ts +0 -133
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/schema/schema.d.ts +0 -261
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +0 -65
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/schema/traits.d.ts +0 -46
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/serde.d.ts +0 -114
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/shapes.d.ts +0 -82
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/signature.d.ts +0 -155
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/stream.d.ts +0 -22
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +0 -32
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transfer.d.ts +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +0 -26
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +0 -77
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/exact.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +0 -68
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +0 -34
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +0 -50
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +0 -49
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +0 -20
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +0 -57
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +0 -63
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +0 -57
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +0 -28
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +0 -10
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +0 -3
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +0 -34
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +0 -32
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +0 -60
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +0 -31
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +0 -77
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +0 -27
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +0 -10
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +0 -28
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +0 -55
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +0 -137
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +0 -58
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +0 -33
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +0 -18
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +0 -35
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +0 -121
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +0 -112
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +0 -31
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +0 -15
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +0 -13
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +0 -534
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +0 -33
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +0 -30
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +0 -133
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +0 -276
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +0 -65
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +0 -46
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +0 -114
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +0 -82
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +0 -155
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +0 -22
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +0 -32
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +0 -26
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +0 -81
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +0 -88
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +0 -41
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +0 -17
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +0 -192
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +0 -35
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/uri.d.ts +0 -17
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/util.d.ts +0 -176
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-types/waiter.d.ts +0 -35
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/package.json +0 -60
- package/out/client/sigv4/service.json +0 -2145
- package/out/client/token/bearer-token-service.json +0 -6690
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js → codewhisperer/dist-es/extensionConfiguration.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js → codewhisperer/dist-es/pagination/Interfaces.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler → codewhisperer/node_modules/@aws-sdk/types}/LICENSE +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/abort.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js} +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/checksum.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/client.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/command.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/connection.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/identity/identity.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/credentials.js} +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/crypto.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/encode.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/eventStream.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/extensions/index.js} +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/feature-ids.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/retry.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/http.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/schema/schema.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/schema/sentinels.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/schema/traits.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/identity/Identity.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js} +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/logger.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/middleware.js} +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/pagination.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/profile.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/request.js} +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/response.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy/types/dist-es/extensions → codewhisperer/node_modules/@aws-sdk/types/dist-es}/retry.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/serde.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/shapes.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/signature.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/stream.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/transform/exact.js → codewhisperer/node_modules/@aws-sdk/types/dist-es/token.js} +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/uri.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/util.js +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer/node_modules/@aws-sdk}/types/dist-es/waiter.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/abort-handler.js → codewhisperer-runtime/dist-es/extensionConfiguration.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/abort.js → codewhisperer-runtime/dist-es/pagination/Interfaces.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller → codewhisperer-runtime/node_modules/@aws-sdk/types}/LICENSE +0 -0
- /package/node_modules/@amzn/{codewhisperer-streaming/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/abort.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/checksum.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/client.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/command.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/connection.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/HttpSigner.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/credentials.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/crypto.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/encode.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/eventStream.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/extensions/index.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/feature-ids.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/http.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/connection/config.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/connection/manager.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/connection/pool.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/identity/Identity.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/logger.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/middleware.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/pagination.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/profile.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/request.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/response.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/extensions → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es}/retry.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/serde.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/shapes.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/signature.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/stream.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy/types/dist-es/endpoints/shared.js → codewhisperer-runtime/node_modules/@aws-sdk/types/dist-es/token.js} +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/uri.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/util.js +0 -0
- /package/node_modules/@amzn/{amazon-q-developer-streaming-client/node_modules/@smithy → codewhisperer-runtime/node_modules/@aws-sdk}/types/dist-es/waiter.js +0 -0
- /package/node_modules/{@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers → @smithy/abort-controller}/LICENSE +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/README.md +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-cjs/AbortController.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-cjs/AbortSignal.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-es/AbortController.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-es/AbortSignal.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-es/index.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-types/index.d.ts +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/abort-controller/dist-types/ts3.4/index.d.ts +0 -0
- /package/node_modules/{@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller → @smithy/node-http-handler}/LICENSE +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/constants.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/get-transformed-headers.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/node-http-handler.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/node-http2-connection-manager.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/node-http2-connection-pool.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/node-http2-handler.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/readable.mock.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/server.mock.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/set-connection-timeout.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/set-socket-keep-alive.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/set-socket-timeout.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/stream-collector/collector.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/stream-collector/index.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/stream-collector/readable.mock.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-cjs/write-request-body.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/constants.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/get-transformed-headers.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/index.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/node-http2-connection-pool.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/readable.mock.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/stream-collector/collector.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-es/stream-collector/readable.mock.js +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/constants.d.ts +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/get-transformed-headers.d.ts +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/index.d.ts +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/server.mock.d.ts +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/ts3.4/constants.d.ts +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/ts3.4/index.d.ts +0 -0
- /package/node_modules/{@amzn/amazon-q-developer-streaming-client/node_modules/@smithy → @smithy}/node-http-handler/dist-types/ts3.4/server.mock.d.ts +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
module.exports = require("./index.js");
|
|
@@ -1,209 +0,0 @@
|
|
|
1
|
-
import { HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { buildQueryString } from "@smithy/querystring-builder";
|
|
3
|
-
import { Agent as hAgent, request as hRequest } from "http";
|
|
4
|
-
import { Agent as hsAgent, request as hsRequest } from "https";
|
|
5
|
-
import { NODEJS_TIMEOUT_ERROR_CODES } from "./constants";
|
|
6
|
-
import { getTransformedHeaders } from "./get-transformed-headers";
|
|
7
|
-
import { setConnectionTimeout } from "./set-connection-timeout";
|
|
8
|
-
import { setSocketKeepAlive } from "./set-socket-keep-alive";
|
|
9
|
-
import { setSocketTimeout } from "./set-socket-timeout";
|
|
10
|
-
import { timing } from "./timing";
|
|
11
|
-
import { writeRequestBody } from "./write-request-body";
|
|
12
|
-
export const DEFAULT_REQUEST_TIMEOUT = 0;
|
|
13
|
-
export class NodeHttpHandler {
|
|
14
|
-
static create(instanceOrOptions) {
|
|
15
|
-
if (typeof instanceOrOptions?.handle === "function") {
|
|
16
|
-
return instanceOrOptions;
|
|
17
|
-
}
|
|
18
|
-
return new NodeHttpHandler(instanceOrOptions);
|
|
19
|
-
}
|
|
20
|
-
static checkSocketUsage(agent, socketWarningTimestamp, logger = console) {
|
|
21
|
-
const { sockets, requests, maxSockets } = agent;
|
|
22
|
-
if (typeof maxSockets !== "number" || maxSockets === Infinity) {
|
|
23
|
-
return socketWarningTimestamp;
|
|
24
|
-
}
|
|
25
|
-
const interval = 15000;
|
|
26
|
-
if (Date.now() - interval < socketWarningTimestamp) {
|
|
27
|
-
return socketWarningTimestamp;
|
|
28
|
-
}
|
|
29
|
-
if (sockets && requests) {
|
|
30
|
-
for (const origin in sockets) {
|
|
31
|
-
const socketsInUse = sockets[origin]?.length ?? 0;
|
|
32
|
-
const requestsEnqueued = requests[origin]?.length ?? 0;
|
|
33
|
-
if (socketsInUse >= maxSockets && requestsEnqueued >= 2 * maxSockets) {
|
|
34
|
-
logger?.warn?.(`@smithy/node-http-handler:WARN - socket usage at capacity=${socketsInUse} and ${requestsEnqueued} additional requests are enqueued.
|
|
35
|
-
See https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/node-configuring-maxsockets.html
|
|
36
|
-
or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler config.`);
|
|
37
|
-
return Date.now();
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
return socketWarningTimestamp;
|
|
42
|
-
}
|
|
43
|
-
constructor(options) {
|
|
44
|
-
this.socketWarningTimestamp = 0;
|
|
45
|
-
this.metadata = { handlerProtocol: "http/1.1" };
|
|
46
|
-
this.configProvider = new Promise((resolve, reject) => {
|
|
47
|
-
if (typeof options === "function") {
|
|
48
|
-
options()
|
|
49
|
-
.then((_options) => {
|
|
50
|
-
resolve(this.resolveDefaultConfig(_options));
|
|
51
|
-
})
|
|
52
|
-
.catch(reject);
|
|
53
|
-
}
|
|
54
|
-
else {
|
|
55
|
-
resolve(this.resolveDefaultConfig(options));
|
|
56
|
-
}
|
|
57
|
-
});
|
|
58
|
-
}
|
|
59
|
-
resolveDefaultConfig(options) {
|
|
60
|
-
const { requestTimeout, connectionTimeout, socketTimeout, socketAcquisitionWarningTimeout, httpAgent, httpsAgent } = options || {};
|
|
61
|
-
const keepAlive = true;
|
|
62
|
-
const maxSockets = 50;
|
|
63
|
-
return {
|
|
64
|
-
connectionTimeout,
|
|
65
|
-
requestTimeout: requestTimeout ?? socketTimeout,
|
|
66
|
-
socketAcquisitionWarningTimeout,
|
|
67
|
-
httpAgent: (() => {
|
|
68
|
-
if (httpAgent instanceof hAgent || typeof httpAgent?.destroy === "function") {
|
|
69
|
-
return httpAgent;
|
|
70
|
-
}
|
|
71
|
-
return new hAgent({ keepAlive, maxSockets, ...httpAgent });
|
|
72
|
-
})(),
|
|
73
|
-
httpsAgent: (() => {
|
|
74
|
-
if (httpsAgent instanceof hsAgent || typeof httpsAgent?.destroy === "function") {
|
|
75
|
-
return httpsAgent;
|
|
76
|
-
}
|
|
77
|
-
return new hsAgent({ keepAlive, maxSockets, ...httpsAgent });
|
|
78
|
-
})(),
|
|
79
|
-
logger: console,
|
|
80
|
-
};
|
|
81
|
-
}
|
|
82
|
-
destroy() {
|
|
83
|
-
this.config?.httpAgent?.destroy();
|
|
84
|
-
this.config?.httpsAgent?.destroy();
|
|
85
|
-
}
|
|
86
|
-
async handle(request, { abortSignal } = {}) {
|
|
87
|
-
if (!this.config) {
|
|
88
|
-
this.config = await this.configProvider;
|
|
89
|
-
}
|
|
90
|
-
return new Promise((_resolve, _reject) => {
|
|
91
|
-
let writeRequestBodyPromise = undefined;
|
|
92
|
-
const timeouts = [];
|
|
93
|
-
const resolve = async (arg) => {
|
|
94
|
-
await writeRequestBodyPromise;
|
|
95
|
-
timeouts.forEach(timing.clearTimeout);
|
|
96
|
-
_resolve(arg);
|
|
97
|
-
};
|
|
98
|
-
const reject = async (arg) => {
|
|
99
|
-
await writeRequestBodyPromise;
|
|
100
|
-
timeouts.forEach(timing.clearTimeout);
|
|
101
|
-
_reject(arg);
|
|
102
|
-
};
|
|
103
|
-
if (!this.config) {
|
|
104
|
-
throw new Error("Node HTTP request handler config is not resolved");
|
|
105
|
-
}
|
|
106
|
-
if (abortSignal?.aborted) {
|
|
107
|
-
const abortError = new Error("Request aborted");
|
|
108
|
-
abortError.name = "AbortError";
|
|
109
|
-
reject(abortError);
|
|
110
|
-
return;
|
|
111
|
-
}
|
|
112
|
-
const isSSL = request.protocol === "https:";
|
|
113
|
-
const agent = isSSL ? this.config.httpsAgent : this.config.httpAgent;
|
|
114
|
-
timeouts.push(timing.setTimeout(() => {
|
|
115
|
-
this.socketWarningTimestamp = NodeHttpHandler.checkSocketUsage(agent, this.socketWarningTimestamp, this.config.logger);
|
|
116
|
-
}, this.config.socketAcquisitionWarningTimeout ??
|
|
117
|
-
(this.config.requestTimeout ?? 2000) + (this.config.connectionTimeout ?? 1000)));
|
|
118
|
-
const queryString = buildQueryString(request.query || {});
|
|
119
|
-
let auth = undefined;
|
|
120
|
-
if (request.username != null || request.password != null) {
|
|
121
|
-
const username = request.username ?? "";
|
|
122
|
-
const password = request.password ?? "";
|
|
123
|
-
auth = `${username}:${password}`;
|
|
124
|
-
}
|
|
125
|
-
let path = request.path;
|
|
126
|
-
if (queryString) {
|
|
127
|
-
path += `?${queryString}`;
|
|
128
|
-
}
|
|
129
|
-
if (request.fragment) {
|
|
130
|
-
path += `#${request.fragment}`;
|
|
131
|
-
}
|
|
132
|
-
let hostname = request.hostname ?? "";
|
|
133
|
-
if (hostname[0] === "[" && hostname.endsWith("]")) {
|
|
134
|
-
hostname = request.hostname.slice(1, -1);
|
|
135
|
-
}
|
|
136
|
-
else {
|
|
137
|
-
hostname = request.hostname;
|
|
138
|
-
}
|
|
139
|
-
const nodeHttpsOptions = {
|
|
140
|
-
headers: request.headers,
|
|
141
|
-
host: hostname,
|
|
142
|
-
method: request.method,
|
|
143
|
-
path,
|
|
144
|
-
port: request.port,
|
|
145
|
-
agent,
|
|
146
|
-
auth,
|
|
147
|
-
};
|
|
148
|
-
const requestFunc = isSSL ? hsRequest : hRequest;
|
|
149
|
-
const req = requestFunc(nodeHttpsOptions, (res) => {
|
|
150
|
-
const httpResponse = new HttpResponse({
|
|
151
|
-
statusCode: res.statusCode || -1,
|
|
152
|
-
reason: res.statusMessage,
|
|
153
|
-
headers: getTransformedHeaders(res.headers),
|
|
154
|
-
body: res,
|
|
155
|
-
});
|
|
156
|
-
resolve({ response: httpResponse });
|
|
157
|
-
});
|
|
158
|
-
req.on("error", (err) => {
|
|
159
|
-
if (NODEJS_TIMEOUT_ERROR_CODES.includes(err.code)) {
|
|
160
|
-
reject(Object.assign(err, { name: "TimeoutError" }));
|
|
161
|
-
}
|
|
162
|
-
else {
|
|
163
|
-
reject(err);
|
|
164
|
-
}
|
|
165
|
-
});
|
|
166
|
-
if (abortSignal) {
|
|
167
|
-
const onAbort = () => {
|
|
168
|
-
req.destroy();
|
|
169
|
-
const abortError = new Error("Request aborted");
|
|
170
|
-
abortError.name = "AbortError";
|
|
171
|
-
reject(abortError);
|
|
172
|
-
};
|
|
173
|
-
if (typeof abortSignal.addEventListener === "function") {
|
|
174
|
-
const signal = abortSignal;
|
|
175
|
-
signal.addEventListener("abort", onAbort, { once: true });
|
|
176
|
-
req.once("close", () => signal.removeEventListener("abort", onAbort));
|
|
177
|
-
}
|
|
178
|
-
else {
|
|
179
|
-
abortSignal.onabort = onAbort;
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
timeouts.push(setConnectionTimeout(req, reject, this.config.connectionTimeout));
|
|
183
|
-
timeouts.push(setSocketTimeout(req, reject, this.config.requestTimeout));
|
|
184
|
-
const httpAgent = nodeHttpsOptions.agent;
|
|
185
|
-
if (typeof httpAgent === "object" && "keepAlive" in httpAgent) {
|
|
186
|
-
timeouts.push(setSocketKeepAlive(req, {
|
|
187
|
-
keepAlive: httpAgent.keepAlive,
|
|
188
|
-
keepAliveMsecs: httpAgent.keepAliveMsecs,
|
|
189
|
-
}));
|
|
190
|
-
}
|
|
191
|
-
writeRequestBodyPromise = writeRequestBody(req, request, this.config.requestTimeout).catch((e) => {
|
|
192
|
-
timeouts.forEach(timing.clearTimeout);
|
|
193
|
-
return _reject(e);
|
|
194
|
-
});
|
|
195
|
-
});
|
|
196
|
-
}
|
|
197
|
-
updateHttpClientConfig(key, value) {
|
|
198
|
-
this.config = undefined;
|
|
199
|
-
this.configProvider = this.configProvider.then((config) => {
|
|
200
|
-
return {
|
|
201
|
-
...config,
|
|
202
|
-
[key]: value,
|
|
203
|
-
};
|
|
204
|
-
});
|
|
205
|
-
}
|
|
206
|
-
httpHandlerConfigs() {
|
|
207
|
-
return this.config ?? {};
|
|
208
|
-
}
|
|
209
|
-
}
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
import http2 from "http2";
|
|
2
|
-
import { NodeHttp2ConnectionPool } from "./node-http2-connection-pool";
|
|
3
|
-
export class NodeHttp2ConnectionManager {
|
|
4
|
-
constructor(config) {
|
|
5
|
-
this.sessionCache = new Map();
|
|
6
|
-
this.config = config;
|
|
7
|
-
if (this.config.maxConcurrency && this.config.maxConcurrency <= 0) {
|
|
8
|
-
throw new RangeError("maxConcurrency must be greater than zero.");
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
lease(requestContext, connectionConfiguration) {
|
|
12
|
-
const url = this.getUrlString(requestContext);
|
|
13
|
-
const existingPool = this.sessionCache.get(url);
|
|
14
|
-
if (existingPool) {
|
|
15
|
-
const existingSession = existingPool.poll();
|
|
16
|
-
if (existingSession && !this.config.disableConcurrency) {
|
|
17
|
-
return existingSession;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
const session = http2.connect(url);
|
|
21
|
-
if (this.config.maxConcurrency) {
|
|
22
|
-
session.settings({ maxConcurrentStreams: this.config.maxConcurrency }, (err) => {
|
|
23
|
-
if (err) {
|
|
24
|
-
throw new Error("Fail to set maxConcurrentStreams to " +
|
|
25
|
-
this.config.maxConcurrency +
|
|
26
|
-
"when creating new session for " +
|
|
27
|
-
requestContext.destination.toString());
|
|
28
|
-
}
|
|
29
|
-
});
|
|
30
|
-
}
|
|
31
|
-
session.unref();
|
|
32
|
-
const destroySessionCb = () => {
|
|
33
|
-
session.destroy();
|
|
34
|
-
this.deleteSession(url, session);
|
|
35
|
-
};
|
|
36
|
-
session.on("goaway", destroySessionCb);
|
|
37
|
-
session.on("error", destroySessionCb);
|
|
38
|
-
session.on("frameError", destroySessionCb);
|
|
39
|
-
session.on("close", () => this.deleteSession(url, session));
|
|
40
|
-
if (connectionConfiguration.requestTimeout) {
|
|
41
|
-
session.setTimeout(connectionConfiguration.requestTimeout, destroySessionCb);
|
|
42
|
-
}
|
|
43
|
-
const connectionPool = this.sessionCache.get(url) || new NodeHttp2ConnectionPool();
|
|
44
|
-
connectionPool.offerLast(session);
|
|
45
|
-
this.sessionCache.set(url, connectionPool);
|
|
46
|
-
return session;
|
|
47
|
-
}
|
|
48
|
-
deleteSession(authority, session) {
|
|
49
|
-
const existingConnectionPool = this.sessionCache.get(authority);
|
|
50
|
-
if (!existingConnectionPool) {
|
|
51
|
-
return;
|
|
52
|
-
}
|
|
53
|
-
if (!existingConnectionPool.contains(session)) {
|
|
54
|
-
return;
|
|
55
|
-
}
|
|
56
|
-
existingConnectionPool.remove(session);
|
|
57
|
-
this.sessionCache.set(authority, existingConnectionPool);
|
|
58
|
-
}
|
|
59
|
-
release(requestContext, session) {
|
|
60
|
-
const cacheKey = this.getUrlString(requestContext);
|
|
61
|
-
this.sessionCache.get(cacheKey)?.offerLast(session);
|
|
62
|
-
}
|
|
63
|
-
destroy() {
|
|
64
|
-
for (const [key, connectionPool] of this.sessionCache) {
|
|
65
|
-
for (const session of connectionPool) {
|
|
66
|
-
if (!session.destroyed) {
|
|
67
|
-
session.destroy();
|
|
68
|
-
}
|
|
69
|
-
connectionPool.remove(session);
|
|
70
|
-
}
|
|
71
|
-
this.sessionCache.delete(key);
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
setMaxConcurrentStreams(maxConcurrentStreams) {
|
|
75
|
-
if (maxConcurrentStreams && maxConcurrentStreams <= 0) {
|
|
76
|
-
throw new RangeError("maxConcurrentStreams must be greater than zero.");
|
|
77
|
-
}
|
|
78
|
-
this.config.maxConcurrency = maxConcurrentStreams;
|
|
79
|
-
}
|
|
80
|
-
setDisableConcurrentStreams(disableConcurrentStreams) {
|
|
81
|
-
this.config.disableConcurrency = disableConcurrentStreams;
|
|
82
|
-
}
|
|
83
|
-
getUrlString(request) {
|
|
84
|
-
return request.destination.toString();
|
|
85
|
-
}
|
|
86
|
-
}
|
|
@@ -1,167 +0,0 @@
|
|
|
1
|
-
import { HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { buildQueryString } from "@smithy/querystring-builder";
|
|
3
|
-
import { constants } from "http2";
|
|
4
|
-
import { getTransformedHeaders } from "./get-transformed-headers";
|
|
5
|
-
import { NodeHttp2ConnectionManager } from "./node-http2-connection-manager";
|
|
6
|
-
import { writeRequestBody } from "./write-request-body";
|
|
7
|
-
export class NodeHttp2Handler {
|
|
8
|
-
static create(instanceOrOptions) {
|
|
9
|
-
if (typeof instanceOrOptions?.handle === "function") {
|
|
10
|
-
return instanceOrOptions;
|
|
11
|
-
}
|
|
12
|
-
return new NodeHttp2Handler(instanceOrOptions);
|
|
13
|
-
}
|
|
14
|
-
constructor(options) {
|
|
15
|
-
this.metadata = { handlerProtocol: "h2" };
|
|
16
|
-
this.connectionManager = new NodeHttp2ConnectionManager({});
|
|
17
|
-
this.configProvider = new Promise((resolve, reject) => {
|
|
18
|
-
if (typeof options === "function") {
|
|
19
|
-
options()
|
|
20
|
-
.then((opts) => {
|
|
21
|
-
resolve(opts || {});
|
|
22
|
-
})
|
|
23
|
-
.catch(reject);
|
|
24
|
-
}
|
|
25
|
-
else {
|
|
26
|
-
resolve(options || {});
|
|
27
|
-
}
|
|
28
|
-
});
|
|
29
|
-
}
|
|
30
|
-
destroy() {
|
|
31
|
-
this.connectionManager.destroy();
|
|
32
|
-
}
|
|
33
|
-
async handle(request, { abortSignal } = {}) {
|
|
34
|
-
if (!this.config) {
|
|
35
|
-
this.config = await this.configProvider;
|
|
36
|
-
this.connectionManager.setDisableConcurrentStreams(this.config.disableConcurrentStreams || false);
|
|
37
|
-
if (this.config.maxConcurrentStreams) {
|
|
38
|
-
this.connectionManager.setMaxConcurrentStreams(this.config.maxConcurrentStreams);
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
const { requestTimeout, disableConcurrentStreams } = this.config;
|
|
42
|
-
return new Promise((_resolve, _reject) => {
|
|
43
|
-
let fulfilled = false;
|
|
44
|
-
let writeRequestBodyPromise = undefined;
|
|
45
|
-
const resolve = async (arg) => {
|
|
46
|
-
await writeRequestBodyPromise;
|
|
47
|
-
_resolve(arg);
|
|
48
|
-
};
|
|
49
|
-
const reject = async (arg) => {
|
|
50
|
-
await writeRequestBodyPromise;
|
|
51
|
-
_reject(arg);
|
|
52
|
-
};
|
|
53
|
-
if (abortSignal?.aborted) {
|
|
54
|
-
fulfilled = true;
|
|
55
|
-
const abortError = new Error("Request aborted");
|
|
56
|
-
abortError.name = "AbortError";
|
|
57
|
-
reject(abortError);
|
|
58
|
-
return;
|
|
59
|
-
}
|
|
60
|
-
const { hostname, method, port, protocol, query } = request;
|
|
61
|
-
let auth = "";
|
|
62
|
-
if (request.username != null || request.password != null) {
|
|
63
|
-
const username = request.username ?? "";
|
|
64
|
-
const password = request.password ?? "";
|
|
65
|
-
auth = `${username}:${password}@`;
|
|
66
|
-
}
|
|
67
|
-
const authority = `${protocol}//${auth}${hostname}${port ? `:${port}` : ""}`;
|
|
68
|
-
const requestContext = { destination: new URL(authority) };
|
|
69
|
-
const session = this.connectionManager.lease(requestContext, {
|
|
70
|
-
requestTimeout: this.config?.sessionTimeout,
|
|
71
|
-
disableConcurrentStreams: disableConcurrentStreams || false,
|
|
72
|
-
});
|
|
73
|
-
const rejectWithDestroy = (err) => {
|
|
74
|
-
if (disableConcurrentStreams) {
|
|
75
|
-
this.destroySession(session);
|
|
76
|
-
}
|
|
77
|
-
fulfilled = true;
|
|
78
|
-
reject(err);
|
|
79
|
-
};
|
|
80
|
-
const queryString = buildQueryString(query || {});
|
|
81
|
-
let path = request.path;
|
|
82
|
-
if (queryString) {
|
|
83
|
-
path += `?${queryString}`;
|
|
84
|
-
}
|
|
85
|
-
if (request.fragment) {
|
|
86
|
-
path += `#${request.fragment}`;
|
|
87
|
-
}
|
|
88
|
-
const req = session.request({
|
|
89
|
-
...request.headers,
|
|
90
|
-
[constants.HTTP2_HEADER_PATH]: path,
|
|
91
|
-
[constants.HTTP2_HEADER_METHOD]: method,
|
|
92
|
-
});
|
|
93
|
-
session.ref();
|
|
94
|
-
req.on("response", (headers) => {
|
|
95
|
-
const httpResponse = new HttpResponse({
|
|
96
|
-
statusCode: headers[":status"] || -1,
|
|
97
|
-
headers: getTransformedHeaders(headers),
|
|
98
|
-
body: req,
|
|
99
|
-
});
|
|
100
|
-
fulfilled = true;
|
|
101
|
-
resolve({ response: httpResponse });
|
|
102
|
-
if (disableConcurrentStreams) {
|
|
103
|
-
session.close();
|
|
104
|
-
this.connectionManager.deleteSession(authority, session);
|
|
105
|
-
}
|
|
106
|
-
});
|
|
107
|
-
if (requestTimeout) {
|
|
108
|
-
req.setTimeout(requestTimeout, () => {
|
|
109
|
-
req.close();
|
|
110
|
-
const timeoutError = new Error(`Stream timed out because of no activity for ${requestTimeout} ms`);
|
|
111
|
-
timeoutError.name = "TimeoutError";
|
|
112
|
-
rejectWithDestroy(timeoutError);
|
|
113
|
-
});
|
|
114
|
-
}
|
|
115
|
-
if (abortSignal) {
|
|
116
|
-
const onAbort = () => {
|
|
117
|
-
req.close();
|
|
118
|
-
const abortError = new Error("Request aborted");
|
|
119
|
-
abortError.name = "AbortError";
|
|
120
|
-
rejectWithDestroy(abortError);
|
|
121
|
-
};
|
|
122
|
-
if (typeof abortSignal.addEventListener === "function") {
|
|
123
|
-
const signal = abortSignal;
|
|
124
|
-
signal.addEventListener("abort", onAbort, { once: true });
|
|
125
|
-
req.once("close", () => signal.removeEventListener("abort", onAbort));
|
|
126
|
-
}
|
|
127
|
-
else {
|
|
128
|
-
abortSignal.onabort = onAbort;
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
req.on("frameError", (type, code, id) => {
|
|
132
|
-
rejectWithDestroy(new Error(`Frame type id ${type} in stream id ${id} has failed with code ${code}.`));
|
|
133
|
-
});
|
|
134
|
-
req.on("error", rejectWithDestroy);
|
|
135
|
-
req.on("aborted", () => {
|
|
136
|
-
rejectWithDestroy(new Error(`HTTP/2 stream is abnormally aborted in mid-communication with result code ${req.rstCode}.`));
|
|
137
|
-
});
|
|
138
|
-
req.on("close", () => {
|
|
139
|
-
session.unref();
|
|
140
|
-
if (disableConcurrentStreams) {
|
|
141
|
-
session.destroy();
|
|
142
|
-
}
|
|
143
|
-
if (!fulfilled) {
|
|
144
|
-
rejectWithDestroy(new Error("Unexpected error: http2 request did not get a response"));
|
|
145
|
-
}
|
|
146
|
-
});
|
|
147
|
-
writeRequestBodyPromise = writeRequestBody(req, request, requestTimeout);
|
|
148
|
-
});
|
|
149
|
-
}
|
|
150
|
-
updateHttpClientConfig(key, value) {
|
|
151
|
-
this.config = undefined;
|
|
152
|
-
this.configProvider = this.configProvider.then((config) => {
|
|
153
|
-
return {
|
|
154
|
-
...config,
|
|
155
|
-
[key]: value,
|
|
156
|
-
};
|
|
157
|
-
});
|
|
158
|
-
}
|
|
159
|
-
httpHandlerConfigs() {
|
|
160
|
-
return this.config ?? {};
|
|
161
|
-
}
|
|
162
|
-
destroySession(session) {
|
|
163
|
-
if (!session.destroyed) {
|
|
164
|
-
session.destroy();
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
|
-
}
|
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
import { readFileSync } from "fs";
|
|
2
|
-
import { createServer as createHttpServer } from "http";
|
|
3
|
-
import { createServer as createHttp2Server } from "http2";
|
|
4
|
-
import { createServer as createHttpsServer } from "https";
|
|
5
|
-
import { join } from "path";
|
|
6
|
-
import { Readable } from "stream";
|
|
7
|
-
import { timing } from "./timing";
|
|
8
|
-
const fixturesDir = join(__dirname, "..", "fixtures");
|
|
9
|
-
const setResponseHeaders = (response, headers) => {
|
|
10
|
-
for (const [key, value] of Object.entries(headers)) {
|
|
11
|
-
response.setHeader(key, value);
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
const setResponseBody = (response, body) => {
|
|
15
|
-
if (body instanceof Readable) {
|
|
16
|
-
body.pipe(response);
|
|
17
|
-
}
|
|
18
|
-
else {
|
|
19
|
-
response.end(body);
|
|
20
|
-
}
|
|
21
|
-
};
|
|
22
|
-
export const createResponseFunction = (httpResp) => (request, response) => {
|
|
23
|
-
response.statusCode = httpResp.statusCode;
|
|
24
|
-
if (httpResp.reason) {
|
|
25
|
-
response.statusMessage = httpResp.reason;
|
|
26
|
-
}
|
|
27
|
-
setResponseHeaders(response, httpResp.headers);
|
|
28
|
-
setResponseBody(response, httpResp.body);
|
|
29
|
-
};
|
|
30
|
-
export const createResponseFunctionWithDelay = (httpResp, delay) => (request, response) => {
|
|
31
|
-
response.statusCode = httpResp.statusCode;
|
|
32
|
-
if (httpResp.reason) {
|
|
33
|
-
response.statusMessage = httpResp.reason;
|
|
34
|
-
}
|
|
35
|
-
setResponseHeaders(response, httpResp.headers);
|
|
36
|
-
timing.setTimeout(() => setResponseBody(response, httpResp.body), delay);
|
|
37
|
-
};
|
|
38
|
-
export const createContinueResponseFunction = (httpResp) => (request, response) => {
|
|
39
|
-
response.writeContinue();
|
|
40
|
-
timing.setTimeout(() => {
|
|
41
|
-
createResponseFunction(httpResp)(request, response);
|
|
42
|
-
}, 100);
|
|
43
|
-
};
|
|
44
|
-
export const createMockHttpsServer = () => {
|
|
45
|
-
const server = createHttpsServer({
|
|
46
|
-
key: readFileSync(join(fixturesDir, "test-server-key.pem")),
|
|
47
|
-
cert: readFileSync(join(fixturesDir, "test-server-cert.pem")),
|
|
48
|
-
});
|
|
49
|
-
return server;
|
|
50
|
-
};
|
|
51
|
-
export const createMockHttpServer = () => {
|
|
52
|
-
const server = createHttpServer();
|
|
53
|
-
return server;
|
|
54
|
-
};
|
|
55
|
-
export const createMockHttp2Server = () => {
|
|
56
|
-
const server = createHttp2Server();
|
|
57
|
-
return server;
|
|
58
|
-
};
|
|
59
|
-
export const createMirrorResponseFunction = (httpResp) => (request, response) => {
|
|
60
|
-
const bufs = [];
|
|
61
|
-
request.on("data", (chunk) => {
|
|
62
|
-
bufs.push(chunk);
|
|
63
|
-
});
|
|
64
|
-
request.on("end", () => {
|
|
65
|
-
response.statusCode = httpResp.statusCode;
|
|
66
|
-
setResponseHeaders(response, httpResp.headers);
|
|
67
|
-
setResponseBody(response, Buffer.concat(bufs));
|
|
68
|
-
});
|
|
69
|
-
request.on("error", (err) => {
|
|
70
|
-
response.statusCode = 500;
|
|
71
|
-
setResponseHeaders(response, httpResp.headers);
|
|
72
|
-
setResponseBody(response, err.message);
|
|
73
|
-
});
|
|
74
|
-
};
|
|
75
|
-
export const getResponseBody = (response) => {
|
|
76
|
-
return new Promise((resolve, reject) => {
|
|
77
|
-
const bufs = [];
|
|
78
|
-
response.body.on("data", function (d) {
|
|
79
|
-
bufs.push(d);
|
|
80
|
-
});
|
|
81
|
-
response.body.on("end", function () {
|
|
82
|
-
resolve(Buffer.concat(bufs).toString());
|
|
83
|
-
});
|
|
84
|
-
response.body.on("error", (err) => {
|
|
85
|
-
reject(err);
|
|
86
|
-
});
|
|
87
|
-
});
|
|
88
|
-
};
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { timing } from "./timing";
|
|
2
|
-
const DEFER_EVENT_LISTENER_TIME = 1000;
|
|
3
|
-
export const setConnectionTimeout = (request, reject, timeoutInMs = 0) => {
|
|
4
|
-
if (!timeoutInMs) {
|
|
5
|
-
return -1;
|
|
6
|
-
}
|
|
7
|
-
const registerTimeout = (offset) => {
|
|
8
|
-
const timeoutId = timing.setTimeout(() => {
|
|
9
|
-
request.destroy();
|
|
10
|
-
reject(Object.assign(new Error(`Socket timed out without establishing a connection within ${timeoutInMs} ms`), {
|
|
11
|
-
name: "TimeoutError",
|
|
12
|
-
}));
|
|
13
|
-
}, timeoutInMs - offset);
|
|
14
|
-
const doWithSocket = (socket) => {
|
|
15
|
-
if (socket?.connecting) {
|
|
16
|
-
socket.on("connect", () => {
|
|
17
|
-
timing.clearTimeout(timeoutId);
|
|
18
|
-
});
|
|
19
|
-
}
|
|
20
|
-
else {
|
|
21
|
-
timing.clearTimeout(timeoutId);
|
|
22
|
-
}
|
|
23
|
-
};
|
|
24
|
-
if (request.socket) {
|
|
25
|
-
doWithSocket(request.socket);
|
|
26
|
-
}
|
|
27
|
-
else {
|
|
28
|
-
request.on("socket", doWithSocket);
|
|
29
|
-
}
|
|
30
|
-
};
|
|
31
|
-
if (timeoutInMs < 2000) {
|
|
32
|
-
registerTimeout(0);
|
|
33
|
-
return 0;
|
|
34
|
-
}
|
|
35
|
-
return timing.setTimeout(registerTimeout.bind(null, DEFER_EVENT_LISTENER_TIME), DEFER_EVENT_LISTENER_TIME);
|
|
36
|
-
};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { timing } from "./timing";
|
|
2
|
-
const DEFER_EVENT_LISTENER_TIME = 3000;
|
|
3
|
-
export const setSocketKeepAlive = (request, { keepAlive, keepAliveMsecs }, deferTimeMs = DEFER_EVENT_LISTENER_TIME) => {
|
|
4
|
-
if (keepAlive !== true) {
|
|
5
|
-
return -1;
|
|
6
|
-
}
|
|
7
|
-
const registerListener = () => {
|
|
8
|
-
if (request.socket) {
|
|
9
|
-
request.socket.setKeepAlive(keepAlive, keepAliveMsecs || 0);
|
|
10
|
-
}
|
|
11
|
-
else {
|
|
12
|
-
request.on("socket", (socket) => {
|
|
13
|
-
socket.setKeepAlive(keepAlive, keepAliveMsecs || 0);
|
|
14
|
-
});
|
|
15
|
-
}
|
|
16
|
-
};
|
|
17
|
-
if (deferTimeMs === 0) {
|
|
18
|
-
registerListener();
|
|
19
|
-
return 0;
|
|
20
|
-
}
|
|
21
|
-
return timing.setTimeout(registerListener, deferTimeMs);
|
|
22
|
-
};
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { DEFAULT_REQUEST_TIMEOUT } from "./node-http-handler";
|
|
2
|
-
import { timing } from "./timing";
|
|
3
|
-
const DEFER_EVENT_LISTENER_TIME = 3000;
|
|
4
|
-
export const setSocketTimeout = (request, reject, timeoutInMs = DEFAULT_REQUEST_TIMEOUT) => {
|
|
5
|
-
const registerTimeout = (offset) => {
|
|
6
|
-
const timeout = timeoutInMs - offset;
|
|
7
|
-
const onTimeout = () => {
|
|
8
|
-
request.destroy();
|
|
9
|
-
reject(Object.assign(new Error(`Connection timed out after ${timeoutInMs} ms`), { name: "TimeoutError" }));
|
|
10
|
-
};
|
|
11
|
-
if (request.socket) {
|
|
12
|
-
request.socket.setTimeout(timeout, onTimeout);
|
|
13
|
-
request.on("close", () => request.socket?.removeListener("timeout", onTimeout));
|
|
14
|
-
}
|
|
15
|
-
else {
|
|
16
|
-
request.setTimeout(timeout, onTimeout);
|
|
17
|
-
}
|
|
18
|
-
};
|
|
19
|
-
if (0 < timeoutInMs && timeoutInMs < 6000) {
|
|
20
|
-
registerTimeout(0);
|
|
21
|
-
return 0;
|
|
22
|
-
}
|
|
23
|
-
return timing.setTimeout(registerTimeout.bind(null, timeoutInMs === 0 ? 0 : DEFER_EVENT_LISTENER_TIME), DEFER_EVENT_LISTENER_TIME);
|
|
24
|
-
};
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { Collector } from "./collector";
|
|
2
|
-
export const streamCollector = (stream) => {
|
|
3
|
-
if (isReadableStreamInstance(stream)) {
|
|
4
|
-
return collectReadableStream(stream);
|
|
5
|
-
}
|
|
6
|
-
return new Promise((resolve, reject) => {
|
|
7
|
-
const collector = new Collector();
|
|
8
|
-
stream.pipe(collector);
|
|
9
|
-
stream.on("error", (err) => {
|
|
10
|
-
collector.end();
|
|
11
|
-
reject(err);
|
|
12
|
-
});
|
|
13
|
-
collector.on("error", reject);
|
|
14
|
-
collector.on("finish", function () {
|
|
15
|
-
const bytes = new Uint8Array(Buffer.concat(this.bufferedBytes));
|
|
16
|
-
resolve(bytes);
|
|
17
|
-
});
|
|
18
|
-
});
|
|
19
|
-
};
|
|
20
|
-
const isReadableStreamInstance = (stream) => typeof ReadableStream === "function" && stream instanceof ReadableStream;
|
|
21
|
-
async function collectReadableStream(stream) {
|
|
22
|
-
const chunks = [];
|
|
23
|
-
const reader = stream.getReader();
|
|
24
|
-
let isDone = false;
|
|
25
|
-
let length = 0;
|
|
26
|
-
while (!isDone) {
|
|
27
|
-
const { done, value } = await reader.read();
|
|
28
|
-
if (value) {
|
|
29
|
-
chunks.push(value);
|
|
30
|
-
length += value.length;
|
|
31
|
-
}
|
|
32
|
-
isDone = done;
|
|
33
|
-
}
|
|
34
|
-
const collected = new Uint8Array(length);
|
|
35
|
-
let offset = 0;
|
|
36
|
-
for (const chunk of chunks) {
|
|
37
|
-
collected.set(chunk, offset);
|
|
38
|
-
offset += chunk.length;
|
|
39
|
-
}
|
|
40
|
-
return collected;
|
|
41
|
-
}
|