@aws/lsp-codewhisperer 0.0.48 → 0.0.50
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 +36 -0
- package/out/client/streamingClient/codewhispererStreamingClient.d.ts +1 -1
- package/out/client/streamingClient/codewhispererStreamingClient.js +2 -2
- package/out/client/streamingClient/codewhispererStreamingClient.js.map +1 -1
- package/out/client/token/bearer-token-service.json +140 -2
- package/out/language-server/agenticChat/agenticChatController.d.ts +10 -4
- package/out/language-server/agenticChat/agenticChatController.js +108 -43
- package/out/language-server/agenticChat/agenticChatController.js.map +1 -1
- package/out/language-server/agenticChat/agenticChatEventParser.d.ts +1 -1
- package/out/language-server/agenticChat/constants.d.ts +3 -3
- package/out/language-server/agenticChat/constants.js +3 -5
- package/out/language-server/agenticChat/constants.js.map +1 -1
- package/out/language-server/agenticChat/context/addtionalContextProvider.d.ts +39 -6
- package/out/language-server/agenticChat/context/addtionalContextProvider.js +329 -53
- package/out/language-server/agenticChat/context/addtionalContextProvider.js.map +1 -1
- package/out/language-server/agenticChat/context/agenticChatTriggerContext.d.ts +3 -2
- package/out/language-server/agenticChat/context/agenticChatTriggerContext.js +7 -7
- package/out/language-server/agenticChat/context/agenticChatTriggerContext.js.map +1 -1
- package/out/language-server/agenticChat/context/contextCommandsProvider.js +4 -2
- package/out/language-server/agenticChat/context/contextCommandsProvider.js.map +1 -1
- package/out/language-server/agenticChat/context/contextUtils.d.ts +21 -2
- package/out/language-server/agenticChat/context/contextUtils.js +45 -16
- package/out/language-server/agenticChat/context/contextUtils.js.map +1 -1
- package/out/language-server/agenticChat/errors.js +2 -2
- package/out/language-server/agenticChat/errors.js.map +1 -1
- package/out/language-server/agenticChat/qAgenticChatServer.js +17 -1
- package/out/language-server/agenticChat/qAgenticChatServer.js.map +1 -1
- package/out/language-server/agenticChat/tabBarController.d.ts +1 -1
- package/out/language-server/agenticChat/tabBarController.js +11 -5
- package/out/language-server/agenticChat/tabBarController.js.map +1 -1
- package/out/language-server/agenticChat/textFormatting.d.ts +1 -1
- package/out/language-server/agenticChat/tools/chatDb/chatDb.d.ts +68 -15
- package/out/language-server/agenticChat/tools/chatDb/chatDb.js +260 -126
- package/out/language-server/agenticChat/tools/chatDb/chatDb.js.map +1 -1
- package/out/language-server/agenticChat/tools/chatDb/chatHistoryMaintainer.d.ts +99 -0
- package/out/language-server/agenticChat/tools/chatDb/chatHistoryMaintainer.js +318 -0
- package/out/language-server/agenticChat/tools/chatDb/chatHistoryMaintainer.js.map +1 -0
- package/out/language-server/agenticChat/tools/chatDb/util.d.ts +58 -2
- package/out/language-server/agenticChat/tools/chatDb/util.js +74 -2
- package/out/language-server/agenticChat/tools/chatDb/util.js.map +1 -1
- package/out/language-server/agenticChat/tools/codeSearch.d.ts +1 -1
- package/out/language-server/chat/chatController.d.ts +1 -1
- package/out/language-server/chat/chatController.js +3 -3
- package/out/language-server/chat/chatController.js.map +1 -1
- package/out/language-server/chat/chatEventParser.d.ts +1 -1
- package/out/language-server/chat/chatSessionService.d.ts +1 -1
- package/out/language-server/chat/contexts/documentContext.d.ts +1 -1
- package/out/language-server/chat/contexts/triggerContext.d.ts +1 -1
- package/out/language-server/chat/contexts/triggerContext.js +5 -5
- package/out/language-server/chat/contexts/triggerContext.js.map +1 -1
- package/out/language-server/chat/quickActions.d.ts +1 -7
- package/out/language-server/chat/quickActions.js +1 -7
- package/out/language-server/chat/quickActions.js.map +1 -1
- package/out/language-server/chat/telemetry/chatTelemetryController.d.ts +1 -1
- package/out/language-server/chat/telemetry/chatTelemetryController.js +13 -8
- package/out/language-server/chat/telemetry/chatTelemetryController.js.map +1 -1
- package/out/language-server/chat/tools/relevantTextDocuments.d.ts +1 -1
- package/out/language-server/inline-completion/auto-trigger/EditPredictionAutoTriggerTestConstants.d.ts +59 -0
- package/out/language-server/inline-completion/auto-trigger/EditPredictionAutoTriggerTestConstants.js +189 -0
- package/out/language-server/inline-completion/auto-trigger/EditPredictionAutoTriggerTestConstants.js.map +1 -0
- package/out/language-server/inline-completion/auto-trigger/editPredictionAutoTrigger.d.ts +27 -0
- package/out/language-server/inline-completion/auto-trigger/editPredictionAutoTrigger.js +57 -0
- package/out/language-server/inline-completion/auto-trigger/editPredictionAutoTrigger.js.map +1 -0
- package/out/language-server/inline-completion/auto-trigger/editPredictionConfig.d.ts +49 -0
- package/out/language-server/inline-completion/auto-trigger/editPredictionConfig.js +66 -0
- package/out/language-server/inline-completion/auto-trigger/editPredictionConfig.js.map +1 -0
- package/out/language-server/inline-completion/auto-trigger/languageDetector.d.ts +24 -0
- package/out/language-server/inline-completion/auto-trigger/languageDetector.js +353 -0
- package/out/language-server/inline-completion/auto-trigger/languageDetector.js.map +1 -0
- package/out/language-server/inline-completion/diffUtils.d.ts +50 -0
- package/out/language-server/inline-completion/diffUtils.js +202 -0
- package/out/language-server/inline-completion/diffUtils.js.map +1 -0
- package/out/language-server/inline-completion/tracker/codeEditTracker.d.ts +178 -0
- package/out/language-server/inline-completion/tracker/codeEditTracker.js +478 -0
- package/out/language-server/inline-completion/tracker/codeEditTracker.js.map +1 -0
- package/out/language-server/inline-completion/tracker/cursorTracker.d.ts +114 -0
- package/out/language-server/inline-completion/tracker/cursorTracker.js +188 -0
- package/out/language-server/inline-completion/tracker/cursorTracker.js.map +1 -0
- package/out/language-server/inline-completion/tracker/rejectedEditTracker.d.ts +57 -0
- package/out/language-server/inline-completion/tracker/rejectedEditTracker.js +123 -0
- package/out/language-server/inline-completion/tracker/rejectedEditTracker.js.map +1 -0
- package/out/language-server/netTransform/artifactManager.js +3 -0
- package/out/language-server/netTransform/artifactManager.js.map +1 -1
- package/out/language-server/netTransform/models.d.ts +2 -0
- package/out/language-server/netTransform/models.js.map +1 -1
- package/out/language-server/netTransform/tests/mockData.js +1 -0
- package/out/language-server/netTransform/tests/mockData.js.map +1 -1
- package/out/language-server/netTransform/transformHandler.js +2 -2
- package/out/language-server/netTransform/transformHandler.js.map +1 -1
- package/out/language-server/workspaceContext/workspaceContextServer.js +11 -4
- package/out/language-server/workspaceContext/workspaceContextServer.js.map +1 -1
- package/out/language-server/workspaceContext/workspaceFolderManager.d.ts +1 -0
- package/out/language-server/workspaceContext/workspaceFolderManager.js +24 -15
- package/out/language-server/workspaceContext/workspaceFolderManager.js.map +1 -1
- package/out/shared/models/model.d.ts +26 -1
- package/out/shared/streamingClientService.d.ts +1 -1
- package/out/shared/streamingClientService.js +2 -2
- package/out/shared/streamingClientService.js.map +1 -1
- package/out/shared/supplementalContextUtil/supplementalContextUtil.d.ts +10 -1
- package/out/shared/supplementalContextUtil/supplementalContextUtil.js +41 -0
- package/out/shared/supplementalContextUtil/supplementalContextUtil.js.map +1 -1
- package/out/shared/telemetry/telemetryService.d.ts +5 -0
- package/out/shared/telemetry/telemetryService.js +5 -0
- package/out/shared/telemetry/telemetryService.js.map +1 -1
- package/out/shared/telemetry/types.d.ts +5 -0
- package/out/shared/telemetry/types.js.map +1 -1
- package/out/shared/utils.d.ts +1 -1
- package/out/shared/utils.js +5 -5
- package/out/shared/utils.js.map +1 -1
- package/package.json +4 -4
- package/node_modules/@amzn/codewhisperer-streaming/LICENSE +0 -201
- package/node_modules/@amzn/codewhisperer-streaming/README.md +0 -941
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreaming.js +0 -19
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreamingClient.js +0 -49
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/auth/httpAuthExtensionConfiguration.js +0 -43
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/auth/httpAuthSchemeProvider.js +0 -46
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/ExportResultArchiveCommand.js +0 -26
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateAssistantResponseCommand.js +0 -26
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateTaskAssistPlanCommand.js +0 -26
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/SendMessageCommand.js +0 -26
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/commands/index.js +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/endpoints.js +0 -211
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/extensionConfiguration.js +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/index.js +0 -10
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/models/CodeWhispererStreamingServiceException.js +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/models/index.js +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/models/models_0.js +0 -1090
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/protocols/Aws_restJson1.js +0 -687
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.browser.js +0 -39
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.js +0 -53
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.native.js +0 -15
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.shared.js +0 -32
- package/node_modules/@amzn/codewhisperer-streaming/dist-cjs/runtimeExtensions.js +0 -25
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreaming.js +0 -15
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreamingClient.js +0 -45
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/auth/httpAuthExtensionConfiguration.js +0 -38
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/auth/httpAuthSchemeProvider.js +0 -40
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/ExportResultArchiveCommand.js +0 -22
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/GenerateAssistantResponseCommand.js +0 -22
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/GenerateTaskAssistPlanCommand.js +0 -22
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/SendMessageCommand.js +0 -22
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/commands/index.js +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/endpoints.js +0 -207
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/extensionConfiguration.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/index.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/models/CodeWhispererStreamingServiceException.js +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/models/index.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/models/models_0.js +0 -998
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/protocols/Aws_restJson1.js +0 -676
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.browser.js +0 -34
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.js +0 -48
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.native.js +0 -11
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.shared.js +0 -28
- package/node_modules/@amzn/codewhisperer-streaming/dist-es/runtimeExtensions.js +0 -21
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreaming.d.ts +0 -37
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreamingClient.d.ts +0 -192
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/auth/httpAuthExtensionConfiguration.d.ts +0 -29
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/auth/httpAuthSchemeProvider.d.ts +0 -67
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/ExportResultArchiveCommand.d.ts +0 -114
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/GenerateAssistantResponseCommand.d.ts +0 -788
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/GenerateTaskAssistPlanCommand.d.ts +0 -801
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/SendMessageCommand.d.ts +0 -801
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/commands/index.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/endpoints.d.ts +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/extensionConfiguration.d.ts +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/index.d.ts +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/models/CodeWhispererStreamingServiceException.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/models/index.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/models/models_0.d.ts +0 -3223
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/protocols/Aws_restJson1.d.ts +0 -38
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.browser.d.ts +0 -48
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.d.ts +0 -47
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.native.d.ts +0 -44
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.shared.d.ts +0 -25
- package/node_modules/@amzn/codewhisperer-streaming/dist-types/runtimeExtensions.d.ts +0 -17
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/token-providers/LICENSE +0 -201
- 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/@aws-sdk/types/LICENSE +0 -201
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/README.md +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-cjs/index.js +0 -294
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/abort.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/auth.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/checksum.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/client.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/command.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/connection.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/credentials.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/crypto.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/dns.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/encode.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/endpoint.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/eventStream.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/extensions/index.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/feature-ids.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/http.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/identity/index.js +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/index.js +0 -33
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/logger.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/middleware.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/pagination.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/profile.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/request.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/response.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/retry.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/serde.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/shapes.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/signature.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/stream.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/token.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/transfer.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/uri.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/util.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-es/waiter.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/abort.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/auth.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/client.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/command.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/connection.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +0 -50
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/dns.d.ts +0 -85
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/encode.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +0 -59
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/http.d.ts +0 -33
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +0 -47
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +0 -18
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/index.d.ts +0 -33
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/logger.d.ts +0 -22
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +0 -13
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/profile.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/request.d.ts +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/response.d.ts +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/retry.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/serde.d.ts +0 -24
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/signature.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/stream.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/token.d.ts +0 -17
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +0 -13
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +0 -19
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +0 -24
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +0 -54
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +0 -17
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +0 -25
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +0 -5
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +0 -33
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +0 -15
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +0 -47
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +0 -6
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +0 -15
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +0 -14
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/uri.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/util.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@aws-sdk/types/package.json +0 -56
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller/LICENSE +0 -201
- 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/abort.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/checksum.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/client.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/command.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/crypto.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/encode.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/eventStream.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/extensions/retry.js +0 -1
- 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/feature-ids.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/logger.js +0 -1
- 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/pagination.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/response.js +0 -1
- 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/serde.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/shapes.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/signature.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/stream.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-es/uri.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/util.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/@smithy/types/dist-es/waiter.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 -25
- 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 -263
- 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 -25
- 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 -278
- 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/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/CHANGELOG.md +0 -274
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/CONTRIBUTING.md +0 -18
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/LICENSE.md +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/README.md +0 -466
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/bin/uuid +0 -2
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/index.js +0 -79
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/md5.js +0 -223
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/native.js +0 -11
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/nil.js +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/parse.js +0 -45
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/regex.js +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/rng.js +0 -25
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/sha1.js +0 -104
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/stringify.js +0 -44
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/v1.js +0 -107
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/v3.js +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/v35.js +0 -80
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/v4.js +0 -43
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/v5.js +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/validate.js +0 -17
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/commonjs-browser/version.js +0 -21
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/index.js +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/md5.js +0 -215
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/native.js +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/nil.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/parse.js +0 -35
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/regex.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/rng.js +0 -18
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/sha1.js +0 -96
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/stringify.js +0 -33
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/v1.js +0 -95
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/v3.js +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/v35.js +0 -66
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/v4.js +0 -29
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/v5.js +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/validate.js +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-browser/version.js +0 -11
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/index.js +0 -9
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/md5.js +0 -13
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/native.js +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/nil.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/parse.js +0 -35
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/regex.js +0 -1
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/rng.js +0 -12
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/sha1.js +0 -13
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/stringify.js +0 -33
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/v1.js +0 -95
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/v3.js +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/v35.js +0 -66
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/v4.js +0 -29
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/v5.js +0 -4
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/validate.js +0 -7
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/esm-node/version.js +0 -11
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/index.js +0 -79
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/md5-browser.js +0 -223
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/md5.js +0 -23
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/native-browser.js +0 -11
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/native.js +0 -15
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/nil.js +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/parse.js +0 -45
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/regex.js +0 -8
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/rng-browser.js +0 -25
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/rng.js +0 -24
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/sha1-browser.js +0 -104
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/sha1.js +0 -23
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/stringify.js +0 -44
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/uuid-bin.js +0 -85
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/v1.js +0 -107
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/v3.js +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/v35.js +0 -80
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/v4.js +0 -43
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/v5.js +0 -16
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/validate.js +0 -17
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/dist/version.js +0 -21
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/package.json +0 -135
- package/node_modules/@amzn/codewhisperer-streaming/node_modules/uuid/wrapper.mjs +0 -10
- package/node_modules/@amzn/codewhisperer-streaming/package.json +0 -88
|
@@ -1,998 +0,0 @@
|
|
|
1
|
-
import { CodeWhispererStreamingServiceException as __BaseException } from "./CodeWhispererStreamingServiceException";
|
|
2
|
-
import { SENSITIVE_STRING, } from "@smithy/smithy-client";
|
|
3
|
-
export const AccessDeniedExceptionReason = {
|
|
4
|
-
UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS: "UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS",
|
|
5
|
-
UNAUTHORIZED_WORKSPACE_CONTEXT_FEATURE_ACCESS: "UNAUTHORIZED_WORKSPACE_CONTEXT_FEATURE_ACCESS",
|
|
6
|
-
};
|
|
7
|
-
export class AccessDeniedException extends __BaseException {
|
|
8
|
-
name = "AccessDeniedException";
|
|
9
|
-
$fault = "client";
|
|
10
|
-
reason;
|
|
11
|
-
constructor(opts) {
|
|
12
|
-
super({
|
|
13
|
-
name: "AccessDeniedException",
|
|
14
|
-
$fault: "client",
|
|
15
|
-
...opts
|
|
16
|
-
});
|
|
17
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
18
|
-
this.reason = opts.reason;
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
export const AdditionalContentEntryFilterSensitiveLog = (obj) => ({
|
|
22
|
-
...obj,
|
|
23
|
-
...(obj.name && { name: SENSITIVE_STRING
|
|
24
|
-
}),
|
|
25
|
-
...(obj.description && { description: SENSITIVE_STRING
|
|
26
|
-
}),
|
|
27
|
-
...(obj.innerContext && { innerContext: SENSITIVE_STRING
|
|
28
|
-
}),
|
|
29
|
-
});
|
|
30
|
-
export class InternalServerException extends __BaseException {
|
|
31
|
-
name = "InternalServerException";
|
|
32
|
-
$fault = "server";
|
|
33
|
-
$retryable = {};
|
|
34
|
-
constructor(opts) {
|
|
35
|
-
super({
|
|
36
|
-
name: "InternalServerException",
|
|
37
|
-
$fault: "server",
|
|
38
|
-
...opts
|
|
39
|
-
});
|
|
40
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
44
|
-
name = "ResourceNotFoundException";
|
|
45
|
-
$fault = "client";
|
|
46
|
-
constructor(opts) {
|
|
47
|
-
super({
|
|
48
|
-
name: "ResourceNotFoundException",
|
|
49
|
-
$fault: "client",
|
|
50
|
-
...opts
|
|
51
|
-
});
|
|
52
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
export const ThrottlingExceptionReason = {
|
|
56
|
-
MONTHLY_REQUEST_COUNT: "MONTHLY_REQUEST_COUNT",
|
|
57
|
-
};
|
|
58
|
-
export class ThrottlingException extends __BaseException {
|
|
59
|
-
name = "ThrottlingException";
|
|
60
|
-
$fault = "client";
|
|
61
|
-
$retryable = {
|
|
62
|
-
throttling: true,
|
|
63
|
-
};
|
|
64
|
-
reason;
|
|
65
|
-
constructor(opts) {
|
|
66
|
-
super({
|
|
67
|
-
name: "ThrottlingException",
|
|
68
|
-
$fault: "client",
|
|
69
|
-
...opts
|
|
70
|
-
});
|
|
71
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
72
|
-
this.reason = opts.reason;
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
export const ValidationExceptionReason = {
|
|
76
|
-
CONTENT_LENGTH_EXCEEDS_THRESHOLD: "CONTENT_LENGTH_EXCEEDS_THRESHOLD",
|
|
77
|
-
INVALID_CONVERSATION_ID: "INVALID_CONVERSATION_ID",
|
|
78
|
-
INVALID_KMS_GRANT: "INVALID_KMS_GRANT",
|
|
79
|
-
};
|
|
80
|
-
export class ValidationException extends __BaseException {
|
|
81
|
-
name = "ValidationException";
|
|
82
|
-
$fault = "client";
|
|
83
|
-
reason;
|
|
84
|
-
constructor(opts) {
|
|
85
|
-
super({
|
|
86
|
-
name: "ValidationException",
|
|
87
|
-
$fault: "client",
|
|
88
|
-
...opts
|
|
89
|
-
});
|
|
90
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
91
|
-
this.reason = opts.reason;
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
export const AppStudioStateFilterSensitiveLog = (obj) => ({
|
|
95
|
-
...obj,
|
|
96
|
-
...(obj.namespace && { namespace: SENSITIVE_STRING
|
|
97
|
-
}),
|
|
98
|
-
...(obj.propertyName && { propertyName: SENSITIVE_STRING
|
|
99
|
-
}),
|
|
100
|
-
...(obj.propertyValue && { propertyValue: SENSITIVE_STRING
|
|
101
|
-
}),
|
|
102
|
-
...(obj.propertyContext && { propertyContext: SENSITIVE_STRING
|
|
103
|
-
}),
|
|
104
|
-
});
|
|
105
|
-
export const AssistantResponseEventFilterSensitiveLog = (obj) => ({
|
|
106
|
-
...obj,
|
|
107
|
-
...(obj.content && { content: SENSITIVE_STRING
|
|
108
|
-
}),
|
|
109
|
-
});
|
|
110
|
-
export const UserIntent = {
|
|
111
|
-
APPLY_COMMON_BEST_PRACTICES: "APPLY_COMMON_BEST_PRACTICES",
|
|
112
|
-
CITE_SOURCES: "CITE_SOURCES",
|
|
113
|
-
CODE_GENERATION: "CODE_GENERATION",
|
|
114
|
-
EXPLAIN_CODE_SELECTION: "EXPLAIN_CODE_SELECTION",
|
|
115
|
-
EXPLAIN_LINE_BY_LINE: "EXPLAIN_LINE_BY_LINE",
|
|
116
|
-
GENERATE_CLOUDFORMATION_TEMPLATE: "GENERATE_CLOUDFORMATION_TEMPLATE",
|
|
117
|
-
GENERATE_UNIT_TESTS: "GENERATE_UNIT_TESTS",
|
|
118
|
-
IMPROVE_CODE: "IMPROVE_CODE",
|
|
119
|
-
SHOW_EXAMPLES: "SHOW_EXAMPLES",
|
|
120
|
-
SUGGEST_ALTERNATE_IMPLEMENTATION: "SUGGEST_ALTERNATE_IMPLEMENTATION",
|
|
121
|
-
};
|
|
122
|
-
export const FollowupPromptFilterSensitiveLog = (obj) => ({
|
|
123
|
-
...obj,
|
|
124
|
-
...(obj.content && { content: SENSITIVE_STRING
|
|
125
|
-
}),
|
|
126
|
-
});
|
|
127
|
-
export const SupplementaryWebLinkFilterSensitiveLog = (obj) => ({
|
|
128
|
-
...obj,
|
|
129
|
-
...(obj.url && { url: SENSITIVE_STRING
|
|
130
|
-
}),
|
|
131
|
-
...(obj.title && { title: SENSITIVE_STRING
|
|
132
|
-
}),
|
|
133
|
-
...(obj.snippet && { snippet: SENSITIVE_STRING
|
|
134
|
-
}),
|
|
135
|
-
});
|
|
136
|
-
export const ToolUseFilterSensitiveLog = (obj) => ({
|
|
137
|
-
...obj,
|
|
138
|
-
...(obj.name && { name: SENSITIVE_STRING
|
|
139
|
-
}),
|
|
140
|
-
...(obj.input && { input: SENSITIVE_STRING
|
|
141
|
-
}),
|
|
142
|
-
});
|
|
143
|
-
export const AssistantResponseMessageFilterSensitiveLog = (obj) => ({
|
|
144
|
-
...obj,
|
|
145
|
-
...(obj.content && { content: SENSITIVE_STRING
|
|
146
|
-
}),
|
|
147
|
-
...(obj.supplementaryWebLinks && { supplementaryWebLinks: obj.supplementaryWebLinks.map(item => SupplementaryWebLinkFilterSensitiveLog(item))
|
|
148
|
-
}),
|
|
149
|
-
...(obj.followupPrompt && { followupPrompt: FollowupPromptFilterSensitiveLog(obj.followupPrompt)
|
|
150
|
-
}),
|
|
151
|
-
...(obj.toolUses && { toolUses: obj.toolUses.map(item => ToolUseFilterSensitiveLog(item))
|
|
152
|
-
}),
|
|
153
|
-
});
|
|
154
|
-
export const ConflictExceptionReason = {
|
|
155
|
-
CUSTOMER_KMS_KEY_DISABLED: "CUSTOMER_KMS_KEY_DISABLED",
|
|
156
|
-
CUSTOMER_KMS_KEY_INVALID_KEY_POLICY: "CUSTOMER_KMS_KEY_INVALID_KEY_POLICY",
|
|
157
|
-
MISMATCHED_KMS_KEY: "MISMATCHED_KMS_KEY",
|
|
158
|
-
};
|
|
159
|
-
export class ConflictException extends __BaseException {
|
|
160
|
-
name = "ConflictException";
|
|
161
|
-
$fault = "client";
|
|
162
|
-
reason;
|
|
163
|
-
constructor(opts) {
|
|
164
|
-
super({
|
|
165
|
-
name: "ConflictException",
|
|
166
|
-
$fault: "client",
|
|
167
|
-
...opts
|
|
168
|
-
});
|
|
169
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
170
|
-
this.reason = opts.reason;
|
|
171
|
-
}
|
|
172
|
-
}
|
|
173
|
-
export const ContentChecksumType = {
|
|
174
|
-
SHA_256: "SHA_256",
|
|
175
|
-
};
|
|
176
|
-
export const BinaryMetadataEventFilterSensitiveLog = (obj) => ({
|
|
177
|
-
...obj,
|
|
178
|
-
});
|
|
179
|
-
export const BinaryPayloadEventFilterSensitiveLog = (obj) => ({
|
|
180
|
-
...obj,
|
|
181
|
-
...(obj.bytes && { bytes: SENSITIVE_STRING
|
|
182
|
-
}),
|
|
183
|
-
});
|
|
184
|
-
export const ImageFormat = {
|
|
185
|
-
GIF: "gif",
|
|
186
|
-
JPEG: "jpeg",
|
|
187
|
-
PNG: "png",
|
|
188
|
-
WEBP: "webp",
|
|
189
|
-
};
|
|
190
|
-
export var ImageSource;
|
|
191
|
-
(function (ImageSource) {
|
|
192
|
-
ImageSource.visit = (value, visitor) => {
|
|
193
|
-
if (value.bytes !== undefined)
|
|
194
|
-
return visitor.bytes(value.bytes);
|
|
195
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
196
|
-
};
|
|
197
|
-
})(ImageSource || (ImageSource = {}));
|
|
198
|
-
export const ImageSourceFilterSensitiveLog = (obj) => {
|
|
199
|
-
if (obj.bytes !== undefined)
|
|
200
|
-
return { bytes: obj.bytes
|
|
201
|
-
};
|
|
202
|
-
if (obj.$unknown !== undefined)
|
|
203
|
-
return { [obj.$unknown[0]]: 'UNKNOWN' };
|
|
204
|
-
};
|
|
205
|
-
export const ImageBlockFilterSensitiveLog = (obj) => ({
|
|
206
|
-
...obj,
|
|
207
|
-
...(obj.source && { source: SENSITIVE_STRING
|
|
208
|
-
}),
|
|
209
|
-
});
|
|
210
|
-
export const Origin = {
|
|
211
|
-
AI_EDITOR: "AI_EDITOR",
|
|
212
|
-
CHATBOT: "CHATBOT",
|
|
213
|
-
CLI: "CLI",
|
|
214
|
-
CONSOLE: "CONSOLE",
|
|
215
|
-
DOCUMENTATION: "DOCUMENTATION",
|
|
216
|
-
GITLAB: "GITLAB",
|
|
217
|
-
IDE: "IDE",
|
|
218
|
-
MARKETING: "MARKETING",
|
|
219
|
-
MD: "MD",
|
|
220
|
-
MOBILE: "MOBILE",
|
|
221
|
-
OPENSEARCH_DASHBOARD: "OPENSEARCH_DASHBOARD",
|
|
222
|
-
SAGE_MAKER: "SAGE_MAKER",
|
|
223
|
-
SERVICE_INTERNAL: "SERVICE_INTERNAL",
|
|
224
|
-
UNIFIED_SEARCH: "UNIFIED_SEARCH",
|
|
225
|
-
UNKNOWN: "UNKNOWN",
|
|
226
|
-
};
|
|
227
|
-
export const ConsoleStateFilterSensitiveLog = (obj) => ({
|
|
228
|
-
...obj,
|
|
229
|
-
...(obj.consoleUrl && { consoleUrl: SENSITIVE_STRING
|
|
230
|
-
}),
|
|
231
|
-
...(obj.taskName && { taskName: SENSITIVE_STRING
|
|
232
|
-
}),
|
|
233
|
-
});
|
|
234
|
-
export const DiagnosticSeverity = {
|
|
235
|
-
ERROR: "ERROR",
|
|
236
|
-
HINT: "HINT",
|
|
237
|
-
INFORMATION: "INFORMATION",
|
|
238
|
-
WARNING: "WARNING",
|
|
239
|
-
};
|
|
240
|
-
export const RuntimeDiagnosticFilterSensitiveLog = (obj) => ({
|
|
241
|
-
...obj,
|
|
242
|
-
...(obj.source && { source: SENSITIVE_STRING
|
|
243
|
-
}),
|
|
244
|
-
...(obj.message && { message: SENSITIVE_STRING
|
|
245
|
-
}),
|
|
246
|
-
});
|
|
247
|
-
export const CodeDescriptionFilterSensitiveLog = (obj) => ({
|
|
248
|
-
...obj,
|
|
249
|
-
...(obj.href && { href: SENSITIVE_STRING
|
|
250
|
-
}),
|
|
251
|
-
});
|
|
252
|
-
export const SymbolType = {
|
|
253
|
-
DECLARATION: "DECLARATION",
|
|
254
|
-
USAGE: "USAGE",
|
|
255
|
-
};
|
|
256
|
-
export const TextDocumentFilterSensitiveLog = (obj) => ({
|
|
257
|
-
...obj,
|
|
258
|
-
...(obj.relativeFilePath && { relativeFilePath: SENSITIVE_STRING
|
|
259
|
-
}),
|
|
260
|
-
...(obj.text && { text: SENSITIVE_STRING
|
|
261
|
-
}),
|
|
262
|
-
});
|
|
263
|
-
export const DiagnosticLocationFilterSensitiveLog = (obj) => ({
|
|
264
|
-
...obj,
|
|
265
|
-
...(obj.uri && { uri: SENSITIVE_STRING
|
|
266
|
-
}),
|
|
267
|
-
});
|
|
268
|
-
export const DiagnosticRelatedInformationFilterSensitiveLog = (obj) => ({
|
|
269
|
-
...obj,
|
|
270
|
-
...(obj.location && { location: DiagnosticLocationFilterSensitiveLog(obj.location)
|
|
271
|
-
}),
|
|
272
|
-
...(obj.message && { message: SENSITIVE_STRING
|
|
273
|
-
}),
|
|
274
|
-
});
|
|
275
|
-
export const DiagnosticTag = {
|
|
276
|
-
DEPRECATED: "DEPRECATED",
|
|
277
|
-
UNNECESSARY: "UNNECESSARY",
|
|
278
|
-
};
|
|
279
|
-
export const TextDocumentDiagnosticFilterSensitiveLog = (obj) => ({
|
|
280
|
-
...obj,
|
|
281
|
-
...(obj.document && { document: TextDocumentFilterSensitiveLog(obj.document)
|
|
282
|
-
}),
|
|
283
|
-
...(obj.source && { source: SENSITIVE_STRING
|
|
284
|
-
}),
|
|
285
|
-
...(obj.message && { message: SENSITIVE_STRING
|
|
286
|
-
}),
|
|
287
|
-
...(obj.code && { code: SENSITIVE_STRING
|
|
288
|
-
}),
|
|
289
|
-
...(obj.codeDescription && { codeDescription: CodeDescriptionFilterSensitiveLog(obj.codeDescription)
|
|
290
|
-
}),
|
|
291
|
-
...(obj.relatedInformation && { relatedInformation: obj.relatedInformation.map(item => DiagnosticRelatedInformationFilterSensitiveLog(item))
|
|
292
|
-
}),
|
|
293
|
-
...(obj.data && { data: SENSITIVE_STRING
|
|
294
|
-
}),
|
|
295
|
-
});
|
|
296
|
-
export var Diagnostic;
|
|
297
|
-
(function (Diagnostic) {
|
|
298
|
-
Diagnostic.visit = (value, visitor) => {
|
|
299
|
-
if (value.textDocumentDiagnostic !== undefined)
|
|
300
|
-
return visitor.textDocumentDiagnostic(value.textDocumentDiagnostic);
|
|
301
|
-
if (value.runtimeDiagnostic !== undefined)
|
|
302
|
-
return visitor.runtimeDiagnostic(value.runtimeDiagnostic);
|
|
303
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
304
|
-
};
|
|
305
|
-
})(Diagnostic || (Diagnostic = {}));
|
|
306
|
-
export const DiagnosticFilterSensitiveLog = (obj) => {
|
|
307
|
-
if (obj.textDocumentDiagnostic !== undefined)
|
|
308
|
-
return { textDocumentDiagnostic: TextDocumentDiagnosticFilterSensitiveLog(obj.textDocumentDiagnostic)
|
|
309
|
-
};
|
|
310
|
-
if (obj.runtimeDiagnostic !== undefined)
|
|
311
|
-
return { runtimeDiagnostic: RuntimeDiagnosticFilterSensitiveLog(obj.runtimeDiagnostic)
|
|
312
|
-
};
|
|
313
|
-
if (obj.$unknown !== undefined)
|
|
314
|
-
return { [obj.$unknown[0]]: 'UNKNOWN' };
|
|
315
|
-
};
|
|
316
|
-
export var CursorState;
|
|
317
|
-
(function (CursorState) {
|
|
318
|
-
CursorState.visit = (value, visitor) => {
|
|
319
|
-
if (value.position !== undefined)
|
|
320
|
-
return visitor.position(value.position);
|
|
321
|
-
if (value.range !== undefined)
|
|
322
|
-
return visitor.range(value.range);
|
|
323
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
324
|
-
};
|
|
325
|
-
})(CursorState || (CursorState = {}));
|
|
326
|
-
export const ContentType = {
|
|
327
|
-
CODE: "CODE",
|
|
328
|
-
FILE: "FILE",
|
|
329
|
-
PROMPT: "PROMPT",
|
|
330
|
-
WORKSPACE: "WORKSPACE",
|
|
331
|
-
};
|
|
332
|
-
export const RelevantTextDocumentFilterSensitiveLog = (obj) => ({
|
|
333
|
-
...obj,
|
|
334
|
-
...(obj.relativeFilePath && { relativeFilePath: SENSITIVE_STRING
|
|
335
|
-
}),
|
|
336
|
-
...(obj.text && { text: SENSITIVE_STRING
|
|
337
|
-
}),
|
|
338
|
-
});
|
|
339
|
-
export const EditorStateFilterSensitiveLog = (obj) => ({
|
|
340
|
-
...obj,
|
|
341
|
-
...(obj.document && { document: TextDocumentFilterSensitiveLog(obj.document)
|
|
342
|
-
}),
|
|
343
|
-
...(obj.cursorState && { cursorState: obj.cursorState
|
|
344
|
-
}),
|
|
345
|
-
...(obj.relevantDocuments && { relevantDocuments: obj.relevantDocuments.map(item => RelevantTextDocumentFilterSensitiveLog(item))
|
|
346
|
-
}),
|
|
347
|
-
...(obj.workspaceFolders && { workspaceFolders: SENSITIVE_STRING
|
|
348
|
-
}),
|
|
349
|
-
});
|
|
350
|
-
export const EnvironmentVariableFilterSensitiveLog = (obj) => ({
|
|
351
|
-
...obj,
|
|
352
|
-
...(obj.key && { key: SENSITIVE_STRING
|
|
353
|
-
}),
|
|
354
|
-
...(obj.value && { value: SENSITIVE_STRING
|
|
355
|
-
}),
|
|
356
|
-
});
|
|
357
|
-
export const EnvStateFilterSensitiveLog = (obj) => ({
|
|
358
|
-
...obj,
|
|
359
|
-
...(obj.currentWorkingDirectory && { currentWorkingDirectory: SENSITIVE_STRING
|
|
360
|
-
}),
|
|
361
|
-
...(obj.environmentVariables && { environmentVariables: obj.environmentVariables.map(item => EnvironmentVariableFilterSensitiveLog(item))
|
|
362
|
-
}),
|
|
363
|
-
});
|
|
364
|
-
export const GitStateFilterSensitiveLog = (obj) => ({
|
|
365
|
-
...obj,
|
|
366
|
-
...(obj.status && { status: SENSITIVE_STRING
|
|
367
|
-
}),
|
|
368
|
-
});
|
|
369
|
-
export const ShellHistoryEntryFilterSensitiveLog = (obj) => ({
|
|
370
|
-
...obj,
|
|
371
|
-
...(obj.command && { command: SENSITIVE_STRING
|
|
372
|
-
}),
|
|
373
|
-
...(obj.directory && { directory: SENSITIVE_STRING
|
|
374
|
-
}),
|
|
375
|
-
...(obj.stdout && { stdout: SENSITIVE_STRING
|
|
376
|
-
}),
|
|
377
|
-
...(obj.stderr && { stderr: SENSITIVE_STRING
|
|
378
|
-
}),
|
|
379
|
-
});
|
|
380
|
-
export const ShellStateFilterSensitiveLog = (obj) => ({
|
|
381
|
-
...obj,
|
|
382
|
-
...(obj.shellHistory && { shellHistory: obj.shellHistory.map(item => ShellHistoryEntryFilterSensitiveLog(item))
|
|
383
|
-
}),
|
|
384
|
-
});
|
|
385
|
-
export var ToolResultContentBlock;
|
|
386
|
-
(function (ToolResultContentBlock) {
|
|
387
|
-
ToolResultContentBlock.visit = (value, visitor) => {
|
|
388
|
-
if (value.text !== undefined)
|
|
389
|
-
return visitor.text(value.text);
|
|
390
|
-
if (value.json !== undefined)
|
|
391
|
-
return visitor.json(value.json);
|
|
392
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
393
|
-
};
|
|
394
|
-
})(ToolResultContentBlock || (ToolResultContentBlock = {}));
|
|
395
|
-
export const ToolResultContentBlockFilterSensitiveLog = (obj) => {
|
|
396
|
-
if (obj.text !== undefined)
|
|
397
|
-
return { text: SENSITIVE_STRING
|
|
398
|
-
};
|
|
399
|
-
if (obj.json !== undefined)
|
|
400
|
-
return { json: SENSITIVE_STRING
|
|
401
|
-
};
|
|
402
|
-
if (obj.$unknown !== undefined)
|
|
403
|
-
return { [obj.$unknown[0]]: 'UNKNOWN' };
|
|
404
|
-
};
|
|
405
|
-
export const ToolResultStatus = {
|
|
406
|
-
ERROR: "error",
|
|
407
|
-
SUCCESS: "success",
|
|
408
|
-
};
|
|
409
|
-
export const ToolResultFilterSensitiveLog = (obj) => ({
|
|
410
|
-
...obj,
|
|
411
|
-
...(obj.content && { content: obj.content.map(item => ToolResultContentBlockFilterSensitiveLog(item))
|
|
412
|
-
}),
|
|
413
|
-
});
|
|
414
|
-
export const ToolInputSchemaFilterSensitiveLog = (obj) => ({
|
|
415
|
-
...obj,
|
|
416
|
-
...(obj.json && { json: SENSITIVE_STRING
|
|
417
|
-
}),
|
|
418
|
-
});
|
|
419
|
-
export const ToolSpecificationFilterSensitiveLog = (obj) => ({
|
|
420
|
-
...obj,
|
|
421
|
-
...(obj.inputSchema && { inputSchema: ToolInputSchemaFilterSensitiveLog(obj.inputSchema)
|
|
422
|
-
}),
|
|
423
|
-
...(obj.name && { name: SENSITIVE_STRING
|
|
424
|
-
}),
|
|
425
|
-
...(obj.description && { description: SENSITIVE_STRING
|
|
426
|
-
}),
|
|
427
|
-
});
|
|
428
|
-
export var Tool;
|
|
429
|
-
(function (Tool) {
|
|
430
|
-
Tool.visit = (value, visitor) => {
|
|
431
|
-
if (value.toolSpecification !== undefined)
|
|
432
|
-
return visitor.toolSpecification(value.toolSpecification);
|
|
433
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
434
|
-
};
|
|
435
|
-
})(Tool || (Tool = {}));
|
|
436
|
-
export const ToolFilterSensitiveLog = (obj) => {
|
|
437
|
-
if (obj.toolSpecification !== undefined)
|
|
438
|
-
return { toolSpecification: ToolSpecificationFilterSensitiveLog(obj.toolSpecification)
|
|
439
|
-
};
|
|
440
|
-
if (obj.$unknown !== undefined)
|
|
441
|
-
return { [obj.$unknown[0]]: 'UNKNOWN' };
|
|
442
|
-
};
|
|
443
|
-
export const UserInputMessageContextFilterSensitiveLog = (obj) => ({
|
|
444
|
-
...obj,
|
|
445
|
-
...(obj.editorState && { editorState: EditorStateFilterSensitiveLog(obj.editorState)
|
|
446
|
-
}),
|
|
447
|
-
...(obj.shellState && { shellState: ShellStateFilterSensitiveLog(obj.shellState)
|
|
448
|
-
}),
|
|
449
|
-
...(obj.gitState && { gitState: GitStateFilterSensitiveLog(obj.gitState)
|
|
450
|
-
}),
|
|
451
|
-
...(obj.envState && { envState: EnvStateFilterSensitiveLog(obj.envState)
|
|
452
|
-
}),
|
|
453
|
-
...(obj.appStudioContext && { appStudioContext: AppStudioStateFilterSensitiveLog(obj.appStudioContext)
|
|
454
|
-
}),
|
|
455
|
-
...(obj.diagnostic && { diagnostic: DiagnosticFilterSensitiveLog(obj.diagnostic)
|
|
456
|
-
}),
|
|
457
|
-
...(obj.consoleState && { consoleState: ConsoleStateFilterSensitiveLog(obj.consoleState)
|
|
458
|
-
}),
|
|
459
|
-
...(obj.additionalContext && { additionalContext: obj.additionalContext.map(item => AdditionalContentEntryFilterSensitiveLog(item))
|
|
460
|
-
}),
|
|
461
|
-
...(obj.toolResults && { toolResults: obj.toolResults.map(item => ToolResultFilterSensitiveLog(item))
|
|
462
|
-
}),
|
|
463
|
-
...(obj.tools && { tools: obj.tools.map(item => ToolFilterSensitiveLog(item))
|
|
464
|
-
}),
|
|
465
|
-
});
|
|
466
|
-
export const UserInputMessageFilterSensitiveLog = (obj) => ({
|
|
467
|
-
...obj,
|
|
468
|
-
...(obj.content && { content: SENSITIVE_STRING
|
|
469
|
-
}),
|
|
470
|
-
...(obj.userInputMessageContext && { userInputMessageContext: UserInputMessageContextFilterSensitiveLog(obj.userInputMessageContext)
|
|
471
|
-
}),
|
|
472
|
-
...(obj.images && { images: obj.images.map(item => ImageBlockFilterSensitiveLog(item))
|
|
473
|
-
}),
|
|
474
|
-
});
|
|
475
|
-
export var ChatMessage;
|
|
476
|
-
(function (ChatMessage) {
|
|
477
|
-
ChatMessage.visit = (value, visitor) => {
|
|
478
|
-
if (value.userInputMessage !== undefined)
|
|
479
|
-
return visitor.userInputMessage(value.userInputMessage);
|
|
480
|
-
if (value.assistantResponseMessage !== undefined)
|
|
481
|
-
return visitor.assistantResponseMessage(value.assistantResponseMessage);
|
|
482
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
483
|
-
};
|
|
484
|
-
})(ChatMessage || (ChatMessage = {}));
|
|
485
|
-
export const ChatMessageFilterSensitiveLog = (obj) => {
|
|
486
|
-
if (obj.userInputMessage !== undefined)
|
|
487
|
-
return { userInputMessage: UserInputMessageFilterSensitiveLog(obj.userInputMessage)
|
|
488
|
-
};
|
|
489
|
-
if (obj.assistantResponseMessage !== undefined)
|
|
490
|
-
return { assistantResponseMessage: AssistantResponseMessageFilterSensitiveLog(obj.assistantResponseMessage)
|
|
491
|
-
};
|
|
492
|
-
if (obj.$unknown !== undefined)
|
|
493
|
-
return { [obj.$unknown[0]]: 'UNKNOWN' };
|
|
494
|
-
};
|
|
495
|
-
export var CitationTarget;
|
|
496
|
-
(function (CitationTarget) {
|
|
497
|
-
CitationTarget.visit = (value, visitor) => {
|
|
498
|
-
if (value.location !== undefined)
|
|
499
|
-
return visitor.location(value.location);
|
|
500
|
-
if (value.range !== undefined)
|
|
501
|
-
return visitor.range(value.range);
|
|
502
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
503
|
-
};
|
|
504
|
-
})(CitationTarget || (CitationTarget = {}));
|
|
505
|
-
export const CitationEventFilterSensitiveLog = (obj) => ({
|
|
506
|
-
...obj,
|
|
507
|
-
...(obj.target && { target: obj.target
|
|
508
|
-
}),
|
|
509
|
-
...(obj.citationText && { citationText: SENSITIVE_STRING
|
|
510
|
-
}),
|
|
511
|
-
...(obj.citationLink && { citationLink: SENSITIVE_STRING
|
|
512
|
-
}),
|
|
513
|
-
});
|
|
514
|
-
export const CodeEventFilterSensitiveLog = (obj) => ({
|
|
515
|
-
...obj,
|
|
516
|
-
...(obj.content && { content: SENSITIVE_STRING
|
|
517
|
-
}),
|
|
518
|
-
});
|
|
519
|
-
export const FollowupPromptEventFilterSensitiveLog = (obj) => ({
|
|
520
|
-
...obj,
|
|
521
|
-
...(obj.followupPrompt && { followupPrompt: FollowupPromptFilterSensitiveLog(obj.followupPrompt)
|
|
522
|
-
}),
|
|
523
|
-
});
|
|
524
|
-
export const IntentType = {
|
|
525
|
-
GLUE_SENSEI: "GLUE_SENSEI",
|
|
526
|
-
RESOURCE_DATA: "RESOURCE_DATA",
|
|
527
|
-
SUPPORT: "SUPPORT",
|
|
528
|
-
};
|
|
529
|
-
export var IntentDataType;
|
|
530
|
-
(function (IntentDataType) {
|
|
531
|
-
IntentDataType.visit = (value, visitor) => {
|
|
532
|
-
if (value.string !== undefined)
|
|
533
|
-
return visitor.string(value.string);
|
|
534
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
535
|
-
};
|
|
536
|
-
})(IntentDataType || (IntentDataType = {}));
|
|
537
|
-
export const IntentsEventFilterSensitiveLog = (obj) => ({
|
|
538
|
-
...obj,
|
|
539
|
-
...(obj.intents && { intents: SENSITIVE_STRING
|
|
540
|
-
}),
|
|
541
|
-
});
|
|
542
|
-
export const CloudWatchTroubleshootingLinkFilterSensitiveLog = (obj) => ({
|
|
543
|
-
...obj,
|
|
544
|
-
...(obj.label && { label: SENSITIVE_STRING
|
|
545
|
-
}),
|
|
546
|
-
...(obj.investigationPayload && { investigationPayload: SENSITIVE_STRING
|
|
547
|
-
}),
|
|
548
|
-
...(obj.defaultText && { defaultText: SENSITIVE_STRING
|
|
549
|
-
}),
|
|
550
|
-
});
|
|
551
|
-
export const ModuleLinkFilterSensitiveLog = (obj) => ({
|
|
552
|
-
...obj,
|
|
553
|
-
...(obj.cloudWatchTroubleshootingLink && { cloudWatchTroubleshootingLink: CloudWatchTroubleshootingLinkFilterSensitiveLog(obj.cloudWatchTroubleshootingLink)
|
|
554
|
-
}),
|
|
555
|
-
});
|
|
556
|
-
export const WebLinkFilterSensitiveLog = (obj) => ({
|
|
557
|
-
...obj,
|
|
558
|
-
...(obj.label && { label: SENSITIVE_STRING
|
|
559
|
-
}),
|
|
560
|
-
...(obj.url && { url: SENSITIVE_STRING
|
|
561
|
-
}),
|
|
562
|
-
});
|
|
563
|
-
export const ActionFilterSensitiveLog = (obj) => ({
|
|
564
|
-
...obj,
|
|
565
|
-
...(obj.webLink && { webLink: WebLinkFilterSensitiveLog(obj.webLink)
|
|
566
|
-
}),
|
|
567
|
-
...(obj.moduleLink && { moduleLink: ModuleLinkFilterSensitiveLog(obj.moduleLink)
|
|
568
|
-
}),
|
|
569
|
-
});
|
|
570
|
-
export const TextFilterSensitiveLog = (obj) => ({
|
|
571
|
-
...obj,
|
|
572
|
-
...(obj.content && { content: SENSITIVE_STRING
|
|
573
|
-
}),
|
|
574
|
-
});
|
|
575
|
-
export const AlertComponentFilterSensitiveLog = (obj) => ({
|
|
576
|
-
...obj,
|
|
577
|
-
...(obj.text && { text: TextFilterSensitiveLog(obj.text)
|
|
578
|
-
}),
|
|
579
|
-
});
|
|
580
|
-
export const AlertType = {
|
|
581
|
-
ERROR: "ERROR",
|
|
582
|
-
INFO: "INFO",
|
|
583
|
-
WARNING: "WARNING",
|
|
584
|
-
};
|
|
585
|
-
export const AlertFilterSensitiveLog = (obj) => ({
|
|
586
|
-
...obj,
|
|
587
|
-
...(obj.content && { content: obj.content.map(item => AlertComponentFilterSensitiveLog(item))
|
|
588
|
-
}),
|
|
589
|
-
});
|
|
590
|
-
export const InfrastructureUpdateTransitionFilterSensitiveLog = (obj) => ({
|
|
591
|
-
...obj,
|
|
592
|
-
...(obj.currentState && { currentState: SENSITIVE_STRING
|
|
593
|
-
}),
|
|
594
|
-
...(obj.nextState && { nextState: SENSITIVE_STRING
|
|
595
|
-
}),
|
|
596
|
-
});
|
|
597
|
-
export const InfrastructureUpdateFilterSensitiveLog = (obj) => ({
|
|
598
|
-
...obj,
|
|
599
|
-
...(obj.transition && { transition: InfrastructureUpdateTransitionFilterSensitiveLog(obj.transition)
|
|
600
|
-
}),
|
|
601
|
-
});
|
|
602
|
-
export const StepComponentFilterSensitiveLog = (obj) => ({
|
|
603
|
-
...obj,
|
|
604
|
-
...(obj.text && { text: TextFilterSensitiveLog(obj.text)
|
|
605
|
-
}),
|
|
606
|
-
});
|
|
607
|
-
export const StepState = {
|
|
608
|
-
FAILED: "FAILED",
|
|
609
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
610
|
-
LOADING: "LOADING",
|
|
611
|
-
PAUSED: "PAUSED",
|
|
612
|
-
PENDING: "PENDING",
|
|
613
|
-
STOPPED: "STOPPED",
|
|
614
|
-
SUCCEEDED: "SUCCEEDED",
|
|
615
|
-
};
|
|
616
|
-
export const StepFilterSensitiveLog = (obj) => ({
|
|
617
|
-
...obj,
|
|
618
|
-
...(obj.label && { label: SENSITIVE_STRING
|
|
619
|
-
}),
|
|
620
|
-
...(obj.content && { content: obj.content.map(item => StepComponentFilterSensitiveLog(item))
|
|
621
|
-
}),
|
|
622
|
-
});
|
|
623
|
-
export const ProgressComponentFilterSensitiveLog = (obj) => ({
|
|
624
|
-
...obj,
|
|
625
|
-
...(obj.step && { step: StepFilterSensitiveLog(obj.step)
|
|
626
|
-
}),
|
|
627
|
-
});
|
|
628
|
-
export const ProgressFilterSensitiveLog = (obj) => ({
|
|
629
|
-
...obj,
|
|
630
|
-
...(obj.content && { content: obj.content.map(item => ProgressComponentFilterSensitiveLog(item))
|
|
631
|
-
}),
|
|
632
|
-
});
|
|
633
|
-
export const ResourceFilterSensitiveLog = (obj) => ({
|
|
634
|
-
...obj,
|
|
635
|
-
...(obj.title && { title: SENSITIVE_STRING
|
|
636
|
-
}),
|
|
637
|
-
...(obj.link && { link: SENSITIVE_STRING
|
|
638
|
-
}),
|
|
639
|
-
...(obj.description && { description: SENSITIVE_STRING
|
|
640
|
-
}),
|
|
641
|
-
...(obj.type && { type: SENSITIVE_STRING
|
|
642
|
-
}),
|
|
643
|
-
...(obj.ARN && { ARN: SENSITIVE_STRING
|
|
644
|
-
}),
|
|
645
|
-
...(obj.resourceJsonString && { resourceJsonString: SENSITIVE_STRING
|
|
646
|
-
}),
|
|
647
|
-
});
|
|
648
|
-
export const ResourceListFilterSensitiveLog = (obj) => ({
|
|
649
|
-
...obj,
|
|
650
|
-
...(obj.action && { action: ActionFilterSensitiveLog(obj.action)
|
|
651
|
-
}),
|
|
652
|
-
...(obj.items && { items: obj.items.map(item => ResourceFilterSensitiveLog(item))
|
|
653
|
-
}),
|
|
654
|
-
});
|
|
655
|
-
export const SectionComponentFilterSensitiveLog = (obj) => ({
|
|
656
|
-
...obj,
|
|
657
|
-
...(obj.text && { text: TextFilterSensitiveLog(obj.text)
|
|
658
|
-
}),
|
|
659
|
-
...(obj.alert && { alert: AlertFilterSensitiveLog(obj.alert)
|
|
660
|
-
}),
|
|
661
|
-
...(obj.resource && { resource: ResourceFilterSensitiveLog(obj.resource)
|
|
662
|
-
}),
|
|
663
|
-
...(obj.resourceList && { resourceList: ResourceListFilterSensitiveLog(obj.resourceList)
|
|
664
|
-
}),
|
|
665
|
-
});
|
|
666
|
-
export const SectionFilterSensitiveLog = (obj) => ({
|
|
667
|
-
...obj,
|
|
668
|
-
...(obj.title && { title: SENSITIVE_STRING
|
|
669
|
-
}),
|
|
670
|
-
...(obj.content && { content: obj.content.map(item => SectionComponentFilterSensitiveLog(item))
|
|
671
|
-
}),
|
|
672
|
-
...(obj.action && { action: ActionFilterSensitiveLog(obj.action)
|
|
673
|
-
}),
|
|
674
|
-
});
|
|
675
|
-
export const SuggestionFilterSensitiveLog = (obj) => ({
|
|
676
|
-
...obj,
|
|
677
|
-
...(obj.value && { value: SENSITIVE_STRING
|
|
678
|
-
}),
|
|
679
|
-
});
|
|
680
|
-
export const SuggestionsFilterSensitiveLog = (obj) => ({
|
|
681
|
-
...obj,
|
|
682
|
-
...(obj.items && { items: obj.items.map(item => SuggestionFilterSensitiveLog(item))
|
|
683
|
-
}),
|
|
684
|
-
});
|
|
685
|
-
export const TaskActionConfirmationFilterSensitiveLog = (obj) => ({
|
|
686
|
-
...obj,
|
|
687
|
-
...(obj.content && { content: SENSITIVE_STRING
|
|
688
|
-
}),
|
|
689
|
-
});
|
|
690
|
-
export const TaskActionNoteType = {
|
|
691
|
-
INFO: "INFO",
|
|
692
|
-
WARNING: "WARNING",
|
|
693
|
-
};
|
|
694
|
-
export const TaskActionNoteFilterSensitiveLog = (obj) => ({
|
|
695
|
-
...obj,
|
|
696
|
-
...(obj.content && { content: SENSITIVE_STRING
|
|
697
|
-
}),
|
|
698
|
-
});
|
|
699
|
-
export const TaskActionFilterSensitiveLog = (obj) => ({
|
|
700
|
-
...obj,
|
|
701
|
-
...(obj.label && { label: SENSITIVE_STRING
|
|
702
|
-
}),
|
|
703
|
-
...(obj.note && { note: TaskActionNoteFilterSensitiveLog(obj.note)
|
|
704
|
-
}),
|
|
705
|
-
...(obj.payload && { payload: SENSITIVE_STRING
|
|
706
|
-
}),
|
|
707
|
-
...(obj.confirmation && { confirmation: TaskActionConfirmationFilterSensitiveLog(obj.confirmation)
|
|
708
|
-
}),
|
|
709
|
-
});
|
|
710
|
-
export const TaskComponentFilterSensitiveLog = (obj) => ({
|
|
711
|
-
...obj,
|
|
712
|
-
...(obj.text && { text: TextFilterSensitiveLog(obj.text)
|
|
713
|
-
}),
|
|
714
|
-
...(obj.infrastructureUpdate && { infrastructureUpdate: InfrastructureUpdateFilterSensitiveLog(obj.infrastructureUpdate)
|
|
715
|
-
}),
|
|
716
|
-
...(obj.alert && { alert: AlertFilterSensitiveLog(obj.alert)
|
|
717
|
-
}),
|
|
718
|
-
...(obj.progress && { progress: ProgressFilterSensitiveLog(obj.progress)
|
|
719
|
-
}),
|
|
720
|
-
});
|
|
721
|
-
export const TaskOverviewFilterSensitiveLog = (obj) => ({
|
|
722
|
-
...obj,
|
|
723
|
-
...(obj.label && { label: SENSITIVE_STRING
|
|
724
|
-
}),
|
|
725
|
-
...(obj.description && { description: SENSITIVE_STRING
|
|
726
|
-
}),
|
|
727
|
-
});
|
|
728
|
-
export const TaskDetailsFilterSensitiveLog = (obj) => ({
|
|
729
|
-
...obj,
|
|
730
|
-
...(obj.overview && { overview: TaskOverviewFilterSensitiveLog(obj.overview)
|
|
731
|
-
}),
|
|
732
|
-
...(obj.content && { content: obj.content.map(item => TaskComponentFilterSensitiveLog(item))
|
|
733
|
-
}),
|
|
734
|
-
...(obj.actions && { actions: obj.actions.map(item => TaskActionFilterSensitiveLog(item))
|
|
735
|
-
}),
|
|
736
|
-
});
|
|
737
|
-
export const InteractionComponentFilterSensitiveLog = (obj) => ({
|
|
738
|
-
...obj,
|
|
739
|
-
...(obj.text && { text: TextFilterSensitiveLog(obj.text)
|
|
740
|
-
}),
|
|
741
|
-
...(obj.alert && { alert: AlertFilterSensitiveLog(obj.alert)
|
|
742
|
-
}),
|
|
743
|
-
...(obj.infrastructureUpdate && { infrastructureUpdate: InfrastructureUpdateFilterSensitiveLog(obj.infrastructureUpdate)
|
|
744
|
-
}),
|
|
745
|
-
...(obj.progress && { progress: ProgressFilterSensitiveLog(obj.progress)
|
|
746
|
-
}),
|
|
747
|
-
...(obj.step && { step: StepFilterSensitiveLog(obj.step)
|
|
748
|
-
}),
|
|
749
|
-
...(obj.taskDetails && { taskDetails: TaskDetailsFilterSensitiveLog(obj.taskDetails)
|
|
750
|
-
}),
|
|
751
|
-
...(obj.suggestions && { suggestions: SuggestionsFilterSensitiveLog(obj.suggestions)
|
|
752
|
-
}),
|
|
753
|
-
...(obj.section && { section: SectionFilterSensitiveLog(obj.section)
|
|
754
|
-
}),
|
|
755
|
-
...(obj.resource && { resource: ResourceFilterSensitiveLog(obj.resource)
|
|
756
|
-
}),
|
|
757
|
-
...(obj.resourceList && { resourceList: ResourceListFilterSensitiveLog(obj.resourceList)
|
|
758
|
-
}),
|
|
759
|
-
...(obj.action && { action: ActionFilterSensitiveLog(obj.action)
|
|
760
|
-
}),
|
|
761
|
-
});
|
|
762
|
-
export const InteractionComponentEntryFilterSensitiveLog = (obj) => ({
|
|
763
|
-
...obj,
|
|
764
|
-
...(obj.interactionComponent && { interactionComponent: InteractionComponentFilterSensitiveLog(obj.interactionComponent)
|
|
765
|
-
}),
|
|
766
|
-
});
|
|
767
|
-
export const InteractionComponentsEventFilterSensitiveLog = (obj) => ({
|
|
768
|
-
...obj,
|
|
769
|
-
...(obj.interactionComponentEntries && { interactionComponentEntries: obj.interactionComponentEntries.map(item => InteractionComponentEntryFilterSensitiveLog(item))
|
|
770
|
-
}),
|
|
771
|
-
});
|
|
772
|
-
export const InvalidStateReason = {
|
|
773
|
-
INVALID_TASK_ASSIST_PLAN: "INVALID_TASK_ASSIST_PLAN",
|
|
774
|
-
};
|
|
775
|
-
export const SupplementaryWebLinksEventFilterSensitiveLog = (obj) => ({
|
|
776
|
-
...obj,
|
|
777
|
-
...(obj.supplementaryWebLinks && { supplementaryWebLinks: obj.supplementaryWebLinks.map(item => SupplementaryWebLinkFilterSensitiveLog(item))
|
|
778
|
-
}),
|
|
779
|
-
});
|
|
780
|
-
export const ToolResultEventFilterSensitiveLog = (obj) => ({
|
|
781
|
-
...obj,
|
|
782
|
-
...(obj.toolResult && { toolResult: ToolResultFilterSensitiveLog(obj.toolResult)
|
|
783
|
-
}),
|
|
784
|
-
});
|
|
785
|
-
export const ToolUseEventFilterSensitiveLog = (obj) => ({
|
|
786
|
-
...obj,
|
|
787
|
-
...(obj.name && { name: SENSITIVE_STRING
|
|
788
|
-
}),
|
|
789
|
-
...(obj.input && { input: SENSITIVE_STRING
|
|
790
|
-
}),
|
|
791
|
-
});
|
|
792
|
-
export var ChatResponseStream;
|
|
793
|
-
(function (ChatResponseStream) {
|
|
794
|
-
ChatResponseStream.visit = (value, visitor) => {
|
|
795
|
-
if (value.messageMetadataEvent !== undefined)
|
|
796
|
-
return visitor.messageMetadataEvent(value.messageMetadataEvent);
|
|
797
|
-
if (value.assistantResponseEvent !== undefined)
|
|
798
|
-
return visitor.assistantResponseEvent(value.assistantResponseEvent);
|
|
799
|
-
if (value.dryRunSucceedEvent !== undefined)
|
|
800
|
-
return visitor.dryRunSucceedEvent(value.dryRunSucceedEvent);
|
|
801
|
-
if (value.codeReferenceEvent !== undefined)
|
|
802
|
-
return visitor.codeReferenceEvent(value.codeReferenceEvent);
|
|
803
|
-
if (value.supplementaryWebLinksEvent !== undefined)
|
|
804
|
-
return visitor.supplementaryWebLinksEvent(value.supplementaryWebLinksEvent);
|
|
805
|
-
if (value.followupPromptEvent !== undefined)
|
|
806
|
-
return visitor.followupPromptEvent(value.followupPromptEvent);
|
|
807
|
-
if (value.codeEvent !== undefined)
|
|
808
|
-
return visitor.codeEvent(value.codeEvent);
|
|
809
|
-
if (value.intentsEvent !== undefined)
|
|
810
|
-
return visitor.intentsEvent(value.intentsEvent);
|
|
811
|
-
if (value.interactionComponentsEvent !== undefined)
|
|
812
|
-
return visitor.interactionComponentsEvent(value.interactionComponentsEvent);
|
|
813
|
-
if (value.toolUseEvent !== undefined)
|
|
814
|
-
return visitor.toolUseEvent(value.toolUseEvent);
|
|
815
|
-
if (value.toolResultEvent !== undefined)
|
|
816
|
-
return visitor.toolResultEvent(value.toolResultEvent);
|
|
817
|
-
if (value.citationEvent !== undefined)
|
|
818
|
-
return visitor.citationEvent(value.citationEvent);
|
|
819
|
-
if (value.invalidStateEvent !== undefined)
|
|
820
|
-
return visitor.invalidStateEvent(value.invalidStateEvent);
|
|
821
|
-
if (value.error !== undefined)
|
|
822
|
-
return visitor.error(value.error);
|
|
823
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
824
|
-
};
|
|
825
|
-
})(ChatResponseStream || (ChatResponseStream = {}));
|
|
826
|
-
export const ChatResponseStreamFilterSensitiveLog = (obj) => {
|
|
827
|
-
if (obj.messageMetadataEvent !== undefined)
|
|
828
|
-
return { messageMetadataEvent: obj.messageMetadataEvent
|
|
829
|
-
};
|
|
830
|
-
if (obj.assistantResponseEvent !== undefined)
|
|
831
|
-
return { assistantResponseEvent: AssistantResponseEventFilterSensitiveLog(obj.assistantResponseEvent)
|
|
832
|
-
};
|
|
833
|
-
if (obj.dryRunSucceedEvent !== undefined)
|
|
834
|
-
return { dryRunSucceedEvent: obj.dryRunSucceedEvent
|
|
835
|
-
};
|
|
836
|
-
if (obj.codeReferenceEvent !== undefined)
|
|
837
|
-
return { codeReferenceEvent: obj.codeReferenceEvent
|
|
838
|
-
};
|
|
839
|
-
if (obj.supplementaryWebLinksEvent !== undefined)
|
|
840
|
-
return { supplementaryWebLinksEvent: SupplementaryWebLinksEventFilterSensitiveLog(obj.supplementaryWebLinksEvent)
|
|
841
|
-
};
|
|
842
|
-
if (obj.followupPromptEvent !== undefined)
|
|
843
|
-
return { followupPromptEvent: FollowupPromptEventFilterSensitiveLog(obj.followupPromptEvent)
|
|
844
|
-
};
|
|
845
|
-
if (obj.codeEvent !== undefined)
|
|
846
|
-
return { codeEvent: CodeEventFilterSensitiveLog(obj.codeEvent)
|
|
847
|
-
};
|
|
848
|
-
if (obj.intentsEvent !== undefined)
|
|
849
|
-
return { intentsEvent: IntentsEventFilterSensitiveLog(obj.intentsEvent)
|
|
850
|
-
};
|
|
851
|
-
if (obj.interactionComponentsEvent !== undefined)
|
|
852
|
-
return { interactionComponentsEvent: InteractionComponentsEventFilterSensitiveLog(obj.interactionComponentsEvent)
|
|
853
|
-
};
|
|
854
|
-
if (obj.toolUseEvent !== undefined)
|
|
855
|
-
return { toolUseEvent: ToolUseEventFilterSensitiveLog(obj.toolUseEvent)
|
|
856
|
-
};
|
|
857
|
-
if (obj.toolResultEvent !== undefined)
|
|
858
|
-
return { toolResultEvent: ToolResultEventFilterSensitiveLog(obj.toolResultEvent)
|
|
859
|
-
};
|
|
860
|
-
if (obj.citationEvent !== undefined)
|
|
861
|
-
return { citationEvent: CitationEventFilterSensitiveLog(obj.citationEvent)
|
|
862
|
-
};
|
|
863
|
-
if (obj.invalidStateEvent !== undefined)
|
|
864
|
-
return { invalidStateEvent: obj.invalidStateEvent
|
|
865
|
-
};
|
|
866
|
-
if (obj.error !== undefined)
|
|
867
|
-
return { error: obj.error
|
|
868
|
-
};
|
|
869
|
-
if (obj.$unknown !== undefined)
|
|
870
|
-
return { [obj.$unknown[0]]: 'UNKNOWN' };
|
|
871
|
-
};
|
|
872
|
-
export const ChatTriggerType = {
|
|
873
|
-
DIAGNOSTIC: "DIAGNOSTIC",
|
|
874
|
-
INLINE_CHAT: "INLINE_CHAT",
|
|
875
|
-
MANUAL: "MANUAL",
|
|
876
|
-
};
|
|
877
|
-
export const ContextTruncationScheme = {
|
|
878
|
-
ANALYSIS: "ANALYSIS",
|
|
879
|
-
GUMBY: "GUMBY",
|
|
880
|
-
};
|
|
881
|
-
export const ConversationStateFilterSensitiveLog = (obj) => ({
|
|
882
|
-
...obj,
|
|
883
|
-
...(obj.history && { history: obj.history.map(item => ChatMessageFilterSensitiveLog(item))
|
|
884
|
-
}),
|
|
885
|
-
...(obj.currentMessage && { currentMessage: ChatMessageFilterSensitiveLog(obj.currentMessage)
|
|
886
|
-
}),
|
|
887
|
-
});
|
|
888
|
-
export class DryRunOperationException extends __BaseException {
|
|
889
|
-
name = "DryRunOperationException";
|
|
890
|
-
$fault = "client";
|
|
891
|
-
responseCode;
|
|
892
|
-
constructor(opts) {
|
|
893
|
-
super({
|
|
894
|
-
name: "DryRunOperationException",
|
|
895
|
-
$fault: "client",
|
|
896
|
-
...opts
|
|
897
|
-
});
|
|
898
|
-
Object.setPrototypeOf(this, DryRunOperationException.prototype);
|
|
899
|
-
this.responseCode = opts.responseCode;
|
|
900
|
-
}
|
|
901
|
-
}
|
|
902
|
-
export const TransformationDownloadArtifactType = {
|
|
903
|
-
CLIENT_INSTRUCTIONS: "ClientInstructions",
|
|
904
|
-
GENERATED_CODE: "GeneratedCode",
|
|
905
|
-
LOGS: "Logs",
|
|
906
|
-
};
|
|
907
|
-
export var ExportContext;
|
|
908
|
-
(function (ExportContext) {
|
|
909
|
-
ExportContext.visit = (value, visitor) => {
|
|
910
|
-
if (value.transformationExportContext !== undefined)
|
|
911
|
-
return visitor.transformationExportContext(value.transformationExportContext);
|
|
912
|
-
if (value.unitTestGenerationExportContext !== undefined)
|
|
913
|
-
return visitor.unitTestGenerationExportContext(value.unitTestGenerationExportContext);
|
|
914
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
915
|
-
};
|
|
916
|
-
})(ExportContext || (ExportContext = {}));
|
|
917
|
-
export const ExportIntent = {
|
|
918
|
-
TASK_ASSIST: "TASK_ASSIST",
|
|
919
|
-
TRANSFORMATION: "TRANSFORMATION",
|
|
920
|
-
UNIT_TESTS: "UNIT_TESTS",
|
|
921
|
-
};
|
|
922
|
-
export var ResultArchiveStream;
|
|
923
|
-
(function (ResultArchiveStream) {
|
|
924
|
-
ResultArchiveStream.visit = (value, visitor) => {
|
|
925
|
-
if (value.binaryMetadataEvent !== undefined)
|
|
926
|
-
return visitor.binaryMetadataEvent(value.binaryMetadataEvent);
|
|
927
|
-
if (value.binaryPayloadEvent !== undefined)
|
|
928
|
-
return visitor.binaryPayloadEvent(value.binaryPayloadEvent);
|
|
929
|
-
if (value.internalServerException !== undefined)
|
|
930
|
-
return visitor.internalServerException(value.internalServerException);
|
|
931
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
932
|
-
};
|
|
933
|
-
})(ResultArchiveStream || (ResultArchiveStream = {}));
|
|
934
|
-
export const ResultArchiveStreamFilterSensitiveLog = (obj) => {
|
|
935
|
-
if (obj.binaryMetadataEvent !== undefined)
|
|
936
|
-
return { binaryMetadataEvent: SENSITIVE_STRING
|
|
937
|
-
};
|
|
938
|
-
if (obj.binaryPayloadEvent !== undefined)
|
|
939
|
-
return { binaryPayloadEvent: SENSITIVE_STRING
|
|
940
|
-
};
|
|
941
|
-
if (obj.internalServerException !== undefined)
|
|
942
|
-
return { internalServerException: obj.internalServerException
|
|
943
|
-
};
|
|
944
|
-
if (obj.$unknown !== undefined)
|
|
945
|
-
return { [obj.$unknown[0]]: 'UNKNOWN' };
|
|
946
|
-
};
|
|
947
|
-
export const ServiceQuotaExceededExceptionReason = {
|
|
948
|
-
CONVERSATION_LIMIT_EXCEEDED: "CONVERSATION_LIMIT_EXCEEDED",
|
|
949
|
-
};
|
|
950
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
951
|
-
name = "ServiceQuotaExceededException";
|
|
952
|
-
$fault = "client";
|
|
953
|
-
reason;
|
|
954
|
-
constructor(opts) {
|
|
955
|
-
super({
|
|
956
|
-
name: "ServiceQuotaExceededException",
|
|
957
|
-
$fault: "client",
|
|
958
|
-
...opts
|
|
959
|
-
});
|
|
960
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
961
|
-
this.reason = opts.reason;
|
|
962
|
-
}
|
|
963
|
-
}
|
|
964
|
-
export const GenerateAssistantResponseRequestFilterSensitiveLog = (obj) => ({
|
|
965
|
-
...obj,
|
|
966
|
-
...(obj.conversationState && { conversationState: ConversationStateFilterSensitiveLog(obj.conversationState)
|
|
967
|
-
}),
|
|
968
|
-
});
|
|
969
|
-
export const GenerateAssistantResponseResponseFilterSensitiveLog = (obj) => ({
|
|
970
|
-
...obj,
|
|
971
|
-
...(obj.generateAssistantResponseResponse && { generateAssistantResponseResponse: 'STREAMING_CONTENT'
|
|
972
|
-
}),
|
|
973
|
-
});
|
|
974
|
-
export const ExportResultArchiveResponseFilterSensitiveLog = (obj) => ({
|
|
975
|
-
...obj,
|
|
976
|
-
...(obj.body && { body: 'STREAMING_CONTENT'
|
|
977
|
-
}),
|
|
978
|
-
});
|
|
979
|
-
export const SendMessageRequestFilterSensitiveLog = (obj) => ({
|
|
980
|
-
...obj,
|
|
981
|
-
...(obj.conversationState && { conversationState: ConversationStateFilterSensitiveLog(obj.conversationState)
|
|
982
|
-
}),
|
|
983
|
-
});
|
|
984
|
-
export const SendMessageResponseFilterSensitiveLog = (obj) => ({
|
|
985
|
-
...obj,
|
|
986
|
-
...(obj.sendMessageResponse && { sendMessageResponse: 'STREAMING_CONTENT'
|
|
987
|
-
}),
|
|
988
|
-
});
|
|
989
|
-
export const GenerateTaskAssistPlanRequestFilterSensitiveLog = (obj) => ({
|
|
990
|
-
...obj,
|
|
991
|
-
...(obj.conversationState && { conversationState: ConversationStateFilterSensitiveLog(obj.conversationState)
|
|
992
|
-
}),
|
|
993
|
-
});
|
|
994
|
-
export const GenerateTaskAssistPlanResponseFilterSensitiveLog = (obj) => ({
|
|
995
|
-
...obj,
|
|
996
|
-
...(obj.planningResponseStream && { planningResponseStream: 'STREAMING_CONTENT'
|
|
997
|
-
}),
|
|
998
|
-
});
|