From 0f327d583efab07a7691c03681a517662ce1e3ad Mon Sep 17 00:00:00 2001 From: Ahmed Ali Date: Wed, 23 Oct 2024 09:24:37 -0700 Subject: [PATCH 01/13] fix(AmazonQ): Use SM Iam Credentials for CodeWhisperer SM IAM permissions have been working as of v1.99 and now it's broken. This change brings it back to support code completion for SM code editor --- packages/amazonq/src/extension.ts | 3 ++- packages/core/src/auth/activation.ts | 16 +++++++++++++++- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/packages/amazonq/src/extension.ts b/packages/amazonq/src/extension.ts index d7c7f3c1448..599aa9264a4 100644 --- a/packages/amazonq/src/extension.ts +++ b/packages/amazonq/src/extension.ts @@ -44,6 +44,7 @@ import { setContext, setupUninstallHandler, maybeShowMinVscodeWarning, + isSageMaker, } from 'aws-core-vscode/shared' import { ExtStartUpSources, telemetry } from 'aws-core-vscode/telemetry' import { VSCODE_EXTENSION_ID } from 'aws-core-vscode/utils' @@ -193,7 +194,7 @@ export async function activateAmazonQCommon(context: vscode.ExtensionContext, is } } const currConn = AuthUtil.instance.conn - if (currConn !== undefined && !isAnySsoConnection(currConn)) { + if (currConn !== undefined && !(isAnySsoConnection(currConn) || isSageMaker())) { getLogger().error(`Current Amazon Q connection is not SSO, type is: %s`, currConn?.type) } diff --git a/packages/core/src/auth/activation.ts b/packages/core/src/auth/activation.ts index 71b9bd098b8..4753043a0fc 100644 --- a/packages/core/src/auth/activation.ts +++ b/packages/core/src/auth/activation.ts @@ -8,11 +8,19 @@ import { LoginManager } from './deprecated/loginManager' import { fromString } from './providers/credentials' import { getLogger } from '../shared/logger' import { ExtensionUse } from './utils' -import { isCloud9 } from '../shared/extensionUtilities' +import { isAmazonQ, isCloud9, isSageMaker } from '../shared/extensionUtilities' import { isInDevEnv } from '../shared/vscode/env' import { isWeb } from '../shared/extensionGlobals' +import { CredentialsProviderManager } from './providers/credentialsProviderManager' +import { SharedCredentialsProviderFactory } from './providers/sharedCredentialsProviderFactory' +import { Ec2CredentialsProvider } from './providers/ec2CredentialsProvider' +import { EcsCredentialsProvider } from './providers/ecsCredentialsProvider' +import { EnvVarsCredentialsProvider } from './providers/envVarsCredentialsProvider' export async function initialize(loginManager: LoginManager): Promise { + if (isAmazonQ() && isSageMaker()) { + initializeCredentialsProviderManager() + } Auth.instance.onDidChangeActiveConnection(async (conn) => { // This logic needs to be moved to `Auth.useConnection` to correctly record `passive` if (conn?.type === 'iam' && conn.state === 'valid') { @@ -25,6 +33,12 @@ export async function initialize(loginManager: LoginManager): Promise { await showManageConnectionsOnStartup() } +function initializeCredentialsProviderManager() { + const manager = CredentialsProviderManager.getInstance() + manager.addProviderFactory(new SharedCredentialsProviderFactory()) + manager.addProviders(new Ec2CredentialsProvider(), new EcsCredentialsProvider(), new EnvVarsCredentialsProvider()) +} + /** * Show the Manage Connections page when the extension starts up, if it should be shown. */ From c0c824a365a2e6db7825afd5dec8d1613e07dd88 Mon Sep 17 00:00:00 2001 From: Ahmed Ali Date: Wed, 23 Oct 2024 09:34:12 -0700 Subject: [PATCH 02/13] Add change log --- .../Bug Fix-0ee7be24-b0f8-460b-a852-a2d08b6d289e.json | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 packages/amazonq/.changes/next-release/Bug Fix-0ee7be24-b0f8-460b-a852-a2d08b6d289e.json diff --git a/packages/amazonq/.changes/next-release/Bug Fix-0ee7be24-b0f8-460b-a852-a2d08b6d289e.json b/packages/amazonq/.changes/next-release/Bug Fix-0ee7be24-b0f8-460b-a852-a2d08b6d289e.json new file mode 100644 index 00000000000..0cbf9c14961 --- /dev/null +++ b/packages/amazonq/.changes/next-release/Bug Fix-0ee7be24-b0f8-460b-a852-a2d08b6d289e.json @@ -0,0 +1,4 @@ +{ + "type": "Bug Fix", + "description": "Use SM IAM Credentials for Code Completion" +} From 007fd5ba0354cb32d4b69dac4a15e00730119fbb Mon Sep 17 00:00:00 2001 From: Ahmed Ali Date: Wed, 23 Oct 2024 19:18:41 -0700 Subject: [PATCH 03/13] Enable IAM Q Chat --- package.json | 2 +- packages/core/package.json | 1 + .../LICENSE | 201 + .../README.md | 716 ++++ .../api-extractor.json | 4 + .../dist-cjs/QDeveloperStreaming.js | 15 + .../dist-cjs/QDeveloperStreamingClient.js | 48 + .../auth/httpAuthExtensionConfiguration.js | 43 + .../dist-cjs/auth/httpAuthSchemeProvider.js | 50 + .../GenerateCodeFromCommandsCommand.js | 26 + .../dist-cjs/commands/SendMessageCommand.js | 26 + .../dist-cjs/commands/index.js | 5 + .../dist-cjs/endpoints.js | 209 + .../dist-cjs/extensionConfiguration.js | 2 + .../dist-cjs/index.js | 10 + .../QDeveloperStreamingServiceException.js | 12 + .../dist-cjs/models/index.js | 4 + .../dist-cjs/models/models_0.js | 858 ++++ .../dist-cjs/protocols/Aws_json1_0.js | 397 ++ .../dist-cjs/runtimeConfig.browser.js | 40 + .../dist-cjs/runtimeConfig.js | 46 + .../dist-cjs/runtimeConfig.native.js | 15 + .../dist-cjs/runtimeConfig.shared.js | 32 + .../dist-cjs/runtimeExtensions.js | 25 + .../dist-es/QDeveloperStreaming.js | 11 + .../dist-es/QDeveloperStreamingClient.js | 44 + .../auth/httpAuthExtensionConfiguration.js | 38 + .../dist-es/auth/httpAuthSchemeProvider.js | 44 + .../GenerateCodeFromCommandsCommand.js | 22 + .../dist-es/commands/SendMessageCommand.js | 22 + .../dist-es/commands/index.js | 2 + .../dist-es/endpoints.js | 205 + .../dist-es/extensionConfiguration.js | 1 + .../dist-es/index.js | 5 + .../QDeveloperStreamingServiceException.js | 8 + .../dist-es/models/index.js | 1 + .../dist-es/models/models_0.js | 788 ++++ .../dist-es/protocols/Aws_json1_0.js | 390 ++ .../dist-es/runtimeConfig.browser.js | 35 + .../dist-es/runtimeConfig.js | 41 + .../dist-es/runtimeConfig.native.js | 11 + .../dist-es/runtimeConfig.shared.js | 28 + .../dist-es/runtimeExtensions.js | 21 + .../dist-types/QDeveloperStreaming.d.ts | 23 + .../dist-types/QDeveloperStreamingClient.d.ts | 178 + .../auth/httpAuthExtensionConfiguration.d.ts | 29 + .../auth/httpAuthSchemeProvider.d.ts | 61 + .../GenerateCodeFromCommandsCommand.d.ts | 102 + .../commands/SendMessageCommand.d.ts | 622 +++ .../dist-types/commands/index.d.ts | 2 + .../dist-types/endpoints.d.ts | 2 + .../dist-types/extensionConfiguration.d.ts | 9 + .../dist-types/index.d.ts | 7 + .../QDeveloperStreamingServiceException.d.ts | 14 + .../dist-types/models/index.d.ts | 1 + .../dist-types/models/models_0.d.ts | 2422 ++++++++++++ .../dist-types/protocols/Aws_json1_0.d.ts | 20 + .../dist-types/runtimeConfig.browser.d.ts | 45 + .../dist-types/runtimeConfig.d.ts | 45 + .../dist-types/runtimeConfig.native.d.ts | 44 + .../dist-types/runtimeConfig.shared.d.ts | 19 + .../dist-types/runtimeExtensions.d.ts | 17 + .../package-lock.json | 1895 +++++++++ .../package.json | 91 + .../src/QDeveloperStreaming.ts | 65 + .../src/QDeveloperStreamingClient.ts | 342 ++ .../auth/httpAuthExtensionConfiguration.ts | 73 + .../src/auth/httpAuthSchemeProvider.ts | 130 + .../GenerateCodeFromCommandsCommand.ts | 132 + .../src/commands/SendMessageCommand.ts | 652 +++ .../src/commands/index.ts | 3 + .../src/endpoints.ts | 224 ++ .../src/extensionConfiguration.ts | 10 + .../src/index.ts | 10 + .../QDeveloperStreamingServiceException.ts | 24 + .../src/models/index.ts | 2 + .../src/models/models_0.ts | 3492 +++++++++++++++++ .../src/protocols/Aws_json1_0.ts | 863 ++++ .../src/runtimeConfig.browser.ts | 52 + .../src/runtimeConfig.native.ts | 17 + .../src/runtimeConfig.shared.ts | 42 + .../src/runtimeConfig.ts | 59 + .../src/runtimeExtensions.ts | 59 + .../tsconfig.cjs.json | 6 + .../tsconfig.cjs.tsbuildinfo | 1 + .../tsconfig.es.json | 8 + .../tsconfig.es.tsbuildinfo | 1 + .../tsconfig.json | 13 + .../tsconfig.types.json | 10 + .../tsconfig.types.tsbuildinfo | 1 + .../dist-cjs/CodeWhispererStreaming.js | 19 + .../dist-cjs/CodeWhispererStreamingClient.js | 42 + .../commands/ConverseStreamCommand.js | 42 + .../commands/ExportResultArchiveCommand.js | 42 + .../GenerateAssistantResponseCommand.js | 42 + .../commands/GenerateTaskAssistPlanCommand.js | 42 + .../dist-cjs/commands/index.js | 7 + .../dist-cjs/endpoints.js | 205 + .../dist-cjs/extensionConfiguration.js | 2 + .../codewhisperer-streaming/dist-cjs/index.js | 10 + .../CodeWhispererStreamingServiceException.js | 12 + .../dist-cjs/models/index.js | 4 + .../dist-cjs/models/models_0.js | 570 +++ .../dist-cjs/protocols/Aws_restJson1.js | 590 +++ .../dist-cjs/runtimeConfig.browser.js | 37 + .../dist-cjs/runtimeConfig.js | 41 + .../dist-cjs/runtimeConfig.native.js | 15 + .../dist-cjs/runtimeConfig.shared.js | 22 + .../dist-cjs/runtimeExtensions.js | 22 + .../dist-es/CodeWhispererStreaming.js | 15 + .../dist-es/CodeWhispererStreamingClient.js | 38 + .../dist-es/commands/ConverseStreamCommand.js | 38 + .../commands/ExportResultArchiveCommand.js | 38 + .../GenerateAssistantResponseCommand.js | 38 + .../commands/GenerateTaskAssistPlanCommand.js | 38 + .../dist-es/commands/index.js | 4 + .../dist-es/endpoints.js | 201 + .../dist-es/extensionConfiguration.js | 1 + .../codewhisperer-streaming/dist-es/index.js | 5 + .../CodeWhispererStreamingServiceException.js | 8 + .../dist-es/models/index.js | 1 + .../dist-es/models/models_0.js | 523 +++ .../dist-es/protocols/Aws_restJson1.js | 579 +++ .../dist-es/runtimeConfig.browser.js | 32 + .../dist-es/runtimeConfig.js | 36 + .../dist-es/runtimeConfig.native.js | 11 + .../dist-es/runtimeConfig.shared.js | 18 + .../dist-es/runtimeExtensions.js | 18 + .../dist-types/CodeWhispererStreaming.d.ts | 37 + .../CodeWhispererStreamingClient.d.ts | 170 + .../commands/ConverseStreamCommand.d.ts | 431 ++ .../commands/ExportResultArchiveCommand.d.ts | 109 + .../GenerateAssistantResponseCommand.d.ts | 416 ++ .../GenerateTaskAssistPlanCommand.d.ts | 428 ++ .../dist-types/commands/index.d.ts | 4 + .../dist-types/endpoints.d.ts | 2 + .../dist-types/extensionConfiguration.d.ts | 8 + .../dist-types/index.d.ts | 5 + ...odeWhispererStreamingServiceException.d.ts | 13 + .../dist-types/models/index.d.ts | 1 + .../dist-types/models/models_0.d.ts | 1708 ++++++++ .../dist-types/protocols/Aws_restJson1.d.ts | 38 + .../dist-types/runtimeConfig.browser.d.ts | 39 + .../dist-types/runtimeConfig.d.ts | 39 + .../dist-types/runtimeConfig.native.d.ts | 38 + .../dist-types/runtimeConfig.shared.d.ts | 17 + .../dist-types/runtimeExtensions.d.ts | 17 + .../tsconfig.cjs.tsbuildinfo | 1 + .../tsconfig.es.tsbuildinfo | 1 + .../tsconfig.types.tsbuildinfo | 1 + 150 files changed, 23373 insertions(+), 1 deletion(-) create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/LICENSE create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/README.md create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/api-extractor.json create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/QDeveloperStreaming.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/QDeveloperStreamingClient.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/auth/httpAuthExtensionConfiguration.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/auth/httpAuthSchemeProvider.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/GenerateCodeFromCommandsCommand.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/SendMessageCommand.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/index.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/endpoints.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/extensionConfiguration.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/index.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/QDeveloperStreamingServiceException.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/index.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/models_0.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/protocols/Aws_json1_0.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.browser.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.native.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.shared.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeExtensions.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/QDeveloperStreaming.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/QDeveloperStreamingClient.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/auth/httpAuthExtensionConfiguration.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/auth/httpAuthSchemeProvider.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/GenerateCodeFromCommandsCommand.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/SendMessageCommand.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/index.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/endpoints.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/extensionConfiguration.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/index.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/QDeveloperStreamingServiceException.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/index.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/models_0.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/protocols/Aws_json1_0.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.browser.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.native.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.shared.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeExtensions.js create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/QDeveloperStreaming.d.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/QDeveloperStreamingClient.d.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/auth/httpAuthExtensionConfiguration.d.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/auth/httpAuthSchemeProvider.d.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/GenerateCodeFromCommandsCommand.d.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/SendMessageCommand.d.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/index.d.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/endpoints.d.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/extensionConfiguration.d.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/index.d.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/QDeveloperStreamingServiceException.d.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/index.d.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/models_0.d.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/protocols/Aws_json1_0.d.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.browser.d.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.d.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.native.d.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.shared.d.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeExtensions.d.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/package-lock.json create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/package.json create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/src/QDeveloperStreaming.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/src/QDeveloperStreamingClient.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/src/auth/httpAuthExtensionConfiguration.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/src/auth/httpAuthSchemeProvider.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/src/commands/GenerateCodeFromCommandsCommand.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/src/commands/SendMessageCommand.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/src/commands/index.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/src/endpoints.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/src/extensionConfiguration.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/src/index.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/src/models/QDeveloperStreamingServiceException.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/src/models/index.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/src/models/models_0.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/src/protocols/Aws_json1_0.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/src/runtimeConfig.browser.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/src/runtimeConfig.native.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/src/runtimeConfig.shared.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/src/runtimeConfig.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/src/runtimeExtensions.ts create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.cjs.json create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.cjs.tsbuildinfo create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.es.json create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.es.tsbuildinfo create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.json create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.types.json create mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.types.tsbuildinfo create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreaming.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreamingClient.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/ConverseStreamCommand.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/ExportResultArchiveCommand.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateAssistantResponseCommand.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateTaskAssistPlanCommand.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/index.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/endpoints.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/extensionConfiguration.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/index.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/CodeWhispererStreamingServiceException.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/index.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/models_0.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/protocols/Aws_restJson1.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.browser.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.native.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.shared.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeExtensions.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreaming.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreamingClient.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/commands/ConverseStreamCommand.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/commands/ExportResultArchiveCommand.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/commands/GenerateAssistantResponseCommand.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/commands/GenerateTaskAssistPlanCommand.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/commands/index.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/endpoints.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/extensionConfiguration.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/index.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/models/CodeWhispererStreamingServiceException.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/models/index.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/models/models_0.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/protocols/Aws_restJson1.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.browser.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.native.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.shared.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeExtensions.js create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreaming.d.ts create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreamingClient.d.ts create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/commands/ConverseStreamCommand.d.ts create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/commands/ExportResultArchiveCommand.d.ts create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/commands/GenerateAssistantResponseCommand.d.ts create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/commands/GenerateTaskAssistPlanCommand.d.ts create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/commands/index.d.ts create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/endpoints.d.ts create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/extensionConfiguration.d.ts create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/index.d.ts create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/models/CodeWhispererStreamingServiceException.d.ts create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/models/index.d.ts create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/models/models_0.d.ts create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/protocols/Aws_restJson1.d.ts create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.browser.d.ts create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.d.ts create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.native.d.ts create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.shared.d.ts create mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeExtensions.d.ts create mode 100644 src.gen/@amzn/codewhisperer-streaming/tsconfig.cjs.tsbuildinfo create mode 100644 src.gen/@amzn/codewhisperer-streaming/tsconfig.es.tsbuildinfo create mode 100644 src.gen/@amzn/codewhisperer-streaming/tsconfig.types.tsbuildinfo diff --git a/package.json b/package.json index 335751d3ddc..37990493f6c 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ }, "scripts": { "prepare": "ts-node ./scripts/prepare.ts", - "preinstall": "cd src.gen/@amzn/codewhisperer-streaming && npm i", + "preinstall": "cd src.gen/@amzn/codewhisperer-streaming && npm i && cd ../amazon-q-developer-streaming-client && npm i", "postinstall": "npm run buildCustomLintPlugin && npm run postinstall -ws --if-present", "buildCustomLintPlugin": "npm run build -w plugins/eslint-plugin-aws-toolkits", "compile": "npm run compile -w packages/", diff --git a/packages/core/package.json b/packages/core/package.json index 4ca9b19f487..8e3f469e24d 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -457,6 +457,7 @@ "webfont": "^11.2.26" }, "dependencies": { + "@amzn/amazon-q-developer-streaming-client": "file:../../src.gen/@amzn/amazon-q-developer-streaming-client", "@amzn/codewhisperer-streaming": "file:../../src.gen/@amzn/codewhisperer-streaming", "@aws-sdk/client-cognito-identity": "^3.637.0", "@aws-sdk/client-lambda": "^3.637.0", diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/LICENSE b/src.gen/@amzn/amazon-q-developer-streaming-client/LICENSE new file mode 100644 index 00000000000..1349aa7c992 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2018-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/README.md b/src.gen/@amzn/amazon-q-developer-streaming-client/README.md new file mode 100644 index 00000000000..143f5c48c9c --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/README.md @@ -0,0 +1,716 @@ + + +# @amzn/amazon-q-developer-streaming-client + +## Description + +AWS SDK for JavaScript QDeveloperStreaming Client for Node.js, Browser and React Native. + +## Installing +To install the this package, simply type add or install @amzn/amazon-q-developer-streaming-client +using your favorite package manager: +- `npm install @amzn/amazon-q-developer-streaming-client` +- `yarn add @amzn/amazon-q-developer-streaming-client` +- `pnpm add @amzn/amazon-q-developer-streaming-client` + +## Getting Started + +### Import + +The AWS SDK is modulized by clients and commands. +To send a request, you only need to import the `QDeveloperStreamingClient` and +the commands you need, for example `SendMessageCommand`: + +```js +// ES5 example +const { QDeveloperStreamingClient, SendMessageCommand } = require("@amzn/amazon-q-developer-streaming-client"); +``` + +```ts +// ES6+ example +import { QDeveloperStreamingClient, SendMessageCommand } from "@amzn/amazon-q-developer-streaming-client"; +``` + +### Usage + +To send a request, you: + +- Initiate client with configuration (e.g. credentials, region). +- Initiate command with input parameters. +- Call `send` operation on client with command object as input. +- If you are using a custom http handler, you may call `destroy()` to close open connections. + +```js +// a client can be shared by different commands. +const client = new QDeveloperStreamingClient({ region: "REGION" }); + +const params = { /** input parameters */ }; +const command = new SendMessageCommand(params); +``` + +#### Async/await + +We recommend using [await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/await) +operator to wait for the promise returned by send operation as follows: + +```js +// async/await. +try { + const data = await client.send(command); + // process data. +} catch (error) { + // error handling. +} finally { + // finally. +} +``` + +Async-await is clean, concise, intuitive, easy to debug and has better error handling +as compared to using Promise chains or callbacks. + +#### Promises + +You can also use [Promise chaining](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Using_promises#chaining) +to execute send operation. + +```js +client.send(command).then( + (data) => { + // process data. + }, + (error) => { + // error handling. + } +); +``` + +Promises can also be called using `.catch()` and `.finally()` as follows: + +```js +client + .send(command) + .then((data) => { + // process data. + }) + .catch((error) => { + // error handling. + }) + .finally(() => { + // finally. + }); +``` + +#### Callbacks + +We do not recommend using callbacks because of [callback hell](http://callbackhell.com/), +but they are supported by the send operation. + +```js +// callbacks. +client.send(command, (err, data) => { + // process err and data. +}); +``` + +#### v2 compatible style + +The client can also send requests using v2 compatible style. +However, it results in a bigger bundle size and may be dropped in next major version. More details in the blog post +on [modular packages in AWS SDK for JavaScript](https://aws.amazon.com/blogs/developer/modular-packages-in-aws-sdk-for-javascript/) + +```ts +import * as AWS from "@amzn/amazon-q-developer-streaming-client"; +const client = new AWS.QDeveloperStreaming({ region: "REGION" }); + +// async/await. +try { + const data = await client.sendMessage(params); + // process data. +} catch (error) { + // error handling. +} + +// Promises. +client + .sendMessage(params) + .then((data) => { + // process data. + }) + .catch((error) => { + // error handling. + }); + +// callbacks. +client.sendMessage(params, (err, data) => { + // process err and data. +}); +``` + +### Troubleshooting + +When the service returns an exception, the error will include the exception information, +as well as response metadata (e.g. request id). + +```js +try { + const data = await client.send(command); + // process data. +} catch (error) { + const { requestId, cfId, extendedRequestId } = error.$metadata; + console.log({ requestId, cfId, extendedRequestId }); + /** + * The keys within exceptions are also parsed. + * You can access them by specifying exception names: + * if (error.name === 'SomeServiceException') { + * const value = error.specialKeyInException; + * } + */ +} +``` + +## Getting Help + +Please use these community resources for getting help. +We use the GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them. + +- Visit [Developer Guide](https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/welcome.html) + or [API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/index.html). +- Check out the blog posts tagged with [`aws-sdk-js`](https://aws.amazon.com/blogs/developer/tag/aws-sdk-js/) + on AWS Developer Blog. +- Ask a question on [StackOverflow](https://stackoverflow.com/questions/tagged/aws-sdk-js) and tag it with `aws-sdk-js`. +- Join the AWS JavaScript community on [gitter](https://gitter.im/aws/aws-sdk-js-v3). +- If it turns out that you may have found a bug, please [open an issue](https://github.com/aws/aws-sdk-js-v3/issues/new/choose). + +To test your universal JavaScript code in Node.js, browser and react-native environments, +visit our [code samples repo](https://github.com/aws-samples/aws-sdk-js-tests). + +## Contributing + +This client code is generated automatically. Any modifications will be overwritten the next time the `@amzn/amazon-q-developer-streaming-client` package is updated. +To contribute to client you can check our [generate clients scripts](https://github.com/aws/aws-sdk-js-v3/tree/main/scripts/generate-clients). + +## License + +This SDK is distributed under the +[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0), +see LICENSE for more information. +## Client Commands (Operations List) + +
+ +AllowVendedLogDeliveryForResource + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/AllowVendedLogDeliveryForResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/AllowVendedLogDeliveryForResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/AllowVendedLogDeliveryForResourceCommandOutput/) +
+
+ +AssociateCustomizationPermission + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/AssociateCustomizationPermissionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/AssociateCustomizationPermissionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/AssociateCustomizationPermissionCommandOutput/) +
+
+ +CreateCustomization + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/CreateCustomizationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/CreateCustomizationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/CreateCustomizationCommandOutput/) +
+
+ +CreateProfile + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/CreateProfileCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/CreateProfileCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/CreateProfileCommandOutput/) +
+
+ +DeleteCustomization + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/DeleteCustomizationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/DeleteCustomizationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/DeleteCustomizationCommandOutput/) +
+
+ +DeleteProfile + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/DeleteProfileCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/DeleteProfileCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/DeleteProfileCommandOutput/) +
+
+ +DisassociateCustomizationPermission + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/DisassociateCustomizationPermissionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/DisassociateCustomizationPermissionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/DisassociateCustomizationPermissionCommandOutput/) +
+
+ +GenerateRecommendations + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/GenerateRecommendationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GenerateRecommendationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GenerateRecommendationsCommandOutput/) +
+
+ +GetCustomization + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/GetCustomizationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetCustomizationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetCustomizationCommandOutput/) +
+
+ +ListCustomizationPermissions + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/ListCustomizationPermissionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListCustomizationPermissionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListCustomizationPermissionsCommandOutput/) +
+
+ +ListCustomizations + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/ListCustomizationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListCustomizationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListCustomizationsCommandOutput/) +
+
+ +ListCustomizationVersions + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/ListCustomizationVersionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListCustomizationVersionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListCustomizationVersionsCommandOutput/) +
+
+ +ListProfiles + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/ListProfilesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListProfilesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListProfilesCommandOutput/) +
+
+ +ListTagsForResource + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/ListTagsForResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListTagsForResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListTagsForResourceCommandOutput/) +
+
+ +TagResource + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/TagResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/TagResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/TagResourceCommandOutput/) +
+
+ +UntagResource + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/UntagResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/UntagResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/UntagResourceCommandOutput/) +
+
+ +UpdateCustomization + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/UpdateCustomizationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/UpdateCustomizationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/UpdateCustomizationCommandOutput/) +
+
+ +UpdateProfile + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/UpdateProfileCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/UpdateProfileCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/UpdateProfileCommandOutput/) +
+
+ +CreateArtifactUploadUrl + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/CreateArtifactUploadUrlCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/CreateArtifactUploadUrlCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/CreateArtifactUploadUrlCommandOutput/) +
+
+ +CreateTaskAssistConversation + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/CreateTaskAssistConversationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/CreateTaskAssistConversationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/CreateTaskAssistConversationCommandOutput/) +
+
+ +CreateUploadUrl + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/CreateUploadUrlCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/CreateUploadUrlCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/CreateUploadUrlCommandOutput/) +
+
+ +DeleteTaskAssistConversation + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/DeleteTaskAssistConversationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/DeleteTaskAssistConversationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/DeleteTaskAssistConversationCommandOutput/) +
+
+ +GenerateCompletions + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/GenerateCompletionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GenerateCompletionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GenerateCompletionsCommandOutput/) +
+
+ +GetCodeAnalysis + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/GetCodeAnalysisCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetCodeAnalysisCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetCodeAnalysisCommandOutput/) +
+
+ +GetTaskAssistCodeGeneration + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/GetTaskAssistCodeGenerationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetTaskAssistCodeGenerationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetTaskAssistCodeGenerationCommandOutput/) +
+
+ +GetTestGeneration + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/GetTestGenerationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetTestGenerationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetTestGenerationCommandOutput/) +
+
+ +GetTransformation + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/GetTransformationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetTransformationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetTransformationCommandOutput/) +
+
+ +GetTransformationPlan + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/GetTransformationPlanCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetTransformationPlanCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetTransformationPlanCommandOutput/) +
+
+ +ListAvailableCustomizations + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/ListAvailableCustomizationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListAvailableCustomizationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListAvailableCustomizationsCommandOutput/) +
+
+ +ListCodeAnalysisFindings + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/ListCodeAnalysisFindingsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListCodeAnalysisFindingsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListCodeAnalysisFindingsCommandOutput/) +
+
+ +ListFeatureEvaluations + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/ListFeatureEvaluationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListFeatureEvaluationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListFeatureEvaluationsCommandOutput/) +
+
+ +ResumeTransformation + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/ResumeTransformationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ResumeTransformationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ResumeTransformationCommandOutput/) +
+
+ +SendTelemetryEvent + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/SendTelemetryEventCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/SendTelemetryEventCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/SendTelemetryEventCommandOutput/) +
+
+ +StartCodeAnalysis + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/StartCodeAnalysisCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/StartCodeAnalysisCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/StartCodeAnalysisCommandOutput/) +
+
+ +StartTaskAssistCodeGeneration + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/StartTaskAssistCodeGenerationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/StartTaskAssistCodeGenerationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/StartTaskAssistCodeGenerationCommandOutput/) +
+
+ +StartTestGeneration + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/StartTestGenerationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/StartTestGenerationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/StartTestGenerationCommandOutput/) +
+
+ +StartTransformation + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/StartTransformationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/StartTransformationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/StartTransformationCommandOutput/) +
+
+ +StopTransformation + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/StopTransformationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/StopTransformationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/StopTransformationCommandOutput/) +
+
+ +ExportResultArchive + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/ExportResultArchiveCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ExportResultArchiveCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ExportResultArchiveCommandOutput/) +
+
+ +GenerateAssistantResponse + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/GenerateAssistantResponseCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GenerateAssistantResponseCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GenerateAssistantResponseCommandOutput/) +
+
+ +GenerateTaskAssistPlan + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/GenerateTaskAssistPlanCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GenerateTaskAssistPlanCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GenerateTaskAssistPlanCommandOutput/) +
+
+ +CreateAssignment + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/CreateAssignmentCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/CreateAssignmentCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/CreateAssignmentCommandOutput/) +
+
+ +CreateExtension + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/CreateExtensionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/CreateExtensionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/CreateExtensionCommandOutput/) +
+
+ +CreatePlugin + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/CreatePluginCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/CreatePluginCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/CreatePluginCommandOutput/) +
+
+ +CreateResolution + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/CreateResolutionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/CreateResolutionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/CreateResolutionCommandOutput/) +
+
+ +DeleteAssignment + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/DeleteAssignmentCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/DeleteAssignmentCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/DeleteAssignmentCommandOutput/) +
+
+ +DeleteExtension + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/DeleteExtensionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/DeleteExtensionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/DeleteExtensionCommandOutput/) +
+
+ +DeletePlugin + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/DeletePluginCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/DeletePluginCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/DeletePluginCommandOutput/) +
+
+ +GetConversation + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/GetConversationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetConversationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetConversationCommandOutput/) +
+
+ +GetExtension + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/GetExtensionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetExtensionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetExtensionCommandOutput/) +
+
+ +GetIdentityMetadata + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/GetIdentityMetadataCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetIdentityMetadataCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetIdentityMetadataCommandOutput/) +
+
+ +GetPlugin + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/GetPluginCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetPluginCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetPluginCommandOutput/) +
+
+ +GetTask + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/GetTaskCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetTaskCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetTaskCommandOutput/) +
+
+ +GetTroubleshootingResults + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/GetTroubleshootingResultsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetTroubleshootingResultsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GetTroubleshootingResultsCommandOutput/) +
+
+ +InvokeTask + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/InvokeTaskCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/InvokeTaskCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/InvokeTaskCommandOutput/) +
+
+ +ListConversations + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/ListConversationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListConversationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListConversationsCommandOutput/) +
+
+ +ListExtensionProviders + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/ListExtensionProvidersCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListExtensionProvidersCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListExtensionProvidersCommandOutput/) +
+
+ +ListExtensions + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/ListExtensionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListExtensionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListExtensionsCommandOutput/) +
+
+ +ListPluginProviders + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/ListPluginProvidersCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListPluginProvidersCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListPluginProvidersCommandOutput/) +
+
+ +ListPlugins + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/ListPluginsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListPluginsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListPluginsCommandOutput/) +
+
+ +ListTagsForResource + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/ListTagsForResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListTagsForResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListTagsForResourceCommandOutput/) +
+
+ +ListTasks + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/ListTasksCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListTasksCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/ListTasksCommandOutput/) +
+
+ +PassRequest + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/PassRequestCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/PassRequestCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/PassRequestCommandOutput/) +
+
+ +SendEvent + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/SendEventCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/SendEventCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/SendEventCommandOutput/) +
+
+ +SendMessage + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/SendMessageCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/SendMessageCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/SendMessageCommandOutput/) +
+
+ +StartConversation + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/StartConversationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/StartConversationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/StartConversationCommandOutput/) +
+
+ +StartTroubleshootingAnalysis + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/StartTroubleshootingAnalysisCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/StartTroubleshootingAnalysisCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/StartTroubleshootingAnalysisCommandOutput/) +
+
+ +StartTroubleshootingResolutionExplanation + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/StartTroubleshootingResolutionExplanationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/StartTroubleshootingResolutionExplanationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/StartTroubleshootingResolutionExplanationCommandOutput/) +
+
+ +TagResource + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/TagResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/TagResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/TagResourceCommandOutput/) +
+
+ +UntagResource + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/UntagResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/UntagResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/UntagResourceCommandOutput/) +
+
+ +UpdateTroubleshootingCommandResult + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/UpdateTroubleshootingCommandResultCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/UpdateTroubleshootingCommandResultCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/UpdateTroubleshootingCommandResultCommandOutput/) +
+
+ +UsePlugin + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/UsePluginCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/UsePluginCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/UsePluginCommandOutput/) +
+
+ +GenerateCodeFromCommands + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/GenerateCodeFromCommandsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GenerateCodeFromCommandsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/GenerateCodeFromCommandsCommandOutput/) +
+
+ +SendMessage + + +[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/qdeveloperstreaming/command/SendMessageCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/SendMessageCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-qdeveloperstreaming/Interface/SendMessageCommandOutput/) +
diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/api-extractor.json b/src.gen/@amzn/amazon-q-developer-streaming-client/api-extractor.json new file mode 100644 index 00000000000..d5bf5ffeee8 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/api-extractor.json @@ -0,0 +1,4 @@ +{ + "extends": "../../api-extractor.json", + "mainEntryPointFilePath": "/dist-types/index.d.ts" +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/QDeveloperStreaming.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/QDeveloperStreaming.js new file mode 100644 index 00000000000..65a1fce6c21 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/QDeveloperStreaming.js @@ -0,0 +1,15 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.QDeveloperStreaming = void 0; +const QDeveloperStreamingClient_1 = require("./QDeveloperStreamingClient"); +const GenerateCodeFromCommandsCommand_1 = require("./commands/GenerateCodeFromCommandsCommand"); +const SendMessageCommand_1 = require("./commands/SendMessageCommand"); +const smithy_client_1 = require("@smithy/smithy-client"); +const commands = { + GenerateCodeFromCommandsCommand: GenerateCodeFromCommandsCommand_1.GenerateCodeFromCommandsCommand, + SendMessageCommand: SendMessageCommand_1.SendMessageCommand, +}; +class QDeveloperStreaming extends QDeveloperStreamingClient_1.QDeveloperStreamingClient { +} +exports.QDeveloperStreaming = QDeveloperStreaming; +(0, smithy_client_1.createAggregatedClient)(commands, QDeveloperStreaming); diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/QDeveloperStreamingClient.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/QDeveloperStreamingClient.js new file mode 100644 index 00000000000..46515a3d99b --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/QDeveloperStreamingClient.js @@ -0,0 +1,48 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.QDeveloperStreamingClient = exports.__Client = void 0; +const httpAuthSchemeProvider_1 = require("./auth/httpAuthSchemeProvider"); +const runtimeConfig_1 = require("./runtimeConfig"); +const runtimeExtensions_1 = require("./runtimeExtensions"); +const middleware_host_header_1 = require("@aws-sdk/middleware-host-header"); +const middleware_logger_1 = require("@aws-sdk/middleware-logger"); +const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection"); +const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent"); +const config_resolver_1 = require("@smithy/config-resolver"); +const core_1 = require("@smithy/core"); +const eventstream_serde_config_resolver_1 = require("@smithy/eventstream-serde-config-resolver"); +const middleware_content_length_1 = require("@smithy/middleware-content-length"); +const middleware_retry_1 = require("@smithy/middleware-retry"); +const smithy_client_1 = require("@smithy/smithy-client"); +Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } }); +class QDeveloperStreamingClient extends smithy_client_1.Client { + constructor(...[configuration]) { + let _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {}); + let _config_1 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_0); + let _config_2 = (0, middleware_retry_1.resolveRetryConfig)(_config_1); + let _config_3 = (0, config_resolver_1.resolveRegionConfig)(_config_2); + let _config_4 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_3); + let _config_5 = (0, config_resolver_1.resolveEndpointsConfig)(_config_4); + let _config_6 = (0, eventstream_serde_config_resolver_1.resolveEventStreamSerdeConfig)(_config_5); + let _config_7 = (0, httpAuthSchemeProvider_1.resolveHttpAuthSchemeConfig)(_config_6); + let _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []); + super(_config_8); + this.config = _config_8; + this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config)); + this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config)); + this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config)); + this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config)); + this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config)); + this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config)); + this.middlewareStack.use((0, core_1.getHttpAuthSchemePlugin)(this.config, { + httpAuthSchemeParametersProvider: httpAuthSchemeProvider_1.defaultQDeveloperStreamingHttpAuthSchemeParametersProvider, identityProviderConfigProvider: async (config) => new core_1.DefaultIdentityProviderConfig({ + "aws.auth#sigv4": config.credentials, + }), + })); + this.middlewareStack.use((0, core_1.getHttpSigningPlugin)(this.config)); + } + destroy() { + super.destroy(); + } +} +exports.QDeveloperStreamingClient = QDeveloperStreamingClient; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/auth/httpAuthExtensionConfiguration.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/auth/httpAuthExtensionConfiguration.js new file mode 100644 index 00000000000..083620308bd --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/auth/httpAuthExtensionConfiguration.js @@ -0,0 +1,43 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.resolveHttpAuthRuntimeConfig = exports.getHttpAuthExtensionConfiguration = void 0; +const getHttpAuthExtensionConfiguration = (runtimeConfig) => { + let _httpAuthSchemes = runtimeConfig.httpAuthSchemes; + let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider; + let _credentials = runtimeConfig.credentials; + return { + setHttpAuthScheme(httpAuthScheme) { + const index = _httpAuthSchemes.findIndex(scheme => scheme.schemeId === httpAuthScheme.schemeId); + if (index === -1) { + _httpAuthSchemes.push(httpAuthScheme); + } + else { + _httpAuthSchemes.splice(index, 1, httpAuthScheme); + } + }, + httpAuthSchemes() { + return _httpAuthSchemes; + }, + setHttpAuthSchemeProvider(httpAuthSchemeProvider) { + _httpAuthSchemeProvider = httpAuthSchemeProvider; + }, + httpAuthSchemeProvider() { + return _httpAuthSchemeProvider; + }, + setCredentials(credentials) { + _credentials = credentials; + }, + credentials() { + return _credentials; + }, + }; +}; +exports.getHttpAuthExtensionConfiguration = getHttpAuthExtensionConfiguration; +const resolveHttpAuthRuntimeConfig = (config) => { + return { + httpAuthSchemes: config.httpAuthSchemes(), + httpAuthSchemeProvider: config.httpAuthSchemeProvider(), + credentials: config.credentials(), + }; +}; +exports.resolveHttpAuthRuntimeConfig = resolveHttpAuthRuntimeConfig; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/auth/httpAuthSchemeProvider.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/auth/httpAuthSchemeProvider.js new file mode 100644 index 00000000000..e4376a73966 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/auth/httpAuthSchemeProvider.js @@ -0,0 +1,50 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.resolveHttpAuthSchemeConfig = exports.defaultQDeveloperStreamingHttpAuthSchemeProvider = exports.defaultQDeveloperStreamingHttpAuthSchemeParametersProvider = void 0; +const core_1 = require("@aws-sdk/core"); +const util_middleware_1 = require("@smithy/util-middleware"); +const defaultQDeveloperStreamingHttpAuthSchemeParametersProvider = async (config, context, input) => { + return { + operation: (0, util_middleware_1.getSmithyContext)(context).operation, + region: await (0, util_middleware_1.normalizeProvider)(config.region)() || (() => { + throw new Error("expected `region` to be configured for `aws.auth#sigv4`"); + })(), + }; +}; +exports.defaultQDeveloperStreamingHttpAuthSchemeParametersProvider = defaultQDeveloperStreamingHttpAuthSchemeParametersProvider; +function createAwsAuthSigv4HttpAuthOption(authParameters) { + return { + schemeId: "aws.auth#sigv4", + signingProperties: { + name: "q", + region: authParameters.region, + }, + propertiesExtractor: (config, context) => ({ + signingProperties: { + config, + context, + }, + }), + }; +} +; +const defaultQDeveloperStreamingHttpAuthSchemeProvider = (authParameters) => { + const options = []; + switch (authParameters.operation) { + default: + { + options.push(createAwsAuthSigv4HttpAuthOption(authParameters)); + } + ; + } + ; + return options; +}; +exports.defaultQDeveloperStreamingHttpAuthSchemeProvider = defaultQDeveloperStreamingHttpAuthSchemeProvider; +const resolveHttpAuthSchemeConfig = (config) => { + const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config); + return { + ...config_0, + }; +}; +exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/GenerateCodeFromCommandsCommand.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/GenerateCodeFromCommandsCommand.js new file mode 100644 index 00000000000..779ae02c1b5 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/GenerateCodeFromCommandsCommand.js @@ -0,0 +1,26 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.GenerateCodeFromCommandsCommand = exports.$Command = void 0; +const models_0_1 = require("../models/models_0"); +const Aws_json1_0_1 = require("../protocols/Aws_json1_0"); +const middleware_serde_1 = require("@smithy/middleware-serde"); +const smithy_client_1 = require("@smithy/smithy-client"); +Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } }); +class GenerateCodeFromCommandsCommand extends smithy_client_1.Command.classBuilder() + .m(function (Command, cs, config, o) { + return [ + (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize), + ]; +}) + .s("AmazonQDeveloperStreamingService", "GenerateCodeFromCommands", { + eventStream: { + output: true, + }, +}) + .n("QDeveloperStreamingClient", "GenerateCodeFromCommandsCommand") + .f(models_0_1.GenerateCodeFromCommandsRequestFilterSensitiveLog, models_0_1.GenerateCodeFromCommandsResponseFilterSensitiveLog) + .ser(Aws_json1_0_1.se_GenerateCodeFromCommandsCommand) + .de(Aws_json1_0_1.de_GenerateCodeFromCommandsCommand) + .build() { +} +exports.GenerateCodeFromCommandsCommand = GenerateCodeFromCommandsCommand; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/SendMessageCommand.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/SendMessageCommand.js new file mode 100644 index 00000000000..39c1bcacb14 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/SendMessageCommand.js @@ -0,0 +1,26 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.SendMessageCommand = exports.$Command = void 0; +const models_0_1 = require("../models/models_0"); +const Aws_json1_0_1 = require("../protocols/Aws_json1_0"); +const middleware_serde_1 = require("@smithy/middleware-serde"); +const smithy_client_1 = require("@smithy/smithy-client"); +Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } }); +class SendMessageCommand extends smithy_client_1.Command.classBuilder() + .m(function (Command, cs, config, o) { + return [ + (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize), + ]; +}) + .s("AmazonQDeveloperStreamingService", "SendMessage", { + eventStream: { + output: true, + }, +}) + .n("QDeveloperStreamingClient", "SendMessageCommand") + .f(models_0_1.SendMessageRequestFilterSensitiveLog, models_0_1.SendMessageResponseFilterSensitiveLog) + .ser(Aws_json1_0_1.se_SendMessageCommand) + .de(Aws_json1_0_1.de_SendMessageCommand) + .build() { +} +exports.SendMessageCommand = SendMessageCommand; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/index.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/index.js new file mode 100644 index 00000000000..44830bf35af --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/index.js @@ -0,0 +1,5 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const tslib_1 = require("tslib"); +tslib_1.__exportStar(require("./GenerateCodeFromCommandsCommand"), exports); +tslib_1.__exportStar(require("./SendMessageCommand"), exports); diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/endpoints.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/endpoints.js new file mode 100644 index 00000000000..bd80d56eb27 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/endpoints.js @@ -0,0 +1,209 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.defaultRegionInfoProvider = void 0; +const config_resolver_1 = require("@smithy/config-resolver"); +const regionHash = {}; +const partitionHash = { + "aws": { + regions: [ + "af-south-1", + "ap-east-1", + "ap-northeast-1", + "ap-northeast-2", + "ap-northeast-3", + "ap-south-1", + "ap-south-2", + "ap-southeast-1", + "ap-southeast-2", + "ap-southeast-3", + "ap-southeast-4", + "ap-southeast-5", + "ca-central-1", + "ca-west-1", + "eu-central-1", + "eu-central-2", + "eu-north-1", + "eu-south-1", + "eu-south-2", + "eu-west-1", + "eu-west-2", + "eu-west-3", + "il-central-1", + "me-central-1", + "me-south-1", + "sa-east-1", + "us-east-1", + "us-east-2", + "us-west-1", + "us-west-2", + ], + regionRegex: "^(us|eu|ap|sa|ca|me|af|il|mx)\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.amazonaws.com", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.amazonaws.com", + "tags": [ + "fips" + ] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.api.aws", + "tags": [ + "dualstack", + "fips" + ] + }, + { + "hostname": "amazonqdeveloperstreamingservice.{region}.api.aws", + "tags": [ + "dualstack" + ] + } + ], + }, + "aws-cn": { + regions: [ + "cn-north-1", + "cn-northwest-1", + ], + regionRegex: "^cn\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.amazonaws.com.cn", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.amazonaws.com.cn", + "tags": [ + "fips" + ] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.api.amazonwebservices.com.cn", + "tags": [ + "dualstack", + "fips" + ] + }, + { + "hostname": "amazonqdeveloperstreamingservice.{region}.api.amazonwebservices.com.cn", + "tags": [ + "dualstack" + ] + } + ], + }, + "aws-iso": { + regions: [ + "us-iso-east-1", + "us-iso-west-1", + ], + regionRegex: "^us\\-iso\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.c2s.ic.gov", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.c2s.ic.gov", + "tags": [ + "fips" + ] + } + ], + }, + "aws-iso-b": { + regions: [ + "us-isob-east-1", + ], + regionRegex: "^us\\-isob\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.sc2s.sgov.gov", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.sc2s.sgov.gov", + "tags": [ + "fips" + ] + } + ], + }, + "aws-iso-e": { + regions: [ + "eu-isoe-west-1", + ], + regionRegex: "^eu\\-isoe\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.cloud.adc-e.uk", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.cloud.adc-e.uk", + "tags": [ + "fips" + ] + } + ], + }, + "aws-iso-f": { + regions: [], + regionRegex: "^us\\-isof\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.csp.hci.ic.gov", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.csp.hci.ic.gov", + "tags": [ + "fips" + ] + } + ], + }, + "aws-us-gov": { + regions: [ + "us-gov-east-1", + "us-gov-west-1", + ], + regionRegex: "^us\\-gov\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.amazonaws.com", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.amazonaws.com", + "tags": [ + "fips" + ] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.api.aws", + "tags": [ + "dualstack", + "fips" + ] + }, + { + "hostname": "amazonqdeveloperstreamingservice.{region}.api.aws", + "tags": [ + "dualstack" + ] + } + ], + }, +}; +const defaultRegionInfoProvider = async (region, options) => (0, config_resolver_1.getRegionInfo)(region, { + ...options, + signingService: "q", + regionHash, + partitionHash, +}); +exports.defaultRegionInfoProvider = defaultRegionInfoProvider; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/extensionConfiguration.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/extensionConfiguration.js new file mode 100644 index 00000000000..c8ad2e549bd --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/extensionConfiguration.js @@ -0,0 +1,2 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/index.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/index.js new file mode 100644 index 00000000000..3f9f712f666 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/index.js @@ -0,0 +1,10 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.QDeveloperStreamingServiceException = void 0; +const tslib_1 = require("tslib"); +tslib_1.__exportStar(require("./QDeveloperStreamingClient"), exports); +tslib_1.__exportStar(require("./QDeveloperStreaming"), exports); +tslib_1.__exportStar(require("./commands"), exports); +tslib_1.__exportStar(require("./models"), exports); +var QDeveloperStreamingServiceException_1 = require("./models/QDeveloperStreamingServiceException"); +Object.defineProperty(exports, "QDeveloperStreamingServiceException", { enumerable: true, get: function () { return QDeveloperStreamingServiceException_1.QDeveloperStreamingServiceException; } }); diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/QDeveloperStreamingServiceException.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/QDeveloperStreamingServiceException.js new file mode 100644 index 00000000000..8a65cb391b7 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/QDeveloperStreamingServiceException.js @@ -0,0 +1,12 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.QDeveloperStreamingServiceException = exports.__ServiceException = void 0; +const smithy_client_1 = require("@smithy/smithy-client"); +Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } }); +class QDeveloperStreamingServiceException extends smithy_client_1.ServiceException { + constructor(options) { + super(options); + Object.setPrototypeOf(this, QDeveloperStreamingServiceException.prototype); + } +} +exports.QDeveloperStreamingServiceException = QDeveloperStreamingServiceException; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/index.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/index.js new file mode 100644 index 00000000000..8ced418bca0 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/index.js @@ -0,0 +1,4 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const tslib_1 = require("tslib"); +tslib_1.__exportStar(require("./models_0"), exports); diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/models_0.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/models_0.js new file mode 100644 index 00000000000..fb541400f60 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/models_0.js @@ -0,0 +1,858 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ProgressComponentFilterSensitiveLog = exports.StepFilterSensitiveLog = exports.StepState = exports.StepComponentFilterSensitiveLog = exports.InfrastructureUpdateFilterSensitiveLog = exports.InfrastructureUpdateTransitionFilterSensitiveLog = exports.AlertFilterSensitiveLog = exports.AlertType = exports.AlertComponentFilterSensitiveLog = exports.TextFilterSensitiveLog = exports.IntentsEventFilterSensitiveLog = exports.IntentDataType = exports.IntentType = exports.FollowupPromptEventFilterSensitiveLog = exports.CodeEventFilterSensitiveLog = exports.ChatMessageFilterSensitiveLog = exports.ChatMessage = exports.UserInputMessageFilterSensitiveLog = exports.UserInputMessageContextFilterSensitiveLog = exports.ShellStateFilterSensitiveLog = exports.ShellHistoryEntryFilterSensitiveLog = exports.GitStateFilterSensitiveLog = exports.EnvStateFilterSensitiveLog = exports.EnvironmentVariableFilterSensitiveLog = exports.EditorStateFilterSensitiveLog = exports.RelevantTextDocumentFilterSensitiveLog = exports.CursorState = exports.DiagnosticFilterSensitiveLog = exports.Diagnostic = exports.TextDocumentDiagnosticFilterSensitiveLog = exports.TextDocumentFilterSensitiveLog = exports.SymbolType = exports.RuntimeDiagnosticFilterSensitiveLog = exports.DiagnosticSeverity = exports.ConsoleStateFilterSensitiveLog = exports.ConflictException = exports.ConflictExceptionReason = exports.AssistantResponseMessageFilterSensitiveLog = exports.SupplementaryWebLinkFilterSensitiveLog = exports.FollowupPromptFilterSensitiveLog = exports.UserIntent = exports.AssistantResponseEventFilterSensitiveLog = exports.AppStudioStateFilterSensitiveLog = exports.ValidationException = exports.ValidationExceptionReason = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.AccessDeniedException = exports.AccessDeniedExceptionReason = void 0; +exports.GenerateCodeFromCommandsResponseFilterSensitiveLog = exports.GenerateCodeFromCommandsResponseStreamFilterSensitiveLog = exports.GenerateCodeFromCommandsResponseStream = exports.GenerateCodeFromCommandsRequestFilterSensitiveLog = exports.SendMessageResponseFilterSensitiveLog = exports.SendMessageRequestFilterSensitiveLog = exports.Origin = exports.ServiceQuotaExceededException = exports.OutputFormat = exports.DryRunOperationException = exports.ConversationStateFilterSensitiveLog = exports.CommandInputFilterSensitiveLog = exports.CommandInput = exports.ChatTriggerType = exports.ChatResponseStreamFilterSensitiveLog = exports.ChatResponseStream = exports.SupplementaryWebLinksEventFilterSensitiveLog = exports.InvalidStateReason = exports.InteractionComponentsEventFilterSensitiveLog = exports.InteractionComponentEntryFilterSensitiveLog = exports.InteractionComponentFilterSensitiveLog = exports.TaskDetailsFilterSensitiveLog = exports.TaskOverviewFilterSensitiveLog = exports.TaskComponentFilterSensitiveLog = exports.TaskActionFilterSensitiveLog = exports.TaskActionNoteFilterSensitiveLog = exports.TaskActionNoteType = exports.TaskActionConfirmationFilterSensitiveLog = exports.SectionFilterSensitiveLog = exports.SectionComponentFilterSensitiveLog = exports.SectionComponent = exports.ResourceListFilterSensitiveLog = exports.ActionFilterSensitiveLog = exports.Action = exports.WebLinkFilterSensitiveLog = exports.ModuleLinkFilterSensitiveLog = exports.ModuleLink = exports.CloudWatchTroubleshootingLinkFilterSensitiveLog = exports.ResourceFilterSensitiveLog = exports.ProgressFilterSensitiveLog = void 0; +const QDeveloperStreamingServiceException_1 = require("./QDeveloperStreamingServiceException"); +const smithy_client_1 = require("@smithy/smithy-client"); +exports.AccessDeniedExceptionReason = { + UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS: "UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS", +}; +class AccessDeniedException extends QDeveloperStreamingServiceException_1.QDeveloperStreamingServiceException { + constructor(opts) { + super({ + name: "AccessDeniedException", + $fault: "client", + ...opts + }); + this.name = "AccessDeniedException"; + this.$fault = "client"; + Object.setPrototypeOf(this, AccessDeniedException.prototype); + this.reason = opts.reason; + } +} +exports.AccessDeniedException = AccessDeniedException; +class InternalServerException extends QDeveloperStreamingServiceException_1.QDeveloperStreamingServiceException { + constructor(opts) { + super({ + name: "InternalServerException", + $fault: "server", + ...opts + }); + this.name = "InternalServerException"; + this.$fault = "server"; + this.$retryable = {}; + Object.setPrototypeOf(this, InternalServerException.prototype); + } +} +exports.InternalServerException = InternalServerException; +class ResourceNotFoundException extends QDeveloperStreamingServiceException_1.QDeveloperStreamingServiceException { + constructor(opts) { + super({ + name: "ResourceNotFoundException", + $fault: "client", + ...opts + }); + this.name = "ResourceNotFoundException"; + this.$fault = "client"; + Object.setPrototypeOf(this, ResourceNotFoundException.prototype); + } +} +exports.ResourceNotFoundException = ResourceNotFoundException; +class ThrottlingException extends QDeveloperStreamingServiceException_1.QDeveloperStreamingServiceException { + constructor(opts) { + super({ + name: "ThrottlingException", + $fault: "client", + ...opts + }); + this.name = "ThrottlingException"; + this.$fault = "client"; + this.$retryable = { + throttling: true, + }; + Object.setPrototypeOf(this, ThrottlingException.prototype); + } +} +exports.ThrottlingException = ThrottlingException; +exports.ValidationExceptionReason = { + CONTENT_LENGTH_EXCEEDS_THRESHOLD: "CONTENT_LENGTH_EXCEEDS_THRESHOLD", + INVALID_CONVERSATION_ID: "INVALID_CONVERSATION_ID", + INVALID_KMS_GRANT: "INVALID_KMS_GRANT", +}; +class ValidationException extends QDeveloperStreamingServiceException_1.QDeveloperStreamingServiceException { + constructor(opts) { + super({ + name: "ValidationException", + $fault: "client", + ...opts + }); + this.name = "ValidationException"; + this.$fault = "client"; + Object.setPrototypeOf(this, ValidationException.prototype); + this.reason = opts.reason; + } +} +exports.ValidationException = ValidationException; +const AppStudioStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.namespace && { namespace: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.propertyName && { propertyName: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.propertyValue && { propertyValue: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.propertyContext && { propertyContext: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.AppStudioStateFilterSensitiveLog = AppStudioStateFilterSensitiveLog; +const AssistantResponseEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.AssistantResponseEventFilterSensitiveLog = AssistantResponseEventFilterSensitiveLog; +exports.UserIntent = { + APPLY_COMMON_BEST_PRACTICES: "APPLY_COMMON_BEST_PRACTICES", + CITE_SOURCES: "CITE_SOURCES", + CODE_GENERATION: "CODE_GENERATION", + EXPLAIN_CODE_SELECTION: "EXPLAIN_CODE_SELECTION", + EXPLAIN_LINE_BY_LINE: "EXPLAIN_LINE_BY_LINE", + GENERATE_CLOUDFORMATION_TEMPLATE: "GENERATE_CLOUDFORMATION_TEMPLATE", + GENERATE_UNIT_TESTS: "GENERATE_UNIT_TESTS", + IMPROVE_CODE: "IMPROVE_CODE", + SHOW_EXAMPLES: "SHOW_EXAMPLES", + SUGGEST_ALTERNATE_IMPLEMENTATION: "SUGGEST_ALTERNATE_IMPLEMENTATION", +}; +const FollowupPromptFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.FollowupPromptFilterSensitiveLog = FollowupPromptFilterSensitiveLog; +const SupplementaryWebLinkFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.url && { url: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.title && { title: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.snippet && { snippet: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.SupplementaryWebLinkFilterSensitiveLog = SupplementaryWebLinkFilterSensitiveLog; +const AssistantResponseMessageFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.supplementaryWebLinks && { supplementaryWebLinks: obj.supplementaryWebLinks.map(item => (0, exports.SupplementaryWebLinkFilterSensitiveLog)(item)) + }), + ...(obj.followupPrompt && { followupPrompt: (0, exports.FollowupPromptFilterSensitiveLog)(obj.followupPrompt) + }), +}); +exports.AssistantResponseMessageFilterSensitiveLog = AssistantResponseMessageFilterSensitiveLog; +exports.ConflictExceptionReason = { + CUSTOMER_KMS_KEY_DISABLED: "CUSTOMER_KMS_KEY_DISABLED", + CUSTOMER_KMS_KEY_INVALID_KEY_POLICY: "CUSTOMER_KMS_KEY_INVALID_KEY_POLICY", + MISMATCHED_KMS_KEY: "MISMATCHED_KMS_KEY", +}; +class ConflictException extends QDeveloperStreamingServiceException_1.QDeveloperStreamingServiceException { + constructor(opts) { + super({ + name: "ConflictException", + $fault: "client", + ...opts + }); + this.name = "ConflictException"; + this.$fault = "client"; + Object.setPrototypeOf(this, ConflictException.prototype); + this.reason = opts.reason; + } +} +exports.ConflictException = ConflictException; +const ConsoleStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.consoleUrl && { consoleUrl: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.taskName && { taskName: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.ConsoleStateFilterSensitiveLog = ConsoleStateFilterSensitiveLog; +exports.DiagnosticSeverity = { + ERROR: "ERROR", + HINT: "HINT", + INFORMATION: "INFORMATION", + WARNING: "WARNING", +}; +const RuntimeDiagnosticFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.source && { source: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.message && { message: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.RuntimeDiagnosticFilterSensitiveLog = RuntimeDiagnosticFilterSensitiveLog; +exports.SymbolType = { + DECLARATION: "DECLARATION", + USAGE: "USAGE", +}; +const TextDocumentFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.relativeFilePath && { relativeFilePath: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.text && { text: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.TextDocumentFilterSensitiveLog = TextDocumentFilterSensitiveLog; +const TextDocumentDiagnosticFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.document && { document: (0, exports.TextDocumentFilterSensitiveLog)(obj.document) + }), + ...(obj.source && { source: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.message && { message: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.TextDocumentDiagnosticFilterSensitiveLog = TextDocumentDiagnosticFilterSensitiveLog; +var Diagnostic; +(function (Diagnostic) { + Diagnostic.visit = (value, visitor) => { + if (value.textDocumentDiagnostic !== undefined) + return visitor.textDocumentDiagnostic(value.textDocumentDiagnostic); + if (value.runtimeDiagnostic !== undefined) + return visitor.runtimeDiagnostic(value.runtimeDiagnostic); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(Diagnostic = exports.Diagnostic || (exports.Diagnostic = {})); +const DiagnosticFilterSensitiveLog = (obj) => { + if (obj.textDocumentDiagnostic !== undefined) + return { textDocumentDiagnostic: (0, exports.TextDocumentDiagnosticFilterSensitiveLog)(obj.textDocumentDiagnostic) + }; + if (obj.runtimeDiagnostic !== undefined) + return { runtimeDiagnostic: (0, exports.RuntimeDiagnosticFilterSensitiveLog)(obj.runtimeDiagnostic) + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +exports.DiagnosticFilterSensitiveLog = DiagnosticFilterSensitiveLog; +var CursorState; +(function (CursorState) { + CursorState.visit = (value, visitor) => { + if (value.position !== undefined) + return visitor.position(value.position); + if (value.range !== undefined) + return visitor.range(value.range); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(CursorState = exports.CursorState || (exports.CursorState = {})); +const RelevantTextDocumentFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.relativeFilePath && { relativeFilePath: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.text && { text: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.RelevantTextDocumentFilterSensitiveLog = RelevantTextDocumentFilterSensitiveLog; +const EditorStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.document && { document: (0, exports.TextDocumentFilterSensitiveLog)(obj.document) + }), + ...(obj.cursorState && { cursorState: obj.cursorState + }), + ...(obj.relevantDocuments && { relevantDocuments: obj.relevantDocuments.map(item => (0, exports.RelevantTextDocumentFilterSensitiveLog)(item)) + }), +}); +exports.EditorStateFilterSensitiveLog = EditorStateFilterSensitiveLog; +const EnvironmentVariableFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.key && { key: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.value && { value: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.EnvironmentVariableFilterSensitiveLog = EnvironmentVariableFilterSensitiveLog; +const EnvStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.currentWorkingDirectory && { currentWorkingDirectory: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.environmentVariables && { environmentVariables: obj.environmentVariables.map(item => (0, exports.EnvironmentVariableFilterSensitiveLog)(item)) + }), +}); +exports.EnvStateFilterSensitiveLog = EnvStateFilterSensitiveLog; +const GitStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.status && { status: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.GitStateFilterSensitiveLog = GitStateFilterSensitiveLog; +const ShellHistoryEntryFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.command && { command: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.directory && { directory: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.stdout && { stdout: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.stderr && { stderr: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.ShellHistoryEntryFilterSensitiveLog = ShellHistoryEntryFilterSensitiveLog; +const ShellStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.shellHistory && { shellHistory: obj.shellHistory.map(item => (0, exports.ShellHistoryEntryFilterSensitiveLog)(item)) + }), +}); +exports.ShellStateFilterSensitiveLog = ShellStateFilterSensitiveLog; +const UserInputMessageContextFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.editorState && { editorState: (0, exports.EditorStateFilterSensitiveLog)(obj.editorState) + }), + ...(obj.shellState && { shellState: (0, exports.ShellStateFilterSensitiveLog)(obj.shellState) + }), + ...(obj.gitState && { gitState: (0, exports.GitStateFilterSensitiveLog)(obj.gitState) + }), + ...(obj.envState && { envState: (0, exports.EnvStateFilterSensitiveLog)(obj.envState) + }), + ...(obj.appStudioContext && { appStudioContext: (0, exports.AppStudioStateFilterSensitiveLog)(obj.appStudioContext) + }), + ...(obj.diagnostic && { diagnostic: (0, exports.DiagnosticFilterSensitiveLog)(obj.diagnostic) + }), + ...(obj.consoleState && { consoleState: (0, exports.ConsoleStateFilterSensitiveLog)(obj.consoleState) + }), +}); +exports.UserInputMessageContextFilterSensitiveLog = UserInputMessageContextFilterSensitiveLog; +const UserInputMessageFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.userInputMessageContext && { userInputMessageContext: (0, exports.UserInputMessageContextFilterSensitiveLog)(obj.userInputMessageContext) + }), +}); +exports.UserInputMessageFilterSensitiveLog = UserInputMessageFilterSensitiveLog; +var ChatMessage; +(function (ChatMessage) { + ChatMessage.visit = (value, visitor) => { + if (value.userInputMessage !== undefined) + return visitor.userInputMessage(value.userInputMessage); + if (value.assistantResponseMessage !== undefined) + return visitor.assistantResponseMessage(value.assistantResponseMessage); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(ChatMessage = exports.ChatMessage || (exports.ChatMessage = {})); +const ChatMessageFilterSensitiveLog = (obj) => { + if (obj.userInputMessage !== undefined) + return { userInputMessage: (0, exports.UserInputMessageFilterSensitiveLog)(obj.userInputMessage) + }; + if (obj.assistantResponseMessage !== undefined) + return { assistantResponseMessage: (0, exports.AssistantResponseMessageFilterSensitiveLog)(obj.assistantResponseMessage) + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +exports.ChatMessageFilterSensitiveLog = ChatMessageFilterSensitiveLog; +const CodeEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.CodeEventFilterSensitiveLog = CodeEventFilterSensitiveLog; +const FollowupPromptEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.followupPrompt && { followupPrompt: (0, exports.FollowupPromptFilterSensitiveLog)(obj.followupPrompt) + }), +}); +exports.FollowupPromptEventFilterSensitiveLog = FollowupPromptEventFilterSensitiveLog; +exports.IntentType = { + GLUE_SENSEI: "GLUE_SENSEI", + RESOURCE_DATA: "RESOURCE_DATA", + SUPPORT: "SUPPORT", +}; +var IntentDataType; +(function (IntentDataType) { + IntentDataType.visit = (value, visitor) => { + if (value.string !== undefined) + return visitor.string(value.string); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(IntentDataType = exports.IntentDataType || (exports.IntentDataType = {})); +const IntentsEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.intents && { intents: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.IntentsEventFilterSensitiveLog = IntentsEventFilterSensitiveLog; +const TextFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.TextFilterSensitiveLog = TextFilterSensitiveLog; +const AlertComponentFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.text && { text: (0, exports.TextFilterSensitiveLog)(obj.text) + }), +}); +exports.AlertComponentFilterSensitiveLog = AlertComponentFilterSensitiveLog; +exports.AlertType = { + ERROR: "ERROR", + INFO: "INFO", + WARNING: "WARNING", +}; +const AlertFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: obj.content.map(item => (0, exports.AlertComponentFilterSensitiveLog)(item)) + }), +}); +exports.AlertFilterSensitiveLog = AlertFilterSensitiveLog; +const InfrastructureUpdateTransitionFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.currentState && { currentState: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.nextState && { nextState: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.InfrastructureUpdateTransitionFilterSensitiveLog = InfrastructureUpdateTransitionFilterSensitiveLog; +const InfrastructureUpdateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.transition && { transition: (0, exports.InfrastructureUpdateTransitionFilterSensitiveLog)(obj.transition) + }), +}); +exports.InfrastructureUpdateFilterSensitiveLog = InfrastructureUpdateFilterSensitiveLog; +const StepComponentFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.text && { text: (0, exports.TextFilterSensitiveLog)(obj.text) + }), +}); +exports.StepComponentFilterSensitiveLog = StepComponentFilterSensitiveLog; +exports.StepState = { + FAILED: "FAILED", + IN_PROGRESS: "IN_PROGRESS", + LOADING: "LOADING", + PAUSED: "PAUSED", + PENDING: "PENDING", + STOPPED: "STOPPED", + SUCCEEDED: "SUCCEEDED", +}; +const StepFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.label && { label: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.content && { content: obj.content.map(item => (0, exports.StepComponentFilterSensitiveLog)(item)) + }), +}); +exports.StepFilterSensitiveLog = StepFilterSensitiveLog; +const ProgressComponentFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.step && { step: (0, exports.StepFilterSensitiveLog)(obj.step) + }), +}); +exports.ProgressComponentFilterSensitiveLog = ProgressComponentFilterSensitiveLog; +const ProgressFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: obj.content.map(item => (0, exports.ProgressComponentFilterSensitiveLog)(item)) + }), +}); +exports.ProgressFilterSensitiveLog = ProgressFilterSensitiveLog; +const ResourceFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.title && { title: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.link && { link: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.type && { type: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.ARN && { ARN: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.resourceJsonString && { resourceJsonString: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.ResourceFilterSensitiveLog = ResourceFilterSensitiveLog; +const CloudWatchTroubleshootingLinkFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.label && { label: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.investigationPayload && { investigationPayload: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.defaultText && { defaultText: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.CloudWatchTroubleshootingLinkFilterSensitiveLog = CloudWatchTroubleshootingLinkFilterSensitiveLog; +var ModuleLink; +(function (ModuleLink) { + ModuleLink.visit = (value, visitor) => { + if (value.cloudWatchTroubleshootingLink !== undefined) + return visitor.cloudWatchTroubleshootingLink(value.cloudWatchTroubleshootingLink); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(ModuleLink = exports.ModuleLink || (exports.ModuleLink = {})); +const ModuleLinkFilterSensitiveLog = (obj) => { + if (obj.cloudWatchTroubleshootingLink !== undefined) + return { cloudWatchTroubleshootingLink: (0, exports.CloudWatchTroubleshootingLinkFilterSensitiveLog)(obj.cloudWatchTroubleshootingLink) + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +exports.ModuleLinkFilterSensitiveLog = ModuleLinkFilterSensitiveLog; +const WebLinkFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.label && { label: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.url && { url: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.WebLinkFilterSensitiveLog = WebLinkFilterSensitiveLog; +var Action; +(function (Action) { + Action.visit = (value, visitor) => { + if (value.webLink !== undefined) + return visitor.webLink(value.webLink); + if (value.moduleLink !== undefined) + return visitor.moduleLink(value.moduleLink); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(Action = exports.Action || (exports.Action = {})); +const ActionFilterSensitiveLog = (obj) => { + if (obj.webLink !== undefined) + return { webLink: (0, exports.WebLinkFilterSensitiveLog)(obj.webLink) + }; + if (obj.moduleLink !== undefined) + return { moduleLink: (0, exports.ModuleLinkFilterSensitiveLog)(obj.moduleLink) + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +exports.ActionFilterSensitiveLog = ActionFilterSensitiveLog; +const ResourceListFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.action && { action: (0, exports.ActionFilterSensitiveLog)(obj.action) + }), + ...(obj.items && { items: obj.items.map(item => (0, exports.ResourceFilterSensitiveLog)(item)) + }), +}); +exports.ResourceListFilterSensitiveLog = ResourceListFilterSensitiveLog; +var SectionComponent; +(function (SectionComponent) { + SectionComponent.visit = (value, visitor) => { + if (value.text !== undefined) + return visitor.text(value.text); + if (value.alert !== undefined) + return visitor.alert(value.alert); + if (value.resource !== undefined) + return visitor.resource(value.resource); + if (value.resourceList !== undefined) + return visitor.resourceList(value.resourceList); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(SectionComponent = exports.SectionComponent || (exports.SectionComponent = {})); +const SectionComponentFilterSensitiveLog = (obj) => { + if (obj.text !== undefined) + return { text: (0, exports.TextFilterSensitiveLog)(obj.text) + }; + if (obj.alert !== undefined) + return { alert: (0, exports.AlertFilterSensitiveLog)(obj.alert) + }; + if (obj.resource !== undefined) + return { resource: (0, exports.ResourceFilterSensitiveLog)(obj.resource) + }; + if (obj.resourceList !== undefined) + return { resourceList: (0, exports.ResourceListFilterSensitiveLog)(obj.resourceList) + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +exports.SectionComponentFilterSensitiveLog = SectionComponentFilterSensitiveLog; +const SectionFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.title && { title: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.content && { content: obj.content.map(item => (0, exports.SectionComponentFilterSensitiveLog)(item)) + }), +}); +exports.SectionFilterSensitiveLog = SectionFilterSensitiveLog; +const TaskActionConfirmationFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.TaskActionConfirmationFilterSensitiveLog = TaskActionConfirmationFilterSensitiveLog; +exports.TaskActionNoteType = { + INFO: "INFO", + WARNING: "WARNING", +}; +const TaskActionNoteFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.TaskActionNoteFilterSensitiveLog = TaskActionNoteFilterSensitiveLog; +const TaskActionFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.label && { label: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.note && { note: (0, exports.TaskActionNoteFilterSensitiveLog)(obj.note) + }), + ...(obj.payload && { payload: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.confirmation && { confirmation: (0, exports.TaskActionConfirmationFilterSensitiveLog)(obj.confirmation) + }), +}); +exports.TaskActionFilterSensitiveLog = TaskActionFilterSensitiveLog; +const TaskComponentFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.text && { text: (0, exports.TextFilterSensitiveLog)(obj.text) + }), + ...(obj.infrastructureUpdate && { infrastructureUpdate: (0, exports.InfrastructureUpdateFilterSensitiveLog)(obj.infrastructureUpdate) + }), + ...(obj.alert && { alert: (0, exports.AlertFilterSensitiveLog)(obj.alert) + }), + ...(obj.progress && { progress: (0, exports.ProgressFilterSensitiveLog)(obj.progress) + }), +}); +exports.TaskComponentFilterSensitiveLog = TaskComponentFilterSensitiveLog; +const TaskOverviewFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.label && { label: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.TaskOverviewFilterSensitiveLog = TaskOverviewFilterSensitiveLog; +const TaskDetailsFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.overview && { overview: (0, exports.TaskOverviewFilterSensitiveLog)(obj.overview) + }), + ...(obj.content && { content: obj.content.map(item => (0, exports.TaskComponentFilterSensitiveLog)(item)) + }), + ...(obj.actions && { actions: obj.actions.map(item => (0, exports.TaskActionFilterSensitiveLog)(item)) + }), +}); +exports.TaskDetailsFilterSensitiveLog = TaskDetailsFilterSensitiveLog; +const InteractionComponentFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.text && { text: (0, exports.TextFilterSensitiveLog)(obj.text) + }), + ...(obj.alert && { alert: (0, exports.AlertFilterSensitiveLog)(obj.alert) + }), + ...(obj.infrastructureUpdate && { infrastructureUpdate: (0, exports.InfrastructureUpdateFilterSensitiveLog)(obj.infrastructureUpdate) + }), + ...(obj.progress && { progress: (0, exports.ProgressFilterSensitiveLog)(obj.progress) + }), + ...(obj.step && { step: (0, exports.StepFilterSensitiveLog)(obj.step) + }), + ...(obj.taskDetails && { taskDetails: (0, exports.TaskDetailsFilterSensitiveLog)(obj.taskDetails) + }), + ...(obj.section && { section: (0, exports.SectionFilterSensitiveLog)(obj.section) + }), + ...(obj.resource && { resource: (0, exports.ResourceFilterSensitiveLog)(obj.resource) + }), + ...(obj.resourceList && { resourceList: (0, exports.ResourceListFilterSensitiveLog)(obj.resourceList) + }), +}); +exports.InteractionComponentFilterSensitiveLog = InteractionComponentFilterSensitiveLog; +const InteractionComponentEntryFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.interactionComponent && { interactionComponent: (0, exports.InteractionComponentFilterSensitiveLog)(obj.interactionComponent) + }), +}); +exports.InteractionComponentEntryFilterSensitiveLog = InteractionComponentEntryFilterSensitiveLog; +const InteractionComponentsEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.interactionComponentEntries && { interactionComponentEntries: obj.interactionComponentEntries.map(item => (0, exports.InteractionComponentEntryFilterSensitiveLog)(item)) + }), +}); +exports.InteractionComponentsEventFilterSensitiveLog = InteractionComponentsEventFilterSensitiveLog; +exports.InvalidStateReason = { + INVALID_TASK_ASSIST_PLAN: "INVALID_TASK_ASSIST_PLAN", +}; +const SupplementaryWebLinksEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.supplementaryWebLinks && { supplementaryWebLinks: obj.supplementaryWebLinks.map(item => (0, exports.SupplementaryWebLinkFilterSensitiveLog)(item)) + }), +}); +exports.SupplementaryWebLinksEventFilterSensitiveLog = SupplementaryWebLinksEventFilterSensitiveLog; +var ChatResponseStream; +(function (ChatResponseStream) { + ChatResponseStream.visit = (value, visitor) => { + if (value.messageMetadataEvent !== undefined) + return visitor.messageMetadataEvent(value.messageMetadataEvent); + if (value.assistantResponseEvent !== undefined) + return visitor.assistantResponseEvent(value.assistantResponseEvent); + if (value.dryRunSucceedEvent !== undefined) + return visitor.dryRunSucceedEvent(value.dryRunSucceedEvent); + if (value.codeReferenceEvent !== undefined) + return visitor.codeReferenceEvent(value.codeReferenceEvent); + if (value.supplementaryWebLinksEvent !== undefined) + return visitor.supplementaryWebLinksEvent(value.supplementaryWebLinksEvent); + if (value.followupPromptEvent !== undefined) + return visitor.followupPromptEvent(value.followupPromptEvent); + if (value.codeEvent !== undefined) + return visitor.codeEvent(value.codeEvent); + if (value.intentsEvent !== undefined) + return visitor.intentsEvent(value.intentsEvent); + if (value.interactionComponentsEvent !== undefined) + return visitor.interactionComponentsEvent(value.interactionComponentsEvent); + if (value.invalidStateEvent !== undefined) + return visitor.invalidStateEvent(value.invalidStateEvent); + if (value.error !== undefined) + return visitor.error(value.error); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(ChatResponseStream = exports.ChatResponseStream || (exports.ChatResponseStream = {})); +const ChatResponseStreamFilterSensitiveLog = (obj) => { + if (obj.messageMetadataEvent !== undefined) + return { messageMetadataEvent: obj.messageMetadataEvent + }; + if (obj.assistantResponseEvent !== undefined) + return { assistantResponseEvent: (0, exports.AssistantResponseEventFilterSensitiveLog)(obj.assistantResponseEvent) + }; + if (obj.dryRunSucceedEvent !== undefined) + return { dryRunSucceedEvent: obj.dryRunSucceedEvent + }; + if (obj.codeReferenceEvent !== undefined) + return { codeReferenceEvent: obj.codeReferenceEvent + }; + if (obj.supplementaryWebLinksEvent !== undefined) + return { supplementaryWebLinksEvent: (0, exports.SupplementaryWebLinksEventFilterSensitiveLog)(obj.supplementaryWebLinksEvent) + }; + if (obj.followupPromptEvent !== undefined) + return { followupPromptEvent: (0, exports.FollowupPromptEventFilterSensitiveLog)(obj.followupPromptEvent) + }; + if (obj.codeEvent !== undefined) + return { codeEvent: (0, exports.CodeEventFilterSensitiveLog)(obj.codeEvent) + }; + if (obj.intentsEvent !== undefined) + return { intentsEvent: (0, exports.IntentsEventFilterSensitiveLog)(obj.intentsEvent) + }; + if (obj.interactionComponentsEvent !== undefined) + return { interactionComponentsEvent: (0, exports.InteractionComponentsEventFilterSensitiveLog)(obj.interactionComponentsEvent) + }; + if (obj.invalidStateEvent !== undefined) + return { invalidStateEvent: obj.invalidStateEvent + }; + if (obj.error !== undefined) + return { error: obj.error + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +exports.ChatResponseStreamFilterSensitiveLog = ChatResponseStreamFilterSensitiveLog; +exports.ChatTriggerType = { + DIAGNOSTIC: "DIAGNOSTIC", + INLINE_CHAT: "INLINE_CHAT", + MANUAL: "MANUAL", +}; +var CommandInput; +(function (CommandInput) { + CommandInput.visit = (value, visitor) => { + if (value.commandsList !== undefined) + return visitor.commandsList(value.commandsList); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(CommandInput = exports.CommandInput || (exports.CommandInput = {})); +const CommandInputFilterSensitiveLog = (obj) => { + if (obj.commandsList !== undefined) + return { commandsList: smithy_client_1.SENSITIVE_STRING + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +exports.CommandInputFilterSensitiveLog = CommandInputFilterSensitiveLog; +const ConversationStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.history && { history: obj.history.map(item => (0, exports.ChatMessageFilterSensitiveLog)(item)) + }), + ...(obj.currentMessage && { currentMessage: (0, exports.ChatMessageFilterSensitiveLog)(obj.currentMessage) + }), +}); +exports.ConversationStateFilterSensitiveLog = ConversationStateFilterSensitiveLog; +class DryRunOperationException extends QDeveloperStreamingServiceException_1.QDeveloperStreamingServiceException { + constructor(opts) { + super({ + name: "DryRunOperationException", + $fault: "client", + ...opts + }); + this.name = "DryRunOperationException"; + this.$fault = "client"; + Object.setPrototypeOf(this, DryRunOperationException.prototype); + this.responseCode = opts.responseCode; + } +} +exports.DryRunOperationException = DryRunOperationException; +exports.OutputFormat = { + JAVA_CDK: "java/cdk", + JSON_CFN: "json/cfn", + PYTHON_CDK: "python/cdk", + TYPESCRIPT_CDK: "typescript/cdk", + YAML_CFN: "yaml/cfn", +}; +class ServiceQuotaExceededException extends QDeveloperStreamingServiceException_1.QDeveloperStreamingServiceException { + constructor(opts) { + super({ + name: "ServiceQuotaExceededException", + $fault: "client", + ...opts + }); + this.name = "ServiceQuotaExceededException"; + this.$fault = "client"; + Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype); + } +} +exports.ServiceQuotaExceededException = ServiceQuotaExceededException; +exports.Origin = { + CHATBOT: "CHATBOT", + CONSOLE: "CONSOLE", + DOCUMENTATION: "DOCUMENTATION", + IDE: "IDE", + MARKETING: "MARKETING", + MD: "MD", + MOBILE: "MOBILE", + SERVICE_INTERNAL: "SERVICE_INTERNAL", + UNIFIED_SEARCH: "UNIFIED_SEARCH", + UNKNOWN: "UNKNOWN", +}; +const SendMessageRequestFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.conversationState && { conversationState: (0, exports.ConversationStateFilterSensitiveLog)(obj.conversationState) + }), +}); +exports.SendMessageRequestFilterSensitiveLog = SendMessageRequestFilterSensitiveLog; +const SendMessageResponseFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.sendMessageResponse && { sendMessageResponse: 'STREAMING_CONTENT' + }), +}); +exports.SendMessageResponseFilterSensitiveLog = SendMessageResponseFilterSensitiveLog; +const GenerateCodeFromCommandsRequestFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.commands && { commands: (0, exports.CommandInputFilterSensitiveLog)(obj.commands) + }), +}); +exports.GenerateCodeFromCommandsRequestFilterSensitiveLog = GenerateCodeFromCommandsRequestFilterSensitiveLog; +var GenerateCodeFromCommandsResponseStream; +(function (GenerateCodeFromCommandsResponseStream) { + GenerateCodeFromCommandsResponseStream.visit = (value, visitor) => { + if (value.codeEvent !== undefined) + return visitor.codeEvent(value.codeEvent); + if (value.Error !== undefined) + return visitor.Error(value.Error); + if (value.QuotaLevelExceededError !== undefined) + return visitor.QuotaLevelExceededError(value.QuotaLevelExceededError); + if (value.ValidationError !== undefined) + return visitor.ValidationError(value.ValidationError); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(GenerateCodeFromCommandsResponseStream = exports.GenerateCodeFromCommandsResponseStream || (exports.GenerateCodeFromCommandsResponseStream = {})); +const GenerateCodeFromCommandsResponseStreamFilterSensitiveLog = (obj) => { + if (obj.codeEvent !== undefined) + return { codeEvent: (0, exports.CodeEventFilterSensitiveLog)(obj.codeEvent) + }; + if (obj.Error !== undefined) + return { Error: obj.Error + }; + if (obj.QuotaLevelExceededError !== undefined) + return { QuotaLevelExceededError: obj.QuotaLevelExceededError + }; + if (obj.ValidationError !== undefined) + return { ValidationError: obj.ValidationError + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +exports.GenerateCodeFromCommandsResponseStreamFilterSensitiveLog = GenerateCodeFromCommandsResponseStreamFilterSensitiveLog; +const GenerateCodeFromCommandsResponseFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.generatedCodeFromCommandsResponse && { generatedCodeFromCommandsResponse: 'STREAMING_CONTENT' + }), +}); +exports.GenerateCodeFromCommandsResponseFilterSensitiveLog = GenerateCodeFromCommandsResponseFilterSensitiveLog; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/protocols/Aws_json1_0.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/protocols/Aws_json1_0.js new file mode 100644 index 00000000000..126d24c5530 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/protocols/Aws_json1_0.js @@ -0,0 +1,397 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.de_SendMessageCommand = exports.de_GenerateCodeFromCommandsCommand = exports.se_SendMessageCommand = exports.se_GenerateCodeFromCommandsCommand = void 0; +const QDeveloperStreamingServiceException_1 = require("../models/QDeveloperStreamingServiceException"); +const models_0_1 = require("../models/models_0"); +const core_1 = require("@aws-sdk/core"); +const protocol_http_1 = require("@smithy/protocol-http"); +const smithy_client_1 = require("@smithy/smithy-client"); +const se_GenerateCodeFromCommandsCommand = async (input, context) => { + const headers = sharedHeaders("GenerateCodeFromCommands"); + let body; + body = JSON.stringify((0, smithy_client_1._json)(input)); + return buildHttpRpcRequest(context, headers, "/", undefined, body); +}; +exports.se_GenerateCodeFromCommandsCommand = se_GenerateCodeFromCommandsCommand; +const se_SendMessageCommand = async (input, context) => { + const headers = sharedHeaders("SendMessage"); + let body; + body = JSON.stringify(se_SendMessageRequest(input, context)); + return buildHttpRpcRequest(context, headers, "/", undefined, body); +}; +exports.se_SendMessageCommand = se_SendMessageCommand; +const de_GenerateCodeFromCommandsCommand = async (output, context) => { + if (output.statusCode >= 300) { + return de_CommandError(output, context); + } + const contents = { generatedCodeFromCommandsResponse: de_GenerateCodeFromCommandsResponseStream(output.body, context) }; + const response = { + $metadata: deserializeMetadata(output), + ...contents, + }; + return response; +}; +exports.de_GenerateCodeFromCommandsCommand = de_GenerateCodeFromCommandsCommand; +const de_SendMessageCommand = async (output, context) => { + if (output.statusCode >= 300) { + return de_CommandError(output, context); + } + const contents = { sendMessageResponse: de_ChatResponseStream(output.body, context) }; + const response = { + $metadata: deserializeMetadata(output), + ...contents, + }; + return response; +}; +exports.de_SendMessageCommand = de_SendMessageCommand; +const de_CommandError = async (output, context) => { + const parsedOutput = { + ...output, + body: await (0, core_1.parseJsonErrorBody)(output.body, context) + }; + const errorCode = (0, core_1.loadRestJsonErrorCode)(output, parsedOutput.body); + switch (errorCode) { + case "AccessDeniedException": + case "com.amazon.aws.codewhisperer#AccessDeniedException": + throw await de_AccessDeniedExceptionRes(parsedOutput, context); + case "InternalServerException": + case "com.amazon.aws.codewhisperer#InternalServerException": + throw await de_InternalServerExceptionRes(parsedOutput, context); + case "ThrottlingException": + case "com.amazon.aws.codewhisperer#ThrottlingException": + throw await de_ThrottlingExceptionRes(parsedOutput, context); + case "ValidationException": + case "com.amazon.aws.codewhisperer#ValidationException": + throw await de_ValidationExceptionRes(parsedOutput, context); + case "ConflictException": + case "com.amazon.aws.codewhisperer#ConflictException": + throw await de_ConflictExceptionRes(parsedOutput, context); + case "DryRunOperationException": + case "com.amazon.aws.codewhisperer#DryRunOperationException": + throw await de_DryRunOperationExceptionRes(parsedOutput, context); + case "ResourceNotFoundException": + case "com.amazon.aws.codewhisperer#ResourceNotFoundException": + throw await de_ResourceNotFoundExceptionRes(parsedOutput, context); + case "ServiceQuotaExceededException": + case "com.amazon.aws.codewhisperer#ServiceQuotaExceededException": + throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context); + default: + const parsedBody = parsedOutput.body; + return throwDefaultError({ + output, + parsedBody, + errorCode + }); + } +}; +const de_AccessDeniedExceptionRes = async (parsedOutput, context) => { + const body = parsedOutput.body; + const deserialized = (0, smithy_client_1._json)(body); + const exception = new models_0_1.AccessDeniedException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return (0, smithy_client_1.decorateServiceException)(exception, body); +}; +const de_ConflictExceptionRes = async (parsedOutput, context) => { + const body = parsedOutput.body; + const deserialized = (0, smithy_client_1._json)(body); + const exception = new models_0_1.ConflictException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return (0, smithy_client_1.decorateServiceException)(exception, body); +}; +const de_DryRunOperationExceptionRes = async (parsedOutput, context) => { + const body = parsedOutput.body; + const deserialized = (0, smithy_client_1._json)(body); + const exception = new models_0_1.DryRunOperationException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return (0, smithy_client_1.decorateServiceException)(exception, body); +}; +const de_InternalServerExceptionRes = async (parsedOutput, context) => { + const body = parsedOutput.body; + const deserialized = (0, smithy_client_1._json)(body); + const exception = new models_0_1.InternalServerException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return (0, smithy_client_1.decorateServiceException)(exception, body); +}; +const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => { + const body = parsedOutput.body; + const deserialized = (0, smithy_client_1._json)(body); + const exception = new models_0_1.ResourceNotFoundException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return (0, smithy_client_1.decorateServiceException)(exception, body); +}; +const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => { + const body = parsedOutput.body; + const deserialized = (0, smithy_client_1._json)(body); + const exception = new models_0_1.ServiceQuotaExceededException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return (0, smithy_client_1.decorateServiceException)(exception, body); +}; +const de_ThrottlingExceptionRes = async (parsedOutput, context) => { + const body = parsedOutput.body; + const deserialized = (0, smithy_client_1._json)(body); + const exception = new models_0_1.ThrottlingException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return (0, smithy_client_1.decorateServiceException)(exception, body); +}; +const de_ValidationExceptionRes = async (parsedOutput, context) => { + const body = parsedOutput.body; + const deserialized = (0, smithy_client_1._json)(body); + const exception = new models_0_1.ValidationException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return (0, smithy_client_1.decorateServiceException)(exception, body); +}; +const de_ChatResponseStream = (output, context) => { + return context.eventStreamMarshaller.deserialize(output, async (event) => { + if (event["messageMetadataEvent"] != null) { + return { + messageMetadataEvent: await de_MessageMetadataEvent_event(event["messageMetadataEvent"], context), + }; + } + if (event["assistantResponseEvent"] != null) { + return { + assistantResponseEvent: await de_AssistantResponseEvent_event(event["assistantResponseEvent"], context), + }; + } + if (event["dryRunSucceedEvent"] != null) { + return { + dryRunSucceedEvent: await de_DryRunSucceedEvent_event(event["dryRunSucceedEvent"], context), + }; + } + if (event["codeReferenceEvent"] != null) { + return { + codeReferenceEvent: await de_CodeReferenceEvent_event(event["codeReferenceEvent"], context), + }; + } + if (event["supplementaryWebLinksEvent"] != null) { + return { + supplementaryWebLinksEvent: await de_SupplementaryWebLinksEvent_event(event["supplementaryWebLinksEvent"], context), + }; + } + if (event["followupPromptEvent"] != null) { + return { + followupPromptEvent: await de_FollowupPromptEvent_event(event["followupPromptEvent"], context), + }; + } + if (event["codeEvent"] != null) { + return { + codeEvent: await de_CodeEvent_event(event["codeEvent"], context), + }; + } + if (event["intentsEvent"] != null) { + return { + intentsEvent: await de_IntentsEvent_event(event["intentsEvent"], context), + }; + } + if (event["interactionComponentsEvent"] != null) { + return { + interactionComponentsEvent: await de_InteractionComponentsEvent_event(event["interactionComponentsEvent"], context), + }; + } + if (event["invalidStateEvent"] != null) { + return { + invalidStateEvent: await de_InvalidStateEvent_event(event["invalidStateEvent"], context), + }; + } + if (event["error"] != null) { + return { + error: await de_InternalServerException_event(event["error"], context), + }; + } + return { $unknown: output }; + }); +}; +const de_GenerateCodeFromCommandsResponseStream = (output, context) => { + return context.eventStreamMarshaller.deserialize(output, async (event) => { + if (event["codeEvent"] != null) { + return { + codeEvent: await de_CodeEvent_event(event["codeEvent"], context), + }; + } + if (event["Error"] != null) { + return { + Error: await de_InternalServerException_event(event["Error"], context), + }; + } + if (event["QuotaLevelExceededError"] != null) { + return { + QuotaLevelExceededError: await de_ServiceQuotaExceededException_event(event["QuotaLevelExceededError"], context), + }; + } + if (event["ValidationError"] != null) { + return { + ValidationError: await de_ValidationException_event(event["ValidationError"], context), + }; + } + return { $unknown: output }; + }); +}; +const de_AssistantResponseEvent_event = async (output, context) => { + const contents = {}; + const data = await (0, core_1.parseJsonBody)(output.body, context); + Object.assign(contents, (0, smithy_client_1._json)(data)); + return contents; +}; +const de_CodeEvent_event = async (output, context) => { + const contents = {}; + const data = await (0, core_1.parseJsonBody)(output.body, context); + Object.assign(contents, (0, smithy_client_1._json)(data)); + return contents; +}; +const de_CodeReferenceEvent_event = async (output, context) => { + const contents = {}; + const data = await (0, core_1.parseJsonBody)(output.body, context); + Object.assign(contents, (0, smithy_client_1._json)(data)); + return contents; +}; +const de_DryRunSucceedEvent_event = async (output, context) => { + const contents = {}; + const data = await (0, core_1.parseJsonBody)(output.body, context); + Object.assign(contents, (0, smithy_client_1._json)(data)); + return contents; +}; +const de_FollowupPromptEvent_event = async (output, context) => { + const contents = {}; + const data = await (0, core_1.parseJsonBody)(output.body, context); + Object.assign(contents, (0, smithy_client_1._json)(data)); + return contents; +}; +const de_IntentsEvent_event = async (output, context) => { + const contents = {}; + const data = await (0, core_1.parseJsonBody)(output.body, context); + Object.assign(contents, (0, smithy_client_1._json)(data)); + return contents; +}; +const de_InteractionComponentsEvent_event = async (output, context) => { + const contents = {}; + const data = await (0, core_1.parseJsonBody)(output.body, context); + Object.assign(contents, de_InteractionComponentsEvent(data, context)); + return contents; +}; +const de_InternalServerException_event = async (output, context) => { + const parsedOutput = { + ...output, + body: await (0, core_1.parseJsonBody)(output.body, context) + }; + return de_InternalServerExceptionRes(parsedOutput, context); +}; +const de_InvalidStateEvent_event = async (output, context) => { + const contents = {}; + const data = await (0, core_1.parseJsonBody)(output.body, context); + Object.assign(contents, (0, smithy_client_1._json)(data)); + return contents; +}; +const de_MessageMetadataEvent_event = async (output, context) => { + const contents = {}; + const data = await (0, core_1.parseJsonBody)(output.body, context); + Object.assign(contents, (0, smithy_client_1._json)(data)); + return contents; +}; +const de_ServiceQuotaExceededException_event = async (output, context) => { + const parsedOutput = { + ...output, + body: await (0, core_1.parseJsonBody)(output.body, context) + }; + return de_ServiceQuotaExceededExceptionRes(parsedOutput, context); +}; +const de_SupplementaryWebLinksEvent_event = async (output, context) => { + const contents = {}; + const data = await (0, core_1.parseJsonBody)(output.body, context); + Object.assign(contents, (0, smithy_client_1._json)(data)); + return contents; +}; +const de_ValidationException_event = async (output, context) => { + const parsedOutput = { + ...output, + body: await (0, core_1.parseJsonBody)(output.body, context) + }; + return de_ValidationExceptionRes(parsedOutput, context); +}; +const se_SendMessageRequest = (input, context) => { + return (0, smithy_client_1.take)(input, { + 'conversationState': smithy_client_1._json, + 'dryRun': [], + 'profileArn': [], + 'source': [], + }); +}; +const de_InteractionComponentEntry = (output, context) => { + return (0, smithy_client_1.take)(output, { + 'interactionComponent': (_) => de_InteractionComponent(_, context), + 'interactionComponentId': smithy_client_1.expectString, + }); +}; +const de_InteractionComponentEntryList = (output, context) => { + const retVal = (output || []).filter((e) => e != null).map((entry) => { + return de_InteractionComponentEntry(entry, context); + }); + return retVal; +}; +const de_InteractionComponentsEvent = (output, context) => { + return (0, smithy_client_1.take)(output, { + 'interactionComponentEntries': (_) => de_InteractionComponentEntryList(_, context), + }); +}; +const de_InteractionComponent = (output, context) => { + return (0, smithy_client_1.take)(output, { + 'alert': smithy_client_1._json, + 'infrastructureUpdate': smithy_client_1._json, + 'progress': smithy_client_1._json, + 'resource': smithy_client_1._json, + 'resourceList': smithy_client_1._json, + 'section': smithy_client_1._json, + 'step': smithy_client_1._json, + 'suggestions': smithy_client_1._json, + 'taskDetails': smithy_client_1._json, + 'taskReference': smithy_client_1._json, + 'text': smithy_client_1._json, + }); +}; +const deserializeMetadata = (output) => ({ + httpStatusCode: output.statusCode, + requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"], + extendedRequestId: output.headers["x-amz-id-2"], + cfId: output.headers["x-amz-cf-id"], +}); +const collectBodyString = (streamBody, context) => (0, smithy_client_1.collectBody)(streamBody, context).then(body => context.utf8Encoder(body)); +const throwDefaultError = (0, smithy_client_1.withBaseException)(QDeveloperStreamingServiceException_1.QDeveloperStreamingServiceException); +const buildHttpRpcRequest = async (context, headers, path, resolvedHostname, body) => { + const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); + const contents = { + protocol, + hostname, + port, + method: "POST", + path: basePath.endsWith("/") ? basePath.slice(0, -1) + path : basePath + path, + headers, + }; + if (resolvedHostname !== undefined) { + contents.hostname = resolvedHostname; + } + if (body !== undefined) { + contents.body = body; + } + return new protocol_http_1.HttpRequest(contents); +}; +function sharedHeaders(operation) { + return { + 'content-type': "application/x-amz-json-1.0", + 'x-amz-target': `AmazonQDeveloperStreamingService.${operation}`, + }; +} +; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.browser.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.browser.js new file mode 100644 index 00000000000..8cbe11364e9 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.browser.js @@ -0,0 +1,40 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.getRuntimeConfig = void 0; +const tslib_1 = require("tslib"); +const package_json_1 = tslib_1.__importDefault(require("../package.json")); +const sha256_browser_1 = require("@aws-crypto/sha256-browser"); +const util_user_agent_browser_1 = require("@aws-sdk/util-user-agent-browser"); +const config_resolver_1 = require("@smithy/config-resolver"); +const eventstream_serde_browser_1 = require("@smithy/eventstream-serde-browser"); +const fetch_http_handler_1 = require("@smithy/fetch-http-handler"); +const invalid_dependency_1 = require("@smithy/invalid-dependency"); +const util_body_length_browser_1 = require("@smithy/util-body-length-browser"); +const util_retry_1 = require("@smithy/util-retry"); +const runtimeConfig_shared_1 = require("./runtimeConfig.shared"); +const smithy_client_1 = require("@smithy/smithy-client"); +const util_defaults_mode_browser_1 = require("@smithy/util-defaults-mode-browser"); +const getRuntimeConfig = (config) => { + const defaultsMode = (0, util_defaults_mode_browser_1.resolveDefaultsModeConfig)(config); + const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode); + const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config); + return { + ...clientSharedValues, + ...config, + runtime: "browser", + defaultsMode, + bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_browser_1.calculateBodyLength, + credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))), + defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_browser_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }), + eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventstream_serde_browser_1.eventStreamSerdeProvider, + maxAttempts: config?.maxAttempts ?? util_retry_1.DEFAULT_MAX_ATTEMPTS, + region: config?.region ?? (0, invalid_dependency_1.invalidProvider)("Region is missing"), + requestHandler: fetch_http_handler_1.FetchHttpHandler.create(config?.requestHandler ?? defaultConfigProvider), + retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE), + sha256: config?.sha256 ?? sha256_browser_1.Sha256, + streamCollector: config?.streamCollector ?? fetch_http_handler_1.streamCollector, + useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(config_resolver_1.DEFAULT_USE_DUALSTACK_ENDPOINT)), + useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(config_resolver_1.DEFAULT_USE_FIPS_ENDPOINT)), + }; +}; +exports.getRuntimeConfig = getRuntimeConfig; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.js new file mode 100644 index 00000000000..f2074165824 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.js @@ -0,0 +1,46 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.getRuntimeConfig = void 0; +const tslib_1 = require("tslib"); +const package_json_1 = tslib_1.__importDefault(require("../package.json")); +const core_1 = require("@aws-sdk/core"); +const credential_provider_node_1 = require("@aws-sdk/credential-provider-node"); +const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node"); +const config_resolver_1 = require("@smithy/config-resolver"); +const eventstream_serde_node_1 = require("@smithy/eventstream-serde-node"); +const hash_node_1 = require("@smithy/hash-node"); +const middleware_retry_1 = require("@smithy/middleware-retry"); +const node_config_provider_1 = require("@smithy/node-config-provider"); +const node_http_handler_1 = require("@smithy/node-http-handler"); +const util_body_length_node_1 = require("@smithy/util-body-length-node"); +const util_retry_1 = require("@smithy/util-retry"); +const runtimeConfig_shared_1 = require("./runtimeConfig.shared"); +const smithy_client_1 = require("@smithy/smithy-client"); +const util_defaults_mode_node_1 = require("@smithy/util-defaults-mode-node"); +const smithy_client_2 = require("@smithy/smithy-client"); +const getRuntimeConfig = (config) => { + (0, smithy_client_2.emitWarningIfUnsupportedVersion)(process.version); + const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config); + const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode); + const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config); + (0, core_1.emitWarningIfUnsupportedVersion)(process.version); + return { + ...clientSharedValues, + ...config, + runtime: "node", + defaultsMode, + bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength, + credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider, + defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }), + eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventstream_serde_node_1.eventStreamSerdeProvider, + maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS), + region: config?.region ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS), + requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider), + retryMode: config?.retryMode ?? (0, node_config_provider_1.loadConfig)({ ...middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS, default: async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE, }), + sha256: config?.sha256 ?? hash_node_1.Hash.bind(null, "sha256"), + streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector, + useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS), + useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS), + }; +}; +exports.getRuntimeConfig = getRuntimeConfig; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.native.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.native.js new file mode 100644 index 00000000000..34c5f8ece1d --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.native.js @@ -0,0 +1,15 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.getRuntimeConfig = void 0; +const sha256_js_1 = require("@aws-crypto/sha256-js"); +const runtimeConfig_browser_1 = require("./runtimeConfig.browser"); +const getRuntimeConfig = (config) => { + const browserDefaults = (0, runtimeConfig_browser_1.getRuntimeConfig)(config); + return { + ...browserDefaults, + ...config, + runtime: "react-native", + sha256: config?.sha256 ?? sha256_js_1.Sha256, + }; +}; +exports.getRuntimeConfig = getRuntimeConfig; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.shared.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.shared.js new file mode 100644 index 00000000000..b284b25782c --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.shared.js @@ -0,0 +1,32 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.getRuntimeConfig = void 0; +const httpAuthSchemeProvider_1 = require("./auth/httpAuthSchemeProvider"); +const endpoints_1 = require("./endpoints"); +const core_1 = require("@aws-sdk/core"); +const smithy_client_1 = require("@smithy/smithy-client"); +const url_parser_1 = require("@smithy/url-parser"); +const util_base64_1 = require("@smithy/util-base64"); +const util_utf8_1 = require("@smithy/util-utf8"); +const getRuntimeConfig = (config) => { + return { + apiVersion: "2024-06-11", + base64Decoder: config?.base64Decoder ?? util_base64_1.fromBase64, + base64Encoder: config?.base64Encoder ?? util_base64_1.toBase64, + disableHostPrefix: config?.disableHostPrefix ?? false, + extensions: config?.extensions ?? [], + httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? httpAuthSchemeProvider_1.defaultQDeveloperStreamingHttpAuthSchemeProvider, + httpAuthSchemes: config?.httpAuthSchemes ?? [{ + schemeId: "aws.auth#sigv4", + identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), + signer: new core_1.AwsSdkSigV4Signer(), + }], + logger: config?.logger ?? new smithy_client_1.NoOpLogger(), + regionInfoProvider: config?.regionInfoProvider ?? endpoints_1.defaultRegionInfoProvider, + serviceId: config?.serviceId ?? "QDeveloperStreaming", + urlParser: config?.urlParser ?? url_parser_1.parseUrl, + utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8, + utf8Encoder: config?.utf8Encoder ?? util_utf8_1.toUtf8, + }; +}; +exports.getRuntimeConfig = getRuntimeConfig; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeExtensions.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeExtensions.js new file mode 100644 index 00000000000..87d20a718b8 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeExtensions.js @@ -0,0 +1,25 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.resolveRuntimeExtensions = void 0; +const httpAuthExtensionConfiguration_1 = require("./auth/httpAuthExtensionConfiguration"); +const region_config_resolver_1 = require("@aws-sdk/region-config-resolver"); +const protocol_http_1 = require("@smithy/protocol-http"); +const smithy_client_1 = require("@smithy/smithy-client"); +const asPartial = (t) => t; +const resolveRuntimeExtensions = (runtimeConfig, extensions) => { + const extensionConfiguration = { + ...asPartial((0, region_config_resolver_1.getAwsRegionExtensionConfiguration)(runtimeConfig)), + ...asPartial((0, smithy_client_1.getDefaultExtensionConfiguration)(runtimeConfig)), + ...asPartial((0, protocol_http_1.getHttpHandlerExtensionConfiguration)(runtimeConfig)), + ...asPartial((0, httpAuthExtensionConfiguration_1.getHttpAuthExtensionConfiguration)(runtimeConfig)), + }; + extensions.forEach(extension => extension.configure(extensionConfiguration)); + return { + ...runtimeConfig, + ...(0, region_config_resolver_1.resolveAwsRegionExtensionConfiguration)(extensionConfiguration), + ...(0, smithy_client_1.resolveDefaultRuntimeConfig)(extensionConfiguration), + ...(0, protocol_http_1.resolveHttpHandlerRuntimeConfig)(extensionConfiguration), + ...(0, httpAuthExtensionConfiguration_1.resolveHttpAuthRuntimeConfig)(extensionConfiguration), + }; +}; +exports.resolveRuntimeExtensions = resolveRuntimeExtensions; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/QDeveloperStreaming.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/QDeveloperStreaming.js new file mode 100644 index 00000000000..95210469ddf --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/QDeveloperStreaming.js @@ -0,0 +1,11 @@ +import { QDeveloperStreamingClient, } from "./QDeveloperStreamingClient"; +import { GenerateCodeFromCommandsCommand, } from "./commands/GenerateCodeFromCommandsCommand"; +import { SendMessageCommand, } from "./commands/SendMessageCommand"; +import { createAggregatedClient } from "@smithy/smithy-client"; +const commands = { + GenerateCodeFromCommandsCommand, + SendMessageCommand, +}; +export class QDeveloperStreaming extends QDeveloperStreamingClient { +} +createAggregatedClient(commands, QDeveloperStreaming); diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/QDeveloperStreamingClient.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/QDeveloperStreamingClient.js new file mode 100644 index 00000000000..4abd6c3cfdc --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/QDeveloperStreamingClient.js @@ -0,0 +1,44 @@ +import { defaultQDeveloperStreamingHttpAuthSchemeParametersProvider, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; +import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; +import { resolveRuntimeExtensions, } from "./runtimeExtensions"; +import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; +import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; +import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; +import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent"; +import { resolveEndpointsConfig, resolveRegionConfig, } from "@smithy/config-resolver"; +import { DefaultIdentityProviderConfig, getHttpAuthSchemePlugin, getHttpSigningPlugin, } from "@smithy/core"; +import { resolveEventStreamSerdeConfig, } from "@smithy/eventstream-serde-config-resolver"; +import { getContentLengthPlugin } from "@smithy/middleware-content-length"; +import { getRetryPlugin, resolveRetryConfig, } from "@smithy/middleware-retry"; +import { Client as __Client, } from "@smithy/smithy-client"; +export { __Client }; +export class QDeveloperStreamingClient extends __Client { + constructor(...[configuration]) { + let _config_0 = __getRuntimeConfig(configuration || {}); + let _config_1 = resolveUserAgentConfig(_config_0); + let _config_2 = resolveRetryConfig(_config_1); + let _config_3 = resolveRegionConfig(_config_2); + let _config_4 = resolveHostHeaderConfig(_config_3); + let _config_5 = resolveEndpointsConfig(_config_4); + let _config_6 = resolveEventStreamSerdeConfig(_config_5); + let _config_7 = resolveHttpAuthSchemeConfig(_config_6); + let _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []); + super(_config_8); + this.config = _config_8; + this.middlewareStack.use(getUserAgentPlugin(this.config)); + this.middlewareStack.use(getRetryPlugin(this.config)); + this.middlewareStack.use(getContentLengthPlugin(this.config)); + this.middlewareStack.use(getHostHeaderPlugin(this.config)); + this.middlewareStack.use(getLoggerPlugin(this.config)); + this.middlewareStack.use(getRecursionDetectionPlugin(this.config)); + this.middlewareStack.use(getHttpAuthSchemePlugin(this.config, { + httpAuthSchemeParametersProvider: defaultQDeveloperStreamingHttpAuthSchemeParametersProvider, identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({ + "aws.auth#sigv4": config.credentials, + }), + })); + this.middlewareStack.use(getHttpSigningPlugin(this.config)); + } + destroy() { + super.destroy(); + } +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/auth/httpAuthExtensionConfiguration.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/auth/httpAuthExtensionConfiguration.js new file mode 100644 index 00000000000..83a878ed765 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/auth/httpAuthExtensionConfiguration.js @@ -0,0 +1,38 @@ +export const getHttpAuthExtensionConfiguration = (runtimeConfig) => { + let _httpAuthSchemes = runtimeConfig.httpAuthSchemes; + let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider; + let _credentials = runtimeConfig.credentials; + return { + setHttpAuthScheme(httpAuthScheme) { + const index = _httpAuthSchemes.findIndex(scheme => scheme.schemeId === httpAuthScheme.schemeId); + if (index === -1) { + _httpAuthSchemes.push(httpAuthScheme); + } + else { + _httpAuthSchemes.splice(index, 1, httpAuthScheme); + } + }, + httpAuthSchemes() { + return _httpAuthSchemes; + }, + setHttpAuthSchemeProvider(httpAuthSchemeProvider) { + _httpAuthSchemeProvider = httpAuthSchemeProvider; + }, + httpAuthSchemeProvider() { + return _httpAuthSchemeProvider; + }, + setCredentials(credentials) { + _credentials = credentials; + }, + credentials() { + return _credentials; + }, + }; +}; +export const resolveHttpAuthRuntimeConfig = (config) => { + return { + httpAuthSchemes: config.httpAuthSchemes(), + httpAuthSchemeProvider: config.httpAuthSchemeProvider(), + credentials: config.credentials(), + }; +}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/auth/httpAuthSchemeProvider.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/auth/httpAuthSchemeProvider.js new file mode 100644 index 00000000000..4a7055f0889 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/auth/httpAuthSchemeProvider.js @@ -0,0 +1,44 @@ +import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; +import { getSmithyContext, normalizeProvider, } from "@smithy/util-middleware"; +export const defaultQDeveloperStreamingHttpAuthSchemeParametersProvider = async (config, context, input) => { + return { + operation: getSmithyContext(context).operation, + region: await normalizeProvider(config.region)() || (() => { + throw new Error("expected `region` to be configured for `aws.auth#sigv4`"); + })(), + }; +}; +function createAwsAuthSigv4HttpAuthOption(authParameters) { + return { + schemeId: "aws.auth#sigv4", + signingProperties: { + name: "q", + region: authParameters.region, + }, + propertiesExtractor: (config, context) => ({ + signingProperties: { + config, + context, + }, + }), + }; +} +; +export const defaultQDeveloperStreamingHttpAuthSchemeProvider = (authParameters) => { + const options = []; + switch (authParameters.operation) { + default: + { + options.push(createAwsAuthSigv4HttpAuthOption(authParameters)); + } + ; + } + ; + return options; +}; +export const resolveHttpAuthSchemeConfig = (config) => { + const config_0 = resolveAwsSdkSigV4Config(config); + return { + ...config_0, + }; +}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/GenerateCodeFromCommandsCommand.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/GenerateCodeFromCommandsCommand.js new file mode 100644 index 00000000000..ab3820127ce --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/GenerateCodeFromCommandsCommand.js @@ -0,0 +1,22 @@ +import { GenerateCodeFromCommandsRequestFilterSensitiveLog, GenerateCodeFromCommandsResponseFilterSensitiveLog, } from "../models/models_0"; +import { de_GenerateCodeFromCommandsCommand, se_GenerateCodeFromCommandsCommand, } from "../protocols/Aws_json1_0"; +import { getSerdePlugin } from "@smithy/middleware-serde"; +import { Command as $Command } from "@smithy/smithy-client"; +export { $Command }; +export class GenerateCodeFromCommandsCommand extends $Command.classBuilder() + .m(function (Command, cs, config, o) { + return [ + getSerdePlugin(config, this.serialize, this.deserialize), + ]; +}) + .s("AmazonQDeveloperStreamingService", "GenerateCodeFromCommands", { + eventStream: { + output: true, + }, +}) + .n("QDeveloperStreamingClient", "GenerateCodeFromCommandsCommand") + .f(GenerateCodeFromCommandsRequestFilterSensitiveLog, GenerateCodeFromCommandsResponseFilterSensitiveLog) + .ser(se_GenerateCodeFromCommandsCommand) + .de(de_GenerateCodeFromCommandsCommand) + .build() { +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/SendMessageCommand.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/SendMessageCommand.js new file mode 100644 index 00000000000..0c8a1a62107 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/SendMessageCommand.js @@ -0,0 +1,22 @@ +import { SendMessageRequestFilterSensitiveLog, SendMessageResponseFilterSensitiveLog, } from "../models/models_0"; +import { de_SendMessageCommand, se_SendMessageCommand, } from "../protocols/Aws_json1_0"; +import { getSerdePlugin } from "@smithy/middleware-serde"; +import { Command as $Command } from "@smithy/smithy-client"; +export { $Command }; +export class SendMessageCommand extends $Command.classBuilder() + .m(function (Command, cs, config, o) { + return [ + getSerdePlugin(config, this.serialize, this.deserialize), + ]; +}) + .s("AmazonQDeveloperStreamingService", "SendMessage", { + eventStream: { + output: true, + }, +}) + .n("QDeveloperStreamingClient", "SendMessageCommand") + .f(SendMessageRequestFilterSensitiveLog, SendMessageResponseFilterSensitiveLog) + .ser(se_SendMessageCommand) + .de(de_SendMessageCommand) + .build() { +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/index.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/index.js new file mode 100644 index 00000000000..daae8549029 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/index.js @@ -0,0 +1,2 @@ +export * from "./GenerateCodeFromCommandsCommand"; +export * from "./SendMessageCommand"; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/endpoints.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/endpoints.js new file mode 100644 index 00000000000..e11356f0b77 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/endpoints.js @@ -0,0 +1,205 @@ +import { getRegionInfo, } from "@smithy/config-resolver"; +const regionHash = {}; +const partitionHash = { + "aws": { + regions: [ + "af-south-1", + "ap-east-1", + "ap-northeast-1", + "ap-northeast-2", + "ap-northeast-3", + "ap-south-1", + "ap-south-2", + "ap-southeast-1", + "ap-southeast-2", + "ap-southeast-3", + "ap-southeast-4", + "ap-southeast-5", + "ca-central-1", + "ca-west-1", + "eu-central-1", + "eu-central-2", + "eu-north-1", + "eu-south-1", + "eu-south-2", + "eu-west-1", + "eu-west-2", + "eu-west-3", + "il-central-1", + "me-central-1", + "me-south-1", + "sa-east-1", + "us-east-1", + "us-east-2", + "us-west-1", + "us-west-2", + ], + regionRegex: "^(us|eu|ap|sa|ca|me|af|il|mx)\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.amazonaws.com", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.amazonaws.com", + "tags": [ + "fips" + ] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.api.aws", + "tags": [ + "dualstack", + "fips" + ] + }, + { + "hostname": "amazonqdeveloperstreamingservice.{region}.api.aws", + "tags": [ + "dualstack" + ] + } + ], + }, + "aws-cn": { + regions: [ + "cn-north-1", + "cn-northwest-1", + ], + regionRegex: "^cn\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.amazonaws.com.cn", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.amazonaws.com.cn", + "tags": [ + "fips" + ] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.api.amazonwebservices.com.cn", + "tags": [ + "dualstack", + "fips" + ] + }, + { + "hostname": "amazonqdeveloperstreamingservice.{region}.api.amazonwebservices.com.cn", + "tags": [ + "dualstack" + ] + } + ], + }, + "aws-iso": { + regions: [ + "us-iso-east-1", + "us-iso-west-1", + ], + regionRegex: "^us\\-iso\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.c2s.ic.gov", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.c2s.ic.gov", + "tags": [ + "fips" + ] + } + ], + }, + "aws-iso-b": { + regions: [ + "us-isob-east-1", + ], + regionRegex: "^us\\-isob\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.sc2s.sgov.gov", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.sc2s.sgov.gov", + "tags": [ + "fips" + ] + } + ], + }, + "aws-iso-e": { + regions: [ + "eu-isoe-west-1", + ], + regionRegex: "^eu\\-isoe\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.cloud.adc-e.uk", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.cloud.adc-e.uk", + "tags": [ + "fips" + ] + } + ], + }, + "aws-iso-f": { + regions: [], + regionRegex: "^us\\-isof\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.csp.hci.ic.gov", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.csp.hci.ic.gov", + "tags": [ + "fips" + ] + } + ], + }, + "aws-us-gov": { + regions: [ + "us-gov-east-1", + "us-gov-west-1", + ], + regionRegex: "^us\\-gov\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.amazonaws.com", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.amazonaws.com", + "tags": [ + "fips" + ] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.api.aws", + "tags": [ + "dualstack", + "fips" + ] + }, + { + "hostname": "amazonqdeveloperstreamingservice.{region}.api.aws", + "tags": [ + "dualstack" + ] + } + ], + }, +}; +export const defaultRegionInfoProvider = async (region, options) => getRegionInfo(region, { + ...options, + signingService: "q", + regionHash, + partitionHash, +}); diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/extensionConfiguration.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/extensionConfiguration.js new file mode 100644 index 00000000000..cb0ff5c3b54 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/extensionConfiguration.js @@ -0,0 +1 @@ +export {}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/index.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/index.js new file mode 100644 index 00000000000..07ff397e5d0 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/index.js @@ -0,0 +1,5 @@ +export * from "./QDeveloperStreamingClient"; +export * from "./QDeveloperStreaming"; +export * from "./commands"; +export * from "./models"; +export { QDeveloperStreamingServiceException } from "./models/QDeveloperStreamingServiceException"; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/QDeveloperStreamingServiceException.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/QDeveloperStreamingServiceException.js new file mode 100644 index 00000000000..37ee4ee2bbf --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/QDeveloperStreamingServiceException.js @@ -0,0 +1,8 @@ +import { ServiceException as __ServiceException, } from "@smithy/smithy-client"; +export { __ServiceException }; +export class QDeveloperStreamingServiceException extends __ServiceException { + constructor(options) { + super(options); + Object.setPrototypeOf(this, QDeveloperStreamingServiceException.prototype); + } +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/index.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/index.js new file mode 100644 index 00000000000..09c5d6e09b8 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/index.js @@ -0,0 +1 @@ +export * from "./models_0"; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/models_0.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/models_0.js new file mode 100644 index 00000000000..4df61947612 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/models_0.js @@ -0,0 +1,788 @@ +import { QDeveloperStreamingServiceException as __BaseException } from "./QDeveloperStreamingServiceException"; +import { SENSITIVE_STRING, } from "@smithy/smithy-client"; +export const AccessDeniedExceptionReason = { + UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS: "UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS", +}; +export class AccessDeniedException extends __BaseException { + constructor(opts) { + super({ + name: "AccessDeniedException", + $fault: "client", + ...opts + }); + this.name = "AccessDeniedException"; + this.$fault = "client"; + Object.setPrototypeOf(this, AccessDeniedException.prototype); + this.reason = opts.reason; + } +} +export class InternalServerException extends __BaseException { + constructor(opts) { + super({ + name: "InternalServerException", + $fault: "server", + ...opts + }); + this.name = "InternalServerException"; + this.$fault = "server"; + this.$retryable = {}; + Object.setPrototypeOf(this, InternalServerException.prototype); + } +} +export class ResourceNotFoundException extends __BaseException { + constructor(opts) { + super({ + name: "ResourceNotFoundException", + $fault: "client", + ...opts + }); + this.name = "ResourceNotFoundException"; + this.$fault = "client"; + Object.setPrototypeOf(this, ResourceNotFoundException.prototype); + } +} +export class ThrottlingException extends __BaseException { + constructor(opts) { + super({ + name: "ThrottlingException", + $fault: "client", + ...opts + }); + this.name = "ThrottlingException"; + this.$fault = "client"; + this.$retryable = { + throttling: true, + }; + Object.setPrototypeOf(this, ThrottlingException.prototype); + } +} +export const ValidationExceptionReason = { + CONTENT_LENGTH_EXCEEDS_THRESHOLD: "CONTENT_LENGTH_EXCEEDS_THRESHOLD", + INVALID_CONVERSATION_ID: "INVALID_CONVERSATION_ID", + INVALID_KMS_GRANT: "INVALID_KMS_GRANT", +}; +export class ValidationException extends __BaseException { + constructor(opts) { + super({ + name: "ValidationException", + $fault: "client", + ...opts + }); + this.name = "ValidationException"; + this.$fault = "client"; + Object.setPrototypeOf(this, ValidationException.prototype); + this.reason = opts.reason; + } +} +export const AppStudioStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.namespace && { namespace: SENSITIVE_STRING + }), + ...(obj.propertyName && { propertyName: SENSITIVE_STRING + }), + ...(obj.propertyValue && { propertyValue: SENSITIVE_STRING + }), + ...(obj.propertyContext && { propertyContext: SENSITIVE_STRING + }), +}); +export const AssistantResponseEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: SENSITIVE_STRING + }), +}); +export const UserIntent = { + APPLY_COMMON_BEST_PRACTICES: "APPLY_COMMON_BEST_PRACTICES", + CITE_SOURCES: "CITE_SOURCES", + CODE_GENERATION: "CODE_GENERATION", + EXPLAIN_CODE_SELECTION: "EXPLAIN_CODE_SELECTION", + EXPLAIN_LINE_BY_LINE: "EXPLAIN_LINE_BY_LINE", + GENERATE_CLOUDFORMATION_TEMPLATE: "GENERATE_CLOUDFORMATION_TEMPLATE", + GENERATE_UNIT_TESTS: "GENERATE_UNIT_TESTS", + IMPROVE_CODE: "IMPROVE_CODE", + SHOW_EXAMPLES: "SHOW_EXAMPLES", + SUGGEST_ALTERNATE_IMPLEMENTATION: "SUGGEST_ALTERNATE_IMPLEMENTATION", +}; +export const FollowupPromptFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: SENSITIVE_STRING + }), +}); +export const SupplementaryWebLinkFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.url && { url: SENSITIVE_STRING + }), + ...(obj.title && { title: SENSITIVE_STRING + }), + ...(obj.snippet && { snippet: SENSITIVE_STRING + }), +}); +export const AssistantResponseMessageFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: SENSITIVE_STRING + }), + ...(obj.supplementaryWebLinks && { supplementaryWebLinks: obj.supplementaryWebLinks.map(item => SupplementaryWebLinkFilterSensitiveLog(item)) + }), + ...(obj.followupPrompt && { followupPrompt: FollowupPromptFilterSensitiveLog(obj.followupPrompt) + }), +}); +export const ConflictExceptionReason = { + CUSTOMER_KMS_KEY_DISABLED: "CUSTOMER_KMS_KEY_DISABLED", + CUSTOMER_KMS_KEY_INVALID_KEY_POLICY: "CUSTOMER_KMS_KEY_INVALID_KEY_POLICY", + MISMATCHED_KMS_KEY: "MISMATCHED_KMS_KEY", +}; +export class ConflictException extends __BaseException { + constructor(opts) { + super({ + name: "ConflictException", + $fault: "client", + ...opts + }); + this.name = "ConflictException"; + this.$fault = "client"; + Object.setPrototypeOf(this, ConflictException.prototype); + this.reason = opts.reason; + } +} +export const ConsoleStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.consoleUrl && { consoleUrl: SENSITIVE_STRING + }), + ...(obj.taskName && { taskName: SENSITIVE_STRING + }), +}); +export const DiagnosticSeverity = { + ERROR: "ERROR", + HINT: "HINT", + INFORMATION: "INFORMATION", + WARNING: "WARNING", +}; +export const RuntimeDiagnosticFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.source && { source: SENSITIVE_STRING + }), + ...(obj.message && { message: SENSITIVE_STRING + }), +}); +export const SymbolType = { + DECLARATION: "DECLARATION", + USAGE: "USAGE", +}; +export const TextDocumentFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.relativeFilePath && { relativeFilePath: SENSITIVE_STRING + }), + ...(obj.text && { text: SENSITIVE_STRING + }), +}); +export const TextDocumentDiagnosticFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.document && { document: TextDocumentFilterSensitiveLog(obj.document) + }), + ...(obj.source && { source: SENSITIVE_STRING + }), + ...(obj.message && { message: SENSITIVE_STRING + }), +}); +export var Diagnostic; +(function (Diagnostic) { + Diagnostic.visit = (value, visitor) => { + if (value.textDocumentDiagnostic !== undefined) + return visitor.textDocumentDiagnostic(value.textDocumentDiagnostic); + if (value.runtimeDiagnostic !== undefined) + return visitor.runtimeDiagnostic(value.runtimeDiagnostic); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(Diagnostic || (Diagnostic = {})); +export const DiagnosticFilterSensitiveLog = (obj) => { + if (obj.textDocumentDiagnostic !== undefined) + return { textDocumentDiagnostic: TextDocumentDiagnosticFilterSensitiveLog(obj.textDocumentDiagnostic) + }; + if (obj.runtimeDiagnostic !== undefined) + return { runtimeDiagnostic: RuntimeDiagnosticFilterSensitiveLog(obj.runtimeDiagnostic) + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +export var CursorState; +(function (CursorState) { + CursorState.visit = (value, visitor) => { + if (value.position !== undefined) + return visitor.position(value.position); + if (value.range !== undefined) + return visitor.range(value.range); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(CursorState || (CursorState = {})); +export const RelevantTextDocumentFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.relativeFilePath && { relativeFilePath: SENSITIVE_STRING + }), + ...(obj.text && { text: SENSITIVE_STRING + }), +}); +export const EditorStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.document && { document: TextDocumentFilterSensitiveLog(obj.document) + }), + ...(obj.cursorState && { cursorState: obj.cursorState + }), + ...(obj.relevantDocuments && { relevantDocuments: obj.relevantDocuments.map(item => RelevantTextDocumentFilterSensitiveLog(item)) + }), +}); +export const EnvironmentVariableFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.key && { key: SENSITIVE_STRING + }), + ...(obj.value && { value: SENSITIVE_STRING + }), +}); +export const EnvStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.currentWorkingDirectory && { currentWorkingDirectory: SENSITIVE_STRING + }), + ...(obj.environmentVariables && { environmentVariables: obj.environmentVariables.map(item => EnvironmentVariableFilterSensitiveLog(item)) + }), +}); +export const GitStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.status && { status: SENSITIVE_STRING + }), +}); +export const ShellHistoryEntryFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.command && { command: SENSITIVE_STRING + }), + ...(obj.directory && { directory: SENSITIVE_STRING + }), + ...(obj.stdout && { stdout: SENSITIVE_STRING + }), + ...(obj.stderr && { stderr: SENSITIVE_STRING + }), +}); +export const ShellStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.shellHistory && { shellHistory: obj.shellHistory.map(item => ShellHistoryEntryFilterSensitiveLog(item)) + }), +}); +export const UserInputMessageContextFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.editorState && { editorState: EditorStateFilterSensitiveLog(obj.editorState) + }), + ...(obj.shellState && { shellState: ShellStateFilterSensitiveLog(obj.shellState) + }), + ...(obj.gitState && { gitState: GitStateFilterSensitiveLog(obj.gitState) + }), + ...(obj.envState && { envState: EnvStateFilterSensitiveLog(obj.envState) + }), + ...(obj.appStudioContext && { appStudioContext: AppStudioStateFilterSensitiveLog(obj.appStudioContext) + }), + ...(obj.diagnostic && { diagnostic: DiagnosticFilterSensitiveLog(obj.diagnostic) + }), + ...(obj.consoleState && { consoleState: ConsoleStateFilterSensitiveLog(obj.consoleState) + }), +}); +export const UserInputMessageFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: SENSITIVE_STRING + }), + ...(obj.userInputMessageContext && { userInputMessageContext: UserInputMessageContextFilterSensitiveLog(obj.userInputMessageContext) + }), +}); +export var ChatMessage; +(function (ChatMessage) { + ChatMessage.visit = (value, visitor) => { + if (value.userInputMessage !== undefined) + return visitor.userInputMessage(value.userInputMessage); + if (value.assistantResponseMessage !== undefined) + return visitor.assistantResponseMessage(value.assistantResponseMessage); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(ChatMessage || (ChatMessage = {})); +export const ChatMessageFilterSensitiveLog = (obj) => { + if (obj.userInputMessage !== undefined) + return { userInputMessage: UserInputMessageFilterSensitiveLog(obj.userInputMessage) + }; + if (obj.assistantResponseMessage !== undefined) + return { assistantResponseMessage: AssistantResponseMessageFilterSensitiveLog(obj.assistantResponseMessage) + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +export const CodeEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: SENSITIVE_STRING + }), +}); +export const FollowupPromptEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.followupPrompt && { followupPrompt: FollowupPromptFilterSensitiveLog(obj.followupPrompt) + }), +}); +export const IntentType = { + GLUE_SENSEI: "GLUE_SENSEI", + RESOURCE_DATA: "RESOURCE_DATA", + SUPPORT: "SUPPORT", +}; +export var IntentDataType; +(function (IntentDataType) { + IntentDataType.visit = (value, visitor) => { + if (value.string !== undefined) + return visitor.string(value.string); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(IntentDataType || (IntentDataType = {})); +export const IntentsEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.intents && { intents: SENSITIVE_STRING + }), +}); +export const TextFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: SENSITIVE_STRING + }), +}); +export const AlertComponentFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.text && { text: TextFilterSensitiveLog(obj.text) + }), +}); +export const AlertType = { + ERROR: "ERROR", + INFO: "INFO", + WARNING: "WARNING", +}; +export const AlertFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: obj.content.map(item => AlertComponentFilterSensitiveLog(item)) + }), +}); +export const InfrastructureUpdateTransitionFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.currentState && { currentState: SENSITIVE_STRING + }), + ...(obj.nextState && { nextState: SENSITIVE_STRING + }), +}); +export const InfrastructureUpdateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.transition && { transition: InfrastructureUpdateTransitionFilterSensitiveLog(obj.transition) + }), +}); +export const StepComponentFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.text && { text: TextFilterSensitiveLog(obj.text) + }), +}); +export const StepState = { + FAILED: "FAILED", + IN_PROGRESS: "IN_PROGRESS", + LOADING: "LOADING", + PAUSED: "PAUSED", + PENDING: "PENDING", + STOPPED: "STOPPED", + SUCCEEDED: "SUCCEEDED", +}; +export const StepFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.label && { label: SENSITIVE_STRING + }), + ...(obj.content && { content: obj.content.map(item => StepComponentFilterSensitiveLog(item)) + }), +}); +export const ProgressComponentFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.step && { step: StepFilterSensitiveLog(obj.step) + }), +}); +export const ProgressFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: obj.content.map(item => ProgressComponentFilterSensitiveLog(item)) + }), +}); +export const ResourceFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.title && { title: SENSITIVE_STRING + }), + ...(obj.link && { link: SENSITIVE_STRING + }), + ...(obj.description && { description: SENSITIVE_STRING + }), + ...(obj.type && { type: SENSITIVE_STRING + }), + ...(obj.ARN && { ARN: SENSITIVE_STRING + }), + ...(obj.resourceJsonString && { resourceJsonString: SENSITIVE_STRING + }), +}); +export const CloudWatchTroubleshootingLinkFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.label && { label: SENSITIVE_STRING + }), + ...(obj.investigationPayload && { investigationPayload: SENSITIVE_STRING + }), + ...(obj.defaultText && { defaultText: SENSITIVE_STRING + }), +}); +export var ModuleLink; +(function (ModuleLink) { + ModuleLink.visit = (value, visitor) => { + if (value.cloudWatchTroubleshootingLink !== undefined) + return visitor.cloudWatchTroubleshootingLink(value.cloudWatchTroubleshootingLink); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(ModuleLink || (ModuleLink = {})); +export const ModuleLinkFilterSensitiveLog = (obj) => { + if (obj.cloudWatchTroubleshootingLink !== undefined) + return { cloudWatchTroubleshootingLink: CloudWatchTroubleshootingLinkFilterSensitiveLog(obj.cloudWatchTroubleshootingLink) + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +export const WebLinkFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.label && { label: SENSITIVE_STRING + }), + ...(obj.url && { url: SENSITIVE_STRING + }), +}); +export var Action; +(function (Action) { + Action.visit = (value, visitor) => { + if (value.webLink !== undefined) + return visitor.webLink(value.webLink); + if (value.moduleLink !== undefined) + return visitor.moduleLink(value.moduleLink); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(Action || (Action = {})); +export const ActionFilterSensitiveLog = (obj) => { + if (obj.webLink !== undefined) + return { webLink: WebLinkFilterSensitiveLog(obj.webLink) + }; + if (obj.moduleLink !== undefined) + return { moduleLink: ModuleLinkFilterSensitiveLog(obj.moduleLink) + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +export const ResourceListFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.action && { action: ActionFilterSensitiveLog(obj.action) + }), + ...(obj.items && { items: obj.items.map(item => ResourceFilterSensitiveLog(item)) + }), +}); +export var SectionComponent; +(function (SectionComponent) { + SectionComponent.visit = (value, visitor) => { + if (value.text !== undefined) + return visitor.text(value.text); + if (value.alert !== undefined) + return visitor.alert(value.alert); + if (value.resource !== undefined) + return visitor.resource(value.resource); + if (value.resourceList !== undefined) + return visitor.resourceList(value.resourceList); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(SectionComponent || (SectionComponent = {})); +export const SectionComponentFilterSensitiveLog = (obj) => { + if (obj.text !== undefined) + return { text: TextFilterSensitiveLog(obj.text) + }; + if (obj.alert !== undefined) + return { alert: AlertFilterSensitiveLog(obj.alert) + }; + if (obj.resource !== undefined) + return { resource: ResourceFilterSensitiveLog(obj.resource) + }; + if (obj.resourceList !== undefined) + return { resourceList: ResourceListFilterSensitiveLog(obj.resourceList) + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +export const SectionFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.title && { title: SENSITIVE_STRING + }), + ...(obj.content && { content: obj.content.map(item => SectionComponentFilterSensitiveLog(item)) + }), +}); +export const TaskActionConfirmationFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: SENSITIVE_STRING + }), +}); +export const TaskActionNoteType = { + INFO: "INFO", + WARNING: "WARNING", +}; +export const TaskActionNoteFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: SENSITIVE_STRING + }), +}); +export const TaskActionFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.label && { label: SENSITIVE_STRING + }), + ...(obj.note && { note: TaskActionNoteFilterSensitiveLog(obj.note) + }), + ...(obj.payload && { payload: SENSITIVE_STRING + }), + ...(obj.confirmation && { confirmation: TaskActionConfirmationFilterSensitiveLog(obj.confirmation) + }), +}); +export const TaskComponentFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.text && { text: TextFilterSensitiveLog(obj.text) + }), + ...(obj.infrastructureUpdate && { infrastructureUpdate: InfrastructureUpdateFilterSensitiveLog(obj.infrastructureUpdate) + }), + ...(obj.alert && { alert: AlertFilterSensitiveLog(obj.alert) + }), + ...(obj.progress && { progress: ProgressFilterSensitiveLog(obj.progress) + }), +}); +export const TaskOverviewFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.label && { label: SENSITIVE_STRING + }), + ...(obj.description && { description: SENSITIVE_STRING + }), +}); +export const TaskDetailsFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.overview && { overview: TaskOverviewFilterSensitiveLog(obj.overview) + }), + ...(obj.content && { content: obj.content.map(item => TaskComponentFilterSensitiveLog(item)) + }), + ...(obj.actions && { actions: obj.actions.map(item => TaskActionFilterSensitiveLog(item)) + }), +}); +export const InteractionComponentFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.text && { text: TextFilterSensitiveLog(obj.text) + }), + ...(obj.alert && { alert: AlertFilterSensitiveLog(obj.alert) + }), + ...(obj.infrastructureUpdate && { infrastructureUpdate: InfrastructureUpdateFilterSensitiveLog(obj.infrastructureUpdate) + }), + ...(obj.progress && { progress: ProgressFilterSensitiveLog(obj.progress) + }), + ...(obj.step && { step: StepFilterSensitiveLog(obj.step) + }), + ...(obj.taskDetails && { taskDetails: TaskDetailsFilterSensitiveLog(obj.taskDetails) + }), + ...(obj.section && { section: SectionFilterSensitiveLog(obj.section) + }), + ...(obj.resource && { resource: ResourceFilterSensitiveLog(obj.resource) + }), + ...(obj.resourceList && { resourceList: ResourceListFilterSensitiveLog(obj.resourceList) + }), +}); +export const InteractionComponentEntryFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.interactionComponent && { interactionComponent: InteractionComponentFilterSensitiveLog(obj.interactionComponent) + }), +}); +export const InteractionComponentsEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.interactionComponentEntries && { interactionComponentEntries: obj.interactionComponentEntries.map(item => InteractionComponentEntryFilterSensitiveLog(item)) + }), +}); +export const InvalidStateReason = { + INVALID_TASK_ASSIST_PLAN: "INVALID_TASK_ASSIST_PLAN", +}; +export const SupplementaryWebLinksEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.supplementaryWebLinks && { supplementaryWebLinks: obj.supplementaryWebLinks.map(item => SupplementaryWebLinkFilterSensitiveLog(item)) + }), +}); +export var ChatResponseStream; +(function (ChatResponseStream) { + ChatResponseStream.visit = (value, visitor) => { + if (value.messageMetadataEvent !== undefined) + return visitor.messageMetadataEvent(value.messageMetadataEvent); + if (value.assistantResponseEvent !== undefined) + return visitor.assistantResponseEvent(value.assistantResponseEvent); + if (value.dryRunSucceedEvent !== undefined) + return visitor.dryRunSucceedEvent(value.dryRunSucceedEvent); + if (value.codeReferenceEvent !== undefined) + return visitor.codeReferenceEvent(value.codeReferenceEvent); + if (value.supplementaryWebLinksEvent !== undefined) + return visitor.supplementaryWebLinksEvent(value.supplementaryWebLinksEvent); + if (value.followupPromptEvent !== undefined) + return visitor.followupPromptEvent(value.followupPromptEvent); + if (value.codeEvent !== undefined) + return visitor.codeEvent(value.codeEvent); + if (value.intentsEvent !== undefined) + return visitor.intentsEvent(value.intentsEvent); + if (value.interactionComponentsEvent !== undefined) + return visitor.interactionComponentsEvent(value.interactionComponentsEvent); + if (value.invalidStateEvent !== undefined) + return visitor.invalidStateEvent(value.invalidStateEvent); + if (value.error !== undefined) + return visitor.error(value.error); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(ChatResponseStream || (ChatResponseStream = {})); +export const ChatResponseStreamFilterSensitiveLog = (obj) => { + if (obj.messageMetadataEvent !== undefined) + return { messageMetadataEvent: obj.messageMetadataEvent + }; + if (obj.assistantResponseEvent !== undefined) + return { assistantResponseEvent: AssistantResponseEventFilterSensitiveLog(obj.assistantResponseEvent) + }; + if (obj.dryRunSucceedEvent !== undefined) + return { dryRunSucceedEvent: obj.dryRunSucceedEvent + }; + if (obj.codeReferenceEvent !== undefined) + return { codeReferenceEvent: obj.codeReferenceEvent + }; + if (obj.supplementaryWebLinksEvent !== undefined) + return { supplementaryWebLinksEvent: SupplementaryWebLinksEventFilterSensitiveLog(obj.supplementaryWebLinksEvent) + }; + if (obj.followupPromptEvent !== undefined) + return { followupPromptEvent: FollowupPromptEventFilterSensitiveLog(obj.followupPromptEvent) + }; + if (obj.codeEvent !== undefined) + return { codeEvent: CodeEventFilterSensitiveLog(obj.codeEvent) + }; + if (obj.intentsEvent !== undefined) + return { intentsEvent: IntentsEventFilterSensitiveLog(obj.intentsEvent) + }; + if (obj.interactionComponentsEvent !== undefined) + return { interactionComponentsEvent: InteractionComponentsEventFilterSensitiveLog(obj.interactionComponentsEvent) + }; + if (obj.invalidStateEvent !== undefined) + return { invalidStateEvent: obj.invalidStateEvent + }; + if (obj.error !== undefined) + return { error: obj.error + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +export const ChatTriggerType = { + DIAGNOSTIC: "DIAGNOSTIC", + INLINE_CHAT: "INLINE_CHAT", + MANUAL: "MANUAL", +}; +export var CommandInput; +(function (CommandInput) { + CommandInput.visit = (value, visitor) => { + if (value.commandsList !== undefined) + return visitor.commandsList(value.commandsList); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(CommandInput || (CommandInput = {})); +export const CommandInputFilterSensitiveLog = (obj) => { + if (obj.commandsList !== undefined) + return { commandsList: SENSITIVE_STRING + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +export const ConversationStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.history && { history: obj.history.map(item => ChatMessageFilterSensitiveLog(item)) + }), + ...(obj.currentMessage && { currentMessage: ChatMessageFilterSensitiveLog(obj.currentMessage) + }), +}); +export class DryRunOperationException extends __BaseException { + constructor(opts) { + super({ + name: "DryRunOperationException", + $fault: "client", + ...opts + }); + this.name = "DryRunOperationException"; + this.$fault = "client"; + Object.setPrototypeOf(this, DryRunOperationException.prototype); + this.responseCode = opts.responseCode; + } +} +export const OutputFormat = { + JAVA_CDK: "java/cdk", + JSON_CFN: "json/cfn", + PYTHON_CDK: "python/cdk", + TYPESCRIPT_CDK: "typescript/cdk", + YAML_CFN: "yaml/cfn", +}; +export class ServiceQuotaExceededException extends __BaseException { + constructor(opts) { + super({ + name: "ServiceQuotaExceededException", + $fault: "client", + ...opts + }); + this.name = "ServiceQuotaExceededException"; + this.$fault = "client"; + Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype); + } +} +export const Origin = { + CHATBOT: "CHATBOT", + CONSOLE: "CONSOLE", + DOCUMENTATION: "DOCUMENTATION", + IDE: "IDE", + MARKETING: "MARKETING", + MD: "MD", + MOBILE: "MOBILE", + SERVICE_INTERNAL: "SERVICE_INTERNAL", + UNIFIED_SEARCH: "UNIFIED_SEARCH", + UNKNOWN: "UNKNOWN", +}; +export const SendMessageRequestFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.conversationState && { conversationState: ConversationStateFilterSensitiveLog(obj.conversationState) + }), +}); +export const SendMessageResponseFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.sendMessageResponse && { sendMessageResponse: 'STREAMING_CONTENT' + }), +}); +export const GenerateCodeFromCommandsRequestFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.commands && { commands: CommandInputFilterSensitiveLog(obj.commands) + }), +}); +export var GenerateCodeFromCommandsResponseStream; +(function (GenerateCodeFromCommandsResponseStream) { + GenerateCodeFromCommandsResponseStream.visit = (value, visitor) => { + if (value.codeEvent !== undefined) + return visitor.codeEvent(value.codeEvent); + if (value.Error !== undefined) + return visitor.Error(value.Error); + if (value.QuotaLevelExceededError !== undefined) + return visitor.QuotaLevelExceededError(value.QuotaLevelExceededError); + if (value.ValidationError !== undefined) + return visitor.ValidationError(value.ValidationError); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(GenerateCodeFromCommandsResponseStream || (GenerateCodeFromCommandsResponseStream = {})); +export const GenerateCodeFromCommandsResponseStreamFilterSensitiveLog = (obj) => { + if (obj.codeEvent !== undefined) + return { codeEvent: CodeEventFilterSensitiveLog(obj.codeEvent) + }; + if (obj.Error !== undefined) + return { Error: obj.Error + }; + if (obj.QuotaLevelExceededError !== undefined) + return { QuotaLevelExceededError: obj.QuotaLevelExceededError + }; + if (obj.ValidationError !== undefined) + return { ValidationError: obj.ValidationError + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +export const GenerateCodeFromCommandsResponseFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.generatedCodeFromCommandsResponse && { generatedCodeFromCommandsResponse: 'STREAMING_CONTENT' + }), +}); diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/protocols/Aws_json1_0.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/protocols/Aws_json1_0.js new file mode 100644 index 00000000000..f9c727f8652 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/protocols/Aws_json1_0.js @@ -0,0 +1,390 @@ +import { QDeveloperStreamingServiceException as __BaseException } from "../models/QDeveloperStreamingServiceException"; +import { AccessDeniedException, ConflictException, DryRunOperationException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/models_0"; +import { loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody, } from "@aws-sdk/core"; +import { HttpRequest as __HttpRequest, } from "@smithy/protocol-http"; +import { decorateServiceException as __decorateServiceException, expectString as __expectString, _json, collectBody, take, withBaseException, } from "@smithy/smithy-client"; +export const se_GenerateCodeFromCommandsCommand = async (input, context) => { + const headers = sharedHeaders("GenerateCodeFromCommands"); + let body; + body = JSON.stringify(_json(input)); + return buildHttpRpcRequest(context, headers, "/", undefined, body); +}; +export const se_SendMessageCommand = async (input, context) => { + const headers = sharedHeaders("SendMessage"); + let body; + body = JSON.stringify(se_SendMessageRequest(input, context)); + return buildHttpRpcRequest(context, headers, "/", undefined, body); +}; +export const de_GenerateCodeFromCommandsCommand = async (output, context) => { + if (output.statusCode >= 300) { + return de_CommandError(output, context); + } + const contents = { generatedCodeFromCommandsResponse: de_GenerateCodeFromCommandsResponseStream(output.body, context) }; + const response = { + $metadata: deserializeMetadata(output), + ...contents, + }; + return response; +}; +export const de_SendMessageCommand = async (output, context) => { + if (output.statusCode >= 300) { + return de_CommandError(output, context); + } + const contents = { sendMessageResponse: de_ChatResponseStream(output.body, context) }; + const response = { + $metadata: deserializeMetadata(output), + ...contents, + }; + return response; +}; +const de_CommandError = async (output, context) => { + const parsedOutput = { + ...output, + body: await parseErrorBody(output.body, context) + }; + const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); + switch (errorCode) { + case "AccessDeniedException": + case "com.amazon.aws.codewhisperer#AccessDeniedException": + throw await de_AccessDeniedExceptionRes(parsedOutput, context); + case "InternalServerException": + case "com.amazon.aws.codewhisperer#InternalServerException": + throw await de_InternalServerExceptionRes(parsedOutput, context); + case "ThrottlingException": + case "com.amazon.aws.codewhisperer#ThrottlingException": + throw await de_ThrottlingExceptionRes(parsedOutput, context); + case "ValidationException": + case "com.amazon.aws.codewhisperer#ValidationException": + throw await de_ValidationExceptionRes(parsedOutput, context); + case "ConflictException": + case "com.amazon.aws.codewhisperer#ConflictException": + throw await de_ConflictExceptionRes(parsedOutput, context); + case "DryRunOperationException": + case "com.amazon.aws.codewhisperer#DryRunOperationException": + throw await de_DryRunOperationExceptionRes(parsedOutput, context); + case "ResourceNotFoundException": + case "com.amazon.aws.codewhisperer#ResourceNotFoundException": + throw await de_ResourceNotFoundExceptionRes(parsedOutput, context); + case "ServiceQuotaExceededException": + case "com.amazon.aws.codewhisperer#ServiceQuotaExceededException": + throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context); + default: + const parsedBody = parsedOutput.body; + return throwDefaultError({ + output, + parsedBody, + errorCode + }); + } +}; +const de_AccessDeniedExceptionRes = async (parsedOutput, context) => { + const body = parsedOutput.body; + const deserialized = _json(body); + const exception = new AccessDeniedException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return __decorateServiceException(exception, body); +}; +const de_ConflictExceptionRes = async (parsedOutput, context) => { + const body = parsedOutput.body; + const deserialized = _json(body); + const exception = new ConflictException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return __decorateServiceException(exception, body); +}; +const de_DryRunOperationExceptionRes = async (parsedOutput, context) => { + const body = parsedOutput.body; + const deserialized = _json(body); + const exception = new DryRunOperationException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return __decorateServiceException(exception, body); +}; +const de_InternalServerExceptionRes = async (parsedOutput, context) => { + const body = parsedOutput.body; + const deserialized = _json(body); + const exception = new InternalServerException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return __decorateServiceException(exception, body); +}; +const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => { + const body = parsedOutput.body; + const deserialized = _json(body); + const exception = new ResourceNotFoundException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return __decorateServiceException(exception, body); +}; +const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => { + const body = parsedOutput.body; + const deserialized = _json(body); + const exception = new ServiceQuotaExceededException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return __decorateServiceException(exception, body); +}; +const de_ThrottlingExceptionRes = async (parsedOutput, context) => { + const body = parsedOutput.body; + const deserialized = _json(body); + const exception = new ThrottlingException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return __decorateServiceException(exception, body); +}; +const de_ValidationExceptionRes = async (parsedOutput, context) => { + const body = parsedOutput.body; + const deserialized = _json(body); + const exception = new ValidationException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return __decorateServiceException(exception, body); +}; +const de_ChatResponseStream = (output, context) => { + return context.eventStreamMarshaller.deserialize(output, async (event) => { + if (event["messageMetadataEvent"] != null) { + return { + messageMetadataEvent: await de_MessageMetadataEvent_event(event["messageMetadataEvent"], context), + }; + } + if (event["assistantResponseEvent"] != null) { + return { + assistantResponseEvent: await de_AssistantResponseEvent_event(event["assistantResponseEvent"], context), + }; + } + if (event["dryRunSucceedEvent"] != null) { + return { + dryRunSucceedEvent: await de_DryRunSucceedEvent_event(event["dryRunSucceedEvent"], context), + }; + } + if (event["codeReferenceEvent"] != null) { + return { + codeReferenceEvent: await de_CodeReferenceEvent_event(event["codeReferenceEvent"], context), + }; + } + if (event["supplementaryWebLinksEvent"] != null) { + return { + supplementaryWebLinksEvent: await de_SupplementaryWebLinksEvent_event(event["supplementaryWebLinksEvent"], context), + }; + } + if (event["followupPromptEvent"] != null) { + return { + followupPromptEvent: await de_FollowupPromptEvent_event(event["followupPromptEvent"], context), + }; + } + if (event["codeEvent"] != null) { + return { + codeEvent: await de_CodeEvent_event(event["codeEvent"], context), + }; + } + if (event["intentsEvent"] != null) { + return { + intentsEvent: await de_IntentsEvent_event(event["intentsEvent"], context), + }; + } + if (event["interactionComponentsEvent"] != null) { + return { + interactionComponentsEvent: await de_InteractionComponentsEvent_event(event["interactionComponentsEvent"], context), + }; + } + if (event["invalidStateEvent"] != null) { + return { + invalidStateEvent: await de_InvalidStateEvent_event(event["invalidStateEvent"], context), + }; + } + if (event["error"] != null) { + return { + error: await de_InternalServerException_event(event["error"], context), + }; + } + return { $unknown: output }; + }); +}; +const de_GenerateCodeFromCommandsResponseStream = (output, context) => { + return context.eventStreamMarshaller.deserialize(output, async (event) => { + if (event["codeEvent"] != null) { + return { + codeEvent: await de_CodeEvent_event(event["codeEvent"], context), + }; + } + if (event["Error"] != null) { + return { + Error: await de_InternalServerException_event(event["Error"], context), + }; + } + if (event["QuotaLevelExceededError"] != null) { + return { + QuotaLevelExceededError: await de_ServiceQuotaExceededException_event(event["QuotaLevelExceededError"], context), + }; + } + if (event["ValidationError"] != null) { + return { + ValidationError: await de_ValidationException_event(event["ValidationError"], context), + }; + } + return { $unknown: output }; + }); +}; +const de_AssistantResponseEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; +}; +const de_CodeEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; +}; +const de_CodeReferenceEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; +}; +const de_DryRunSucceedEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; +}; +const de_FollowupPromptEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; +}; +const de_IntentsEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; +}; +const de_InteractionComponentsEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, de_InteractionComponentsEvent(data, context)); + return contents; +}; +const de_InternalServerException_event = async (output, context) => { + const parsedOutput = { + ...output, + body: await parseBody(output.body, context) + }; + return de_InternalServerExceptionRes(parsedOutput, context); +}; +const de_InvalidStateEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; +}; +const de_MessageMetadataEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; +}; +const de_ServiceQuotaExceededException_event = async (output, context) => { + const parsedOutput = { + ...output, + body: await parseBody(output.body, context) + }; + return de_ServiceQuotaExceededExceptionRes(parsedOutput, context); +}; +const de_SupplementaryWebLinksEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; +}; +const de_ValidationException_event = async (output, context) => { + const parsedOutput = { + ...output, + body: await parseBody(output.body, context) + }; + return de_ValidationExceptionRes(parsedOutput, context); +}; +const se_SendMessageRequest = (input, context) => { + return take(input, { + 'conversationState': _json, + 'dryRun': [], + 'profileArn': [], + 'source': [], + }); +}; +const de_InteractionComponentEntry = (output, context) => { + return take(output, { + 'interactionComponent': (_) => de_InteractionComponent(_, context), + 'interactionComponentId': __expectString, + }); +}; +const de_InteractionComponentEntryList = (output, context) => { + const retVal = (output || []).filter((e) => e != null).map((entry) => { + return de_InteractionComponentEntry(entry, context); + }); + return retVal; +}; +const de_InteractionComponentsEvent = (output, context) => { + return take(output, { + 'interactionComponentEntries': (_) => de_InteractionComponentEntryList(_, context), + }); +}; +const de_InteractionComponent = (output, context) => { + return take(output, { + 'alert': _json, + 'infrastructureUpdate': _json, + 'progress': _json, + 'resource': _json, + 'resourceList': _json, + 'section': _json, + 'step': _json, + 'suggestions': _json, + 'taskDetails': _json, + 'taskReference': _json, + 'text': _json, + }); +}; +const deserializeMetadata = (output) => ({ + httpStatusCode: output.statusCode, + requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"], + extendedRequestId: output.headers["x-amz-id-2"], + cfId: output.headers["x-amz-cf-id"], +}); +const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then(body => context.utf8Encoder(body)); +const throwDefaultError = withBaseException(__BaseException); +const buildHttpRpcRequest = async (context, headers, path, resolvedHostname, body) => { + const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); + const contents = { + protocol, + hostname, + port, + method: "POST", + path: basePath.endsWith("/") ? basePath.slice(0, -1) + path : basePath + path, + headers, + }; + if (resolvedHostname !== undefined) { + contents.hostname = resolvedHostname; + } + if (body !== undefined) { + contents.body = body; + } + return new __HttpRequest(contents); +}; +function sharedHeaders(operation) { + return { + 'content-type': "application/x-amz-json-1.0", + 'x-amz-target': `AmazonQDeveloperStreamingService.${operation}`, + }; +} +; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.browser.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.browser.js new file mode 100644 index 00000000000..33ea4549e8a --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.browser.js @@ -0,0 +1,35 @@ +import packageInfo from "../package.json"; +import { Sha256 } from "@aws-crypto/sha256-browser"; +import { defaultUserAgent } from "@aws-sdk/util-user-agent-browser"; +import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, } from "@smithy/config-resolver"; +import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-browser"; +import { FetchHttpHandler as RequestHandler, streamCollector, } from "@smithy/fetch-http-handler"; +import { invalidProvider } from "@smithy/invalid-dependency"; +import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE, } from "@smithy/util-retry"; +import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +export const getRuntimeConfig = (config) => { + const defaultsMode = resolveDefaultsModeConfig(config); + const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode); + const clientSharedValues = getSharedRuntimeConfig(config); + return { + ...clientSharedValues, + ...config, + runtime: "browser", + defaultsMode, + bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength, + credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))), + defaultUserAgentProvider: config?.defaultUserAgentProvider ?? defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), + eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventStreamSerdeProvider, + maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS, + region: config?.region ?? invalidProvider("Region is missing"), + requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider), + retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE), + sha256: config?.sha256 ?? Sha256, + streamCollector: config?.streamCollector ?? streamCollector, + useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)), + useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)), + }; +}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.js new file mode 100644 index 00000000000..6767f5f4773 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.js @@ -0,0 +1,41 @@ +import packageInfo from "../package.json"; +import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core"; +import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node"; +import { defaultUserAgent } from "@aws-sdk/util-user-agent-node"; +import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver"; +import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-node"; +import { Hash } from "@smithy/hash-node"; +import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@smithy/middleware-retry"; +import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; +import { NodeHttpHandler as RequestHandler, streamCollector, } from "@smithy/node-http-handler"; +import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; +import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; +import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +export const getRuntimeConfig = (config) => { + emitWarningIfUnsupportedVersion(process.version); + const defaultsMode = resolveDefaultsModeConfig(config); + const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode); + const clientSharedValues = getSharedRuntimeConfig(config); + awsCheckVersion(process.version); + return { + ...clientSharedValues, + ...config, + runtime: "node", + defaultsMode, + bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength, + credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider, + defaultUserAgentProvider: config?.defaultUserAgentProvider ?? defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), + eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventStreamSerdeProvider, + maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS), + region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS), + requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider), + retryMode: config?.retryMode ?? loadNodeConfig({ ...NODE_RETRY_MODE_CONFIG_OPTIONS, default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE, }), + sha256: config?.sha256 ?? Hash.bind(null, "sha256"), + streamCollector: config?.streamCollector ?? streamCollector, + useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS), + useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS), + }; +}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.native.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.native.js new file mode 100644 index 00000000000..0b546952826 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.native.js @@ -0,0 +1,11 @@ +import { Sha256 } from "@aws-crypto/sha256-js"; +import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; +export const getRuntimeConfig = (config) => { + const browserDefaults = getBrowserRuntimeConfig(config); + return { + ...browserDefaults, + ...config, + runtime: "react-native", + sha256: config?.sha256 ?? Sha256, + }; +}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.shared.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.shared.js new file mode 100644 index 00000000000..a5e4f1401b8 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.shared.js @@ -0,0 +1,28 @@ +import { defaultQDeveloperStreamingHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; +import { defaultRegionInfoProvider } from "./endpoints"; +import { AwsSdkSigV4Signer } from "@aws-sdk/core"; +import { NoOpLogger } from "@smithy/smithy-client"; +import { parseUrl } from "@smithy/url-parser"; +import { fromBase64, toBase64, } from "@smithy/util-base64"; +import { fromUtf8, toUtf8, } from "@smithy/util-utf8"; +export const getRuntimeConfig = (config) => { + return { + apiVersion: "2024-06-11", + base64Decoder: config?.base64Decoder ?? fromBase64, + base64Encoder: config?.base64Encoder ?? toBase64, + disableHostPrefix: config?.disableHostPrefix ?? false, + extensions: config?.extensions ?? [], + httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultQDeveloperStreamingHttpAuthSchemeProvider, + httpAuthSchemes: config?.httpAuthSchemes ?? [{ + schemeId: "aws.auth#sigv4", + identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), + signer: new AwsSdkSigV4Signer(), + }], + logger: config?.logger ?? new NoOpLogger(), + regionInfoProvider: config?.regionInfoProvider ?? defaultRegionInfoProvider, + serviceId: config?.serviceId ?? "QDeveloperStreaming", + urlParser: config?.urlParser ?? parseUrl, + utf8Decoder: config?.utf8Decoder ?? fromUtf8, + utf8Encoder: config?.utf8Encoder ?? toUtf8, + }; +}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeExtensions.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeExtensions.js new file mode 100644 index 00000000000..750ec6de711 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeExtensions.js @@ -0,0 +1,21 @@ +import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig, } from "./auth/httpAuthExtensionConfiguration"; +import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, } from "@aws-sdk/region-config-resolver"; +import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, } from "@smithy/protocol-http"; +import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, } from "@smithy/smithy-client"; +const asPartial = (t) => t; +export const resolveRuntimeExtensions = (runtimeConfig, extensions) => { + const extensionConfiguration = { + ...asPartial(getAwsRegionExtensionConfiguration(runtimeConfig)), + ...asPartial(getDefaultExtensionConfiguration(runtimeConfig)), + ...asPartial(getHttpHandlerExtensionConfiguration(runtimeConfig)), + ...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig)), + }; + extensions.forEach(extension => extension.configure(extensionConfiguration)); + return { + ...runtimeConfig, + ...resolveAwsRegionExtensionConfiguration(extensionConfiguration), + ...resolveDefaultRuntimeConfig(extensionConfiguration), + ...resolveHttpHandlerRuntimeConfig(extensionConfiguration), + ...resolveHttpAuthRuntimeConfig(extensionConfiguration), + }; +}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/QDeveloperStreaming.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/QDeveloperStreaming.d.ts new file mode 100644 index 00000000000..34b559bd414 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/QDeveloperStreaming.d.ts @@ -0,0 +1,23 @@ +import { QDeveloperStreamingClient } from "./QDeveloperStreamingClient"; +import { GenerateCodeFromCommandsCommandInput, GenerateCodeFromCommandsCommandOutput } from "./commands/GenerateCodeFromCommandsCommand"; +import { SendMessageCommandInput, SendMessageCommandOutput } from "./commands/SendMessageCommand"; +import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +export interface QDeveloperStreaming { + /** + * @see {@link GenerateCodeFromCommandsCommand} + */ + generateCodeFromCommands(args: GenerateCodeFromCommandsCommandInput, options?: __HttpHandlerOptions): Promise; + generateCodeFromCommands(args: GenerateCodeFromCommandsCommandInput, cb: (err: any, data?: GenerateCodeFromCommandsCommandOutput) => void): void; + generateCodeFromCommands(args: GenerateCodeFromCommandsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GenerateCodeFromCommandsCommandOutput) => void): void; + /** + * @see {@link SendMessageCommand} + */ + sendMessage(args: SendMessageCommandInput, options?: __HttpHandlerOptions): Promise; + sendMessage(args: SendMessageCommandInput, cb: (err: any, data?: SendMessageCommandOutput) => void): void; + sendMessage(args: SendMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendMessageCommandOutput) => void): void; +} +/** + * @public + */ +export declare class QDeveloperStreaming extends QDeveloperStreamingClient implements QDeveloperStreaming { +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/QDeveloperStreamingClient.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/QDeveloperStreamingClient.d.ts new file mode 100644 index 00000000000..d619e84378c --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/QDeveloperStreamingClient.d.ts @@ -0,0 +1,178 @@ +import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider"; +import { GenerateCodeFromCommandsCommandInput, GenerateCodeFromCommandsCommandOutput } from "./commands/GenerateCodeFromCommandsCommand"; +import { SendMessageCommandInput, SendMessageCommandOutput } from "./commands/SendMessageCommand"; +import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header"; +import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent"; +import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@smithy/config-resolver"; +import { EventStreamSerdeInputConfig, EventStreamSerdeResolvedConfig } from "@smithy/eventstream-serde-config-resolver"; +import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; +import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client"; +import { AwsCredentialIdentityProvider, Provider, RegionInfoProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, EventStreamSerdeProvider as __EventStreamSerdeProvider, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types"; +export { __Client }; +/** + * @public + */ +export type ServiceInputTypes = GenerateCodeFromCommandsCommandInput | SendMessageCommandInput; +/** + * @public + */ +export type ServiceOutputTypes = GenerateCodeFromCommandsCommandOutput | SendMessageCommandOutput; +/** + * @public + */ +export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> { + /** + * The HTTP handler to use or its constructor options. Fetch in browser and Https in Nodejs. + */ + requestHandler?: __HttpHandlerUserInput; + /** + * A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface + * that computes the SHA-256 HMAC or checksum of a string or binary buffer. + * @internal + */ + sha256?: __ChecksumConstructor | __HashConstructor; + /** + * The function that will be used to convert strings into HTTP endpoints. + * @internal + */ + urlParser?: __UrlParser; + /** + * A function that can calculate the length of a request body. + * @internal + */ + bodyLengthChecker?: __BodyLengthCalculator; + /** + * A function that converts a stream into an array of bytes. + * @internal + */ + streamCollector?: __StreamCollector; + /** + * The function that will be used to convert a base64-encoded string to a byte array. + * @internal + */ + base64Decoder?: __Decoder; + /** + * The function that will be used to convert binary data to a base64-encoded string. + * @internal + */ + base64Encoder?: __Encoder; + /** + * The function that will be used to convert a UTF8-encoded string to a byte array. + * @internal + */ + utf8Decoder?: __Decoder; + /** + * The function that will be used to convert binary data to a UTF-8 encoded string. + * @internal + */ + utf8Encoder?: __Encoder; + /** + * The runtime environment. + * @internal + */ + runtime?: string; + /** + * Disable dynamically changing the endpoint of the client based on the hostPrefix + * trait of an operation. + */ + disableHostPrefix?: boolean; + /** + * Unique service identifier. + * @internal + */ + serviceId?: string; + /** + * Enables IPv6/IPv4 dualstack endpoint. + */ + useDualstackEndpoint?: boolean | __Provider; + /** + * Enables FIPS compatible endpoints. + */ + useFipsEndpoint?: boolean | __Provider; + /** + * The AWS region to which this client will send requests + */ + region?: string | __Provider; + /** + * Fetch related hostname, signing name or signing region with given region. + * @internal + */ + regionInfoProvider?: RegionInfoProvider; + /** + * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header + * @internal + */ + defaultUserAgentProvider?: Provider<__UserAgent>; + /** + * Default credentials provider; Not available in browser runtime. + * @deprecated + * @internal + */ + credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider; + /** + * Value for how many times a request will be made at most in case of retry. + */ + maxAttempts?: number | __Provider; + /** + * Specifies which retry algorithm to use. + * @see https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-util-retry/Enum/RETRY_MODES/ + * + */ + retryMode?: string | __Provider; + /** + * Optional logger for logging debug/info/warn/error. + */ + logger?: __Logger; + /** + * Optional extensions + */ + extensions?: RuntimeExtension[]; + /** + * The function that provides necessary utilities for generating and parsing event stream + */ + eventStreamSerdeProvider?: __EventStreamSerdeProvider; + /** + * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK. + */ + defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>; +} +/** + * @public + */ +export type QDeveloperStreamingClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointsInputConfig & EventStreamSerdeInputConfig & HttpAuthSchemeInputConfig; +/** + * @public + * + * The configuration interface of QDeveloperStreamingClient class constructor that set the region, credentials and other options. + */ +export interface QDeveloperStreamingClientConfig extends QDeveloperStreamingClientConfigType { +} +/** + * @public + */ +export type QDeveloperStreamingClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointsResolvedConfig & EventStreamSerdeResolvedConfig & HttpAuthSchemeResolvedConfig; +/** + * @public + * + * The resolved configuration interface of QDeveloperStreamingClient class. This is resolved and normalized from the {@link QDeveloperStreamingClientConfig | constructor configuration interface}. + */ +export interface QDeveloperStreamingClientResolvedConfig extends QDeveloperStreamingClientResolvedConfigType { +} +/** + * @public + */ +export declare class QDeveloperStreamingClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, QDeveloperStreamingClientResolvedConfig> { + /** + * The resolved configuration of QDeveloperStreamingClient class. This is resolved and normalized from the {@link QDeveloperStreamingClientConfig | constructor configuration interface}. + */ + readonly config: QDeveloperStreamingClientResolvedConfig; + constructor(...[configuration]: __CheckOptionalClientConfig); + /** + * Destroy underlying resources, like sockets. It's usually not necessary to do this. + * However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed. + * Otherwise, sockets might stay open for quite a long time before the server terminates them. + */ + destroy(): void; +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/auth/httpAuthExtensionConfiguration.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/auth/httpAuthExtensionConfiguration.d.ts new file mode 100644 index 00000000000..b714c522a97 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/auth/httpAuthExtensionConfiguration.d.ts @@ -0,0 +1,29 @@ +import { QDeveloperStreamingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +/** + * @internal + */ +export interface HttpAuthExtensionConfiguration { + setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void; + httpAuthSchemes(): HttpAuthScheme[]; + setHttpAuthSchemeProvider(httpAuthSchemeProvider: QDeveloperStreamingHttpAuthSchemeProvider): void; + httpAuthSchemeProvider(): QDeveloperStreamingHttpAuthSchemeProvider; + setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void; + credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined; +} +/** + * @internal + */ +export type HttpAuthRuntimeConfig = Partial<{ + httpAuthSchemes: HttpAuthScheme[]; + httpAuthSchemeProvider: QDeveloperStreamingHttpAuthSchemeProvider; + credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider; +}>; +/** + * @internal + */ +export declare const getHttpAuthExtensionConfiguration: (runtimeConfig: HttpAuthRuntimeConfig) => HttpAuthExtensionConfiguration; +/** + * @internal + */ +export declare const resolveHttpAuthRuntimeConfig: (config: HttpAuthExtensionConfiguration) => HttpAuthRuntimeConfig; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/auth/httpAuthSchemeProvider.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/auth/httpAuthSchemeProvider.d.ts new file mode 100644 index 00000000000..71923485aee --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/auth/httpAuthSchemeProvider.d.ts @@ -0,0 +1,61 @@ +import { QDeveloperStreamingClientResolvedConfig } from "../QDeveloperStreamingClient"; +import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core"; +import { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider } from "@smithy/types"; +/** + * @internal + */ +export interface QDeveloperStreamingHttpAuthSchemeParameters extends HttpAuthSchemeParameters { + region?: string; +} +/** + * @internal + */ +export interface QDeveloperStreamingHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider { +} +/** + * @internal + */ +export declare const defaultQDeveloperStreamingHttpAuthSchemeParametersProvider: (config: QDeveloperStreamingClientResolvedConfig, context: HandlerExecutionContext, input: object) => Promise; +/** + * @internal + */ +export interface QDeveloperStreamingHttpAuthSchemeProvider extends HttpAuthSchemeProvider { +} +/** + * @internal + */ +export declare const defaultQDeveloperStreamingHttpAuthSchemeProvider: QDeveloperStreamingHttpAuthSchemeProvider; +/** + * @internal + */ +export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig { + /** + * Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme. + * @internal + */ + httpAuthSchemes?: HttpAuthScheme[]; + /** + * Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use. + * @internal + */ + httpAuthSchemeProvider?: QDeveloperStreamingHttpAuthSchemeProvider; +} +/** + * @internal + */ +export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig { + /** + * Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme. + * @internal + */ + readonly httpAuthSchemes: HttpAuthScheme[]; + /** + * Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use. + * @internal + */ + readonly httpAuthSchemeProvider: QDeveloperStreamingHttpAuthSchemeProvider; +} +/** + * @internal + */ +export declare const resolveHttpAuthSchemeConfig: (config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved) => T & HttpAuthSchemeResolvedConfig; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/GenerateCodeFromCommandsCommand.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/GenerateCodeFromCommandsCommand.d.ts new file mode 100644 index 00000000000..52ec52d0587 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/GenerateCodeFromCommandsCommand.d.ts @@ -0,0 +1,102 @@ +import { QDeveloperStreamingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QDeveloperStreamingClient"; +import { GenerateCodeFromCommandsRequest, GenerateCodeFromCommandsResponse } from "../models/models_0"; +import { Command as $Command } from "@smithy/smithy-client"; +import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +/** + * @public + */ +export type { __MetadataBearer }; +export { $Command }; +/** + * @public + * + * The input for {@link GenerateCodeFromCommandsCommand}. + */ +export interface GenerateCodeFromCommandsCommandInput extends GenerateCodeFromCommandsRequest { +} +/** + * @public + * + * The output of {@link GenerateCodeFromCommandsCommand}. + */ +export interface GenerateCodeFromCommandsCommandOutput extends GenerateCodeFromCommandsResponse, __MetadataBearer { +} +declare const GenerateCodeFromCommandsCommand_base: { + new (input: GenerateCodeFromCommandsCommandInput): import("@smithy/smithy-client").CommandImpl; + new (__0_0: GenerateCodeFromCommandsCommandInput): import("@smithy/smithy-client").CommandImpl; + getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; +}; +/** + * API to generate infrastructure as code from cli commands. + * @example + * Use a bare-bones client and the command you need to make an API call. + * ```javascript + * import { QDeveloperStreamingClient, GenerateCodeFromCommandsCommand } from "@amzn/amazon-q-developer-streaming-client"; // ES Modules import + * // const { QDeveloperStreamingClient, GenerateCodeFromCommandsCommand } = require("@amzn/amazon-q-developer-streaming-client"); // CommonJS import + * const client = new QDeveloperStreamingClient(config); + * const input = { // GenerateCodeFromCommandsRequest + * outputFormat: "typescript/cdk" || "java/cdk" || "python/cdk" || "yaml/cfn" || "json/cfn", // required + * commands: { // CommandInput Union: only one key present + * commandsList: [ // CliCommandsList + * "STRING_VALUE", + * ], + * }, + * }; + * const command = new GenerateCodeFromCommandsCommand(input); + * const response = await client.send(command); + * // { // GenerateCodeFromCommandsResponse + * // generatedCodeFromCommandsResponse: { // GenerateCodeFromCommandsResponseStream Union: only one key present + * // codeEvent: { // CodeEvent + * // content: "STRING_VALUE", // required + * // }, + * // Error: { // InternalServerException + * // message: "STRING_VALUE", // required + * // }, + * // QuotaLevelExceededError: { // ServiceQuotaExceededException + * // message: "STRING_VALUE", // required + * // }, + * // ValidationError: { // ValidationException + * // message: "STRING_VALUE", // required + * // reason: "INVALID_CONVERSATION_ID" || "CONTENT_LENGTH_EXCEEDS_THRESHOLD" || "INVALID_KMS_GRANT", + * // }, + * // }, + * // }; + * + * ``` + * + * @param GenerateCodeFromCommandsCommandInput - {@link GenerateCodeFromCommandsCommandInput} + * @returns {@link GenerateCodeFromCommandsCommandOutput} + * @see {@link GenerateCodeFromCommandsCommandInput} for command's `input` shape. + * @see {@link GenerateCodeFromCommandsCommandOutput} for command's `response` shape. + * @see {@link QDeveloperStreamingClientResolvedConfig | config} for QDeveloperStreamingClient's `config` shape. + * + * @throws {@link InternalServerException} (server fault) + * This exception is thrown when an unexpected error occurred during the processing of a request. + * + * @throws {@link ThrottlingException} (client fault) + * This exception is thrown when request was denied due to request throttling. + * + * @throws {@link ValidationException} (client fault) + * This exception is thrown when the input fails to satisfy the constraints specified by the service. + * + * @throws {@link AccessDeniedException} (client fault) + * This exception is thrown when the user does not have sufficient access to perform this action. + * + * @throws {@link QDeveloperStreamingServiceException} + *

Base exception class for all service exceptions from QDeveloperStreaming service.

+ * + * @public + */ +export declare class GenerateCodeFromCommandsCommand extends GenerateCodeFromCommandsCommand_base { + /** @internal type navigation helper, not in runtime. */ + protected static __types: { + api: { + input: GenerateCodeFromCommandsRequest; + output: GenerateCodeFromCommandsResponse; + }; + sdk: { + input: GenerateCodeFromCommandsCommandInput; + output: GenerateCodeFromCommandsCommandOutput; + }; + }; +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/SendMessageCommand.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/SendMessageCommand.d.ts new file mode 100644 index 00000000000..e83cc4ca40a --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/SendMessageCommand.d.ts @@ -0,0 +1,622 @@ +import { QDeveloperStreamingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QDeveloperStreamingClient"; +import { SendMessageRequest, SendMessageResponse } from "../models/models_0"; +import { Command as $Command } from "@smithy/smithy-client"; +import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +/** + * @public + */ +export type { __MetadataBearer }; +export { $Command }; +/** + * @public + * + * The input for {@link SendMessageCommand}. + */ +export interface SendMessageCommandInput extends SendMessageRequest { +} +/** + * @public + * + * The output of {@link SendMessageCommand}. + */ +export interface SendMessageCommandOutput extends SendMessageResponse, __MetadataBearer { +} +declare const SendMessageCommand_base: { + new (input: SendMessageCommandInput): import("@smithy/smithy-client").CommandImpl; + new (__0_0: SendMessageCommandInput): import("@smithy/smithy-client").CommandImpl; + getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; +}; +/** + * @public + * + * @example + * Use a bare-bones client and the command you need to make an API call. + * ```javascript + * import { QDeveloperStreamingClient, SendMessageCommand } from "@amzn/amazon-q-developer-streaming-client"; // ES Modules import + * // const { QDeveloperStreamingClient, SendMessageCommand } = require("@amzn/amazon-q-developer-streaming-client"); // CommonJS import + * const client = new QDeveloperStreamingClient(config); + * const input = { // SendMessageRequest + * conversationState: { // ConversationState + * conversationId: "STRING_VALUE", + * history: [ // ChatHistory + * { // ChatMessage Union: only one key present + * userInputMessage: { // UserInputMessage + * content: "STRING_VALUE", // required + * userInputMessageContext: { // UserInputMessageContext + * editorState: { // EditorState + * document: { // TextDocument + * relativeFilePath: "STRING_VALUE", // required + * programmingLanguage: { // ProgrammingLanguage + * languageName: "STRING_VALUE", // required + * }, + * text: "STRING_VALUE", + * documentSymbols: [ // DocumentSymbols + * { // DocumentSymbol + * name: "STRING_VALUE", // required + * type: "DECLARATION" || "USAGE", // required + * source: "STRING_VALUE", + * }, + * ], + * }, + * cursorState: { // CursorState Union: only one key present + * position: { // Position + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * range: { // Range + * start: { + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * end: { + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * }, + * }, + * relevantDocuments: [ // RelevantDocumentList + * { // RelevantTextDocument + * relativeFilePath: "STRING_VALUE", // required + * programmingLanguage: { + * languageName: "STRING_VALUE", // required + * }, + * text: "STRING_VALUE", + * documentSymbols: [ + * { + * name: "STRING_VALUE", // required + * type: "DECLARATION" || "USAGE", // required + * source: "STRING_VALUE", + * }, + * ], + * }, + * ], + * useRelevantDocuments: true || false, + * }, + * shellState: { // ShellState + * shellName: "STRING_VALUE", // required + * shellHistory: [ // ShellHistory + * { // ShellHistoryEntry + * command: "STRING_VALUE", // required + * directory: "STRING_VALUE", + * exitCode: Number("int"), + * stdout: "STRING_VALUE", + * stderr: "STRING_VALUE", + * }, + * ], + * }, + * gitState: { // GitState + * status: "STRING_VALUE", + * }, + * envState: { // EnvState + * operatingSystem: "STRING_VALUE", + * currentWorkingDirectory: "STRING_VALUE", + * environmentVariables: [ // EnvironmentVariables + * { // EnvironmentVariable + * key: "STRING_VALUE", + * value: "STRING_VALUE", + * }, + * ], + * }, + * appStudioContext: { // AppStudioState + * namespace: "STRING_VALUE", // required + * propertyName: "STRING_VALUE", // required + * propertyValue: "STRING_VALUE", + * propertyContext: "STRING_VALUE", // required + * }, + * diagnostic: { // Diagnostic Union: only one key present + * textDocumentDiagnostic: { // TextDocumentDiagnostic + * document: { + * relativeFilePath: "STRING_VALUE", // required + * programmingLanguage: { + * languageName: "STRING_VALUE", // required + * }, + * text: "STRING_VALUE", + * documentSymbols: [ + * { + * name: "STRING_VALUE", // required + * type: "DECLARATION" || "USAGE", // required + * source: "STRING_VALUE", + * }, + * ], + * }, + * range: { + * start: { + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * end: { + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * }, + * source: "STRING_VALUE", // required + * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required + * message: "STRING_VALUE", // required + * }, + * runtimeDiagnostic: { // RuntimeDiagnostic + * source: "STRING_VALUE", // required + * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required + * message: "STRING_VALUE", // required + * }, + * }, + * consoleState: { // ConsoleState + * region: "STRING_VALUE", + * consoleUrl: "STRING_VALUE", + * serviceId: "STRING_VALUE", + * serviceConsolePage: "STRING_VALUE", + * serviceSubconsolePage: "STRING_VALUE", + * taskName: "STRING_VALUE", + * }, + * userSettings: { // UserSettings + * hasConsentedToCrossRegionCalls: true || false, + * }, + * }, + * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS" || "CODE_GENERATION", + * }, + * assistantResponseMessage: { // AssistantResponseMessage + * messageId: "STRING_VALUE", + * content: "STRING_VALUE", // required + * supplementaryWebLinks: [ // SupplementaryWebLinks + * { // SupplementaryWebLink + * url: "STRING_VALUE", // required + * title: "STRING_VALUE", // required + * snippet: "STRING_VALUE", + * }, + * ], + * references: [ // References + * { // Reference + * licenseName: "STRING_VALUE", + * repository: "STRING_VALUE", + * url: "STRING_VALUE", + * recommendationContentSpan: { // Span + * start: Number("int"), + * end: Number("int"), + * }, + * }, + * ], + * followupPrompt: { // FollowupPrompt + * content: "STRING_VALUE", // required + * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS" || "CODE_GENERATION", + * }, + * }, + * }, + * ], + * currentMessage: {// Union: only one key present + * userInputMessage: { + * content: "STRING_VALUE", // required + * userInputMessageContext: { + * editorState: { + * document: "", + * cursorState: {// Union: only one key present + * position: "", + * range: { + * start: "", // required + * end: "", // required + * }, + * }, + * relevantDocuments: [ + * { + * relativeFilePath: "STRING_VALUE", // required + * programmingLanguage: { + * languageName: "STRING_VALUE", // required + * }, + * text: "STRING_VALUE", + * documentSymbols: [ + * { + * name: "STRING_VALUE", // required + * type: "DECLARATION" || "USAGE", // required + * source: "STRING_VALUE", + * }, + * ], + * }, + * ], + * useRelevantDocuments: true || false, + * }, + * shellState: { + * shellName: "STRING_VALUE", // required + * shellHistory: [ + * { + * command: "STRING_VALUE", // required + * directory: "STRING_VALUE", + * exitCode: Number("int"), + * stdout: "STRING_VALUE", + * stderr: "STRING_VALUE", + * }, + * ], + * }, + * gitState: { + * status: "STRING_VALUE", + * }, + * envState: { + * operatingSystem: "STRING_VALUE", + * currentWorkingDirectory: "STRING_VALUE", + * environmentVariables: [ + * { + * key: "STRING_VALUE", + * value: "STRING_VALUE", + * }, + * ], + * }, + * appStudioContext: { + * namespace: "STRING_VALUE", // required + * propertyName: "STRING_VALUE", // required + * propertyValue: "STRING_VALUE", + * propertyContext: "STRING_VALUE", // required + * }, + * diagnostic: {// Union: only one key present + * textDocumentDiagnostic: { + * document: "", // required + * range: { + * start: "", // required + * end: "", // required + * }, + * source: "STRING_VALUE", // required + * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required + * message: "STRING_VALUE", // required + * }, + * runtimeDiagnostic: { + * source: "STRING_VALUE", // required + * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required + * message: "STRING_VALUE", // required + * }, + * }, + * consoleState: { + * region: "STRING_VALUE", + * consoleUrl: "STRING_VALUE", + * serviceId: "STRING_VALUE", + * serviceConsolePage: "STRING_VALUE", + * serviceSubconsolePage: "STRING_VALUE", + * taskName: "STRING_VALUE", + * }, + * userSettings: { + * hasConsentedToCrossRegionCalls: true || false, + * }, + * }, + * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS" || "CODE_GENERATION", + * }, + * assistantResponseMessage: { + * messageId: "STRING_VALUE", + * content: "STRING_VALUE", // required + * supplementaryWebLinks: [ + * { + * url: "STRING_VALUE", // required + * title: "STRING_VALUE", // required + * snippet: "STRING_VALUE", + * }, + * ], + * references: [ + * { + * licenseName: "STRING_VALUE", + * repository: "STRING_VALUE", + * url: "STRING_VALUE", + * recommendationContentSpan: { + * start: Number("int"), + * end: Number("int"), + * }, + * }, + * ], + * followupPrompt: { + * content: "STRING_VALUE", // required + * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS" || "CODE_GENERATION", + * }, + * }, + * }, + * chatTriggerType: "MANUAL" || "DIAGNOSTIC" || "INLINE_CHAT", // required + * customizationArn: "STRING_VALUE", + * }, + * profileArn: "STRING_VALUE", + * source: "STRING_VALUE", + * dryRun: true || false, + * }; + * const command = new SendMessageCommand(input); + * const response = await client.send(command); + * // { // SendMessageResponse + * // sendMessageResponse: { // ChatResponseStream Union: only one key present + * // messageMetadataEvent: { // MessageMetadataEvent + * // conversationId: "STRING_VALUE", + * // utteranceId: "STRING_VALUE", + * // }, + * // assistantResponseEvent: { // AssistantResponseEvent + * // content: "STRING_VALUE", // required + * // }, + * // dryRunSucceedEvent: {}, + * // codeReferenceEvent: { // CodeReferenceEvent + * // references: [ // References + * // { // Reference + * // licenseName: "STRING_VALUE", + * // repository: "STRING_VALUE", + * // url: "STRING_VALUE", + * // recommendationContentSpan: { // Span + * // start: Number("int"), + * // end: Number("int"), + * // }, + * // }, + * // ], + * // }, + * // supplementaryWebLinksEvent: { // SupplementaryWebLinksEvent + * // supplementaryWebLinks: [ // SupplementaryWebLinks + * // { // SupplementaryWebLink + * // url: "STRING_VALUE", // required + * // title: "STRING_VALUE", // required + * // snippet: "STRING_VALUE", + * // }, + * // ], + * // }, + * // followupPromptEvent: { // FollowupPromptEvent + * // followupPrompt: { // FollowupPrompt + * // content: "STRING_VALUE", // required + * // userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS" || "CODE_GENERATION", + * // }, + * // }, + * // codeEvent: { // CodeEvent + * // content: "STRING_VALUE", // required + * // }, + * // intentsEvent: { // IntentsEvent + * // intents: { // IntentMap + * // "": { // IntentData + * // "": { // IntentDataType Union: only one key present + * // string: "STRING_VALUE", + * // }, + * // }, + * // }, + * // }, + * // interactionComponentsEvent: { // InteractionComponentsEvent + * // interactionComponentEntries: [ // InteractionComponentEntryList // required + * // { // InteractionComponentEntry + * // interactionComponentId: "STRING_VALUE", + * // interactionComponent: { // InteractionComponent + * // text: { // Text + * // content: "STRING_VALUE", // required + * // }, + * // alert: { // Alert + * // type: "INFO" || "ERROR" || "WARNING", // required + * // content: [ // AlertComponentList // required + * // { // AlertComponent + * // text: { + * // content: "STRING_VALUE", // required + * // }, + * // }, + * // ], + * // }, + * // infrastructureUpdate: { // InfrastructureUpdate + * // transition: { // InfrastructureUpdateTransition + * // currentState: "STRING_VALUE", // required + * // nextState: "STRING_VALUE", // required + * // }, + * // }, + * // progress: { // Progress + * // content: [ // ProgressComponentList // required + * // { // ProgressComponent + * // step: { // Step + * // id: Number("int"), // required + * // state: "FAILED" || "SUCCEEDED" || "STOPPED" || "PENDING" || "IN_PROGRESS" || "LOADING" || "PAUSED", // required + * // label: "STRING_VALUE", // required + * // content: [ // StepComponentList + * // { // StepComponent + * // text: "", + * // }, + * // ], + * // }, + * // }, + * // ], + * // }, + * // step: { + * // id: Number("int"), // required + * // state: "FAILED" || "SUCCEEDED" || "STOPPED" || "PENDING" || "IN_PROGRESS" || "LOADING" || "PAUSED", // required + * // label: "STRING_VALUE", // required + * // content: [ + * // { + * // text: "", + * // }, + * // ], + * // }, + * // taskDetails: { // TaskDetails + * // overview: { // TaskOverview + * // label: "STRING_VALUE", // required + * // description: "STRING_VALUE", // required + * // }, + * // content: [ // TaskComponentList // required + * // { // TaskComponent + * // text: "", + * // infrastructureUpdate: { + * // transition: { + * // currentState: "STRING_VALUE", // required + * // nextState: "STRING_VALUE", // required + * // }, + * // }, + * // alert: { + * // type: "INFO" || "ERROR" || "WARNING", // required + * // content: [ // required + * // { + * // text: "", + * // }, + * // ], + * // }, + * // progress: { + * // content: [ // required + * // { + * // step: "", + * // }, + * // ], + * // }, + * // }, + * // ], + * // actions: [ // TaskActionList + * // { // TaskAction + * // label: "STRING_VALUE", // required + * // note: { // TaskActionNote + * // content: "STRING_VALUE", // required + * // type: "INFO" || "WARNING", + * // }, + * // primary: true || false, + * // disabled: true || false, + * // payload: { // TaskActionPayload // required + * // "": "STRING_VALUE", + * // }, + * // confirmation: { // TaskActionConfirmation + * // content: "STRING_VALUE", + * // }, + * // }, + * // ], + * // }, + * // taskReference: { // TaskReference + * // taskId: "STRING_VALUE", // required + * // }, + * // suggestions: { // Suggestions + * // items: [ // SuggestionList // required + * // { // Suggestion + * // value: "STRING_VALUE", // required + * // }, + * // ], + * // }, + * // section: { // Section + * // title: "STRING_VALUE", // required + * // content: [ // SectionComponentList // required + * // { // SectionComponent Union: only one key present + * // text: "", + * // alert: { + * // type: "INFO" || "ERROR" || "WARNING", // required + * // content: [ // required + * // { + * // text: "", + * // }, + * // ], + * // }, + * // resource: { // Resource + * // title: "STRING_VALUE", // required + * // link: "STRING_VALUE", // required + * // description: "STRING_VALUE", // required + * // type: "STRING_VALUE", // required + * // ARN: "STRING_VALUE", // required + * // resourceJsonString: "STRING_VALUE", // required + * // }, + * // resourceList: { // ResourceList + * // action: { // Action Union: only one key present + * // webLink: { // WebLink + * // label: "STRING_VALUE", // required + * // url: "STRING_VALUE", // required + * // }, + * // moduleLink: { // ModuleLink Union: only one key present + * // cloudWatchTroubleshootingLink: { // CloudWatchTroubleshootingLink + * // label: "STRING_VALUE", // required + * // investigationPayload: "STRING_VALUE", // required + * // defaultText: "STRING_VALUE", + * // }, + * // }, + * // }, + * // items: [ // Resources // required + * // { + * // title: "STRING_VALUE", // required + * // link: "STRING_VALUE", // required + * // description: "STRING_VALUE", // required + * // type: "STRING_VALUE", // required + * // ARN: "STRING_VALUE", // required + * // resourceJsonString: "STRING_VALUE", // required + * // }, + * // ], + * // }, + * // }, + * // ], + * // }, + * // resource: "", + * // resourceList: { + * // action: {// Union: only one key present + * // webLink: { + * // label: "STRING_VALUE", // required + * // url: "STRING_VALUE", // required + * // }, + * // moduleLink: {// Union: only one key present + * // cloudWatchTroubleshootingLink: { + * // label: "STRING_VALUE", // required + * // investigationPayload: "STRING_VALUE", // required + * // defaultText: "STRING_VALUE", + * // }, + * // }, + * // }, + * // items: [ // required + * // "", + * // ], + * // }, + * // }, + * // }, + * // ], + * // }, + * // invalidStateEvent: { // InvalidStateEvent + * // reason: "INVALID_TASK_ASSIST_PLAN", // required + * // message: "STRING_VALUE", // required + * // }, + * // error: { // InternalServerException + * // message: "STRING_VALUE", // required + * // }, + * // }, + * // }; + * + * ``` + * + * @param SendMessageCommandInput - {@link SendMessageCommandInput} + * @returns {@link SendMessageCommandOutput} + * @see {@link SendMessageCommandInput} for command's `input` shape. + * @see {@link SendMessageCommandOutput} for command's `response` shape. + * @see {@link QDeveloperStreamingClientResolvedConfig | config} for QDeveloperStreamingClient's `config` shape. + * + * @throws {@link InternalServerException} (server fault) + * This exception is thrown when an unexpected error occurred during the processing of a request. + * + * @throws {@link ServiceQuotaExceededException} (client fault) + * This exception is thrown when request was denied due to caller exceeding their usage limits + * + * @throws {@link DryRunOperationException} (client fault) + * This exception is translated to a 204 as it succeeded the IAM Auth. + * + * @throws {@link ThrottlingException} (client fault) + * This exception is thrown when request was denied due to request throttling. + * + * @throws {@link ValidationException} (client fault) + * This exception is thrown when the input fails to satisfy the constraints specified by the service. + * + * @throws {@link ConflictException} (client fault) + * This exception is thrown when the action to perform could not be completed because the resource is in a conflicting state. + * + * @throws {@link ResourceNotFoundException} (client fault) + * This exception is thrown when describing a resource that does not exist. + * + * @throws {@link AccessDeniedException} (client fault) + * This exception is thrown when the user does not have sufficient access to perform this action. + * + * @throws {@link QDeveloperStreamingServiceException} + *

Base exception class for all service exceptions from QDeveloperStreaming service.

+ * + */ +export declare class SendMessageCommand extends SendMessageCommand_base { + /** @internal type navigation helper, not in runtime. */ + protected static __types: { + api: { + input: SendMessageRequest; + output: SendMessageResponse; + }; + sdk: { + input: SendMessageCommandInput; + output: SendMessageCommandOutput; + }; + }; +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/index.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/index.d.ts new file mode 100644 index 00000000000..daae8549029 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/index.d.ts @@ -0,0 +1,2 @@ +export * from "./GenerateCodeFromCommandsCommand"; +export * from "./SendMessageCommand"; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/endpoints.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/endpoints.d.ts new file mode 100644 index 00000000000..4605191af31 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/endpoints.d.ts @@ -0,0 +1,2 @@ +import { RegionInfoProvider } from "@aws-sdk/types"; +export declare const defaultRegionInfoProvider: RegionInfoProvider; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/extensionConfiguration.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/extensionConfiguration.d.ts new file mode 100644 index 00000000000..3b9ea18cfd5 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/extensionConfiguration.d.ts @@ -0,0 +1,9 @@ +import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import { DefaultExtensionConfiguration } from "@smithy/types"; +/** + * @internal + */ +export interface QDeveloperStreamingExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration, HttpAuthExtensionConfiguration { +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/index.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/index.d.ts new file mode 100644 index 00000000000..35429f10bc1 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/index.d.ts @@ -0,0 +1,7 @@ +export * from "./QDeveloperStreamingClient"; +export * from "./QDeveloperStreaming"; +export type { RuntimeExtension } from "./runtimeExtensions"; +export type { QDeveloperStreamingExtensionConfiguration } from "./extensionConfiguration"; +export * from "./commands"; +export * from "./models"; +export { QDeveloperStreamingServiceException } from "./models/QDeveloperStreamingServiceException"; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/QDeveloperStreamingServiceException.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/QDeveloperStreamingServiceException.d.ts new file mode 100644 index 00000000000..e765fa8f1b1 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/QDeveloperStreamingServiceException.d.ts @@ -0,0 +1,14 @@ +import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client"; +export type { __ServiceExceptionOptions }; +export { __ServiceException }; +/** + * @public + * + * Base exception class for all service exceptions from QDeveloperStreaming service. + */ +export declare class QDeveloperStreamingServiceException extends __ServiceException { + /** + * @internal + */ + constructor(options: __ServiceExceptionOptions); +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/index.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/index.d.ts new file mode 100644 index 00000000000..09c5d6e09b8 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/index.d.ts @@ -0,0 +1 @@ +export * from "./models_0"; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/models_0.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/models_0.d.ts new file mode 100644 index 00000000000..130fd93d169 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/models_0.d.ts @@ -0,0 +1,2422 @@ +import { QDeveloperStreamingServiceException as __BaseException } from "./QDeveloperStreamingServiceException"; +import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +/** + * @public + * @enum + */ +export declare const AccessDeniedExceptionReason: { + readonly UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS: "UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS"; +}; +/** + * @public + */ +export type AccessDeniedExceptionReason = typeof AccessDeniedExceptionReason[keyof typeof AccessDeniedExceptionReason]; +/** + * This exception is thrown when the user does not have sufficient access to perform this action. + * @public + */ +export declare class AccessDeniedException extends __BaseException { + readonly name: "AccessDeniedException"; + readonly $fault: "client"; + /** + * Reason for AccessDeniedException + * @public + */ + reason?: AccessDeniedExceptionReason; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType); +} +/** + * This exception is thrown when an unexpected error occurred during the processing of a request. + * @public + */ +export declare class InternalServerException extends __BaseException { + readonly name: "InternalServerException"; + readonly $fault: "server"; + $retryable: {}; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType); +} +/** + * This exception is thrown when describing a resource that does not exist. + * @public + */ +export declare class ResourceNotFoundException extends __BaseException { + readonly name: "ResourceNotFoundException"; + readonly $fault: "client"; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType); +} +/** + * This exception is thrown when request was denied due to request throttling. + * @public + */ +export declare class ThrottlingException extends __BaseException { + readonly name: "ThrottlingException"; + readonly $fault: "client"; + $retryable: { + throttling: boolean; + }; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType); +} +/** + * @public + * @enum + */ +export declare const ValidationExceptionReason: { + readonly CONTENT_LENGTH_EXCEEDS_THRESHOLD: "CONTENT_LENGTH_EXCEEDS_THRESHOLD"; + readonly INVALID_CONVERSATION_ID: "INVALID_CONVERSATION_ID"; + readonly INVALID_KMS_GRANT: "INVALID_KMS_GRANT"; +}; +/** + * @public + */ +export type ValidationExceptionReason = typeof ValidationExceptionReason[keyof typeof ValidationExceptionReason]; +/** + * This exception is thrown when the input fails to satisfy the constraints specified by the service. + * @public + */ +export declare class ValidationException extends __BaseException { + readonly name: "ValidationException"; + readonly $fault: "client"; + /** + * Reason for ValidationException + * @public + */ + reason?: ValidationExceptionReason; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType); +} +/** + * Description of a user's context when they are calling Q Chat from AppStudio + * @public + */ +export interface AppStudioState { + /** + * The namespace of the context. Examples: 'ui.Button', 'ui.Table.DataSource', 'ui.Table.RowActions.Button', 'logic.invokeAWS', 'logic.JavaScript' + * @public + */ + namespace: string | undefined; + /** + * The name of the property. Examples: 'visibility', 'disability', 'value', 'code' + * @public + */ + propertyName: string | undefined; + /** + * The value of the property. + * @public + */ + propertyValue?: string; + /** + * Context about how the property is used + * @public + */ + propertyContext: string | undefined; +} +/** + * @internal + */ +export declare const AppStudioStateFilterSensitiveLog: (obj: AppStudioState) => any; +/** + * Streaming Response Event for Assistant Markdown text message. + * @public + */ +export interface AssistantResponseEvent { + /** + * The content of the text message in markdown format. + * @public + */ + content: string | undefined; +} +/** + * @internal + */ +export declare const AssistantResponseEventFilterSensitiveLog: (obj: AssistantResponseEvent) => any; +/** + * @public + * @enum + */ +export declare const UserIntent: { + /** + * Apply Common Best Practices + */ + readonly APPLY_COMMON_BEST_PRACTICES: "APPLY_COMMON_BEST_PRACTICES"; + /** + * Cite Sources + */ + readonly CITE_SOURCES: "CITE_SOURCES"; + /** + * generate code + */ + readonly CODE_GENERATION: "CODE_GENERATION"; + /** + * Explain Code Selection + */ + readonly EXPLAIN_CODE_SELECTION: "EXPLAIN_CODE_SELECTION"; + /** + * Explain Code Line By Line + */ + readonly EXPLAIN_LINE_BY_LINE: "EXPLAIN_LINE_BY_LINE"; + /** + * Generate CloudFormation Template + */ + readonly GENERATE_CLOUDFORMATION_TEMPLATE: "GENERATE_CLOUDFORMATION_TEMPLATE"; + /** + * Generate Unit Tests + */ + readonly GENERATE_UNIT_TESTS: "GENERATE_UNIT_TESTS"; + /** + * Improve Code + */ + readonly IMPROVE_CODE: "IMPROVE_CODE"; + /** + * Show More Examples + */ + readonly SHOW_EXAMPLES: "SHOW_EXAMPLES"; + /** + * Suggest Alternative Implementation + */ + readonly SUGGEST_ALTERNATE_IMPLEMENTATION: "SUGGEST_ALTERNATE_IMPLEMENTATION"; +}; +/** + * @public + */ +export type UserIntent = typeof UserIntent[keyof typeof UserIntent]; +/** + * Followup Prompt for the Assistant Response + * @public + */ +export interface FollowupPrompt { + /** + * The content of the text message in markdown format. + * @public + */ + content: string | undefined; + /** + * User Intent + * @public + */ + userIntent?: UserIntent; +} +/** + * @internal + */ +export declare const FollowupPromptFilterSensitiveLog: (obj: FollowupPrompt) => any; +/** + * Represents span in a text + * @public + */ +export interface Span { + start?: number; + end?: number; +} +/** + * Code Reference / Repository details + * @public + */ +export interface Reference { + /** + * License name + * @public + */ + licenseName?: string; + /** + * Code Repsitory for the associated reference + * @public + */ + repository?: string; + /** + * Respository URL + * @public + */ + url?: string; + /** + * Span / Range for the Reference + * @public + */ + recommendationContentSpan?: Span; +} +/** + * Represents an additional reference link retured with the Chat message + * @public + */ +export interface SupplementaryWebLink { + /** + * URL of the web reference link + * @public + */ + url: string | undefined; + /** + * Title of the web reference link + * @public + */ + title: string | undefined; + /** + * Relevant text snippet from the link + * @public + */ + snippet?: string; +} +/** + * @internal + */ +export declare const SupplementaryWebLinkFilterSensitiveLog: (obj: SupplementaryWebLink) => any; +/** + * Markdown text message. + * @public + */ +export interface AssistantResponseMessage { + /** + * Unique identifier for the chat message + * @public + */ + messageId?: string; + /** + * The content of the text message in markdown format. + * @public + */ + content: string | undefined; + /** + * Web References + * @public + */ + supplementaryWebLinks?: (SupplementaryWebLink)[]; + /** + * Code References + * @public + */ + references?: (Reference)[]; + /** + * Followup Prompt + * @public + */ + followupPrompt?: FollowupPrompt; +} +/** + * @internal + */ +export declare const AssistantResponseMessageFilterSensitiveLog: (obj: AssistantResponseMessage) => any; +/** + * @public + * @enum + */ +export declare const ConflictExceptionReason: { + readonly CUSTOMER_KMS_KEY_DISABLED: "CUSTOMER_KMS_KEY_DISABLED"; + readonly CUSTOMER_KMS_KEY_INVALID_KEY_POLICY: "CUSTOMER_KMS_KEY_INVALID_KEY_POLICY"; + readonly MISMATCHED_KMS_KEY: "MISMATCHED_KMS_KEY"; +}; +/** + * @public + */ +export type ConflictExceptionReason = typeof ConflictExceptionReason[keyof typeof ConflictExceptionReason]; +/** + * This exception is thrown when the action to perform could not be completed because the resource is in a conflicting state. + * @public + */ +export declare class ConflictException extends __BaseException { + readonly name: "ConflictException"; + readonly $fault: "client"; + /** + * Reason for ConflictException + * @public + */ + reason?: ConflictExceptionReason; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType); +} +/** + * Programming Languages supported by CodeWhisperer + * @public + */ +export interface ProgrammingLanguage { + languageName: string | undefined; +} +/** + * Information about the state of the AWS management console page from which the user is calling + * @public + */ +export interface ConsoleState { + region?: string; + consoleUrl?: string; + serviceId?: string; + serviceConsolePage?: string; + serviceSubconsolePage?: string; + taskName?: string; +} +/** + * @internal + */ +export declare const ConsoleStateFilterSensitiveLog: (obj: ConsoleState) => any; +/** + * @public + * @enum + */ +export declare const DiagnosticSeverity: { + readonly ERROR: "ERROR"; + readonly HINT: "HINT"; + readonly INFORMATION: "INFORMATION"; + readonly WARNING: "WARNING"; +}; +/** + * @public + */ +export type DiagnosticSeverity = typeof DiagnosticSeverity[keyof typeof DiagnosticSeverity]; +/** + * Structure to represent metadata about a Runtime Diagnostics + * @public + */ +export interface RuntimeDiagnostic { + /** + * A human-readable string describing the source of the diagnostic + * @public + */ + source: string | undefined; + /** + * Diagnostic Error type + * @public + */ + severity: DiagnosticSeverity | undefined; + /** + * The diagnostic's message. + * @public + */ + message: string | undefined; +} +/** + * @internal + */ +export declare const RuntimeDiagnosticFilterSensitiveLog: (obj: RuntimeDiagnostic) => any; +/** + * @public + * @enum + */ +export declare const SymbolType: { + readonly DECLARATION: "DECLARATION"; + readonly USAGE: "USAGE"; +}; +/** + * @public + */ +export type SymbolType = typeof SymbolType[keyof typeof SymbolType]; +/** + * @public + */ +export interface DocumentSymbol { + /** + * Name of the Document Symbol + * @public + */ + name: string | undefined; + /** + * Symbol type - DECLARATION / USAGE + * @public + */ + type: SymbolType | undefined; + /** + * Symbol package / source for FullyQualified names + * @public + */ + source?: string; +} +/** + * Represents a Text Document / File + * @public + */ +export interface TextDocument { + /** + * Filepath relative to the root of the workspace + * @public + */ + relativeFilePath: string | undefined; + /** + * The text document's language identifier. + * @public + */ + programmingLanguage?: ProgrammingLanguage; + /** + * Content of the text document + * @public + */ + text?: string; + /** + * DocumentSymbols parsed from a text document + * @public + */ + documentSymbols?: (DocumentSymbol)[]; +} +/** + * @internal + */ +export declare const TextDocumentFilterSensitiveLog: (obj: TextDocument) => any; +/** + * Indicates Cursor postion in a Text Document + * @public + */ +export interface Position { + /** + * Line position in a document. + * @public + */ + line: number | undefined; + /** + * Character offset on a line in a document (zero-based) + * @public + */ + character: number | undefined; +} +/** + * Indicates Range / Span in a Text Document + * @public + */ +export interface Range { + /** + * The range's start position. + * @public + */ + start: Position | undefined; + /** + * The range's end position. + * @public + */ + end: Position | undefined; +} +/** + * Structure to represent metadata about a TextDocument Diagnostic + * @public + */ +export interface TextDocumentDiagnostic { + /** + * Represents a Text Document associated with Diagnostic + * @public + */ + document: TextDocument | undefined; + /** + * The range at which the message applies. + * @public + */ + range: Range | undefined; + /** + * A human-readable string describing the source of the diagnostic + * @public + */ + source: string | undefined; + /** + * Diagnostic Error type + * @public + */ + severity: DiagnosticSeverity | undefined; + /** + * The diagnostic's message. + * @public + */ + message: string | undefined; +} +/** + * @internal + */ +export declare const TextDocumentDiagnosticFilterSensitiveLog: (obj: TextDocumentDiagnostic) => any; +/** + * Represents a Diagnostic message + * @public + */ +export type Diagnostic = Diagnostic.RuntimeDiagnosticMember | Diagnostic.TextDocumentDiagnosticMember | Diagnostic.$UnknownMember; +/** + * @public + */ +export declare namespace Diagnostic { + /** + * Diagnostics originating from a TextDocument + * @public + */ + interface TextDocumentDiagnosticMember { + textDocumentDiagnostic: TextDocumentDiagnostic; + runtimeDiagnostic?: never; + $unknown?: never; + } + /** + * Diagnostics originating from a Runtime + * @public + */ + interface RuntimeDiagnosticMember { + textDocumentDiagnostic?: never; + runtimeDiagnostic: RuntimeDiagnostic; + $unknown?: never; + } + /** + * @public + */ + interface $UnknownMember { + textDocumentDiagnostic?: never; + runtimeDiagnostic?: never; + $unknown: [string, any]; + } + interface Visitor { + textDocumentDiagnostic: (value: TextDocumentDiagnostic) => T; + runtimeDiagnostic: (value: RuntimeDiagnostic) => T; + _: (name: string, value: any) => T; + } + const visit: (value: Diagnostic, visitor: Visitor) => T; +} +/** + * @internal + */ +export declare const DiagnosticFilterSensitiveLog: (obj: Diagnostic) => any; +/** + * Represents the state of the Cursor in an Editor + * @public + */ +export type CursorState = CursorState.PositionMember | CursorState.RangeMember | CursorState.$UnknownMember; +/** + * @public + */ +export declare namespace CursorState { + /** + * Represents a cursor position in a Text Document + * @public + */ + interface PositionMember { + position: Position; + range?: never; + $unknown?: never; + } + /** + * Represents a text selection in a Text Document + * @public + */ + interface RangeMember { + position?: never; + range: Range; + $unknown?: never; + } + /** + * @public + */ + interface $UnknownMember { + position?: never; + range?: never; + $unknown: [string, any]; + } + interface Visitor { + position: (value: Position) => T; + range: (value: Range) => T; + _: (name: string, value: any) => T; + } + const visit: (value: CursorState, visitor: Visitor) => T; +} +/** + * Represents an IDE retrieved relevant Text Document / File + * @public + */ +export interface RelevantTextDocument { + /** + * Filepath relative to the root of the workspace + * @public + */ + relativeFilePath: string | undefined; + /** + * The text document's language identifier. + * @public + */ + programmingLanguage?: ProgrammingLanguage; + /** + * Content of the text document + * @public + */ + text?: string; + /** + * DocumentSymbols parsed from a text document + * @public + */ + documentSymbols?: (DocumentSymbol)[]; +} +/** + * @internal + */ +export declare const RelevantTextDocumentFilterSensitiveLog: (obj: RelevantTextDocument) => any; +/** + * Represents the state of an Editor + * @public + */ +export interface EditorState { + /** + * Represents currently edited file + * @public + */ + document?: TextDocument; + /** + * Position of the cursor + * @public + */ + cursorState?: CursorState; + /** + * Represents IDE provided relevant files + * @public + */ + relevantDocuments?: (RelevantTextDocument)[]; + /** + * Whether service should use relevant document in prompt + * @public + */ + useRelevantDocuments?: boolean; +} +/** + * @internal + */ +export declare const EditorStateFilterSensitiveLog: (obj: EditorState) => any; +/** + * An environment variable + * @public + */ +export interface EnvironmentVariable { + /** + * The key of an environment variable + * @public + */ + key?: string; + /** + * The value of an environment variable + * @public + */ + value?: string; +} +/** + * @internal + */ +export declare const EnvironmentVariableFilterSensitiveLog: (obj: EnvironmentVariable) => any; +/** + * State related to the user's environment + * @public + */ +export interface EnvState { + /** + * The name of the operating system in use + * @public + */ + operatingSystem?: string; + /** + * The current working directory of the environment + * @public + */ + currentWorkingDirectory?: string; + /** + * The environment variables set in the current environment + * @public + */ + environmentVariables?: (EnvironmentVariable)[]; +} +/** + * @internal + */ +export declare const EnvStateFilterSensitiveLog: (obj: EnvState) => any; +/** + * State related to the Git VSC + * @public + */ +export interface GitState { + /** + * The output of the command `git status --porcelain=v1 -b` + * @public + */ + status?: string; +} +/** + * @internal + */ +export declare const GitStateFilterSensitiveLog: (obj: GitState) => any; +/** + * An single entry in the shell history + * @public + */ +export interface ShellHistoryEntry { + /** + * The shell command that was run + * @public + */ + command: string | undefined; + /** + * The directory the command was ran in + * @public + */ + directory?: string; + /** + * The exit code of the command after it finished + * @public + */ + exitCode?: number; + /** + * The stdout from the command + * @public + */ + stdout?: string; + /** + * The stderr from the command + * @public + */ + stderr?: string; +} +/** + * @internal + */ +export declare const ShellHistoryEntryFilterSensitiveLog: (obj: ShellHistoryEntry) => any; +/** + * Represents the state of a shell + * @public + */ +export interface ShellState { + /** + * The name of the current shell + * @public + */ + shellName: string | undefined; + /** + * The history previous shell commands for the current shell + * @public + */ + shellHistory?: (ShellHistoryEntry)[]; +} +/** + * @internal + */ +export declare const ShellStateFilterSensitiveLog: (obj: ShellState) => any; +/** + * Settings information passed by the Q widget + * @public + */ +export interface UserSettings { + hasConsentedToCrossRegionCalls?: boolean; +} +/** + * Additional Chat message context associated with the Chat Message + * @public + */ +export interface UserInputMessageContext { + /** + * Editor state chat message context. + * @public + */ + editorState?: EditorState; + /** + * Shell state chat message context. + * @public + */ + shellState?: ShellState; + /** + * Git state chat message context. + * @public + */ + gitState?: GitState; + /** + * Environment state chat message context. + * @public + */ + envState?: EnvState; + /** + * The state of a user's AppStudio UI when sending a message. + * @public + */ + appStudioContext?: AppStudioState; + /** + * Diagnostic chat message context. + * @public + */ + diagnostic?: Diagnostic; + /** + * Contextual information about the environment from which the user is calling. + * @public + */ + consoleState?: ConsoleState; + /** + * Settings information, e.g., whether the user has enabled cross-region API calls. + * @public + */ + userSettings?: UserSettings; +} +/** + * @internal + */ +export declare const UserInputMessageContextFilterSensitiveLog: (obj: UserInputMessageContext) => any; +/** + * Structure to represent a chat input message from User + * @public + */ +export interface UserInputMessage { + /** + * The content of the chat message. + * @public + */ + content: string | undefined; + /** + * Chat message context associated with the Chat Message + * @public + */ + userInputMessageContext?: UserInputMessageContext; + /** + * User Intent + * @public + */ + userIntent?: UserIntent; +} +/** + * @internal + */ +export declare const UserInputMessageFilterSensitiveLog: (obj: UserInputMessage) => any; +/** + * @public + */ +export type ChatMessage = ChatMessage.AssistantResponseMessageMember | ChatMessage.UserInputMessageMember | ChatMessage.$UnknownMember; +/** + * @public + */ +export declare namespace ChatMessage { + /** + * Structure to represent a chat input message from User + * @public + */ + interface UserInputMessageMember { + userInputMessage: UserInputMessage; + assistantResponseMessage?: never; + $unknown?: never; + } + /** + * Markdown text message. + * @public + */ + interface AssistantResponseMessageMember { + userInputMessage?: never; + assistantResponseMessage: AssistantResponseMessage; + $unknown?: never; + } + /** + * @public + */ + interface $UnknownMember { + userInputMessage?: never; + assistantResponseMessage?: never; + $unknown: [string, any]; + } + interface Visitor { + userInputMessage: (value: UserInputMessage) => T; + assistantResponseMessage: (value: AssistantResponseMessage) => T; + _: (name: string, value: any) => T; + } + const visit: (value: ChatMessage, visitor: Visitor) => T; +} +/** + * @internal + */ +export declare const ChatMessageFilterSensitiveLog: (obj: ChatMessage) => any; +/** + * Streaming response event for generated code text. + * @public + */ +export interface CodeEvent { + /** + * Generated code snippet. + * @public + */ + content: string | undefined; +} +/** + * @internal + */ +export declare const CodeEventFilterSensitiveLog: (obj: CodeEvent) => any; +/** + * Streaming Response Event for CodeReferences + * @public + */ +export interface CodeReferenceEvent { + /** + * Code References for Assistant Response Message + * @public + */ + references?: (Reference)[]; +} +/** + * Streaming Response Event when DryRun is succeessful + * @public + */ +export interface DryRunSucceedEvent { +} +/** + * Streaming Response Event for Followup Prompt. + * @public + */ +export interface FollowupPromptEvent { + /** + * Followup Prompt for the Assistant Response + * @public + */ + followupPrompt?: FollowupPrompt; +} +/** + * @internal + */ +export declare const FollowupPromptEventFilterSensitiveLog: (obj: FollowupPromptEvent) => any; +/** + * @public + * @enum + */ +export declare const IntentType: { + readonly GLUE_SENSEI: "GLUE_SENSEI"; + readonly RESOURCE_DATA: "RESOURCE_DATA"; + readonly SUPPORT: "SUPPORT"; +}; +/** + * @public + */ +export type IntentType = typeof IntentType[keyof typeof IntentType]; +/** + * @public + */ +export type IntentDataType = IntentDataType.StringMember | IntentDataType.$UnknownMember; +/** + * @public + */ +export declare namespace IntentDataType { + interface StringMember { + string: string; + $unknown?: never; + } + /** + * @public + */ + interface $UnknownMember { + string?: never; + $unknown: [string, any]; + } + interface Visitor { + string: (value: string) => T; + _: (name: string, value: any) => T; + } + const visit: (value: IntentDataType, visitor: Visitor) => T; +} +/** + * Streaming Response Event for Intents + * @public + */ +export interface IntentsEvent { + /** + * A map of Intent objects + * @public + */ + intents?: Partial>>; +} +/** + * @internal + */ +export declare const IntentsEventFilterSensitiveLog: (obj: IntentsEvent) => any; +/** + * Structure representing a simple text component with sensitive content, which can include Markdown formatting. + * @public + */ +export interface Text { + /** + * Contains text content that may include sensitive information and can support Markdown formatting. + * @public + */ + content: string | undefined; +} +/** + * @internal + */ +export declare const TextFilterSensitiveLog: (obj: Text) => any; +/** + * @public + */ +export interface AlertComponent { + /** + * Structure representing a simple text component with sensitive content, which can include Markdown formatting. + * @public + */ + text?: Text; +} +/** + * @internal + */ +export declare const AlertComponentFilterSensitiveLog: (obj: AlertComponent) => any; +/** + * @public + * @enum + */ +export declare const AlertType: { + /** + * Alert indicating an error or failure that requires attention. + */ + readonly ERROR: "ERROR"; + /** + * Informational alert providing general information. + */ + readonly INFO: "INFO"; + /** + * Alert indicating a warning or potential issue that should be noted. + */ + readonly WARNING: "WARNING"; +}; +/** + * @public + */ +export type AlertType = typeof AlertType[keyof typeof AlertType]; +/** + * Structure representing an alert with a type and content. + * @public + */ +export interface Alert { + /** + * Enum defining types of alerts that can be issued. + * @public + */ + type: AlertType | undefined; + /** + * Contains the content of the alert, which may include sensitive information. + * @public + */ + content: (AlertComponent)[] | undefined; +} +/** + * @internal + */ +export declare const AlertFilterSensitiveLog: (obj: Alert) => any; +/** + * Structure describing a transition between two states in an infrastructure update. + * @public + */ +export interface InfrastructureUpdateTransition { + /** + * The current state of the infrastructure before the update. + * @public + */ + currentState: string | undefined; + /** + * The next state of the infrastructure following the update. + * @public + */ + nextState: string | undefined; +} +/** + * @internal + */ +export declare const InfrastructureUpdateTransitionFilterSensitiveLog: (obj: InfrastructureUpdateTransition) => any; +/** + * Structure representing different types of infrastructure updates. + * @public + */ +export interface InfrastructureUpdate { + /** + * Structure describing a transition between two states in an infrastructure update. + * @public + */ + transition?: InfrastructureUpdateTransition; +} +/** + * @internal + */ +export declare const InfrastructureUpdateFilterSensitiveLog: (obj: InfrastructureUpdate) => any; +/** + * @public + */ +export interface StepComponent { + /** + * Structure representing a simple text component with sensitive content, which can include Markdown formatting. + * @public + */ + text?: Text; +} +/** + * @internal + */ +export declare const StepComponentFilterSensitiveLog: (obj: StepComponent) => any; +/** + * @public + * @enum + */ +export declare const StepState: { + /** + * Indicates a failure or issue that needs to be addressed. + */ + readonly FAILED: "FAILED"; + /** + * Indicates that the step is currently being processed. This is a non-terminal state, meaning the process is active and ongoing. + */ + readonly IN_PROGRESS: "IN_PROGRESS"; + /** + * Indicates that the step is being loaded or initialized. This is a non-terminal state, meaning the process is in the setup phase. + */ + readonly LOADING: "LOADING"; + /** + * Indicates that the step is temporarily halted but can resume. This is a non-terminal state, representing a temporary pause. + */ + readonly PAUSED: "PAUSED"; + /** + * Indicates that the step is waiting for some condition or input. This is a non-terminal state, meaning the process is paused but not complete. + */ + readonly PENDING: "PENDING"; + /** + * Indicates that the step was stopped, either intentionally or unintentionally. + */ + readonly STOPPED: "STOPPED"; + /** + * Indicates successful completion of the step. + */ + readonly SUCCEEDED: "SUCCEEDED"; +}; +/** + * @public + */ +export type StepState = typeof StepState[keyof typeof StepState]; +/** + * Structure representing an individual step in a process. + * @public + */ +export interface Step { + /** + * A unique identifier for the step. It must be a non-negative integer to ensure each step is distinct. + * @public + */ + id: number | undefined; + /** + * Enum representing all possible step states, combining terminal and non-terminal states. + * @public + */ + state: StepState | undefined; + /** + * A label for the step, providing a concise description. + * @public + */ + label: string | undefined; + /** + * Optional content providing additional details about the step. + * @public + */ + content?: (StepComponent)[]; +} +/** + * @internal + */ +export declare const StepFilterSensitiveLog: (obj: Step) => any; +/** + * @public + */ +export interface ProgressComponent { + /** + * Structure representing an individual step in a process. + * @public + */ + step?: Step; +} +/** + * @internal + */ +export declare const ProgressComponentFilterSensitiveLog: (obj: ProgressComponent) => any; +/** + * Structure representing a collection of steps in a process. + * @public + */ +export interface Progress { + /** + * A collection of steps that make up a process. Each step is detailed using the Step structure. + * @public + */ + content: (ProgressComponent)[] | undefined; +} +/** + * @internal + */ +export declare const ProgressFilterSensitiveLog: (obj: Progress) => any; +/** + * Structure representing a resource item + * @public + */ +export interface Resource { + /** + * Card title. + * @public + */ + title: string | undefined; + /** + * Link for the resource item + * @public + */ + link: string | undefined; + /** + * Short text about that resource for example Region: us-east-1 + * @public + */ + description: string | undefined; + /** + * Resource type e.g AWS EC2 + * @public + */ + type: string | undefined; + /** + * Amazon resource number e.g arn:aws:aec:..... + * @public + */ + ARN: string | undefined; + /** + * A stringified object + * @public + */ + resourceJsonString: string | undefined; +} +/** + * @internal + */ +export declare const ResourceFilterSensitiveLog: (obj: Resource) => any; +/** + * For CloudWatch Troubleshooting Link Module + * @public + */ +export interface CloudWatchTroubleshootingLink { + /** + * A label for the link. + * @public + */ + label: string | undefined; + /** + * Stringified JSON payload. See spec here https://code.amazon.com/packages/CloudWatchOdysseyModel/blobs/50c0832f0e393e4ab68827eb4f04d832366821c1/--/model/events.smithy#L28 . + * @public + */ + investigationPayload: string | undefined; + /** + * Fallback string, if target channel does not support the CloudWatchTroubleshootingLink. + * @public + */ + defaultText?: string; +} +/** + * @internal + */ +export declare const CloudWatchTroubleshootingLinkFilterSensitiveLog: (obj: CloudWatchTroubleshootingLink) => any; +/** + * @public + */ +export type ModuleLink = ModuleLink.CloudWatchTroubleshootingLinkMember | ModuleLink.$UnknownMember; +/** + * @public + */ +export declare namespace ModuleLink { + /** + * For CloudWatch Troubleshooting Link Module + * @public + */ + interface CloudWatchTroubleshootingLinkMember { + cloudWatchTroubleshootingLink: CloudWatchTroubleshootingLink; + $unknown?: never; + } + /** + * @public + */ + interface $UnknownMember { + cloudWatchTroubleshootingLink?: never; + $unknown: [string, any]; + } + interface Visitor { + cloudWatchTroubleshootingLink: (value: CloudWatchTroubleshootingLink) => T; + _: (name: string, value: any) => T; + } + const visit: (value: ModuleLink, visitor: Visitor) => T; +} +/** + * @internal + */ +export declare const ModuleLinkFilterSensitiveLog: (obj: ModuleLink) => any; +/** + * @public + */ +export interface WebLink { + /** + * A label for the link + * @public + */ + label: string | undefined; + /** + * URL of the Weblink + * @public + */ + url: string | undefined; +} +/** + * @internal + */ +export declare const WebLinkFilterSensitiveLog: (obj: WebLink) => any; +/** + * @public + */ +export type Action = Action.ModuleLinkMember | Action.WebLinkMember | Action.$UnknownMember; +/** + * @public + */ +export declare namespace Action { + interface WebLinkMember { + webLink: WebLink; + moduleLink?: never; + $unknown?: never; + } + interface ModuleLinkMember { + webLink?: never; + moduleLink: ModuleLink; + $unknown?: never; + } + /** + * @public + */ + interface $UnknownMember { + webLink?: never; + moduleLink?: never; + $unknown: [string, any]; + } + interface Visitor { + webLink: (value: WebLink) => T; + moduleLink: (value: ModuleLink) => T; + _: (name: string, value: any) => T; + } + const visit: (value: Action, visitor: Visitor) => T; +} +/** + * @internal + */ +export declare const ActionFilterSensitiveLog: (obj: Action) => any; +/** + * Structure representing a list of Items + * @public + */ +export interface ResourceList { + /** + * Action associated with the list + * @public + */ + action?: Action; + /** + * List of resources + * @public + */ + items: (Resource)[] | undefined; +} +/** + * @internal + */ +export declare const ResourceListFilterSensitiveLog: (obj: ResourceList) => any; +/** + * @public + */ +export type SectionComponent = SectionComponent.AlertMember | SectionComponent.ResourceMember | SectionComponent.ResourceListMember | SectionComponent.TextMember | SectionComponent.$UnknownMember; +/** + * @public + */ +export declare namespace SectionComponent { + /** + * Structure representing a simple text component with sensitive content, which can include Markdown formatting. + * @public + */ + interface TextMember { + text: Text; + alert?: never; + resource?: never; + resourceList?: never; + $unknown?: never; + } + /** + * Structure representing an alert with a type and content. + * @public + */ + interface AlertMember { + text?: never; + alert: Alert; + resource?: never; + resourceList?: never; + $unknown?: never; + } + /** + * Structure representing a resource item + * @public + */ + interface ResourceMember { + text?: never; + alert?: never; + resource: Resource; + resourceList?: never; + $unknown?: never; + } + /** + * Structure representing a list of Items + * @public + */ + interface ResourceListMember { + text?: never; + alert?: never; + resource?: never; + resourceList: ResourceList; + $unknown?: never; + } + /** + * @public + */ + interface $UnknownMember { + text?: never; + alert?: never; + resource?: never; + resourceList?: never; + $unknown: [string, any]; + } + interface Visitor { + text: (value: Text) => T; + alert: (value: Alert) => T; + resource: (value: Resource) => T; + resourceList: (value: ResourceList) => T; + _: (name: string, value: any) => T; + } + const visit: (value: SectionComponent, visitor: Visitor) => T; +} +/** + * @internal + */ +export declare const SectionComponentFilterSensitiveLog: (obj: SectionComponent) => any; +/** + * Structure representing a collapsable section + * @public + */ +export interface Section { + /** + * Contains text content that may include sensitive information and can support Markdown formatting. + * @public + */ + title: string | undefined; + /** + * Contains a list of interaction components e.g Text, Alert ,List ...etc + * @public + */ + content: (SectionComponent)[] | undefined; +} +/** + * @internal + */ +export declare const SectionFilterSensitiveLog: (obj: Section) => any; +/** + * Structure representing a suggestion for follow-ups. + * @public + */ +export interface Suggestion { + value: string | undefined; +} +/** + * Structure containing a list of suggestions. + * @public + */ +export interface Suggestions { + items: (Suggestion)[] | undefined; +} +/** + * Structure representing a confirmation message related to a task action. + * @public + */ +export interface TaskActionConfirmation { + /** + * Confirmation message related to the action note, which may include sensitive information. + * @public + */ + content?: string; +} +/** + * @internal + */ +export declare const TaskActionConfirmationFilterSensitiveLog: (obj: TaskActionConfirmation) => any; +/** + * @public + * @enum + */ +export declare const TaskActionNoteType: { + /** + * Information note providing general details. + */ + readonly INFO: "INFO"; + /** + * Warning note indicating a potential issue. + */ + readonly WARNING: "WARNING"; +}; +/** + * @public + */ +export type TaskActionNoteType = typeof TaskActionNoteType[keyof typeof TaskActionNoteType]; +/** + * Structure representing a note associated with a task action. + * @public + */ +export interface TaskActionNote { + /** + * Content of the note, which may include sensitive information. + * @public + */ + content: string | undefined; + /** + * Enum defining the types of notes that can be associated with a task action. + * @public + */ + type?: TaskActionNoteType; +} +/** + * @internal + */ +export declare const TaskActionNoteFilterSensitiveLog: (obj: TaskActionNote) => any; +/** + * Structure representing an action associated with a task. + * @public + */ +export interface TaskAction { + /** + * A label for the action. + * @public + */ + label: string | undefined; + /** + * Structure representing a note associated with a task action. + * @public + */ + note?: TaskActionNote; + /** + * Indicates whether the action is primary or not. + * @public + */ + primary?: boolean; + /** + * Indicates whether the action is disabled or not. + * @public + */ + disabled?: boolean; + /** + * Map representing key-value pairs for the payload of a task action. + * @public + */ + payload: Record | undefined; + /** + * Structure representing a confirmation message related to a task action. + * @public + */ + confirmation?: TaskActionConfirmation; +} +/** + * @internal + */ +export declare const TaskActionFilterSensitiveLog: (obj: TaskAction) => any; +/** + * Structure representing different types of components that can be part of a task. + * @public + */ +export interface TaskComponent { + /** + * Structure representing a simple text component with sensitive content, which can include Markdown formatting. + * @public + */ + text?: Text; + /** + * Structure representing different types of infrastructure updates. + * @public + */ + infrastructureUpdate?: InfrastructureUpdate; + /** + * Structure representing an alert with a type and content. + * @public + */ + alert?: Alert; + /** + * Structure representing a collection of steps in a process. + * @public + */ + progress?: Progress; +} +/** + * @internal + */ +export declare const TaskComponentFilterSensitiveLog: (obj: TaskComponent) => any; +/** + * Structure representing an overview of a task, including a label and description. + * @public + */ +export interface TaskOverview { + /** + * A label for the task overview. + * @public + */ + label: string | undefined; + /** + * Text description providing details about the task. This field may include sensitive information and supports Markdown formatting. + * @public + */ + description: string | undefined; +} +/** + * @internal + */ +export declare const TaskOverviewFilterSensitiveLog: (obj: TaskOverview) => any; +/** + * Structure containing details about a task. + * @public + */ +export interface TaskDetails { + /** + * Structure representing an overview of a task, including a label and description. + * @public + */ + overview: TaskOverview | undefined; + /** + * Lists the components that can be used to form the task's content. + * @public + */ + content: (TaskComponent)[] | undefined; + /** + * Optional list of actions associated with the task. + * @public + */ + actions?: (TaskAction)[]; +} +/** + * @internal + */ +export declare const TaskDetailsFilterSensitiveLog: (obj: TaskDetails) => any; +/** + * Structure representing a reference to a task. + * @public + */ +export interface TaskReference { + /** + * Unique identifier for the task. + * @public + */ + taskId: string | undefined; +} +/** + * Structure representing different types of interaction components. + * @public + */ +export interface InteractionComponent { + /** + * Structure representing a simple text component with sensitive content, which can include Markdown formatting. + * @public + */ + text?: Text; + /** + * Structure representing an alert with a type and content. + * @public + */ + alert?: Alert; + /** + * Structure representing different types of infrastructure updates. + * @public + */ + infrastructureUpdate?: InfrastructureUpdate; + /** + * Structure representing a collection of steps in a process. + * @public + */ + progress?: Progress; + /** + * Structure representing an individual step in a process. + * @public + */ + step?: Step; + /** + * Structure containing details about a task. + * @public + */ + taskDetails?: TaskDetails; + /** + * Structure representing a reference to a task. + * @public + */ + taskReference?: TaskReference; + /** + * Structure containing a list of suggestions. + * @public + */ + suggestions?: Suggestions; + /** + * Structure representing a collapsable section + * @public + */ + section?: Section; + /** + * Structure representing a resource item + * @public + */ + resource?: Resource; + /** + * Structure representing a list of Items + * @public + */ + resourceList?: ResourceList; +} +/** + * @internal + */ +export declare const InteractionComponentFilterSensitiveLog: (obj: InteractionComponent) => any; +/** + * Interaction component with an identifier + * @public + */ +export interface InteractionComponentEntry { + /** + * Identifier that can uniquely identify the interaction component within + * stream response. This field is optional. + * @public + */ + interactionComponentId?: string; + /** + * Interaction component + * @public + */ + interactionComponent: InteractionComponent | undefined; +} +/** + * @internal + */ +export declare const InteractionComponentEntryFilterSensitiveLog: (obj: InteractionComponentEntry) => any; +/** + * Streaming Event for interaction components list + * @public + */ +export interface InteractionComponentsEvent { + /** + * List of identifiable interaction components + * @public + */ + interactionComponentEntries: (InteractionComponentEntry)[] | undefined; +} +/** + * @internal + */ +export declare const InteractionComponentsEventFilterSensitiveLog: (obj: InteractionComponentsEvent) => any; +/** + * @public + * @enum + */ +export declare const InvalidStateReason: { + readonly INVALID_TASK_ASSIST_PLAN: "INVALID_TASK_ASSIST_PLAN"; +}; +/** + * @public + */ +export type InvalidStateReason = typeof InvalidStateReason[keyof typeof InvalidStateReason]; +/** + * Streaming Response Event when an Invalid State is reached + * @public + */ +export interface InvalidStateEvent { + /** + * Reasons for Invalid State Event + * @public + */ + reason: InvalidStateReason | undefined; + message: string | undefined; +} +/** + * Streaming Response Event for AssistantResponse Metadata + * @public + */ +export interface MessageMetadataEvent { + /** + * Unique identifier for the conversation + * @public + */ + conversationId?: string; + /** + * Unique identifier for the utterance + * @public + */ + utteranceId?: string; +} +/** + * Streaming Response Event for SupplementaryWebLinks + * @public + */ +export interface SupplementaryWebLinksEvent { + /** + * Web References for Assistant Response Message + * @public + */ + supplementaryWebLinks?: (SupplementaryWebLink)[]; +} +/** + * @internal + */ +export declare const SupplementaryWebLinksEventFilterSensitiveLog: (obj: SupplementaryWebLinksEvent) => any; +/** + * Streaming events from UniDirectional Streaming Conversational APIs. + * @public + */ +export type ChatResponseStream = ChatResponseStream.AssistantResponseEventMember | ChatResponseStream.CodeEventMember | ChatResponseStream.CodeReferenceEventMember | ChatResponseStream.DryRunSucceedEventMember | ChatResponseStream.ErrorMember | ChatResponseStream.FollowupPromptEventMember | ChatResponseStream.IntentsEventMember | ChatResponseStream.InteractionComponentsEventMember | ChatResponseStream.InvalidStateEventMember | ChatResponseStream.MessageMetadataEventMember | ChatResponseStream.SupplementaryWebLinksEventMember | ChatResponseStream.$UnknownMember; +/** + * @public + */ +export declare namespace ChatResponseStream { + /** + * Message Metadata event + * @public + */ + interface MessageMetadataEventMember { + messageMetadataEvent: MessageMetadataEvent; + assistantResponseEvent?: never; + dryRunSucceedEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + interactionComponentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + /** + * Assistant response event - Text / Code snippet + * @public + */ + interface AssistantResponseEventMember { + messageMetadataEvent?: never; + assistantResponseEvent: AssistantResponseEvent; + dryRunSucceedEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + interactionComponentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + /** + * DryRun Succeed Event + * @public + */ + interface DryRunSucceedEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + dryRunSucceedEvent: DryRunSucceedEvent; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + interactionComponentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + /** + * Code References event + * @public + */ + interface CodeReferenceEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + dryRunSucceedEvent?: never; + codeReferenceEvent: CodeReferenceEvent; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + interactionComponentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + /** + * Web Reference links event + * @public + */ + interface SupplementaryWebLinksEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + dryRunSucceedEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent: SupplementaryWebLinksEvent; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + interactionComponentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + /** + * Followup prompt event + * @public + */ + interface FollowupPromptEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + dryRunSucceedEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent: FollowupPromptEvent; + codeEvent?: never; + intentsEvent?: never; + interactionComponentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + /** + * Code Generated event + * @public + */ + interface CodeEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + dryRunSucceedEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent: CodeEvent; + intentsEvent?: never; + interactionComponentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + /** + * Intents event + * @public + */ + interface IntentsEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + dryRunSucceedEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent: IntentsEvent; + interactionComponentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + /** + * Interactions components event + * @public + */ + interface InteractionComponentsEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + dryRunSucceedEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + interactionComponentsEvent: InteractionComponentsEvent; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + /** + * Invalid State event + * @public + */ + interface InvalidStateEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + dryRunSucceedEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + interactionComponentsEvent?: never; + invalidStateEvent: InvalidStateEvent; + error?: never; + $unknown?: never; + } + /** + * Internal Server Exception + * @public + */ + interface ErrorMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + dryRunSucceedEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + interactionComponentsEvent?: never; + invalidStateEvent?: never; + error: InternalServerException; + $unknown?: never; + } + /** + * @public + */ + interface $UnknownMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + dryRunSucceedEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + interactionComponentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown: [string, any]; + } + interface Visitor { + messageMetadataEvent: (value: MessageMetadataEvent) => T; + assistantResponseEvent: (value: AssistantResponseEvent) => T; + dryRunSucceedEvent: (value: DryRunSucceedEvent) => T; + codeReferenceEvent: (value: CodeReferenceEvent) => T; + supplementaryWebLinksEvent: (value: SupplementaryWebLinksEvent) => T; + followupPromptEvent: (value: FollowupPromptEvent) => T; + codeEvent: (value: CodeEvent) => T; + intentsEvent: (value: IntentsEvent) => T; + interactionComponentsEvent: (value: InteractionComponentsEvent) => T; + invalidStateEvent: (value: InvalidStateEvent) => T; + error: (value: InternalServerException) => T; + _: (name: string, value: any) => T; + } + const visit: (value: ChatResponseStream, visitor: Visitor) => T; +} +/** + * @internal + */ +export declare const ChatResponseStreamFilterSensitiveLog: (obj: ChatResponseStream) => any; +/** + * @public + * @enum + */ +export declare const ChatTriggerType: { + /** + * Indicates the Chat was triggered in response to a IDE diagnostic + */ + readonly DIAGNOSTIC: "DIAGNOSTIC"; + /** + * Indicates the Chat was triggered in response to an inline chat event + */ + readonly INLINE_CHAT: "INLINE_CHAT"; + /** + * Indicates the Chat was triggered due to an explicit chat request by an end-user + */ + readonly MANUAL: "MANUAL"; +}; +/** + * @public + */ +export type ChatTriggerType = typeof ChatTriggerType[keyof typeof ChatTriggerType]; +/** + * CommandInput can be extended to either a list of strings or a single string. + * @public + */ +export type CommandInput = CommandInput.CommandsListMember | CommandInput.$UnknownMember; +/** + * @public + */ +export declare namespace CommandInput { + /** + * The list of context items used to generate output. + * @public + */ + interface CommandsListMember { + commandsList: (string)[]; + $unknown?: never; + } + /** + * @public + */ + interface $UnknownMember { + commandsList?: never; + $unknown: [string, any]; + } + interface Visitor { + commandsList: (value: (string)[]) => T; + _: (name: string, value: any) => T; + } + const visit: (value: CommandInput, visitor: Visitor) => T; +} +/** + * @internal + */ +export declare const CommandInputFilterSensitiveLog: (obj: CommandInput) => any; +/** + * Structure to represent the current state of a chat conversation. + * @public + */ +export interface ConversationState { + /** + * Unique identifier for the chat conversation stream + * @public + */ + conversationId?: string; + /** + * Holds the history of chat messages. + * @public + */ + history?: (ChatMessage)[]; + /** + * Holds the current message being processed or displayed. + * @public + */ + currentMessage: ChatMessage | undefined; + /** + * Trigger Reason for Chat + * @public + */ + chatTriggerType: ChatTriggerType | undefined; + customizationArn?: string; +} +/** + * @internal + */ +export declare const ConversationStateFilterSensitiveLog: (obj: ConversationState) => any; +/** + * This exception is translated to a 204 as it succeeded the IAM Auth. + * @public + */ +export declare class DryRunOperationException extends __BaseException { + readonly name: "DryRunOperationException"; + readonly $fault: "client"; + responseCode?: number; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType); +} +/** + * @public + * @enum + */ +export declare const OutputFormat: { + readonly JAVA_CDK: "java/cdk"; + readonly JSON_CFN: "json/cfn"; + readonly PYTHON_CDK: "python/cdk"; + readonly TYPESCRIPT_CDK: "typescript/cdk"; + readonly YAML_CFN: "yaml/cfn"; +}; +/** + * @public + */ +export type OutputFormat = typeof OutputFormat[keyof typeof OutputFormat]; +/** + * This exception is thrown when request was denied due to caller exceeding their usage limits + * @public + */ +export declare class ServiceQuotaExceededException extends __BaseException { + readonly name: "ServiceQuotaExceededException"; + readonly $fault: "client"; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType); +} +/** + * @public + * @enum + */ +export declare const Origin: { + /** + * AWS Chatbot + */ + readonly CHATBOT: "CHATBOT"; + /** + * AWS Management Console (https://.console.aws.amazon.com) + */ + readonly CONSOLE: "CONSOLE"; + /** + * AWS Documentation Website (https://docs.aws.amazon.com) + */ + readonly DOCUMENTATION: "DOCUMENTATION"; + /** + * Any IDE caller. + */ + readonly IDE: "IDE"; + /** + * AWS Marketing Website (https://aws.amazon.com) + */ + readonly MARKETING: "MARKETING"; + /** + * MD. + */ + readonly MD: "MD"; + /** + * AWS Mobile Application (ACMA) + */ + readonly MOBILE: "MOBILE"; + /** + * Internal Service Traffic (Integ Tests, Canaries, etc.). This is the default when no Origin header present in request. + */ + readonly SERVICE_INTERNAL: "SERVICE_INTERNAL"; + /** + * Unified Search in AWS Management Console (https://.console.aws.amazon.com) + */ + readonly UNIFIED_SEARCH: "UNIFIED_SEARCH"; + /** + * Origin header is not set. + */ + readonly UNKNOWN: "UNKNOWN"; +}; +/** + * @public + */ +export type Origin = typeof Origin[keyof typeof Origin]; +/** + * Structure to represent a SendMessage request. + * @public + */ +export interface SendMessageRequest { + /** + * Structure to represent the current state of a chat conversation. + * @public + */ + conversationState: ConversationState | undefined; + profileArn?: string; + /** + * The origin of the caller + * @public + */ + source?: Origin; + dryRun?: boolean; +} +/** + * @internal + */ +export declare const SendMessageRequestFilterSensitiveLog: (obj: SendMessageRequest) => any; +/** + * Structure to represent a SendMessage response. + * @public + */ +export interface SendMessageResponse { + /** + * Streaming events from UniDirectional Streaming Conversational APIs. + * @public + */ + sendMessageResponse: AsyncIterable | undefined; +} +/** + * @internal + */ +export declare const SendMessageResponseFilterSensitiveLog: (obj: SendMessageResponse) => any; +/** + * @public + */ +export interface GenerateCodeFromCommandsRequest { + /** + * Format of the output - language/format eg. typescript/cdk + * @public + */ + outputFormat: OutputFormat | undefined; + /** + * CommandInput can be extended to either a list of strings or a single string. + * @public + */ + commands: CommandInput | undefined; +} +/** + * @internal + */ +export declare const GenerateCodeFromCommandsRequestFilterSensitiveLog: (obj: GenerateCodeFromCommandsRequest) => any; +/** + * Streaming events from UniDirectional streaming infrastructure code generation APIs. + * @public + */ +export type GenerateCodeFromCommandsResponseStream = GenerateCodeFromCommandsResponseStream.ErrorMember | GenerateCodeFromCommandsResponseStream.QuotaLevelExceededErrorMember | GenerateCodeFromCommandsResponseStream.ValidationErrorMember | GenerateCodeFromCommandsResponseStream.CodeEventMember | GenerateCodeFromCommandsResponseStream.$UnknownMember; +/** + * @public + */ +export declare namespace GenerateCodeFromCommandsResponseStream { + /** + * Generated code snippet + * @public + */ + interface CodeEventMember { + codeEvent: CodeEvent; + Error?: never; + QuotaLevelExceededError?: never; + ValidationError?: never; + $unknown?: never; + } + /** + * Internal Server Exception + * @public + */ + interface ErrorMember { + codeEvent?: never; + Error: InternalServerException; + QuotaLevelExceededError?: never; + ValidationError?: never; + $unknown?: never; + } + /** + * Exceptions for quota level exceeded errors + * @public + */ + interface QuotaLevelExceededErrorMember { + codeEvent?: never; + Error?: never; + QuotaLevelExceededError: ServiceQuotaExceededException; + ValidationError?: never; + $unknown?: never; + } + /** + * Validation errors in the ConsoleToCodeService + * @public + */ + interface ValidationErrorMember { + codeEvent?: never; + Error?: never; + QuotaLevelExceededError?: never; + ValidationError: ValidationException; + $unknown?: never; + } + /** + * @public + */ + interface $UnknownMember { + codeEvent?: never; + Error?: never; + QuotaLevelExceededError?: never; + ValidationError?: never; + $unknown: [string, any]; + } + interface Visitor { + codeEvent: (value: CodeEvent) => T; + Error: (value: InternalServerException) => T; + QuotaLevelExceededError: (value: ServiceQuotaExceededException) => T; + ValidationError: (value: ValidationException) => T; + _: (name: string, value: any) => T; + } + const visit: (value: GenerateCodeFromCommandsResponseStream, visitor: Visitor) => T; +} +/** + * @internal + */ +export declare const GenerateCodeFromCommandsResponseStreamFilterSensitiveLog: (obj: GenerateCodeFromCommandsResponseStream) => any; +/** + * Structure to represent generated code response. + * @public + */ +export interface GenerateCodeFromCommandsResponse { + /** + * Streaming events from UniDirectional streaming infrastructure code generation APIs. + * @public + */ + generatedCodeFromCommandsResponse: AsyncIterable | undefined; +} +/** + * @internal + */ +export declare const GenerateCodeFromCommandsResponseFilterSensitiveLog: (obj: GenerateCodeFromCommandsResponse) => any; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/protocols/Aws_json1_0.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/protocols/Aws_json1_0.d.ts new file mode 100644 index 00000000000..8507423a857 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/protocols/Aws_json1_0.d.ts @@ -0,0 +1,20 @@ +import { GenerateCodeFromCommandsCommandInput, GenerateCodeFromCommandsCommandOutput } from "../commands/GenerateCodeFromCommandsCommand"; +import { SendMessageCommandInput, SendMessageCommandOutput } from "../commands/SendMessageCommand"; +import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http"; +import { EventStreamSerdeContext as __EventStreamSerdeContext, SerdeContext as __SerdeContext } from "@smithy/types"; +/** + * serializeAws_json1_0GenerateCodeFromCommandsCommand + */ +export declare const se_GenerateCodeFromCommandsCommand: (input: GenerateCodeFromCommandsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>; +/** + * serializeAws_json1_0SendMessageCommand + */ +export declare const se_SendMessageCommand: (input: SendMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>; +/** + * deserializeAws_json1_0GenerateCodeFromCommandsCommand + */ +export declare const de_GenerateCodeFromCommandsCommand: (output: __HttpResponse, context: __SerdeContext & __EventStreamSerdeContext) => Promise; +/** + * deserializeAws_json1_0SendMessageCommand + */ +export declare const de_SendMessageCommand: (output: __HttpResponse, context: __SerdeContext & __EventStreamSerdeContext) => Promise; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.browser.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.browser.d.ts new file mode 100644 index 00000000000..ef3b9b0342b --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.browser.d.ts @@ -0,0 +1,45 @@ +import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler"; +import { QDeveloperStreamingClientConfig } from "./QDeveloperStreamingClient"; +/** + * @internal + */ +export declare const getRuntimeConfig: (config: QDeveloperStreamingClientConfig) => { + runtime: string; + defaultsMode: import("@smithy/types").Provider; + bodyLengthChecker: import("@smithy/types").BodyLengthCalculator; + credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider; + defaultUserAgentProvider: import("@smithy/types").Provider; + eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider; + maxAttempts: number | import("@smithy/types").Provider; + region: string | import("@smithy/types").Provider; + requestHandler: import("@smithy/protocol-http").HttpHandler | RequestHandler; + retryMode: string | import("@smithy/types").Provider; + sha256: import("@smithy/types").HashConstructor; + streamCollector: import("@smithy/types").StreamCollector; + useDualstackEndpoint: boolean | import("@smithy/types").Provider; + useFipsEndpoint: boolean | import("@smithy/types").Provider; + apiVersion: string; + cacheMiddleware?: boolean | undefined; + urlParser: import("@smithy/types").UrlParser; + base64Decoder: import("@smithy/types").Decoder; + base64Encoder: (_input: string | Uint8Array) => string; + utf8Decoder: import("@smithy/types").Decoder; + utf8Encoder: (input: string | Uint8Array) => string; + disableHostPrefix: boolean; + serviceId: string; + regionInfoProvider: import("@smithy/types").RegionInfoProvider; + logger: import("@smithy/types").Logger; + extensions: import("./runtimeExtensions").RuntimeExtension[]; + customUserAgent?: string | import("@smithy/types").UserAgent | undefined; + retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined; + endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider | undefined; + tls?: boolean | undefined; + httpAuthSchemes: import("@smithy/types").HttpAuthScheme[]; + httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").QDeveloperStreamingHttpAuthSchemeProvider; + credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined; + signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise) | undefined; + signingEscapePath?: boolean | undefined; + systemClockOffset?: number | undefined; + signingRegion?: string | undefined; + signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined; +}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.d.ts new file mode 100644 index 00000000000..fda90f053d8 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.d.ts @@ -0,0 +1,45 @@ +import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler"; +import { QDeveloperStreamingClientConfig } from "./QDeveloperStreamingClient"; +/** + * @internal + */ +export declare const getRuntimeConfig: (config: QDeveloperStreamingClientConfig) => { + runtime: string; + defaultsMode: import("@smithy/types").Provider; + bodyLengthChecker: import("@smithy/types").BodyLengthCalculator; + credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider; + defaultUserAgentProvider: import("@smithy/types").Provider; + eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider; + maxAttempts: number | import("@smithy/types").Provider; + region: string | import("@smithy/types").Provider; + requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler; + retryMode: string | import("@smithy/types").Provider; + sha256: import("@smithy/types").HashConstructor; + streamCollector: import("@smithy/types").StreamCollector; + useDualstackEndpoint: boolean | import("@smithy/types").Provider; + useFipsEndpoint: boolean | import("@smithy/types").Provider; + apiVersion: string; + cacheMiddleware?: boolean | undefined; + urlParser: import("@smithy/types").UrlParser; + base64Decoder: import("@smithy/types").Decoder; + base64Encoder: (_input: string | Uint8Array) => string; + utf8Decoder: import("@smithy/types").Decoder; + utf8Encoder: (input: string | Uint8Array) => string; + disableHostPrefix: boolean; + serviceId: string; + regionInfoProvider: import("@smithy/types").RegionInfoProvider; + logger: import("@smithy/types").Logger; + extensions: import("./runtimeExtensions").RuntimeExtension[]; + customUserAgent?: string | import("@smithy/types").UserAgent | undefined; + retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined; + endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider | undefined; + tls?: boolean | undefined; + httpAuthSchemes: import("@smithy/types").HttpAuthScheme[]; + httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").QDeveloperStreamingHttpAuthSchemeProvider; + credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined; + signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise) | undefined; + signingEscapePath?: boolean | undefined; + systemClockOffset?: number | undefined; + signingRegion?: string | undefined; + signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined; +}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.native.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.native.d.ts new file mode 100644 index 00000000000..14b97c82895 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.native.d.ts @@ -0,0 +1,44 @@ +import { QDeveloperStreamingClientConfig } from "./QDeveloperStreamingClient"; +/** + * @internal + */ +export declare const getRuntimeConfig: (config: QDeveloperStreamingClientConfig) => { + runtime: string; + sha256: import("@smithy/types").HashConstructor; + requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record | import("@smithy/protocol-http").HttpHandler | import("@smithy/fetch-http-handler").FetchHttpHandler; + apiVersion: string; + cacheMiddleware?: boolean | undefined; + urlParser: import("@smithy/types").UrlParser; + bodyLengthChecker: import("@smithy/types").BodyLengthCalculator; + streamCollector: import("@smithy/types").StreamCollector; + base64Decoder: import("@smithy/types").Decoder; + base64Encoder: (_input: string | Uint8Array) => string; + utf8Decoder: import("@smithy/types").Decoder; + utf8Encoder: (input: string | Uint8Array) => string; + disableHostPrefix: boolean; + serviceId: string; + useDualstackEndpoint: boolean | import("@smithy/types").Provider; + useFipsEndpoint: boolean | import("@smithy/types").Provider; + region: string | import("@smithy/types").Provider; + regionInfoProvider: import("@smithy/types").RegionInfoProvider; + defaultUserAgentProvider: import("@smithy/types").Provider; + credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider; + maxAttempts: number | import("@smithy/types").Provider; + retryMode: string | import("@smithy/types").Provider; + logger: import("@smithy/types").Logger; + extensions: import("./runtimeExtensions").RuntimeExtension[]; + eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider; + defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider; + customUserAgent?: string | import("@smithy/types").UserAgent | undefined; + retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined; + endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider | undefined; + tls?: boolean | undefined; + httpAuthSchemes: import("@smithy/types").HttpAuthScheme[]; + httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").QDeveloperStreamingHttpAuthSchemeProvider; + credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined; + signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise) | undefined; + signingEscapePath?: boolean | undefined; + systemClockOffset?: number | undefined; + signingRegion?: string | undefined; + signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined; +}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.shared.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.shared.d.ts new file mode 100644 index 00000000000..43b4153a5f8 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.shared.d.ts @@ -0,0 +1,19 @@ +import { QDeveloperStreamingClientConfig } from "./QDeveloperStreamingClient"; +/** + * @internal + */ +export declare const getRuntimeConfig: (config: QDeveloperStreamingClientConfig) => { + apiVersion: string; + base64Decoder: import("@smithy/types").Decoder; + base64Encoder: (_input: string | Uint8Array) => string; + disableHostPrefix: boolean; + extensions: import("./runtimeExtensions").RuntimeExtension[]; + httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").QDeveloperStreamingHttpAuthSchemeProvider; + httpAuthSchemes: import("@smithy/types").HttpAuthScheme[]; + logger: import("@smithy/types").Logger; + regionInfoProvider: import("@smithy/types").RegionInfoProvider; + serviceId: string; + urlParser: import("@smithy/types").UrlParser; + utf8Decoder: import("@smithy/types").Decoder; + utf8Encoder: (input: string | Uint8Array) => string; +}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeExtensions.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeExtensions.d.ts new file mode 100644 index 00000000000..3fbb918fdcc --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeExtensions.d.ts @@ -0,0 +1,17 @@ +import { QDeveloperStreamingExtensionConfiguration } from "./extensionConfiguration"; +/** + * @public + */ +export interface RuntimeExtension { + configure(extensionConfiguration: QDeveloperStreamingExtensionConfiguration): void; +} +/** + * @public + */ +export interface RuntimeExtensionsConfig { + extensions: RuntimeExtension[]; +} +/** + * @internal + */ +export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/package-lock.json b/src.gen/@amzn/amazon-q-developer-streaming-client/package-lock.json new file mode 100644 index 00000000000..8b236aaa9b6 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/package-lock.json @@ -0,0 +1,1895 @@ +{ + "name": "@amzn/amazon-q-developer-streaming-client", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "@amzn/amazon-q-developer-streaming-client", + "version": "1.0.0", + "hasInstallScript": true, + "dependencies": { + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/client-sso-oidc": "3.658.1", + "@aws-sdk/client-sts": "3.658.1", + "@aws-sdk/core": "3.658.1", + "@aws-sdk/credential-provider-node": "3.658.1", + "@aws-sdk/middleware-host-header": "3.654.0", + "@aws-sdk/middleware-logger": "3.654.0", + "@aws-sdk/middleware-recursion-detection": "3.654.0", + "@aws-sdk/middleware-user-agent": "3.654.0", + "@aws-sdk/region-config-resolver": "3.654.0", + "@aws-sdk/types": "3.654.0", + "@aws-sdk/util-user-agent-browser": "3.654.0", + "@aws-sdk/util-user-agent-node": "3.654.0", + "@smithy/config-resolver": "^3.0.8", + "@smithy/core": "^2.4.6", + "@smithy/eventstream-serde-browser": "^3.0.9", + "@smithy/eventstream-serde-config-resolver": "^3.0.6", + "@smithy/eventstream-serde-node": "^3.0.8", + "@smithy/fetch-http-handler": "^3.2.8", + "@smithy/hash-node": "^3.0.6", + "@smithy/invalid-dependency": "^3.0.6", + "@smithy/middleware-content-length": "^3.0.8", + "@smithy/middleware-retry": "^3.0.21", + "@smithy/middleware-serde": "^3.0.6", + "@smithy/middleware-stack": "^3.0.6", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/node-http-handler": "^3.2.3", + "@smithy/protocol-http": "^4.1.3", + "@smithy/smithy-client": "^3.3.5", + "@smithy/types": "^3.4.2", + "@smithy/url-parser": "^3.0.6", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.21", + "@smithy/util-defaults-mode-node": "^3.0.21", + "@smithy/util-middleware": "^3.0.6", + "@smithy/util-retry": "^3.0.6", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2", + "uuid": "^9.0.1" + }, + "devDependencies": { + "@tsconfig/node16": "16.1.3", + "@types/node": "^16.18.96", + "@types/uuid": "^9.0.4", + "concurrently": "7.0.0", + "downlevel-dts": "0.10.1", + "rimraf": "^3.0.0", + "typescript": "~4.9.5" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-crypto/crc32": { + "version": "5.2.0", + "integrity": "sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/util": "^5.2.0", + "@aws-sdk/types": "^3.222.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-crypto/sha256-browser": { + "version": "5.2.0", + "integrity": "sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/sha256-js": "^5.2.0", + "@aws-crypto/supports-web-crypto": "^5.2.0", + "@aws-crypto/util": "^5.2.0", + "@aws-sdk/types": "^3.222.0", + "@aws-sdk/util-locate-window": "^3.0.0", + "@smithy/util-utf8": "^2.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer": { + "version": "2.2.0", + "integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from": { + "version": "2.2.0", + "integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/is-array-buffer": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8": { + "version": "2.3.0", + "integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-crypto/sha256-js": { + "version": "5.2.0", + "integrity": "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/util": "^5.2.0", + "@aws-sdk/types": "^3.222.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-crypto/supports-web-crypto": { + "version": "5.2.0", + "integrity": "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-crypto/util": { + "version": "5.2.0", + "integrity": "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "^3.222.0", + "@smithy/util-utf8": "^2.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer": { + "version": "2.2.0", + "integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from": { + "version": "2.2.0", + "integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/is-array-buffer": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8": { + "version": "2.3.0", + "integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@aws-sdk/client-sso": { + "version": "3.658.1", + "integrity": "sha512-lOuaBtqPTYGn6xpXlQF4LsNDsQ8Ij2kOdnk+i69Kp6yS76TYvtUuukyLL5kx8zE1c8WbYtxj9y8VNw9/6uKl7Q==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/core": "3.658.1", + "@aws-sdk/middleware-host-header": "3.654.0", + "@aws-sdk/middleware-logger": "3.654.0", + "@aws-sdk/middleware-recursion-detection": "3.654.0", + "@aws-sdk/middleware-user-agent": "3.654.0", + "@aws-sdk/region-config-resolver": "3.654.0", + "@aws-sdk/types": "3.654.0", + "@aws-sdk/util-endpoints": "3.654.0", + "@aws-sdk/util-user-agent-browser": "3.654.0", + "@aws-sdk/util-user-agent-node": "3.654.0", + "@smithy/config-resolver": "^3.0.8", + "@smithy/core": "^2.4.6", + "@smithy/fetch-http-handler": "^3.2.8", + "@smithy/hash-node": "^3.0.6", + "@smithy/invalid-dependency": "^3.0.6", + "@smithy/middleware-content-length": "^3.0.8", + "@smithy/middleware-endpoint": "^3.1.3", + "@smithy/middleware-retry": "^3.0.21", + "@smithy/middleware-serde": "^3.0.6", + "@smithy/middleware-stack": "^3.0.6", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/node-http-handler": "^3.2.3", + "@smithy/protocol-http": "^4.1.3", + "@smithy/smithy-client": "^3.3.5", + "@smithy/types": "^3.4.2", + "@smithy/url-parser": "^3.0.6", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.21", + "@smithy/util-defaults-mode-node": "^3.0.21", + "@smithy/util-endpoints": "^2.1.2", + "@smithy/util-middleware": "^3.0.6", + "@smithy/util-retry": "^3.0.6", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/client-sso-oidc": { + "version": "3.658.1", + "integrity": "sha512-RGcZAI3qEA05JszPKwa0cAyp8rnS1nUvs0Sqw4hqLNQ1kD7b7V6CPjRXe7EFQqCOMvM4kGqx0+cEEVTOmBsFLw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/core": "3.658.1", + "@aws-sdk/credential-provider-node": "3.658.1", + "@aws-sdk/middleware-host-header": "3.654.0", + "@aws-sdk/middleware-logger": "3.654.0", + "@aws-sdk/middleware-recursion-detection": "3.654.0", + "@aws-sdk/middleware-user-agent": "3.654.0", + "@aws-sdk/region-config-resolver": "3.654.0", + "@aws-sdk/types": "3.654.0", + "@aws-sdk/util-endpoints": "3.654.0", + "@aws-sdk/util-user-agent-browser": "3.654.0", + "@aws-sdk/util-user-agent-node": "3.654.0", + "@smithy/config-resolver": "^3.0.8", + "@smithy/core": "^2.4.6", + "@smithy/fetch-http-handler": "^3.2.8", + "@smithy/hash-node": "^3.0.6", + "@smithy/invalid-dependency": "^3.0.6", + "@smithy/middleware-content-length": "^3.0.8", + "@smithy/middleware-endpoint": "^3.1.3", + "@smithy/middleware-retry": "^3.0.21", + "@smithy/middleware-serde": "^3.0.6", + "@smithy/middleware-stack": "^3.0.6", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/node-http-handler": "^3.2.3", + "@smithy/protocol-http": "^4.1.3", + "@smithy/smithy-client": "^3.3.5", + "@smithy/types": "^3.4.2", + "@smithy/url-parser": "^3.0.6", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.21", + "@smithy/util-defaults-mode-node": "^3.0.21", + "@smithy/util-endpoints": "^2.1.2", + "@smithy/util-middleware": "^3.0.6", + "@smithy/util-retry": "^3.0.6", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "^3.658.1" + } + }, + "node_modules/@aws-sdk/client-sts": { + "version": "3.658.1", + "integrity": "sha512-yw9hc5blTnbT1V6mR7Cx9HGc9KQpcLQ1QXj8rntiJi6tIYu3aFNVEyy81JHL7NsuBSeQulJTvHO3y6r3O0sfRg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/client-sso-oidc": "3.658.1", + "@aws-sdk/core": "3.658.1", + "@aws-sdk/credential-provider-node": "3.658.1", + "@aws-sdk/middleware-host-header": "3.654.0", + "@aws-sdk/middleware-logger": "3.654.0", + "@aws-sdk/middleware-recursion-detection": "3.654.0", + "@aws-sdk/middleware-user-agent": "3.654.0", + "@aws-sdk/region-config-resolver": "3.654.0", + "@aws-sdk/types": "3.654.0", + "@aws-sdk/util-endpoints": "3.654.0", + "@aws-sdk/util-user-agent-browser": "3.654.0", + "@aws-sdk/util-user-agent-node": "3.654.0", + "@smithy/config-resolver": "^3.0.8", + "@smithy/core": "^2.4.6", + "@smithy/fetch-http-handler": "^3.2.8", + "@smithy/hash-node": "^3.0.6", + "@smithy/invalid-dependency": "^3.0.6", + "@smithy/middleware-content-length": "^3.0.8", + "@smithy/middleware-endpoint": "^3.1.3", + "@smithy/middleware-retry": "^3.0.21", + "@smithy/middleware-serde": "^3.0.6", + "@smithy/middleware-stack": "^3.0.6", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/node-http-handler": "^3.2.3", + "@smithy/protocol-http": "^4.1.3", + "@smithy/smithy-client": "^3.3.5", + "@smithy/types": "^3.4.2", + "@smithy/url-parser": "^3.0.6", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.21", + "@smithy/util-defaults-mode-node": "^3.0.21", + "@smithy/util-endpoints": "^2.1.2", + "@smithy/util-middleware": "^3.0.6", + "@smithy/util-retry": "^3.0.6", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/core": { + "version": "3.658.1", + "integrity": "sha512-vJVMoMcSKXK2gBRSu9Ywwv6wQ7tXH8VL1fqB1uVxgCqBZ3IHfqNn4zvpMPWrwgO2/3wv7XFyikGQ5ypPTCw4jA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/core": "^2.4.6", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/property-provider": "^3.1.6", + "@smithy/protocol-http": "^4.1.3", + "@smithy/signature-v4": "^4.1.4", + "@smithy/smithy-client": "^3.3.5", + "@smithy/types": "^3.4.2", + "@smithy/util-middleware": "^3.0.6", + "fast-xml-parser": "4.4.1", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-env": { + "version": "3.654.0", + "integrity": "sha512-kogsx3Ql81JouHS7DkheCDU9MYAvK0AokxjcshDveGmf7BbgbWCA8Fnb9wjQyNDaOXNvkZu8Z8rgkX91z324/w==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.654.0", + "@smithy/property-provider": "^3.1.6", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-http": { + "version": "3.658.1", + "integrity": "sha512-4ubkJjEVCZflxkZnV1JDQv8P2pburxk1LrEp55telfJRzXrnowzBKwuV2ED0QMNC448g2B3VCaffS+Ct7c4IWQ==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.654.0", + "@smithy/fetch-http-handler": "^3.2.8", + "@smithy/node-http-handler": "^3.2.3", + "@smithy/property-provider": "^3.1.6", + "@smithy/protocol-http": "^4.1.3", + "@smithy/smithy-client": "^3.3.5", + "@smithy/types": "^3.4.2", + "@smithy/util-stream": "^3.1.8", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-ini": { + "version": "3.658.1", + "integrity": "sha512-2uwOamQg5ppwfegwen1ddPu5HM3/IBSnaGlaKLFhltkdtZ0jiqTZWUtX2V+4Q+buLnT0hQvLS/frQ+7QUam+0Q==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/credential-provider-env": "3.654.0", + "@aws-sdk/credential-provider-http": "3.658.1", + "@aws-sdk/credential-provider-process": "3.654.0", + "@aws-sdk/credential-provider-sso": "3.658.1", + "@aws-sdk/credential-provider-web-identity": "3.654.0", + "@aws-sdk/types": "3.654.0", + "@smithy/credential-provider-imds": "^3.2.3", + "@smithy/property-provider": "^3.1.6", + "@smithy/shared-ini-file-loader": "^3.1.7", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "^3.658.1" + } + }, + "node_modules/@aws-sdk/credential-provider-node": { + "version": "3.658.1", + "integrity": "sha512-XwxW6N+uPXPYAuyq+GfOEdfL/MZGAlCSfB5gEWtLBFmFbikhmEuqfWtI6CD60OwudCUOh6argd21BsJf8o1SJA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/credential-provider-env": "3.654.0", + "@aws-sdk/credential-provider-http": "3.658.1", + "@aws-sdk/credential-provider-ini": "3.658.1", + "@aws-sdk/credential-provider-process": "3.654.0", + "@aws-sdk/credential-provider-sso": "3.658.1", + "@aws-sdk/credential-provider-web-identity": "3.654.0", + "@aws-sdk/types": "3.654.0", + "@smithy/credential-provider-imds": "^3.2.3", + "@smithy/property-provider": "^3.1.6", + "@smithy/shared-ini-file-loader": "^3.1.7", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-process": { + "version": "3.654.0", + "integrity": "sha512-PmQoo8sZ9Q2Ow8OMzK++Z9lI7MsRUG7sNq3E72DVA215dhtTICTDQwGlXH2AAmIp7n+G9LLRds+4wo2ehG4mkg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.654.0", + "@smithy/property-provider": "^3.1.6", + "@smithy/shared-ini-file-loader": "^3.1.7", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-sso": { + "version": "3.658.1", + "integrity": "sha512-YOagVEsZEk9DmgJEBg+4MBXrPcw/tYas0VQ5OVBqC5XHNbi2OBGJqgmjVPesuu393E7W0VQxtJFDS00O1ewQgA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/client-sso": "3.658.1", + "@aws-sdk/token-providers": "3.654.0", + "@aws-sdk/types": "3.654.0", + "@smithy/property-provider": "^3.1.6", + "@smithy/shared-ini-file-loader": "^3.1.7", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/credential-provider-web-identity": { + "version": "3.654.0", + "integrity": "sha512-6a2g9gMtZToqSu+CusjNK5zvbLJahQ9di7buO3iXgbizXpLXU1rnawCpWxwslMpT5fLgMSKDnKDrr6wdEk7jSw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.654.0", + "@smithy/property-provider": "^3.1.6", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "^3.654.0" + } + }, + "node_modules/@aws-sdk/middleware-host-header": { + "version": "3.654.0", + "integrity": "sha512-rxGgVHWKp8U2ubMv+t+vlIk7QYUaRCHaVpmUlJv0Wv6Q0KeO9a42T9FxHphjOTlCGQOLcjCreL9CF8Qhtb4mdQ==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.654.0", + "@smithy/protocol-http": "^4.1.3", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/middleware-logger": { + "version": "3.654.0", + "integrity": "sha512-OQYb+nWlmASyXfRb989pwkJ9EVUMP1CrKn2eyTk3usl20JZmKo2Vjis6I0tLUkMSxMhnBJJlQKyWkRpD/u1FVg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.654.0", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/middleware-recursion-detection": { + "version": "3.654.0", + "integrity": "sha512-gKSomgltKVmsT8sC6W7CrADZ4GHwX9epk3GcH6QhebVO3LA9LRbkL3TwOPUXakxxOLLUTYdOZLIOtFf7iH00lg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.654.0", + "@smithy/protocol-http": "^4.1.3", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/middleware-user-agent": { + "version": "3.654.0", + "integrity": "sha512-liCcqPAyRsr53cy2tYu4qeH4MMN0eh9g6k56XzI5xd4SghXH5YWh4qOYAlQ8T66ZV4nPMtD8GLtLXGzsH8moFg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.654.0", + "@aws-sdk/util-endpoints": "3.654.0", + "@smithy/protocol-http": "^4.1.3", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/region-config-resolver": { + "version": "3.654.0", + "integrity": "sha512-ydGOrXJxj3x0sJhsXyTmvJVLAE0xxuTWFJihTl67RtaO7VRNtd82I3P3bwoMMaDn5WpmV5mPo8fEUDRlBm3fPg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.654.0", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/types": "^3.4.2", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.6", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/token-providers": { + "version": "3.654.0", + "integrity": "sha512-D8GeJYmvbfWkQDtTB4owmIobSMexZel0fOoetwvgCQ/7L8VPph3Q2bn1TRRIXvH7wdt6DcDxA3tKMHPBkT3GlA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.654.0", + "@smithy/property-provider": "^3.1.6", + "@smithy/shared-ini-file-loader": "^3.1.7", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sso-oidc": "^3.654.0" + } + }, + "node_modules/@aws-sdk/types": { + "version": "3.654.0", + "integrity": "sha512-VWvbED3SV+10QJIcmU/PKjsKilsTV16d1I7/on4bvD/jo1qGeMXqLDBSen3ks/tuvXZF/mFc7ZW/W2DiLVtO7A==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/util-endpoints": { + "version": "3.654.0", + "integrity": "sha512-i902fcBknHs0Irgdpi62+QMvzxE+bczvILXigYrlHL4+PiEnlMVpni5L5W1qCkNZXf8AaMrSBuR1NZAGp6UOUw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.654.0", + "@smithy/types": "^3.4.2", + "@smithy/util-endpoints": "^2.1.2", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/util-locate-window": { + "version": "3.568.0", + "integrity": "sha512-3nh4TINkXYr+H41QaPelCceEB2FXP3fxp93YZXB/kqJvX0U9j0N0Uk45gvsjmEPzG8XxkPEeLIfT2I1M7A6Lig==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@aws-sdk/util-user-agent-browser": { + "version": "3.654.0", + "integrity": "sha512-ykYAJqvnxLt7wfrqya28wuH3/7NdrwzfiFd7NqEVQf7dXVxL5RPEpD7DxjcyQo3DsHvvdUvGZVaQhozycn1pzA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.654.0", + "@smithy/types": "^3.4.2", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-sdk/util-user-agent-node": { + "version": "3.654.0", + "integrity": "sha512-a0ojjdBN6pqv6gB4H/QPPSfhs7mFtlVwnmKCM/QrTaFzN0U810PJ1BST3lBx5sa23I5jWHGaoFY+5q65C3clLQ==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.654.0", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "aws-crt": ">=1.0.0" + }, + "peerDependenciesMeta": { + "aws-crt": { + "optional": true + } + } + }, + "node_modules/@babel/runtime": { + "version": "7.25.7", + "integrity": "sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==", + "dev": true, + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@smithy/abort-controller": { + "version": "3.1.5", + "integrity": "sha512-DhNPnqTqPoG8aZ5dWkFOgsuY+i0GQ3CI6hMmvCoduNsnU9gUZWZBwGfDQsTTB7NvFPkom1df7jMIJWU90kuXXg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.5.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/config-resolver": { + "version": "3.0.9", + "integrity": "sha512-5d9oBf40qC7n2xUoHmntKLdqsyTMMo/r49+eqSIjJ73eDfEtljAxEhzIQ3bkgXJtR3xiv7YzMT/3FF3ORkjWdg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/node-config-provider": "^3.1.8", + "@smithy/types": "^3.5.0", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.7", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/core": { + "version": "2.4.8", + "integrity": "sha512-x4qWk7p/a4dcf7Vxb2MODIf4OIcqNbK182WxRvZ/3oKPrf/6Fdic5sSElhO1UtXpWKBazWfqg0ZEK9xN1DsuHA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/middleware-endpoint": "^3.1.4", + "@smithy/middleware-retry": "^3.0.23", + "@smithy/middleware-serde": "^3.0.7", + "@smithy/protocol-http": "^4.1.4", + "@smithy/smithy-client": "^3.4.0", + "@smithy/types": "^3.5.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-middleware": "^3.0.7", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/credential-provider-imds": { + "version": "3.2.4", + "integrity": "sha512-S9bb0EIokfYEuar4kEbLta+ivlKCWOCFsLZuilkNy9i0uEUEHSi47IFLPaxqqCl+0ftKmcOTHayY5nQhAuq7+w==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/node-config-provider": "^3.1.8", + "@smithy/property-provider": "^3.1.7", + "@smithy/types": "^3.5.0", + "@smithy/url-parser": "^3.0.7", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/eventstream-codec": { + "version": "3.1.6", + "integrity": "sha512-SBiOYPBH+5wOyPS7lfI150ePfGLhnp/eTu5RnV9xvhGvRiKfnl6HzRK9wehBph+il8FxS9KTeadx7Rcmf1GLPQ==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/crc32": "5.2.0", + "@smithy/types": "^3.5.0", + "@smithy/util-hex-encoding": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/eventstream-serde-browser": { + "version": "3.0.10", + "integrity": "sha512-1i9aMY6Pl/SmA6NjvidxnfBLHMPzhKu2BP148pEt5VwhMdmXn36PE2kWKGa9Hj8b0XGtCTRucpCncylevCtI7g==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/eventstream-serde-universal": "^3.0.9", + "@smithy/types": "^3.5.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/eventstream-serde-config-resolver": { + "version": "3.0.7", + "integrity": "sha512-eVzhGQBPEqXXYHvIUku0jMTxd4gDvenRzUQPTmKVWdRvp9JUCKrbAXGQRYiGxUYq9+cqQckRm0wq3kTWnNtDhw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.5.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/eventstream-serde-node": { + "version": "3.0.9", + "integrity": "sha512-JE0Guqvt0xsmfQ5y1EI342/qtJqznBv8cJqkHZV10PwC8GWGU5KNgFbQnsVCcX+xF+qIqwwfRmeWoJCjuOLmng==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/eventstream-serde-universal": "^3.0.9", + "@smithy/types": "^3.5.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/eventstream-serde-universal": { + "version": "3.0.9", + "integrity": "sha512-bydfgSisfepCufw9kCEnWRxqxJFzX/o8ysXWv+W9F2FIyiaEwZ/D8bBKINbh4ONz3i05QJ1xE7A5OKYvgJsXaw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/eventstream-codec": "^3.1.6", + "@smithy/types": "^3.5.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/fetch-http-handler": { + "version": "3.2.9", + "integrity": "sha512-hYNVQOqhFQ6vOpenifFME546f0GfJn2OiQ3M0FDmuUu8V/Uiwy2wej7ZXxFBNqdx0R5DZAqWM1l6VRhGz8oE6A==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/protocol-http": "^4.1.4", + "@smithy/querystring-builder": "^3.0.7", + "@smithy/types": "^3.5.0", + "@smithy/util-base64": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/hash-node": { + "version": "3.0.7", + "integrity": "sha512-SAGHN+QkrwcHFjfWzs/czX94ZEjPJ0CrWJS3M43WswDXVEuP4AVy9gJ3+AF6JQHZD13bojmuf/Ap/ItDeZ+Qfw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.5.0", + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/invalid-dependency": { + "version": "3.0.7", + "integrity": "sha512-Bq00GsAhHeYSuZX8Kpu4sbI9agH2BNYnqUmmbTGWOhki9NVsWn2jFr896vvoTMH8KAjNX/ErC/8t5QHuEXG+IA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.5.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", + "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/middleware-content-length": { + "version": "3.0.9", + "integrity": "sha512-t97PidoGElF9hTtLCrof32wfWMqC5g2SEJNxaVH3NjlatuNGsdxXRYO/t+RPnxA15RpYiS0f+zG7FuE2DeGgjA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/protocol-http": "^4.1.4", + "@smithy/types": "^3.5.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/middleware-endpoint": { + "version": "3.1.4", + "integrity": "sha512-/ChcVHekAyzUbyPRI8CzPPLj6y8QRAfJngWcLMgsWxKVzw/RzBV69mSOzJYDD3pRwushA1+5tHtPF8fjmzBnrQ==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/middleware-serde": "^3.0.7", + "@smithy/node-config-provider": "^3.1.8", + "@smithy/shared-ini-file-loader": "^3.1.8", + "@smithy/types": "^3.5.0", + "@smithy/url-parser": "^3.0.7", + "@smithy/util-middleware": "^3.0.7", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/middleware-retry": { + "version": "3.0.23", + "integrity": "sha512-x9PbGXxkcXIpm6L26qRSCC+eaYcHwybRmqU8LO/WM2RRlW0g8lz6FIiKbKgGvHuoK3dLZRiQVSQJveiCzwnA5A==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/node-config-provider": "^3.1.8", + "@smithy/protocol-http": "^4.1.4", + "@smithy/service-error-classification": "^3.0.7", + "@smithy/smithy-client": "^3.4.0", + "@smithy/types": "^3.5.0", + "@smithy/util-middleware": "^3.0.7", + "@smithy/util-retry": "^3.0.7", + "tslib": "^2.6.2", + "uuid": "^9.0.1" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/middleware-serde": { + "version": "3.0.7", + "integrity": "sha512-VytaagsQqtH2OugzVTq4qvjkLNbWehHfGcGr0JLJmlDRrNCeZoWkWsSOw1nhS/4hyUUWF/TLGGml4X/OnEep5g==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.5.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/middleware-stack": { + "version": "3.0.7", + "integrity": "sha512-EyTbMCdqS1DoeQsO4gI7z2Gzq1MoRFAeS8GkFYIwbedB7Lp5zlLHJdg+56tllIIG5Hnf9ZWX48YKSHlsKvugGA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.5.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/node-config-provider": { + "version": "3.1.8", + "integrity": "sha512-E0rU0DglpeJn5ge64mk8wTGEXcQwmpUTY5Zr7IzTpDLmHKiIamINERNZYrPQjg58Ck236sEKSwRSHA4CwshU6Q==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/property-provider": "^3.1.7", + "@smithy/shared-ini-file-loader": "^3.1.8", + "@smithy/types": "^3.5.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/node-http-handler": { + "version": "3.2.4", + "integrity": "sha512-49reY3+JgLMFNm7uTAKBWiKCA6XSvkNp9FqhVmusm2jpVnHORYFeFZ704LShtqWfjZW/nhX+7Iexyb6zQfXYIQ==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/abort-controller": "^3.1.5", + "@smithy/protocol-http": "^4.1.4", + "@smithy/querystring-builder": "^3.0.7", + "@smithy/types": "^3.5.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/property-provider": { + "version": "3.1.7", + "integrity": "sha512-QfzLi1GPMisY7bAM5hOUqBdGYnY5S2JAlr201pghksrQv139f8iiiMalXtjczIP5f6owxFn3MINLNUNvUkgtPw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.5.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/protocol-http": { + "version": "4.1.4", + "integrity": "sha512-MlWK8eqj0JlpZBnWmjQLqmFp71Ug00P+m72/1xQB3YByXD4zZ+y9N4hYrR0EDmrUCZIkyATWHOXFgtavwGDTzQ==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.5.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/querystring-builder": { + "version": "3.0.7", + "integrity": "sha512-65RXGZZ20rzqqxTsChdqSpbhA6tdt5IFNgG6o7e1lnPVLCe6TNWQq4rTl4N87hTDD8mV4IxJJnvyE7brbnRkQw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.5.0", + "@smithy/util-uri-escape": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/querystring-parser": { + "version": "3.0.7", + "integrity": "sha512-Fouw4KJVWqqUVIu1gZW8BH2HakwLz6dvdrAhXeXfeymOBrZw+hcqaWs+cS1AZPVp4nlbeIujYrKA921ZW2WMPA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.5.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/service-error-classification": { + "version": "3.0.7", + "integrity": "sha512-91PRkTfiBf9hxkIchhRKJfl1rsplRDyBnmyFca3y0Z3x/q0JJN480S83LBd8R6sBCkm2bBbqw2FHp0Mbh+ecSA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.5.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/shared-ini-file-loader": { + "version": "3.1.8", + "integrity": "sha512-0NHdQiSkeGl0ICQKcJQ2lCOKH23Nb0EaAa7RDRId6ZqwXkw4LJyIyZ0t3iusD4bnKYDPLGy2/5e2rfUhrt0Acw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.5.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/signature-v4": { + "version": "4.2.0", + "integrity": "sha512-LafbclHNKnsorMgUkKm7Tk7oJ7xizsZ1VwqhGKqoCIrXh4fqDDp73fK99HOEEgcsQbtemmeY/BPv0vTVYYUNEQ==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/is-array-buffer": "^3.0.0", + "@smithy/protocol-http": "^4.1.4", + "@smithy/types": "^3.5.0", + "@smithy/util-hex-encoding": "^3.0.0", + "@smithy/util-middleware": "^3.0.7", + "@smithy/util-uri-escape": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/smithy-client": { + "version": "3.4.0", + "integrity": "sha512-nOfJ1nVQsxiP6srKt43r2My0Gp5PLWCW2ASqUioxIiGmu6d32v4Nekidiv5qOmmtzIrmaD+ADX5SKHUuhReeBQ==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/middleware-endpoint": "^3.1.4", + "@smithy/middleware-stack": "^3.0.7", + "@smithy/protocol-http": "^4.1.4", + "@smithy/types": "^3.5.0", + "@smithy/util-stream": "^3.1.9", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/types": { + "version": "3.5.0", + "integrity": "sha512-QN0twHNfe8mNJdH9unwsCK13GURU7oEAZqkBI+rsvpv1jrmserO+WnLE7jidR9W/1dxwZ0u/CB01mV2Gms/K2Q==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/url-parser": { + "version": "3.0.7", + "integrity": "sha512-70UbSSR8J97c1rHZOWhl+VKiZDqHWxs/iW8ZHrHp5fCCPLSBE7GcUlUvKSle3Ca+J9LLbYCj/A79BxztBvAfpA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/querystring-parser": "^3.0.7", + "@smithy/types": "^3.5.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/util-base64": { + "version": "3.0.0", + "integrity": "sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-body-length-browser": { + "version": "3.0.0", + "integrity": "sha512-cbjJs2A1mLYmqmyVl80uoLTJhAcfzMOyPgjwAYusWKMdLeNtzmMz9YxNl3/jRLoxSS3wkqkf0jwNdtXWtyEBaQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/util-body-length-node": { + "version": "3.0.0", + "integrity": "sha512-Tj7pZ4bUloNUP6PzwhN7K386tmSmEET9QtQg0TgdNOnxhZvCssHji+oZTUIuzxECRfG8rdm2PMw2WCFs6eIYkA==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-buffer-from": { + "version": "3.0.0", + "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/is-array-buffer": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-config-provider": { + "version": "3.0.0", + "integrity": "sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-browser": { + "version": "3.0.23", + "integrity": "sha512-Y07qslyRtXDP/C5aWKqxTPBl4YxplEELG3xRrz2dnAQ6Lq/FgNrcKWmV561nNaZmFH+EzeGOX3ZRMbU8p1T6Nw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/property-provider": "^3.1.7", + "@smithy/smithy-client": "^3.4.0", + "@smithy/types": "^3.5.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node": { + "version": "3.0.23", + "integrity": "sha512-9Y4WH7f0vnDGuHUa4lGX9e2p+sMwODibsceSV6rfkZOvMC+BY3StB2LdO1NHafpsyHJLpwAgChxQ38tFyd6vkg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/config-resolver": "^3.0.9", + "@smithy/credential-provider-imds": "^3.2.4", + "@smithy/node-config-provider": "^3.1.8", + "@smithy/property-provider": "^3.1.7", + "@smithy/smithy-client": "^3.4.0", + "@smithy/types": "^3.5.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@smithy/util-endpoints": { + "version": "2.1.3", + "integrity": "sha512-34eACeKov6jZdHqS5hxBMJ4KyWKztTMulhuQ2UdOoP6vVxMLrOKUqIXAwJe/wiWMhXhydLW664B02CNpQBQ4Aw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/node-config-provider": "^3.1.8", + "@smithy/types": "^3.5.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-hex-encoding": { + "version": "3.0.0", + "integrity": "sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-middleware": { + "version": "3.0.7", + "integrity": "sha512-OVA6fv/3o7TMJTpTgOi1H5OTwnuUa8hzRzhSFDtZyNxi6OZ70L/FHattSmhE212I7b6WSOJAAmbYnvcjTHOJCA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.5.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-retry": { + "version": "3.0.7", + "integrity": "sha512-nh1ZO1vTeo2YX1plFPSe/OXaHkLAHza5jpokNiiKX2M5YpNUv6RxGJZhpfmiR4jSvVHCjIDmILjrxKmP+/Ghug==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/service-error-classification": "^3.0.7", + "@smithy/types": "^3.5.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-stream": { + "version": "3.1.9", + "integrity": "sha512-7YAR0Ub3MwTMjDfjnup4qa6W8gygZMxikBhFMPESi6ASsl/rZJhwLpF/0k9TuezScCojsM0FryGdz4LZtjKPPQ==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/fetch-http-handler": "^3.2.9", + "@smithy/node-http-handler": "^3.2.4", + "@smithy/types": "^3.5.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-hex-encoding": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-uri-escape": { + "version": "3.0.0", + "integrity": "sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-utf8": { + "version": "3.0.0", + "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@tsconfig/node16": { + "version": "16.1.3", + "integrity": "sha512-9nTOUBn+EMKO6rtSZJk+DcqsfgtlERGT9XPJ5PRj/HNENPCBY1yu/JEj5wT6GLtbCLBO2k46SeXDaY0pjMqypw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "16.18.113", + "integrity": "sha512-4jHxcEzSXpF1cBNxogs5FVbVSFSKo50sFCn7Xg7vmjJTbWFWgeuHW3QnoINlfmfG++MFR/q97RZE5RQXKeT+jg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/uuid": { + "version": "9.0.8", + "integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==", + "dev": true, + "license": "MIT" + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/bowser": { + "version": "2.11.0", + "integrity": "sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==", + "license": "MIT" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chalk/node_modules/supports-color": { + "version": "7.2.0", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true, + "license": "MIT" + }, + "node_modules/concurrently": { + "version": "7.0.0", + "integrity": "sha512-WKM7PUsI8wyXpF80H+zjHP32fsgsHNQfPLw/e70Z5dYkV7hF+rf8q3D+ScWJIEr57CpkO3OWBko6hwhQLPR8Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "date-fns": "^2.16.1", + "lodash": "^4.17.21", + "rxjs": "^6.6.3", + "spawn-command": "^0.0.2-1", + "supports-color": "^8.1.0", + "tree-kill": "^1.2.2", + "yargs": "^16.2.0" + }, + "bin": { + "concurrently": "dist/bin/concurrently.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.0 || >=16.0.0" + } + }, + "node_modules/date-fns": { + "version": "2.30.0", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.21.0" + }, + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" + } + }, + "node_modules/downlevel-dts": { + "version": "0.10.1", + "integrity": "sha512-bwY63Y0Gfwotcly4vU6rB66m5txvfQzDGd1Gai9E9orqsDIswXKjkdR18Tm6TidnAk9+J5N68a5VMDO2bsQCKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.3.2", + "shelljs": "^0.8.3", + "typescript": "next" + }, + "bin": { + "downlevel-dts": "index.js" + } + }, + "node_modules/downlevel-dts/node_modules/typescript": { + "version": "5.7.0-dev.20241022", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.0-dev.20241022.tgz", + "integrity": "sha512-Z8PXMDow1rJGCzBQ9FEeNQHBDEGwqSMAlaM00C9qn/DlUH7DC5dS/pNNEcrQBktPbbIwOjR4XuXYOddJUH2klQ==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/escalade": { + "version": "3.2.0", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/fast-xml-parser": { + "version": "4.4.1", + "integrity": "sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + }, + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } + ], + "license": "MIT", + "dependencies": { + "strnum": "^1.0.5" + }, + "bin": { + "fxparser": "src/cli/cli.js" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true, + "license": "ISC" + }, + "node_modules/function-bind": { + "version": "1.1.2", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dev": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/interpret": { + "version": "1.4.0", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-core-module": { + "version": "2.15.1", + "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true, + "license": "MIT" + }, + "node_modules/minimatch": { + "version": "3.1.2", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/once": { + "version": "1.4.0", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/rechoir": { + "version": "0.6.2", + "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "dev": true, + "dependencies": { + "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", + "dev": true, + "license": "MIT" + }, + "node_modules/require-directory": { + "version": "2.1.1", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rxjs": { + "version": "6.6.7", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "tslib": "^1.9.0" + }, + "engines": { + "npm": ">=2.0.0" + } + }, + "node_modules/rxjs/node_modules/tslib": { + "version": "1.14.1", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true, + "license": "0BSD" + }, + "node_modules/semver": { + "version": "7.6.3", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shelljs": { + "version": "0.8.5", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + }, + "bin": { + "shjs": "bin/shjs" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/spawn-command": { + "version": "0.0.2", + "integrity": "sha1-lUThpDygRfhTGqwaSMspva5iM44=", + "dev": true + }, + "node_modules/string-width": { + "version": "4.2.3", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strnum": { + "version": "1.0.5", + "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==", + "license": "MIT" + }, + "node_modules/supports-color": { + "version": "8.1.1", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tree-kill": { + "version": "1.2.2", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true, + "license": "MIT", + "bin": { + "tree-kill": "cli.js" + } + }, + "node_modules/tslib": { + "version": "2.7.0", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", + "license": "0BSD" + }, + "node_modules/typescript": { + "version": "4.9.5", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/uuid": { + "version": "9.0.1", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true, + "license": "ISC" + }, + "node_modules/y18n": { + "version": "5.0.8", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs": { + "version": "16.2.0", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + } + } +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/package.json b/src.gen/@amzn/amazon-q-developer-streaming-client/package.json new file mode 100644 index 00000000000..8d8ec567801 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/package.json @@ -0,0 +1,91 @@ +{ + "name": "@amzn/amazon-q-developer-streaming-client", + "description": "@amzn/amazon-q-developer-streaming-client client", + "version": "1.0.0", + "scripts": { + "build": "concurrently 'npm:build:cjs' 'npm:build:es' 'npm:build:types'", + "build:cjs": "tsc -p tsconfig.cjs.json", + "build:es": "tsc -p tsconfig.es.json", + "build:types": "tsc -p tsconfig.types.json", + "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4", + "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo || exit 0", + "prepack": "npm run clean && npm run build", + "postinstall": "npm run build" + }, + "main": "./dist-cjs/index.js", + "types": "./dist-types/index.d.ts", + "module": "./dist-es/index.js", + "sideEffects": false, + "dependencies": { + "tslib": "^2.6.2", + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/client-sso-oidc": "3.658.1", + "@aws-sdk/client-sts": "3.658.1", + "@aws-sdk/core": "3.658.1", + "@aws-sdk/credential-provider-node": "3.658.1", + "@aws-sdk/middleware-host-header": "3.654.0", + "@aws-sdk/middleware-logger": "3.654.0", + "@aws-sdk/middleware-recursion-detection": "3.654.0", + "@aws-sdk/middleware-user-agent": "3.654.0", + "@aws-sdk/region-config-resolver": "3.654.0", + "@aws-sdk/types": "3.654.0", + "@aws-sdk/util-user-agent-browser": "3.654.0", + "@aws-sdk/util-user-agent-node": "3.654.0", + "@smithy/config-resolver": "^3.0.8", + "@smithy/core": "^2.4.6", + "@smithy/eventstream-serde-browser": "^3.0.9", + "@smithy/eventstream-serde-config-resolver": "^3.0.6", + "@smithy/eventstream-serde-node": "^3.0.8", + "@smithy/fetch-http-handler": "^3.2.8", + "@smithy/hash-node": "^3.0.6", + "@smithy/invalid-dependency": "^3.0.6", + "@smithy/middleware-content-length": "^3.0.8", + "@smithy/middleware-retry": "^3.0.21", + "@smithy/middleware-serde": "^3.0.6", + "@smithy/middleware-stack": "^3.0.6", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/node-http-handler": "^3.2.3", + "@smithy/protocol-http": "^4.1.3", + "@smithy/smithy-client": "^3.3.5", + "@smithy/types": "^3.4.2", + "@smithy/url-parser": "^3.0.6", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.21", + "@smithy/util-defaults-mode-node": "^3.0.21", + "@smithy/util-middleware": "^3.0.6", + "@smithy/util-retry": "^3.0.6", + "@smithy/util-utf8": "^3.0.0", + "uuid": "^9.0.1" + }, + "devDependencies": { + "@tsconfig/node16": "16.1.3", + "concurrently": "7.0.0", + "downlevel-dts": "0.10.1", + "rimraf": "^3.0.0", + "typescript": "~4.9.5", + "@types/node": "^16.18.96", + "@types/uuid": "^9.0.4" + }, + "engines": { + "node": ">=16.0.0" + }, + "typesVersions": { + "<4.0": { + "dist-types/*": [ + "dist-types/ts3.4/*" + ] + } + }, + "files": [ + "dist-*/**" + ], + "browser": { + "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser" + }, + "react-native": { + "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native" + } +} \ No newline at end of file diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/src/QDeveloperStreaming.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/src/QDeveloperStreaming.ts new file mode 100644 index 00000000000..1c6ce1cfb24 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/src/QDeveloperStreaming.ts @@ -0,0 +1,65 @@ +// smithy-typescript generated code +import { + QDeveloperStreamingClient, + QDeveloperStreamingClientConfig, +} from "./QDeveloperStreamingClient"; +import { + GenerateCodeFromCommandsCommand, + GenerateCodeFromCommandsCommandInput, + GenerateCodeFromCommandsCommandOutput, +} from "./commands/GenerateCodeFromCommandsCommand"; +import { + SendMessageCommand, + SendMessageCommandInput, + SendMessageCommandOutput, +} from "./commands/SendMessageCommand"; +import { createAggregatedClient } from "@smithy/smithy-client"; +import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; + +const commands = { + GenerateCodeFromCommandsCommand, + SendMessageCommand, +} + +export interface QDeveloperStreaming { + /** + * @see {@link GenerateCodeFromCommandsCommand} + */ + generateCodeFromCommands( + args: GenerateCodeFromCommandsCommandInput, + options?: __HttpHandlerOptions, + ): Promise; + generateCodeFromCommands( + args: GenerateCodeFromCommandsCommandInput, + cb: (err: any, data?: GenerateCodeFromCommandsCommandOutput) => void + ): void; + generateCodeFromCommands( + args: GenerateCodeFromCommandsCommandInput, + options: __HttpHandlerOptions, + cb: (err: any, data?: GenerateCodeFromCommandsCommandOutput) => void + ): void; + + /** + * @see {@link SendMessageCommand} + */ + sendMessage( + args: SendMessageCommandInput, + options?: __HttpHandlerOptions, + ): Promise; + sendMessage( + args: SendMessageCommandInput, + cb: (err: any, data?: SendMessageCommandOutput) => void + ): void; + sendMessage( + args: SendMessageCommandInput, + options: __HttpHandlerOptions, + cb: (err: any, data?: SendMessageCommandOutput) => void + ): void; + +} + +/** + * @public + */ +export class QDeveloperStreaming extends QDeveloperStreamingClient implements QDeveloperStreaming {} +createAggregatedClient(commands, QDeveloperStreaming); diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/src/QDeveloperStreamingClient.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/src/QDeveloperStreamingClient.ts new file mode 100644 index 00000000000..bf1f39e4d98 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/src/QDeveloperStreamingClient.ts @@ -0,0 +1,342 @@ +// smithy-typescript generated code +import { + HttpAuthSchemeInputConfig, + HttpAuthSchemeResolvedConfig, + defaultQDeveloperStreamingHttpAuthSchemeParametersProvider, + resolveHttpAuthSchemeConfig, +} from "./auth/httpAuthSchemeProvider"; +import { + GenerateCodeFromCommandsCommandInput, + GenerateCodeFromCommandsCommandOutput, +} from "./commands/GenerateCodeFromCommandsCommand"; +import { + SendMessageCommandInput, + SendMessageCommandOutput, +} from "./commands/SendMessageCommand"; +import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; +import { + RuntimeExtension, + RuntimeExtensionsConfig, + resolveRuntimeExtensions, +} from "./runtimeExtensions"; +import { + HostHeaderInputConfig, + HostHeaderResolvedConfig, + getHostHeaderPlugin, + resolveHostHeaderConfig, +} from "@aws-sdk/middleware-host-header"; +import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; +import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; +import { + UserAgentInputConfig, + UserAgentResolvedConfig, + getUserAgentPlugin, + resolveUserAgentConfig, +} from "@aws-sdk/middleware-user-agent"; +import { + EndpointsInputConfig, + EndpointsResolvedConfig, + RegionInputConfig, + RegionResolvedConfig, + resolveEndpointsConfig, + resolveRegionConfig, +} from "@smithy/config-resolver"; +import { + DefaultIdentityProviderConfig, + getHttpAuthSchemePlugin, + getHttpSigningPlugin, +} from "@smithy/core"; +import { + EventStreamSerdeInputConfig, + EventStreamSerdeResolvedConfig, + resolveEventStreamSerdeConfig, +} from "@smithy/eventstream-serde-config-resolver"; +import { getContentLengthPlugin } from "@smithy/middleware-content-length"; +import { + RetryInputConfig, + RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + Client as __Client, + DefaultsMode as __DefaultsMode, + SmithyConfiguration as __SmithyConfiguration, + SmithyResolvedConfiguration as __SmithyResolvedConfiguration, +} from "@smithy/smithy-client"; +import { + AwsCredentialIdentityProvider, + Provider, + RegionInfoProvider, + BodyLengthCalculator as __BodyLengthCalculator, + CheckOptionalClientConfig as __CheckOptionalClientConfig, + ChecksumConstructor as __ChecksumConstructor, + Decoder as __Decoder, + Encoder as __Encoder, + EventStreamSerdeProvider as __EventStreamSerdeProvider, + HashConstructor as __HashConstructor, + HttpHandlerOptions as __HttpHandlerOptions, + Logger as __Logger, + Provider as __Provider, + StreamCollector as __StreamCollector, + UrlParser as __UrlParser, + UserAgent as __UserAgent, +} from "@smithy/types"; + +export { __Client } + +/** + * @public + */ +export type ServiceInputTypes = + | GenerateCodeFromCommandsCommandInput + | SendMessageCommandInput; + +/** + * @public + */ +export type ServiceOutputTypes = + | GenerateCodeFromCommandsCommandOutput + | SendMessageCommandOutput; + +/** + * @public + */ +export interface ClientDefaults + extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> { + /** + * The HTTP handler to use or its constructor options. Fetch in browser and Https in Nodejs. + */ + requestHandler?: __HttpHandlerUserInput; + + /** + * A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface + * that computes the SHA-256 HMAC or checksum of a string or binary buffer. + * @internal + */ + sha256?: __ChecksumConstructor | __HashConstructor; + + /** + * The function that will be used to convert strings into HTTP endpoints. + * @internal + */ + urlParser?: __UrlParser; + + /** + * A function that can calculate the length of a request body. + * @internal + */ + bodyLengthChecker?: __BodyLengthCalculator; + + /** + * A function that converts a stream into an array of bytes. + * @internal + */ + streamCollector?: __StreamCollector; + + /** + * The function that will be used to convert a base64-encoded string to a byte array. + * @internal + */ + base64Decoder?: __Decoder; + + /** + * The function that will be used to convert binary data to a base64-encoded string. + * @internal + */ + base64Encoder?: __Encoder; + + /** + * The function that will be used to convert a UTF8-encoded string to a byte array. + * @internal + */ + utf8Decoder?: __Decoder; + + /** + * The function that will be used to convert binary data to a UTF-8 encoded string. + * @internal + */ + utf8Encoder?: __Encoder; + + /** + * The runtime environment. + * @internal + */ + runtime?: string; + + /** + * Disable dynamically changing the endpoint of the client based on the hostPrefix + * trait of an operation. + */ + disableHostPrefix?: boolean; + + /** + * Unique service identifier. + * @internal + */ + serviceId?: string; + + /** + * Enables IPv6/IPv4 dualstack endpoint. + */ + useDualstackEndpoint?: boolean | __Provider; + + /** + * Enables FIPS compatible endpoints. + */ + useFipsEndpoint?: boolean | __Provider; + + /** + * The AWS region to which this client will send requests + */ + region?: string | __Provider; + + /** + * Fetch related hostname, signing name or signing region with given region. + * @internal + */ + regionInfoProvider?: RegionInfoProvider; + + /** + * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header + * @internal + */ + defaultUserAgentProvider?: Provider<__UserAgent>; + + /** + * Default credentials provider; Not available in browser runtime. + * @deprecated + * @internal + */ + credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider; + + /** + * Value for how many times a request will be made at most in case of retry. + */ + maxAttempts?: number | __Provider; + + /** + * Specifies which retry algorithm to use. + * @see https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-util-retry/Enum/RETRY_MODES/ + * + */ + retryMode?: string | __Provider; + + /** + * Optional logger for logging debug/info/warn/error. + */ + logger?: __Logger; + + /** + * Optional extensions + */ + extensions?: RuntimeExtension[]; + + /** + * The function that provides necessary utilities for generating and parsing event stream + */ + eventStreamSerdeProvider?: __EventStreamSerdeProvider; + + /** + * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK. + */ + defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>; + +} + +/** + * @public + */ +export type QDeveloperStreamingClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> + & ClientDefaults + & UserAgentInputConfig + & RetryInputConfig + & RegionInputConfig + & HostHeaderInputConfig + & EndpointsInputConfig + & EventStreamSerdeInputConfig + & HttpAuthSchemeInputConfig +/** + * @public + * + * The configuration interface of QDeveloperStreamingClient class constructor that set the region, credentials and other options. + */ +export interface QDeveloperStreamingClientConfig extends QDeveloperStreamingClientConfigType {} + +/** + * @public + */ +export type QDeveloperStreamingClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> + & Required + & RuntimeExtensionsConfig + & UserAgentResolvedConfig + & RetryResolvedConfig + & RegionResolvedConfig + & HostHeaderResolvedConfig + & EndpointsResolvedConfig + & EventStreamSerdeResolvedConfig + & HttpAuthSchemeResolvedConfig +/** + * @public + * + * The resolved configuration interface of QDeveloperStreamingClient class. This is resolved and normalized from the {@link QDeveloperStreamingClientConfig | constructor configuration interface}. + */ +export interface QDeveloperStreamingClientResolvedConfig extends QDeveloperStreamingClientResolvedConfigType {} + +/** + * @public + */ +export class QDeveloperStreamingClient extends __Client< + __HttpHandlerOptions, + ServiceInputTypes, + ServiceOutputTypes, + QDeveloperStreamingClientResolvedConfig +> { + /** + * The resolved configuration of QDeveloperStreamingClient class. This is resolved and normalized from the {@link QDeveloperStreamingClientConfig | constructor configuration interface}. + */ + readonly config: QDeveloperStreamingClientResolvedConfig; + + constructor(...[configuration]: __CheckOptionalClientConfig) { + let _config_0 = __getRuntimeConfig(configuration || {}); + let _config_1 = resolveUserAgentConfig(_config_0); + let _config_2 = resolveRetryConfig(_config_1); + let _config_3 = resolveRegionConfig(_config_2); + let _config_4 = resolveHostHeaderConfig(_config_3); + let _config_5 = resolveEndpointsConfig(_config_4); + let _config_6 = resolveEventStreamSerdeConfig(_config_5); + let _config_7 = resolveHttpAuthSchemeConfig(_config_6); + let _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []); + super(_config_8); + this.config = _config_8; + this.middlewareStack.use(getUserAgentPlugin(this.config + )); + this.middlewareStack.use(getRetryPlugin(this.config + )); + this.middlewareStack.use(getContentLengthPlugin(this.config + )); + this.middlewareStack.use(getHostHeaderPlugin(this.config + )); + this.middlewareStack.use(getLoggerPlugin(this.config + )); + this.middlewareStack.use(getRecursionDetectionPlugin(this.config + )); + this.middlewareStack.use(getHttpAuthSchemePlugin(this.config + , { + httpAuthSchemeParametersProvider: defaultQDeveloperStreamingHttpAuthSchemeParametersProvider,identityProviderConfigProvider: async (config: QDeveloperStreamingClientResolvedConfig) => new DefaultIdentityProviderConfig({ + "aws.auth#sigv4": config.credentials,}), } + )); + this.middlewareStack.use(getHttpSigningPlugin(this.config + )); + } + + /** + * Destroy underlying resources, like sockets. It's usually not necessary to do this. + * However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed. + * Otherwise, sockets might stay open for quite a long time before the server terminates them. + */ + destroy(): void { + super.destroy(); + } +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/src/auth/httpAuthExtensionConfiguration.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/src/auth/httpAuthExtensionConfiguration.ts new file mode 100644 index 00000000000..01057e6bcbd --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/src/auth/httpAuthExtensionConfiguration.ts @@ -0,0 +1,73 @@ +// smithy-typescript generated code +import { QDeveloperStreamingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import { + AwsCredentialIdentity, + AwsCredentialIdentityProvider, + HttpAuthScheme, +} from "@smithy/types"; + +/** + * @internal + */ +export interface HttpAuthExtensionConfiguration { + setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void; + httpAuthSchemes(): HttpAuthScheme[]; + setHttpAuthSchemeProvider(httpAuthSchemeProvider: QDeveloperStreamingHttpAuthSchemeProvider): void; + httpAuthSchemeProvider(): QDeveloperStreamingHttpAuthSchemeProvider; + setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void; + credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined; +} + +/** + * @internal + */ +export type HttpAuthRuntimeConfig = Partial<{ + httpAuthSchemes: HttpAuthScheme[]; + httpAuthSchemeProvider: QDeveloperStreamingHttpAuthSchemeProvider; + credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider; +}>; + +/** + * @internal + */ +export const getHttpAuthExtensionConfiguration = (runtimeConfig: HttpAuthRuntimeConfig): HttpAuthExtensionConfiguration => { + let _httpAuthSchemes = runtimeConfig.httpAuthSchemes!; + let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider!; + let _credentials = runtimeConfig.credentials; + return { + setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void { + const index = _httpAuthSchemes.findIndex(scheme => scheme.schemeId === httpAuthScheme.schemeId); + if (index === -1) { + _httpAuthSchemes.push(httpAuthScheme); + } else { + _httpAuthSchemes.splice(index, 1, httpAuthScheme); + } + }, + httpAuthSchemes(): HttpAuthScheme[] { + return _httpAuthSchemes; + }, + setHttpAuthSchemeProvider(httpAuthSchemeProvider: QDeveloperStreamingHttpAuthSchemeProvider): void { + _httpAuthSchemeProvider = httpAuthSchemeProvider; + }, + httpAuthSchemeProvider(): QDeveloperStreamingHttpAuthSchemeProvider { + return _httpAuthSchemeProvider; + }, + setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void { + _credentials = credentials; + }, + credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined { + return _credentials; + }, + } +}; + +/** + * @internal + */ +export const resolveHttpAuthRuntimeConfig = (config: HttpAuthExtensionConfiguration): HttpAuthRuntimeConfig => { + return { + httpAuthSchemes: config.httpAuthSchemes(), + httpAuthSchemeProvider: config.httpAuthSchemeProvider(), + credentials: config.credentials(), + }; +}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/src/auth/httpAuthSchemeProvider.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/src/auth/httpAuthSchemeProvider.ts new file mode 100644 index 00000000000..54c624f577d --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/src/auth/httpAuthSchemeProvider.ts @@ -0,0 +1,130 @@ +// smithy-typescript generated code +import { + QDeveloperStreamingClientConfig, + QDeveloperStreamingClientResolvedConfig, +} from "../QDeveloperStreamingClient"; +import { + AwsSdkSigV4AuthInputConfig, + AwsSdkSigV4AuthResolvedConfig, + AwsSdkSigV4PreviouslyResolved, + resolveAwsSdkSigV4Config, +} from "@aws-sdk/core"; +import { + HandlerExecutionContext, + HttpAuthOption, + HttpAuthScheme, + HttpAuthSchemeParameters, + HttpAuthSchemeParametersProvider, + HttpAuthSchemeProvider, +} from "@smithy/types"; +import { + getSmithyContext, + normalizeProvider, +} from "@smithy/util-middleware"; + +/** + * @internal + */ +export interface QDeveloperStreamingHttpAuthSchemeParameters extends HttpAuthSchemeParameters { + region?: string; +} + +/** + * @internal + */ +export interface QDeveloperStreamingHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider {} + +/** + * @internal + */ +export const defaultQDeveloperStreamingHttpAuthSchemeParametersProvider = async (config: QDeveloperStreamingClientResolvedConfig, context: HandlerExecutionContext, input: object): Promise => { + return { + operation: getSmithyContext(context).operation as string, + region: await normalizeProvider(config.region)() || (() => { + throw new Error("expected `region` to be configured for `aws.auth#sigv4`"); + })(), + }; +}; + +function createAwsAuthSigv4HttpAuthOption(authParameters: QDeveloperStreamingHttpAuthSchemeParameters): HttpAuthOption { + return { + schemeId: "aws.auth#sigv4", + signingProperties: { + name: "q", + region: authParameters.region, + }, + propertiesExtractor: (config: Partial, context) => ({ + /** + * @internal + */ + signingProperties: { + config, + context, + }, + }), + }; +}; + +/** + * @internal + */ +export interface QDeveloperStreamingHttpAuthSchemeProvider extends HttpAuthSchemeProvider {} + +/** + * @internal + */ +export const defaultQDeveloperStreamingHttpAuthSchemeProvider: QDeveloperStreamingHttpAuthSchemeProvider = (authParameters) => { + const options: HttpAuthOption[] = []; + switch (authParameters.operation) { + default: { + options.push(createAwsAuthSigv4HttpAuthOption(authParameters)); + }; + }; + return options; +}; + +/** + * @internal + */ +export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig { + /** + * Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme. + * @internal + */ + httpAuthSchemes?: HttpAuthScheme[]; + + /** + * Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use. + * @internal + */ + httpAuthSchemeProvider?: QDeveloperStreamingHttpAuthSchemeProvider; + +} + +/** + * @internal + */ +export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig { + /** + * Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme. + * @internal + */ + readonly httpAuthSchemes: HttpAuthScheme[]; + + /** + * Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use. + * @internal + */ + readonly httpAuthSchemeProvider: QDeveloperStreamingHttpAuthSchemeProvider; + +} + +/** + * @internal + */ +export const resolveHttpAuthSchemeConfig = (config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved): T & HttpAuthSchemeResolvedConfig => { + const config_0 = resolveAwsSdkSigV4Config(config); + return { + ...config_0, + } as T & HttpAuthSchemeResolvedConfig; +}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/src/commands/GenerateCodeFromCommandsCommand.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/src/commands/GenerateCodeFromCommandsCommand.ts new file mode 100644 index 00000000000..94969cd6c34 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/src/commands/GenerateCodeFromCommandsCommand.ts @@ -0,0 +1,132 @@ +// smithy-typescript generated code +import { + QDeveloperStreamingClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../QDeveloperStreamingClient"; +import { + GenerateCodeFromCommandsRequest, + GenerateCodeFromCommandsRequestFilterSensitiveLog, + GenerateCodeFromCommandsResponse, + GenerateCodeFromCommandsResponseFilterSensitiveLog, +} from "../models/models_0"; +import { + de_GenerateCodeFromCommandsCommand, + se_GenerateCodeFromCommandsCommand, +} from "../protocols/Aws_json1_0"; +import { getSerdePlugin } from "@smithy/middleware-serde"; +import { Command as $Command } from "@smithy/smithy-client"; +import { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +/** + * @public + */ +export type { __MetadataBearer }; +export { $Command }; +/** + * @public + * + * The input for {@link GenerateCodeFromCommandsCommand}. + */ +export interface GenerateCodeFromCommandsCommandInput extends GenerateCodeFromCommandsRequest {} +/** + * @public + * + * The output of {@link GenerateCodeFromCommandsCommand}. + */ +export interface GenerateCodeFromCommandsCommandOutput extends GenerateCodeFromCommandsResponse, __MetadataBearer {} + +/** + * API to generate infrastructure as code from cli commands. + * @example + * Use a bare-bones client and the command you need to make an API call. + * ```javascript + * import { QDeveloperStreamingClient, GenerateCodeFromCommandsCommand } from "@amzn/amazon-q-developer-streaming-client"; // ES Modules import + * // const { QDeveloperStreamingClient, GenerateCodeFromCommandsCommand } = require("@amzn/amazon-q-developer-streaming-client"); // CommonJS import + * const client = new QDeveloperStreamingClient(config); + * const input = { // GenerateCodeFromCommandsRequest + * outputFormat: "typescript/cdk" || "java/cdk" || "python/cdk" || "yaml/cfn" || "json/cfn", // required + * commands: { // CommandInput Union: only one key present + * commandsList: [ // CliCommandsList + * "STRING_VALUE", + * ], + * }, + * }; + * const command = new GenerateCodeFromCommandsCommand(input); + * const response = await client.send(command); + * // { // GenerateCodeFromCommandsResponse + * // generatedCodeFromCommandsResponse: { // GenerateCodeFromCommandsResponseStream Union: only one key present + * // codeEvent: { // CodeEvent + * // content: "STRING_VALUE", // required + * // }, + * // Error: { // InternalServerException + * // message: "STRING_VALUE", // required + * // }, + * // QuotaLevelExceededError: { // ServiceQuotaExceededException + * // message: "STRING_VALUE", // required + * // }, + * // ValidationError: { // ValidationException + * // message: "STRING_VALUE", // required + * // reason: "INVALID_CONVERSATION_ID" || "CONTENT_LENGTH_EXCEEDS_THRESHOLD" || "INVALID_KMS_GRANT", + * // }, + * // }, + * // }; + * + * ``` + * + * @param GenerateCodeFromCommandsCommandInput - {@link GenerateCodeFromCommandsCommandInput} + * @returns {@link GenerateCodeFromCommandsCommandOutput} + * @see {@link GenerateCodeFromCommandsCommandInput} for command's `input` shape. + * @see {@link GenerateCodeFromCommandsCommandOutput} for command's `response` shape. + * @see {@link QDeveloperStreamingClientResolvedConfig | config} for QDeveloperStreamingClient's `config` shape. + * + * @throws {@link InternalServerException} (server fault) + * This exception is thrown when an unexpected error occurred during the processing of a request. + * + * @throws {@link ThrottlingException} (client fault) + * This exception is thrown when request was denied due to request throttling. + * + * @throws {@link ValidationException} (client fault) + * This exception is thrown when the input fails to satisfy the constraints specified by the service. + * + * @throws {@link AccessDeniedException} (client fault) + * This exception is thrown when the user does not have sufficient access to perform this action. + * + * @throws {@link QDeveloperStreamingServiceException} + *

Base exception class for all service exceptions from QDeveloperStreaming service.

+ * + * @public + */ +export class GenerateCodeFromCommandsCommand extends $Command.classBuilder() + .m(function (this: any, Command: any, cs: any, config: QDeveloperStreamingClientResolvedConfig, o: any) { + return [ + + getSerdePlugin(config, this.serialize, this.deserialize), + ]; + }) + .s("AmazonQDeveloperStreamingService", "GenerateCodeFromCommands", { + + /** + * @internal + */ + eventStream: { + output: true, + }, + }) + .n("QDeveloperStreamingClient", "GenerateCodeFromCommandsCommand") + .f(GenerateCodeFromCommandsRequestFilterSensitiveLog, GenerateCodeFromCommandsResponseFilterSensitiveLog) + .ser(se_GenerateCodeFromCommandsCommand) + .de(de_GenerateCodeFromCommandsCommand) +.build() { +/** @internal type navigation helper, not in runtime. */ +declare protected static __types: { + api: { + input: GenerateCodeFromCommandsRequest; + output: GenerateCodeFromCommandsResponse; + }; + sdk: { + input: GenerateCodeFromCommandsCommandInput; + output: GenerateCodeFromCommandsCommandOutput; + }; +}; +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/src/commands/SendMessageCommand.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/src/commands/SendMessageCommand.ts new file mode 100644 index 00000000000..74f1722698e --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/src/commands/SendMessageCommand.ts @@ -0,0 +1,652 @@ +// smithy-typescript generated code +import { + QDeveloperStreamingClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../QDeveloperStreamingClient"; +import { + SendMessageRequest, + SendMessageRequestFilterSensitiveLog, + SendMessageResponse, + SendMessageResponseFilterSensitiveLog, +} from "../models/models_0"; +import { + de_SendMessageCommand, + se_SendMessageCommand, +} from "../protocols/Aws_json1_0"; +import { getSerdePlugin } from "@smithy/middleware-serde"; +import { Command as $Command } from "@smithy/smithy-client"; +import { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +/** + * @public + */ +export type { __MetadataBearer }; +export { $Command }; +/** + * @public + * + * The input for {@link SendMessageCommand}. + */ +export interface SendMessageCommandInput extends SendMessageRequest {} +/** + * @public + * + * The output of {@link SendMessageCommand}. + */ +export interface SendMessageCommandOutput extends SendMessageResponse, __MetadataBearer {} + +/** + * @public + * + * @example + * Use a bare-bones client and the command you need to make an API call. + * ```javascript + * import { QDeveloperStreamingClient, SendMessageCommand } from "@amzn/amazon-q-developer-streaming-client"; // ES Modules import + * // const { QDeveloperStreamingClient, SendMessageCommand } = require("@amzn/amazon-q-developer-streaming-client"); // CommonJS import + * const client = new QDeveloperStreamingClient(config); + * const input = { // SendMessageRequest + * conversationState: { // ConversationState + * conversationId: "STRING_VALUE", + * history: [ // ChatHistory + * { // ChatMessage Union: only one key present + * userInputMessage: { // UserInputMessage + * content: "STRING_VALUE", // required + * userInputMessageContext: { // UserInputMessageContext + * editorState: { // EditorState + * document: { // TextDocument + * relativeFilePath: "STRING_VALUE", // required + * programmingLanguage: { // ProgrammingLanguage + * languageName: "STRING_VALUE", // required + * }, + * text: "STRING_VALUE", + * documentSymbols: [ // DocumentSymbols + * { // DocumentSymbol + * name: "STRING_VALUE", // required + * type: "DECLARATION" || "USAGE", // required + * source: "STRING_VALUE", + * }, + * ], + * }, + * cursorState: { // CursorState Union: only one key present + * position: { // Position + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * range: { // Range + * start: { + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * end: { + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * }, + * }, + * relevantDocuments: [ // RelevantDocumentList + * { // RelevantTextDocument + * relativeFilePath: "STRING_VALUE", // required + * programmingLanguage: { + * languageName: "STRING_VALUE", // required + * }, + * text: "STRING_VALUE", + * documentSymbols: [ + * { + * name: "STRING_VALUE", // required + * type: "DECLARATION" || "USAGE", // required + * source: "STRING_VALUE", + * }, + * ], + * }, + * ], + * useRelevantDocuments: true || false, + * }, + * shellState: { // ShellState + * shellName: "STRING_VALUE", // required + * shellHistory: [ // ShellHistory + * { // ShellHistoryEntry + * command: "STRING_VALUE", // required + * directory: "STRING_VALUE", + * exitCode: Number("int"), + * stdout: "STRING_VALUE", + * stderr: "STRING_VALUE", + * }, + * ], + * }, + * gitState: { // GitState + * status: "STRING_VALUE", + * }, + * envState: { // EnvState + * operatingSystem: "STRING_VALUE", + * currentWorkingDirectory: "STRING_VALUE", + * environmentVariables: [ // EnvironmentVariables + * { // EnvironmentVariable + * key: "STRING_VALUE", + * value: "STRING_VALUE", + * }, + * ], + * }, + * appStudioContext: { // AppStudioState + * namespace: "STRING_VALUE", // required + * propertyName: "STRING_VALUE", // required + * propertyValue: "STRING_VALUE", + * propertyContext: "STRING_VALUE", // required + * }, + * diagnostic: { // Diagnostic Union: only one key present + * textDocumentDiagnostic: { // TextDocumentDiagnostic + * document: { + * relativeFilePath: "STRING_VALUE", // required + * programmingLanguage: { + * languageName: "STRING_VALUE", // required + * }, + * text: "STRING_VALUE", + * documentSymbols: [ + * { + * name: "STRING_VALUE", // required + * type: "DECLARATION" || "USAGE", // required + * source: "STRING_VALUE", + * }, + * ], + * }, + * range: { + * start: { + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * end: { + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * }, + * source: "STRING_VALUE", // required + * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required + * message: "STRING_VALUE", // required + * }, + * runtimeDiagnostic: { // RuntimeDiagnostic + * source: "STRING_VALUE", // required + * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required + * message: "STRING_VALUE", // required + * }, + * }, + * consoleState: { // ConsoleState + * region: "STRING_VALUE", + * consoleUrl: "STRING_VALUE", + * serviceId: "STRING_VALUE", + * serviceConsolePage: "STRING_VALUE", + * serviceSubconsolePage: "STRING_VALUE", + * taskName: "STRING_VALUE", + * }, + * userSettings: { // UserSettings + * hasConsentedToCrossRegionCalls: true || false, + * }, + * }, + * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS" || "CODE_GENERATION", + * }, + * assistantResponseMessage: { // AssistantResponseMessage + * messageId: "STRING_VALUE", + * content: "STRING_VALUE", // required + * supplementaryWebLinks: [ // SupplementaryWebLinks + * { // SupplementaryWebLink + * url: "STRING_VALUE", // required + * title: "STRING_VALUE", // required + * snippet: "STRING_VALUE", + * }, + * ], + * references: [ // References + * { // Reference + * licenseName: "STRING_VALUE", + * repository: "STRING_VALUE", + * url: "STRING_VALUE", + * recommendationContentSpan: { // Span + * start: Number("int"), + * end: Number("int"), + * }, + * }, + * ], + * followupPrompt: { // FollowupPrompt + * content: "STRING_VALUE", // required + * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS" || "CODE_GENERATION", + * }, + * }, + * }, + * ], + * currentMessage: {// Union: only one key present + * userInputMessage: { + * content: "STRING_VALUE", // required + * userInputMessageContext: { + * editorState: { + * document: "", + * cursorState: {// Union: only one key present + * position: "", + * range: { + * start: "", // required + * end: "", // required + * }, + * }, + * relevantDocuments: [ + * { + * relativeFilePath: "STRING_VALUE", // required + * programmingLanguage: { + * languageName: "STRING_VALUE", // required + * }, + * text: "STRING_VALUE", + * documentSymbols: [ + * { + * name: "STRING_VALUE", // required + * type: "DECLARATION" || "USAGE", // required + * source: "STRING_VALUE", + * }, + * ], + * }, + * ], + * useRelevantDocuments: true || false, + * }, + * shellState: { + * shellName: "STRING_VALUE", // required + * shellHistory: [ + * { + * command: "STRING_VALUE", // required + * directory: "STRING_VALUE", + * exitCode: Number("int"), + * stdout: "STRING_VALUE", + * stderr: "STRING_VALUE", + * }, + * ], + * }, + * gitState: { + * status: "STRING_VALUE", + * }, + * envState: { + * operatingSystem: "STRING_VALUE", + * currentWorkingDirectory: "STRING_VALUE", + * environmentVariables: [ + * { + * key: "STRING_VALUE", + * value: "STRING_VALUE", + * }, + * ], + * }, + * appStudioContext: { + * namespace: "STRING_VALUE", // required + * propertyName: "STRING_VALUE", // required + * propertyValue: "STRING_VALUE", + * propertyContext: "STRING_VALUE", // required + * }, + * diagnostic: {// Union: only one key present + * textDocumentDiagnostic: { + * document: "", // required + * range: { + * start: "", // required + * end: "", // required + * }, + * source: "STRING_VALUE", // required + * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required + * message: "STRING_VALUE", // required + * }, + * runtimeDiagnostic: { + * source: "STRING_VALUE", // required + * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required + * message: "STRING_VALUE", // required + * }, + * }, + * consoleState: { + * region: "STRING_VALUE", + * consoleUrl: "STRING_VALUE", + * serviceId: "STRING_VALUE", + * serviceConsolePage: "STRING_VALUE", + * serviceSubconsolePage: "STRING_VALUE", + * taskName: "STRING_VALUE", + * }, + * userSettings: { + * hasConsentedToCrossRegionCalls: true || false, + * }, + * }, + * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS" || "CODE_GENERATION", + * }, + * assistantResponseMessage: { + * messageId: "STRING_VALUE", + * content: "STRING_VALUE", // required + * supplementaryWebLinks: [ + * { + * url: "STRING_VALUE", // required + * title: "STRING_VALUE", // required + * snippet: "STRING_VALUE", + * }, + * ], + * references: [ + * { + * licenseName: "STRING_VALUE", + * repository: "STRING_VALUE", + * url: "STRING_VALUE", + * recommendationContentSpan: { + * start: Number("int"), + * end: Number("int"), + * }, + * }, + * ], + * followupPrompt: { + * content: "STRING_VALUE", // required + * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS" || "CODE_GENERATION", + * }, + * }, + * }, + * chatTriggerType: "MANUAL" || "DIAGNOSTIC" || "INLINE_CHAT", // required + * customizationArn: "STRING_VALUE", + * }, + * profileArn: "STRING_VALUE", + * source: "STRING_VALUE", + * dryRun: true || false, + * }; + * const command = new SendMessageCommand(input); + * const response = await client.send(command); + * // { // SendMessageResponse + * // sendMessageResponse: { // ChatResponseStream Union: only one key present + * // messageMetadataEvent: { // MessageMetadataEvent + * // conversationId: "STRING_VALUE", + * // utteranceId: "STRING_VALUE", + * // }, + * // assistantResponseEvent: { // AssistantResponseEvent + * // content: "STRING_VALUE", // required + * // }, + * // dryRunSucceedEvent: {}, + * // codeReferenceEvent: { // CodeReferenceEvent + * // references: [ // References + * // { // Reference + * // licenseName: "STRING_VALUE", + * // repository: "STRING_VALUE", + * // url: "STRING_VALUE", + * // recommendationContentSpan: { // Span + * // start: Number("int"), + * // end: Number("int"), + * // }, + * // }, + * // ], + * // }, + * // supplementaryWebLinksEvent: { // SupplementaryWebLinksEvent + * // supplementaryWebLinks: [ // SupplementaryWebLinks + * // { // SupplementaryWebLink + * // url: "STRING_VALUE", // required + * // title: "STRING_VALUE", // required + * // snippet: "STRING_VALUE", + * // }, + * // ], + * // }, + * // followupPromptEvent: { // FollowupPromptEvent + * // followupPrompt: { // FollowupPrompt + * // content: "STRING_VALUE", // required + * // userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS" || "CODE_GENERATION", + * // }, + * // }, + * // codeEvent: { // CodeEvent + * // content: "STRING_VALUE", // required + * // }, + * // intentsEvent: { // IntentsEvent + * // intents: { // IntentMap + * // "": { // IntentData + * // "": { // IntentDataType Union: only one key present + * // string: "STRING_VALUE", + * // }, + * // }, + * // }, + * // }, + * // interactionComponentsEvent: { // InteractionComponentsEvent + * // interactionComponentEntries: [ // InteractionComponentEntryList // required + * // { // InteractionComponentEntry + * // interactionComponentId: "STRING_VALUE", + * // interactionComponent: { // InteractionComponent + * // text: { // Text + * // content: "STRING_VALUE", // required + * // }, + * // alert: { // Alert + * // type: "INFO" || "ERROR" || "WARNING", // required + * // content: [ // AlertComponentList // required + * // { // AlertComponent + * // text: { + * // content: "STRING_VALUE", // required + * // }, + * // }, + * // ], + * // }, + * // infrastructureUpdate: { // InfrastructureUpdate + * // transition: { // InfrastructureUpdateTransition + * // currentState: "STRING_VALUE", // required + * // nextState: "STRING_VALUE", // required + * // }, + * // }, + * // progress: { // Progress + * // content: [ // ProgressComponentList // required + * // { // ProgressComponent + * // step: { // Step + * // id: Number("int"), // required + * // state: "FAILED" || "SUCCEEDED" || "STOPPED" || "PENDING" || "IN_PROGRESS" || "LOADING" || "PAUSED", // required + * // label: "STRING_VALUE", // required + * // content: [ // StepComponentList + * // { // StepComponent + * // text: "", + * // }, + * // ], + * // }, + * // }, + * // ], + * // }, + * // step: { + * // id: Number("int"), // required + * // state: "FAILED" || "SUCCEEDED" || "STOPPED" || "PENDING" || "IN_PROGRESS" || "LOADING" || "PAUSED", // required + * // label: "STRING_VALUE", // required + * // content: [ + * // { + * // text: "", + * // }, + * // ], + * // }, + * // taskDetails: { // TaskDetails + * // overview: { // TaskOverview + * // label: "STRING_VALUE", // required + * // description: "STRING_VALUE", // required + * // }, + * // content: [ // TaskComponentList // required + * // { // TaskComponent + * // text: "", + * // infrastructureUpdate: { + * // transition: { + * // currentState: "STRING_VALUE", // required + * // nextState: "STRING_VALUE", // required + * // }, + * // }, + * // alert: { + * // type: "INFO" || "ERROR" || "WARNING", // required + * // content: [ // required + * // { + * // text: "", + * // }, + * // ], + * // }, + * // progress: { + * // content: [ // required + * // { + * // step: "", + * // }, + * // ], + * // }, + * // }, + * // ], + * // actions: [ // TaskActionList + * // { // TaskAction + * // label: "STRING_VALUE", // required + * // note: { // TaskActionNote + * // content: "STRING_VALUE", // required + * // type: "INFO" || "WARNING", + * // }, + * // primary: true || false, + * // disabled: true || false, + * // payload: { // TaskActionPayload // required + * // "": "STRING_VALUE", + * // }, + * // confirmation: { // TaskActionConfirmation + * // content: "STRING_VALUE", + * // }, + * // }, + * // ], + * // }, + * // taskReference: { // TaskReference + * // taskId: "STRING_VALUE", // required + * // }, + * // suggestions: { // Suggestions + * // items: [ // SuggestionList // required + * // { // Suggestion + * // value: "STRING_VALUE", // required + * // }, + * // ], + * // }, + * // section: { // Section + * // title: "STRING_VALUE", // required + * // content: [ // SectionComponentList // required + * // { // SectionComponent Union: only one key present + * // text: "", + * // alert: { + * // type: "INFO" || "ERROR" || "WARNING", // required + * // content: [ // required + * // { + * // text: "", + * // }, + * // ], + * // }, + * // resource: { // Resource + * // title: "STRING_VALUE", // required + * // link: "STRING_VALUE", // required + * // description: "STRING_VALUE", // required + * // type: "STRING_VALUE", // required + * // ARN: "STRING_VALUE", // required + * // resourceJsonString: "STRING_VALUE", // required + * // }, + * // resourceList: { // ResourceList + * // action: { // Action Union: only one key present + * // webLink: { // WebLink + * // label: "STRING_VALUE", // required + * // url: "STRING_VALUE", // required + * // }, + * // moduleLink: { // ModuleLink Union: only one key present + * // cloudWatchTroubleshootingLink: { // CloudWatchTroubleshootingLink + * // label: "STRING_VALUE", // required + * // investigationPayload: "STRING_VALUE", // required + * // defaultText: "STRING_VALUE", + * // }, + * // }, + * // }, + * // items: [ // Resources // required + * // { + * // title: "STRING_VALUE", // required + * // link: "STRING_VALUE", // required + * // description: "STRING_VALUE", // required + * // type: "STRING_VALUE", // required + * // ARN: "STRING_VALUE", // required + * // resourceJsonString: "STRING_VALUE", // required + * // }, + * // ], + * // }, + * // }, + * // ], + * // }, + * // resource: "", + * // resourceList: { + * // action: {// Union: only one key present + * // webLink: { + * // label: "STRING_VALUE", // required + * // url: "STRING_VALUE", // required + * // }, + * // moduleLink: {// Union: only one key present + * // cloudWatchTroubleshootingLink: { + * // label: "STRING_VALUE", // required + * // investigationPayload: "STRING_VALUE", // required + * // defaultText: "STRING_VALUE", + * // }, + * // }, + * // }, + * // items: [ // required + * // "", + * // ], + * // }, + * // }, + * // }, + * // ], + * // }, + * // invalidStateEvent: { // InvalidStateEvent + * // reason: "INVALID_TASK_ASSIST_PLAN", // required + * // message: "STRING_VALUE", // required + * // }, + * // error: { // InternalServerException + * // message: "STRING_VALUE", // required + * // }, + * // }, + * // }; + * + * ``` + * + * @param SendMessageCommandInput - {@link SendMessageCommandInput} + * @returns {@link SendMessageCommandOutput} + * @see {@link SendMessageCommandInput} for command's `input` shape. + * @see {@link SendMessageCommandOutput} for command's `response` shape. + * @see {@link QDeveloperStreamingClientResolvedConfig | config} for QDeveloperStreamingClient's `config` shape. + * + * @throws {@link InternalServerException} (server fault) + * This exception is thrown when an unexpected error occurred during the processing of a request. + * + * @throws {@link ServiceQuotaExceededException} (client fault) + * This exception is thrown when request was denied due to caller exceeding their usage limits + * + * @throws {@link DryRunOperationException} (client fault) + * This exception is translated to a 204 as it succeeded the IAM Auth. + * + * @throws {@link ThrottlingException} (client fault) + * This exception is thrown when request was denied due to request throttling. + * + * @throws {@link ValidationException} (client fault) + * This exception is thrown when the input fails to satisfy the constraints specified by the service. + * + * @throws {@link ConflictException} (client fault) + * This exception is thrown when the action to perform could not be completed because the resource is in a conflicting state. + * + * @throws {@link ResourceNotFoundException} (client fault) + * This exception is thrown when describing a resource that does not exist. + * + * @throws {@link AccessDeniedException} (client fault) + * This exception is thrown when the user does not have sufficient access to perform this action. + * + * @throws {@link QDeveloperStreamingServiceException} + *

Base exception class for all service exceptions from QDeveloperStreaming service.

+ * + */ +export class SendMessageCommand extends $Command.classBuilder() + .m(function (this: any, Command: any, cs: any, config: QDeveloperStreamingClientResolvedConfig, o: any) { + return [ + + getSerdePlugin(config, this.serialize, this.deserialize), + ]; + }) + .s("AmazonQDeveloperStreamingService", "SendMessage", { + + /** + * @internal + */ + eventStream: { + output: true, + }, + }) + .n("QDeveloperStreamingClient", "SendMessageCommand") + .f(SendMessageRequestFilterSensitiveLog, SendMessageResponseFilterSensitiveLog) + .ser(se_SendMessageCommand) + .de(de_SendMessageCommand) +.build() { +/** @internal type navigation helper, not in runtime. */ +declare protected static __types: { + api: { + input: SendMessageRequest; + output: SendMessageResponse; + }; + sdk: { + input: SendMessageCommandInput; + output: SendMessageCommandOutput; + }; +}; +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/src/commands/index.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/src/commands/index.ts new file mode 100644 index 00000000000..cda6c546e4d --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/src/commands/index.ts @@ -0,0 +1,3 @@ +// smithy-typescript generated code +export * from "./GenerateCodeFromCommandsCommand"; +export * from "./SendMessageCommand"; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/src/endpoints.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/src/endpoints.ts new file mode 100644 index 00000000000..14f0eaa4ec6 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/src/endpoints.ts @@ -0,0 +1,224 @@ +// smithy-typescript generated code +import { + RegionInfoProvider, + RegionInfoProviderOptions, +} from "@aws-sdk/types"; +import { + PartitionHash, + RegionHash, + getRegionInfo, +} from "@smithy/config-resolver"; + +const regionHash: RegionHash = { +}; + +const partitionHash: PartitionHash = { + "aws": { + regions: [ + "af-south-1", + "ap-east-1", + "ap-northeast-1", + "ap-northeast-2", + "ap-northeast-3", + "ap-south-1", + "ap-south-2", + "ap-southeast-1", + "ap-southeast-2", + "ap-southeast-3", + "ap-southeast-4", + "ap-southeast-5", + "ca-central-1", + "ca-west-1", + "eu-central-1", + "eu-central-2", + "eu-north-1", + "eu-south-1", + "eu-south-2", + "eu-west-1", + "eu-west-2", + "eu-west-3", + "il-central-1", + "me-central-1", + "me-south-1", + "sa-east-1", + "us-east-1", + "us-east-2", + "us-west-1", + "us-west-2", + ], + regionRegex: "^(us|eu|ap|sa|ca|me|af|il|mx)\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.amazonaws.com", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.amazonaws.com", + "tags": [ + "fips" + ] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.api.aws", + "tags": [ + "dualstack", + "fips" + ] + }, + { + "hostname": "amazonqdeveloperstreamingservice.{region}.api.aws", + "tags": [ + "dualstack" + ] + } + ], + }, + "aws-cn": { + regions: [ + "cn-north-1", + "cn-northwest-1", + ], + regionRegex: "^cn\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.amazonaws.com.cn", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.amazonaws.com.cn", + "tags": [ + "fips" + ] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.api.amazonwebservices.com.cn", + "tags": [ + "dualstack", + "fips" + ] + }, + { + "hostname": "amazonqdeveloperstreamingservice.{region}.api.amazonwebservices.com.cn", + "tags": [ + "dualstack" + ] + } + ], + }, + "aws-iso": { + regions: [ + "us-iso-east-1", + "us-iso-west-1", + ], + regionRegex: "^us\\-iso\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.c2s.ic.gov", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.c2s.ic.gov", + "tags": [ + "fips" + ] + } + ], + }, + "aws-iso-b": { + regions: [ + "us-isob-east-1", + ], + regionRegex: "^us\\-isob\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.sc2s.sgov.gov", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.sc2s.sgov.gov", + "tags": [ + "fips" + ] + } + ], + }, + "aws-iso-e": { + regions: [ + "eu-isoe-west-1", + ], + regionRegex: "^eu\\-isoe\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.cloud.adc-e.uk", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.cloud.adc-e.uk", + "tags": [ + "fips" + ] + } + ], + }, + "aws-iso-f": { + regions: [ + ], + regionRegex: "^us\\-isof\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.csp.hci.ic.gov", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.csp.hci.ic.gov", + "tags": [ + "fips" + ] + } + ], + }, + "aws-us-gov": { + regions: [ + "us-gov-east-1", + "us-gov-west-1", + ], + regionRegex: "^us\\-gov\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazonqdeveloperstreamingservice.{region}.amazonaws.com", + "tags": [] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.amazonaws.com", + "tags": [ + "fips" + ] + }, + { + "hostname": "amazonqdeveloperstreamingservice-fips.{region}.api.aws", + "tags": [ + "dualstack", + "fips" + ] + }, + { + "hostname": "amazonqdeveloperstreamingservice.{region}.api.aws", + "tags": [ + "dualstack" + ] + } + ], + }, +}; + +export const defaultRegionInfoProvider: RegionInfoProvider = async ( + region: string, + options?: RegionInfoProviderOptions +) => + getRegionInfo(region, { + ...options, + signingService: "q", + regionHash, + partitionHash, + }) +; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/src/extensionConfiguration.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/src/extensionConfiguration.ts new file mode 100644 index 00000000000..74ed575070f --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/src/extensionConfiguration.ts @@ -0,0 +1,10 @@ +// smithy-typescript generated code +import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import { DefaultExtensionConfiguration } from "@smithy/types"; + +/** + * @internal + */ +export interface QDeveloperStreamingExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration, HttpAuthExtensionConfiguration {} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/src/index.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/src/index.ts new file mode 100644 index 00000000000..2fe51ba01b5 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/src/index.ts @@ -0,0 +1,10 @@ +// smithy-typescript generated code +/* eslint-disable */ +export * from "./QDeveloperStreamingClient"; +export * from "./QDeveloperStreaming"; +export type { RuntimeExtension } from "./runtimeExtensions"; +export type { QDeveloperStreamingExtensionConfiguration } from "./extensionConfiguration"; +export * from "./commands"; +export * from "./models"; + +export { QDeveloperStreamingServiceException } from "./models/QDeveloperStreamingServiceException"; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/src/models/QDeveloperStreamingServiceException.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/src/models/QDeveloperStreamingServiceException.ts new file mode 100644 index 00000000000..78c4dae9807 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/src/models/QDeveloperStreamingServiceException.ts @@ -0,0 +1,24 @@ +// smithy-typescript generated code +import { + ServiceException as __ServiceException, + ServiceExceptionOptions as __ServiceExceptionOptions, +} from "@smithy/smithy-client"; + +export type { __ServiceExceptionOptions } + +export { __ServiceException } + +/** + * @public + * + * Base exception class for all service exceptions from QDeveloperStreaming service. + */ +export class QDeveloperStreamingServiceException extends __ServiceException { + /** + * @internal + */ + constructor(options: __ServiceExceptionOptions) { + super(options); + Object.setPrototypeOf(this, QDeveloperStreamingServiceException.prototype); + } +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/src/models/index.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/src/models/index.ts new file mode 100644 index 00000000000..9eaceb12865 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/src/models/index.ts @@ -0,0 +1,2 @@ +// smithy-typescript generated code +export * from "./models_0"; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/src/models/models_0.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/src/models/models_0.ts new file mode 100644 index 00000000000..2c97e552099 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/src/models/models_0.ts @@ -0,0 +1,3492 @@ +// smithy-typescript generated code +import { QDeveloperStreamingServiceException as __BaseException } from "./QDeveloperStreamingServiceException"; +import { + SENSITIVE_STRING, + ExceptionOptionType as __ExceptionOptionType, +} from "@smithy/smithy-client"; + +/** + * @public + * @enum + */ +export const AccessDeniedExceptionReason = { + UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS: "UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS", +} as const +/** + * @public + */ +export type AccessDeniedExceptionReason = typeof AccessDeniedExceptionReason[keyof typeof AccessDeniedExceptionReason] + +/** + * This exception is thrown when the user does not have sufficient access to perform this action. + * @public + */ +export class AccessDeniedException extends __BaseException { + readonly name: "AccessDeniedException" = "AccessDeniedException"; + readonly $fault: "client" = "client"; + /** + * Reason for AccessDeniedException + * @public + */ + reason?: AccessDeniedExceptionReason; + + /** + * @internal + */ + constructor(opts: __ExceptionOptionType) { + super({ + name: "AccessDeniedException", + $fault: "client", + ...opts + }); + Object.setPrototypeOf(this, AccessDeniedException.prototype); + this.reason = opts.reason; + } +} + +/** + * This exception is thrown when an unexpected error occurred during the processing of a request. + * @public + */ +export class InternalServerException extends __BaseException { + readonly name: "InternalServerException" = "InternalServerException"; + readonly $fault: "server" = "server"; + $retryable = { + }; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType) { + super({ + name: "InternalServerException", + $fault: "server", + ...opts + }); + Object.setPrototypeOf(this, InternalServerException.prototype); + } +} + +/** + * This exception is thrown when describing a resource that does not exist. + * @public + */ +export class ResourceNotFoundException extends __BaseException { + readonly name: "ResourceNotFoundException" = "ResourceNotFoundException"; + readonly $fault: "client" = "client"; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType) { + super({ + name: "ResourceNotFoundException", + $fault: "client", + ...opts + }); + Object.setPrototypeOf(this, ResourceNotFoundException.prototype); + } +} + +/** + * This exception is thrown when request was denied due to request throttling. + * @public + */ +export class ThrottlingException extends __BaseException { + readonly name: "ThrottlingException" = "ThrottlingException"; + readonly $fault: "client" = "client"; + $retryable = { + throttling: true, + }; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType) { + super({ + name: "ThrottlingException", + $fault: "client", + ...opts + }); + Object.setPrototypeOf(this, ThrottlingException.prototype); + } +} + +/** + * @public + * @enum + */ +export const ValidationExceptionReason = { + CONTENT_LENGTH_EXCEEDS_THRESHOLD: "CONTENT_LENGTH_EXCEEDS_THRESHOLD", + INVALID_CONVERSATION_ID: "INVALID_CONVERSATION_ID", + INVALID_KMS_GRANT: "INVALID_KMS_GRANT", +} as const +/** + * @public + */ +export type ValidationExceptionReason = typeof ValidationExceptionReason[keyof typeof ValidationExceptionReason] + +/** + * This exception is thrown when the input fails to satisfy the constraints specified by the service. + * @public + */ +export class ValidationException extends __BaseException { + readonly name: "ValidationException" = "ValidationException"; + readonly $fault: "client" = "client"; + /** + * Reason for ValidationException + * @public + */ + reason?: ValidationExceptionReason; + + /** + * @internal + */ + constructor(opts: __ExceptionOptionType) { + super({ + name: "ValidationException", + $fault: "client", + ...opts + }); + Object.setPrototypeOf(this, ValidationException.prototype); + this.reason = opts.reason; + } +} + +/** + * Description of a user's context when they are calling Q Chat from AppStudio + * @public + */ +export interface AppStudioState { + /** + * The namespace of the context. Examples: 'ui.Button', 'ui.Table.DataSource', 'ui.Table.RowActions.Button', 'logic.invokeAWS', 'logic.JavaScript' + * @public + */ + namespace: string | undefined; + + /** + * The name of the property. Examples: 'visibility', 'disability', 'value', 'code' + * @public + */ + propertyName: string | undefined; + + /** + * The value of the property. + * @public + */ + propertyValue?: string; + + /** + * Context about how the property is used + * @public + */ + propertyContext: string | undefined; +} + +/** + * @internal + */ +export const AppStudioStateFilterSensitiveLog = (obj: AppStudioState): any => ({ + ...obj, + ...(obj.namespace && { namespace: + SENSITIVE_STRING + }), + ...(obj.propertyName && { propertyName: + SENSITIVE_STRING + }), + ...(obj.propertyValue && { propertyValue: + SENSITIVE_STRING + }), + ...(obj.propertyContext && { propertyContext: + SENSITIVE_STRING + }), +}) + +/** + * Streaming Response Event for Assistant Markdown text message. + * @public + */ +export interface AssistantResponseEvent { + /** + * The content of the text message in markdown format. + * @public + */ + content: string | undefined; +} + +/** + * @internal + */ +export const AssistantResponseEventFilterSensitiveLog = (obj: AssistantResponseEvent): any => ({ + ...obj, + ...(obj.content && { content: + SENSITIVE_STRING + }), +}) + +/** + * @public + * @enum + */ +export const UserIntent = { + /** + * Apply Common Best Practices + */ + APPLY_COMMON_BEST_PRACTICES: "APPLY_COMMON_BEST_PRACTICES", + /** + * Cite Sources + */ + CITE_SOURCES: "CITE_SOURCES", + /** + * generate code + */ + CODE_GENERATION: "CODE_GENERATION", + /** + * Explain Code Selection + */ + EXPLAIN_CODE_SELECTION: "EXPLAIN_CODE_SELECTION", + /** + * Explain Code Line By Line + */ + EXPLAIN_LINE_BY_LINE: "EXPLAIN_LINE_BY_LINE", + /** + * Generate CloudFormation Template + */ + GENERATE_CLOUDFORMATION_TEMPLATE: "GENERATE_CLOUDFORMATION_TEMPLATE", + /** + * Generate Unit Tests + */ + GENERATE_UNIT_TESTS: "GENERATE_UNIT_TESTS", + /** + * Improve Code + */ + IMPROVE_CODE: "IMPROVE_CODE", + /** + * Show More Examples + */ + SHOW_EXAMPLES: "SHOW_EXAMPLES", + /** + * Suggest Alternative Implementation + */ + SUGGEST_ALTERNATE_IMPLEMENTATION: "SUGGEST_ALTERNATE_IMPLEMENTATION", +} as const +/** + * @public + */ +export type UserIntent = typeof UserIntent[keyof typeof UserIntent] + +/** + * Followup Prompt for the Assistant Response + * @public + */ +export interface FollowupPrompt { + /** + * The content of the text message in markdown format. + * @public + */ + content: string | undefined; + + /** + * User Intent + * @public + */ + userIntent?: UserIntent; +} + +/** + * @internal + */ +export const FollowupPromptFilterSensitiveLog = (obj: FollowupPrompt): any => ({ + ...obj, + ...(obj.content && { content: + SENSITIVE_STRING + }), +}) + +/** + * Represents span in a text + * @public + */ +export interface Span { + start?: number; + end?: number; +} + +/** + * Code Reference / Repository details + * @public + */ +export interface Reference { + /** + * License name + * @public + */ + licenseName?: string; + + /** + * Code Repsitory for the associated reference + * @public + */ + repository?: string; + + /** + * Respository URL + * @public + */ + url?: string; + + /** + * Span / Range for the Reference + * @public + */ + recommendationContentSpan?: Span; +} + +/** + * Represents an additional reference link retured with the Chat message + * @public + */ +export interface SupplementaryWebLink { + /** + * URL of the web reference link + * @public + */ + url: string | undefined; + + /** + * Title of the web reference link + * @public + */ + title: string | undefined; + + /** + * Relevant text snippet from the link + * @public + */ + snippet?: string; +} + +/** + * @internal + */ +export const SupplementaryWebLinkFilterSensitiveLog = (obj: SupplementaryWebLink): any => ({ + ...obj, + ...(obj.url && { url: + SENSITIVE_STRING + }), + ...(obj.title && { title: + SENSITIVE_STRING + }), + ...(obj.snippet && { snippet: + SENSITIVE_STRING + }), +}) + +/** + * Markdown text message. + * @public + */ +export interface AssistantResponseMessage { + /** + * Unique identifier for the chat message + * @public + */ + messageId?: string; + + /** + * The content of the text message in markdown format. + * @public + */ + content: string | undefined; + + /** + * Web References + * @public + */ + supplementaryWebLinks?: (SupplementaryWebLink)[]; + + /** + * Code References + * @public + */ + references?: (Reference)[]; + + /** + * Followup Prompt + * @public + */ + followupPrompt?: FollowupPrompt; +} + +/** + * @internal + */ +export const AssistantResponseMessageFilterSensitiveLog = (obj: AssistantResponseMessage): any => ({ + ...obj, + ...(obj.content && { content: + SENSITIVE_STRING + }), + ...(obj.supplementaryWebLinks && { supplementaryWebLinks: + obj.supplementaryWebLinks.map( + item => + SupplementaryWebLinkFilterSensitiveLog(item) + ) + }), + ...(obj.followupPrompt && { followupPrompt: + FollowupPromptFilterSensitiveLog(obj.followupPrompt) + }), +}) + +/** + * @public + * @enum + */ +export const ConflictExceptionReason = { + CUSTOMER_KMS_KEY_DISABLED: "CUSTOMER_KMS_KEY_DISABLED", + CUSTOMER_KMS_KEY_INVALID_KEY_POLICY: "CUSTOMER_KMS_KEY_INVALID_KEY_POLICY", + MISMATCHED_KMS_KEY: "MISMATCHED_KMS_KEY", +} as const +/** + * @public + */ +export type ConflictExceptionReason = typeof ConflictExceptionReason[keyof typeof ConflictExceptionReason] + +/** + * This exception is thrown when the action to perform could not be completed because the resource is in a conflicting state. + * @public + */ +export class ConflictException extends __BaseException { + readonly name: "ConflictException" = "ConflictException"; + readonly $fault: "client" = "client"; + /** + * Reason for ConflictException + * @public + */ + reason?: ConflictExceptionReason; + + /** + * @internal + */ + constructor(opts: __ExceptionOptionType) { + super({ + name: "ConflictException", + $fault: "client", + ...opts + }); + Object.setPrototypeOf(this, ConflictException.prototype); + this.reason = opts.reason; + } +} + +/** + * Programming Languages supported by CodeWhisperer + * @public + */ +export interface ProgrammingLanguage { + languageName: string | undefined; +} + +/** + * Information about the state of the AWS management console page from which the user is calling + * @public + */ +export interface ConsoleState { + region?: string; + consoleUrl?: string; + serviceId?: string; + serviceConsolePage?: string; + serviceSubconsolePage?: string; + taskName?: string; +} + +/** + * @internal + */ +export const ConsoleStateFilterSensitiveLog = (obj: ConsoleState): any => ({ + ...obj, + ...(obj.consoleUrl && { consoleUrl: + SENSITIVE_STRING + }), + ...(obj.taskName && { taskName: + SENSITIVE_STRING + }), +}) + +/** + * @public + * @enum + */ +export const DiagnosticSeverity = { + ERROR: "ERROR", + HINT: "HINT", + INFORMATION: "INFORMATION", + WARNING: "WARNING", +} as const +/** + * @public + */ +export type DiagnosticSeverity = typeof DiagnosticSeverity[keyof typeof DiagnosticSeverity] + +/** + * Structure to represent metadata about a Runtime Diagnostics + * @public + */ +export interface RuntimeDiagnostic { + /** + * A human-readable string describing the source of the diagnostic + * @public + */ + source: string | undefined; + + /** + * Diagnostic Error type + * @public + */ + severity: DiagnosticSeverity | undefined; + + /** + * The diagnostic's message. + * @public + */ + message: string | undefined; +} + +/** + * @internal + */ +export const RuntimeDiagnosticFilterSensitiveLog = (obj: RuntimeDiagnostic): any => ({ + ...obj, + ...(obj.source && { source: + SENSITIVE_STRING + }), + ...(obj.message && { message: + SENSITIVE_STRING + }), +}) + +/** + * @public + * @enum + */ +export const SymbolType = { + DECLARATION: "DECLARATION", + USAGE: "USAGE", +} as const +/** + * @public + */ +export type SymbolType = typeof SymbolType[keyof typeof SymbolType] + +/** + * @public + */ +export interface DocumentSymbol { + /** + * Name of the Document Symbol + * @public + */ + name: string | undefined; + + /** + * Symbol type - DECLARATION / USAGE + * @public + */ + type: SymbolType | undefined; + + /** + * Symbol package / source for FullyQualified names + * @public + */ + source?: string; +} + +/** + * Represents a Text Document / File + * @public + */ +export interface TextDocument { + /** + * Filepath relative to the root of the workspace + * @public + */ + relativeFilePath: string | undefined; + + /** + * The text document's language identifier. + * @public + */ + programmingLanguage?: ProgrammingLanguage; + + /** + * Content of the text document + * @public + */ + text?: string; + + /** + * DocumentSymbols parsed from a text document + * @public + */ + documentSymbols?: (DocumentSymbol)[]; +} + +/** + * @internal + */ +export const TextDocumentFilterSensitiveLog = (obj: TextDocument): any => ({ + ...obj, + ...(obj.relativeFilePath && { relativeFilePath: + SENSITIVE_STRING + }), + ...(obj.text && { text: + SENSITIVE_STRING + }), +}) + +/** + * Indicates Cursor postion in a Text Document + * @public + */ +export interface Position { + /** + * Line position in a document. + * @public + */ + line: number | undefined; + + /** + * Character offset on a line in a document (zero-based) + * @public + */ + character: number | undefined; +} + +/** + * Indicates Range / Span in a Text Document + * @public + */ +export interface Range { + /** + * The range's start position. + * @public + */ + start: Position | undefined; + + /** + * The range's end position. + * @public + */ + end: Position | undefined; +} + +/** + * Structure to represent metadata about a TextDocument Diagnostic + * @public + */ +export interface TextDocumentDiagnostic { + /** + * Represents a Text Document associated with Diagnostic + * @public + */ + document: TextDocument | undefined; + + /** + * The range at which the message applies. + * @public + */ + range: Range | undefined; + + /** + * A human-readable string describing the source of the diagnostic + * @public + */ + source: string | undefined; + + /** + * Diagnostic Error type + * @public + */ + severity: DiagnosticSeverity | undefined; + + /** + * The diagnostic's message. + * @public + */ + message: string | undefined; +} + +/** + * @internal + */ +export const TextDocumentDiagnosticFilterSensitiveLog = (obj: TextDocumentDiagnostic): any => ({ + ...obj, + ...(obj.document && { document: + TextDocumentFilterSensitiveLog(obj.document) + }), + ...(obj.source && { source: + SENSITIVE_STRING + }), + ...(obj.message && { message: + SENSITIVE_STRING + }), +}) + +/** + * Represents a Diagnostic message + * @public + */ +export type Diagnostic = + | Diagnostic.RuntimeDiagnosticMember + | Diagnostic.TextDocumentDiagnosticMember + | Diagnostic.$UnknownMember + +/** + * @public + */ +export namespace Diagnostic { + + /** + * Diagnostics originating from a TextDocument + * @public + */ + export interface TextDocumentDiagnosticMember { + textDocumentDiagnostic: TextDocumentDiagnostic; + runtimeDiagnostic?: never; + $unknown?: never; + } + + /** + * Diagnostics originating from a Runtime + * @public + */ + export interface RuntimeDiagnosticMember { + textDocumentDiagnostic?: never; + runtimeDiagnostic: RuntimeDiagnostic; + $unknown?: never; + } + + /** + * @public + */ + export interface $UnknownMember { + textDocumentDiagnostic?: never; + runtimeDiagnostic?: never; + $unknown: [string, any]; + } + + export interface Visitor { + textDocumentDiagnostic: (value: TextDocumentDiagnostic) => T; + runtimeDiagnostic: (value: RuntimeDiagnostic) => T; + _: (name: string, value: any) => T; + } + + export const visit = ( + value: Diagnostic, + visitor: Visitor + ): T => { + if (value.textDocumentDiagnostic !== undefined) return visitor.textDocumentDiagnostic(value.textDocumentDiagnostic); + if (value.runtimeDiagnostic !== undefined) return visitor.runtimeDiagnostic(value.runtimeDiagnostic); + return visitor._(value.$unknown[0], value.$unknown[1]); + } + +} +/** + * @internal + */ +export const DiagnosticFilterSensitiveLog = (obj: Diagnostic): any => { + if (obj.textDocumentDiagnostic !== undefined) return {textDocumentDiagnostic: + TextDocumentDiagnosticFilterSensitiveLog(obj.textDocumentDiagnostic) + }; + if (obj.runtimeDiagnostic !== undefined) return {runtimeDiagnostic: + RuntimeDiagnosticFilterSensitiveLog(obj.runtimeDiagnostic) + }; + if (obj.$unknown !== undefined) return {[obj.$unknown[0]]: 'UNKNOWN'}; +} + +/** + * Represents the state of the Cursor in an Editor + * @public + */ +export type CursorState = + | CursorState.PositionMember + | CursorState.RangeMember + | CursorState.$UnknownMember + +/** + * @public + */ +export namespace CursorState { + + /** + * Represents a cursor position in a Text Document + * @public + */ + export interface PositionMember { + position: Position; + range?: never; + $unknown?: never; + } + + /** + * Represents a text selection in a Text Document + * @public + */ + export interface RangeMember { + position?: never; + range: Range; + $unknown?: never; + } + + /** + * @public + */ + export interface $UnknownMember { + position?: never; + range?: never; + $unknown: [string, any]; + } + + export interface Visitor { + position: (value: Position) => T; + range: (value: Range) => T; + _: (name: string, value: any) => T; + } + + export const visit = ( + value: CursorState, + visitor: Visitor + ): T => { + if (value.position !== undefined) return visitor.position(value.position); + if (value.range !== undefined) return visitor.range(value.range); + return visitor._(value.$unknown[0], value.$unknown[1]); + } + +} + +/** + * Represents an IDE retrieved relevant Text Document / File + * @public + */ +export interface RelevantTextDocument { + /** + * Filepath relative to the root of the workspace + * @public + */ + relativeFilePath: string | undefined; + + /** + * The text document's language identifier. + * @public + */ + programmingLanguage?: ProgrammingLanguage; + + /** + * Content of the text document + * @public + */ + text?: string; + + /** + * DocumentSymbols parsed from a text document + * @public + */ + documentSymbols?: (DocumentSymbol)[]; +} + +/** + * @internal + */ +export const RelevantTextDocumentFilterSensitiveLog = (obj: RelevantTextDocument): any => ({ + ...obj, + ...(obj.relativeFilePath && { relativeFilePath: + SENSITIVE_STRING + }), + ...(obj.text && { text: + SENSITIVE_STRING + }), +}) + +/** + * Represents the state of an Editor + * @public + */ +export interface EditorState { + /** + * Represents currently edited file + * @public + */ + document?: TextDocument; + + /** + * Position of the cursor + * @public + */ + cursorState?: CursorState; + + /** + * Represents IDE provided relevant files + * @public + */ + relevantDocuments?: (RelevantTextDocument)[]; + + /** + * Whether service should use relevant document in prompt + * @public + */ + useRelevantDocuments?: boolean; +} + +/** + * @internal + */ +export const EditorStateFilterSensitiveLog = (obj: EditorState): any => ({ + ...obj, + ...(obj.document && { document: + TextDocumentFilterSensitiveLog(obj.document) + }), + ...(obj.cursorState && { cursorState: + obj.cursorState + }), + ...(obj.relevantDocuments && { relevantDocuments: + obj.relevantDocuments.map( + item => + RelevantTextDocumentFilterSensitiveLog(item) + ) + }), +}) + +/** + * An environment variable + * @public + */ +export interface EnvironmentVariable { + /** + * The key of an environment variable + * @public + */ + key?: string; + + /** + * The value of an environment variable + * @public + */ + value?: string; +} + +/** + * @internal + */ +export const EnvironmentVariableFilterSensitiveLog = (obj: EnvironmentVariable): any => ({ + ...obj, + ...(obj.key && { key: + SENSITIVE_STRING + }), + ...(obj.value && { value: + SENSITIVE_STRING + }), +}) + +/** + * State related to the user's environment + * @public + */ +export interface EnvState { + /** + * The name of the operating system in use + * @public + */ + operatingSystem?: string; + + /** + * The current working directory of the environment + * @public + */ + currentWorkingDirectory?: string; + + /** + * The environment variables set in the current environment + * @public + */ + environmentVariables?: (EnvironmentVariable)[]; +} + +/** + * @internal + */ +export const EnvStateFilterSensitiveLog = (obj: EnvState): any => ({ + ...obj, + ...(obj.currentWorkingDirectory && { currentWorkingDirectory: + SENSITIVE_STRING + }), + ...(obj.environmentVariables && { environmentVariables: + obj.environmentVariables.map( + item => + EnvironmentVariableFilterSensitiveLog(item) + ) + }), +}) + +/** + * State related to the Git VSC + * @public + */ +export interface GitState { + /** + * The output of the command `git status --porcelain=v1 -b` + * @public + */ + status?: string; +} + +/** + * @internal + */ +export const GitStateFilterSensitiveLog = (obj: GitState): any => ({ + ...obj, + ...(obj.status && { status: + SENSITIVE_STRING + }), +}) + +/** + * An single entry in the shell history + * @public + */ +export interface ShellHistoryEntry { + /** + * The shell command that was run + * @public + */ + command: string | undefined; + + /** + * The directory the command was ran in + * @public + */ + directory?: string; + + /** + * The exit code of the command after it finished + * @public + */ + exitCode?: number; + + /** + * The stdout from the command + * @public + */ + stdout?: string; + + /** + * The stderr from the command + * @public + */ + stderr?: string; +} + +/** + * @internal + */ +export const ShellHistoryEntryFilterSensitiveLog = (obj: ShellHistoryEntry): any => ({ + ...obj, + ...(obj.command && { command: + SENSITIVE_STRING + }), + ...(obj.directory && { directory: + SENSITIVE_STRING + }), + ...(obj.stdout && { stdout: + SENSITIVE_STRING + }), + ...(obj.stderr && { stderr: + SENSITIVE_STRING + }), +}) + +/** + * Represents the state of a shell + * @public + */ +export interface ShellState { + /** + * The name of the current shell + * @public + */ + shellName: string | undefined; + + /** + * The history previous shell commands for the current shell + * @public + */ + shellHistory?: (ShellHistoryEntry)[]; +} + +/** + * @internal + */ +export const ShellStateFilterSensitiveLog = (obj: ShellState): any => ({ + ...obj, + ...(obj.shellHistory && { shellHistory: + obj.shellHistory.map( + item => + ShellHistoryEntryFilterSensitiveLog(item) + ) + }), +}) + +/** + * Settings information passed by the Q widget + * @public + */ +export interface UserSettings { + hasConsentedToCrossRegionCalls?: boolean; +} + +/** + * Additional Chat message context associated with the Chat Message + * @public + */ +export interface UserInputMessageContext { + /** + * Editor state chat message context. + * @public + */ + editorState?: EditorState; + + /** + * Shell state chat message context. + * @public + */ + shellState?: ShellState; + + /** + * Git state chat message context. + * @public + */ + gitState?: GitState; + + /** + * Environment state chat message context. + * @public + */ + envState?: EnvState; + + /** + * The state of a user's AppStudio UI when sending a message. + * @public + */ + appStudioContext?: AppStudioState; + + /** + * Diagnostic chat message context. + * @public + */ + diagnostic?: Diagnostic; + + /** + * Contextual information about the environment from which the user is calling. + * @public + */ + consoleState?: ConsoleState; + + /** + * Settings information, e.g., whether the user has enabled cross-region API calls. + * @public + */ + userSettings?: UserSettings; +} + +/** + * @internal + */ +export const UserInputMessageContextFilterSensitiveLog = (obj: UserInputMessageContext): any => ({ + ...obj, + ...(obj.editorState && { editorState: + EditorStateFilterSensitiveLog(obj.editorState) + }), + ...(obj.shellState && { shellState: + ShellStateFilterSensitiveLog(obj.shellState) + }), + ...(obj.gitState && { gitState: + GitStateFilterSensitiveLog(obj.gitState) + }), + ...(obj.envState && { envState: + EnvStateFilterSensitiveLog(obj.envState) + }), + ...(obj.appStudioContext && { appStudioContext: + AppStudioStateFilterSensitiveLog(obj.appStudioContext) + }), + ...(obj.diagnostic && { diagnostic: + DiagnosticFilterSensitiveLog(obj.diagnostic) + }), + ...(obj.consoleState && { consoleState: + ConsoleStateFilterSensitiveLog(obj.consoleState) + }), +}) + +/** + * Structure to represent a chat input message from User + * @public + */ +export interface UserInputMessage { + /** + * The content of the chat message. + * @public + */ + content: string | undefined; + + /** + * Chat message context associated with the Chat Message + * @public + */ + userInputMessageContext?: UserInputMessageContext; + + /** + * User Intent + * @public + */ + userIntent?: UserIntent; +} + +/** + * @internal + */ +export const UserInputMessageFilterSensitiveLog = (obj: UserInputMessage): any => ({ + ...obj, + ...(obj.content && { content: + SENSITIVE_STRING + }), + ...(obj.userInputMessageContext && { userInputMessageContext: + UserInputMessageContextFilterSensitiveLog(obj.userInputMessageContext) + }), +}) + +/** + * @public + */ +export type ChatMessage = + | ChatMessage.AssistantResponseMessageMember + | ChatMessage.UserInputMessageMember + | ChatMessage.$UnknownMember + +/** + * @public + */ +export namespace ChatMessage { + + /** + * Structure to represent a chat input message from User + * @public + */ + export interface UserInputMessageMember { + userInputMessage: UserInputMessage; + assistantResponseMessage?: never; + $unknown?: never; + } + + /** + * Markdown text message. + * @public + */ + export interface AssistantResponseMessageMember { + userInputMessage?: never; + assistantResponseMessage: AssistantResponseMessage; + $unknown?: never; + } + + /** + * @public + */ + export interface $UnknownMember { + userInputMessage?: never; + assistantResponseMessage?: never; + $unknown: [string, any]; + } + + export interface Visitor { + userInputMessage: (value: UserInputMessage) => T; + assistantResponseMessage: (value: AssistantResponseMessage) => T; + _: (name: string, value: any) => T; + } + + export const visit = ( + value: ChatMessage, + visitor: Visitor + ): T => { + if (value.userInputMessage !== undefined) return visitor.userInputMessage(value.userInputMessage); + if (value.assistantResponseMessage !== undefined) return visitor.assistantResponseMessage(value.assistantResponseMessage); + return visitor._(value.$unknown[0], value.$unknown[1]); + } + +} +/** + * @internal + */ +export const ChatMessageFilterSensitiveLog = (obj: ChatMessage): any => { + if (obj.userInputMessage !== undefined) return {userInputMessage: + UserInputMessageFilterSensitiveLog(obj.userInputMessage) + }; + if (obj.assistantResponseMessage !== undefined) return {assistantResponseMessage: + AssistantResponseMessageFilterSensitiveLog(obj.assistantResponseMessage) + }; + if (obj.$unknown !== undefined) return {[obj.$unknown[0]]: 'UNKNOWN'}; +} + +/** + * Streaming response event for generated code text. + * @public + */ +export interface CodeEvent { + /** + * Generated code snippet. + * @public + */ + content: string | undefined; +} + +/** + * @internal + */ +export const CodeEventFilterSensitiveLog = (obj: CodeEvent): any => ({ + ...obj, + ...(obj.content && { content: + SENSITIVE_STRING + }), +}) + +/** + * Streaming Response Event for CodeReferences + * @public + */ +export interface CodeReferenceEvent { + /** + * Code References for Assistant Response Message + * @public + */ + references?: (Reference)[]; +} + +/** + * Streaming Response Event when DryRun is succeessful + * @public + */ +export interface DryRunSucceedEvent { +} + +/** + * Streaming Response Event for Followup Prompt. + * @public + */ +export interface FollowupPromptEvent { + /** + * Followup Prompt for the Assistant Response + * @public + */ + followupPrompt?: FollowupPrompt; +} + +/** + * @internal + */ +export const FollowupPromptEventFilterSensitiveLog = (obj: FollowupPromptEvent): any => ({ + ...obj, + ...(obj.followupPrompt && { followupPrompt: + FollowupPromptFilterSensitiveLog(obj.followupPrompt) + }), +}) + +/** + * @public + * @enum + */ +export const IntentType = { + GLUE_SENSEI: "GLUE_SENSEI", + RESOURCE_DATA: "RESOURCE_DATA", + SUPPORT: "SUPPORT", +} as const +/** + * @public + */ +export type IntentType = typeof IntentType[keyof typeof IntentType] + +/** + * @public + */ +export type IntentDataType = + | IntentDataType.StringMember + | IntentDataType.$UnknownMember + +/** + * @public + */ +export namespace IntentDataType { + + export interface StringMember { + string: string; + $unknown?: never; + } + + /** + * @public + */ + export interface $UnknownMember { + string?: never; + $unknown: [string, any]; + } + + export interface Visitor { + string: (value: string) => T; + _: (name: string, value: any) => T; + } + + export const visit = ( + value: IntentDataType, + visitor: Visitor + ): T => { + if (value.string !== undefined) return visitor.string(value.string); + return visitor._(value.$unknown[0], value.$unknown[1]); + } + +} + +/** + * Streaming Response Event for Intents + * @public + */ +export interface IntentsEvent { + /** + * A map of Intent objects + * @public + */ + intents?: Partial>>; +} + +/** + * @internal + */ +export const IntentsEventFilterSensitiveLog = (obj: IntentsEvent): any => ({ + ...obj, + ...(obj.intents && { intents: + SENSITIVE_STRING + }), +}) + +/** + * Structure representing a simple text component with sensitive content, which can include Markdown formatting. + * @public + */ +export interface Text { + /** + * Contains text content that may include sensitive information and can support Markdown formatting. + * @public + */ + content: string | undefined; +} + +/** + * @internal + */ +export const TextFilterSensitiveLog = (obj: Text): any => ({ + ...obj, + ...(obj.content && { content: + SENSITIVE_STRING + }), +}) + +/** + * @public + */ +export interface AlertComponent { + /** + * Structure representing a simple text component with sensitive content, which can include Markdown formatting. + * @public + */ + text?: Text; +} + +/** + * @internal + */ +export const AlertComponentFilterSensitiveLog = (obj: AlertComponent): any => ({ + ...obj, + ...(obj.text && { text: + TextFilterSensitiveLog(obj.text) + }), +}) + +/** + * @public + * @enum + */ +export const AlertType = { + /** + * Alert indicating an error or failure that requires attention. + */ + ERROR: "ERROR", + /** + * Informational alert providing general information. + */ + INFO: "INFO", + /** + * Alert indicating a warning or potential issue that should be noted. + */ + WARNING: "WARNING", +} as const +/** + * @public + */ +export type AlertType = typeof AlertType[keyof typeof AlertType] + +/** + * Structure representing an alert with a type and content. + * @public + */ +export interface Alert { + /** + * Enum defining types of alerts that can be issued. + * @public + */ + type: AlertType | undefined; + + /** + * Contains the content of the alert, which may include sensitive information. + * @public + */ + content: (AlertComponent)[] | undefined; +} + +/** + * @internal + */ +export const AlertFilterSensitiveLog = (obj: Alert): any => ({ + ...obj, + ...(obj.content && { content: + obj.content.map( + item => + AlertComponentFilterSensitiveLog(item) + ) + }), +}) + +/** + * Structure describing a transition between two states in an infrastructure update. + * @public + */ +export interface InfrastructureUpdateTransition { + /** + * The current state of the infrastructure before the update. + * @public + */ + currentState: string | undefined; + + /** + * The next state of the infrastructure following the update. + * @public + */ + nextState: string | undefined; +} + +/** + * @internal + */ +export const InfrastructureUpdateTransitionFilterSensitiveLog = (obj: InfrastructureUpdateTransition): any => ({ + ...obj, + ...(obj.currentState && { currentState: + SENSITIVE_STRING + }), + ...(obj.nextState && { nextState: + SENSITIVE_STRING + }), +}) + +/** + * Structure representing different types of infrastructure updates. + * @public + */ +export interface InfrastructureUpdate { + /** + * Structure describing a transition between two states in an infrastructure update. + * @public + */ + transition?: InfrastructureUpdateTransition; +} + +/** + * @internal + */ +export const InfrastructureUpdateFilterSensitiveLog = (obj: InfrastructureUpdate): any => ({ + ...obj, + ...(obj.transition && { transition: + InfrastructureUpdateTransitionFilterSensitiveLog(obj.transition) + }), +}) + +/** + * @public + */ +export interface StepComponent { + /** + * Structure representing a simple text component with sensitive content, which can include Markdown formatting. + * @public + */ + text?: Text; +} + +/** + * @internal + */ +export const StepComponentFilterSensitiveLog = (obj: StepComponent): any => ({ + ...obj, + ...(obj.text && { text: + TextFilterSensitiveLog(obj.text) + }), +}) + +/** + * @public + * @enum + */ +export const StepState = { + /** + * Indicates a failure or issue that needs to be addressed. + */ + FAILED: "FAILED", + /** + * Indicates that the step is currently being processed. This is a non-terminal state, meaning the process is active and ongoing. + */ + IN_PROGRESS: "IN_PROGRESS", + /** + * Indicates that the step is being loaded or initialized. This is a non-terminal state, meaning the process is in the setup phase. + */ + LOADING: "LOADING", + /** + * Indicates that the step is temporarily halted but can resume. This is a non-terminal state, representing a temporary pause. + */ + PAUSED: "PAUSED", + /** + * Indicates that the step is waiting for some condition or input. This is a non-terminal state, meaning the process is paused but not complete. + */ + PENDING: "PENDING", + /** + * Indicates that the step was stopped, either intentionally or unintentionally. + */ + STOPPED: "STOPPED", + /** + * Indicates successful completion of the step. + */ + SUCCEEDED: "SUCCEEDED", +} as const +/** + * @public + */ +export type StepState = typeof StepState[keyof typeof StepState] + +/** + * Structure representing an individual step in a process. + * @public + */ +export interface Step { + /** + * A unique identifier for the step. It must be a non-negative integer to ensure each step is distinct. + * @public + */ + id: number | undefined; + + /** + * Enum representing all possible step states, combining terminal and non-terminal states. + * @public + */ + state: StepState | undefined; + + /** + * A label for the step, providing a concise description. + * @public + */ + label: string | undefined; + + /** + * Optional content providing additional details about the step. + * @public + */ + content?: (StepComponent)[]; +} + +/** + * @internal + */ +export const StepFilterSensitiveLog = (obj: Step): any => ({ + ...obj, + ...(obj.label && { label: + SENSITIVE_STRING + }), + ...(obj.content && { content: + obj.content.map( + item => + StepComponentFilterSensitiveLog(item) + ) + }), +}) + +/** + * @public + */ +export interface ProgressComponent { + /** + * Structure representing an individual step in a process. + * @public + */ + step?: Step; +} + +/** + * @internal + */ +export const ProgressComponentFilterSensitiveLog = (obj: ProgressComponent): any => ({ + ...obj, + ...(obj.step && { step: + StepFilterSensitiveLog(obj.step) + }), +}) + +/** + * Structure representing a collection of steps in a process. + * @public + */ +export interface Progress { + /** + * A collection of steps that make up a process. Each step is detailed using the Step structure. + * @public + */ + content: (ProgressComponent)[] | undefined; +} + +/** + * @internal + */ +export const ProgressFilterSensitiveLog = (obj: Progress): any => ({ + ...obj, + ...(obj.content && { content: + obj.content.map( + item => + ProgressComponentFilterSensitiveLog(item) + ) + }), +}) + +/** + * Structure representing a resource item + * @public + */ +export interface Resource { + /** + * Card title. + * @public + */ + title: string | undefined; + + /** + * Link for the resource item + * @public + */ + link: string | undefined; + + /** + * Short text about that resource for example Region: us-east-1 + * @public + */ + description: string | undefined; + + /** + * Resource type e.g AWS EC2 + * @public + */ + type: string | undefined; + + /** + * Amazon resource number e.g arn:aws:aec:..... + * @public + */ + ARN: string | undefined; + + /** + * A stringified object + * @public + */ + resourceJsonString: string | undefined; +} + +/** + * @internal + */ +export const ResourceFilterSensitiveLog = (obj: Resource): any => ({ + ...obj, + ...(obj.title && { title: + SENSITIVE_STRING + }), + ...(obj.link && { link: + SENSITIVE_STRING + }), + ...(obj.description && { description: + SENSITIVE_STRING + }), + ...(obj.type && { type: + SENSITIVE_STRING + }), + ...(obj.ARN && { ARN: + SENSITIVE_STRING + }), + ...(obj.resourceJsonString && { resourceJsonString: + SENSITIVE_STRING + }), +}) + +/** + * For CloudWatch Troubleshooting Link Module + * @public + */ +export interface CloudWatchTroubleshootingLink { + /** + * A label for the link. + * @public + */ + label: string | undefined; + + /** + * Stringified JSON payload. See spec here https://code.amazon.com/packages/CloudWatchOdysseyModel/blobs/50c0832f0e393e4ab68827eb4f04d832366821c1/--/model/events.smithy#L28 . + * @public + */ + investigationPayload: string | undefined; + + /** + * Fallback string, if target channel does not support the CloudWatchTroubleshootingLink. + * @public + */ + defaultText?: string; +} + +/** + * @internal + */ +export const CloudWatchTroubleshootingLinkFilterSensitiveLog = (obj: CloudWatchTroubleshootingLink): any => ({ + ...obj, + ...(obj.label && { label: + SENSITIVE_STRING + }), + ...(obj.investigationPayload && { investigationPayload: + SENSITIVE_STRING + }), + ...(obj.defaultText && { defaultText: + SENSITIVE_STRING + }), +}) + +/** + * @public + */ +export type ModuleLink = + | ModuleLink.CloudWatchTroubleshootingLinkMember + | ModuleLink.$UnknownMember + +/** + * @public + */ +export namespace ModuleLink { + + /** + * For CloudWatch Troubleshooting Link Module + * @public + */ + export interface CloudWatchTroubleshootingLinkMember { + cloudWatchTroubleshootingLink: CloudWatchTroubleshootingLink; + $unknown?: never; + } + + /** + * @public + */ + export interface $UnknownMember { + cloudWatchTroubleshootingLink?: never; + $unknown: [string, any]; + } + + export interface Visitor { + cloudWatchTroubleshootingLink: (value: CloudWatchTroubleshootingLink) => T; + _: (name: string, value: any) => T; + } + + export const visit = ( + value: ModuleLink, + visitor: Visitor + ): T => { + if (value.cloudWatchTroubleshootingLink !== undefined) return visitor.cloudWatchTroubleshootingLink(value.cloudWatchTroubleshootingLink); + return visitor._(value.$unknown[0], value.$unknown[1]); + } + +} +/** + * @internal + */ +export const ModuleLinkFilterSensitiveLog = (obj: ModuleLink): any => { + if (obj.cloudWatchTroubleshootingLink !== undefined) return {cloudWatchTroubleshootingLink: + CloudWatchTroubleshootingLinkFilterSensitiveLog(obj.cloudWatchTroubleshootingLink) + }; + if (obj.$unknown !== undefined) return {[obj.$unknown[0]]: 'UNKNOWN'}; +} + +/** + * @public + */ +export interface WebLink { + /** + * A label for the link + * @public + */ + label: string | undefined; + + /** + * URL of the Weblink + * @public + */ + url: string | undefined; +} + +/** + * @internal + */ +export const WebLinkFilterSensitiveLog = (obj: WebLink): any => ({ + ...obj, + ...(obj.label && { label: + SENSITIVE_STRING + }), + ...(obj.url && { url: + SENSITIVE_STRING + }), +}) + +/** + * @public + */ +export type Action = + | Action.ModuleLinkMember + | Action.WebLinkMember + | Action.$UnknownMember + +/** + * @public + */ +export namespace Action { + + export interface WebLinkMember { + webLink: WebLink; + moduleLink?: never; + $unknown?: never; + } + + export interface ModuleLinkMember { + webLink?: never; + moduleLink: ModuleLink; + $unknown?: never; + } + + /** + * @public + */ + export interface $UnknownMember { + webLink?: never; + moduleLink?: never; + $unknown: [string, any]; + } + + export interface Visitor { + webLink: (value: WebLink) => T; + moduleLink: (value: ModuleLink) => T; + _: (name: string, value: any) => T; + } + + export const visit = ( + value: Action, + visitor: Visitor + ): T => { + if (value.webLink !== undefined) return visitor.webLink(value.webLink); + if (value.moduleLink !== undefined) return visitor.moduleLink(value.moduleLink); + return visitor._(value.$unknown[0], value.$unknown[1]); + } + +} +/** + * @internal + */ +export const ActionFilterSensitiveLog = (obj: Action): any => { + if (obj.webLink !== undefined) return {webLink: + WebLinkFilterSensitiveLog(obj.webLink) + }; + if (obj.moduleLink !== undefined) return {moduleLink: + ModuleLinkFilterSensitiveLog(obj.moduleLink) + }; + if (obj.$unknown !== undefined) return {[obj.$unknown[0]]: 'UNKNOWN'}; +} + +/** + * Structure representing a list of Items + * @public + */ +export interface ResourceList { + /** + * Action associated with the list + * @public + */ + action?: Action; + + /** + * List of resources + * @public + */ + items: (Resource)[] | undefined; +} + +/** + * @internal + */ +export const ResourceListFilterSensitiveLog = (obj: ResourceList): any => ({ + ...obj, + ...(obj.action && { action: + ActionFilterSensitiveLog(obj.action) + }), + ...(obj.items && { items: + obj.items.map( + item => + ResourceFilterSensitiveLog(item) + ) + }), +}) + +/** + * @public + */ +export type SectionComponent = + | SectionComponent.AlertMember + | SectionComponent.ResourceMember + | SectionComponent.ResourceListMember + | SectionComponent.TextMember + | SectionComponent.$UnknownMember + +/** + * @public + */ +export namespace SectionComponent { + + /** + * Structure representing a simple text component with sensitive content, which can include Markdown formatting. + * @public + */ + export interface TextMember { + text: Text; + alert?: never; + resource?: never; + resourceList?: never; + $unknown?: never; + } + + /** + * Structure representing an alert with a type and content. + * @public + */ + export interface AlertMember { + text?: never; + alert: Alert; + resource?: never; + resourceList?: never; + $unknown?: never; + } + + /** + * Structure representing a resource item + * @public + */ + export interface ResourceMember { + text?: never; + alert?: never; + resource: Resource; + resourceList?: never; + $unknown?: never; + } + + /** + * Structure representing a list of Items + * @public + */ + export interface ResourceListMember { + text?: never; + alert?: never; + resource?: never; + resourceList: ResourceList; + $unknown?: never; + } + + /** + * @public + */ + export interface $UnknownMember { + text?: never; + alert?: never; + resource?: never; + resourceList?: never; + $unknown: [string, any]; + } + + export interface Visitor { + text: (value: Text) => T; + alert: (value: Alert) => T; + resource: (value: Resource) => T; + resourceList: (value: ResourceList) => T; + _: (name: string, value: any) => T; + } + + export const visit = ( + value: SectionComponent, + visitor: Visitor + ): T => { + if (value.text !== undefined) return visitor.text(value.text); + if (value.alert !== undefined) return visitor.alert(value.alert); + if (value.resource !== undefined) return visitor.resource(value.resource); + if (value.resourceList !== undefined) return visitor.resourceList(value.resourceList); + return visitor._(value.$unknown[0], value.$unknown[1]); + } + +} +/** + * @internal + */ +export const SectionComponentFilterSensitiveLog = (obj: SectionComponent): any => { + if (obj.text !== undefined) return {text: + TextFilterSensitiveLog(obj.text) + }; + if (obj.alert !== undefined) return {alert: + AlertFilterSensitiveLog(obj.alert) + }; + if (obj.resource !== undefined) return {resource: + ResourceFilterSensitiveLog(obj.resource) + }; + if (obj.resourceList !== undefined) return {resourceList: + ResourceListFilterSensitiveLog(obj.resourceList) + }; + if (obj.$unknown !== undefined) return {[obj.$unknown[0]]: 'UNKNOWN'}; +} + +/** + * Structure representing a collapsable section + * @public + */ +export interface Section { + /** + * Contains text content that may include sensitive information and can support Markdown formatting. + * @public + */ + title: string | undefined; + + /** + * Contains a list of interaction components e.g Text, Alert ,List ...etc + * @public + */ + content: (SectionComponent)[] | undefined; +} + +/** + * @internal + */ +export const SectionFilterSensitiveLog = (obj: Section): any => ({ + ...obj, + ...(obj.title && { title: + SENSITIVE_STRING + }), + ...(obj.content && { content: + obj.content.map( + item => + SectionComponentFilterSensitiveLog(item) + ) + }), +}) + +/** + * Structure representing a suggestion for follow-ups. + * @public + */ +export interface Suggestion { + value: string | undefined; +} + +/** + * Structure containing a list of suggestions. + * @public + */ +export interface Suggestions { + items: (Suggestion)[] | undefined; +} + +/** + * Structure representing a confirmation message related to a task action. + * @public + */ +export interface TaskActionConfirmation { + /** + * Confirmation message related to the action note, which may include sensitive information. + * @public + */ + content?: string; +} + +/** + * @internal + */ +export const TaskActionConfirmationFilterSensitiveLog = (obj: TaskActionConfirmation): any => ({ + ...obj, + ...(obj.content && { content: + SENSITIVE_STRING + }), +}) + +/** + * @public + * @enum + */ +export const TaskActionNoteType = { + /** + * Information note providing general details. + */ + INFO: "INFO", + /** + * Warning note indicating a potential issue. + */ + WARNING: "WARNING", +} as const +/** + * @public + */ +export type TaskActionNoteType = typeof TaskActionNoteType[keyof typeof TaskActionNoteType] + +/** + * Structure representing a note associated with a task action. + * @public + */ +export interface TaskActionNote { + /** + * Content of the note, which may include sensitive information. + * @public + */ + content: string | undefined; + + /** + * Enum defining the types of notes that can be associated with a task action. + * @public + */ + type?: TaskActionNoteType; +} + +/** + * @internal + */ +export const TaskActionNoteFilterSensitiveLog = (obj: TaskActionNote): any => ({ + ...obj, + ...(obj.content && { content: + SENSITIVE_STRING + }), +}) + +/** + * Structure representing an action associated with a task. + * @public + */ +export interface TaskAction { + /** + * A label for the action. + * @public + */ + label: string | undefined; + + /** + * Structure representing a note associated with a task action. + * @public + */ + note?: TaskActionNote; + + /** + * Indicates whether the action is primary or not. + * @public + */ + primary?: boolean; + + /** + * Indicates whether the action is disabled or not. + * @public + */ + disabled?: boolean; + + /** + * Map representing key-value pairs for the payload of a task action. + * @public + */ + payload: Record | undefined; + + /** + * Structure representing a confirmation message related to a task action. + * @public + */ + confirmation?: TaskActionConfirmation; +} + +/** + * @internal + */ +export const TaskActionFilterSensitiveLog = (obj: TaskAction): any => ({ + ...obj, + ...(obj.label && { label: + SENSITIVE_STRING + }), + ...(obj.note && { note: + TaskActionNoteFilterSensitiveLog(obj.note) + }), + ...(obj.payload && { payload: + SENSITIVE_STRING + }), + ...(obj.confirmation && { confirmation: + TaskActionConfirmationFilterSensitiveLog(obj.confirmation) + }), +}) + +/** + * Structure representing different types of components that can be part of a task. + * @public + */ +export interface TaskComponent { + /** + * Structure representing a simple text component with sensitive content, which can include Markdown formatting. + * @public + */ + text?: Text; + + /** + * Structure representing different types of infrastructure updates. + * @public + */ + infrastructureUpdate?: InfrastructureUpdate; + + /** + * Structure representing an alert with a type and content. + * @public + */ + alert?: Alert; + + /** + * Structure representing a collection of steps in a process. + * @public + */ + progress?: Progress; +} + +/** + * @internal + */ +export const TaskComponentFilterSensitiveLog = (obj: TaskComponent): any => ({ + ...obj, + ...(obj.text && { text: + TextFilterSensitiveLog(obj.text) + }), + ...(obj.infrastructureUpdate && { infrastructureUpdate: + InfrastructureUpdateFilterSensitiveLog(obj.infrastructureUpdate) + }), + ...(obj.alert && { alert: + AlertFilterSensitiveLog(obj.alert) + }), + ...(obj.progress && { progress: + ProgressFilterSensitiveLog(obj.progress) + }), +}) + +/** + * Structure representing an overview of a task, including a label and description. + * @public + */ +export interface TaskOverview { + /** + * A label for the task overview. + * @public + */ + label: string | undefined; + + /** + * Text description providing details about the task. This field may include sensitive information and supports Markdown formatting. + * @public + */ + description: string | undefined; +} + +/** + * @internal + */ +export const TaskOverviewFilterSensitiveLog = (obj: TaskOverview): any => ({ + ...obj, + ...(obj.label && { label: + SENSITIVE_STRING + }), + ...(obj.description && { description: + SENSITIVE_STRING + }), +}) + +/** + * Structure containing details about a task. + * @public + */ +export interface TaskDetails { + /** + * Structure representing an overview of a task, including a label and description. + * @public + */ + overview: TaskOverview | undefined; + + /** + * Lists the components that can be used to form the task's content. + * @public + */ + content: (TaskComponent)[] | undefined; + + /** + * Optional list of actions associated with the task. + * @public + */ + actions?: (TaskAction)[]; +} + +/** + * @internal + */ +export const TaskDetailsFilterSensitiveLog = (obj: TaskDetails): any => ({ + ...obj, + ...(obj.overview && { overview: + TaskOverviewFilterSensitiveLog(obj.overview) + }), + ...(obj.content && { content: + obj.content.map( + item => + TaskComponentFilterSensitiveLog(item) + ) + }), + ...(obj.actions && { actions: + obj.actions.map( + item => + TaskActionFilterSensitiveLog(item) + ) + }), +}) + +/** + * Structure representing a reference to a task. + * @public + */ +export interface TaskReference { + /** + * Unique identifier for the task. + * @public + */ + taskId: string | undefined; +} + +/** + * Structure representing different types of interaction components. + * @public + */ +export interface InteractionComponent { + /** + * Structure representing a simple text component with sensitive content, which can include Markdown formatting. + * @public + */ + text?: Text; + + /** + * Structure representing an alert with a type and content. + * @public + */ + alert?: Alert; + + /** + * Structure representing different types of infrastructure updates. + * @public + */ + infrastructureUpdate?: InfrastructureUpdate; + + /** + * Structure representing a collection of steps in a process. + * @public + */ + progress?: Progress; + + /** + * Structure representing an individual step in a process. + * @public + */ + step?: Step; + + /** + * Structure containing details about a task. + * @public + */ + taskDetails?: TaskDetails; + + /** + * Structure representing a reference to a task. + * @public + */ + taskReference?: TaskReference; + + /** + * Structure containing a list of suggestions. + * @public + */ + suggestions?: Suggestions; + + /** + * Structure representing a collapsable section + * @public + */ + section?: Section; + + /** + * Structure representing a resource item + * @public + */ + resource?: Resource; + + /** + * Structure representing a list of Items + * @public + */ + resourceList?: ResourceList; +} + +/** + * @internal + */ +export const InteractionComponentFilterSensitiveLog = (obj: InteractionComponent): any => ({ + ...obj, + ...(obj.text && { text: + TextFilterSensitiveLog(obj.text) + }), + ...(obj.alert && { alert: + AlertFilterSensitiveLog(obj.alert) + }), + ...(obj.infrastructureUpdate && { infrastructureUpdate: + InfrastructureUpdateFilterSensitiveLog(obj.infrastructureUpdate) + }), + ...(obj.progress && { progress: + ProgressFilterSensitiveLog(obj.progress) + }), + ...(obj.step && { step: + StepFilterSensitiveLog(obj.step) + }), + ...(obj.taskDetails && { taskDetails: + TaskDetailsFilterSensitiveLog(obj.taskDetails) + }), + ...(obj.section && { section: + SectionFilterSensitiveLog(obj.section) + }), + ...(obj.resource && { resource: + ResourceFilterSensitiveLog(obj.resource) + }), + ...(obj.resourceList && { resourceList: + ResourceListFilterSensitiveLog(obj.resourceList) + }), +}) + +/** + * Interaction component with an identifier + * @public + */ +export interface InteractionComponentEntry { + /** + * Identifier that can uniquely identify the interaction component within + * stream response. This field is optional. + * @public + */ + interactionComponentId?: string; + + /** + * Interaction component + * @public + */ + interactionComponent: InteractionComponent | undefined; +} + +/** + * @internal + */ +export const InteractionComponentEntryFilterSensitiveLog = (obj: InteractionComponentEntry): any => ({ + ...obj, + ...(obj.interactionComponent && { interactionComponent: + InteractionComponentFilterSensitiveLog(obj.interactionComponent) + }), +}) + +/** + * Streaming Event for interaction components list + * @public + */ +export interface InteractionComponentsEvent { + /** + * List of identifiable interaction components + * @public + */ + interactionComponentEntries: (InteractionComponentEntry)[] | undefined; +} + +/** + * @internal + */ +export const InteractionComponentsEventFilterSensitiveLog = (obj: InteractionComponentsEvent): any => ({ + ...obj, + ...(obj.interactionComponentEntries && { interactionComponentEntries: + obj.interactionComponentEntries.map( + item => + InteractionComponentEntryFilterSensitiveLog(item) + ) + }), +}) + +/** + * @public + * @enum + */ +export const InvalidStateReason = { + INVALID_TASK_ASSIST_PLAN: "INVALID_TASK_ASSIST_PLAN", +} as const +/** + * @public + */ +export type InvalidStateReason = typeof InvalidStateReason[keyof typeof InvalidStateReason] + +/** + * Streaming Response Event when an Invalid State is reached + * @public + */ +export interface InvalidStateEvent { + /** + * Reasons for Invalid State Event + * @public + */ + reason: InvalidStateReason | undefined; + + message: string | undefined; +} + +/** + * Streaming Response Event for AssistantResponse Metadata + * @public + */ +export interface MessageMetadataEvent { + /** + * Unique identifier for the conversation + * @public + */ + conversationId?: string; + + /** + * Unique identifier for the utterance + * @public + */ + utteranceId?: string; +} + +/** + * Streaming Response Event for SupplementaryWebLinks + * @public + */ +export interface SupplementaryWebLinksEvent { + /** + * Web References for Assistant Response Message + * @public + */ + supplementaryWebLinks?: (SupplementaryWebLink)[]; +} + +/** + * @internal + */ +export const SupplementaryWebLinksEventFilterSensitiveLog = (obj: SupplementaryWebLinksEvent): any => ({ + ...obj, + ...(obj.supplementaryWebLinks && { supplementaryWebLinks: + obj.supplementaryWebLinks.map( + item => + SupplementaryWebLinkFilterSensitiveLog(item) + ) + }), +}) + +/** + * Streaming events from UniDirectional Streaming Conversational APIs. + * @public + */ +export type ChatResponseStream = + | ChatResponseStream.AssistantResponseEventMember + | ChatResponseStream.CodeEventMember + | ChatResponseStream.CodeReferenceEventMember + | ChatResponseStream.DryRunSucceedEventMember + | ChatResponseStream.ErrorMember + | ChatResponseStream.FollowupPromptEventMember + | ChatResponseStream.IntentsEventMember + | ChatResponseStream.InteractionComponentsEventMember + | ChatResponseStream.InvalidStateEventMember + | ChatResponseStream.MessageMetadataEventMember + | ChatResponseStream.SupplementaryWebLinksEventMember + | ChatResponseStream.$UnknownMember + +/** + * @public + */ +export namespace ChatResponseStream { + + /** + * Message Metadata event + * @public + */ + export interface MessageMetadataEventMember { + messageMetadataEvent: MessageMetadataEvent; + assistantResponseEvent?: never; + dryRunSucceedEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + interactionComponentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + + /** + * Assistant response event - Text / Code snippet + * @public + */ + export interface AssistantResponseEventMember { + messageMetadataEvent?: never; + assistantResponseEvent: AssistantResponseEvent; + dryRunSucceedEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + interactionComponentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + + /** + * DryRun Succeed Event + * @public + */ + export interface DryRunSucceedEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + dryRunSucceedEvent: DryRunSucceedEvent; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + interactionComponentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + + /** + * Code References event + * @public + */ + export interface CodeReferenceEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + dryRunSucceedEvent?: never; + codeReferenceEvent: CodeReferenceEvent; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + interactionComponentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + + /** + * Web Reference links event + * @public + */ + export interface SupplementaryWebLinksEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + dryRunSucceedEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent: SupplementaryWebLinksEvent; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + interactionComponentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + + /** + * Followup prompt event + * @public + */ + export interface FollowupPromptEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + dryRunSucceedEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent: FollowupPromptEvent; + codeEvent?: never; + intentsEvent?: never; + interactionComponentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + + /** + * Code Generated event + * @public + */ + export interface CodeEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + dryRunSucceedEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent: CodeEvent; + intentsEvent?: never; + interactionComponentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + + /** + * Intents event + * @public + */ + export interface IntentsEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + dryRunSucceedEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent: IntentsEvent; + interactionComponentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + + /** + * Interactions components event + * @public + */ + export interface InteractionComponentsEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + dryRunSucceedEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + interactionComponentsEvent: InteractionComponentsEvent; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + + /** + * Invalid State event + * @public + */ + export interface InvalidStateEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + dryRunSucceedEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + interactionComponentsEvent?: never; + invalidStateEvent: InvalidStateEvent; + error?: never; + $unknown?: never; + } + + /** + * Internal Server Exception + * @public + */ + export interface ErrorMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + dryRunSucceedEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + interactionComponentsEvent?: never; + invalidStateEvent?: never; + error: InternalServerException; + $unknown?: never; + } + + /** + * @public + */ + export interface $UnknownMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + dryRunSucceedEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + interactionComponentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown: [string, any]; + } + + export interface Visitor { + messageMetadataEvent: (value: MessageMetadataEvent) => T; + assistantResponseEvent: (value: AssistantResponseEvent) => T; + dryRunSucceedEvent: (value: DryRunSucceedEvent) => T; + codeReferenceEvent: (value: CodeReferenceEvent) => T; + supplementaryWebLinksEvent: (value: SupplementaryWebLinksEvent) => T; + followupPromptEvent: (value: FollowupPromptEvent) => T; + codeEvent: (value: CodeEvent) => T; + intentsEvent: (value: IntentsEvent) => T; + interactionComponentsEvent: (value: InteractionComponentsEvent) => T; + invalidStateEvent: (value: InvalidStateEvent) => T; + error: (value: InternalServerException) => T; + _: (name: string, value: any) => T; + } + + export const visit = ( + value: ChatResponseStream, + visitor: Visitor + ): T => { + if (value.messageMetadataEvent !== undefined) return visitor.messageMetadataEvent(value.messageMetadataEvent); + if (value.assistantResponseEvent !== undefined) return visitor.assistantResponseEvent(value.assistantResponseEvent); + if (value.dryRunSucceedEvent !== undefined) return visitor.dryRunSucceedEvent(value.dryRunSucceedEvent); + if (value.codeReferenceEvent !== undefined) return visitor.codeReferenceEvent(value.codeReferenceEvent); + if (value.supplementaryWebLinksEvent !== undefined) return visitor.supplementaryWebLinksEvent(value.supplementaryWebLinksEvent); + if (value.followupPromptEvent !== undefined) return visitor.followupPromptEvent(value.followupPromptEvent); + if (value.codeEvent !== undefined) return visitor.codeEvent(value.codeEvent); + if (value.intentsEvent !== undefined) return visitor.intentsEvent(value.intentsEvent); + if (value.interactionComponentsEvent !== undefined) return visitor.interactionComponentsEvent(value.interactionComponentsEvent); + if (value.invalidStateEvent !== undefined) return visitor.invalidStateEvent(value.invalidStateEvent); + if (value.error !== undefined) return visitor.error(value.error); + return visitor._(value.$unknown[0], value.$unknown[1]); + } + +} +/** + * @internal + */ +export const ChatResponseStreamFilterSensitiveLog = (obj: ChatResponseStream): any => { + if (obj.messageMetadataEvent !== undefined) return {messageMetadataEvent: + obj.messageMetadataEvent + }; + if (obj.assistantResponseEvent !== undefined) return {assistantResponseEvent: + AssistantResponseEventFilterSensitiveLog(obj.assistantResponseEvent) + }; + if (obj.dryRunSucceedEvent !== undefined) return {dryRunSucceedEvent: + obj.dryRunSucceedEvent + }; + if (obj.codeReferenceEvent !== undefined) return {codeReferenceEvent: + obj.codeReferenceEvent + }; + if (obj.supplementaryWebLinksEvent !== undefined) return {supplementaryWebLinksEvent: + SupplementaryWebLinksEventFilterSensitiveLog(obj.supplementaryWebLinksEvent) + }; + if (obj.followupPromptEvent !== undefined) return {followupPromptEvent: + FollowupPromptEventFilterSensitiveLog(obj.followupPromptEvent) + }; + if (obj.codeEvent !== undefined) return {codeEvent: + CodeEventFilterSensitiveLog(obj.codeEvent) + }; + if (obj.intentsEvent !== undefined) return {intentsEvent: + IntentsEventFilterSensitiveLog(obj.intentsEvent) + }; + if (obj.interactionComponentsEvent !== undefined) return {interactionComponentsEvent: + InteractionComponentsEventFilterSensitiveLog(obj.interactionComponentsEvent) + }; + if (obj.invalidStateEvent !== undefined) return {invalidStateEvent: + obj.invalidStateEvent + }; + if (obj.error !== undefined) return {error: + obj.error + }; + if (obj.$unknown !== undefined) return {[obj.$unknown[0]]: 'UNKNOWN'}; +} + +/** + * @public + * @enum + */ +export const ChatTriggerType = { + /** + * Indicates the Chat was triggered in response to a IDE diagnostic + */ + DIAGNOSTIC: "DIAGNOSTIC", + /** + * Indicates the Chat was triggered in response to an inline chat event + */ + INLINE_CHAT: "INLINE_CHAT", + /** + * Indicates the Chat was triggered due to an explicit chat request by an end-user + */ + MANUAL: "MANUAL", +} as const +/** + * @public + */ +export type ChatTriggerType = typeof ChatTriggerType[keyof typeof ChatTriggerType] + +/** + * CommandInput can be extended to either a list of strings or a single string. + * @public + */ +export type CommandInput = + | CommandInput.CommandsListMember + | CommandInput.$UnknownMember + +/** + * @public + */ +export namespace CommandInput { + + /** + * The list of context items used to generate output. + * @public + */ + export interface CommandsListMember { + commandsList: (string)[]; + $unknown?: never; + } + + /** + * @public + */ + export interface $UnknownMember { + commandsList?: never; + $unknown: [string, any]; + } + + export interface Visitor { + commandsList: (value: (string)[]) => T; + _: (name: string, value: any) => T; + } + + export const visit = ( + value: CommandInput, + visitor: Visitor + ): T => { + if (value.commandsList !== undefined) return visitor.commandsList(value.commandsList); + return visitor._(value.$unknown[0], value.$unknown[1]); + } + +} +/** + * @internal + */ +export const CommandInputFilterSensitiveLog = (obj: CommandInput): any => { + if (obj.commandsList !== undefined) return {commandsList: + SENSITIVE_STRING + }; + if (obj.$unknown !== undefined) return {[obj.$unknown[0]]: 'UNKNOWN'}; +} + +/** + * Structure to represent the current state of a chat conversation. + * @public + */ +export interface ConversationState { + /** + * Unique identifier for the chat conversation stream + * @public + */ + conversationId?: string; + + /** + * Holds the history of chat messages. + * @public + */ + history?: (ChatMessage)[]; + + /** + * Holds the current message being processed or displayed. + * @public + */ + currentMessage: ChatMessage | undefined; + + /** + * Trigger Reason for Chat + * @public + */ + chatTriggerType: ChatTriggerType | undefined; + + customizationArn?: string; +} + +/** + * @internal + */ +export const ConversationStateFilterSensitiveLog = (obj: ConversationState): any => ({ + ...obj, + ...(obj.history && { history: + obj.history.map( + item => + ChatMessageFilterSensitiveLog(item) + ) + }), + ...(obj.currentMessage && { currentMessage: + ChatMessageFilterSensitiveLog(obj.currentMessage) + }), +}) + +/** + * This exception is translated to a 204 as it succeeded the IAM Auth. + * @public + */ +export class DryRunOperationException extends __BaseException { + readonly name: "DryRunOperationException" = "DryRunOperationException"; + readonly $fault: "client" = "client"; + responseCode?: number; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType) { + super({ + name: "DryRunOperationException", + $fault: "client", + ...opts + }); + Object.setPrototypeOf(this, DryRunOperationException.prototype); + this.responseCode = opts.responseCode; + } +} + +/** + * @public + * @enum + */ +export const OutputFormat = { + JAVA_CDK: "java/cdk", + JSON_CFN: "json/cfn", + PYTHON_CDK: "python/cdk", + TYPESCRIPT_CDK: "typescript/cdk", + YAML_CFN: "yaml/cfn", +} as const +/** + * @public + */ +export type OutputFormat = typeof OutputFormat[keyof typeof OutputFormat] + +/** + * This exception is thrown when request was denied due to caller exceeding their usage limits + * @public + */ +export class ServiceQuotaExceededException extends __BaseException { + readonly name: "ServiceQuotaExceededException" = "ServiceQuotaExceededException"; + readonly $fault: "client" = "client"; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType) { + super({ + name: "ServiceQuotaExceededException", + $fault: "client", + ...opts + }); + Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype); + } +} + +/** + * @public + * @enum + */ +export const Origin = { + /** + * AWS Chatbot + */ + CHATBOT: "CHATBOT", + /** + * AWS Management Console (https://.console.aws.amazon.com) + */ + CONSOLE: "CONSOLE", + /** + * AWS Documentation Website (https://docs.aws.amazon.com) + */ + DOCUMENTATION: "DOCUMENTATION", + /** + * Any IDE caller. + */ + IDE: "IDE", + /** + * AWS Marketing Website (https://aws.amazon.com) + */ + MARKETING: "MARKETING", + /** + * MD. + */ + MD: "MD", + /** + * AWS Mobile Application (ACMA) + */ + MOBILE: "MOBILE", + /** + * Internal Service Traffic (Integ Tests, Canaries, etc.). This is the default when no Origin header present in request. + */ + SERVICE_INTERNAL: "SERVICE_INTERNAL", + /** + * Unified Search in AWS Management Console (https://.console.aws.amazon.com) + */ + UNIFIED_SEARCH: "UNIFIED_SEARCH", + /** + * Origin header is not set. + */ + UNKNOWN: "UNKNOWN", +} as const +/** + * @public + */ +export type Origin = typeof Origin[keyof typeof Origin] + +/** + * Structure to represent a SendMessage request. + * @public + */ +export interface SendMessageRequest { + /** + * Structure to represent the current state of a chat conversation. + * @public + */ + conversationState: ConversationState | undefined; + + profileArn?: string; + /** + * The origin of the caller + * @public + */ + source?: Origin; + + dryRun?: boolean; +} + +/** + * @internal + */ +export const SendMessageRequestFilterSensitiveLog = (obj: SendMessageRequest): any => ({ + ...obj, + ...(obj.conversationState && { conversationState: + ConversationStateFilterSensitiveLog(obj.conversationState) + }), +}) + +/** + * Structure to represent a SendMessage response. + * @public + */ +export interface SendMessageResponse { + /** + * Streaming events from UniDirectional Streaming Conversational APIs. + * @public + */ + sendMessageResponse: AsyncIterable | undefined; +} + +/** + * @internal + */ +export const SendMessageResponseFilterSensitiveLog = (obj: SendMessageResponse): any => ({ + ...obj, + ...(obj.sendMessageResponse && { sendMessageResponse: + 'STREAMING_CONTENT' + }), +}) + +/** + * @public + */ +export interface GenerateCodeFromCommandsRequest { + /** + * Format of the output - language/format eg. typescript/cdk + * @public + */ + outputFormat: OutputFormat | undefined; + + /** + * CommandInput can be extended to either a list of strings or a single string. + * @public + */ + commands: CommandInput | undefined; +} + +/** + * @internal + */ +export const GenerateCodeFromCommandsRequestFilterSensitiveLog = (obj: GenerateCodeFromCommandsRequest): any => ({ + ...obj, + ...(obj.commands && { commands: + CommandInputFilterSensitiveLog(obj.commands) + }), +}) + +/** + * Streaming events from UniDirectional streaming infrastructure code generation APIs. + * @public + */ +export type GenerateCodeFromCommandsResponseStream = + | GenerateCodeFromCommandsResponseStream.ErrorMember + | GenerateCodeFromCommandsResponseStream.QuotaLevelExceededErrorMember + | GenerateCodeFromCommandsResponseStream.ValidationErrorMember + | GenerateCodeFromCommandsResponseStream.CodeEventMember + | GenerateCodeFromCommandsResponseStream.$UnknownMember + +/** + * @public + */ +export namespace GenerateCodeFromCommandsResponseStream { + + /** + * Generated code snippet + * @public + */ + export interface CodeEventMember { + codeEvent: CodeEvent; + Error?: never; + QuotaLevelExceededError?: never; + ValidationError?: never; + $unknown?: never; + } + + /** + * Internal Server Exception + * @public + */ + export interface ErrorMember { + codeEvent?: never; + Error: InternalServerException; + QuotaLevelExceededError?: never; + ValidationError?: never; + $unknown?: never; + } + + /** + * Exceptions for quota level exceeded errors + * @public + */ + export interface QuotaLevelExceededErrorMember { + codeEvent?: never; + Error?: never; + QuotaLevelExceededError: ServiceQuotaExceededException; + ValidationError?: never; + $unknown?: never; + } + + /** + * Validation errors in the ConsoleToCodeService + * @public + */ + export interface ValidationErrorMember { + codeEvent?: never; + Error?: never; + QuotaLevelExceededError?: never; + ValidationError: ValidationException; + $unknown?: never; + } + + /** + * @public + */ + export interface $UnknownMember { + codeEvent?: never; + Error?: never; + QuotaLevelExceededError?: never; + ValidationError?: never; + $unknown: [string, any]; + } + + export interface Visitor { + codeEvent: (value: CodeEvent) => T; + Error: (value: InternalServerException) => T; + QuotaLevelExceededError: (value: ServiceQuotaExceededException) => T; + ValidationError: (value: ValidationException) => T; + _: (name: string, value: any) => T; + } + + export const visit = ( + value: GenerateCodeFromCommandsResponseStream, + visitor: Visitor + ): T => { + if (value.codeEvent !== undefined) return visitor.codeEvent(value.codeEvent); + if (value.Error !== undefined) return visitor.Error(value.Error); + if (value.QuotaLevelExceededError !== undefined) return visitor.QuotaLevelExceededError(value.QuotaLevelExceededError); + if (value.ValidationError !== undefined) return visitor.ValidationError(value.ValidationError); + return visitor._(value.$unknown[0], value.$unknown[1]); + } + +} +/** + * @internal + */ +export const GenerateCodeFromCommandsResponseStreamFilterSensitiveLog = (obj: GenerateCodeFromCommandsResponseStream): any => { + if (obj.codeEvent !== undefined) return {codeEvent: + CodeEventFilterSensitiveLog(obj.codeEvent) + }; + if (obj.Error !== undefined) return {Error: + obj.Error + }; + if (obj.QuotaLevelExceededError !== undefined) return {QuotaLevelExceededError: + obj.QuotaLevelExceededError + }; + if (obj.ValidationError !== undefined) return {ValidationError: + obj.ValidationError + }; + if (obj.$unknown !== undefined) return {[obj.$unknown[0]]: 'UNKNOWN'}; +} + +/** + * Structure to represent generated code response. + * @public + */ +export interface GenerateCodeFromCommandsResponse { + /** + * Streaming events from UniDirectional streaming infrastructure code generation APIs. + * @public + */ + generatedCodeFromCommandsResponse: AsyncIterable | undefined; +} + +/** + * @internal + */ +export const GenerateCodeFromCommandsResponseFilterSensitiveLog = (obj: GenerateCodeFromCommandsResponse): any => ({ + ...obj, + ...(obj.generatedCodeFromCommandsResponse && { generatedCodeFromCommandsResponse: + 'STREAMING_CONTENT' + }), +}) diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/src/protocols/Aws_json1_0.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/src/protocols/Aws_json1_0.ts new file mode 100644 index 00000000000..bcd0c7daa10 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/src/protocols/Aws_json1_0.ts @@ -0,0 +1,863 @@ +// smithy-typescript generated code +import { + GenerateCodeFromCommandsCommandInput, + GenerateCodeFromCommandsCommandOutput, +} from "../commands/GenerateCodeFromCommandsCommand"; +import { + SendMessageCommandInput, + SendMessageCommandOutput, +} from "../commands/SendMessageCommand"; +import { QDeveloperStreamingServiceException as __BaseException } from "../models/QDeveloperStreamingServiceException"; +import { + AccessDeniedException, + AppStudioState, + AssistantResponseEvent, + AssistantResponseMessage, + ChatMessage, + ChatResponseStream, + CodeEvent, + CodeReferenceEvent, + CommandInput, + ConflictException, + ConsoleState, + ConversationState, + CursorState, + Diagnostic, + DocumentSymbol, + DryRunOperationException, + DryRunSucceedEvent, + EditorState, + EnvState, + EnvironmentVariable, + FollowupPrompt, + FollowupPromptEvent, + GenerateCodeFromCommandsRequest, + GenerateCodeFromCommandsResponseStream, + GitState, + IntentsEvent, + InteractionComponent, + InteractionComponentEntry, + InteractionComponentsEvent, + InternalServerException, + InvalidStateEvent, + MessageMetadataEvent, + Position, + ProgrammingLanguage, + Range, + Reference, + RelevantTextDocument, + ResourceNotFoundException, + RuntimeDiagnostic, + SendMessageRequest, + ServiceQuotaExceededException, + ShellHistoryEntry, + ShellState, + Span, + SupplementaryWebLink, + SupplementaryWebLinksEvent, + TextDocument, + TextDocumentDiagnostic, + ThrottlingException, + UserInputMessage, + UserInputMessageContext, + UserSettings, + ValidationException, +} from "../models/models_0"; +import { + loadRestJsonErrorCode, + parseJsonBody as parseBody, + parseJsonErrorBody as parseErrorBody, +} from "@aws-sdk/core"; +import { + HttpRequest as __HttpRequest, + HttpResponse as __HttpResponse, +} from "@smithy/protocol-http"; +import { + decorateServiceException as __decorateServiceException, + expectString as __expectString, + _json, + collectBody, + take, + withBaseException, +} from "@smithy/smithy-client"; +import { + Endpoint as __Endpoint, + EventStreamSerdeContext as __EventStreamSerdeContext, + HeaderBag as __HeaderBag, + ResponseMetadata as __ResponseMetadata, + SerdeContext as __SerdeContext, +} from "@smithy/types"; +import { v4 as generateIdempotencyToken } from "uuid"; + +/** + * serializeAws_json1_0GenerateCodeFromCommandsCommand + */ +export const se_GenerateCodeFromCommandsCommand = async( + input: GenerateCodeFromCommandsCommandInput, + context: __SerdeContext +): Promise<__HttpRequest> => { + const headers: __HeaderBag = sharedHeaders("GenerateCodeFromCommands") + let body: any; + body = JSON.stringify(_json(input)); + return buildHttpRpcRequest(context, headers, "/", undefined, body); +} + +/** + * serializeAws_json1_0SendMessageCommand + */ +export const se_SendMessageCommand = async( + input: SendMessageCommandInput, + context: __SerdeContext +): Promise<__HttpRequest> => { + const headers: __HeaderBag = sharedHeaders("SendMessage") + let body: any; + body = JSON.stringify(se_SendMessageRequest(input, context)); + return buildHttpRpcRequest(context, headers, "/", undefined, body); +} + +/** + * deserializeAws_json1_0GenerateCodeFromCommandsCommand + */ +export const de_GenerateCodeFromCommandsCommand = async( + output: __HttpResponse, + context: __SerdeContext & __EventStreamSerdeContext +): Promise => { + if (output.statusCode >= 300) { + return de_CommandError(output, context); + } + const contents = { generatedCodeFromCommandsResponse: de_GenerateCodeFromCommandsResponseStream(output.body, context) }; + const response: GenerateCodeFromCommandsCommandOutput = { + $metadata: deserializeMetadata(output), + ...contents, + }; + return response; +} + +/** + * deserializeAws_json1_0SendMessageCommand + */ +export const de_SendMessageCommand = async( + output: __HttpResponse, + context: __SerdeContext & __EventStreamSerdeContext +): Promise => { + if (output.statusCode >= 300) { + return de_CommandError(output, context); + } + const contents = { sendMessageResponse: de_ChatResponseStream(output.body, context) }; + const response: SendMessageCommandOutput = { + $metadata: deserializeMetadata(output), + ...contents, + }; + return response; +} + +/** + * deserialize_Aws_json1_0CommandError + */ +const de_CommandError = async( + output: __HttpResponse, + context: __SerdeContext, +): Promise => { + const parsedOutput: any = { + ...output, + body: await parseErrorBody(output.body, context) + }; + const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); + switch (errorCode) { + case "AccessDeniedException": + case "com.amazon.aws.codewhisperer#AccessDeniedException": + throw await de_AccessDeniedExceptionRes(parsedOutput, context); + case "InternalServerException": + case "com.amazon.aws.codewhisperer#InternalServerException": + throw await de_InternalServerExceptionRes(parsedOutput, context); + case "ThrottlingException": + case "com.amazon.aws.codewhisperer#ThrottlingException": + throw await de_ThrottlingExceptionRes(parsedOutput, context); + case "ValidationException": + case "com.amazon.aws.codewhisperer#ValidationException": + throw await de_ValidationExceptionRes(parsedOutput, context); + case "ConflictException": + case "com.amazon.aws.codewhisperer#ConflictException": + throw await de_ConflictExceptionRes(parsedOutput, context); + case "DryRunOperationException": + case "com.amazon.aws.codewhisperer#DryRunOperationException": + throw await de_DryRunOperationExceptionRes(parsedOutput, context); + case "ResourceNotFoundException": + case "com.amazon.aws.codewhisperer#ResourceNotFoundException": + throw await de_ResourceNotFoundExceptionRes(parsedOutput, context); + case "ServiceQuotaExceededException": + case "com.amazon.aws.codewhisperer#ServiceQuotaExceededException": + throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context); + default: + const parsedBody = parsedOutput.body; + return throwDefaultError({ + output, + parsedBody, + errorCode + }) as never + } + } + + /** + * deserializeAws_json1_0AccessDeniedExceptionRes + */ + const de_AccessDeniedExceptionRes = async ( + parsedOutput: any, + context: __SerdeContext + ): Promise => { + const body = parsedOutput.body + const deserialized: any = _json(body); + const exception = new AccessDeniedException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return __decorateServiceException(exception, body); + }; + + /** + * deserializeAws_json1_0ConflictExceptionRes + */ + const de_ConflictExceptionRes = async ( + parsedOutput: any, + context: __SerdeContext + ): Promise => { + const body = parsedOutput.body + const deserialized: any = _json(body); + const exception = new ConflictException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return __decorateServiceException(exception, body); + }; + + /** + * deserializeAws_json1_0DryRunOperationExceptionRes + */ + const de_DryRunOperationExceptionRes = async ( + parsedOutput: any, + context: __SerdeContext + ): Promise => { + const body = parsedOutput.body + const deserialized: any = _json(body); + const exception = new DryRunOperationException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return __decorateServiceException(exception, body); + }; + + /** + * deserializeAws_json1_0InternalServerExceptionRes + */ + const de_InternalServerExceptionRes = async ( + parsedOutput: any, + context: __SerdeContext + ): Promise => { + const body = parsedOutput.body + const deserialized: any = _json(body); + const exception = new InternalServerException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return __decorateServiceException(exception, body); + }; + + /** + * deserializeAws_json1_0ResourceNotFoundExceptionRes + */ + const de_ResourceNotFoundExceptionRes = async ( + parsedOutput: any, + context: __SerdeContext + ): Promise => { + const body = parsedOutput.body + const deserialized: any = _json(body); + const exception = new ResourceNotFoundException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return __decorateServiceException(exception, body); + }; + + /** + * deserializeAws_json1_0ServiceQuotaExceededExceptionRes + */ + const de_ServiceQuotaExceededExceptionRes = async ( + parsedOutput: any, + context: __SerdeContext + ): Promise => { + const body = parsedOutput.body + const deserialized: any = _json(body); + const exception = new ServiceQuotaExceededException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return __decorateServiceException(exception, body); + }; + + /** + * deserializeAws_json1_0ThrottlingExceptionRes + */ + const de_ThrottlingExceptionRes = async ( + parsedOutput: any, + context: __SerdeContext + ): Promise => { + const body = parsedOutput.body + const deserialized: any = _json(body); + const exception = new ThrottlingException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return __decorateServiceException(exception, body); + }; + + /** + * deserializeAws_json1_0ValidationExceptionRes + */ + const de_ValidationExceptionRes = async ( + parsedOutput: any, + context: __SerdeContext + ): Promise => { + const body = parsedOutput.body + const deserialized: any = _json(body); + const exception = new ValidationException({ + $metadata: deserializeMetadata(parsedOutput), + ...deserialized + }); + return __decorateServiceException(exception, body); + }; + + /** + * deserializeAws_json1_0ChatResponseStream + */ + const de_ChatResponseStream = ( + output: any, + context: __SerdeContext & __EventStreamSerdeContext + ): AsyncIterable => { + return context.eventStreamMarshaller.deserialize( + output, + async event => { + if (event["messageMetadataEvent"] != null) { + return { + messageMetadataEvent: await de_MessageMetadataEvent_event(event["messageMetadataEvent"], context), + }; + } + if (event["assistantResponseEvent"] != null) { + return { + assistantResponseEvent: await de_AssistantResponseEvent_event(event["assistantResponseEvent"], context), + }; + } + if (event["dryRunSucceedEvent"] != null) { + return { + dryRunSucceedEvent: await de_DryRunSucceedEvent_event(event["dryRunSucceedEvent"], context), + }; + } + if (event["codeReferenceEvent"] != null) { + return { + codeReferenceEvent: await de_CodeReferenceEvent_event(event["codeReferenceEvent"], context), + }; + } + if (event["supplementaryWebLinksEvent"] != null) { + return { + supplementaryWebLinksEvent: await de_SupplementaryWebLinksEvent_event(event["supplementaryWebLinksEvent"], context), + }; + } + if (event["followupPromptEvent"] != null) { + return { + followupPromptEvent: await de_FollowupPromptEvent_event(event["followupPromptEvent"], context), + }; + } + if (event["codeEvent"] != null) { + return { + codeEvent: await de_CodeEvent_event(event["codeEvent"], context), + }; + } + if (event["intentsEvent"] != null) { + return { + intentsEvent: await de_IntentsEvent_event(event["intentsEvent"], context), + }; + } + if (event["interactionComponentsEvent"] != null) { + return { + interactionComponentsEvent: await de_InteractionComponentsEvent_event(event["interactionComponentsEvent"], context), + }; + } + if (event["invalidStateEvent"] != null) { + return { + invalidStateEvent: await de_InvalidStateEvent_event(event["invalidStateEvent"], context), + }; + } + if (event["error"] != null) { + return { + error: await de_InternalServerException_event(event["error"], context), + }; + } + return {$unknown: output}; + } + ); + } + /** + * deserializeAws_json1_0GenerateCodeFromCommandsResponseStream + */ + const de_GenerateCodeFromCommandsResponseStream = ( + output: any, + context: __SerdeContext & __EventStreamSerdeContext + ): AsyncIterable => { + return context.eventStreamMarshaller.deserialize( + output, + async event => { + if (event["codeEvent"] != null) { + return { + codeEvent: await de_CodeEvent_event(event["codeEvent"], context), + }; + } + if (event["Error"] != null) { + return { + Error: await de_InternalServerException_event(event["Error"], context), + }; + } + if (event["QuotaLevelExceededError"] != null) { + return { + QuotaLevelExceededError: await de_ServiceQuotaExceededException_event(event["QuotaLevelExceededError"], context), + }; + } + if (event["ValidationError"] != null) { + return { + ValidationError: await de_ValidationException_event(event["ValidationError"], context), + }; + } + return {$unknown: output}; + } + ); + } + const de_AssistantResponseEvent_event = async ( + output: any, + context: __SerdeContext + ): Promise => { + const contents: AssistantResponseEvent = {} as any; + const data: any = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; + } + const de_CodeEvent_event = async ( + output: any, + context: __SerdeContext + ): Promise => { + const contents: CodeEvent = {} as any; + const data: any = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; + } + const de_CodeReferenceEvent_event = async ( + output: any, + context: __SerdeContext + ): Promise => { + const contents: CodeReferenceEvent = {} as any; + const data: any = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; + } + const de_DryRunSucceedEvent_event = async ( + output: any, + context: __SerdeContext + ): Promise => { + const contents: DryRunSucceedEvent = {} as any; + const data: any = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; + } + const de_FollowupPromptEvent_event = async ( + output: any, + context: __SerdeContext + ): Promise => { + const contents: FollowupPromptEvent = {} as any; + const data: any = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; + } + const de_IntentsEvent_event = async ( + output: any, + context: __SerdeContext + ): Promise => { + const contents: IntentsEvent = {} as any; + const data: any = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; + } + const de_InteractionComponentsEvent_event = async ( + output: any, + context: __SerdeContext + ): Promise => { + const contents: InteractionComponentsEvent = {} as any; + const data: any = await parseBody(output.body, context); + Object.assign(contents, de_InteractionComponentsEvent(data, context)); + return contents; + } + const de_InternalServerException_event = async ( + output: any, + context: __SerdeContext + ): Promise => { + const parsedOutput: any = { + ...output, + body: await parseBody(output.body, context) + }; + return de_InternalServerExceptionRes(parsedOutput, context); + } + const de_InvalidStateEvent_event = async ( + output: any, + context: __SerdeContext + ): Promise => { + const contents: InvalidStateEvent = {} as any; + const data: any = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; + } + const de_MessageMetadataEvent_event = async ( + output: any, + context: __SerdeContext + ): Promise => { + const contents: MessageMetadataEvent = {} as any; + const data: any = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; + } + const de_ServiceQuotaExceededException_event = async ( + output: any, + context: __SerdeContext + ): Promise => { + const parsedOutput: any = { + ...output, + body: await parseBody(output.body, context) + }; + return de_ServiceQuotaExceededExceptionRes(parsedOutput, context); + } + const de_SupplementaryWebLinksEvent_event = async ( + output: any, + context: __SerdeContext + ): Promise => { + const contents: SupplementaryWebLinksEvent = {} as any; + const data: any = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; + } + const de_ValidationException_event = async ( + output: any, + context: __SerdeContext + ): Promise => { + const parsedOutput: any = { + ...output, + body: await parseBody(output.body, context) + }; + return de_ValidationExceptionRes(parsedOutput, context); + } + // se_AppStudioState omitted. + + // se_AssistantResponseMessage omitted. + + // se_ChatHistory omitted. + + // se_ChatMessage omitted. + + // se_CliCommandsList omitted. + + // se_CommandInput omitted. + + // se_ConsoleState omitted. + + // se_ConversationState omitted. + + // se_CursorState omitted. + + // se_Diagnostic omitted. + + // se_DocumentSymbol omitted. + + // se_DocumentSymbols omitted. + + // se_EditorState omitted. + + // se_EnvironmentVariable omitted. + + // se_EnvironmentVariables omitted. + + // se_EnvState omitted. + + // se_FollowupPrompt omitted. + + // se_GitState omitted. + + // se_Position omitted. + + // se_ProgrammingLanguage omitted. + + // se_Range omitted. + + // se_Reference omitted. + + // se_References omitted. + + // se_RelevantDocumentList omitted. + + // se_RelevantTextDocument omitted. + + // se_RuntimeDiagnostic omitted. + + // se_ShellHistory omitted. + + // se_ShellHistoryEntry omitted. + + // se_ShellState omitted. + + // se_Span omitted. + + // se_SupplementaryWebLink omitted. + + // se_SupplementaryWebLinks omitted. + + // se_TextDocument omitted. + + // se_TextDocumentDiagnostic omitted. + + // se_UserInputMessage omitted. + + // se_UserInputMessageContext omitted. + + // se_UserSettings omitted. + + // se_GenerateCodeFromCommandsRequest omitted. + + /** + * serializeAws_json1_0SendMessageRequest + */ + const se_SendMessageRequest = ( + input: SendMessageRequest, + context: __SerdeContext + ): any => { + return take(input, { + 'conversationState': _json, + 'dryRun': [], + 'profileArn': [], + 'source': [], + }); + } + + // de_AccessDeniedException omitted. + + // de_AssistantResponseEvent omitted. + + // de_CodeEvent omitted. + + // de_CodeReferenceEvent omitted. + + // de_ConflictException omitted. + + // de_DryRunOperationException omitted. + + // de_DryRunSucceedEvent omitted. + + // de_FollowupPrompt omitted. + + // de_FollowupPromptEvent omitted. + + // de_IntentData omitted. + + // de_IntentDataType omitted. + + // de_IntentMap omitted. + + // de_IntentsEvent omitted. + + /** + * deserializeAws_json1_0InteractionComponentEntry + */ + const de_InteractionComponentEntry = ( + output: any, + context: __SerdeContext + ): InteractionComponentEntry => { + return take(output, { + 'interactionComponent': (_: any) => de_InteractionComponent(_, context), + 'interactionComponentId': __expectString, + }) as any; + } + + /** + * deserializeAws_json1_0InteractionComponentEntryList + */ + const de_InteractionComponentEntryList = ( + output: any, + context: __SerdeContext + ): (InteractionComponentEntry)[] => { + const retVal = (output || []).filter((e: any) => e != null).map((entry: any) => { + return de_InteractionComponentEntry(entry, context); + }); + return retVal; + } + + /** + * deserializeAws_json1_0InteractionComponentsEvent + */ + const de_InteractionComponentsEvent = ( + output: any, + context: __SerdeContext + ): InteractionComponentsEvent => { + return take(output, { + 'interactionComponentEntries': (_: any) => de_InteractionComponentEntryList(_, context), + }) as any; + } + + // de_InternalServerException omitted. + + // de_InvalidStateEvent omitted. + + // de_MessageMetadataEvent omitted. + + // de_Reference omitted. + + // de_References omitted. + + // de_ResourceNotFoundException omitted. + + // de_ServiceQuotaExceededException omitted. + + // de_Span omitted. + + // de_SupplementaryWebLink omitted. + + // de_SupplementaryWebLinks omitted. + + // de_SupplementaryWebLinksEvent omitted. + + // de_ThrottlingException omitted. + + // de_ValidationException omitted. + + // de_Action omitted. + + // de_Alert omitted. + + // de_AlertComponent omitted. + + // de_AlertComponentList omitted. + + // de_CloudWatchTroubleshootingLink omitted. + + // de_InfrastructureUpdate omitted. + + // de_InfrastructureUpdateTransition omitted. + + /** + * deserializeAws_json1_0InteractionComponent + */ + const de_InteractionComponent = ( + output: any, + context: __SerdeContext + ): InteractionComponent => { + return take(output, { + 'alert': _json, + 'infrastructureUpdate': _json, + 'progress': _json, + 'resource': _json, + 'resourceList': _json, + 'section': _json, + 'step': _json, + 'suggestions': _json, + 'taskDetails': _json, + 'taskReference': _json, + 'text': _json, + }) as any; + } + + // de_ModuleLink omitted. + + // de_Progress omitted. + + // de_ProgressComponent omitted. + + // de_ProgressComponentList omitted. + + // de_Resource omitted. + + // de_ResourceList omitted. + + // de_Resources omitted. + + // de_Section omitted. + + // de_SectionComponent omitted. + + // de_SectionComponentList omitted. + + // de_Step omitted. + + // de_StepComponent omitted. + + // de_StepComponentList omitted. + + // de_Suggestion omitted. + + // de_SuggestionList omitted. + + // de_Suggestions omitted. + + // de_TaskAction omitted. + + // de_TaskActionConfirmation omitted. + + // de_TaskActionList omitted. + + // de_TaskActionNote omitted. + + // de_TaskActionPayload omitted. + + // de_TaskComponent omitted. + + // de_TaskComponentList omitted. + + // de_TaskDetails omitted. + + // de_TaskOverview omitted. + + // de_TaskReference omitted. + + // de_Text omitted. + + // de_WebLink omitted. + + const deserializeMetadata = (output: __HttpResponse): __ResponseMetadata => ({ + httpStatusCode: output.statusCode, + requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"], + extendedRequestId: output.headers["x-amz-id-2"], + cfId: output.headers["x-amz-cf-id"], + }); + + // Encode Uint8Array data into string with utf-8. + const collectBodyString = (streamBody: any, context: __SerdeContext): Promise => collectBody(streamBody, context).then(body => context.utf8Encoder(body)) + + const throwDefaultError = withBaseException(__BaseException); + const buildHttpRpcRequest = async ( + context: __SerdeContext, + headers: __HeaderBag, + path: string, + resolvedHostname: string | undefined, + body: any, + ): Promise<__HttpRequest> => { + const {hostname, protocol = "https", port, path: basePath} = await context.endpoint(); + const contents: any = { + protocol, + hostname, + port, + method: "POST", + path: basePath.endsWith("/") ? basePath.slice(0, -1) + path : basePath + path, + headers, + }; + if (resolvedHostname !== undefined) { + contents.hostname = resolvedHostname; + } + if (body !== undefined) { + contents.body = body; + } + return new __HttpRequest(contents); + }; + function sharedHeaders(operation: string): __HeaderBag { return { + 'content-type': "application/x-amz-json-1.0", + 'x-amz-target': `AmazonQDeveloperStreamingService.${operation}`, + }}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/src/runtimeConfig.browser.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/src/runtimeConfig.browser.ts new file mode 100644 index 00000000000..f6a45601c74 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/src/runtimeConfig.browser.ts @@ -0,0 +1,52 @@ +// smithy-typescript generated code +// @ts-ignore: package.json will be imported from dist folders +import packageInfo from "../package.json"; // eslint-disable-line + +import { Sha256 } from "@aws-crypto/sha256-browser"; +import { defaultUserAgent } from "@aws-sdk/util-user-agent-browser"; +import { + DEFAULT_USE_DUALSTACK_ENDPOINT, + DEFAULT_USE_FIPS_ENDPOINT, +} from "@smithy/config-resolver"; +import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-browser"; +import { + FetchHttpHandler as RequestHandler, + streamCollector, +} from "@smithy/fetch-http-handler"; +import { invalidProvider } from "@smithy/invalid-dependency"; +import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { + DEFAULT_MAX_ATTEMPTS, + DEFAULT_RETRY_MODE, +} from "@smithy/util-retry"; +import { QDeveloperStreamingClientConfig } from "./QDeveloperStreamingClient"; +import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; + +/** + * @internal + */ +export const getRuntimeConfig = (config: QDeveloperStreamingClientConfig) => { + const defaultsMode = resolveDefaultsModeConfig(config); + const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode); + const clientSharedValues = getSharedRuntimeConfig(config); + return { + ...clientSharedValues, + ...config, + runtime: "browser", + defaultsMode, + bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength, + credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_: unknown) => () => Promise.reject(new Error("Credential is missing"))), + defaultUserAgentProvider: config?.defaultUserAgentProvider ?? defaultUserAgent({serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version}), + eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventStreamSerdeProvider, + maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS, + region: config?.region ?? invalidProvider("Region is missing"), + requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider), + retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE), + sha256: config?.sha256 ?? Sha256, + streamCollector: config?.streamCollector ?? streamCollector, + useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)), + useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)), + }; +}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/src/runtimeConfig.native.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/src/runtimeConfig.native.ts new file mode 100644 index 00000000000..ef1555fc70e --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/src/runtimeConfig.native.ts @@ -0,0 +1,17 @@ +// smithy-typescript generated code +import { Sha256 } from "@aws-crypto/sha256-js"; +import { QDeveloperStreamingClientConfig } from "./QDeveloperStreamingClient"; +import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; + +/** + * @internal + */ +export const getRuntimeConfig = (config: QDeveloperStreamingClientConfig) => { + const browserDefaults = getBrowserRuntimeConfig(config); + return { + ...browserDefaults, + ...config, + runtime: "react-native", + sha256: config?.sha256 ?? Sha256, + }; +}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/src/runtimeConfig.shared.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/src/runtimeConfig.shared.ts new file mode 100644 index 00000000000..d225ea9de71 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/src/runtimeConfig.shared.ts @@ -0,0 +1,42 @@ +// smithy-typescript generated code +import { defaultQDeveloperStreamingHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; +import { defaultRegionInfoProvider } from "./endpoints"; +import { AwsSdkSigV4Signer } from "@aws-sdk/core"; +import { NoOpLogger } from "@smithy/smithy-client"; +import { IdentityProviderConfig } from "@smithy/types"; +import { parseUrl } from "@smithy/url-parser"; +import { + fromBase64, + toBase64, +} from "@smithy/util-base64"; +import { + fromUtf8, + toUtf8, +} from "@smithy/util-utf8"; +import { QDeveloperStreamingClientConfig } from "./QDeveloperStreamingClient"; + +/** + * @internal + */ +export const getRuntimeConfig = (config: QDeveloperStreamingClientConfig) => { + return { + apiVersion: "2024-06-11", + base64Decoder: config?.base64Decoder ?? fromBase64, + base64Encoder: config?.base64Encoder ?? toBase64, + disableHostPrefix: config?.disableHostPrefix ?? false, + extensions: config?.extensions ?? [], + httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultQDeveloperStreamingHttpAuthSchemeProvider, + httpAuthSchemes: config?.httpAuthSchemes ?? [{ + schemeId: "aws.auth#sigv4", + identityProvider: (ipc: IdentityProviderConfig) => + ipc.getIdentityProvider("aws.auth#sigv4"), + signer: new AwsSdkSigV4Signer(), + }], + logger: config?.logger ?? new NoOpLogger(), + regionInfoProvider: config?.regionInfoProvider ?? defaultRegionInfoProvider, + serviceId: config?.serviceId ?? "QDeveloperStreaming", + urlParser: config?.urlParser ?? parseUrl, + utf8Decoder: config?.utf8Decoder ?? fromUtf8, + utf8Encoder: config?.utf8Encoder ?? toUtf8, + } +}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/src/runtimeConfig.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/src/runtimeConfig.ts new file mode 100644 index 00000000000..9a3f3852e8f --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/src/runtimeConfig.ts @@ -0,0 +1,59 @@ +// smithy-typescript generated code +// @ts-ignore: package.json will be imported from dist folders +import packageInfo from "../package.json"; // eslint-disable-line + +import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core"; +import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node"; +import { defaultUserAgent } from "@aws-sdk/util-user-agent-node"; +import { + NODE_REGION_CONFIG_FILE_OPTIONS, + NODE_REGION_CONFIG_OPTIONS, + NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, + NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, +} from "@smithy/config-resolver"; +import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-node"; +import { Hash } from "@smithy/hash-node"; +import { + NODE_MAX_ATTEMPT_CONFIG_OPTIONS, + NODE_RETRY_MODE_CONFIG_OPTIONS, +} from "@smithy/middleware-retry"; +import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; +import { + NodeHttpHandler as RequestHandler, + streamCollector, +} from "@smithy/node-http-handler"; +import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; +import { QDeveloperStreamingClientConfig } from "./QDeveloperStreamingClient"; +import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; +import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; + +/** + * @internal + */ +export const getRuntimeConfig = (config: QDeveloperStreamingClientConfig) => { + emitWarningIfUnsupportedVersion(process.version); + const defaultsMode = resolveDefaultsModeConfig(config); + const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode); + const clientSharedValues = getSharedRuntimeConfig(config); + awsCheckVersion(process.version);return { + ...clientSharedValues, + ...config, + runtime: "node", + defaultsMode, + bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength, + credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider, + defaultUserAgentProvider: config?.defaultUserAgentProvider ?? defaultUserAgent({serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version}), + eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventStreamSerdeProvider, + maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS), + region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS), + requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider), + retryMode: config?.retryMode ?? loadNodeConfig({...NODE_RETRY_MODE_CONFIG_OPTIONS,default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,}), + sha256: config?.sha256 ?? Hash.bind(null, "sha256"), + streamCollector: config?.streamCollector ?? streamCollector, + useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS), + useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS), + }; +}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/src/runtimeExtensions.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/src/runtimeExtensions.ts new file mode 100644 index 00000000000..2db7927eff2 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/src/runtimeExtensions.ts @@ -0,0 +1,59 @@ +// smithy-typescript generated code +import { + getHttpAuthExtensionConfiguration, + resolveHttpAuthRuntimeConfig, +} from "./auth/httpAuthExtensionConfiguration"; +import { + getAwsRegionExtensionConfiguration, + resolveAwsRegionExtensionConfiguration, +} from "@aws-sdk/region-config-resolver"; +import { + getHttpHandlerExtensionConfiguration, + resolveHttpHandlerRuntimeConfig, +} from "@smithy/protocol-http"; +import { + getDefaultExtensionConfiguration, + resolveDefaultRuntimeConfig, +} from "@smithy/smithy-client"; +import { QDeveloperStreamingExtensionConfiguration } from "./extensionConfiguration"; + +/** + * @public + */ +export interface RuntimeExtension { + configure(extensionConfiguration: QDeveloperStreamingExtensionConfiguration): void; +} + +/** + * @public + */ +export interface RuntimeExtensionsConfig { + extensions: RuntimeExtension[] +} + +const asPartial = >(t: T) => t; + +/** + * @internal + */ +export const resolveRuntimeExtensions = ( + runtimeConfig: any, + extensions: RuntimeExtension[] +) => { + const extensionConfiguration: QDeveloperStreamingExtensionConfiguration = { + ...asPartial(getAwsRegionExtensionConfiguration(runtimeConfig)), + ...asPartial(getDefaultExtensionConfiguration(runtimeConfig)), + ...asPartial(getHttpHandlerExtensionConfiguration(runtimeConfig)), + ...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig)), + }; + + extensions.forEach(extension => extension.configure(extensionConfiguration)); + + return { + ...runtimeConfig, + ...resolveAwsRegionExtensionConfiguration(extensionConfiguration), + ...resolveDefaultRuntimeConfig(extensionConfiguration), + ...resolveHttpHandlerRuntimeConfig(extensionConfiguration), + ...resolveHttpAuthRuntimeConfig(extensionConfiguration), + }; +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.cjs.json b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.cjs.json new file mode 100644 index 00000000000..3567d85ba84 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.cjs.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig", + "compilerOptions": { + "outDir": "dist-cjs" + } +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.cjs.tsbuildinfo b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.cjs.tsbuildinfo new file mode 100644 index 00000000000..8d24673c707 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.cjs.tsbuildinfo @@ -0,0 +1 @@ +{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.es2021.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.es2021.promise.d.ts","./node_modules/typescript/lib/lib.es2021.string.d.ts","./node_modules/typescript/lib/lib.es2021.weakref.d.ts","./node_modules/typescript/lib/lib.es2021.intl.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/client/emitwarningifunsupportedversion.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts","./node_modules/@smithy/types/dist-types/abort-handler.d.ts","./node_modules/@smithy/types/dist-types/abort.d.ts","./node_modules/@smithy/types/dist-types/auth/auth.d.ts","./node_modules/@smithy/types/dist-types/auth/httpapikeyauth.d.ts","./node_modules/@smithy/types/dist-types/identity/identity.d.ts","./node_modules/@smithy/types/dist-types/endpoint.d.ts","./node_modules/@smithy/types/dist-types/logger.d.ts","./node_modules/@smithy/types/dist-types/uri.d.ts","./node_modules/@smithy/types/dist-types/http.d.ts","./node_modules/@smithy/types/dist-types/response.d.ts","./node_modules/@smithy/types/dist-types/util.d.ts","./node_modules/@smithy/types/dist-types/middleware.d.ts","./node_modules/@smithy/types/dist-types/auth/httpsigner.d.ts","./node_modules/@smithy/types/dist-types/auth/identityproviderconfig.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthscheme.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/types/dist-types/auth/index.d.ts","./node_modules/@types/node/ts5.6/globals.typedarray.d.ts","./node_modules/@types/node/ts5.6/buffer.buffer.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/dom-events.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/ts5.6/index.d.ts","./node_modules/@smithy/types/dist-types/transform/exact.d.ts","./node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts","./node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/crypto.d.ts","./node_modules/@smithy/types/dist-types/checksum.d.ts","./node_modules/@smithy/types/dist-types/command.d.ts","./node_modules/@smithy/types/dist-types/client.d.ts","./node_modules/@smithy/types/dist-types/connection/config.d.ts","./node_modules/@smithy/types/dist-types/transfer.d.ts","./node_modules/@smithy/types/dist-types/connection/manager.d.ts","./node_modules/@smithy/types/dist-types/connection/pool.d.ts","./node_modules/@smithy/types/dist-types/connection/index.d.ts","./node_modules/@smithy/types/dist-types/eventstream.d.ts","./node_modules/@smithy/types/dist-types/encode.d.ts","./node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","./node_modules/@smithy/types/dist-types/endpoints/endpointruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/errorruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/treeruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/rulesetobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/index.d.ts","./node_modules/@smithy/types/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultclientconfiguration.d.ts","./node_modules/@smithy/types/dist-types/shapes.d.ts","./node_modules/@smithy/types/dist-types/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/types/dist-types/extensions/index.d.ts","./node_modules/@smithy/types/dist-types/http/httphandlerinitialization.d.ts","./node_modules/@smithy/types/dist-types/identity/apikeyidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/index.d.ts","./node_modules/@smithy/types/dist-types/pagination.d.ts","./node_modules/@smithy/types/dist-types/profile.d.ts","./node_modules/@smithy/types/dist-types/serde.d.ts","./node_modules/@smithy/types/dist-types/signature.d.ts","./node_modules/@smithy/types/dist-types/stream.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","./node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","./node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","./node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","./node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts","./node_modules/@smithy/types/dist-types/waiter.d.ts","./node_modules/@smithy/types/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromenv.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/gethomedir.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getprofilename.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfilepath.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfromfile.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadsharedconfigfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadssosessiondata.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/parseknownfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromsharedconfigfiles.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromstatic.d.ts","./node_modules/@smithy/node-config-provider/dist-types/configloader.d.ts","./node_modules/@smithy/node-config-provider/dist-types/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4aconfig.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4signer.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4asigner.d.ts","./node_modules/@smithy/signature-v4/dist-types/signaturev4.d.ts","./node_modules/@smithy/signature-v4/dist-types/getcanonicalheaders.d.ts","./node_modules/@smithy/signature-v4/dist-types/getcanonicalquery.d.ts","./node_modules/@smithy/signature-v4/dist-types/getpayloadhash.d.ts","./node_modules/@smithy/signature-v4/dist-types/moveheaderstoquery.d.ts","./node_modules/@smithy/signature-v4/dist-types/preparerequest.d.ts","./node_modules/@smithy/signature-v4/dist-types/credentialderivation.d.ts","./node_modules/@smithy/signature-v4/dist-types/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4config.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/coercing-serializers.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsexpectunion.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parsejsonbody.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/parsexmlbody.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts","./node_modules/@aws-sdk/core/dist-types/index.d.ts","./dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/smithy-client/dist-types/client.d.ts","./node_modules/@smithy/util-stream/dist-types/blob/uint8arrayblobadapter.d.ts","./node_modules/@smithy/util-stream/dist-types/getawschunkedencodingstream.d.ts","./node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts","./node_modules/@smithy/util-stream/dist-types/splitstream.d.ts","./node_modules/@smithy/util-stream/dist-types/headstream.d.ts","./node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts","./node_modules/@smithy/util-stream/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/resolveendpointconfig.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getendpointfrominstructions.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toendpointv1.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/endpointmiddleware.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/getendpointplugin.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/command.d.ts","./node_modules/@smithy/smithy-client/dist-types/constants.d.ts","./node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts","./node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts","./node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts","./node_modules/@smithy/smithy-client/dist-types/emitwarningifunsupportedversion.d.ts","./node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts","./node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts","./node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts","./node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/nooplogger.d.ts","./node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts","./node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/quote-header.d.ts","./node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts","./node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-every.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-header.d.ts","./node_modules/@smithy/smithy-client/dist-types/index.d.ts","./dist-types/models/qdeveloperstreamingserviceexception.d.ts","./dist-types/models/models_0.d.ts","./dist-types/commands/generatecodefromcommandscommand.d.ts","./dist-types/commands/sendmessagecommand.d.ts","./dist-types/auth/httpauthextensionconfiguration.d.ts","./node_modules/@aws-sdk/types/dist-types/abort.d.ts","./node_modules/@aws-sdk/types/dist-types/auth.d.ts","./node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","./node_modules/@aws-sdk/types/dist-types/checksum.d.ts","./node_modules/@aws-sdk/types/dist-types/client.d.ts","./node_modules/@aws-sdk/types/dist-types/command.d.ts","./node_modules/@aws-sdk/types/dist-types/connection.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/identity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/anonymousidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/loginidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","./node_modules/@aws-sdk/types/dist-types/util.d.ts","./node_modules/@aws-sdk/types/dist-types/credentials.d.ts","./node_modules/@aws-sdk/types/dist-types/crypto.d.ts","./node_modules/@aws-sdk/types/dist-types/dns.d.ts","./node_modules/@aws-sdk/types/dist-types/encode.d.ts","./node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","./node_modules/@aws-sdk/types/dist-types/eventstream.d.ts","./node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/types/dist-types/http.d.ts","./node_modules/@aws-sdk/types/dist-types/logger.d.ts","./node_modules/@aws-sdk/types/dist-types/middleware.d.ts","./node_modules/@aws-sdk/types/dist-types/pagination.d.ts","./node_modules/@aws-sdk/types/dist-types/profile.d.ts","./node_modules/@aws-sdk/types/dist-types/request.d.ts","./node_modules/@aws-sdk/types/dist-types/response.d.ts","./node_modules/@aws-sdk/types/dist-types/retry.d.ts","./node_modules/@aws-sdk/types/dist-types/serde.d.ts","./node_modules/@aws-sdk/types/dist-types/shapes.d.ts","./node_modules/@aws-sdk/types/dist-types/signature.d.ts","./node_modules/@aws-sdk/types/dist-types/stream.d.ts","./node_modules/@aws-sdk/types/dist-types/token.d.ts","./node_modules/@aws-sdk/types/dist-types/transfer.d.ts","./node_modules/@aws-sdk/types/dist-types/uri.d.ts","./node_modules/@aws-sdk/types/dist-types/waiter.d.ts","./node_modules/@aws-sdk/types/dist-types/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/httprequest.d.ts","./node_modules/@smithy/protocol-http/dist-types/httpresponse.d.ts","./node_modules/@smithy/protocol-http/dist-types/httphandler.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/httpextensionconfiguration.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/field.d.ts","./node_modules/@smithy/protocol-http/dist-types/fields.d.ts","./node_modules/@smithy/protocol-http/dist-types/isvalidhostname.d.ts","./node_modules/@smithy/protocol-http/dist-types/types.d.ts","./node_modules/@smithy/protocol-http/dist-types/index.d.ts","./dist-types/extensionconfiguration.d.ts","./dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusedualstackendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusefipsendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolveendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolvecustomendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvarianttag.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvariant.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/partitionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/regionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/getregioninfo.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/eventstreamserdeconfig.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts","./node_modules/@smithy/util-retry/dist-types/types.d.ts","./node_modules/@smithy/util-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/configuredretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/defaultratelimiter.d.ts","./node_modules/@smithy/util-retry/dist-types/config.d.ts","./node_modules/@smithy/util-retry/dist-types/constants.d.ts","./node_modules/@smithy/util-retry/dist-types/index.d.ts","./node_modules/@smithy/middleware-retry/dist-types/types.d.ts","./node_modules/@smithy/middleware-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts","./node_modules/@smithy/middleware-retry/dist-types/delaydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/omitretryheadersmiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrymiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/index.d.ts","./dist-types/qdeveloperstreamingclient.d.ts","./dist-types/qdeveloperstreaming.d.ts","./dist-types/endpoints.d.ts","./dist-types/commands/index.d.ts","./dist-types/models/index.d.ts","./dist-types/index.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts","./dist-types/runtimeconfig.browser.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts","./node_modules/@smithy/node-http-handler/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/fromhttp/fromhttptypes.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/fromhttp/fromhttp.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromwebtoken.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromtokenfile.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveassumerolecredentials.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/fromini.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-process/dist-types/fromprocess.d.ts","./node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/ssoserviceexception.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/getrolecredentialscommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/listaccountrolescommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/listaccountscommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/logoutcommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointparameters.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/auth/httpauthextensionconfiguration.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/extensionconfiguration.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/ssoclient.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/sso.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/interfaces.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/listaccountrolespaginator.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/listaccountspaginator.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/loadsso.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/fromsso.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/isssoprofile.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/validatessoprofile.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/remoteprovider/remoteproviderinit.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/fromcontainermetadata.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/frominstancemetadata.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/remoteprovider/httprequest.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/utils/getinstancemetadataendpoint.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/config/endpoint.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-node/dist-types/defaultprovider.d.ts","./node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts","./dist-types/runtimeconfig.d.ts","./dist-types/runtimeconfig.native.d.ts","./dist-types/runtimeconfig.shared.d.ts","./dist-types/protocols/aws_json1_0.d.ts","./node_modules/tslib/tslib.d.ts","./node_modules/@smithy/util-middleware/dist-types/getsmithycontext.d.ts","./node_modules/@smithy/util-middleware/dist-types/normalizeprovider.d.ts","./node_modules/@smithy/util-middleware/dist-types/index.d.ts","./src/auth/httpauthschemeprovider.ts","./src/models/qdeveloperstreamingserviceexception.ts","./src/models/models_0.ts","./node_modules/@smithy/middleware-serde/dist-types/deserializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serdeplugin.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/index.d.ts","./src/commands/sendmessagecommand.ts","./node_modules/@types/uuid/index.d.ts","./src/protocols/aws_json1_0.ts","./src/commands/generatecodefromcommandscommand.ts","./package.json","./node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts","./node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts","./node_modules/@smithy/hash-node/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/index.d.ts","./src/endpoints.ts","./node_modules/@smithy/url-parser/dist-types/index.d.ts","./node_modules/@smithy/util-base64/dist-types/frombase64.d.ts","./node_modules/@smithy/util-base64/dist-types/tobase64.d.ts","./node_modules/@smithy/util-base64/dist-types/index.d.ts","./node_modules/@smithy/util-utf8/dist-types/fromutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/touint8array.d.ts","./node_modules/@smithy/util-utf8/dist-types/toutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/index.d.ts","./src/runtimeconfig.shared.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts","./src/runtimeconfig.ts","./src/auth/httpauthextensionconfiguration.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts","./src/extensionconfiguration.ts","./src/runtimeextensions.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/loggermiddleware.d.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpauthschememiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/gethttpauthschemeendpointrulesetplugin.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/gethttpauthschemeplugin.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/httpsigningmiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/gethttpsigningmiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/defaultidentityproviderconfig.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/httpapikeyauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/httpbearerauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/noauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/index.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeidentityprovider.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts","./node_modules/@smithy/core/dist-types/getsmithycontext.d.ts","./node_modules/@smithy/core/dist-types/normalizeprovider.d.ts","./node_modules/@smithy/core/dist-types/protocols/requestbuilder.d.ts","./node_modules/@smithy/core/dist-types/pagination/createpaginator.d.ts","./node_modules/@smithy/core/dist-types/index.d.ts","./node_modules/@smithy/middleware-content-length/dist-types/index.d.ts","./src/qdeveloperstreamingclient.ts","./src/qdeveloperstreaming.ts","./src/commands/index.ts","./src/models/index.ts","./src/index.ts","./node_modules/@aws-crypto/sha256-browser/build/main/crossplatformsha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/main/webcryptosha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/invalidfunction.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/invalidprovider.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts","./src/runtimeconfig.browser.ts","./node_modules/@aws-crypto/sha256-js/build/main/jssha256.d.ts","./node_modules/@aws-crypto/sha256-js/build/main/index.d.ts","./src/runtimeconfig.native.ts","../../../node_modules/@types/adm-zip/index.d.ts","../../../node_modules/@types/readdir-glob/index.d.ts","../../../node_modules/@types/archiver/index.d.ts","../../../node_modules/@types/async-lock/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/bytes/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/circular-dependency-plugin/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/cross-spawn/index.d.ts","../../../node_modules/@types/diff/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/glob/node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/parse5/dist/cjs/common/html.d.ts","../../../node_modules/parse5/dist/cjs/common/token.d.ts","../../../node_modules/parse5/dist/cjs/common/error-codes.d.ts","../../../node_modules/parse5/dist/cjs/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/dist/cjs/tokenizer/index.d.ts","../../../node_modules/parse5/dist/cjs/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/cjs/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/cjs/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/cjs/parser/index.d.ts","../../../node_modules/parse5/dist/cjs/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/cjs/serializer/index.d.ts","../../../node_modules/parse5/dist/cjs/common/foreign-content.d.ts","../../../node_modules/parse5/dist/cjs/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/linkify-it/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdurl/encode.d.ts","../../../node_modules/@types/mdurl/decode.d.ts","../../../node_modules/@types/mdurl/parse.d.ts","../../../node_modules/@types/mdurl/format.d.ts","../../../node_modules/@types/mdurl/index.d.ts","../../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../../node_modules/@types/markdown-it/lib/token.d.ts","../../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../../node_modules/@types/markdown-it/lib/index.d.ts","../../../node_modules/@types/markdown-it/index.d.ts","../../../node_modules/@types/mime-types/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/prismjs/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/proper-lockfile/index.d.ts","../../../node_modules/@types/readline-sync/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sinon/node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/stream-buffers/index.d.ts","../../../node_modules/@types/tcp-port-used/index.d.ts","../../../node_modules/@types/vscode/index.d.ts","../../../node_modules/@types/vscode-webview/index.d.ts","../../../node_modules/@types/webidl-conversions/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/whatwg-url/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/xml2js/lib/processors.d.ts","../../../node_modules/@types/xml2js/index.d.ts","../../../node_modules/@smithy/core/node_modules/@smithy/protocol-http/dist-types/index.d.ts","../../../node_modules/@smithy/signature-v4/dist-types/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","impliedFormat":1},{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true,"impliedFormat":1},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"02ec1ffcc0823cb9c9ba420c619d3af2c726e3a674b66a91941c07a3e7f65dba","impliedFormat":1},{"version":"38f6da5b6f318c33e18dd7c983cab3fe52f510c9a2573948fb13f012e01b1ba6","impliedFormat":1},{"version":"b40885a4e39fb67eb251fb009bf990f3571ccf7279dccad26c2261b4e5c8ebcd","impliedFormat":1},{"version":"2d0e63718a9ab15554cca1ef458a269ff938aea2ad379990a018a49e27aadf40","impliedFormat":1},{"version":"530e5c7e4f74267b7800f1702cf0c576282296a960acbdb2960389b2b1d0875b","impliedFormat":1},{"version":"1c483cc60a58a0d4c9a068bdaa8d95933263e6017fbea33c9f99790cf870f0a8","impliedFormat":1},{"version":"07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","impliedFormat":1},{"version":"5d3e656baf210f702e4006949a640730d6aef8d6afc3de264877e0ff76335f39","impliedFormat":1},{"version":"4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","impliedFormat":1},{"version":"c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","impliedFormat":1},{"version":"570efec02480a95fa35e7c6dc3c00c59309d221e0698cefbc9e27a3c13d69c96","impliedFormat":1},{"version":"396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","impliedFormat":1},{"version":"b7b881ced4ed4dee13d6e0ccdb2296f66663ba6b1419767271090b3ff3478bb9","impliedFormat":1},{"version":"06289b9873760aac77aed4035ea6c60b1e0879b8afe47a4530bc8522b9b804b1","impliedFormat":1},{"version":"63c36aa73242aa745fae813c40585111ead225394b0a0ba985c2683baa6b0ef9","impliedFormat":1},{"version":"3e7ffc7dd797e5d44d387d0892bc288480493e73dcab9832812907d1389e4a98","impliedFormat":1},{"version":"db011ec9589fd51995cbd0765673838e38e6485a6559163cc53dcf508b480909","impliedFormat":1},{"version":"e1a4253f0cca15c14516f52a2ad36c3520b140b5dfb3b3880a368cd75d45d6d9","impliedFormat":1},{"version":"159af954f2633a12fdee68605009e7e5b150dbeb6d70c46672fd41059c154d53","impliedFormat":1},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true,"impliedFormat":1},{"version":"894dae169f8193e3f07c3fec14149a60592d1f13720907ffdf7b0c05cfb62c38","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e0d35597ff6c5142082e60814fa39c8a2077a58d8a6a262e619afb5f855f6ba","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"228318442187dee1f3b18047e6281d12d59f7b492d6243db4eb720d53e3c03f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"f51b4042a3ac86f1f707500a9768f88d0b0c1fc3f3e45a73333283dea720cdc6","impliedFormat":1},{"version":"a29bc8aa8cc100d0c09370c03508f1245853efe017bb98699d4c690868371fc7","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f95830ca11e2c7e82235b73dc149e68a0632b41e671724d12adc83a6750746d","impliedFormat":1},{"version":"7aa011cda7cf0b9e87c85d128b2eeac9930bda215b0fee265d8bf2cec039fb5f","impliedFormat":1},{"version":"92ec1aeca4e94bdab04083daa6039f807c0fce8f09bc42e8b24bf49fa5cdbbff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"25bfb291668b70290dd646f6e99e681ded0481bc0610d241a229cda07d7af425","impliedFormat":1},{"version":"6c39d4dbdb372b364442854e42d8c473e2ec67badb226745af17ed5ac41ce6f5","impliedFormat":1},{"version":"7693b90b3075deaccafd5efb467bf9f2b747a3075be888652ef73e64396d8628","impliedFormat":1},{"version":"bd01a987f0fcf2344a405e542ee681e420651eaff1222a5a6e0c02fda52343bc","impliedFormat":1},{"version":"693e50962e90a3548f41bff2c22676e3964212a836022d82e49eca0b20320a38","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"300b0c12998391154d7b9115a85554e91632a3d3e1b66038e98f2b9cb3c1061d","impliedFormat":1},{"version":"8d680d5d1a77028ca1708118b8c941edd90a6329f9dc0315ffc3a06b4820e937","affectsGlobalScope":true,"impliedFormat":1},{"version":"8bc550ee45988b123605e2cbba4dc8d3b4153c3d06f59074c7cda5bc3b2f2fd8","impliedFormat":1},{"version":"5293d799856f47259146ccf0be9a1cc0a4a5343696182d7206ed25ea67d67920","impliedFormat":1},{"version":"d7cdb379f1a8febb8ba181b2bba4c89b7f9189c68ce00292253d9f827eb0b2d3","impliedFormat":1},{"version":"fab49059d6c2026bdb2e53e4e5cde1a39da44e61daff1867c8b3b10b507bfe17","impliedFormat":1},{"version":"5a551275f85bcc4003e543a1951a5b2f682cfba9b2922f65ae0df40ab71724a5","impliedFormat":1},{"version":"22d1a3163b9a961dbe78b0aedbd7bcbc071ce1f31efb76eb013b0aee230fef0e","impliedFormat":1},{"version":"c31695696ade4514cfcbb22799997b690d3dca7fb72beab68fb2e73b6ef450dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"d99ad56d57f2c96daaf4475a8b64344b24dedafdb8f3c32d43552bcc72279a75","impliedFormat":1},{"version":"a101ef17aece908c1029a1bd3f97132794dcff21b4ca0b997d9a633f962c46aa","impliedFormat":1},{"version":"511575e18249b64b90d8f884fdb8a383c767d1a7efccd9d66a4e125a4dc5c462","impliedFormat":1},{"version":"6d8001f2c3b86c4f1de1d45ecb3f87f287ed7313d6999f8c8318cec4f50e6323","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d09f4b48899d342b5d6cd846f95f969a401933b0dcd375a8a7e45832328bb86","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c3d1222e6e3d8c35a4293d7a54d4142ebb8f7f70ec4111b8136df07fdc66169","impliedFormat":1},{"version":"70173c475c6e76ccebc37412b02b2e26f62bf45fc1534c3ebe6d7fa60fb88819","impliedFormat":1},{"version":"1c05d80325e7cb8ad9fe6f4f8cd1798ec87607fe523865b27cab9fc5b816f067","impliedFormat":1},{"version":"863bc4e31de6c75423bb02da16190d582b0a69b8964b61d45920e5b2cb3832dd","impliedFormat":1},{"version":"3c92f365d57fd49656e4907bf1d950d4a4060dde7db35effe2f6348e0e800b86","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"6e191fea1db6e9e4fa828259cf489e820ec9170effff57fb081a2f3295db4722","impliedFormat":1},{"version":"aed943465fbce1efe49ee16b5ea409050f15cd8eaf116f6fadb64ef0772e7d95","impliedFormat":1},{"version":"0435070b07e646b406b1c9b8b1b1878ea6917c32abc47e6435ec26d71212d513","impliedFormat":1},{"version":"f71188f97c9f7d309798ec02a56dd3bf50a4e4d079b3480f275ac13719953898","impliedFormat":1},{"version":"c4454589a0aa92c10d684c8c9584574bc404d1db556d72196cd31f8f7651af1a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b17790866e140a630fa8891d7105c728a1bd60f4e35822e4b345af166a4a728c","impliedFormat":1},{"version":"c50c75f4360f6fc06c4be29dafe28210e15c50cd6b04ad19c4808fa504efb51a","impliedFormat":1},{"version":"d4a1f5f7ee89b2afffd3c74282f8ee65b24266c92b7d40398c12a27054ed745c","impliedFormat":1},{"version":"900b5a9802192bc77eba35a5b87ce770df7b867a6d61772c554058c9ed635386","impliedFormat":1},{"version":"65278b3e3cb8e3f0b7bc712e86858ba7695501e76a84eedb730cc15b85d92b56","affectsGlobalScope":true,"impliedFormat":1},{"version":"f43fcf89d75f13d0908a77cd3fa32b9fd28c915deded9b2778b08f2e242d07a7","affectsGlobalScope":true,"impliedFormat":1},{"version":"9b6fc34aca8b0411b96ba35b2315017236a47709a1a98d5e16aed3b84037b9e8","impliedFormat":1},{"version":"aebf613f7831125038942eba891005fd25fa5cadcc3e3d13af4768dc7549161f","impliedFormat":1},{"version":"0faee6b555890a1cb106e2adc5d3ffd89545b1da894d474e9d436596d654998f","impliedFormat":1},{"version":"247e5c34784d185bc81442e8b1a371a36c4a5307a766a3725454c0a191b5cfad","impliedFormat":1},{"version":"1c382a6446d63340be549a616ff5142a91653cea45d6d137e25b929130a4f29a","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"20eb6689443f55ebd33372566b0afad619f1ba48fec4ffb4ab0c119e4fc52eea","impliedFormat":1},{"version":"a1b36a1f91a54daf2e89e12b834fa41fb7338bc044d1f08a80817efc93c99ee5","impliedFormat":1},{"version":"8bb4a5b632dd5a868f3271750895cb61b0e20cff82032d87e89288faee8dd6e2","impliedFormat":1},{"version":"0c1aabfd9fb1818afb2e798f91f669edafce59cd7e3423d25b1cfccfaaf2c403","impliedFormat":1},{"version":"017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","impliedFormat":1},{"version":"ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","impliedFormat":1},{"version":"9ae7df67c30dc5f52b7b21e8bb36fd9ff05e7ed10e514e2d9ed879b4547c4cd3","impliedFormat":1},{"version":"fd6a17c2d015cb2963d62db7566a43818424e8f32eb821fa9b8b142d4ab12664","impliedFormat":1},{"version":"4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","impliedFormat":1},{"version":"e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","impliedFormat":1},{"version":"d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","impliedFormat":1},{"version":"d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","impliedFormat":1},{"version":"5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","impliedFormat":1},{"version":"27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","impliedFormat":1},{"version":"eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","impliedFormat":1},{"version":"52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","impliedFormat":1},{"version":"5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","impliedFormat":1},{"version":"fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","impliedFormat":1},{"version":"d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","impliedFormat":1},{"version":"fc9bdd9b3d8fb59c913cb3b8dea0d79b38dfe9331ef07e1c6dc6bf363f061ad6","impliedFormat":1},{"version":"e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","impliedFormat":1},{"version":"0c3c4ce6a1884610c99306719f59174d81808c69393c30119f9c2aef0449a2cb","impliedFormat":1},{"version":"219a25474e58a8161b242776856ec5f6960839b63e74809445e51cadbfc18096","impliedFormat":1},{"version":"5a0d1534e9493ae44b08b3055172da38370e2afd2bc3d4bea11f7be78344036f","impliedFormat":1},{"version":"6309a45fc3c03d3c4d56228e995d51974f53009a842374695b34f3607877e5a3","impliedFormat":1},{"version":"bef94eba81ae2c09059c0d9abdb1ae1b7090314f70550f3c8cd5d7ead4a4f212","impliedFormat":1},{"version":"48b787ad458be9b524fa5fdfef34f68798074132d4b8cfe6a6fe9c2bf334c532","impliedFormat":1},{"version":"37280465f8f9b2ea21d490979952b18b7f4d1f0d8fab2d627618fb2cfa1828e3","impliedFormat":1},{"version":"c12f3ff5e221c1d3e4eaf47a372b538d8e79bd9a15266c2b049a597da0b86924","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f3f85dc43cb93c5a797f1ff0fa948d0e17843a443ae11a20cc032ccdf1b9997","impliedFormat":1},{"version":"581843e855d92557cbe9dfe242de4e53badae5e9096ca593b50788f7c89c37f2","impliedFormat":1},{"version":"869010bc679df668137cb3b78a3cb8196e97acf285208a57f6156ceac894a2f7","impliedFormat":1},{"version":"bcae62618c23047e36d373f0feac5b13f09689e4cd08e788af13271dbe73a139","impliedFormat":1},{"version":"29a99d2e57b3e08a997cbc2397bdb251441a545306a74b95ffedc5f03d9bc6b7","impliedFormat":1},{"version":"5ae003688265a1547bbcb344bf0e26cb994149ac2c032756718e9039302dfac8","impliedFormat":1},{"version":"09e811cc1088d9ea3a7ddd7290f6a13767f56c85daf8c3374a06a45a08d55647","impliedFormat":1},{"version":"a86053981218db1594bd4839bde0fb998e342ecf04967622495434a8f52a4041","impliedFormat":1},{"version":"5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","impliedFormat":1},{"version":"7b270dc53f35dd0b44bfa619ad4d351fffd512e14053c3688323ed007eda3f6d","impliedFormat":1},{"version":"6d4e928f232ade7221cffc6e4332ec935baa176415c9bf5d12111bb883a247d2","impliedFormat":1},{"version":"e86ad029224d4f2af3e188be8b5e9badf8c7083247572069bac7bd2193131fc7","impliedFormat":1},{"version":"057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","impliedFormat":1},{"version":"d94034601782f828aa556791279c86c37f09f7034a2ab873eefe136f77a6046b","impliedFormat":1},{"version":"105ae3dd61531488194f412386ba8c2b786f1389ac3415098cc47c712800da29","impliedFormat":1},{"version":"45851fbb6595233ecf6be213f74f00690c752782387796c66ea186750f831d06","impliedFormat":1},{"version":"4ee905052d0879e667444234d1462540107789cb1c80bd26e328574e4f3e4724","impliedFormat":1},{"version":"151659e152d71986b8943b9943cd7fbe27a65874655081602de7ea24a0f66e9b","impliedFormat":1},{"version":"3448e2fa1ae3a52d50e1e82e50b6ae5b8bd911004a8824b0c6b26c8cdcd15fec","impliedFormat":1},{"version":"c0c0b22cefd1896b92d805556fcabda18720d24981b8cb74e08ffea1f73f96c2","impliedFormat":1},{"version":"b97e6411a3ee83e6f77760f0400d117313a980d05ec89f1e1a7502229e36d060","impliedFormat":1},{"version":"270418f8a6639be745d14bfd085e62685f24eaa6d6482aa9803bae8b8b93919a","impliedFormat":1},{"version":"4cb33d05ff168c1ca836d6d438f93040972af43fc09774876c4add2ad96d125f","impliedFormat":1},{"version":"902d2b66388607197ec48798c94a6ffc657fe1cfbee15e49b6b3052de0e5b8fa","impliedFormat":1},{"version":"38104b9a37d0b9dc54be36ae43b1a32f9cfae34742743bfd7104cf1f39661225","impliedFormat":1},{"version":"47ff32ca9ab8474e89615b4bbe5f2264c2940fc12b86c4dc0a99659479517a6b","impliedFormat":1},{"version":"f892f85b4838f6a2ff1438d240dcf23a872d090794967c7f817a82ea8da1ad8e","impliedFormat":1},{"version":"cb498c53a9d35ac1cf9a3515f3835d48b4626a612cf7540c5bfb99542c9ab1a5","impliedFormat":1},{"version":"b86e64c48044bb73c6de7aa2cdf9295b2c104221e6a68b408225b283d1bcfda2","impliedFormat":1},{"version":"16173f5b3e68a373e7dfe6d00948549facc9947c9dbde813f1efe3a0f236ff6a","impliedFormat":1},{"version":"f457fc1b7583e1215393db13b95a186593660aad29706515ab7479869bc585e0","impliedFormat":1},{"version":"a11288edc8161f664148ea7d56101517e380335f5fa1a94408db86efce025bba","impliedFormat":1},{"version":"0e2a6b2eeadafbc7a27909527af46705d47e93c652d656f09cc3ef460774291b","impliedFormat":1},{"version":"d6d561bf4309a197e4b241fb0eacebf14c400661c4352676cd3c88c17e5ab8a2","impliedFormat":1},{"version":"ed012a19811c4010cb7d8920378f6dd50f22e1cf2842ecb44a157030667b165e","impliedFormat":1},{"version":"4085ac780790cc5787e375bd6c7dc149610665514e1d3d8fb65aec29efb691c9","impliedFormat":1},{"version":"7634eca84d60522b68ac679813fd9247a4260f7412890e924c7779758f8d6391","impliedFormat":1},{"version":"b4ff74f0589487410168be50e3231caf687c5e1302266709742382e8d004fe1e","impliedFormat":1},{"version":"406f227eebfe8be216d7a4b215ed09198b0c2f6599f2273b69ee5b75824c5435","impliedFormat":1},{"version":"e7cd1d6f8afb317dca8c5b6a60d5cd55aacf8d9ed8ae39f22e3104ed0c479552","impliedFormat":1},{"version":"75c9a36ada92da43627b5cf1142a6fe20f50ad00abacb90204b74b19775521c2","impliedFormat":1},{"version":"8a90f97fdb10d83c6842a699c3df474246755f4fbf3ee2d35e69d6599fe9092c","impliedFormat":1},{"version":"88aacf6e2493633490812c70595b517c8e4299f054d28a51687b10f0968276c3","impliedFormat":1},{"version":"f6cae2c0acda884c4b9dec4063d062252cf0625a04ebf711a84d7de576427c3e","impliedFormat":1},{"version":"946739ab9acb2fccd0b2e5a0d1ac4dfe69b9279f33a26e7f0a7a7ab24ee343fc","impliedFormat":1},{"version":"d037b771e89ef6dd81c71de92cc644d68b1b5d1ce25dbce9c2cfe407dd0b5796","impliedFormat":1},{"version":"25091d25f74760301f1e094456e2e6af52ceb6ef1ece48910463528e499992d8","impliedFormat":1},{"version":"853d02f4f46ca9700fefd0d45062f5b82c9335ba2224ca4d7bd34d6ae4fc4a7f","impliedFormat":1},{"version":"ab679e25dcb5d085ca42c33ffc8e2fc48411f81ad3108a3aa81eca79c104ef95","impliedFormat":1},{"version":"b901209745b3cef4b803e42731c40f5c2c2c7101bbd5f481c0fd1c43f9f440f3","impliedFormat":1},{"version":"cf6dc8f18bc5ee063dc1a37bccd3031dc0769f11622399018c375aacfcbda7c9","impliedFormat":1},{"version":"8ca2d01f5f3d4d4067aadea230570afa4c91e24e485fbe2e9d53ead3b33f80d0","impliedFormat":1},{"version":"9230a7b03ae3cce93e94a2cc844da1e5414d2be7505ecc82402094a132cfbbda","impliedFormat":1},{"version":"27350a2872f30b97e947f52ccf15654239eda7c9ff35135a1aa82cc37642fdeb","impliedFormat":1},{"version":"ed3e176bc769725ebc1d93f1d6890fc3d977b9155ae5d03be96ec2d49b303370","impliedFormat":1},{"version":"7933769d84f5ae16546aef06537ca578f1c8d7cca0708452a00613050ac1f265","impliedFormat":1},{"version":"d405963c5f69955e95c30ef121c7a3309f214f21ef09dceb5d7ac69557cbe0fa","impliedFormat":1},{"version":"29c7276f64f0de86eb981ddd4e5a8e7f832fc8d4e712c7e8e1beab6af8cc4147","impliedFormat":1},{"version":"6f11170f0056f1681101d9a1045af3c0d2ea489f14d1a0d4c0b2cb7860cfb8f7","impliedFormat":1},{"version":"fdd84224998f5f4d97017b829548f1fac4ac803025e16c27d4fc7f3426c6261e","impliedFormat":1},{"version":"1591996e71f1aab2e8726d7d04d59a3e8f5162578bee747e883932cfc0b57b2a","impliedFormat":1},{"version":"f8ce447bbda4f75da74cecd866cc1ff9bdde62189ac9d8dc14a16c48b3d702fa","impliedFormat":1},{"version":"da3f7f511c344fb56275cd954156a4d736c9f414f9b84bb0ee229ef583e38074","impliedFormat":1},{"version":"c7d30b164562b7ce99fcb53ab78f937cc845e003f6089d648351331921379994","impliedFormat":1},{"version":"fe2d1251f167d801a27f0dfb4e2c14f4f08bf2214d9784a1b8c310fdfdcdaaea","impliedFormat":1},{"version":"2a1182578228dc1faad14627859042d59ea5ab7e3ac69cb2a3453329aaaa3b83","impliedFormat":1},{"version":"dfa99386b9a1c1803eb20df3f6d3adc9e44effc84fa7c2ab6537ed1cb5cc8cfb","impliedFormat":1},{"version":"79b0d5635af72fb87a2a4b62334b0ab996ff7a1a14cfdb895702e74051917718","impliedFormat":1},{"version":"5f00b052713bfe8e9405df03a1bbe406006b30ec6b0c2ce57d207e70b48cf4e9","impliedFormat":1},{"version":"7abcae770f21794b5ffbc3186483c3dbcf8b0c8e37d3ef3ed6277ece5c5dd4be","impliedFormat":1},{"version":"3e642f39da9ad0a4cd16ccbd7f363b6b5ad5fa16a5c6d44753f98fc1e3be9d96","impliedFormat":1},{"version":"7f5a6eac3d3d334e2f2eba41f659e9618c06361958762869055e22219f341554","impliedFormat":1},{"version":"6f996f44113b76a9960d3fad280f4f671115c5e971356d1dbb4d1b000af8b3b3","impliedFormat":1},{"version":"67f2cd6e208e68fdfa366967d1949575df6ccf90c104fc9747b3f1bdb69ad55a","impliedFormat":1},{"version":"f99ab9dffe6281c9b6df9ae9d8584d18eabf2107572bbd8fa5c83c8afe531af8","impliedFormat":1},{"version":"4fc9939c86a7d80ab6a361264e5666336d37e080a00d831d9358ad83575267da","impliedFormat":1},{"version":"f4ba385eedea4d7be1feeeac05aaa05d6741d931251a85ab48e0610271d001ce","impliedFormat":1},{"version":"f5405fb679a467cb979f8744940b22b7bc3a0bcbe648c3910d98de3188d42a78","impliedFormat":1},{"version":"68969a0efd9030866f60c027aedbd600f66ea09e1c9290853cc24c2dcc92000f","impliedFormat":1},{"version":"fc79932b9aa710f025b89bf8d8329d99080286e5e079a7d5a529236e9f5dd69e","impliedFormat":1},{"version":"6646d9075e3e0eedb02c9d03bffef54c8bbeb601d27eed46f143aba435bac37d","impliedFormat":1},{"version":"0dec72b4c5c4bb149750fef4fc26bdae8f410de941ee766c953f5ac77381d690","impliedFormat":1},{"version":"8f2644578a3273f43fd700803b89b842d2cd09c1fba2421db45737357e50f5b1","impliedFormat":1},{"version":"639f94fe145a72ce520d3d7b9b3b6c9049624d90cbf85cff46fb47fb28d1d8fe","impliedFormat":1},{"version":"8327a51d574987a2b0f61ea40df4adddf959f67bc48c303d4b33d47ba3be114a","impliedFormat":1},{"version":"00e1da5fce4ae9975f7b3ca994dcb188cf4c21aee48643e1d6d4b44e72df21ee","impliedFormat":1},{"version":"991fd5ebf9f30ffa17cae6faeae6a838d3d91bdcdd419bce358dc99b8e5b0ad0","impliedFormat":1},{"version":"4d250e905299144850c6f8e74dad1ee892d847643bacf637e89adcce013f0700","impliedFormat":1},{"version":"51b4ab145645785c8ced29238192f870dbb98f1968a7c7ef2580cd40663b2940","impliedFormat":1},{"version":"589713fefe7282fd008a2672c5fbacc4a94f31138bae6a03db2c7b5453dc8788","impliedFormat":1},{"version":"26f7f55345682291a8280c99bb672e386722961063c890c77120aaca462ac2f9","impliedFormat":1},{"version":"786691c952fe3feac79aca8f0e7e580d95c19afc8a4c6f8765e99fb756d8d9d7","impliedFormat":1},{"version":"747d6d391f97a46f6880e10c8e4858bbd6568070a0f9af0ec74c26475e2c885f","impliedFormat":1},{"version":"354f47aa8d895d523ebc47aea561b5fedb44590ac2f0eae94b56839a0f08056a","impliedFormat":1},{"version":"62b753ed351fba7e0f6b57103529ce90f2e11b949b8fc69c39464fe958535c25","impliedFormat":1},{"version":"514321f6616d04f0c879ac9f06374ed9cb8eac63e57147ac954e8c0e7440ce00","impliedFormat":1},{"version":"ce7b928daedd974205daf616493c6eb358069ed740ed9552c5f4e66da19fd4bf","impliedFormat":1},{"version":"b1aa0340d4248aba8e36e7d246b223e3ae89fb27f167f9e3c7b14838bb41b13f","impliedFormat":1},{"version":"620290e7cd91726a13ce06daf8437b37f4bf782c755674a41d881c2217a35830","impliedFormat":1},{"version":"e06d050ebf5ab7ae4506d7de03d369e5f2f7c96df0e4ba6aec7a6b2450c039d0","impliedFormat":1},{"version":"88c0699b282331433af615deb79fcd6f8e815e93bd40dd7200c1e3cdf052e5a0","impliedFormat":1},{"version":"cf8659543b380c9cf02c88e231eaad406f323f6b1d3eb877d4cad9ff0408974f","impliedFormat":1},{"version":"a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","impliedFormat":1},{"version":"84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","impliedFormat":1},{"version":"415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","impliedFormat":1},{"version":"901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","impliedFormat":1},{"version":"ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","impliedFormat":1},{"version":"b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","impliedFormat":1},{"version":"ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","impliedFormat":1},{"version":"068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","impliedFormat":1},{"version":"3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","impliedFormat":1},{"version":"fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","impliedFormat":1},{"version":"d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","impliedFormat":1},{"version":"3f6af667357384c1f582ef006906ba36668dd87abe832f4497fffb315c160be9","impliedFormat":1},{"version":"363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","impliedFormat":1},{"version":"c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","impliedFormat":1},{"version":"2f1a8ca9846d9ac5481544b5b53811efe2c44bba9195af584136fb34371d5e23","impliedFormat":1},{"version":"1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","impliedFormat":1},{"version":"ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","impliedFormat":1},{"version":"d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","impliedFormat":1},{"version":"4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","impliedFormat":1},{"version":"7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","impliedFormat":1},{"version":"ea2de1a0ec4c9b8828154a971bfe38c47df2f5e9ec511f1a66adce665b9f04b0","impliedFormat":1},{"version":"c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","impliedFormat":1},{"version":"4ef0a17c5bcae3d68227136b562a4d54a4db18cfa058354e52a9ac167d275bbb","impliedFormat":1},{"version":"a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","impliedFormat":1},{"version":"64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","impliedFormat":1},{"version":"c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","impliedFormat":1},{"version":"b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","impliedFormat":1},{"version":"434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","impliedFormat":1},{"version":"c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7","impliedFormat":1},{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","impliedFormat":1},{"version":"81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","impliedFormat":1},{"version":"4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","impliedFormat":1},{"version":"f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","impliedFormat":1},{"version":"1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","impliedFormat":1},{"version":"ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","impliedFormat":1},{"version":"ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","impliedFormat":1},{"version":"f7a8f4bc1e8e786c6115970b8f3ed4797be48108de00b3552bf590706d3a5e8a","impliedFormat":1},{"version":"ce096c727f1ae221bd35b46dd3e050bf3909674e6e9ec1518b3a5aa89ab2a497","impliedFormat":1},{"version":"1a8e6a4f31a5196144f35d0434e16369881d828c849d6a1c9290b6bde8807449","impliedFormat":1},{"version":"42a9ac86df0fa58634ea8a5f7f07b9b9c3243d82e306fb22d8a41639935a6c87","impliedFormat":1},{"version":"5766c26941ae00aa889335bcccc1ecb28271b774be92aede801354c9797074bb","impliedFormat":1},{"version":"3a19286bcc9303c9352c03d68bb4b63cecbf5c9b7848465847bb6c9ceafa1484","impliedFormat":1},{"version":"c573fef34c2e5cc5269fd9c95fe73a1eb9db17142f5d8f36ffe4a686378b8660","impliedFormat":1},{"version":"d97e30dd93590392fed422f2b27325d10ab007d034faaaf61e28e9ddc9d3825b","impliedFormat":1},{"version":"d1f8a829c5e90734bb47a1d1941b8819aeee6e81a2a772c3c0f70b30e3693fa9","impliedFormat":1},{"version":"be1dfacee25a14d79724ba21f1fde67f966b46e2128c68fed2e48c6e1e9822c5","impliedFormat":1},{"version":"19b3d0c212d241c237f79009b4cd0051e54971747fd89dc70a74f874d1192534","impliedFormat":1},{"version":"441751fb3deefe98952ba09b3c5a583c66aa2c9a1abe5e9dba6064a55f5a7678","impliedFormat":1},{"version":"c211816fd9af3b1541c812b859c769958d5e5b85b81da832eb2bcdf98342b054","impliedFormat":1},{"version":"7639642137f8329ef4a19410ce8d3e46910a76294df263f46b428fd61c79d033","impliedFormat":1},{"version":"8e69efd9afdfcd34d85adb6d8e71a5e13fea2a33c7019dd624cc7696772183a0","impliedFormat":1},{"version":"a7ebfe3e2c8f4fea5dac7ffbf6d00acee63c530de24d57cdeeed05530285ca26","impliedFormat":1},{"version":"82b4045609dc0918319f835de4f6cb6a931fd729602292921c443a732a6bb811","impliedFormat":1},{"version":"0fd70ca1eaef1e2dd6f48f16886df4838664821d992fd8076d07fc15e83c8498","impliedFormat":1},{"version":"ba30e6d2f1d20c707566cf485167331a10c539802a79040ced055b62a7aae53e","impliedFormat":1},{"version":"642eae3e9ec5997883f86dd7346d818f07d40fb83cc3530f0e52e232ffb4e631","impliedFormat":1},{"version":"29a6df727893a86807f4dc02116c31d9e6097139579ed6e8029b14c526cba027","impliedFormat":1},{"version":"537a2b61594512c5e75fad7e29d25c23922e27e5a1506eb4fce74fe858472a6e","impliedFormat":1},{"version":"311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","impliedFormat":1},{"version":"7c07838da165fd43759a54d2d490461315e977f9f37c046e0e357623c657fc42","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"115c8691bd8fac390f6f6eef5b356543d716da7cffa4c2f70f288d56c5b06aeb","impliedFormat":1},{"version":"e91516e66f9fbf39c978a4092c16ffda3bb0b32158fca6def75aae9fab358153","impliedFormat":1},{"version":"abd4563a6a7668fa6f8f5e5a425a0900b80fc2309fec5186e2cae67f3ce92663","impliedFormat":1},{"version":"cb48f3011e72efef9d5a5b312f4a956f699b8d423bf9f2772724cdded496bd50","impliedFormat":1},{"version":"9aed07904079877252e6c0aedf1d2cf1935ed91d4abc16f726c76b61ea453919","impliedFormat":1},{"version":"6621af294bd4af8f3f9dd9bd99bd83ed8d2facd16faa6690a5b02d305abd98ab","impliedFormat":1},{"version":"5eada4495ab95470990b51f467c78d47aecfccc42365df4b1e7e88a2952af1a3","impliedFormat":1},{"version":"5fc0957ee8e15821ddb30a76e74e7984953fc35611a57fd703e624bade5836b9","impliedFormat":1},{"version":"40e9c2028b34c6c1e3281818d062f7008705254ee992d9857d051c603391e0f4","impliedFormat":1},{"version":"4720efe0341867600b139bca9a8fa7858b56b3a13a4a665bd98c77052ca64ea4","impliedFormat":1},{"version":"566fc645642572ec1ae3981e3c0a7dc976636976bd7a1d09740c23e8521496e5","impliedFormat":1},{"version":"66182e2432a30468eb5e2225063c391262b6a6732928bbc8ee794642b041dd87","impliedFormat":1},{"version":"11792ab82e35e82f93690040fd634689cad71e98ab56e0e31c3758662fc85736","impliedFormat":1},{"version":"3957b1244f49991b89f12cc45942c24f9c5927dc72677b105bb896d316f0454e","impliedFormat":1},{"version":"6c53c05df974ece61aca769df915345dc6d5b7649a01dc715b7da1809ce00a77","impliedFormat":1},{"version":"18c505381728b8cc6ea6986728403c1969f0d81216ed04163a867780af89f839","impliedFormat":1},{"version":"d121a48de03095d7dd5cd09d39e1a1c4892b520dad4c1d9c339c5d5008cfb536","impliedFormat":1},{"version":"f6d55e607f55be35a3c481b7685461a9acc1e27b893839218eb9313f7e85278c","impliedFormat":1},{"version":"b394ea95c82281d184ea83e8511bd1a43f78d6908eb34b536446d3eb08f9d47f","impliedFormat":1},{"version":"41edf4071b119fdf28b46a3c28c0845f2598bb8b196e7e4c9e01415403fdaea5","impliedFormat":1},{"version":"2bdf3bcf1a9771a288a783d1e8ee5d1d3126c11ddde26ae44864ab432192a6f6","impliedFormat":1},{"version":"603bafdacee4c8850ef5820f8642a817a3f0db6f76dda0474bcf3d17c2e15398","impliedFormat":1},{"version":"a10c79ab97c8a4f6074203094dba87bc736ca574ec480be1df6ec2c82d774573","impliedFormat":1},{"version":"801f049a9e74e941e8ca8add60492aaf4ab717a166248d355ded5753d80f9a85","impliedFormat":1},{"version":"70bba0a9c9c2ad7a042e134a840c4d8462bf0ad98e41c50ca52725ae47265eb9","impliedFormat":1},{"version":"f4dc28fbbba727722cb1fd82f51a7b9540fbe410ed04ddf35cab191d6aa2ba10","impliedFormat":1},{"version":"1db9e7d40d7ffade5bd15ce84936997bb9d159d37668c9d8955993753bbdfb2c","impliedFormat":1},{"version":"047f85c429fbee7423e723a6232e527d69b65c3399880ed8ff0842e29c497c20","impliedFormat":1},{"version":"9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","impliedFormat":1},{"version":"526ee815290e47e75fd2105f83de0916689cc532a19c81620672342f6478095f","impliedFormat":1},{"version":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"8bfba49493f92a72cdffe5b9947c3f572c9301f4e95a471027d0022e8d9b5d97","impliedFormat":1},{"version":"fa90f0cf69cd9296a6c0c43419540ba8e734ab9bf98eff6576bb5f04ddfea175","impliedFormat":1},{"version":"b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","impliedFormat":1},{"version":"68adf02128cad117e068f53ab334cbc730bcfeb7d658d8ce8118da6770b7e622","impliedFormat":1},{"version":"54f0dd6c08d5c8c6aea538ccba54b95909d194f4e2204312b3974eebe6204a8b","impliedFormat":1},{"version":"2d10d8e7f884bbbbc1dc980464cd36346f2b2aa21bb2c049d21b381053bafbbf","impliedFormat":1},{"version":"7f1567b9dfb571a80556155a5bff1c946b23e74443466689bed24095604b3a9b","impliedFormat":1},{"version":"b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","impliedFormat":1},{"version":"51796c3726bf734b061fac41b479a660f9afccf50b8b493835e204723d23a84d","impliedFormat":1},{"version":"c2b694d903303007a430acf66980f3b503dbd4e50cf6c183af0daf39c8d79ee8","impliedFormat":1},{"version":"a945cfe6ca774e53111b0cfb6b767261352dc6e15d27641b61e5c634b4a729c3","impliedFormat":1},{"version":"3c10545e61e9428bebdc65fed8d11e09d203afb4745eea11b98be7b218a2aeb1","impliedFormat":1},{"version":"fde1236eef449f111d0eb306a5245dab335974dd0ccac39223ea200907c27a8b","impliedFormat":1},{"version":"c1a5f70e04c94e202ef756018ddacc22e752ee3e5eb401170a2dca2773877277","impliedFormat":1},{"version":"f4bedf06294a6a4d28179ee9689f2d8e00ad4d9806a99b234c2a58f1c9147acb","impliedFormat":1},{"version":"91d68d8136434dbe13c34fe6ef3fde75791f9be128ab6b4312d1699e1fcd9859","impliedFormat":1},{"version":"260c24d1b8fdb9284ffd93112fb4141e94970be4ff2ca23ca60b361dab39eee2","impliedFormat":1},{"version":"cb5327ac944956c162522b4388a74a4b3151e2ba3fd5b057ad13a452b2c30189","impliedFormat":1},{"version":"7bac1d3d9a1f0290c91e88426dab334d9d31a712647df5fb5666ad7acb3d53bd","impliedFormat":1},{"version":"41d461c745d59a6e125dbb554b814bc99a9f072325ffd3c8407809378995fdd4","impliedFormat":1},{"version":"33589aa637b92a02e6138fcaab28454fcf35a5e7d4cf91343c83342715f9b55a","impliedFormat":1},{"version":"ac13ba680450baa70ac9e9a2f02b50ae43437fd23d76bf9215a6a5b429455010","impliedFormat":1},{"version":"8b325ba54f25c33b38550f76a31afb82db9d7f4b1891276eeae5aba2f2d3bc30","impliedFormat":1},{"version":"eca427f98f87824d62688c987be1b6fb5dbd2c21a71fbb42702c7e365d0309bf","impliedFormat":1},{"version":"93c931504d284fb193a7cce460e4c2d30d4ed247e246e1f214a8064e95198ce8","impliedFormat":1},{"version":"ce972ae1cfa1741dfc7d5b8caeaabfb696023f45a80c0d71fe55494604cc78c8","impliedFormat":1},{"version":"6360869b4f8e9b942293072189349e2c1a44cc3cd6757e83cc62619e6abb01ad","impliedFormat":1},{"version":"f3ac122e178b71c8d2e74f85d0d0ead1ab592efd4ca989db632bb2f5ecbea484","impliedFormat":1},{"version":"2db9f3f74d99d1d437ca92760f510c76e9024d372506266d8443745eb77eff4a","impliedFormat":1},{"version":"e6bd80f63b2290bcea0bcd06002a19739050f188a8accebec706685cda627755","impliedFormat":1},{"version":"6717f2b01e15e479a01d76258afb0d5f8130fd5d6759a04cd60fde5587549efa","impliedFormat":1},{"version":"0e841b93051d30dc91ae7ecbddb1d89152875ac2e92a18f57d26a135466ba5a7","impliedFormat":1},{"version":"42afd9d91bce6d077990a4f3628bcb7f8fe1bc0397ae481bdf54d6fc7c5cd3a4","impliedFormat":1},{"version":"12f6e76f5766ffb9aaf71adbf0a46b8dca86c59982cbe16a2addb87b68c8b937","impliedFormat":1},{"version":"ec8bff9f60af63c0d12517026faff805a05ae930848edf9f35ef27cf8b0f8478","impliedFormat":1},{"version":"2b26174b7cae62f9d9843b5cab80a844fcf530b528348717180a2e60fcd8c53e","impliedFormat":1},{"version":"16189422d0a96941777ea137f472b05a8dce2c530b4e61970c9412e0a139f9b8","impliedFormat":1},{"version":"373f28376805407a378a80ff2b08c56fa0bf7ac76e5abdedb5a00a4aca2ba9f6","impliedFormat":1},{"version":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"8edadbdab1f9f41f86b9bf0151213fbc7778a337703888ebacf017e73738fa00","impliedFormat":1},{"version":"675d65b49d00d283578a569e662548c2a55a95d7c1a211f9e9a32c6e1398dce8","impliedFormat":1},{"version":"4d11636fad62a75861b44b117d7237d38d957ddd51e09f4021f8b86acc2349b7","impliedFormat":1},{"version":"dbc85ae54cb8da38556b3dc33522159c8a5558c79568edbe4977226764e51219","impliedFormat":1},{"version":"7bf23edcdb0ec0715b7f7b85695a1078a132067c495efa8f6cdcda9359659f9c","impliedFormat":1},{"version":"4ad28da36ad48edec414054e1daef40c1016357b188eca0f72977f30222d9c02","impliedFormat":1},{"version":"6c4032871e6cfcbf2356a398c14a23a54af756bf7a5aff43cddb96b09469248e","impliedFormat":1},{"version":"81f20249f433350a8e13cbb9206779e667f0d5e5ac4b8f014cdf6b6e42a136fc","impliedFormat":1},{"version":"c7185143683e9ba278420520af2e2a80dd911e88e5c08c56405b2a65996e2a1f","impliedFormat":1},{"version":"ca642739f49fb9d709f726a6447cefcaf21d8ccb16595724c8929b515a08ef53","impliedFormat":1},{"version":"42adbc164a978ef94024a312dd27e2415fcf034ca6e1ada520b40582704b3e47","impliedFormat":1},{"version":"4c3e6490ded76314f8115ca4657084c5bd53560db3b366e871c2e44b44437e4a","impliedFormat":1},{"version":"5c44dc0b569cde877bdd06ce1124acd6ae621d0a5dfc65a6668e13b85ca54d55","impliedFormat":1},{"version":"4bc6dbef10e6d46dad778f5fc190eef94e5568d612140b8791b00b01882ec1d6","impliedFormat":1},{"version":"3bb26409311deb6bb7a276fe8af90048fd1146f73881ee9826821df71d11980b","impliedFormat":1},{"version":"e463cc21447f0a1aeeeb793f51f4c165be1cec7583c15f68b8a1703c343a6cca","impliedFormat":1},{"version":"3ba99b530549ef5f440cab610ca72cd7bdc1aab48ba22d24bd00a931aedff21a","impliedFormat":1},{"version":"961b6be59c5412c31652e65cc3e0b0a0ea8a4266849d10c90ad1eca0a95cb581","impliedFormat":1},{"version":"edbc215ce53ffa2a13e0c216d589fa47b37379bf10ea386ef7ddcda4dc91a328","impliedFormat":1},{"version":"e135af5c48d2dfc0c658e06827798aae78a97933bbdbaf8e023ee003d47651b1","impliedFormat":1},{"version":"529e5b8f3b7ad6bbb679268c7c9f29dcc0670e511574197e9755fbd2d70e1c97","impliedFormat":1},{"version":"4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","impliedFormat":1},{"version":"e35526a0977b9cd80f799aef3314cb2bfe66aeb40879c888f7a993bd3437fc42","impliedFormat":1},{"version":"81d92e5c4d618ba0660121ed30c603e8111ad605e7562948f7430d87038daee0","impliedFormat":1},{"version":"36990d934030ce1060f203c4b45ee7a811aa11aaa4d075bb81c2748da8329607","impliedFormat":1},{"version":"0ae845a8508fbfe0344eb505ddb4a4e5a8759f5ea4608bfc5f3f1b9ea51d76b4","signature":"611c3555ebe13d9820f48a53bccaacf5a2e1e0df64d719cd9e2fba33f2791f8c","impliedFormat":1},{"version":"bd0b6d0720c8b9fb5983761df5b57d6dd6646baf9cc438985f1b53d395aad3d0","signature":"eaba02405aff070bc130d8ad89fed3fe6a7c58493f2792406d671283c42d070b","impliedFormat":1},{"version":"67543772f3c75dc5a2d827c954cf0fde958401e96a6e921fbf6079ed7f4f4daa","signature":"a154d3346d8bc2536064abd3c3dcd962ab394ca73cebfceb0a3723976416f049","impliedFormat":1},{"version":"04c72d6fa3275b08865357900ba7580a5c9e31692a12641a25665fed8411c8b8","impliedFormat":1},{"version":"fad2e326af305b648dd46cac96bf31c88f508823cfea877fae79a9b01dd4d524","impliedFormat":1},{"version":"45e0dd06a42ab62f879b1567438bce5b85eee9c6875685ca2c6ca10f978038b2","impliedFormat":1},{"version":"ad5976f5c289f6720287944a265db0761709be06d5331fc37a1b2999fa13bacc","impliedFormat":1},{"version":"15ffad7691bca48369580748c576e889f19700b8b3a1bfc6586beab673a87956","signature":"9d33b8675e7074e5fcdbde477a40a2ab0278bcef7fb64cc28aa75846d3402bdc","impliedFormat":1},{"version":"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","impliedFormat":1},{"version":"0771ddb474014581a882838fd20e25e829038bb53c127c5b339812f749f6aa3e","signature":"1f9165291e6b94fc61224a00ccf17997125f8148aa244fc533c58557e07641e4","impliedFormat":1},{"version":"d59857b5ae5e3a693c3a2966fe3799ca0ee3c9ff9f3b3e2706cc31bd9f3d4ec4","signature":"5f46441b319013cfcc9e00c60f9f96162b8b7391d4ccae9c511f752812ee3e3a","impliedFormat":1},{"version":"952a60f7c6c46b683f6e0804d1e8e46244e90a68cdaef3d426708e0c82edcd94","signature":"8b3603d15e3899df5abe14590f4549414118396c49c75e4cf6f0e944079ded78"},{"version":"d62c0b0d23609a485dff9b8ed8e9af9c56b8789dc70a07d4bdbb26f16420b249","impliedFormat":1},{"version":"a2609926cd0259b582f55812d4ea93ff0440e38dd015bdb95394b26ad3d34cd1","impliedFormat":1},{"version":"2bdaf407163ca9ca9bc3c1d3fb78ad26b6bd2f7d68b04810fc28072925a95e9b","impliedFormat":1},{"version":"95347f256453f88602fcfc792b0ccea75f330aa22150bd95a6a8bb034a20ba14","impliedFormat":1},{"version":"dd2505eec07d3d341be4322f9f0380b5196f2b163944016227bb599dd89136e7","impliedFormat":1},{"version":"f9dfcd54e603db0684207424124c340a7eb0e61807ece0cdb51a8801c47c9155","impliedFormat":1},{"version":"ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","impliedFormat":1},{"version":"970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","impliedFormat":1},{"version":"e81c6b5f3f287690f7400c7468dc2bf21e621902dc1b6f98236e38235c0dfc68","signature":"9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","impliedFormat":1},{"version":"e50222c22db171b6e6f102dad414ba90b1ad3802537779e838bed86ff506cb28","impliedFormat":1},{"version":"4c36f9d0ffb25cf61b696b2777ba06d553d1b0cfd12d9eed8a1e3b1a50beb2f7","impliedFormat":1},{"version":"dd478451ffa00f4352bffe4f55b4531c8dec0edafb5777272089e5127dca808c","impliedFormat":1},{"version":"aedddd59fc4889fcdeb54a3b2a4943736f282c00db826ff710acb6bc91873b0d","impliedFormat":1},{"version":"5d9a5cc1712870f91f66850e7056e0d03b4046de5558a00e7190b6a9c2f7d432","impliedFormat":1},{"version":"0daf877cd2dcb81c0e39a96ee20262dc07ecc6f68d65cdb9cc6e6cf2f31d29c5","impliedFormat":1},{"version":"6206a6984c6210c7e02e8cec6c2417f6d2458ec36ac97b80ce9f894933a08082","impliedFormat":1},{"version":"d686fcb07a661fef0866137e450a487e710c233cb24f04d11426228162595d7e","impliedFormat":1},{"version":"e21af678a334e57edb0948acafa5f8d029a86c515f74b35701de2b7f0734ed78","signature":"97f2cb77a51ab49d71bdaa169999f503dc91a1261817c15463528d6d7a2dd2f9","impliedFormat":1},{"version":"8e3f8a63b6af3fd917721cfe670eedf5aae7df605d0072c5997021eb6fbdae31","impliedFormat":1},{"version":"046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","impliedFormat":1},{"version":"26b82a7ff864d0e68bc4578771898b91feabcb39dd6371970fd012827bd684f1","signature":"60e6faa0a819d40da14f63177e8f2f7a2c75c4f5925b7ede9d8bc13487d6384a","impliedFormat":1},{"version":"e2264b7f593788fca68253d204722139971cefcc19f01a9540b40e3c6a824152","signature":"68169677a1fbd913f4421ffc3fcafbec03a6bf3ea250249a18fb415f8f4a1746","impliedFormat":1},{"version":"a6260e50e119a4ae143e080cb69501b76f70b55df4f40b3874ee785277003570","impliedFormat":1},{"version":"311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","impliedFormat":1},{"version":"c032a9b7dfc5f9b86ac5b1535fe72154dc48a7f89f76c5cb4e8a6ab4db203671","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"23fa431c1549a548df67056c34a9ea3653b50266d77653a406ff5a67a7f861aa","impliedFormat":1},{"version":"1b1fc8e3cac6cd35e6ecae8aa8bda1f7c402e7786ca262ea6294c907c5b00149","signature":"a3aef4923a8dde677e086f9a6c3f5272a7881517658ff401ec47931829da2075","impliedFormat":1},{"version":"403ba71e387291ed9129e24bc76c9fdef4d563d0208baff9ac4f673d6ec2170a","signature":"1d57041f2cc69ae090870690d2171110a9b672d2b2a2839ace0f59bbaa67cc56","impliedFormat":1},{"version":"60a0074289b6584a0d7003c2aa14d9ebd0027e423deb79e08031b7e708770c98","impliedFormat":1},{"version":"d62b7fb6c39357289ba064887935b0966cd99da5a3bb63afc1d6ea4f82ab23f1","impliedFormat":1},{"version":"7a8e7fc0c0b3c6f0344a6b54a56e928aba5b2bde679ca742acf67aeb67e6f9d2","impliedFormat":1},{"version":"189150e785626242df43edde2e537ae48b8d8ba0c93e78c2478c9ce738a14cfe","impliedFormat":1},{"version":"b377fa259d15c6e3c0fc2804530f1c7448906df2b6afdf6ddeff61a75016cb28","impliedFormat":1},{"version":"a26bb2e2693f921f4aa3f6e8c04a18d07c6ab6c3162c426299e0d0a904d76d82","impliedFormat":1},{"version":"42e7c31cdce8294ad4852d465b2dd91307efecfd7a9889f2a0aa49ffca73e83b","impliedFormat":1},{"version":"7922bdca92b1a6f586e9403b2b7972200aae00f926a300e79bf2d62eb410714f","impliedFormat":1},{"version":"d3abaca0cd59f25b4e056681217d1f8674612071706e6825517ec9e264063e55","impliedFormat":1},{"version":"76a7145b39ac6cc3633e2ccb545e9db3e5a02c7e0bceddbb5abbd3b2e1fba32e","impliedFormat":1},{"version":"a3cf3aa8ec934a46e5d10922af944c14e1b73acb81c4ba90348bee40a829b26c","impliedFormat":1},{"version":"8f95f6784090939eb0cb0c648a03bce2208e595730afc14be4969d90b334b541","impliedFormat":1},{"version":"535b6a88c08e138b1b72003f482bceaca78311cd19836bdde0a80a131f457f43","impliedFormat":1},{"version":"cf72ba3ad6ed1f342e8ddbdbfdf425238cbc7a75cc7a318fa994cb3866a68804","impliedFormat":1},{"version":"f213a7dafb0a946c1134a64151cbb7f2301d23f93920356d730cf0ed767e9985","impliedFormat":1},{"version":"c305868de2a4ea029bd4b9593ebb33b602b54cdbb3a09231486f611a414d0f5f","impliedFormat":1},{"version":"cf42fcfc0f9e976054d921a0f5bf898f9127751cf5dd9f1b4820069fd78f2280","impliedFormat":1},{"version":"e35526a0977b9cd80f799aef3314cb2bfe66aeb40879c888f7a993bd3437fc42","impliedFormat":1},{"version":"81d92e5c4d618ba0660121ed30c603e8111ad605e7562948f7430d87038daee0","impliedFormat":1},{"version":"757f7967151a9b1f043aba090f09c1bdb0abe54f229efd3b7a656eb6da616bf4","impliedFormat":1},{"version":"2da74b28ea53cb34b516fd6dbda3ca93495648cf431e59d24ba3ab5d7ec59ba4","impliedFormat":1},{"version":"928ebc4436abadcd3680338883b7e26189beb7532ae4b3d1c1727598607e53fa","impliedFormat":1},{"version":"2d232975df81628cb4d8a5236b8776976940cc4dd202698e498de5a4baeb7389","impliedFormat":1},{"version":"9bddd9fa92fbbb5bd3b7617b88c4aa038391aa29eca99baef820bf0ff422ee43","signature":"cc67a58590a00cf7dff0a5849c8e7e0439ec202f2462621f60b13fbed0546fc5","impliedFormat":1},{"version":"4c1b770da0116b19eb873aa7cd0bd242ce4b18e20ecde61e5c0bda5421f40707","signature":"3849e66e1f8ac2913e0619ef856a845e4c44f6b9e97c606e991247a9353bb0dd","impliedFormat":1},{"version":"64b05591ba7a6a2025c3ce04bd72b972a6200d4481feaae2e66056e0a1500b3a","signature":"526ee815290e47e75fd2105f83de0916689cc532a19c81620672342f6478095f","impliedFormat":1},{"version":"96def9cb00debb7554a8019ae45310f375a65820bd8efa8e497a96e3416a5677","signature":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"04c8589ba249eb9bc61b2232ab6c29216409852b4aecfb478cbf2a754871253a","signature":"8bfba49493f92a72cdffe5b9947c3f572c9301f4e95a471027d0022e8d9b5d97","impliedFormat":1},{"version":"956f962aca6becfca36766fe3af718b586829e1e4dd72f6b896057f75d4e9e83","impliedFormat":1},{"version":"9f7b583873c73cf01be845311d8b3e1715aecfa476a047d885804d837327d5db","impliedFormat":1},{"version":"f4de63eb261a0b27b5f66f08a4e5c292b67b0c1c0d25199bdd632f4c449b4806","impliedFormat":1},{"version":"f4a795af80885eba93957db860b4b82b4d23a76c5e122c2af5eeb9319094d9d1","impliedFormat":1},{"version":"3267bdd186e8d021bfa57a5314a256b9781e895bc025e426a2bdbe93b946cca0","impliedFormat":1},{"version":"31ed847fef6dc27c5224045deab8f99887ec76146cbc4f2ccb33f5b117fc9bf1","impliedFormat":1},{"version":"0df38983d84eccab44e2e6385bed5e1033b23228e484b80ff124d4049ca8e75a","impliedFormat":1},{"version":"7395857a8b73a1a5a14af625ec52c90f5b24bb0b163057d0f3e8a197ccc816ee","impliedFormat":1},{"version":"8b2e63aba58523a92dd15761096a03b5ebbd8983e2889b1f14265d9b2bb444b6","impliedFormat":1},{"version":"5f932457c501d03a68bee9ae0ab26ef9df2fa1f789a981483ec1f56c120ea5c7","impliedFormat":1},{"version":"4118ae023b5dd1af42aa6ccec246e5c0a7fc32e7459bda588da183d371d46281","impliedFormat":1},{"version":"c935d7a81d4a4409ba02812bd2b9e0176b74d361109d977b13bf6898488df6d9","impliedFormat":1},{"version":"ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","impliedFormat":1},{"version":"970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","impliedFormat":1},{"version":"6477c1bd38bbe6e8d74abebd01a073a7e45a89086a5a250e11725989a54a9a94","impliedFormat":1},{"version":"046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","impliedFormat":1},{"version":"52580471774bba3d4ccd41c1178e2c2884f1caa7257d4e86f760ce840d5083f6","signature":"12c618d15f731e0251af2dcd7b52bb12b0535769e27c9c099bcea9b5a451f3f4","impliedFormat":1},{"version":"2837ced1e5d4ef88b4e1688fa62bc93b4248d1825667c87a83adaa51bc810cbf","impliedFormat":1},{"version":"f61af6ed7df59c72b7e2fc7e25a4500f5e9beafad5be038d349c5348a0727ba5","impliedFormat":1},{"version":"ab1d998d1a0125aeb4f70beb593220427562543d33c704f7df9e5d8b0de76700","signature":"f4dfb302d3c378152e1a8c8d9879d7d69625333efccd3092eafc40837b67f9e4","impliedFormat":1},{"version":"bf7ccda18d9cb9ed3047d96a6542fee3c3bc4e7a7822af40332c5c2f6e07c2b7","impliedFormat":1},{"version":"7bc71d52df9d8e5cc55218d347a91b1758b38341f9cbbac0b80057aa9d93daa6","impliedFormat":1},{"version":"7a1f7b274cf8a66b83fcf42153bde6f25f4eb4d7696d4a6b17e4a8878d128306","impliedFormat":1},{"version":"553dd4fef7d2b88e899646b66b2035e119f61b092d668ae0595a32c234f9b8b5","impliedFormat":1},{"version":"6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","impliedFormat":1},{"version":"afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","impliedFormat":1},{"version":"d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","impliedFormat":1},{"version":"6215681982d007f5e9137ab0ca969c39048401e588bb0ad92018297c82551ea8","impliedFormat":1},{"version":"82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","impliedFormat":1},{"version":"cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","impliedFormat":1},{"version":"3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","impliedFormat":1},{"version":"f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","impliedFormat":1},{"version":"ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","impliedFormat":1},{"version":"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","impliedFormat":1},{"version":"dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","impliedFormat":1},{"version":"67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","impliedFormat":1},{"version":"1b831600aabe1c065830d303d087189e1ccfc93a0ef1882eb58a336ec1ce9f2f","impliedFormat":1},{"version":"75f191b59fe7ce72d1d7d11d0f329a193843f54af93182fc5a65c37d0a82c85a","impliedFormat":1},{"version":"cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","impliedFormat":1},{"version":"f6451dc56be14d37a8b88ea62a143ea398ab44558cd530fb2cdeeea42695c849","impliedFormat":1},{"version":"8ab77e5c32f1b6c6c1ee1b1b771c1a76a16be650559dc61320c8c82c99fc7cde","impliedFormat":1},{"version":"16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","impliedFormat":1},{"version":"ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","impliedFormat":1},{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true,"impliedFormat":1},{"version":"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","impliedFormat":1},{"version":"c269a12e83c5ffc0332b1f245008e4e621e483dd2f8b9b77fc6a664fcde4969d","impliedFormat":1},{"version":"aa8a056ee45ae741849d6e809ba85967b638070060e29c57d12d22b14baefeb6","impliedFormat":1},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true,"impliedFormat":1},{"version":"a97081289e7233ca2ef04a729036449fec4e88818fd7b7397930bd4d52294b18","impliedFormat":1},{"version":"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","impliedFormat":1},{"version":"0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","impliedFormat":1},{"version":"15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","impliedFormat":1},{"version":"963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","impliedFormat":1},{"version":"9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","impliedFormat":1},{"version":"c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","impliedFormat":1},{"version":"ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","impliedFormat":1},{"version":"ae8cd6af37275eac75f5369cdb5f01063bcf1f48d74cb434303ee50ec446acfe","impliedFormat":1},{"version":"2518830a2fda9c272ba48798d0e7b857037443b06594db8e42c87e86944ee9e4","impliedFormat":1},{"version":"95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","impliedFormat":1},{"version":"1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","impliedFormat":1},{"version":"bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","impliedFormat":1},{"version":"5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","impliedFormat":1},{"version":"99ab49d4732fdc98cf5c495925e65e796544cb4086fe42afc235dfc02bcf2351","impliedFormat":1},{"version":"af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","impliedFormat":1},{"version":"d393adc32e520d4274bb4c3dfdcdb342b806a230b66ef0f82b35bffbc4aa2590","impliedFormat":1},{"version":"c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","impliedFormat":1},{"version":"38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","impliedFormat":1},{"version":"3b6040253231d44e6778eb6861cc86c1758562e77783d21b7ecbc73322ded539","impliedFormat":1},{"version":"03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","impliedFormat":1},{"version":"318c82cc1e13da55e8c60d7e1bdc422a0679d675ad048b6d5022a47f57d23e3f","impliedFormat":1},{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac3cce682a1eab96841ce9942ace8dd5649d2951007096555f4950479e4b8d56","impliedFormat":1},{"version":"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","impliedFormat":1},{"version":"fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","impliedFormat":1},{"version":"d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","impliedFormat":1},{"version":"ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","impliedFormat":1},{"version":"9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","impliedFormat":1},{"version":"3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","impliedFormat":1},{"version":"3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","impliedFormat":1},{"version":"951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","impliedFormat":1},{"version":"a45efe8e9134ef64a5e3825944bc16fffaf130b82943844523d7a7f7c1fd91b2","impliedFormat":1},{"version":"969aa6509a994f4f3b09b99d5d29484d8d52a2522e133ef9b4e54af9a3e9feaf","impliedFormat":1},{"version":"f378e8538e407f997a0f88fcd1ecd93a096707cc909339ce4dba2e4ea03f1726","impliedFormat":1},{"version":"dcafd874e49d42fc215dcb4ef1e06511363c1f31979951081f3cd1908a05a636","impliedFormat":1},{"version":"fb73c98050a02b5849cc0fbb0d133ed55764b9c2a91f0ada2a25e74df68e6242","impliedFormat":1},{"version":"6002c44a8e8edbe4c79ce856c7bac3f8e69a2a45dc5bd6b229ca4ab323b924b3","impliedFormat":1},{"version":"b4d505a77e0829de5e5e23eaefb3d7989e0dbdfdb02ea69159df9f40017fb958","impliedFormat":1},{"version":"b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","impliedFormat":1},{"version":"f2242adef346a64818a1af914146f6f6046f16505e8a228c3bdb70185d4fdf4c","impliedFormat":1},{"version":"2f7508d8eeadcfde20b41ec13726c9ad26f04bbf830434e289c6010d5be28455","impliedFormat":1},{"version":"8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","impliedFormat":1},{"version":"9798f0d3693043da9dda9146b5e8622cd4476270e7aed8f3cb346b9b40a52103","impliedFormat":1},{"version":"fc7e8927b6fa6c81d68783afb314d01592c559e86bd36df334c37f40d0136acd","impliedFormat":1},{"version":"73f72caffdd55f189b5bf4e6b5ca273b4e26269d9aac859b9d30a5f799c095ad","impliedFormat":1},{"version":"d998e3e185cdf59dfc84043c41a42c02daaf3b7b21bee2db2d1f620a8e134f4c","impliedFormat":1},{"version":"06aa8858883e08f5136eb182d2f285ea615aeb464007f83c7a31ee1f8d9932b1","impliedFormat":1},{"version":"62d429aba0bbe459a04965d10c7637b74b319149f17874920a5ffb9fe3ba14d8","impliedFormat":1},{"version":"084a25e9ee73362fbb467873341b95721689513c14af6aa3067a1d95d6fafe08","impliedFormat":1},{"version":"4dbfeb147290c498e3aa56ea3198a6a109c5c0d9d7a4936a3138376302d89e7d","impliedFormat":1},{"version":"169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","impliedFormat":1},{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true,"impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","impliedFormat":1},{"version":"5009c081fd8ca3fcd6f3adcd071a1c79a933a400532b897822aad0943688a1f1","impliedFormat":1},{"version":"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","impliedFormat":1},{"version":"93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","impliedFormat":1},{"version":"c271193e426325d9acab2f99997bb9f5f2dff850ec8c7c011c5abafe5af83b5f","impliedFormat":1},{"version":"58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","impliedFormat":1},{"version":"a3e12bcf2d196656ccd5b5d5344182967a2bdde0f63c9b955c36169ed02c3555","impliedFormat":1},{"version":"a016d2f6c0a2c15069ec69661ad37c86a450deb629ce96a592f15f01d3a5746e","impliedFormat":1},{"version":"2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","impliedFormat":1},{"version":"2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","impliedFormat":1},{"version":"42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","impliedFormat":1},{"version":"d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","impliedFormat":1},{"version":"b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","impliedFormat":1},{"version":"7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","impliedFormat":1},{"version":"906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","impliedFormat":1},{"version":"5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","impliedFormat":1},{"version":"c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","impliedFormat":1},{"version":"e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","impliedFormat":1},{"version":"e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","impliedFormat":1},{"version":"9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","impliedFormat":1},{"version":"0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","impliedFormat":1},{"version":"71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","impliedFormat":1},{"version":"c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","impliedFormat":1},{"version":"2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","impliedFormat":1},{"version":"479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","impliedFormat":1},{"version":"ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","impliedFormat":1},{"version":"f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","impliedFormat":1},{"version":"86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","impliedFormat":1},{"version":"2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","impliedFormat":1},{"version":"a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","impliedFormat":1},{"version":"b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","impliedFormat":1},{"version":"61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","impliedFormat":1},{"version":"6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","impliedFormat":1},{"version":"c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","impliedFormat":1},{"version":"38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","impliedFormat":1},{"version":"d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","impliedFormat":1},{"version":"3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","impliedFormat":1},{"version":"b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","impliedFormat":1},{"version":"f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","impliedFormat":1},{"version":"843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","impliedFormat":1},{"version":"f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","impliedFormat":1},{"version":"6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","impliedFormat":1},{"version":"e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","impliedFormat":1},{"version":"a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","impliedFormat":1},{"version":"a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","impliedFormat":1},{"version":"da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","impliedFormat":1},{"version":"acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","impliedFormat":1},{"version":"6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","impliedFormat":1},{"version":"4fddd9f6929421ce580b4583defbb3f78f5a4a3642bea5ecd3209bf652d8b507","impliedFormat":1},{"version":"f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","impliedFormat":1},{"version":"82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","impliedFormat":1},{"version":"557e00bde9af85bcb3ab6b3a785904f028f9f1b65dba664f2fda44965acf8a78","impliedFormat":1},{"version":"397981908f102effb3cd483042076b593f3928264dbf06aec235a7c3e83da2b4","impliedFormat":1},{"version":"ad78491e2a3ae1e59680dbab88607dd670d06a91b1d6c451fa895ad390513e8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a9deb79dabc5153448e38589fbe38945fdad45f0f8442cd4d4e1da8bb879a76","affectsGlobalScope":true,"impliedFormat":1},{"version":"f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956","impliedFormat":1},{"version":"c9cc4c881c910ce378659524d985d2b72b79029b0c473df5d4d3557b4cf6010a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fae4b2bc906f3e6840725cc24affaa4e684e6c9cc20254242c5df4bede5b6f6","impliedFormat":1},{"version":"2dd1d4cea14cead7a7fc9eec8f40593089dff0de8c0199458446143c9b8c4ea9","impliedFormat":1},{"version":"c0288f54de6f544706a3150c8b579b1a975870695c4be866f727ece6a16f3976","impliedFormat":1},{"version":"ec2c7505ede4bc3ee37cfe431cfd87e545f55f27fe15b0809c1a411765145615","impliedFormat":1}],"options":{"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":100,"outDir":"./dist-cjs","removeComments":true,"rootDir":"./src","skipLibCheck":true,"strict":true,"target":8,"useUnknownInCatchVariables":false},"fileIdsList":[[69,74,122],[69,74,87,103,120,500],[69,74],[69,74,89,122,503],[69,74,80,122],[69,74,86,89,114,122,507,508,509],[69,74,122,518],[69,74,114,122,522],[69,74,89,122],[69,74,75,122],[69,74,511,512,526],[69,74,86,89,122,520,521],[69,74,504,521,522,529],[69,74,86,87,122,531],[69,74,86,89,91,94,103,114,122],[69,74,86,117,122,548,549,551],[69,74,550],[69,74,86,122],[69,74,553,555,556,557,558,559,560,561,562,563,564,565],[69,74,553,554,556,557,558,559,560,561,562,563,564,565],[69,74,554,555,556,557,558,559,560,561,562,563,564,565],[69,74,553,554,555,557,558,559,560,561,562,563,564,565],[69,74,553,554,555,556,558,559,560,561,562,563,564,565],[69,74,553,554,555,556,557,559,560,561,562,563,564,565],[69,74,553,554,555,556,557,558,560,561,562,563,564,565],[69,74,553,554,555,556,557,558,559,561,562,563,564,565],[69,74,553,554,555,556,557,558,559,560,562,563,564,565],[69,74,553,554,555,556,557,558,559,560,561,563,564,565],[69,74,553,554,555,556,557,558,559,560,561,562,564,565],[69,74,553,554,555,556,557,558,559,560,561,562,563,565],[69,74,553,554,555,556,557,558,559,560,561,562,563,564],[69,74,585],[69,74,570],[69,74,574,575,576],[69,74,573],[69,74,575],[69,74,552,571,572,577,580,582,583,584],[69,74,572,578,579,585],[69,74,578,581],[69,74,572,573,578,585],[69,74,572,585],[69,74,566,567,568,569],[69,74,89,114,122,591,592],[69,74,597],[69,74,86,87,122],[69,74,89,103,122],[69,74,600,639],[69,74,600,624,639],[69,74,639],[69,74,600],[69,74,600,625,639],[69,74,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638],[69,74,625,639],[69,74,87,530],[69,74,89,122,528],[69,74,641],[69,74,103,122],[69,74,86,89,91,103,111,114,120,122],[69,74,86,122,653],[69,74,537],[69,74,536,537],[69,74,536],[69,74,536,537,538,540,541,544,545,546,547],[69,74,537,541],[69,74,536,537,538,540,541,542,543],[69,74,536,541],[69,74,541,545],[69,74,537,538,539],[69,74,538],[69,74,536,537,541],[69,74,515],[69,74,512,513,514],[69,74,512,515],[69,74,89,94,111,114,117,511,513,515,516,517],[69,74,168,203],[69,74,168,202,341],[69,74,168,220,247,249,341],[69,74,250,251],[69,74,290],[69,74,168,252,290,300],[69,74,248,301,302,341,342,344,345],[69,74,249],[69,74,247,248],[69,74,247],[69,74,168,250,251,300],[69,74,168,250,251,341],[69,74,168,203,247,250,251,300,302,303,306,321,323,340],[69,74,168,193,203,247,300,302,341,349],[69,74,168,193,203,247,300,302,341,354,401],[69,74,168,203,302,341],[69,74,301],[69,74,479,480],[69,74,496],[69,74,168,366],[69,74,168,202,377],[69,74,168,220,247,368,377],[69,74,369,370,371,372],[69,74,168],[69,74,168,290,300,374],[69,74,367,373,375,376,377,378,379,383,384],[69,74,368],[69,74,247,367],[69,74,380,381,382],[69,74,168,377],[69,74,168,370,380],[69,74,168,371,380],[69,74,375],[69,74,168,369,370,371,372,377],[69,74,168,220,247,300,303,306,321,340,366,369,370,371,372,373,376],[50,69,74,196,201],[49,69,74],[69,74,168,184],[69,74,168,183],[69,74,183,184,185,194],[69,74,168,182],[69,74,168,193],[69,74,195],[69,74,197,198,199,200],[69,74,168,355],[69,74,355,356],[69,74,168,178,290,360,361],[69,74,362],[69,74,168,362],[69,74,168,357,360,363,365,391,399],[69,74,400],[69,74,168,178,290],[69,74,364],[69,74,168,178,290,386],[69,74,387,388,389,390],[69,74,168,388],[69,74,385],[69,74,168,290,358],[69,74,168,290],[69,74,358,359],[69,74,451],[69,74,304,305],[69,74,168,304],[69,74,444,447],[69,74,182],[69,74,445,446],[69,74,168,265,266],[69,74,260],[69,74,260,261,262,263,264],[69,74,253,254,255,256,257,258,259,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289],[69,74,265,266],[69,74,168,482],[69,74,168,422],[69,74,307,308,309,310],[69,74,168,309],[69,74,311,314,320],[69,74,312,313],[69,74,315],[69,74,168,317,318],[69,74,317,318,319],[69,74,316],[69,74,457,460,467,468,469,470,471],[69,74,168,454],[69,74,454,455,456],[69,74,458,459],[69,74,168,300],[69,74,462,463,464],[69,74,461,465,466],[69,74,168,392],[69,74,168,392,394],[69,74,392,393,394,395,396,397,398],[69,74,484,485,486],[69,74,322],[69,74,103,122,168],[69,74,424,425],[69,74,347,348],[69,74,488,489],[69,74,168,213,214],[69,74,215,216],[69,74,213,214,217,218,219],[69,74,168,331,333],[69,74,333,334,335,336,337,338,339],[69,74,168,335],[69,74,168,332],[69,74,413,414,415],[69,74,168,414],[69,74,168,169,179,180],[69,74,168,178],[69,74,181],[69,74,351,352,353],[69,74,89,91,122,168,300],[69,74,293],[69,74,294],[69,74,168,296],[69,74,168,291,292],[69,74,291,292,293,295,296,297,298,299],[69,74,170,171,172,173,174,175,176,177],[69,74,168,174],[69,74,186,187,188,189,190,191,192],[69,74,168,211],[69,74,168,220],[69,74,204],[69,74,168,230,231],[69,74,232],[69,74,168,204,212,221,222,223,224,225,226,227,228,229,233,234,235,236,237,238,239,240,241,242,243,244,245,246],[52,69,74],[51,69,74],[55,62,63,64,69,74],[62,65,69,74],[55,59,69,74],[55,65,69,74],[53,54,63,64,65,66,69,74],[69,74,103,122,124],[69,74,126],[60,61,62,69,74,128],[60,62,69,74],[69,74,130,132,133],[69,74,130,131],[69,74,135],[53,69,74],[56,69,74,137],[69,74,137],[69,74,137,138,139,140,141],[69,74,140],[57,69,74],[69,74,137,138,139],[59,60,62,69,74],[69,74,126,127],[69,74,143],[69,74,143,147],[69,74,143,144,147,148],[61,69,74,146],[69,74,123],[52,58,69,74],[57,59,69,74,89,91,122],[55,69,74],[55,69,74,151,152,153],[52,56,57,58,59,60,61,62,67,69,74,125,126,127,128,129,131,134,135,136,142,145,146,149,150,154,155,156,157,158,159,160,161,162,163,165,166,167],[53,56,57,61,69,74],[69,74,129],[69,74,145],[59,61,69,74,131],[59,60,69,74],[59,69,74,135],[61,69,74,126,127],[69,74,89,103,122,124,157],[60,69,74,128,162,163],[59,69,74,89,90,122,128,129,157,161,162,163,164],[69,74,128,129],[59,69,74],[69,74,432,433],[69,74,491],[69,74,428],[69,74,493],[69,74,168,247],[69,74,440],[69,74,407,408],[69,74,168,324],[69,74,168,326],[69,74,324],[69,74,324,325,326,327,328,329,330],[69,74,103],[69,74,205,206,207,208,209,210],[69,74,103,168],[69,74,435,436,437],[69,70,74],[69,73,74],[69,74,79,106],[69,74,75,86,87,94,103,114],[69,74,75,76,86,94],[69,74,77,115],[69,74,78,79,87,95],[69,74,79,103,111],[69,74,80,82,86,94],[69,74,81],[69,74,82,83],[69,74,86],[69,74,85,86],[69,73,74,86],[69,74,86,87,88,103,114],[69,74,86,87,88,103],[69,74,86,89,94,103,114],[69,74,86,87,89,90,94,103,111,114],[69,74,89,91,103,111,114],[69,74,86,92],[69,74,93,114,119],[69,74,82,86,94,103],[69,74,95],[69,74,96],[69,73,74,97],[69,74,98,113,119],[69,74,99],[69,74,100],[69,74,86,101],[69,74,101,102,115,117],[69,74,86,103,104,105],[69,74,103,105],[69,74,103,104],[69,74,106],[69,74,107],[69,74,86,109,110],[69,74,109,110],[69,74,79,94,103,111],[69,74,112],[74],[68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121],[69,74,94,113],[69,74,89,100,114],[69,74,79,115],[69,74,103,116],[69,74,117],[69,74,118],[69,74,79,86,88,97,103,114,117,119],[69,74,103,120],[69,74,168,406,410],[69,74,168,202,406,409,474],[69,74,168,247,406,412,416,419,474],[69,74,406,417,420],[69,74,290,321,406],[69,74,168,290,300,406,443],[69,74,406,411,449,450,474,475,476,477],[69,74,406,412],[69,74,247,406,411],[69,74,247,406],[69,74,168,202,247,300,406,411,412,417,418,420],[69,74,168,247,406,417,420,474],[69,74,168,247,300,303,306,321,323,340,406,410,417,420,442,450,452,453,472,473],[69,74,247,321,331,349,406,421,439,474,481,483,487,490,492,494],[69,74,406,474,495,497],[69,74,168,202,247,406,410,430,431,434,438,474],[69,74,182,202,247,321,331,340,354,401,406,421,423,426,427,429,439,441,474],[69,74,247,300,406,443,448,449],[69,74,168,252,290,655],[69,74,168,250,251,655],[69,74,168,203,247,250,251,302,303,306,321,323,340,655],[69,74,168,203,247,302,341,349,655,656],[69,74,168,203,247,302,341,354,401,655,656],[168,410],[168,202,474],[168,220,247,412,474],[417,420],[290],[168,290,443,655],[411,449,450,474,475,476,477],[412],[247,411],[247],[168,417,420,655],[168,417,420,474],[168,247,303,306,321,323,340,410,417,420,450,655],[168,193,247,300,349,410,450,474],[168,410,450,474],[168,193,247,300,354,401,410,450,474],[449]],"referencedMap":[[499,1],[501,2],[502,3],[504,4],[505,5],[506,3],[510,6],[519,7],[523,8],[503,9],[524,10],[525,3],[526,3],[527,11],[511,3],[522,12],[530,13],[532,14],[531,3],[508,3],[533,15],[534,3],[535,3],[550,16],[551,17],[512,3],[507,18],[552,3],[554,19],[555,20],[553,21],[556,22],[557,23],[558,24],[559,25],[560,26],[561,27],[562,28],[563,29],[564,30],[565,31],[586,32],[571,33],[577,34],[575,3],[574,35],[576,36],[585,37],[580,38],[582,39],[583,40],[584,41],[578,3],[579,41],[581,41],[573,41],[572,3],[567,3],[566,3],[569,33],[570,42],[568,33],[587,3],[528,3],[588,3],[589,3],[590,3],[592,3],[593,43],[594,3],[595,3],[596,3],[598,44],[521,3],[520,3],[500,45],[599,3],[509,46],[597,3],[624,47],[625,48],[600,49],[603,49],[622,47],[623,47],[613,47],[612,50],[610,47],[605,47],[618,47],[616,47],[620,47],[604,47],[617,47],[621,47],[606,47],[607,47],[619,47],[601,47],[608,47],[609,47],[611,47],[615,47],[626,51],[614,47],[602,47],[639,52],[638,3],[633,51],[635,53],[634,51],[627,51],[628,51],[630,51],[632,51],[636,53],[637,53],[629,53],[631,53],[640,54],[529,55],[642,56],[641,3],[643,3],[644,9],[645,57],[646,3],[549,3],[648,3],[647,3],[649,3],[650,3],[651,3],[652,58],[654,59],[653,3],[514,3],[591,46],[538,60],[547,61],[536,3],[537,62],[548,63],[543,64],[544,65],[542,66],[546,67],[540,68],[539,69],[545,70],[541,61],[516,71],[515,72],[513,73],[517,3],[518,74],[252,75],[203,76],[250,77],[344,78],[251,77],[343,79],[301,80],[346,81],[345,82],[249,83],[248,84],[405,85],[342,86],[341,87],[350,88],[402,89],[403,88],[404,90],[302,91],[479,79],[481,92],[480,79],[497,93],[496,79],[374,94],[366,95],[369,96],[379,97],[370,96],[371,96],[372,96],[373,98],[375,99],[385,100],[384,101],[368,102],[367,84],[383,103],[380,104],[381,105],[382,106],[376,107],[378,108],[377,109],[202,110],[49,3],[50,111],[185,112],[184,113],[195,114],[183,115],[194,116],[196,117],[197,3],[201,118],[198,3],[199,98],[200,98],[356,119],[355,79],[357,120],[362,121],[363,122],[361,123],[400,124],[401,125],[364,126],[365,127],[387,128],[391,129],[389,130],[386,131],[388,98],[390,130],[359,132],[358,133],[360,134],[303,98],[452,135],[451,98],[453,98],[304,98],[306,136],[305,137],[444,133],[448,138],[445,139],[447,140],[446,98],[253,98],[254,98],[255,98],[256,98],[257,98],[258,98],[259,98],[267,141],[268,98],[269,3],[270,98],[271,98],[272,98],[273,98],[274,98],[261,142],[262,98],[260,98],[265,143],[263,142],[264,98],[290,144],[275,98],[276,98],[277,98],[278,98],[279,3],[280,98],[281,98],[282,98],[283,98],[284,98],[285,98],[286,145],[287,98],[288,98],[266,98],[289,98],[482,3],[483,146],[422,3],[423,147],[311,148],[307,139],[308,139],[310,149],[309,98],[321,150],[312,139],[314,151],[313,98],[316,152],[315,3],[319,153],[320,154],[317,155],[318,155],[468,98],[472,156],[455,157],[456,157],[454,98],[457,158],[459,98],[458,98],[460,159],[469,98],[471,98],[470,160],[461,98],[462,160],[463,160],[465,161],[464,98],[467,162],[466,98],[398,3],[393,163],[395,164],[399,165],[396,9],[392,98],[394,98],[397,98],[484,98],[487,166],[485,98],[486,3],[322,98],[323,167],[424,168],[426,169],[425,98],[347,160],[349,170],[348,98],[427,98],[490,171],[488,3],[489,98],[473,98],[215,172],[217,173],[216,98],[218,172],[219,172],[220,174],[213,98],[214,3],[334,175],[335,115],[336,3],[340,176],[337,98],[338,98],[339,177],[333,178],[332,98],[413,98],[416,179],[414,98],[415,180],[181,181],[169,98],[179,182],[180,98],[182,183],[354,184],[351,185],[352,160],[353,98],[294,186],[295,187],[296,98],[297,188],[293,189],[291,98],[292,98],[300,190],[298,3],[299,98],[170,3],[171,3],[172,3],[173,3],[178,191],[174,98],[175,98],[176,192],[177,98],[192,98],[187,98],[188,98],[189,98],[193,193],[190,98],[191,98],[186,98],[204,98],[212,194],[221,195],[222,3],[223,196],[224,3],[225,3],[226,3],[227,3],[228,98],[229,3],[230,98],[232,197],[233,198],[231,98],[234,3],[235,3],[247,199],[236,3],[237,3],[238,98],[239,3],[240,3],[241,3],[242,3],[243,3],[244,3],[245,3],[246,3],[51,200],[52,201],[53,3],[54,3],[65,202],[66,203],[63,204],[64,205],[67,206],[125,207],[127,208],[129,209],[128,210],[130,3],[134,211],[132,212],[133,3],[126,3],[136,213],[56,214],[138,215],[139,216],[142,217],[141,218],[137,219],[140,220],[135,221],[143,222],[144,223],[148,224],[149,225],[147,226],[124,227],[59,228],[150,229],[151,230],[152,230],[55,3],[154,231],[153,230],[168,232],[57,3],[62,233],[155,234],[156,3],[60,3],[146,235],[157,236],[145,237],[158,238],[159,239],[160,207],[161,207],[162,240],[131,3],[164,241],[165,242],[123,3],[166,243],[163,3],[58,244],[61,221],[167,200],[431,98],[432,3],[434,245],[433,3],[491,3],[492,246],[428,3],[429,247],[494,248],[493,249],[441,250],[440,249],[407,98],[409,251],[408,98],[325,252],[329,3],[327,253],[330,3],[328,254],[331,255],[326,98],[324,3],[205,3],[206,168],[209,256],[211,257],[207,258],[208,57],[210,3],[435,3],[438,259],[436,3],[437,3],[70,260],[71,260],[73,261],[74,262],[75,263],[76,264],[77,265],[78,266],[79,267],[80,268],[81,269],[82,270],[83,270],[84,271],[85,272],[86,273],[87,274],[88,275],[72,3],[121,3],[89,276],[90,277],[91,278],[92,279],[93,280],[94,281],[95,282],[96,283],[97,284],[98,285],[99,286],[100,287],[101,288],[102,289],[103,290],[105,291],[104,292],[106,293],[107,294],[108,3],[109,295],[110,296],[111,297],[112,298],[69,299],[68,3],[122,300],[113,301],[114,302],[115,303],[116,304],[117,305],[118,306],[119,307],[120,308],[418,3],[406,3],[9,3],[10,3],[12,3],[11,3],[2,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[3,3],[4,3],[24,3],[21,3],[22,3],[23,3],[25,3],[26,3],[27,3],[5,3],[28,3],[29,3],[30,3],[31,3],[6,3],[35,3],[32,3],[33,3],[34,3],[36,3],[7,3],[37,3],[42,3],[43,3],[38,3],[39,3],[40,3],[41,3],[8,3],[47,3],[44,3],[45,3],[46,3],[1,3],[48,3],[421,3],[443,309],[410,310],[420,311],[476,312],[417,311],[430,313],[449,314],[478,315],[477,316],[412,317],[411,318],[419,319],[475,320],[474,321],[495,322],[498,323],[439,324],[442,325],[450,326]],"exportedModulesMap":[[499,1],[501,2],[502,3],[504,4],[505,5],[506,3],[510,6],[519,7],[523,8],[503,9],[524,10],[525,3],[526,3],[527,11],[511,3],[522,12],[530,13],[532,14],[531,3],[508,3],[533,15],[534,3],[535,3],[550,16],[551,17],[512,3],[507,18],[552,3],[554,19],[555,20],[553,21],[556,22],[557,23],[558,24],[559,25],[560,26],[561,27],[562,28],[563,29],[564,30],[565,31],[586,32],[571,33],[577,34],[575,3],[574,35],[576,36],[585,37],[580,38],[582,39],[583,40],[584,41],[578,3],[579,41],[581,41],[573,41],[572,3],[567,3],[566,3],[569,33],[570,42],[568,33],[587,3],[528,3],[588,3],[589,3],[590,3],[592,3],[593,43],[594,3],[595,3],[596,3],[598,44],[521,3],[520,3],[500,45],[599,3],[509,46],[597,3],[624,47],[625,48],[600,49],[603,49],[622,47],[623,47],[613,47],[612,50],[610,47],[605,47],[618,47],[616,47],[620,47],[604,47],[617,47],[621,47],[606,47],[607,47],[619,47],[601,47],[608,47],[609,47],[611,47],[615,47],[626,51],[614,47],[602,47],[639,52],[638,3],[633,51],[635,53],[634,51],[627,51],[628,51],[630,51],[632,51],[636,53],[637,53],[629,53],[631,53],[640,54],[529,55],[642,56],[641,3],[643,3],[644,9],[645,57],[646,3],[549,3],[648,3],[647,3],[649,3],[650,3],[651,3],[652,58],[654,59],[653,3],[514,3],[591,46],[538,60],[547,61],[536,3],[537,62],[548,63],[543,64],[544,65],[542,66],[546,67],[540,68],[539,69],[545,70],[541,61],[516,71],[515,72],[513,73],[517,3],[518,74],[252,75],[203,76],[250,77],[344,78],[251,77],[343,79],[301,327],[346,81],[345,82],[249,83],[248,84],[405,328],[342,86],[341,329],[350,330],[402,331],[403,330],[404,90],[302,91],[479,79],[481,92],[480,79],[497,93],[496,79],[374,94],[366,95],[369,96],[379,97],[370,96],[371,96],[372,96],[373,98],[375,99],[385,100],[384,101],[368,102],[367,84],[383,103],[380,104],[381,105],[382,106],[376,107],[378,108],[377,109],[202,110],[49,3],[50,111],[185,112],[184,113],[195,114],[183,115],[194,116],[196,117],[197,3],[201,118],[198,3],[199,98],[200,98],[356,119],[355,79],[357,120],[362,121],[363,122],[361,123],[400,124],[401,125],[364,126],[365,127],[387,128],[391,129],[389,130],[386,131],[388,98],[390,130],[359,132],[358,133],[360,134],[303,98],[452,135],[451,98],[453,98],[304,98],[306,136],[305,137],[444,133],[448,138],[445,139],[447,140],[446,98],[253,98],[254,98],[255,98],[256,98],[257,98],[258,98],[259,98],[267,141],[268,98],[269,3],[270,98],[271,98],[272,98],[273,98],[274,98],[261,142],[262,98],[260,98],[265,143],[263,142],[264,98],[290,144],[275,98],[276,98],[277,98],[278,98],[279,3],[280,98],[281,98],[282,98],[283,98],[284,98],[285,98],[286,145],[287,98],[288,98],[266,98],[289,98],[482,3],[483,146],[422,3],[423,147],[311,148],[307,139],[308,139],[310,149],[309,98],[321,150],[312,139],[314,151],[313,98],[316,152],[315,3],[319,153],[320,154],[317,155],[318,155],[468,98],[472,156],[455,157],[456,157],[454,98],[457,158],[459,98],[458,98],[460,159],[469,98],[471,98],[470,160],[461,98],[462,160],[463,160],[465,161],[464,98],[467,162],[466,98],[398,3],[393,163],[395,164],[399,165],[396,9],[392,98],[394,98],[397,98],[484,98],[487,166],[485,98],[486,3],[322,98],[323,167],[424,168],[426,169],[425,98],[347,160],[349,170],[348,98],[427,98],[490,171],[488,3],[489,98],[473,98],[215,172],[217,173],[216,98],[218,172],[219,172],[220,174],[213,98],[214,3],[334,175],[335,115],[336,3],[340,176],[337,98],[338,98],[339,177],[333,178],[332,98],[413,98],[416,179],[414,98],[415,180],[181,181],[169,98],[179,182],[180,98],[182,183],[354,184],[351,185],[352,160],[353,98],[294,186],[295,187],[296,98],[297,188],[293,189],[291,98],[292,98],[300,190],[298,3],[299,98],[170,3],[171,3],[172,3],[173,3],[178,191],[174,98],[175,98],[176,192],[177,98],[192,98],[187,98],[188,98],[189,98],[193,193],[190,98],[191,98],[186,98],[204,98],[212,194],[221,195],[222,3],[223,196],[224,3],[225,3],[226,3],[227,3],[228,98],[229,3],[230,98],[232,197],[233,198],[231,98],[234,3],[235,3],[247,199],[236,3],[237,3],[238,98],[239,3],[240,3],[241,3],[242,3],[243,3],[244,3],[245,3],[246,3],[51,200],[52,201],[53,3],[54,3],[65,202],[66,203],[63,204],[64,205],[67,206],[125,207],[127,208],[129,209],[128,210],[130,3],[134,211],[132,212],[133,3],[126,3],[136,213],[56,214],[138,215],[139,216],[142,217],[141,218],[137,219],[140,220],[135,221],[143,222],[144,223],[148,224],[149,225],[147,226],[124,227],[59,228],[150,229],[151,230],[152,230],[55,3],[154,231],[153,230],[168,232],[57,3],[62,233],[155,234],[156,3],[60,3],[146,235],[157,236],[145,237],[158,238],[159,239],[160,207],[161,207],[162,240],[131,3],[164,241],[165,242],[123,3],[166,243],[163,3],[58,244],[61,221],[167,200],[431,98],[432,3],[434,245],[433,3],[491,3],[492,246],[428,3],[429,247],[494,248],[493,249],[441,250],[440,249],[407,98],[409,251],[408,98],[325,252],[329,3],[327,253],[330,3],[328,254],[331,255],[326,98],[324,3],[205,3],[206,168],[209,256],[211,257],[207,258],[208,57],[210,3],[435,3],[438,259],[436,3],[437,3],[70,260],[71,260],[73,261],[74,262],[75,263],[76,264],[77,265],[78,266],[79,267],[80,268],[81,269],[82,270],[83,270],[84,271],[85,272],[86,273],[87,274],[88,275],[72,3],[121,3],[89,276],[90,277],[91,278],[92,279],[93,280],[94,281],[95,282],[96,283],[97,284],[98,285],[99,286],[100,287],[101,288],[102,289],[103,290],[105,291],[104,292],[106,293],[107,294],[108,3],[109,295],[110,296],[111,297],[112,298],[69,299],[68,3],[122,300],[113,301],[114,302],[115,303],[116,304],[117,305],[118,306],[119,307],[120,308],[418,3],[406,3],[9,3],[10,3],[12,3],[11,3],[2,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[3,3],[4,3],[24,3],[21,3],[22,3],[23,3],[25,3],[26,3],[27,3],[5,3],[28,3],[29,3],[30,3],[31,3],[6,3],[35,3],[32,3],[33,3],[34,3],[36,3],[7,3],[37,3],[42,3],[43,3],[38,3],[39,3],[40,3],[41,3],[8,3],[47,3],[44,3],[45,3],[46,3],[1,3],[48,3],[443,332],[410,333],[420,334],[476,335],[417,334],[430,336],[449,337],[478,338],[477,339],[412,340],[411,341],[419,342],[475,343],[474,344],[495,345],[498,345],[439,346],[442,347],[450,348]],"semanticDiagnosticsPerFile":[499,501,502,504,505,506,510,519,523,503,524,525,526,527,511,522,530,532,531,508,533,534,535,550,551,512,507,552,554,555,553,556,557,558,559,560,561,562,563,564,565,586,571,577,575,574,576,585,580,582,583,584,578,579,581,573,572,567,566,569,570,568,587,528,588,589,590,592,593,594,595,596,598,521,520,500,599,509,597,624,625,600,603,622,623,613,612,610,605,618,616,620,604,617,621,606,607,619,601,608,609,611,615,626,614,602,639,638,633,635,634,627,628,630,632,636,637,629,631,640,529,642,641,643,644,645,646,549,648,647,649,650,651,652,654,653,514,591,538,547,536,537,548,543,544,542,546,540,539,545,541,516,515,513,517,518,252,203,250,344,251,343,301,346,345,249,248,405,342,341,350,402,403,404,302,479,481,480,497,496,374,366,369,379,370,371,372,373,375,385,384,368,367,383,380,381,382,376,378,377,202,49,50,185,184,195,183,194,196,197,201,198,199,200,356,355,357,362,363,361,400,401,364,365,387,391,389,386,388,390,359,358,360,303,452,451,453,304,306,305,444,448,445,447,446,253,254,255,256,257,258,259,267,268,269,270,271,272,273,274,261,262,260,265,263,264,290,275,276,277,278,279,280,281,282,283,284,285,286,287,288,266,289,482,483,422,423,311,307,308,310,309,321,312,314,313,316,315,319,320,317,318,468,472,455,456,454,457,459,458,460,469,471,470,461,462,463,465,464,467,466,398,393,395,399,396,392,394,397,484,487,485,486,322,323,424,426,425,347,349,348,427,490,488,489,473,215,217,216,218,219,220,213,214,334,335,336,340,337,338,339,333,332,413,416,414,415,181,169,179,180,182,354,351,352,353,294,295,296,297,293,291,292,300,298,299,170,171,172,173,178,174,175,176,177,192,187,188,189,193,190,191,186,204,212,221,222,223,224,225,226,227,228,229,230,232,233,231,234,235,247,236,237,238,239,240,241,242,243,244,245,246,51,52,53,54,65,66,63,64,67,125,127,129,128,130,134,132,133,126,136,56,138,139,142,141,137,140,135,143,144,148,149,147,124,59,150,151,152,55,154,153,168,57,62,155,156,60,146,157,145,158,159,160,161,162,131,164,165,123,166,163,58,61,167,431,432,434,433,491,492,428,429,494,493,441,440,407,409,408,325,329,327,330,328,331,326,324,205,206,209,211,207,208,210,435,438,436,437,70,71,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,72,121,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,105,104,106,107,108,109,110,111,112,69,68,122,113,114,115,116,117,118,119,120,418,406,9,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,1,48,421,443,410,420,476,417,430,449,478,477,412,411,419,475,474,495,498,439,442,450]},"version":"4.9.5"} \ No newline at end of file diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.es.json b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.es.json new file mode 100644 index 00000000000..809f57bde65 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.es.json @@ -0,0 +1,8 @@ +{ + "extends": "./tsconfig", + "compilerOptions": { + "lib": ["dom"], + "module": "esnext", + "outDir": "dist-es" + } +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.es.tsbuildinfo b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.es.tsbuildinfo new file mode 100644 index 00000000000..2f3dcb0faf3 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.es.tsbuildinfo @@ -0,0 +1 @@ +{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/client/emitwarningifunsupportedversion.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts","./node_modules/@smithy/types/dist-types/abort-handler.d.ts","./node_modules/@smithy/types/dist-types/abort.d.ts","./node_modules/@smithy/types/dist-types/auth/auth.d.ts","./node_modules/@smithy/types/dist-types/auth/httpapikeyauth.d.ts","./node_modules/@smithy/types/dist-types/identity/identity.d.ts","./node_modules/@smithy/types/dist-types/endpoint.d.ts","./node_modules/@smithy/types/dist-types/logger.d.ts","./node_modules/@smithy/types/dist-types/uri.d.ts","./node_modules/@smithy/types/dist-types/http.d.ts","./node_modules/@smithy/types/dist-types/response.d.ts","./node_modules/@smithy/types/dist-types/util.d.ts","./node_modules/@smithy/types/dist-types/middleware.d.ts","./node_modules/@smithy/types/dist-types/auth/httpsigner.d.ts","./node_modules/@smithy/types/dist-types/auth/identityproviderconfig.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthscheme.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/types/dist-types/auth/index.d.ts","./node_modules/@types/node/ts5.6/globals.typedarray.d.ts","./node_modules/@types/node/ts5.6/buffer.buffer.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/dom-events.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/ts5.6/index.d.ts","./node_modules/@smithy/types/dist-types/transform/exact.d.ts","./node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts","./node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/crypto.d.ts","./node_modules/@smithy/types/dist-types/checksum.d.ts","./node_modules/@smithy/types/dist-types/command.d.ts","./node_modules/@smithy/types/dist-types/client.d.ts","./node_modules/@smithy/types/dist-types/connection/config.d.ts","./node_modules/@smithy/types/dist-types/transfer.d.ts","./node_modules/@smithy/types/dist-types/connection/manager.d.ts","./node_modules/@smithy/types/dist-types/connection/pool.d.ts","./node_modules/@smithy/types/dist-types/connection/index.d.ts","./node_modules/@smithy/types/dist-types/eventstream.d.ts","./node_modules/@smithy/types/dist-types/encode.d.ts","./node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","./node_modules/@smithy/types/dist-types/endpoints/endpointruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/errorruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/treeruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/rulesetobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/index.d.ts","./node_modules/@smithy/types/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultclientconfiguration.d.ts","./node_modules/@smithy/types/dist-types/shapes.d.ts","./node_modules/@smithy/types/dist-types/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/types/dist-types/extensions/index.d.ts","./node_modules/@smithy/types/dist-types/http/httphandlerinitialization.d.ts","./node_modules/@smithy/types/dist-types/identity/apikeyidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/index.d.ts","./node_modules/@smithy/types/dist-types/pagination.d.ts","./node_modules/@smithy/types/dist-types/profile.d.ts","./node_modules/@smithy/types/dist-types/serde.d.ts","./node_modules/@smithy/types/dist-types/signature.d.ts","./node_modules/@smithy/types/dist-types/stream.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","./node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","./node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","./node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","./node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts","./node_modules/@smithy/types/dist-types/waiter.d.ts","./node_modules/@smithy/types/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromenv.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/gethomedir.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getprofilename.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfilepath.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfromfile.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadsharedconfigfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadssosessiondata.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/parseknownfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromsharedconfigfiles.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromstatic.d.ts","./node_modules/@smithy/node-config-provider/dist-types/configloader.d.ts","./node_modules/@smithy/node-config-provider/dist-types/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4aconfig.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4signer.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4asigner.d.ts","./node_modules/@smithy/signature-v4/dist-types/signaturev4.d.ts","./node_modules/@smithy/signature-v4/dist-types/getcanonicalheaders.d.ts","./node_modules/@smithy/signature-v4/dist-types/getcanonicalquery.d.ts","./node_modules/@smithy/signature-v4/dist-types/getpayloadhash.d.ts","./node_modules/@smithy/signature-v4/dist-types/moveheaderstoquery.d.ts","./node_modules/@smithy/signature-v4/dist-types/preparerequest.d.ts","./node_modules/@smithy/signature-v4/dist-types/credentialderivation.d.ts","./node_modules/@smithy/signature-v4/dist-types/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4config.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/coercing-serializers.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsexpectunion.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parsejsonbody.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/parsexmlbody.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts","./node_modules/@aws-sdk/core/dist-types/index.d.ts","./dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/smithy-client/dist-types/client.d.ts","./node_modules/@smithy/util-stream/dist-types/blob/uint8arrayblobadapter.d.ts","./node_modules/@smithy/util-stream/dist-types/getawschunkedencodingstream.d.ts","./node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts","./node_modules/@smithy/util-stream/dist-types/splitstream.d.ts","./node_modules/@smithy/util-stream/dist-types/headstream.d.ts","./node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts","./node_modules/@smithy/util-stream/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/resolveendpointconfig.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getendpointfrominstructions.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toendpointv1.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/endpointmiddleware.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/getendpointplugin.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/command.d.ts","./node_modules/@smithy/smithy-client/dist-types/constants.d.ts","./node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts","./node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts","./node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts","./node_modules/@smithy/smithy-client/dist-types/emitwarningifunsupportedversion.d.ts","./node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts","./node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts","./node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts","./node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/nooplogger.d.ts","./node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts","./node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/quote-header.d.ts","./node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts","./node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-every.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-header.d.ts","./node_modules/@smithy/smithy-client/dist-types/index.d.ts","./dist-types/models/qdeveloperstreamingserviceexception.d.ts","./dist-types/models/models_0.d.ts","./dist-types/commands/generatecodefromcommandscommand.d.ts","./dist-types/commands/sendmessagecommand.d.ts","./dist-types/auth/httpauthextensionconfiguration.d.ts","./node_modules/@aws-sdk/types/dist-types/abort.d.ts","./node_modules/@aws-sdk/types/dist-types/auth.d.ts","./node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","./node_modules/@aws-sdk/types/dist-types/checksum.d.ts","./node_modules/@aws-sdk/types/dist-types/client.d.ts","./node_modules/@aws-sdk/types/dist-types/command.d.ts","./node_modules/@aws-sdk/types/dist-types/connection.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/identity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/anonymousidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/loginidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","./node_modules/@aws-sdk/types/dist-types/util.d.ts","./node_modules/@aws-sdk/types/dist-types/credentials.d.ts","./node_modules/@aws-sdk/types/dist-types/crypto.d.ts","./node_modules/@aws-sdk/types/dist-types/dns.d.ts","./node_modules/@aws-sdk/types/dist-types/encode.d.ts","./node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","./node_modules/@aws-sdk/types/dist-types/eventstream.d.ts","./node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/types/dist-types/http.d.ts","./node_modules/@aws-sdk/types/dist-types/logger.d.ts","./node_modules/@aws-sdk/types/dist-types/middleware.d.ts","./node_modules/@aws-sdk/types/dist-types/pagination.d.ts","./node_modules/@aws-sdk/types/dist-types/profile.d.ts","./node_modules/@aws-sdk/types/dist-types/request.d.ts","./node_modules/@aws-sdk/types/dist-types/response.d.ts","./node_modules/@aws-sdk/types/dist-types/retry.d.ts","./node_modules/@aws-sdk/types/dist-types/serde.d.ts","./node_modules/@aws-sdk/types/dist-types/shapes.d.ts","./node_modules/@aws-sdk/types/dist-types/signature.d.ts","./node_modules/@aws-sdk/types/dist-types/stream.d.ts","./node_modules/@aws-sdk/types/dist-types/token.d.ts","./node_modules/@aws-sdk/types/dist-types/transfer.d.ts","./node_modules/@aws-sdk/types/dist-types/uri.d.ts","./node_modules/@aws-sdk/types/dist-types/waiter.d.ts","./node_modules/@aws-sdk/types/dist-types/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/httprequest.d.ts","./node_modules/@smithy/protocol-http/dist-types/httpresponse.d.ts","./node_modules/@smithy/protocol-http/dist-types/httphandler.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/httpextensionconfiguration.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/field.d.ts","./node_modules/@smithy/protocol-http/dist-types/fields.d.ts","./node_modules/@smithy/protocol-http/dist-types/isvalidhostname.d.ts","./node_modules/@smithy/protocol-http/dist-types/types.d.ts","./node_modules/@smithy/protocol-http/dist-types/index.d.ts","./dist-types/extensionconfiguration.d.ts","./dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusedualstackendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusefipsendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolveendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolvecustomendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvarianttag.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvariant.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/partitionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/regionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/getregioninfo.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/eventstreamserdeconfig.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts","./node_modules/@smithy/util-retry/dist-types/types.d.ts","./node_modules/@smithy/util-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/configuredretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/defaultratelimiter.d.ts","./node_modules/@smithy/util-retry/dist-types/config.d.ts","./node_modules/@smithy/util-retry/dist-types/constants.d.ts","./node_modules/@smithy/util-retry/dist-types/index.d.ts","./node_modules/@smithy/middleware-retry/dist-types/types.d.ts","./node_modules/@smithy/middleware-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts","./node_modules/@smithy/middleware-retry/dist-types/delaydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/omitretryheadersmiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrymiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/index.d.ts","./dist-types/qdeveloperstreamingclient.d.ts","./dist-types/qdeveloperstreaming.d.ts","./dist-types/endpoints.d.ts","./dist-types/commands/index.d.ts","./dist-types/models/index.d.ts","./dist-types/index.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts","./dist-types/runtimeconfig.browser.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts","./node_modules/@smithy/node-http-handler/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/fromhttp/fromhttptypes.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/fromhttp/fromhttp.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromwebtoken.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromtokenfile.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveassumerolecredentials.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/fromini.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-process/dist-types/fromprocess.d.ts","./node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/ssoserviceexception.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/getrolecredentialscommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/listaccountrolescommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/listaccountscommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/logoutcommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointparameters.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/auth/httpauthextensionconfiguration.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/extensionconfiguration.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/ssoclient.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/sso.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/interfaces.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/listaccountrolespaginator.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/listaccountspaginator.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/loadsso.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/fromsso.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/isssoprofile.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/validatessoprofile.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/remoteprovider/remoteproviderinit.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/fromcontainermetadata.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/frominstancemetadata.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/remoteprovider/httprequest.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/utils/getinstancemetadataendpoint.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/config/endpoint.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-node/dist-types/defaultprovider.d.ts","./node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts","./dist-types/runtimeconfig.d.ts","./dist-types/runtimeconfig.native.d.ts","./dist-types/runtimeconfig.shared.d.ts","./dist-types/protocols/aws_json1_0.d.ts","./node_modules/tslib/tslib.d.ts","./node_modules/@smithy/util-middleware/dist-types/getsmithycontext.d.ts","./node_modules/@smithy/util-middleware/dist-types/normalizeprovider.d.ts","./node_modules/@smithy/util-middleware/dist-types/index.d.ts","./src/auth/httpauthschemeprovider.ts","./src/models/qdeveloperstreamingserviceexception.ts","./src/models/models_0.ts","./node_modules/@smithy/middleware-serde/dist-types/deserializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serdeplugin.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/index.d.ts","./src/commands/sendmessagecommand.ts","./node_modules/@types/uuid/index.d.ts","./src/protocols/aws_json1_0.ts","./src/commands/generatecodefromcommandscommand.ts","./package.json","./node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts","./node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts","./node_modules/@smithy/hash-node/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/index.d.ts","./src/endpoints.ts","./node_modules/@smithy/url-parser/dist-types/index.d.ts","./node_modules/@smithy/util-base64/dist-types/frombase64.d.ts","./node_modules/@smithy/util-base64/dist-types/tobase64.d.ts","./node_modules/@smithy/util-base64/dist-types/index.d.ts","./node_modules/@smithy/util-utf8/dist-types/fromutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/touint8array.d.ts","./node_modules/@smithy/util-utf8/dist-types/toutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/index.d.ts","./src/runtimeconfig.shared.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts","./src/runtimeconfig.ts","./src/auth/httpauthextensionconfiguration.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts","./src/extensionconfiguration.ts","./src/runtimeextensions.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/loggermiddleware.d.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpauthschememiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/gethttpauthschemeendpointrulesetplugin.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/gethttpauthschemeplugin.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/httpsigningmiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/gethttpsigningmiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/defaultidentityproviderconfig.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/httpapikeyauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/httpbearerauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/noauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/index.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeidentityprovider.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts","./node_modules/@smithy/core/dist-types/getsmithycontext.d.ts","./node_modules/@smithy/core/dist-types/normalizeprovider.d.ts","./node_modules/@smithy/core/dist-types/protocols/requestbuilder.d.ts","./node_modules/@smithy/core/dist-types/pagination/createpaginator.d.ts","./node_modules/@smithy/core/dist-types/index.d.ts","./node_modules/@smithy/middleware-content-length/dist-types/index.d.ts","./src/qdeveloperstreamingclient.ts","./src/qdeveloperstreaming.ts","./src/commands/index.ts","./src/models/index.ts","./src/index.ts","./node_modules/@aws-crypto/sha256-browser/build/main/crossplatformsha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/main/webcryptosha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/invalidfunction.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/invalidprovider.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts","./src/runtimeconfig.browser.ts","./node_modules/@aws-crypto/sha256-js/build/main/jssha256.d.ts","./node_modules/@aws-crypto/sha256-js/build/main/index.d.ts","./src/runtimeconfig.native.ts","../../../node_modules/@types/adm-zip/index.d.ts","../../../node_modules/@types/readdir-glob/index.d.ts","../../../node_modules/@types/archiver/index.d.ts","../../../node_modules/@types/async-lock/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/bytes/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/circular-dependency-plugin/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/cross-spawn/index.d.ts","../../../node_modules/@types/diff/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/glob/node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/parse5/dist/cjs/common/html.d.ts","../../../node_modules/parse5/dist/cjs/common/token.d.ts","../../../node_modules/parse5/dist/cjs/common/error-codes.d.ts","../../../node_modules/parse5/dist/cjs/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/dist/cjs/tokenizer/index.d.ts","../../../node_modules/parse5/dist/cjs/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/cjs/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/cjs/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/cjs/parser/index.d.ts","../../../node_modules/parse5/dist/cjs/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/cjs/serializer/index.d.ts","../../../node_modules/parse5/dist/cjs/common/foreign-content.d.ts","../../../node_modules/parse5/dist/cjs/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/linkify-it/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdurl/encode.d.ts","../../../node_modules/@types/mdurl/decode.d.ts","../../../node_modules/@types/mdurl/parse.d.ts","../../../node_modules/@types/mdurl/format.d.ts","../../../node_modules/@types/mdurl/index.d.ts","../../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../../node_modules/@types/markdown-it/lib/token.d.ts","../../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../../node_modules/@types/markdown-it/lib/index.d.ts","../../../node_modules/@types/markdown-it/index.d.ts","../../../node_modules/@types/mime-types/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/prismjs/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/proper-lockfile/index.d.ts","../../../node_modules/@types/readline-sync/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sinon/node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/stream-buffers/index.d.ts","../../../node_modules/@types/tcp-port-used/index.d.ts","../../../node_modules/@types/vscode/index.d.ts","../../../node_modules/@types/vscode-webview/index.d.ts","../../../node_modules/@types/webidl-conversions/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/whatwg-url/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/xml2js/lib/processors.d.ts","../../../node_modules/@types/xml2js/index.d.ts","../../../node_modules/@smithy/core/node_modules/@smithy/protocol-http/dist-types/index.d.ts","../../../node_modules/@smithy/signature-v4/dist-types/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"02ec1ffcc0823cb9c9ba420c619d3af2c726e3a674b66a91941c07a3e7f65dba","impliedFormat":1},{"version":"38f6da5b6f318c33e18dd7c983cab3fe52f510c9a2573948fb13f012e01b1ba6","impliedFormat":1},{"version":"b40885a4e39fb67eb251fb009bf990f3571ccf7279dccad26c2261b4e5c8ebcd","impliedFormat":1},{"version":"2d0e63718a9ab15554cca1ef458a269ff938aea2ad379990a018a49e27aadf40","impliedFormat":1},{"version":"530e5c7e4f74267b7800f1702cf0c576282296a960acbdb2960389b2b1d0875b","impliedFormat":1},{"version":"1c483cc60a58a0d4c9a068bdaa8d95933263e6017fbea33c9f99790cf870f0a8","impliedFormat":1},{"version":"07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","impliedFormat":1},{"version":"5d3e656baf210f702e4006949a640730d6aef8d6afc3de264877e0ff76335f39","impliedFormat":1},{"version":"4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","impliedFormat":1},{"version":"c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","impliedFormat":1},{"version":"570efec02480a95fa35e7c6dc3c00c59309d221e0698cefbc9e27a3c13d69c96","impliedFormat":1},{"version":"396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","impliedFormat":1},{"version":"b7b881ced4ed4dee13d6e0ccdb2296f66663ba6b1419767271090b3ff3478bb9","impliedFormat":1},{"version":"06289b9873760aac77aed4035ea6c60b1e0879b8afe47a4530bc8522b9b804b1","impliedFormat":1},{"version":"63c36aa73242aa745fae813c40585111ead225394b0a0ba985c2683baa6b0ef9","impliedFormat":1},{"version":"3e7ffc7dd797e5d44d387d0892bc288480493e73dcab9832812907d1389e4a98","impliedFormat":1},{"version":"db011ec9589fd51995cbd0765673838e38e6485a6559163cc53dcf508b480909","impliedFormat":1},{"version":"e1a4253f0cca15c14516f52a2ad36c3520b140b5dfb3b3880a368cd75d45d6d9","impliedFormat":1},{"version":"159af954f2633a12fdee68605009e7e5b150dbeb6d70c46672fd41059c154d53","impliedFormat":1},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true,"impliedFormat":1},{"version":"894dae169f8193e3f07c3fec14149a60592d1f13720907ffdf7b0c05cfb62c38","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e0d35597ff6c5142082e60814fa39c8a2077a58d8a6a262e619afb5f855f6ba","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"228318442187dee1f3b18047e6281d12d59f7b492d6243db4eb720d53e3c03f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"f51b4042a3ac86f1f707500a9768f88d0b0c1fc3f3e45a73333283dea720cdc6","impliedFormat":1},{"version":"a29bc8aa8cc100d0c09370c03508f1245853efe017bb98699d4c690868371fc7","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f95830ca11e2c7e82235b73dc149e68a0632b41e671724d12adc83a6750746d","impliedFormat":1},{"version":"7aa011cda7cf0b9e87c85d128b2eeac9930bda215b0fee265d8bf2cec039fb5f","impliedFormat":1},{"version":"92ec1aeca4e94bdab04083daa6039f807c0fce8f09bc42e8b24bf49fa5cdbbff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"25bfb291668b70290dd646f6e99e681ded0481bc0610d241a229cda07d7af425","impliedFormat":1},{"version":"6c39d4dbdb372b364442854e42d8c473e2ec67badb226745af17ed5ac41ce6f5","impliedFormat":1},{"version":"7693b90b3075deaccafd5efb467bf9f2b747a3075be888652ef73e64396d8628","impliedFormat":1},{"version":"bd01a987f0fcf2344a405e542ee681e420651eaff1222a5a6e0c02fda52343bc","impliedFormat":1},{"version":"693e50962e90a3548f41bff2c22676e3964212a836022d82e49eca0b20320a38","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"300b0c12998391154d7b9115a85554e91632a3d3e1b66038e98f2b9cb3c1061d","impliedFormat":1},{"version":"8d680d5d1a77028ca1708118b8c941edd90a6329f9dc0315ffc3a06b4820e937","affectsGlobalScope":true,"impliedFormat":1},{"version":"8bc550ee45988b123605e2cbba4dc8d3b4153c3d06f59074c7cda5bc3b2f2fd8","impliedFormat":1},{"version":"5293d799856f47259146ccf0be9a1cc0a4a5343696182d7206ed25ea67d67920","impliedFormat":1},{"version":"d7cdb379f1a8febb8ba181b2bba4c89b7f9189c68ce00292253d9f827eb0b2d3","impliedFormat":1},{"version":"fab49059d6c2026bdb2e53e4e5cde1a39da44e61daff1867c8b3b10b507bfe17","impliedFormat":1},{"version":"5a551275f85bcc4003e543a1951a5b2f682cfba9b2922f65ae0df40ab71724a5","impliedFormat":1},{"version":"22d1a3163b9a961dbe78b0aedbd7bcbc071ce1f31efb76eb013b0aee230fef0e","impliedFormat":1},{"version":"c31695696ade4514cfcbb22799997b690d3dca7fb72beab68fb2e73b6ef450dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"d99ad56d57f2c96daaf4475a8b64344b24dedafdb8f3c32d43552bcc72279a75","impliedFormat":1},{"version":"a101ef17aece908c1029a1bd3f97132794dcff21b4ca0b997d9a633f962c46aa","impliedFormat":1},{"version":"511575e18249b64b90d8f884fdb8a383c767d1a7efccd9d66a4e125a4dc5c462","impliedFormat":1},{"version":"6d8001f2c3b86c4f1de1d45ecb3f87f287ed7313d6999f8c8318cec4f50e6323","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d09f4b48899d342b5d6cd846f95f969a401933b0dcd375a8a7e45832328bb86","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c3d1222e6e3d8c35a4293d7a54d4142ebb8f7f70ec4111b8136df07fdc66169","impliedFormat":1},{"version":"70173c475c6e76ccebc37412b02b2e26f62bf45fc1534c3ebe6d7fa60fb88819","impliedFormat":1},{"version":"1c05d80325e7cb8ad9fe6f4f8cd1798ec87607fe523865b27cab9fc5b816f067","impliedFormat":1},{"version":"863bc4e31de6c75423bb02da16190d582b0a69b8964b61d45920e5b2cb3832dd","impliedFormat":1},{"version":"3c92f365d57fd49656e4907bf1d950d4a4060dde7db35effe2f6348e0e800b86","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"6e191fea1db6e9e4fa828259cf489e820ec9170effff57fb081a2f3295db4722","impliedFormat":1},{"version":"aed943465fbce1efe49ee16b5ea409050f15cd8eaf116f6fadb64ef0772e7d95","impliedFormat":1},{"version":"0435070b07e646b406b1c9b8b1b1878ea6917c32abc47e6435ec26d71212d513","impliedFormat":1},{"version":"f71188f97c9f7d309798ec02a56dd3bf50a4e4d079b3480f275ac13719953898","impliedFormat":1},{"version":"c4454589a0aa92c10d684c8c9584574bc404d1db556d72196cd31f8f7651af1a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b17790866e140a630fa8891d7105c728a1bd60f4e35822e4b345af166a4a728c","impliedFormat":1},{"version":"c50c75f4360f6fc06c4be29dafe28210e15c50cd6b04ad19c4808fa504efb51a","impliedFormat":1},{"version":"d4a1f5f7ee89b2afffd3c74282f8ee65b24266c92b7d40398c12a27054ed745c","impliedFormat":1},{"version":"900b5a9802192bc77eba35a5b87ce770df7b867a6d61772c554058c9ed635386","impliedFormat":1},{"version":"65278b3e3cb8e3f0b7bc712e86858ba7695501e76a84eedb730cc15b85d92b56","affectsGlobalScope":true,"impliedFormat":1},{"version":"f43fcf89d75f13d0908a77cd3fa32b9fd28c915deded9b2778b08f2e242d07a7","affectsGlobalScope":true,"impliedFormat":1},{"version":"9b6fc34aca8b0411b96ba35b2315017236a47709a1a98d5e16aed3b84037b9e8","impliedFormat":1},{"version":"aebf613f7831125038942eba891005fd25fa5cadcc3e3d13af4768dc7549161f","impliedFormat":1},{"version":"0faee6b555890a1cb106e2adc5d3ffd89545b1da894d474e9d436596d654998f","impliedFormat":1},{"version":"247e5c34784d185bc81442e8b1a371a36c4a5307a766a3725454c0a191b5cfad","impliedFormat":1},{"version":"1c382a6446d63340be549a616ff5142a91653cea45d6d137e25b929130a4f29a","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"20eb6689443f55ebd33372566b0afad619f1ba48fec4ffb4ab0c119e4fc52eea","impliedFormat":1},{"version":"a1b36a1f91a54daf2e89e12b834fa41fb7338bc044d1f08a80817efc93c99ee5","impliedFormat":1},{"version":"8bb4a5b632dd5a868f3271750895cb61b0e20cff82032d87e89288faee8dd6e2","impliedFormat":1},{"version":"0c1aabfd9fb1818afb2e798f91f669edafce59cd7e3423d25b1cfccfaaf2c403","impliedFormat":1},{"version":"017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","impliedFormat":1},{"version":"ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","impliedFormat":1},{"version":"9ae7df67c30dc5f52b7b21e8bb36fd9ff05e7ed10e514e2d9ed879b4547c4cd3","impliedFormat":1},{"version":"fd6a17c2d015cb2963d62db7566a43818424e8f32eb821fa9b8b142d4ab12664","impliedFormat":1},{"version":"4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","impliedFormat":1},{"version":"e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","impliedFormat":1},{"version":"d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","impliedFormat":1},{"version":"d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","impliedFormat":1},{"version":"5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","impliedFormat":1},{"version":"27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","impliedFormat":1},{"version":"eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","impliedFormat":1},{"version":"52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","impliedFormat":1},{"version":"5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","impliedFormat":1},{"version":"fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","impliedFormat":1},{"version":"d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","impliedFormat":1},{"version":"fc9bdd9b3d8fb59c913cb3b8dea0d79b38dfe9331ef07e1c6dc6bf363f061ad6","impliedFormat":1},{"version":"e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","impliedFormat":1},{"version":"0c3c4ce6a1884610c99306719f59174d81808c69393c30119f9c2aef0449a2cb","impliedFormat":1},{"version":"219a25474e58a8161b242776856ec5f6960839b63e74809445e51cadbfc18096","impliedFormat":1},{"version":"5a0d1534e9493ae44b08b3055172da38370e2afd2bc3d4bea11f7be78344036f","impliedFormat":1},{"version":"6309a45fc3c03d3c4d56228e995d51974f53009a842374695b34f3607877e5a3","impliedFormat":1},{"version":"bef94eba81ae2c09059c0d9abdb1ae1b7090314f70550f3c8cd5d7ead4a4f212","impliedFormat":1},{"version":"48b787ad458be9b524fa5fdfef34f68798074132d4b8cfe6a6fe9c2bf334c532","impliedFormat":1},{"version":"37280465f8f9b2ea21d490979952b18b7f4d1f0d8fab2d627618fb2cfa1828e3","impliedFormat":1},{"version":"c12f3ff5e221c1d3e4eaf47a372b538d8e79bd9a15266c2b049a597da0b86924","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f3f85dc43cb93c5a797f1ff0fa948d0e17843a443ae11a20cc032ccdf1b9997","impliedFormat":1},{"version":"581843e855d92557cbe9dfe242de4e53badae5e9096ca593b50788f7c89c37f2","impliedFormat":1},{"version":"869010bc679df668137cb3b78a3cb8196e97acf285208a57f6156ceac894a2f7","impliedFormat":1},{"version":"bcae62618c23047e36d373f0feac5b13f09689e4cd08e788af13271dbe73a139","impliedFormat":1},{"version":"29a99d2e57b3e08a997cbc2397bdb251441a545306a74b95ffedc5f03d9bc6b7","impliedFormat":1},{"version":"5ae003688265a1547bbcb344bf0e26cb994149ac2c032756718e9039302dfac8","impliedFormat":1},{"version":"09e811cc1088d9ea3a7ddd7290f6a13767f56c85daf8c3374a06a45a08d55647","impliedFormat":1},{"version":"a86053981218db1594bd4839bde0fb998e342ecf04967622495434a8f52a4041","impliedFormat":1},{"version":"5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","impliedFormat":1},{"version":"7b270dc53f35dd0b44bfa619ad4d351fffd512e14053c3688323ed007eda3f6d","impliedFormat":1},{"version":"6d4e928f232ade7221cffc6e4332ec935baa176415c9bf5d12111bb883a247d2","impliedFormat":1},{"version":"e86ad029224d4f2af3e188be8b5e9badf8c7083247572069bac7bd2193131fc7","impliedFormat":1},{"version":"057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","impliedFormat":1},{"version":"d94034601782f828aa556791279c86c37f09f7034a2ab873eefe136f77a6046b","impliedFormat":1},{"version":"105ae3dd61531488194f412386ba8c2b786f1389ac3415098cc47c712800da29","impliedFormat":1},{"version":"45851fbb6595233ecf6be213f74f00690c752782387796c66ea186750f831d06","impliedFormat":1},{"version":"4ee905052d0879e667444234d1462540107789cb1c80bd26e328574e4f3e4724","impliedFormat":1},{"version":"151659e152d71986b8943b9943cd7fbe27a65874655081602de7ea24a0f66e9b","impliedFormat":1},{"version":"3448e2fa1ae3a52d50e1e82e50b6ae5b8bd911004a8824b0c6b26c8cdcd15fec","impliedFormat":1},{"version":"c0c0b22cefd1896b92d805556fcabda18720d24981b8cb74e08ffea1f73f96c2","impliedFormat":1},{"version":"b97e6411a3ee83e6f77760f0400d117313a980d05ec89f1e1a7502229e36d060","impliedFormat":1},{"version":"270418f8a6639be745d14bfd085e62685f24eaa6d6482aa9803bae8b8b93919a","impliedFormat":1},{"version":"4cb33d05ff168c1ca836d6d438f93040972af43fc09774876c4add2ad96d125f","impliedFormat":1},{"version":"902d2b66388607197ec48798c94a6ffc657fe1cfbee15e49b6b3052de0e5b8fa","impliedFormat":1},{"version":"38104b9a37d0b9dc54be36ae43b1a32f9cfae34742743bfd7104cf1f39661225","impliedFormat":1},{"version":"47ff32ca9ab8474e89615b4bbe5f2264c2940fc12b86c4dc0a99659479517a6b","impliedFormat":1},{"version":"f892f85b4838f6a2ff1438d240dcf23a872d090794967c7f817a82ea8da1ad8e","impliedFormat":1},{"version":"cb498c53a9d35ac1cf9a3515f3835d48b4626a612cf7540c5bfb99542c9ab1a5","impliedFormat":1},{"version":"b86e64c48044bb73c6de7aa2cdf9295b2c104221e6a68b408225b283d1bcfda2","impliedFormat":1},{"version":"16173f5b3e68a373e7dfe6d00948549facc9947c9dbde813f1efe3a0f236ff6a","impliedFormat":1},{"version":"f457fc1b7583e1215393db13b95a186593660aad29706515ab7479869bc585e0","impliedFormat":1},{"version":"a11288edc8161f664148ea7d56101517e380335f5fa1a94408db86efce025bba","impliedFormat":1},{"version":"0e2a6b2eeadafbc7a27909527af46705d47e93c652d656f09cc3ef460774291b","impliedFormat":1},{"version":"d6d561bf4309a197e4b241fb0eacebf14c400661c4352676cd3c88c17e5ab8a2","impliedFormat":1},{"version":"ed012a19811c4010cb7d8920378f6dd50f22e1cf2842ecb44a157030667b165e","impliedFormat":1},{"version":"4085ac780790cc5787e375bd6c7dc149610665514e1d3d8fb65aec29efb691c9","impliedFormat":1},{"version":"7634eca84d60522b68ac679813fd9247a4260f7412890e924c7779758f8d6391","impliedFormat":1},{"version":"b4ff74f0589487410168be50e3231caf687c5e1302266709742382e8d004fe1e","impliedFormat":1},{"version":"406f227eebfe8be216d7a4b215ed09198b0c2f6599f2273b69ee5b75824c5435","impliedFormat":1},{"version":"e7cd1d6f8afb317dca8c5b6a60d5cd55aacf8d9ed8ae39f22e3104ed0c479552","impliedFormat":1},{"version":"75c9a36ada92da43627b5cf1142a6fe20f50ad00abacb90204b74b19775521c2","impliedFormat":1},{"version":"8a90f97fdb10d83c6842a699c3df474246755f4fbf3ee2d35e69d6599fe9092c","impliedFormat":1},{"version":"88aacf6e2493633490812c70595b517c8e4299f054d28a51687b10f0968276c3","impliedFormat":1},{"version":"f6cae2c0acda884c4b9dec4063d062252cf0625a04ebf711a84d7de576427c3e","impliedFormat":1},{"version":"946739ab9acb2fccd0b2e5a0d1ac4dfe69b9279f33a26e7f0a7a7ab24ee343fc","impliedFormat":1},{"version":"d037b771e89ef6dd81c71de92cc644d68b1b5d1ce25dbce9c2cfe407dd0b5796","impliedFormat":1},{"version":"25091d25f74760301f1e094456e2e6af52ceb6ef1ece48910463528e499992d8","impliedFormat":1},{"version":"853d02f4f46ca9700fefd0d45062f5b82c9335ba2224ca4d7bd34d6ae4fc4a7f","impliedFormat":1},{"version":"ab679e25dcb5d085ca42c33ffc8e2fc48411f81ad3108a3aa81eca79c104ef95","impliedFormat":1},{"version":"b901209745b3cef4b803e42731c40f5c2c2c7101bbd5f481c0fd1c43f9f440f3","impliedFormat":1},{"version":"cf6dc8f18bc5ee063dc1a37bccd3031dc0769f11622399018c375aacfcbda7c9","impliedFormat":1},{"version":"8ca2d01f5f3d4d4067aadea230570afa4c91e24e485fbe2e9d53ead3b33f80d0","impliedFormat":1},{"version":"9230a7b03ae3cce93e94a2cc844da1e5414d2be7505ecc82402094a132cfbbda","impliedFormat":1},{"version":"27350a2872f30b97e947f52ccf15654239eda7c9ff35135a1aa82cc37642fdeb","impliedFormat":1},{"version":"ed3e176bc769725ebc1d93f1d6890fc3d977b9155ae5d03be96ec2d49b303370","impliedFormat":1},{"version":"7933769d84f5ae16546aef06537ca578f1c8d7cca0708452a00613050ac1f265","impliedFormat":1},{"version":"d405963c5f69955e95c30ef121c7a3309f214f21ef09dceb5d7ac69557cbe0fa","impliedFormat":1},{"version":"29c7276f64f0de86eb981ddd4e5a8e7f832fc8d4e712c7e8e1beab6af8cc4147","impliedFormat":1},{"version":"6f11170f0056f1681101d9a1045af3c0d2ea489f14d1a0d4c0b2cb7860cfb8f7","impliedFormat":1},{"version":"fdd84224998f5f4d97017b829548f1fac4ac803025e16c27d4fc7f3426c6261e","impliedFormat":1},{"version":"1591996e71f1aab2e8726d7d04d59a3e8f5162578bee747e883932cfc0b57b2a","impliedFormat":1},{"version":"f8ce447bbda4f75da74cecd866cc1ff9bdde62189ac9d8dc14a16c48b3d702fa","impliedFormat":1},{"version":"da3f7f511c344fb56275cd954156a4d736c9f414f9b84bb0ee229ef583e38074","impliedFormat":1},{"version":"c7d30b164562b7ce99fcb53ab78f937cc845e003f6089d648351331921379994","impliedFormat":1},{"version":"fe2d1251f167d801a27f0dfb4e2c14f4f08bf2214d9784a1b8c310fdfdcdaaea","impliedFormat":1},{"version":"2a1182578228dc1faad14627859042d59ea5ab7e3ac69cb2a3453329aaaa3b83","impliedFormat":1},{"version":"dfa99386b9a1c1803eb20df3f6d3adc9e44effc84fa7c2ab6537ed1cb5cc8cfb","impliedFormat":1},{"version":"79b0d5635af72fb87a2a4b62334b0ab996ff7a1a14cfdb895702e74051917718","impliedFormat":1},{"version":"5f00b052713bfe8e9405df03a1bbe406006b30ec6b0c2ce57d207e70b48cf4e9","impliedFormat":1},{"version":"7abcae770f21794b5ffbc3186483c3dbcf8b0c8e37d3ef3ed6277ece5c5dd4be","impliedFormat":1},{"version":"3e642f39da9ad0a4cd16ccbd7f363b6b5ad5fa16a5c6d44753f98fc1e3be9d96","impliedFormat":1},{"version":"7f5a6eac3d3d334e2f2eba41f659e9618c06361958762869055e22219f341554","impliedFormat":1},{"version":"6f996f44113b76a9960d3fad280f4f671115c5e971356d1dbb4d1b000af8b3b3","impliedFormat":1},{"version":"67f2cd6e208e68fdfa366967d1949575df6ccf90c104fc9747b3f1bdb69ad55a","impliedFormat":1},{"version":"f99ab9dffe6281c9b6df9ae9d8584d18eabf2107572bbd8fa5c83c8afe531af8","impliedFormat":1},{"version":"4fc9939c86a7d80ab6a361264e5666336d37e080a00d831d9358ad83575267da","impliedFormat":1},{"version":"f4ba385eedea4d7be1feeeac05aaa05d6741d931251a85ab48e0610271d001ce","impliedFormat":1},{"version":"f5405fb679a467cb979f8744940b22b7bc3a0bcbe648c3910d98de3188d42a78","impliedFormat":1},{"version":"68969a0efd9030866f60c027aedbd600f66ea09e1c9290853cc24c2dcc92000f","impliedFormat":1},{"version":"fc79932b9aa710f025b89bf8d8329d99080286e5e079a7d5a529236e9f5dd69e","impliedFormat":1},{"version":"6646d9075e3e0eedb02c9d03bffef54c8bbeb601d27eed46f143aba435bac37d","impliedFormat":1},{"version":"0dec72b4c5c4bb149750fef4fc26bdae8f410de941ee766c953f5ac77381d690","impliedFormat":1},{"version":"8f2644578a3273f43fd700803b89b842d2cd09c1fba2421db45737357e50f5b1","impliedFormat":1},{"version":"639f94fe145a72ce520d3d7b9b3b6c9049624d90cbf85cff46fb47fb28d1d8fe","impliedFormat":1},{"version":"8327a51d574987a2b0f61ea40df4adddf959f67bc48c303d4b33d47ba3be114a","impliedFormat":1},{"version":"00e1da5fce4ae9975f7b3ca994dcb188cf4c21aee48643e1d6d4b44e72df21ee","impliedFormat":1},{"version":"991fd5ebf9f30ffa17cae6faeae6a838d3d91bdcdd419bce358dc99b8e5b0ad0","impliedFormat":1},{"version":"4d250e905299144850c6f8e74dad1ee892d847643bacf637e89adcce013f0700","impliedFormat":1},{"version":"51b4ab145645785c8ced29238192f870dbb98f1968a7c7ef2580cd40663b2940","impliedFormat":1},{"version":"589713fefe7282fd008a2672c5fbacc4a94f31138bae6a03db2c7b5453dc8788","impliedFormat":1},{"version":"26f7f55345682291a8280c99bb672e386722961063c890c77120aaca462ac2f9","impliedFormat":1},{"version":"786691c952fe3feac79aca8f0e7e580d95c19afc8a4c6f8765e99fb756d8d9d7","impliedFormat":1},{"version":"747d6d391f97a46f6880e10c8e4858bbd6568070a0f9af0ec74c26475e2c885f","impliedFormat":1},{"version":"354f47aa8d895d523ebc47aea561b5fedb44590ac2f0eae94b56839a0f08056a","impliedFormat":1},{"version":"62b753ed351fba7e0f6b57103529ce90f2e11b949b8fc69c39464fe958535c25","impliedFormat":1},{"version":"514321f6616d04f0c879ac9f06374ed9cb8eac63e57147ac954e8c0e7440ce00","impliedFormat":1},{"version":"ce7b928daedd974205daf616493c6eb358069ed740ed9552c5f4e66da19fd4bf","impliedFormat":1},{"version":"b1aa0340d4248aba8e36e7d246b223e3ae89fb27f167f9e3c7b14838bb41b13f","impliedFormat":1},{"version":"620290e7cd91726a13ce06daf8437b37f4bf782c755674a41d881c2217a35830","impliedFormat":1},{"version":"e06d050ebf5ab7ae4506d7de03d369e5f2f7c96df0e4ba6aec7a6b2450c039d0","impliedFormat":1},{"version":"88c0699b282331433af615deb79fcd6f8e815e93bd40dd7200c1e3cdf052e5a0","impliedFormat":1},{"version":"cf8659543b380c9cf02c88e231eaad406f323f6b1d3eb877d4cad9ff0408974f","impliedFormat":1},{"version":"a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","impliedFormat":1},{"version":"84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","impliedFormat":1},{"version":"415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","impliedFormat":1},{"version":"901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","impliedFormat":1},{"version":"ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","impliedFormat":1},{"version":"b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","impliedFormat":1},{"version":"ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","impliedFormat":1},{"version":"068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","impliedFormat":1},{"version":"3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","impliedFormat":1},{"version":"fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","impliedFormat":1},{"version":"d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","impliedFormat":1},{"version":"3f6af667357384c1f582ef006906ba36668dd87abe832f4497fffb315c160be9","impliedFormat":1},{"version":"363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","impliedFormat":1},{"version":"c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","impliedFormat":1},{"version":"2f1a8ca9846d9ac5481544b5b53811efe2c44bba9195af584136fb34371d5e23","impliedFormat":1},{"version":"1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","impliedFormat":1},{"version":"ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","impliedFormat":1},{"version":"d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","impliedFormat":1},{"version":"4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","impliedFormat":1},{"version":"7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","impliedFormat":1},{"version":"ea2de1a0ec4c9b8828154a971bfe38c47df2f5e9ec511f1a66adce665b9f04b0","impliedFormat":1},{"version":"c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","impliedFormat":1},{"version":"4ef0a17c5bcae3d68227136b562a4d54a4db18cfa058354e52a9ac167d275bbb","impliedFormat":1},{"version":"a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","impliedFormat":1},{"version":"64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","impliedFormat":1},{"version":"c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","impliedFormat":1},{"version":"b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","impliedFormat":1},{"version":"434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","impliedFormat":1},{"version":"c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7","impliedFormat":1},{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","impliedFormat":1},{"version":"81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","impliedFormat":1},{"version":"4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","impliedFormat":1},{"version":"f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","impliedFormat":1},{"version":"1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","impliedFormat":1},{"version":"ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","impliedFormat":1},{"version":"ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","impliedFormat":1},{"version":"f7a8f4bc1e8e786c6115970b8f3ed4797be48108de00b3552bf590706d3a5e8a","impliedFormat":1},{"version":"ce096c727f1ae221bd35b46dd3e050bf3909674e6e9ec1518b3a5aa89ab2a497","impliedFormat":1},{"version":"1a8e6a4f31a5196144f35d0434e16369881d828c849d6a1c9290b6bde8807449","impliedFormat":1},{"version":"42a9ac86df0fa58634ea8a5f7f07b9b9c3243d82e306fb22d8a41639935a6c87","impliedFormat":1},{"version":"5766c26941ae00aa889335bcccc1ecb28271b774be92aede801354c9797074bb","impliedFormat":1},{"version":"3a19286bcc9303c9352c03d68bb4b63cecbf5c9b7848465847bb6c9ceafa1484","impliedFormat":1},{"version":"c573fef34c2e5cc5269fd9c95fe73a1eb9db17142f5d8f36ffe4a686378b8660","impliedFormat":1},{"version":"d97e30dd93590392fed422f2b27325d10ab007d034faaaf61e28e9ddc9d3825b","impliedFormat":1},{"version":"d1f8a829c5e90734bb47a1d1941b8819aeee6e81a2a772c3c0f70b30e3693fa9","impliedFormat":1},{"version":"be1dfacee25a14d79724ba21f1fde67f966b46e2128c68fed2e48c6e1e9822c5","impliedFormat":1},{"version":"19b3d0c212d241c237f79009b4cd0051e54971747fd89dc70a74f874d1192534","impliedFormat":1},{"version":"441751fb3deefe98952ba09b3c5a583c66aa2c9a1abe5e9dba6064a55f5a7678","impliedFormat":1},{"version":"c211816fd9af3b1541c812b859c769958d5e5b85b81da832eb2bcdf98342b054","impliedFormat":1},{"version":"7639642137f8329ef4a19410ce8d3e46910a76294df263f46b428fd61c79d033","impliedFormat":1},{"version":"8e69efd9afdfcd34d85adb6d8e71a5e13fea2a33c7019dd624cc7696772183a0","impliedFormat":1},{"version":"a7ebfe3e2c8f4fea5dac7ffbf6d00acee63c530de24d57cdeeed05530285ca26","impliedFormat":1},{"version":"82b4045609dc0918319f835de4f6cb6a931fd729602292921c443a732a6bb811","impliedFormat":1},{"version":"0fd70ca1eaef1e2dd6f48f16886df4838664821d992fd8076d07fc15e83c8498","impliedFormat":1},{"version":"ba30e6d2f1d20c707566cf485167331a10c539802a79040ced055b62a7aae53e","impliedFormat":1},{"version":"642eae3e9ec5997883f86dd7346d818f07d40fb83cc3530f0e52e232ffb4e631","impliedFormat":1},{"version":"29a6df727893a86807f4dc02116c31d9e6097139579ed6e8029b14c526cba027","impliedFormat":1},{"version":"537a2b61594512c5e75fad7e29d25c23922e27e5a1506eb4fce74fe858472a6e","impliedFormat":1},{"version":"311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","impliedFormat":1},{"version":"7c07838da165fd43759a54d2d490461315e977f9f37c046e0e357623c657fc42","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"115c8691bd8fac390f6f6eef5b356543d716da7cffa4c2f70f288d56c5b06aeb","impliedFormat":1},{"version":"e91516e66f9fbf39c978a4092c16ffda3bb0b32158fca6def75aae9fab358153","impliedFormat":1},{"version":"abd4563a6a7668fa6f8f5e5a425a0900b80fc2309fec5186e2cae67f3ce92663","impliedFormat":1},{"version":"cb48f3011e72efef9d5a5b312f4a956f699b8d423bf9f2772724cdded496bd50","impliedFormat":1},{"version":"9aed07904079877252e6c0aedf1d2cf1935ed91d4abc16f726c76b61ea453919","impliedFormat":1},{"version":"6621af294bd4af8f3f9dd9bd99bd83ed8d2facd16faa6690a5b02d305abd98ab","impliedFormat":1},{"version":"5eada4495ab95470990b51f467c78d47aecfccc42365df4b1e7e88a2952af1a3","impliedFormat":1},{"version":"5fc0957ee8e15821ddb30a76e74e7984953fc35611a57fd703e624bade5836b9","impliedFormat":1},{"version":"40e9c2028b34c6c1e3281818d062f7008705254ee992d9857d051c603391e0f4","impliedFormat":1},{"version":"4720efe0341867600b139bca9a8fa7858b56b3a13a4a665bd98c77052ca64ea4","impliedFormat":1},{"version":"566fc645642572ec1ae3981e3c0a7dc976636976bd7a1d09740c23e8521496e5","impliedFormat":1},{"version":"66182e2432a30468eb5e2225063c391262b6a6732928bbc8ee794642b041dd87","impliedFormat":1},{"version":"11792ab82e35e82f93690040fd634689cad71e98ab56e0e31c3758662fc85736","impliedFormat":1},{"version":"3957b1244f49991b89f12cc45942c24f9c5927dc72677b105bb896d316f0454e","impliedFormat":1},{"version":"6c53c05df974ece61aca769df915345dc6d5b7649a01dc715b7da1809ce00a77","impliedFormat":1},{"version":"18c505381728b8cc6ea6986728403c1969f0d81216ed04163a867780af89f839","impliedFormat":1},{"version":"d121a48de03095d7dd5cd09d39e1a1c4892b520dad4c1d9c339c5d5008cfb536","impliedFormat":1},{"version":"f6d55e607f55be35a3c481b7685461a9acc1e27b893839218eb9313f7e85278c","impliedFormat":1},{"version":"b394ea95c82281d184ea83e8511bd1a43f78d6908eb34b536446d3eb08f9d47f","impliedFormat":1},{"version":"41edf4071b119fdf28b46a3c28c0845f2598bb8b196e7e4c9e01415403fdaea5","impliedFormat":1},{"version":"2bdf3bcf1a9771a288a783d1e8ee5d1d3126c11ddde26ae44864ab432192a6f6","impliedFormat":1},{"version":"603bafdacee4c8850ef5820f8642a817a3f0db6f76dda0474bcf3d17c2e15398","impliedFormat":1},{"version":"a10c79ab97c8a4f6074203094dba87bc736ca574ec480be1df6ec2c82d774573","impliedFormat":1},{"version":"801f049a9e74e941e8ca8add60492aaf4ab717a166248d355ded5753d80f9a85","impliedFormat":1},{"version":"70bba0a9c9c2ad7a042e134a840c4d8462bf0ad98e41c50ca52725ae47265eb9","impliedFormat":1},{"version":"f4dc28fbbba727722cb1fd82f51a7b9540fbe410ed04ddf35cab191d6aa2ba10","impliedFormat":1},{"version":"1db9e7d40d7ffade5bd15ce84936997bb9d159d37668c9d8955993753bbdfb2c","impliedFormat":1},{"version":"047f85c429fbee7423e723a6232e527d69b65c3399880ed8ff0842e29c497c20","impliedFormat":1},{"version":"9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","impliedFormat":1},{"version":"526ee815290e47e75fd2105f83de0916689cc532a19c81620672342f6478095f","impliedFormat":1},{"version":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"8bfba49493f92a72cdffe5b9947c3f572c9301f4e95a471027d0022e8d9b5d97","impliedFormat":1},{"version":"fa90f0cf69cd9296a6c0c43419540ba8e734ab9bf98eff6576bb5f04ddfea175","impliedFormat":1},{"version":"b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","impliedFormat":1},{"version":"68adf02128cad117e068f53ab334cbc730bcfeb7d658d8ce8118da6770b7e622","impliedFormat":1},{"version":"54f0dd6c08d5c8c6aea538ccba54b95909d194f4e2204312b3974eebe6204a8b","impliedFormat":1},{"version":"2d10d8e7f884bbbbc1dc980464cd36346f2b2aa21bb2c049d21b381053bafbbf","impliedFormat":1},{"version":"7f1567b9dfb571a80556155a5bff1c946b23e74443466689bed24095604b3a9b","impliedFormat":1},{"version":"b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","impliedFormat":1},{"version":"51796c3726bf734b061fac41b479a660f9afccf50b8b493835e204723d23a84d","impliedFormat":1},{"version":"c2b694d903303007a430acf66980f3b503dbd4e50cf6c183af0daf39c8d79ee8","impliedFormat":1},{"version":"a945cfe6ca774e53111b0cfb6b767261352dc6e15d27641b61e5c634b4a729c3","impliedFormat":1},{"version":"3c10545e61e9428bebdc65fed8d11e09d203afb4745eea11b98be7b218a2aeb1","impliedFormat":1},{"version":"fde1236eef449f111d0eb306a5245dab335974dd0ccac39223ea200907c27a8b","impliedFormat":1},{"version":"c1a5f70e04c94e202ef756018ddacc22e752ee3e5eb401170a2dca2773877277","impliedFormat":1},{"version":"f4bedf06294a6a4d28179ee9689f2d8e00ad4d9806a99b234c2a58f1c9147acb","impliedFormat":1},{"version":"91d68d8136434dbe13c34fe6ef3fde75791f9be128ab6b4312d1699e1fcd9859","impliedFormat":1},{"version":"260c24d1b8fdb9284ffd93112fb4141e94970be4ff2ca23ca60b361dab39eee2","impliedFormat":1},{"version":"cb5327ac944956c162522b4388a74a4b3151e2ba3fd5b057ad13a452b2c30189","impliedFormat":1},{"version":"7bac1d3d9a1f0290c91e88426dab334d9d31a712647df5fb5666ad7acb3d53bd","impliedFormat":1},{"version":"41d461c745d59a6e125dbb554b814bc99a9f072325ffd3c8407809378995fdd4","impliedFormat":1},{"version":"33589aa637b92a02e6138fcaab28454fcf35a5e7d4cf91343c83342715f9b55a","impliedFormat":1},{"version":"ac13ba680450baa70ac9e9a2f02b50ae43437fd23d76bf9215a6a5b429455010","impliedFormat":1},{"version":"8b325ba54f25c33b38550f76a31afb82db9d7f4b1891276eeae5aba2f2d3bc30","impliedFormat":1},{"version":"eca427f98f87824d62688c987be1b6fb5dbd2c21a71fbb42702c7e365d0309bf","impliedFormat":1},{"version":"93c931504d284fb193a7cce460e4c2d30d4ed247e246e1f214a8064e95198ce8","impliedFormat":1},{"version":"ce972ae1cfa1741dfc7d5b8caeaabfb696023f45a80c0d71fe55494604cc78c8","impliedFormat":1},{"version":"6360869b4f8e9b942293072189349e2c1a44cc3cd6757e83cc62619e6abb01ad","impliedFormat":1},{"version":"f3ac122e178b71c8d2e74f85d0d0ead1ab592efd4ca989db632bb2f5ecbea484","impliedFormat":1},{"version":"2db9f3f74d99d1d437ca92760f510c76e9024d372506266d8443745eb77eff4a","impliedFormat":1},{"version":"e6bd80f63b2290bcea0bcd06002a19739050f188a8accebec706685cda627755","impliedFormat":1},{"version":"6717f2b01e15e479a01d76258afb0d5f8130fd5d6759a04cd60fde5587549efa","impliedFormat":1},{"version":"0e841b93051d30dc91ae7ecbddb1d89152875ac2e92a18f57d26a135466ba5a7","impliedFormat":1},{"version":"42afd9d91bce6d077990a4f3628bcb7f8fe1bc0397ae481bdf54d6fc7c5cd3a4","impliedFormat":1},{"version":"12f6e76f5766ffb9aaf71adbf0a46b8dca86c59982cbe16a2addb87b68c8b937","impliedFormat":1},{"version":"ec8bff9f60af63c0d12517026faff805a05ae930848edf9f35ef27cf8b0f8478","impliedFormat":1},{"version":"2b26174b7cae62f9d9843b5cab80a844fcf530b528348717180a2e60fcd8c53e","impliedFormat":1},{"version":"16189422d0a96941777ea137f472b05a8dce2c530b4e61970c9412e0a139f9b8","impliedFormat":1},{"version":"373f28376805407a378a80ff2b08c56fa0bf7ac76e5abdedb5a00a4aca2ba9f6","impliedFormat":1},{"version":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"8edadbdab1f9f41f86b9bf0151213fbc7778a337703888ebacf017e73738fa00","impliedFormat":1},{"version":"675d65b49d00d283578a569e662548c2a55a95d7c1a211f9e9a32c6e1398dce8","impliedFormat":1},{"version":"4d11636fad62a75861b44b117d7237d38d957ddd51e09f4021f8b86acc2349b7","impliedFormat":1},{"version":"dbc85ae54cb8da38556b3dc33522159c8a5558c79568edbe4977226764e51219","impliedFormat":1},{"version":"7bf23edcdb0ec0715b7f7b85695a1078a132067c495efa8f6cdcda9359659f9c","impliedFormat":1},{"version":"4ad28da36ad48edec414054e1daef40c1016357b188eca0f72977f30222d9c02","impliedFormat":1},{"version":"6c4032871e6cfcbf2356a398c14a23a54af756bf7a5aff43cddb96b09469248e","impliedFormat":1},{"version":"81f20249f433350a8e13cbb9206779e667f0d5e5ac4b8f014cdf6b6e42a136fc","impliedFormat":1},{"version":"c7185143683e9ba278420520af2e2a80dd911e88e5c08c56405b2a65996e2a1f","impliedFormat":1},{"version":"ca642739f49fb9d709f726a6447cefcaf21d8ccb16595724c8929b515a08ef53","impliedFormat":1},{"version":"42adbc164a978ef94024a312dd27e2415fcf034ca6e1ada520b40582704b3e47","impliedFormat":1},{"version":"4c3e6490ded76314f8115ca4657084c5bd53560db3b366e871c2e44b44437e4a","impliedFormat":1},{"version":"5c44dc0b569cde877bdd06ce1124acd6ae621d0a5dfc65a6668e13b85ca54d55","impliedFormat":1},{"version":"4bc6dbef10e6d46dad778f5fc190eef94e5568d612140b8791b00b01882ec1d6","impliedFormat":1},{"version":"3bb26409311deb6bb7a276fe8af90048fd1146f73881ee9826821df71d11980b","impliedFormat":1},{"version":"e463cc21447f0a1aeeeb793f51f4c165be1cec7583c15f68b8a1703c343a6cca","impliedFormat":1},{"version":"3ba99b530549ef5f440cab610ca72cd7bdc1aab48ba22d24bd00a931aedff21a","impliedFormat":1},{"version":"961b6be59c5412c31652e65cc3e0b0a0ea8a4266849d10c90ad1eca0a95cb581","impliedFormat":1},{"version":"edbc215ce53ffa2a13e0c216d589fa47b37379bf10ea386ef7ddcda4dc91a328","impliedFormat":1},{"version":"e135af5c48d2dfc0c658e06827798aae78a97933bbdbaf8e023ee003d47651b1","impliedFormat":1},{"version":"529e5b8f3b7ad6bbb679268c7c9f29dcc0670e511574197e9755fbd2d70e1c97","impliedFormat":1},{"version":"4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","impliedFormat":1},{"version":"e35526a0977b9cd80f799aef3314cb2bfe66aeb40879c888f7a993bd3437fc42","impliedFormat":1},{"version":"81d92e5c4d618ba0660121ed30c603e8111ad605e7562948f7430d87038daee0","impliedFormat":1},{"version":"36990d934030ce1060f203c4b45ee7a811aa11aaa4d075bb81c2748da8329607","impliedFormat":1},{"version":"0ae845a8508fbfe0344eb505ddb4a4e5a8759f5ea4608bfc5f3f1b9ea51d76b4","signature":"611c3555ebe13d9820f48a53bccaacf5a2e1e0df64d719cd9e2fba33f2791f8c","impliedFormat":1},{"version":"bd0b6d0720c8b9fb5983761df5b57d6dd6646baf9cc438985f1b53d395aad3d0","signature":"eaba02405aff070bc130d8ad89fed3fe6a7c58493f2792406d671283c42d070b","impliedFormat":1},{"version":"67543772f3c75dc5a2d827c954cf0fde958401e96a6e921fbf6079ed7f4f4daa","signature":"a154d3346d8bc2536064abd3c3dcd962ab394ca73cebfceb0a3723976416f049","impliedFormat":1},{"version":"04c72d6fa3275b08865357900ba7580a5c9e31692a12641a25665fed8411c8b8","impliedFormat":1},{"version":"fad2e326af305b648dd46cac96bf31c88f508823cfea877fae79a9b01dd4d524","impliedFormat":1},{"version":"45e0dd06a42ab62f879b1567438bce5b85eee9c6875685ca2c6ca10f978038b2","impliedFormat":1},{"version":"ad5976f5c289f6720287944a265db0761709be06d5331fc37a1b2999fa13bacc","impliedFormat":1},{"version":"15ffad7691bca48369580748c576e889f19700b8b3a1bfc6586beab673a87956","signature":"9d33b8675e7074e5fcdbde477a40a2ab0278bcef7fb64cc28aa75846d3402bdc","impliedFormat":1},{"version":"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","impliedFormat":1},{"version":"0771ddb474014581a882838fd20e25e829038bb53c127c5b339812f749f6aa3e","signature":"1f9165291e6b94fc61224a00ccf17997125f8148aa244fc533c58557e07641e4","impliedFormat":1},{"version":"d59857b5ae5e3a693c3a2966fe3799ca0ee3c9ff9f3b3e2706cc31bd9f3d4ec4","signature":"5f46441b319013cfcc9e00c60f9f96162b8b7391d4ccae9c511f752812ee3e3a","impliedFormat":1},{"version":"952a60f7c6c46b683f6e0804d1e8e46244e90a68cdaef3d426708e0c82edcd94","signature":"8b3603d15e3899df5abe14590f4549414118396c49c75e4cf6f0e944079ded78"},{"version":"d62c0b0d23609a485dff9b8ed8e9af9c56b8789dc70a07d4bdbb26f16420b249","impliedFormat":1},{"version":"a2609926cd0259b582f55812d4ea93ff0440e38dd015bdb95394b26ad3d34cd1","impliedFormat":1},{"version":"2bdaf407163ca9ca9bc3c1d3fb78ad26b6bd2f7d68b04810fc28072925a95e9b","impliedFormat":1},{"version":"95347f256453f88602fcfc792b0ccea75f330aa22150bd95a6a8bb034a20ba14","impliedFormat":1},{"version":"dd2505eec07d3d341be4322f9f0380b5196f2b163944016227bb599dd89136e7","impliedFormat":1},{"version":"f9dfcd54e603db0684207424124c340a7eb0e61807ece0cdb51a8801c47c9155","impliedFormat":1},{"version":"ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","impliedFormat":1},{"version":"970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","impliedFormat":1},{"version":"e81c6b5f3f287690f7400c7468dc2bf21e621902dc1b6f98236e38235c0dfc68","signature":"9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","impliedFormat":1},{"version":"e50222c22db171b6e6f102dad414ba90b1ad3802537779e838bed86ff506cb28","impliedFormat":1},{"version":"4c36f9d0ffb25cf61b696b2777ba06d553d1b0cfd12d9eed8a1e3b1a50beb2f7","impliedFormat":1},{"version":"dd478451ffa00f4352bffe4f55b4531c8dec0edafb5777272089e5127dca808c","impliedFormat":1},{"version":"aedddd59fc4889fcdeb54a3b2a4943736f282c00db826ff710acb6bc91873b0d","impliedFormat":1},{"version":"5d9a5cc1712870f91f66850e7056e0d03b4046de5558a00e7190b6a9c2f7d432","impliedFormat":1},{"version":"0daf877cd2dcb81c0e39a96ee20262dc07ecc6f68d65cdb9cc6e6cf2f31d29c5","impliedFormat":1},{"version":"6206a6984c6210c7e02e8cec6c2417f6d2458ec36ac97b80ce9f894933a08082","impliedFormat":1},{"version":"d686fcb07a661fef0866137e450a487e710c233cb24f04d11426228162595d7e","impliedFormat":1},{"version":"e21af678a334e57edb0948acafa5f8d029a86c515f74b35701de2b7f0734ed78","signature":"97f2cb77a51ab49d71bdaa169999f503dc91a1261817c15463528d6d7a2dd2f9","impliedFormat":1},{"version":"8e3f8a63b6af3fd917721cfe670eedf5aae7df605d0072c5997021eb6fbdae31","impliedFormat":1},{"version":"046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","impliedFormat":1},{"version":"26b82a7ff864d0e68bc4578771898b91feabcb39dd6371970fd012827bd684f1","signature":"60e6faa0a819d40da14f63177e8f2f7a2c75c4f5925b7ede9d8bc13487d6384a","impliedFormat":1},{"version":"e2264b7f593788fca68253d204722139971cefcc19f01a9540b40e3c6a824152","signature":"68169677a1fbd913f4421ffc3fcafbec03a6bf3ea250249a18fb415f8f4a1746","impliedFormat":1},{"version":"a6260e50e119a4ae143e080cb69501b76f70b55df4f40b3874ee785277003570","impliedFormat":1},{"version":"311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","impliedFormat":1},{"version":"c032a9b7dfc5f9b86ac5b1535fe72154dc48a7f89f76c5cb4e8a6ab4db203671","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"23fa431c1549a548df67056c34a9ea3653b50266d77653a406ff5a67a7f861aa","impliedFormat":1},{"version":"1b1fc8e3cac6cd35e6ecae8aa8bda1f7c402e7786ca262ea6294c907c5b00149","signature":"a3aef4923a8dde677e086f9a6c3f5272a7881517658ff401ec47931829da2075","impliedFormat":1},{"version":"403ba71e387291ed9129e24bc76c9fdef4d563d0208baff9ac4f673d6ec2170a","signature":"1d57041f2cc69ae090870690d2171110a9b672d2b2a2839ace0f59bbaa67cc56","impliedFormat":1},{"version":"60a0074289b6584a0d7003c2aa14d9ebd0027e423deb79e08031b7e708770c98","impliedFormat":1},{"version":"d62b7fb6c39357289ba064887935b0966cd99da5a3bb63afc1d6ea4f82ab23f1","impliedFormat":1},{"version":"7a8e7fc0c0b3c6f0344a6b54a56e928aba5b2bde679ca742acf67aeb67e6f9d2","impliedFormat":1},{"version":"189150e785626242df43edde2e537ae48b8d8ba0c93e78c2478c9ce738a14cfe","impliedFormat":1},{"version":"b377fa259d15c6e3c0fc2804530f1c7448906df2b6afdf6ddeff61a75016cb28","impliedFormat":1},{"version":"a26bb2e2693f921f4aa3f6e8c04a18d07c6ab6c3162c426299e0d0a904d76d82","impliedFormat":1},{"version":"42e7c31cdce8294ad4852d465b2dd91307efecfd7a9889f2a0aa49ffca73e83b","impliedFormat":1},{"version":"7922bdca92b1a6f586e9403b2b7972200aae00f926a300e79bf2d62eb410714f","impliedFormat":1},{"version":"d3abaca0cd59f25b4e056681217d1f8674612071706e6825517ec9e264063e55","impliedFormat":1},{"version":"76a7145b39ac6cc3633e2ccb545e9db3e5a02c7e0bceddbb5abbd3b2e1fba32e","impliedFormat":1},{"version":"a3cf3aa8ec934a46e5d10922af944c14e1b73acb81c4ba90348bee40a829b26c","impliedFormat":1},{"version":"8f95f6784090939eb0cb0c648a03bce2208e595730afc14be4969d90b334b541","impliedFormat":1},{"version":"535b6a88c08e138b1b72003f482bceaca78311cd19836bdde0a80a131f457f43","impliedFormat":1},{"version":"cf72ba3ad6ed1f342e8ddbdbfdf425238cbc7a75cc7a318fa994cb3866a68804","impliedFormat":1},{"version":"f213a7dafb0a946c1134a64151cbb7f2301d23f93920356d730cf0ed767e9985","impliedFormat":1},{"version":"c305868de2a4ea029bd4b9593ebb33b602b54cdbb3a09231486f611a414d0f5f","impliedFormat":1},{"version":"cf42fcfc0f9e976054d921a0f5bf898f9127751cf5dd9f1b4820069fd78f2280","impliedFormat":1},{"version":"e35526a0977b9cd80f799aef3314cb2bfe66aeb40879c888f7a993bd3437fc42","impliedFormat":1},{"version":"81d92e5c4d618ba0660121ed30c603e8111ad605e7562948f7430d87038daee0","impliedFormat":1},{"version":"757f7967151a9b1f043aba090f09c1bdb0abe54f229efd3b7a656eb6da616bf4","impliedFormat":1},{"version":"2da74b28ea53cb34b516fd6dbda3ca93495648cf431e59d24ba3ab5d7ec59ba4","impliedFormat":1},{"version":"928ebc4436abadcd3680338883b7e26189beb7532ae4b3d1c1727598607e53fa","impliedFormat":1},{"version":"2d232975df81628cb4d8a5236b8776976940cc4dd202698e498de5a4baeb7389","impliedFormat":1},{"version":"9bddd9fa92fbbb5bd3b7617b88c4aa038391aa29eca99baef820bf0ff422ee43","signature":"cc67a58590a00cf7dff0a5849c8e7e0439ec202f2462621f60b13fbed0546fc5","impliedFormat":1},{"version":"4c1b770da0116b19eb873aa7cd0bd242ce4b18e20ecde61e5c0bda5421f40707","signature":"3849e66e1f8ac2913e0619ef856a845e4c44f6b9e97c606e991247a9353bb0dd","impliedFormat":1},{"version":"64b05591ba7a6a2025c3ce04bd72b972a6200d4481feaae2e66056e0a1500b3a","signature":"526ee815290e47e75fd2105f83de0916689cc532a19c81620672342f6478095f","impliedFormat":1},{"version":"96def9cb00debb7554a8019ae45310f375a65820bd8efa8e497a96e3416a5677","signature":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"04c8589ba249eb9bc61b2232ab6c29216409852b4aecfb478cbf2a754871253a","signature":"8bfba49493f92a72cdffe5b9947c3f572c9301f4e95a471027d0022e8d9b5d97","impliedFormat":1},{"version":"956f962aca6becfca36766fe3af718b586829e1e4dd72f6b896057f75d4e9e83","impliedFormat":1},{"version":"9f7b583873c73cf01be845311d8b3e1715aecfa476a047d885804d837327d5db","impliedFormat":1},{"version":"f4de63eb261a0b27b5f66f08a4e5c292b67b0c1c0d25199bdd632f4c449b4806","impliedFormat":1},{"version":"f4a795af80885eba93957db860b4b82b4d23a76c5e122c2af5eeb9319094d9d1","impliedFormat":1},{"version":"3267bdd186e8d021bfa57a5314a256b9781e895bc025e426a2bdbe93b946cca0","impliedFormat":1},{"version":"31ed847fef6dc27c5224045deab8f99887ec76146cbc4f2ccb33f5b117fc9bf1","impliedFormat":1},{"version":"0df38983d84eccab44e2e6385bed5e1033b23228e484b80ff124d4049ca8e75a","impliedFormat":1},{"version":"7395857a8b73a1a5a14af625ec52c90f5b24bb0b163057d0f3e8a197ccc816ee","impliedFormat":1},{"version":"8b2e63aba58523a92dd15761096a03b5ebbd8983e2889b1f14265d9b2bb444b6","impliedFormat":1},{"version":"5f932457c501d03a68bee9ae0ab26ef9df2fa1f789a981483ec1f56c120ea5c7","impliedFormat":1},{"version":"4118ae023b5dd1af42aa6ccec246e5c0a7fc32e7459bda588da183d371d46281","impliedFormat":1},{"version":"c935d7a81d4a4409ba02812bd2b9e0176b74d361109d977b13bf6898488df6d9","impliedFormat":1},{"version":"ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","impliedFormat":1},{"version":"970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","impliedFormat":1},{"version":"6477c1bd38bbe6e8d74abebd01a073a7e45a89086a5a250e11725989a54a9a94","impliedFormat":1},{"version":"046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","impliedFormat":1},{"version":"52580471774bba3d4ccd41c1178e2c2884f1caa7257d4e86f760ce840d5083f6","signature":"12c618d15f731e0251af2dcd7b52bb12b0535769e27c9c099bcea9b5a451f3f4","impliedFormat":1},{"version":"2837ced1e5d4ef88b4e1688fa62bc93b4248d1825667c87a83adaa51bc810cbf","impliedFormat":1},{"version":"f61af6ed7df59c72b7e2fc7e25a4500f5e9beafad5be038d349c5348a0727ba5","impliedFormat":1},{"version":"ab1d998d1a0125aeb4f70beb593220427562543d33c704f7df9e5d8b0de76700","signature":"f4dfb302d3c378152e1a8c8d9879d7d69625333efccd3092eafc40837b67f9e4","impliedFormat":1},{"version":"bf7ccda18d9cb9ed3047d96a6542fee3c3bc4e7a7822af40332c5c2f6e07c2b7","impliedFormat":1},{"version":"7bc71d52df9d8e5cc55218d347a91b1758b38341f9cbbac0b80057aa9d93daa6","impliedFormat":1},{"version":"7a1f7b274cf8a66b83fcf42153bde6f25f4eb4d7696d4a6b17e4a8878d128306","impliedFormat":1},{"version":"553dd4fef7d2b88e899646b66b2035e119f61b092d668ae0595a32c234f9b8b5","impliedFormat":1},{"version":"6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","impliedFormat":1},{"version":"afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","impliedFormat":1},{"version":"d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","impliedFormat":1},{"version":"6215681982d007f5e9137ab0ca969c39048401e588bb0ad92018297c82551ea8","impliedFormat":1},{"version":"82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","impliedFormat":1},{"version":"cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","impliedFormat":1},{"version":"3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","impliedFormat":1},{"version":"f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","impliedFormat":1},{"version":"ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","impliedFormat":1},{"version":"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","impliedFormat":1},{"version":"dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","impliedFormat":1},{"version":"67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","impliedFormat":1},{"version":"1b831600aabe1c065830d303d087189e1ccfc93a0ef1882eb58a336ec1ce9f2f","impliedFormat":1},{"version":"75f191b59fe7ce72d1d7d11d0f329a193843f54af93182fc5a65c37d0a82c85a","impliedFormat":1},{"version":"cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","impliedFormat":1},{"version":"f6451dc56be14d37a8b88ea62a143ea398ab44558cd530fb2cdeeea42695c849","impliedFormat":1},{"version":"8ab77e5c32f1b6c6c1ee1b1b771c1a76a16be650559dc61320c8c82c99fc7cde","impliedFormat":1},{"version":"16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","impliedFormat":1},{"version":"ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","impliedFormat":1},{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true,"impliedFormat":1},{"version":"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","impliedFormat":1},{"version":"c269a12e83c5ffc0332b1f245008e4e621e483dd2f8b9b77fc6a664fcde4969d","impliedFormat":1},{"version":"aa8a056ee45ae741849d6e809ba85967b638070060e29c57d12d22b14baefeb6","impliedFormat":1},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true,"impliedFormat":1},{"version":"a97081289e7233ca2ef04a729036449fec4e88818fd7b7397930bd4d52294b18","impliedFormat":1},{"version":"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","impliedFormat":1},{"version":"0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","impliedFormat":1},{"version":"15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","impliedFormat":1},{"version":"963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","impliedFormat":1},{"version":"9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","impliedFormat":1},{"version":"c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","impliedFormat":1},{"version":"ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","impliedFormat":1},{"version":"ae8cd6af37275eac75f5369cdb5f01063bcf1f48d74cb434303ee50ec446acfe","impliedFormat":1},{"version":"2518830a2fda9c272ba48798d0e7b857037443b06594db8e42c87e86944ee9e4","impliedFormat":1},{"version":"95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","impliedFormat":1},{"version":"1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","impliedFormat":1},{"version":"bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","impliedFormat":1},{"version":"5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","impliedFormat":1},{"version":"99ab49d4732fdc98cf5c495925e65e796544cb4086fe42afc235dfc02bcf2351","impliedFormat":1},{"version":"af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","impliedFormat":1},{"version":"d393adc32e520d4274bb4c3dfdcdb342b806a230b66ef0f82b35bffbc4aa2590","impliedFormat":1},{"version":"c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","impliedFormat":1},{"version":"38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","impliedFormat":1},{"version":"3b6040253231d44e6778eb6861cc86c1758562e77783d21b7ecbc73322ded539","impliedFormat":1},{"version":"03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","impliedFormat":1},{"version":"318c82cc1e13da55e8c60d7e1bdc422a0679d675ad048b6d5022a47f57d23e3f","impliedFormat":1},{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac3cce682a1eab96841ce9942ace8dd5649d2951007096555f4950479e4b8d56","impliedFormat":1},{"version":"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","impliedFormat":1},{"version":"fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","impliedFormat":1},{"version":"d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","impliedFormat":1},{"version":"ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","impliedFormat":1},{"version":"9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","impliedFormat":1},{"version":"3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","impliedFormat":1},{"version":"3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","impliedFormat":1},{"version":"951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","impliedFormat":1},{"version":"a45efe8e9134ef64a5e3825944bc16fffaf130b82943844523d7a7f7c1fd91b2","impliedFormat":1},{"version":"969aa6509a994f4f3b09b99d5d29484d8d52a2522e133ef9b4e54af9a3e9feaf","impliedFormat":1},{"version":"f378e8538e407f997a0f88fcd1ecd93a096707cc909339ce4dba2e4ea03f1726","impliedFormat":1},{"version":"dcafd874e49d42fc215dcb4ef1e06511363c1f31979951081f3cd1908a05a636","impliedFormat":1},{"version":"fb73c98050a02b5849cc0fbb0d133ed55764b9c2a91f0ada2a25e74df68e6242","impliedFormat":1},{"version":"6002c44a8e8edbe4c79ce856c7bac3f8e69a2a45dc5bd6b229ca4ab323b924b3","impliedFormat":1},{"version":"b4d505a77e0829de5e5e23eaefb3d7989e0dbdfdb02ea69159df9f40017fb958","impliedFormat":1},{"version":"b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","impliedFormat":1},{"version":"f2242adef346a64818a1af914146f6f6046f16505e8a228c3bdb70185d4fdf4c","impliedFormat":1},{"version":"2f7508d8eeadcfde20b41ec13726c9ad26f04bbf830434e289c6010d5be28455","impliedFormat":1},{"version":"8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","impliedFormat":1},{"version":"9798f0d3693043da9dda9146b5e8622cd4476270e7aed8f3cb346b9b40a52103","impliedFormat":1},{"version":"fc7e8927b6fa6c81d68783afb314d01592c559e86bd36df334c37f40d0136acd","impliedFormat":1},{"version":"73f72caffdd55f189b5bf4e6b5ca273b4e26269d9aac859b9d30a5f799c095ad","impliedFormat":1},{"version":"d998e3e185cdf59dfc84043c41a42c02daaf3b7b21bee2db2d1f620a8e134f4c","impliedFormat":1},{"version":"06aa8858883e08f5136eb182d2f285ea615aeb464007f83c7a31ee1f8d9932b1","impliedFormat":1},{"version":"62d429aba0bbe459a04965d10c7637b74b319149f17874920a5ffb9fe3ba14d8","impliedFormat":1},{"version":"084a25e9ee73362fbb467873341b95721689513c14af6aa3067a1d95d6fafe08","impliedFormat":1},{"version":"4dbfeb147290c498e3aa56ea3198a6a109c5c0d9d7a4936a3138376302d89e7d","impliedFormat":1},{"version":"169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","impliedFormat":1},{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true,"impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","impliedFormat":1},{"version":"5009c081fd8ca3fcd6f3adcd071a1c79a933a400532b897822aad0943688a1f1","impliedFormat":1},{"version":"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","impliedFormat":1},{"version":"93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","impliedFormat":1},{"version":"c271193e426325d9acab2f99997bb9f5f2dff850ec8c7c011c5abafe5af83b5f","impliedFormat":1},{"version":"58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","impliedFormat":1},{"version":"a3e12bcf2d196656ccd5b5d5344182967a2bdde0f63c9b955c36169ed02c3555","impliedFormat":1},{"version":"a016d2f6c0a2c15069ec69661ad37c86a450deb629ce96a592f15f01d3a5746e","impliedFormat":1},{"version":"2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","impliedFormat":1},{"version":"2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","impliedFormat":1},{"version":"42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","impliedFormat":1},{"version":"d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","impliedFormat":1},{"version":"b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","impliedFormat":1},{"version":"7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","impliedFormat":1},{"version":"906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","impliedFormat":1},{"version":"5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","impliedFormat":1},{"version":"c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","impliedFormat":1},{"version":"e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","impliedFormat":1},{"version":"e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","impliedFormat":1},{"version":"9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","impliedFormat":1},{"version":"0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","impliedFormat":1},{"version":"71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","impliedFormat":1},{"version":"c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","impliedFormat":1},{"version":"2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","impliedFormat":1},{"version":"479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","impliedFormat":1},{"version":"ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","impliedFormat":1},{"version":"f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","impliedFormat":1},{"version":"86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","impliedFormat":1},{"version":"2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","impliedFormat":1},{"version":"a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","impliedFormat":1},{"version":"b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","impliedFormat":1},{"version":"61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","impliedFormat":1},{"version":"6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","impliedFormat":1},{"version":"c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","impliedFormat":1},{"version":"38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","impliedFormat":1},{"version":"d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","impliedFormat":1},{"version":"3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","impliedFormat":1},{"version":"b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","impliedFormat":1},{"version":"f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","impliedFormat":1},{"version":"843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","impliedFormat":1},{"version":"f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","impliedFormat":1},{"version":"6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","impliedFormat":1},{"version":"e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","impliedFormat":1},{"version":"a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","impliedFormat":1},{"version":"a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","impliedFormat":1},{"version":"da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","impliedFormat":1},{"version":"acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","impliedFormat":1},{"version":"6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","impliedFormat":1},{"version":"4fddd9f6929421ce580b4583defbb3f78f5a4a3642bea5ecd3209bf652d8b507","impliedFormat":1},{"version":"f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","impliedFormat":1},{"version":"82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","impliedFormat":1},{"version":"557e00bde9af85bcb3ab6b3a785904f028f9f1b65dba664f2fda44965acf8a78","impliedFormat":1},{"version":"397981908f102effb3cd483042076b593f3928264dbf06aec235a7c3e83da2b4","impliedFormat":1},{"version":"ad78491e2a3ae1e59680dbab88607dd670d06a91b1d6c451fa895ad390513e8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a9deb79dabc5153448e38589fbe38945fdad45f0f8442cd4d4e1da8bb879a76","affectsGlobalScope":true,"impliedFormat":1},{"version":"f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956","impliedFormat":1},{"version":"c9cc4c881c910ce378659524d985d2b72b79029b0c473df5d4d3557b4cf6010a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fae4b2bc906f3e6840725cc24affaa4e684e6c9cc20254242c5df4bede5b6f6","impliedFormat":1},{"version":"2dd1d4cea14cead7a7fc9eec8f40593089dff0de8c0199458446143c9b8c4ea9","impliedFormat":1},{"version":"c0288f54de6f544706a3150c8b579b1a975870695c4be866f727ece6a16f3976","impliedFormat":1},{"version":"ec2c7505ede4bc3ee37cfe431cfd87e545f55f27fe15b0809c1a411765145615","impliedFormat":1}],"options":{"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":99,"outDir":"./dist-es","removeComments":true,"rootDir":"./src","skipLibCheck":true,"strict":true,"target":8,"useUnknownInCatchVariables":false},"fileIdsList":[[64,69,117],[64,69,82,98,115,495],[64,69],[64,69,84,117,498],[64,69,75,117],[64,69,81,84,109,117,502,503,504],[64,69,117,513],[64,69,109,117,517],[64,69,84,117],[64,69,70,117],[64,69,506,507,521],[64,69,81,84,117,515,516],[64,69,499,516,517,524],[64,69,81,82,117,526],[64,69,81,84,86,89,98,109,117],[64,69,81,112,117,543,544,546],[64,69,545],[64,69,81,117],[64,69,548,550,551,552,553,554,555,556,557,558,559,560],[64,69,548,549,551,552,553,554,555,556,557,558,559,560],[64,69,549,550,551,552,553,554,555,556,557,558,559,560],[64,69,548,549,550,552,553,554,555,556,557,558,559,560],[64,69,548,549,550,551,553,554,555,556,557,558,559,560],[64,69,548,549,550,551,552,554,555,556,557,558,559,560],[64,69,548,549,550,551,552,553,555,556,557,558,559,560],[64,69,548,549,550,551,552,553,554,556,557,558,559,560],[64,69,548,549,550,551,552,553,554,555,557,558,559,560],[64,69,548,549,550,551,552,553,554,555,556,558,559,560],[64,69,548,549,550,551,552,553,554,555,556,557,559,560],[64,69,548,549,550,551,552,553,554,555,556,557,558,560],[64,69,548,549,550,551,552,553,554,555,556,557,558,559],[64,69,580],[64,69,565],[64,69,569,570,571],[64,69,568],[64,69,570],[64,69,547,566,567,572,575,577,578,579],[64,69,567,573,574,580],[64,69,573,576],[64,69,567,568,573,580],[64,69,567,580],[64,69,561,562,563,564],[64,69,84,109,117,586,587],[64,69,592],[64,69,81,82,117],[64,69,84,98,117],[64,69,595,634],[64,69,595,619,634],[64,69,634],[64,69,595],[64,69,595,620,634],[64,69,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633],[64,69,620,634],[64,69,82,525],[64,69,84,117,523],[64,69,636],[64,69,98,117],[64,69,81,84,86,98,106,109,115,117],[64,69,81,117,648],[64,69,532],[64,69,531,532],[64,69,531],[64,69,531,532,533,535,536,539,540,541,542],[64,69,532,536],[64,69,531,532,533,535,536,537,538],[64,69,531,536],[64,69,536,540],[64,69,532,533,534],[64,69,533],[64,69,531,532,536],[64,69,510],[64,69,507,508,509],[64,69,507,510],[64,69,84,89,106,109,112,506,508,510,511,512],[64,69,163,198],[64,69,163,197,336],[64,69,163,215,242,244,336],[64,69,245,246],[64,69,285],[64,69,163,247,285,295],[64,69,243,296,297,336,337,339,340],[64,69,244],[64,69,242,243],[64,69,242],[64,69,163,245,246,295],[64,69,163,245,246,336],[64,69,163,198,242,245,246,295,297,298,301,316,318,335],[64,69,163,188,198,242,295,297,336,344],[64,69,163,188,198,242,295,297,336,349,396],[64,69,163,198,297,336],[64,69,296],[64,69,474,475],[64,69,491],[64,69,163,361],[64,69,163,197,372],[64,69,163,215,242,363,372],[64,69,364,365,366,367],[64,69,163],[64,69,163,285,295,369],[64,69,362,368,370,371,372,373,374,378,379],[64,69,363],[64,69,242,362],[64,69,375,376,377],[64,69,163,372],[64,69,163,365,375],[64,69,163,366,375],[64,69,370],[64,69,163,364,365,366,367,372],[64,69,163,215,242,295,298,301,316,335,361,364,365,366,367,368,371],[45,64,69,191,196],[44,64,69],[64,69,163,179],[64,69,163,178],[64,69,178,179,180,189],[64,69,163,177],[64,69,163,188],[64,69,190],[64,69,192,193,194,195],[64,69,163,350],[64,69,350,351],[64,69,163,173,285,355,356],[64,69,357],[64,69,163,357],[64,69,163,352,355,358,360,386,394],[64,69,395],[64,69,163,173,285],[64,69,359],[64,69,163,173,285,381],[64,69,382,383,384,385],[64,69,163,383],[64,69,380],[64,69,163,285,353],[64,69,163,285],[64,69,353,354],[64,69,446],[64,69,299,300],[64,69,163,299],[64,69,439,442],[64,69,177],[64,69,440,441],[64,69,163,260,261],[64,69,255],[64,69,255,256,257,258,259],[64,69,248,249,250,251,252,253,254,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284],[64,69,260,261],[64,69,163,477],[64,69,163,417],[64,69,302,303,304,305],[64,69,163,304],[64,69,306,309,315],[64,69,307,308],[64,69,310],[64,69,163,312,313],[64,69,312,313,314],[64,69,311],[64,69,452,455,462,463,464,465,466],[64,69,163,449],[64,69,449,450,451],[64,69,453,454],[64,69,163,295],[64,69,457,458,459],[64,69,456,460,461],[64,69,163,387],[64,69,163,387,389],[64,69,387,388,389,390,391,392,393],[64,69,479,480,481],[64,69,317],[64,69,98,117,163],[64,69,419,420],[64,69,342,343],[64,69,483,484],[64,69,163,208,209],[64,69,210,211],[64,69,208,209,212,213,214],[64,69,163,326,328],[64,69,328,329,330,331,332,333,334],[64,69,163,330],[64,69,163,327],[64,69,408,409,410],[64,69,163,409],[64,69,163,164,174,175],[64,69,163,173],[64,69,176],[64,69,346,347,348],[64,69,84,86,117,163,295],[64,69,288],[64,69,289],[64,69,163,291],[64,69,163,286,287],[64,69,286,287,288,290,291,292,293,294],[64,69,165,166,167,168,169,170,171,172],[64,69,163,169],[64,69,181,182,183,184,185,186,187],[64,69,163,206],[64,69,163,215],[64,69,199],[64,69,163,225,226],[64,69,227],[64,69,163,199,207,216,217,218,219,220,221,222,223,224,228,229,230,231,232,233,234,235,236,237,238,239,240,241],[47,64,69],[46,64,69],[50,57,58,59,64,69],[57,60,64,69],[50,54,64,69],[50,60,64,69],[48,49,58,59,60,61,64,69],[64,69,98,117,119],[64,69,121],[55,56,57,64,69,123],[55,57,64,69],[64,69,125,127,128],[64,69,125,126],[64,69,130],[48,64,69],[51,64,69,132],[64,69,132],[64,69,132,133,134,135,136],[64,69,135],[52,64,69],[64,69,132,133,134],[54,55,57,64,69],[64,69,121,122],[64,69,138],[64,69,138,142],[64,69,138,139,142,143],[56,64,69,141],[64,69,118],[47,53,64,69],[52,54,64,69,84,86,117],[50,64,69],[50,64,69,146,147,148],[47,51,52,53,54,55,56,57,62,64,69,120,121,122,123,124,126,129,130,131,137,140,141,144,145,149,150,151,152,153,154,155,156,157,158,160,161,162],[48,51,52,56,64,69],[64,69,124],[64,69,140],[54,56,64,69,126],[54,55,64,69],[54,64,69,130],[56,64,69,121,122],[64,69,84,98,117,119,152],[55,64,69,123,157,158],[54,64,69,84,85,117,123,124,152,156,157,158,159],[64,69,123,124],[54,64,69],[64,69,427,428],[64,69,486],[64,69,423],[64,69,488],[64,69,163,242],[64,69,435],[64,69,402,403],[64,69,163,319],[64,69,163,321],[64,69,319],[64,69,319,320,321,322,323,324,325],[64,69,98],[64,69,200,201,202,203,204,205],[64,69,98,163],[64,69,430,431,432],[64,65,69],[64,68,69],[64,69,74,101],[64,69,70,81,82,89,98,109],[64,69,70,71,81,89],[64,69,72,110],[64,69,73,74,82,90],[64,69,74,98,106],[64,69,75,77,81,89],[64,69,76],[64,69,77,78],[64,69,81],[64,69,80,81],[64,68,69,81],[64,69,81,82,83,98,109],[64,69,81,82,83,98],[64,69,81,84,89,98,109],[64,69,81,82,84,85,89,98,106,109],[64,69,84,86,98,106,109],[64,69,81,87],[64,69,88,109,114],[64,69,77,81,89,98],[64,69,90],[64,69,91],[64,68,69,92],[64,69,93,108,114],[64,69,94],[64,69,95],[64,69,81,96],[64,69,96,97,110,112],[64,69,81,98,99,100],[64,69,98,100],[64,69,98,99],[64,69,101],[64,69,102],[64,69,81,104,105],[64,69,104,105],[64,69,74,89,98,106],[64,69,107],[69],[63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116],[64,69,89,108],[64,69,84,95,109],[64,69,74,110],[64,69,98,111],[64,69,112],[64,69,113],[64,69,74,81,83,92,98,109,112,114],[64,69,98,115],[64,69,163,401,405],[64,69,163,197,401,404,469],[64,69,163,242,401,407,411,414,469],[64,69,401,412,415],[64,69,285,316,401],[64,69,163,285,295,401,438],[64,69,401,406,444,445,469,470,471,472],[64,69,401,407],[64,69,242,401,406],[64,69,242,401],[64,69,163,197,242,295,401,406,407,412,413,415],[64,69,163,242,401,412,415,469],[64,69,163,242,295,298,301,316,318,335,401,405,412,415,437,445,447,448,467,468],[64,69,242,316,326,344,401,416,434,469,476,478,482,485,487,489],[64,69,401,469,490,492],[64,69,163,197,242,401,405,425,426,429,433,469],[64,69,177,197,242,316,326,335,349,396,401,416,418,421,422,424,434,436,469],[64,69,242,295,401,438,443,444],[64,69,163,247,285,650],[64,69,163,245,246,650],[64,69,163,198,242,245,246,297,298,301,316,318,335,650],[64,69,163,198,242,297,336,344,650,651],[64,69,163,198,242,297,336,349,396,650,651],[163,405],[163,197,469],[163,215,242,407,469],[412,415],[285],[163,285,438,650],[406,444,445,469,470,471,472],[407],[242,406],[242],[163,412,415,650],[163,412,415,469],[163,242,298,301,316,318,335,405,412,415,445,650],[163,188,242,295,344,405,445,469],[163,405,445,469],[163,188,242,295,349,396,405,445,469],[444]],"referencedMap":[[494,1],[496,2],[497,3],[499,4],[500,5],[501,3],[505,6],[514,7],[518,8],[498,9],[519,10],[520,3],[521,3],[522,11],[506,3],[517,12],[525,13],[527,14],[526,3],[503,3],[528,15],[529,3],[530,3],[545,16],[546,17],[507,3],[502,18],[547,3],[549,19],[550,20],[548,21],[551,22],[552,23],[553,24],[554,25],[555,26],[556,27],[557,28],[558,29],[559,30],[560,31],[581,32],[566,33],[572,34],[570,3],[569,35],[571,36],[580,37],[575,38],[577,39],[578,40],[579,41],[573,3],[574,41],[576,41],[568,41],[567,3],[562,3],[561,3],[564,33],[565,42],[563,33],[582,3],[523,3],[583,3],[584,3],[585,3],[587,3],[588,43],[589,3],[590,3],[591,3],[593,44],[516,3],[515,3],[495,45],[594,3],[504,46],[592,3],[619,47],[620,48],[595,49],[598,49],[617,47],[618,47],[608,47],[607,50],[605,47],[600,47],[613,47],[611,47],[615,47],[599,47],[612,47],[616,47],[601,47],[602,47],[614,47],[596,47],[603,47],[604,47],[606,47],[610,47],[621,51],[609,47],[597,47],[634,52],[633,3],[628,51],[630,53],[629,51],[622,51],[623,51],[625,51],[627,51],[631,53],[632,53],[624,53],[626,53],[635,54],[524,55],[637,56],[636,3],[638,3],[639,9],[640,57],[641,3],[544,3],[643,3],[642,3],[644,3],[645,3],[646,3],[647,58],[649,59],[648,3],[509,3],[586,46],[533,60],[542,61],[531,3],[532,62],[543,63],[538,64],[539,65],[537,66],[541,67],[535,68],[534,69],[540,70],[536,61],[511,71],[510,72],[508,73],[512,3],[513,74],[247,75],[198,76],[245,77],[339,78],[246,77],[338,79],[296,80],[341,81],[340,82],[244,83],[243,84],[400,85],[337,86],[336,87],[345,88],[397,89],[398,88],[399,90],[297,91],[474,79],[476,92],[475,79],[492,93],[491,79],[369,94],[361,95],[364,96],[374,97],[365,96],[366,96],[367,96],[368,98],[370,99],[380,100],[379,101],[363,102],[362,84],[378,103],[375,104],[376,105],[377,106],[371,107],[373,108],[372,109],[197,110],[44,3],[45,111],[180,112],[179,113],[190,114],[178,115],[189,116],[191,117],[192,3],[196,118],[193,3],[194,98],[195,98],[351,119],[350,79],[352,120],[357,121],[358,122],[356,123],[395,124],[396,125],[359,126],[360,127],[382,128],[386,129],[384,130],[381,131],[383,98],[385,130],[354,132],[353,133],[355,134],[298,98],[447,135],[446,98],[448,98],[299,98],[301,136],[300,137],[439,133],[443,138],[440,139],[442,140],[441,98],[248,98],[249,98],[250,98],[251,98],[252,98],[253,98],[254,98],[262,141],[263,98],[264,3],[265,98],[266,98],[267,98],[268,98],[269,98],[256,142],[257,98],[255,98],[260,143],[258,142],[259,98],[285,144],[270,98],[271,98],[272,98],[273,98],[274,3],[275,98],[276,98],[277,98],[278,98],[279,98],[280,98],[281,145],[282,98],[283,98],[261,98],[284,98],[477,3],[478,146],[417,3],[418,147],[306,148],[302,139],[303,139],[305,149],[304,98],[316,150],[307,139],[309,151],[308,98],[311,152],[310,3],[314,153],[315,154],[312,155],[313,155],[463,98],[467,156],[450,157],[451,157],[449,98],[452,158],[454,98],[453,98],[455,159],[464,98],[466,98],[465,160],[456,98],[457,160],[458,160],[460,161],[459,98],[462,162],[461,98],[393,3],[388,163],[390,164],[394,165],[391,9],[387,98],[389,98],[392,98],[479,98],[482,166],[480,98],[481,3],[317,98],[318,167],[419,168],[421,169],[420,98],[342,160],[344,170],[343,98],[422,98],[485,171],[483,3],[484,98],[468,98],[210,172],[212,173],[211,98],[213,172],[214,172],[215,174],[208,98],[209,3],[329,175],[330,115],[331,3],[335,176],[332,98],[333,98],[334,177],[328,178],[327,98],[408,98],[411,179],[409,98],[410,180],[176,181],[164,98],[174,182],[175,98],[177,183],[349,184],[346,185],[347,160],[348,98],[289,186],[290,187],[291,98],[292,188],[288,189],[286,98],[287,98],[295,190],[293,3],[294,98],[165,3],[166,3],[167,3],[168,3],[173,191],[169,98],[170,98],[171,192],[172,98],[187,98],[182,98],[183,98],[184,98],[188,193],[185,98],[186,98],[181,98],[199,98],[207,194],[216,195],[217,3],[218,196],[219,3],[220,3],[221,3],[222,3],[223,98],[224,3],[225,98],[227,197],[228,198],[226,98],[229,3],[230,3],[242,199],[231,3],[232,3],[233,98],[234,3],[235,3],[236,3],[237,3],[238,3],[239,3],[240,3],[241,3],[46,200],[47,201],[48,3],[49,3],[60,202],[61,203],[58,204],[59,205],[62,206],[120,207],[122,208],[124,209],[123,210],[125,3],[129,211],[127,212],[128,3],[121,3],[131,213],[51,214],[133,215],[134,216],[137,217],[136,218],[132,219],[135,220],[130,221],[138,222],[139,223],[143,224],[144,225],[142,226],[119,227],[54,228],[145,229],[146,230],[147,230],[50,3],[149,231],[148,230],[163,232],[52,3],[57,233],[150,234],[151,3],[55,3],[141,235],[152,236],[140,237],[153,238],[154,239],[155,207],[156,207],[157,240],[126,3],[159,241],[160,242],[118,3],[161,243],[158,3],[53,244],[56,221],[162,200],[426,98],[427,3],[429,245],[428,3],[486,3],[487,246],[423,3],[424,247],[489,248],[488,249],[436,250],[435,249],[402,98],[404,251],[403,98],[320,252],[324,3],[322,253],[325,3],[323,254],[326,255],[321,98],[319,3],[200,3],[201,168],[204,256],[206,257],[202,258],[203,57],[205,3],[430,3],[433,259],[431,3],[432,3],[65,260],[66,260],[68,261],[69,262],[70,263],[71,264],[72,265],[73,266],[74,267],[75,268],[76,269],[77,270],[78,270],[79,271],[80,272],[81,273],[82,274],[83,275],[67,3],[116,3],[84,276],[85,277],[86,278],[87,279],[88,280],[89,281],[90,282],[91,283],[92,284],[93,285],[94,286],[95,287],[96,288],[97,289],[98,290],[100,291],[99,292],[101,293],[102,294],[103,3],[104,295],[105,296],[106,297],[107,298],[64,299],[63,3],[117,300],[108,301],[109,302],[110,303],[111,304],[112,305],[113,306],[114,307],[115,308],[413,3],[401,3],[8,3],[9,3],[11,3],[10,3],[2,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[3,3],[4,3],[23,3],[20,3],[21,3],[22,3],[24,3],[25,3],[26,3],[5,3],[27,3],[28,3],[29,3],[30,3],[6,3],[34,3],[31,3],[32,3],[33,3],[35,3],[7,3],[36,3],[41,3],[42,3],[37,3],[38,3],[39,3],[40,3],[1,3],[43,3],[416,3],[438,309],[405,310],[415,311],[471,312],[412,311],[425,313],[444,314],[473,315],[472,316],[407,317],[406,318],[414,319],[470,320],[469,321],[490,322],[493,323],[434,324],[437,325],[445,326]],"exportedModulesMap":[[494,1],[496,2],[497,3],[499,4],[500,5],[501,3],[505,6],[514,7],[518,8],[498,9],[519,10],[520,3],[521,3],[522,11],[506,3],[517,12],[525,13],[527,14],[526,3],[503,3],[528,15],[529,3],[530,3],[545,16],[546,17],[507,3],[502,18],[547,3],[549,19],[550,20],[548,21],[551,22],[552,23],[553,24],[554,25],[555,26],[556,27],[557,28],[558,29],[559,30],[560,31],[581,32],[566,33],[572,34],[570,3],[569,35],[571,36],[580,37],[575,38],[577,39],[578,40],[579,41],[573,3],[574,41],[576,41],[568,41],[567,3],[562,3],[561,3],[564,33],[565,42],[563,33],[582,3],[523,3],[583,3],[584,3],[585,3],[587,3],[588,43],[589,3],[590,3],[591,3],[593,44],[516,3],[515,3],[495,45],[594,3],[504,46],[592,3],[619,47],[620,48],[595,49],[598,49],[617,47],[618,47],[608,47],[607,50],[605,47],[600,47],[613,47],[611,47],[615,47],[599,47],[612,47],[616,47],[601,47],[602,47],[614,47],[596,47],[603,47],[604,47],[606,47],[610,47],[621,51],[609,47],[597,47],[634,52],[633,3],[628,51],[630,53],[629,51],[622,51],[623,51],[625,51],[627,51],[631,53],[632,53],[624,53],[626,53],[635,54],[524,55],[637,56],[636,3],[638,3],[639,9],[640,57],[641,3],[544,3],[643,3],[642,3],[644,3],[645,3],[646,3],[647,58],[649,59],[648,3],[509,3],[586,46],[533,60],[542,61],[531,3],[532,62],[543,63],[538,64],[539,65],[537,66],[541,67],[535,68],[534,69],[540,70],[536,61],[511,71],[510,72],[508,73],[512,3],[513,74],[247,75],[198,76],[245,77],[339,78],[246,77],[338,79],[296,327],[341,81],[340,82],[244,83],[243,84],[400,328],[337,86],[336,329],[345,330],[397,331],[398,330],[399,90],[297,91],[474,79],[476,92],[475,79],[492,93],[491,79],[369,94],[361,95],[364,96],[374,97],[365,96],[366,96],[367,96],[368,98],[370,99],[380,100],[379,101],[363,102],[362,84],[378,103],[375,104],[376,105],[377,106],[371,107],[373,108],[372,109],[197,110],[44,3],[45,111],[180,112],[179,113],[190,114],[178,115],[189,116],[191,117],[192,3],[196,118],[193,3],[194,98],[195,98],[351,119],[350,79],[352,120],[357,121],[358,122],[356,123],[395,124],[396,125],[359,126],[360,127],[382,128],[386,129],[384,130],[381,131],[383,98],[385,130],[354,132],[353,133],[355,134],[298,98],[447,135],[446,98],[448,98],[299,98],[301,136],[300,137],[439,133],[443,138],[440,139],[442,140],[441,98],[248,98],[249,98],[250,98],[251,98],[252,98],[253,98],[254,98],[262,141],[263,98],[264,3],[265,98],[266,98],[267,98],[268,98],[269,98],[256,142],[257,98],[255,98],[260,143],[258,142],[259,98],[285,144],[270,98],[271,98],[272,98],[273,98],[274,3],[275,98],[276,98],[277,98],[278,98],[279,98],[280,98],[281,145],[282,98],[283,98],[261,98],[284,98],[477,3],[478,146],[417,3],[418,147],[306,148],[302,139],[303,139],[305,149],[304,98],[316,150],[307,139],[309,151],[308,98],[311,152],[310,3],[314,153],[315,154],[312,155],[313,155],[463,98],[467,156],[450,157],[451,157],[449,98],[452,158],[454,98],[453,98],[455,159],[464,98],[466,98],[465,160],[456,98],[457,160],[458,160],[460,161],[459,98],[462,162],[461,98],[393,3],[388,163],[390,164],[394,165],[391,9],[387,98],[389,98],[392,98],[479,98],[482,166],[480,98],[481,3],[317,98],[318,167],[419,168],[421,169],[420,98],[342,160],[344,170],[343,98],[422,98],[485,171],[483,3],[484,98],[468,98],[210,172],[212,173],[211,98],[213,172],[214,172],[215,174],[208,98],[209,3],[329,175],[330,115],[331,3],[335,176],[332,98],[333,98],[334,177],[328,178],[327,98],[408,98],[411,179],[409,98],[410,180],[176,181],[164,98],[174,182],[175,98],[177,183],[349,184],[346,185],[347,160],[348,98],[289,186],[290,187],[291,98],[292,188],[288,189],[286,98],[287,98],[295,190],[293,3],[294,98],[165,3],[166,3],[167,3],[168,3],[173,191],[169,98],[170,98],[171,192],[172,98],[187,98],[182,98],[183,98],[184,98],[188,193],[185,98],[186,98],[181,98],[199,98],[207,194],[216,195],[217,3],[218,196],[219,3],[220,3],[221,3],[222,3],[223,98],[224,3],[225,98],[227,197],[228,198],[226,98],[229,3],[230,3],[242,199],[231,3],[232,3],[233,98],[234,3],[235,3],[236,3],[237,3],[238,3],[239,3],[240,3],[241,3],[46,200],[47,201],[48,3],[49,3],[60,202],[61,203],[58,204],[59,205],[62,206],[120,207],[122,208],[124,209],[123,210],[125,3],[129,211],[127,212],[128,3],[121,3],[131,213],[51,214],[133,215],[134,216],[137,217],[136,218],[132,219],[135,220],[130,221],[138,222],[139,223],[143,224],[144,225],[142,226],[119,227],[54,228],[145,229],[146,230],[147,230],[50,3],[149,231],[148,230],[163,232],[52,3],[57,233],[150,234],[151,3],[55,3],[141,235],[152,236],[140,237],[153,238],[154,239],[155,207],[156,207],[157,240],[126,3],[159,241],[160,242],[118,3],[161,243],[158,3],[53,244],[56,221],[162,200],[426,98],[427,3],[429,245],[428,3],[486,3],[487,246],[423,3],[424,247],[489,248],[488,249],[436,250],[435,249],[402,98],[404,251],[403,98],[320,252],[324,3],[322,253],[325,3],[323,254],[326,255],[321,98],[319,3],[200,3],[201,168],[204,256],[206,257],[202,258],[203,57],[205,3],[430,3],[433,259],[431,3],[432,3],[65,260],[66,260],[68,261],[69,262],[70,263],[71,264],[72,265],[73,266],[74,267],[75,268],[76,269],[77,270],[78,270],[79,271],[80,272],[81,273],[82,274],[83,275],[67,3],[116,3],[84,276],[85,277],[86,278],[87,279],[88,280],[89,281],[90,282],[91,283],[92,284],[93,285],[94,286],[95,287],[96,288],[97,289],[98,290],[100,291],[99,292],[101,293],[102,294],[103,3],[104,295],[105,296],[106,297],[107,298],[64,299],[63,3],[117,300],[108,301],[109,302],[110,303],[111,304],[112,305],[113,306],[114,307],[115,308],[413,3],[401,3],[8,3],[9,3],[11,3],[10,3],[2,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[3,3],[4,3],[23,3],[20,3],[21,3],[22,3],[24,3],[25,3],[26,3],[5,3],[27,3],[28,3],[29,3],[30,3],[6,3],[34,3],[31,3],[32,3],[33,3],[35,3],[7,3],[36,3],[41,3],[42,3],[37,3],[38,3],[39,3],[40,3],[1,3],[43,3],[438,332],[405,333],[415,334],[471,335],[412,334],[425,336],[444,337],[473,338],[472,339],[407,340],[406,341],[414,342],[470,343],[469,344],[490,345],[493,345],[434,346],[437,347],[445,348]],"semanticDiagnosticsPerFile":[494,496,497,499,500,501,505,514,518,498,519,520,521,522,506,517,525,527,526,503,528,529,530,545,546,507,502,547,549,550,548,551,552,553,554,555,556,557,558,559,560,581,566,572,570,569,571,580,575,577,578,579,573,574,576,568,567,562,561,564,565,563,582,523,583,584,585,587,588,589,590,591,593,516,515,495,594,504,592,619,620,595,598,617,618,608,607,605,600,613,611,615,599,612,616,601,602,614,596,603,604,606,610,621,609,597,634,633,628,630,629,622,623,625,627,631,632,624,626,635,524,637,636,638,639,640,641,544,643,642,644,645,646,647,649,648,509,586,533,542,531,532,543,538,539,537,541,535,534,540,536,511,510,508,512,513,247,198,245,339,246,338,296,341,340,244,243,400,337,336,345,397,398,399,297,474,476,475,492,491,369,361,364,374,365,366,367,368,370,380,379,363,362,378,375,376,377,371,373,372,197,44,45,180,179,190,178,189,191,192,196,193,194,195,351,350,352,357,358,356,395,396,359,360,382,386,384,381,383,385,354,353,355,298,447,446,448,299,301,300,439,443,440,442,441,248,249,250,251,252,253,254,262,263,264,265,266,267,268,269,256,257,255,260,258,259,285,270,271,272,273,274,275,276,277,278,279,280,281,282,283,261,284,477,478,417,418,306,302,303,305,304,316,307,309,308,311,310,314,315,312,313,463,467,450,451,449,452,454,453,455,464,466,465,456,457,458,460,459,462,461,393,388,390,394,391,387,389,392,479,482,480,481,317,318,419,421,420,342,344,343,422,485,483,484,468,210,212,211,213,214,215,208,209,329,330,331,335,332,333,334,328,327,408,411,409,410,176,164,174,175,177,349,346,347,348,289,290,291,292,288,286,287,295,293,294,165,166,167,168,173,169,170,171,172,187,182,183,184,188,185,186,181,199,207,216,217,218,219,220,221,222,223,224,225,227,228,226,229,230,242,231,232,233,234,235,236,237,238,239,240,241,46,47,48,49,60,61,58,59,62,120,122,124,123,125,129,127,128,121,131,51,133,134,137,136,132,135,130,138,139,143,144,142,119,54,145,146,147,50,149,148,163,52,57,150,151,55,141,152,140,153,154,155,156,157,126,159,160,118,161,158,53,56,162,426,427,429,428,486,487,423,424,489,488,436,435,402,404,403,320,324,322,325,323,326,321,319,200,201,204,206,202,203,205,430,433,431,432,65,66,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,67,116,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,99,101,102,103,104,105,106,107,64,63,117,108,109,110,111,112,113,114,115,413,401,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,416,438,405,415,471,412,425,444,473,472,407,406,414,470,469,490,493,434,437,445]},"version":"4.9.5"} \ No newline at end of file diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.json b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.json new file mode 100644 index 00000000000..e7f5ec56b74 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.json @@ -0,0 +1,13 @@ +{ + "extends": "@tsconfig/node16/tsconfig.json", + "compilerOptions": { + "downlevelIteration": true, + "importHelpers": true, + "incremental": true, + "removeComments": true, + "resolveJsonModule": true, + "rootDir": "src", + "useUnknownInCatchVariables": false + }, + "exclude": ["test/"] +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.types.json b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.types.json new file mode 100644 index 00000000000..4c3dfa7b3d2 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.types.json @@ -0,0 +1,10 @@ +{ + "extends": "./tsconfig", + "compilerOptions": { + "removeComments": false, + "declaration": true, + "declarationDir": "dist-types", + "emitDeclarationOnly": true + }, + "exclude": ["test/**/*", "dist-types/**/*"] +} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.types.tsbuildinfo b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.types.tsbuildinfo new file mode 100644 index 00000000000..0d59cba3412 --- /dev/null +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.types.tsbuildinfo @@ -0,0 +1 @@ +{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.es2021.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.es2021.promise.d.ts","./node_modules/typescript/lib/lib.es2021.string.d.ts","./node_modules/typescript/lib/lib.es2021.weakref.d.ts","./node_modules/typescript/lib/lib.es2021.intl.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/tslib/tslib.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/client/emitwarningifunsupportedversion.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts","./node_modules/@smithy/types/dist-types/abort-handler.d.ts","./node_modules/@smithy/types/dist-types/abort.d.ts","./node_modules/@smithy/types/dist-types/auth/auth.d.ts","./node_modules/@smithy/types/dist-types/auth/httpapikeyauth.d.ts","./node_modules/@smithy/types/dist-types/identity/identity.d.ts","./node_modules/@smithy/types/dist-types/endpoint.d.ts","./node_modules/@smithy/types/dist-types/logger.d.ts","./node_modules/@smithy/types/dist-types/uri.d.ts","./node_modules/@smithy/types/dist-types/http.d.ts","./node_modules/@smithy/types/dist-types/response.d.ts","./node_modules/@smithy/types/dist-types/util.d.ts","./node_modules/@smithy/types/dist-types/middleware.d.ts","./node_modules/@smithy/types/dist-types/auth/httpsigner.d.ts","./node_modules/@smithy/types/dist-types/auth/identityproviderconfig.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthscheme.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/types/dist-types/auth/index.d.ts","./node_modules/@types/node/ts5.6/globals.typedarray.d.ts","./node_modules/@types/node/ts5.6/buffer.buffer.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/dom-events.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/ts5.6/index.d.ts","./node_modules/@smithy/types/dist-types/transform/exact.d.ts","./node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts","./node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/crypto.d.ts","./node_modules/@smithy/types/dist-types/checksum.d.ts","./node_modules/@smithy/types/dist-types/command.d.ts","./node_modules/@smithy/types/dist-types/client.d.ts","./node_modules/@smithy/types/dist-types/connection/config.d.ts","./node_modules/@smithy/types/dist-types/transfer.d.ts","./node_modules/@smithy/types/dist-types/connection/manager.d.ts","./node_modules/@smithy/types/dist-types/connection/pool.d.ts","./node_modules/@smithy/types/dist-types/connection/index.d.ts","./node_modules/@smithy/types/dist-types/eventstream.d.ts","./node_modules/@smithy/types/dist-types/encode.d.ts","./node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","./node_modules/@smithy/types/dist-types/endpoints/endpointruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/errorruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/treeruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/rulesetobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/index.d.ts","./node_modules/@smithy/types/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultclientconfiguration.d.ts","./node_modules/@smithy/types/dist-types/shapes.d.ts","./node_modules/@smithy/types/dist-types/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/types/dist-types/extensions/index.d.ts","./node_modules/@smithy/types/dist-types/http/httphandlerinitialization.d.ts","./node_modules/@smithy/types/dist-types/identity/apikeyidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/index.d.ts","./node_modules/@smithy/types/dist-types/pagination.d.ts","./node_modules/@smithy/types/dist-types/profile.d.ts","./node_modules/@smithy/types/dist-types/serde.d.ts","./node_modules/@smithy/types/dist-types/signature.d.ts","./node_modules/@smithy/types/dist-types/stream.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","./node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","./node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","./node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","./node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts","./node_modules/@smithy/types/dist-types/waiter.d.ts","./node_modules/@smithy/types/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromenv.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/gethomedir.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getprofilename.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfilepath.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfromfile.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadsharedconfigfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadssosessiondata.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/parseknownfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromsharedconfigfiles.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromstatic.d.ts","./node_modules/@smithy/node-config-provider/dist-types/configloader.d.ts","./node_modules/@smithy/node-config-provider/dist-types/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4aconfig.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4signer.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4asigner.d.ts","./node_modules/@smithy/signature-v4/dist-types/signaturev4.d.ts","./node_modules/@smithy/signature-v4/dist-types/getcanonicalheaders.d.ts","./node_modules/@smithy/signature-v4/dist-types/getcanonicalquery.d.ts","./node_modules/@smithy/signature-v4/dist-types/getpayloadhash.d.ts","./node_modules/@smithy/signature-v4/dist-types/moveheaderstoquery.d.ts","./node_modules/@smithy/signature-v4/dist-types/preparerequest.d.ts","./node_modules/@smithy/signature-v4/dist-types/credentialderivation.d.ts","./node_modules/@smithy/signature-v4/dist-types/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4config.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/coercing-serializers.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsexpectunion.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parsejsonbody.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/parsexmlbody.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts","./node_modules/@aws-sdk/core/dist-types/index.d.ts","./node_modules/@smithy/util-middleware/dist-types/getsmithycontext.d.ts","./node_modules/@smithy/util-middleware/dist-types/normalizeprovider.d.ts","./node_modules/@smithy/util-middleware/dist-types/index.d.ts","./src/auth/httpauthschemeprovider.ts","./node_modules/@smithy/smithy-client/dist-types/client.d.ts","./node_modules/@smithy/util-stream/dist-types/blob/uint8arrayblobadapter.d.ts","./node_modules/@smithy/util-stream/dist-types/getawschunkedencodingstream.d.ts","./node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts","./node_modules/@smithy/util-stream/dist-types/splitstream.d.ts","./node_modules/@smithy/util-stream/dist-types/headstream.d.ts","./node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts","./node_modules/@smithy/util-stream/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/resolveendpointconfig.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getendpointfrominstructions.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toendpointv1.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/endpointmiddleware.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/getendpointplugin.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/command.d.ts","./node_modules/@smithy/smithy-client/dist-types/constants.d.ts","./node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts","./node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts","./node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts","./node_modules/@smithy/smithy-client/dist-types/emitwarningifunsupportedversion.d.ts","./node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts","./node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts","./node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts","./node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/nooplogger.d.ts","./node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts","./node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/quote-header.d.ts","./node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts","./node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-every.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-header.d.ts","./node_modules/@smithy/smithy-client/dist-types/index.d.ts","./src/models/qdeveloperstreamingserviceexception.ts","./src/models/models_0.ts","./node_modules/@smithy/middleware-serde/dist-types/deserializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serdeplugin.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/index.d.ts","./src/commands/sendmessagecommand.ts","./node_modules/@smithy/protocol-http/dist-types/httprequest.d.ts","./node_modules/@smithy/protocol-http/dist-types/httpresponse.d.ts","./node_modules/@smithy/protocol-http/dist-types/httphandler.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/httpextensionconfiguration.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/field.d.ts","./node_modules/@smithy/protocol-http/dist-types/fields.d.ts","./node_modules/@smithy/protocol-http/dist-types/isvalidhostname.d.ts","./node_modules/@smithy/protocol-http/dist-types/types.d.ts","./node_modules/@smithy/protocol-http/dist-types/index.d.ts","./node_modules/@types/uuid/index.d.ts","./src/protocols/aws_json1_0.ts","./src/commands/generatecodefromcommandscommand.ts","./package.json","./node_modules/@aws-sdk/types/dist-types/abort.d.ts","./node_modules/@aws-sdk/types/dist-types/auth.d.ts","./node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","./node_modules/@aws-sdk/types/dist-types/checksum.d.ts","./node_modules/@aws-sdk/types/dist-types/client.d.ts","./node_modules/@aws-sdk/types/dist-types/command.d.ts","./node_modules/@aws-sdk/types/dist-types/connection.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/identity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/anonymousidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/loginidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","./node_modules/@aws-sdk/types/dist-types/util.d.ts","./node_modules/@aws-sdk/types/dist-types/credentials.d.ts","./node_modules/@aws-sdk/types/dist-types/crypto.d.ts","./node_modules/@aws-sdk/types/dist-types/dns.d.ts","./node_modules/@aws-sdk/types/dist-types/encode.d.ts","./node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","./node_modules/@aws-sdk/types/dist-types/eventstream.d.ts","./node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/types/dist-types/http.d.ts","./node_modules/@aws-sdk/types/dist-types/logger.d.ts","./node_modules/@aws-sdk/types/dist-types/middleware.d.ts","./node_modules/@aws-sdk/types/dist-types/pagination.d.ts","./node_modules/@aws-sdk/types/dist-types/profile.d.ts","./node_modules/@aws-sdk/types/dist-types/request.d.ts","./node_modules/@aws-sdk/types/dist-types/response.d.ts","./node_modules/@aws-sdk/types/dist-types/retry.d.ts","./node_modules/@aws-sdk/types/dist-types/serde.d.ts","./node_modules/@aws-sdk/types/dist-types/shapes.d.ts","./node_modules/@aws-sdk/types/dist-types/signature.d.ts","./node_modules/@aws-sdk/types/dist-types/stream.d.ts","./node_modules/@aws-sdk/types/dist-types/token.d.ts","./node_modules/@aws-sdk/types/dist-types/transfer.d.ts","./node_modules/@aws-sdk/types/dist-types/uri.d.ts","./node_modules/@aws-sdk/types/dist-types/waiter.d.ts","./node_modules/@aws-sdk/types/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/fromhttp/fromhttptypes.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/fromhttp/fromhttp.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromwebtoken.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromtokenfile.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveassumerolecredentials.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/fromini.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-process/dist-types/fromprocess.d.ts","./node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusedualstackendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusefipsendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolveendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolvecustomendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvarianttag.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvariant.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/partitionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/regionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/getregioninfo.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/index.d.ts","./node_modules/@smithy/util-retry/dist-types/types.d.ts","./node_modules/@smithy/util-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/configuredretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/defaultratelimiter.d.ts","./node_modules/@smithy/util-retry/dist-types/config.d.ts","./node_modules/@smithy/util-retry/dist-types/constants.d.ts","./node_modules/@smithy/util-retry/dist-types/index.d.ts","./node_modules/@smithy/middleware-retry/dist-types/types.d.ts","./node_modules/@smithy/middleware-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts","./node_modules/@smithy/middleware-retry/dist-types/delaydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/omitretryheadersmiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrymiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/ssoserviceexception.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/getrolecredentialscommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/listaccountrolescommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/listaccountscommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/logoutcommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointparameters.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/auth/httpauthextensionconfiguration.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/extensionconfiguration.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/ssoclient.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/sso.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/interfaces.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/listaccountrolespaginator.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/listaccountspaginator.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/loadsso.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/fromsso.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/isssoprofile.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/validatessoprofile.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/remoteprovider/remoteproviderinit.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/fromcontainermetadata.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/frominstancemetadata.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/remoteprovider/httprequest.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/utils/getinstancemetadataendpoint.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/config/endpoint.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-node/dist-types/defaultprovider.d.ts","./node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts","./node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts","./node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts","./node_modules/@smithy/hash-node/dist-types/index.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts","./node_modules/@smithy/node-http-handler/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/index.d.ts","./src/endpoints.ts","./node_modules/@smithy/url-parser/dist-types/index.d.ts","./node_modules/@smithy/util-base64/dist-types/frombase64.d.ts","./node_modules/@smithy/util-base64/dist-types/tobase64.d.ts","./node_modules/@smithy/util-base64/dist-types/index.d.ts","./node_modules/@smithy/util-utf8/dist-types/fromutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/touint8array.d.ts","./node_modules/@smithy/util-utf8/dist-types/toutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/index.d.ts","./src/runtimeconfig.shared.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts","./src/runtimeconfig.ts","./src/auth/httpauthextensionconfiguration.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts","./src/extensionconfiguration.ts","./src/runtimeextensions.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/loggermiddleware.d.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpauthschememiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/gethttpauthschemeendpointrulesetplugin.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/gethttpauthschemeplugin.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/httpsigningmiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/gethttpsigningmiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/defaultidentityproviderconfig.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/httpapikeyauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/httpbearerauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/noauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/index.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeidentityprovider.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts","./node_modules/@smithy/core/dist-types/getsmithycontext.d.ts","./node_modules/@smithy/core/dist-types/normalizeprovider.d.ts","./node_modules/@smithy/core/dist-types/protocols/requestbuilder.d.ts","./node_modules/@smithy/core/dist-types/pagination/createpaginator.d.ts","./node_modules/@smithy/core/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/eventstreamserdeconfig.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts","./node_modules/@smithy/middleware-content-length/dist-types/index.d.ts","./src/qdeveloperstreamingclient.ts","./src/qdeveloperstreaming.ts","./src/commands/index.ts","./src/models/index.ts","./src/index.ts","./node_modules/@aws-crypto/sha256-browser/build/main/crossplatformsha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/main/webcryptosha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/invalidfunction.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/invalidprovider.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts","./src/runtimeconfig.browser.ts","./node_modules/@aws-crypto/sha256-js/build/main/jssha256.d.ts","./node_modules/@aws-crypto/sha256-js/build/main/index.d.ts","./src/runtimeconfig.native.ts","../../../node_modules/@types/adm-zip/index.d.ts","../../../node_modules/@types/readdir-glob/index.d.ts","../../../node_modules/@types/archiver/index.d.ts","../../../node_modules/@types/async-lock/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/bytes/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/circular-dependency-plugin/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/cross-spawn/index.d.ts","../../../node_modules/@types/diff/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/glob/node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/parse5/dist/cjs/common/html.d.ts","../../../node_modules/parse5/dist/cjs/common/token.d.ts","../../../node_modules/parse5/dist/cjs/common/error-codes.d.ts","../../../node_modules/parse5/dist/cjs/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/dist/cjs/tokenizer/index.d.ts","../../../node_modules/parse5/dist/cjs/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/cjs/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/cjs/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/cjs/parser/index.d.ts","../../../node_modules/parse5/dist/cjs/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/cjs/serializer/index.d.ts","../../../node_modules/parse5/dist/cjs/common/foreign-content.d.ts","../../../node_modules/parse5/dist/cjs/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/linkify-it/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdurl/encode.d.ts","../../../node_modules/@types/mdurl/decode.d.ts","../../../node_modules/@types/mdurl/parse.d.ts","../../../node_modules/@types/mdurl/format.d.ts","../../../node_modules/@types/mdurl/index.d.ts","../../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../../node_modules/@types/markdown-it/lib/token.d.ts","../../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../../node_modules/@types/markdown-it/lib/index.d.ts","../../../node_modules/@types/markdown-it/index.d.ts","../../../node_modules/@types/mime-types/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/prismjs/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/proper-lockfile/index.d.ts","../../../node_modules/@types/readline-sync/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sinon/node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/stream-buffers/index.d.ts","../../../node_modules/@types/tcp-port-used/index.d.ts","../../../node_modules/@types/vscode/index.d.ts","../../../node_modules/@types/vscode-webview/index.d.ts","../../../node_modules/@types/webidl-conversions/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/whatwg-url/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/xml2js/lib/processors.d.ts","../../../node_modules/@types/xml2js/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","impliedFormat":1},{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true,"impliedFormat":1},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","impliedFormat":1},{"version":"02ec1ffcc0823cb9c9ba420c619d3af2c726e3a674b66a91941c07a3e7f65dba","impliedFormat":1},{"version":"38f6da5b6f318c33e18dd7c983cab3fe52f510c9a2573948fb13f012e01b1ba6","impliedFormat":1},{"version":"b40885a4e39fb67eb251fb009bf990f3571ccf7279dccad26c2261b4e5c8ebcd","impliedFormat":1},{"version":"2d0e63718a9ab15554cca1ef458a269ff938aea2ad379990a018a49e27aadf40","impliedFormat":1},{"version":"530e5c7e4f74267b7800f1702cf0c576282296a960acbdb2960389b2b1d0875b","impliedFormat":1},{"version":"1c483cc60a58a0d4c9a068bdaa8d95933263e6017fbea33c9f99790cf870f0a8","impliedFormat":1},{"version":"07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","impliedFormat":1},{"version":"5d3e656baf210f702e4006949a640730d6aef8d6afc3de264877e0ff76335f39","impliedFormat":1},{"version":"4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","impliedFormat":1},{"version":"c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","impliedFormat":1},{"version":"570efec02480a95fa35e7c6dc3c00c59309d221e0698cefbc9e27a3c13d69c96","impliedFormat":1},{"version":"396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","impliedFormat":1},{"version":"b7b881ced4ed4dee13d6e0ccdb2296f66663ba6b1419767271090b3ff3478bb9","impliedFormat":1},{"version":"06289b9873760aac77aed4035ea6c60b1e0879b8afe47a4530bc8522b9b804b1","impliedFormat":1},{"version":"63c36aa73242aa745fae813c40585111ead225394b0a0ba985c2683baa6b0ef9","impliedFormat":1},{"version":"3e7ffc7dd797e5d44d387d0892bc288480493e73dcab9832812907d1389e4a98","impliedFormat":1},{"version":"db011ec9589fd51995cbd0765673838e38e6485a6559163cc53dcf508b480909","impliedFormat":1},{"version":"e1a4253f0cca15c14516f52a2ad36c3520b140b5dfb3b3880a368cd75d45d6d9","impliedFormat":1},{"version":"159af954f2633a12fdee68605009e7e5b150dbeb6d70c46672fd41059c154d53","impliedFormat":1},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true,"impliedFormat":1},{"version":"894dae169f8193e3f07c3fec14149a60592d1f13720907ffdf7b0c05cfb62c38","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e0d35597ff6c5142082e60814fa39c8a2077a58d8a6a262e619afb5f855f6ba","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"228318442187dee1f3b18047e6281d12d59f7b492d6243db4eb720d53e3c03f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"f51b4042a3ac86f1f707500a9768f88d0b0c1fc3f3e45a73333283dea720cdc6","impliedFormat":1},{"version":"a29bc8aa8cc100d0c09370c03508f1245853efe017bb98699d4c690868371fc7","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f95830ca11e2c7e82235b73dc149e68a0632b41e671724d12adc83a6750746d","impliedFormat":1},{"version":"7aa011cda7cf0b9e87c85d128b2eeac9930bda215b0fee265d8bf2cec039fb5f","impliedFormat":1},{"version":"92ec1aeca4e94bdab04083daa6039f807c0fce8f09bc42e8b24bf49fa5cdbbff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"25bfb291668b70290dd646f6e99e681ded0481bc0610d241a229cda07d7af425","impliedFormat":1},{"version":"6c39d4dbdb372b364442854e42d8c473e2ec67badb226745af17ed5ac41ce6f5","impliedFormat":1},{"version":"7693b90b3075deaccafd5efb467bf9f2b747a3075be888652ef73e64396d8628","impliedFormat":1},{"version":"bd01a987f0fcf2344a405e542ee681e420651eaff1222a5a6e0c02fda52343bc","impliedFormat":1},{"version":"693e50962e90a3548f41bff2c22676e3964212a836022d82e49eca0b20320a38","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"300b0c12998391154d7b9115a85554e91632a3d3e1b66038e98f2b9cb3c1061d","impliedFormat":1},{"version":"8d680d5d1a77028ca1708118b8c941edd90a6329f9dc0315ffc3a06b4820e937","affectsGlobalScope":true,"impliedFormat":1},{"version":"8bc550ee45988b123605e2cbba4dc8d3b4153c3d06f59074c7cda5bc3b2f2fd8","impliedFormat":1},{"version":"5293d799856f47259146ccf0be9a1cc0a4a5343696182d7206ed25ea67d67920","impliedFormat":1},{"version":"d7cdb379f1a8febb8ba181b2bba4c89b7f9189c68ce00292253d9f827eb0b2d3","impliedFormat":1},{"version":"fab49059d6c2026bdb2e53e4e5cde1a39da44e61daff1867c8b3b10b507bfe17","impliedFormat":1},{"version":"5a551275f85bcc4003e543a1951a5b2f682cfba9b2922f65ae0df40ab71724a5","impliedFormat":1},{"version":"22d1a3163b9a961dbe78b0aedbd7bcbc071ce1f31efb76eb013b0aee230fef0e","impliedFormat":1},{"version":"c31695696ade4514cfcbb22799997b690d3dca7fb72beab68fb2e73b6ef450dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"d99ad56d57f2c96daaf4475a8b64344b24dedafdb8f3c32d43552bcc72279a75","impliedFormat":1},{"version":"a101ef17aece908c1029a1bd3f97132794dcff21b4ca0b997d9a633f962c46aa","impliedFormat":1},{"version":"511575e18249b64b90d8f884fdb8a383c767d1a7efccd9d66a4e125a4dc5c462","impliedFormat":1},{"version":"6d8001f2c3b86c4f1de1d45ecb3f87f287ed7313d6999f8c8318cec4f50e6323","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d09f4b48899d342b5d6cd846f95f969a401933b0dcd375a8a7e45832328bb86","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c3d1222e6e3d8c35a4293d7a54d4142ebb8f7f70ec4111b8136df07fdc66169","impliedFormat":1},{"version":"70173c475c6e76ccebc37412b02b2e26f62bf45fc1534c3ebe6d7fa60fb88819","impliedFormat":1},{"version":"1c05d80325e7cb8ad9fe6f4f8cd1798ec87607fe523865b27cab9fc5b816f067","impliedFormat":1},{"version":"863bc4e31de6c75423bb02da16190d582b0a69b8964b61d45920e5b2cb3832dd","impliedFormat":1},{"version":"3c92f365d57fd49656e4907bf1d950d4a4060dde7db35effe2f6348e0e800b86","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"6e191fea1db6e9e4fa828259cf489e820ec9170effff57fb081a2f3295db4722","impliedFormat":1},{"version":"aed943465fbce1efe49ee16b5ea409050f15cd8eaf116f6fadb64ef0772e7d95","impliedFormat":1},{"version":"0435070b07e646b406b1c9b8b1b1878ea6917c32abc47e6435ec26d71212d513","impliedFormat":1},{"version":"f71188f97c9f7d309798ec02a56dd3bf50a4e4d079b3480f275ac13719953898","impliedFormat":1},{"version":"c4454589a0aa92c10d684c8c9584574bc404d1db556d72196cd31f8f7651af1a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b17790866e140a630fa8891d7105c728a1bd60f4e35822e4b345af166a4a728c","impliedFormat":1},{"version":"c50c75f4360f6fc06c4be29dafe28210e15c50cd6b04ad19c4808fa504efb51a","impliedFormat":1},{"version":"d4a1f5f7ee89b2afffd3c74282f8ee65b24266c92b7d40398c12a27054ed745c","impliedFormat":1},{"version":"900b5a9802192bc77eba35a5b87ce770df7b867a6d61772c554058c9ed635386","impliedFormat":1},{"version":"65278b3e3cb8e3f0b7bc712e86858ba7695501e76a84eedb730cc15b85d92b56","affectsGlobalScope":true,"impliedFormat":1},{"version":"f43fcf89d75f13d0908a77cd3fa32b9fd28c915deded9b2778b08f2e242d07a7","affectsGlobalScope":true,"impliedFormat":1},{"version":"9b6fc34aca8b0411b96ba35b2315017236a47709a1a98d5e16aed3b84037b9e8","impliedFormat":1},{"version":"aebf613f7831125038942eba891005fd25fa5cadcc3e3d13af4768dc7549161f","impliedFormat":1},{"version":"0faee6b555890a1cb106e2adc5d3ffd89545b1da894d474e9d436596d654998f","impliedFormat":1},{"version":"247e5c34784d185bc81442e8b1a371a36c4a5307a766a3725454c0a191b5cfad","impliedFormat":1},{"version":"1c382a6446d63340be549a616ff5142a91653cea45d6d137e25b929130a4f29a","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"20eb6689443f55ebd33372566b0afad619f1ba48fec4ffb4ab0c119e4fc52eea","impliedFormat":1},{"version":"a1b36a1f91a54daf2e89e12b834fa41fb7338bc044d1f08a80817efc93c99ee5","impliedFormat":1},{"version":"8bb4a5b632dd5a868f3271750895cb61b0e20cff82032d87e89288faee8dd6e2","impliedFormat":1},{"version":"0c1aabfd9fb1818afb2e798f91f669edafce59cd7e3423d25b1cfccfaaf2c403","impliedFormat":1},{"version":"017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","impliedFormat":1},{"version":"ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","impliedFormat":1},{"version":"9ae7df67c30dc5f52b7b21e8bb36fd9ff05e7ed10e514e2d9ed879b4547c4cd3","impliedFormat":1},{"version":"fd6a17c2d015cb2963d62db7566a43818424e8f32eb821fa9b8b142d4ab12664","impliedFormat":1},{"version":"4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","impliedFormat":1},{"version":"e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","impliedFormat":1},{"version":"d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","impliedFormat":1},{"version":"d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","impliedFormat":1},{"version":"5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","impliedFormat":1},{"version":"27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","impliedFormat":1},{"version":"eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","impliedFormat":1},{"version":"52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","impliedFormat":1},{"version":"5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","impliedFormat":1},{"version":"fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","impliedFormat":1},{"version":"d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","impliedFormat":1},{"version":"fc9bdd9b3d8fb59c913cb3b8dea0d79b38dfe9331ef07e1c6dc6bf363f061ad6","impliedFormat":1},{"version":"e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","impliedFormat":1},{"version":"0c3c4ce6a1884610c99306719f59174d81808c69393c30119f9c2aef0449a2cb","impliedFormat":1},{"version":"219a25474e58a8161b242776856ec5f6960839b63e74809445e51cadbfc18096","impliedFormat":1},{"version":"5a0d1534e9493ae44b08b3055172da38370e2afd2bc3d4bea11f7be78344036f","impliedFormat":1},{"version":"6309a45fc3c03d3c4d56228e995d51974f53009a842374695b34f3607877e5a3","impliedFormat":1},{"version":"bef94eba81ae2c09059c0d9abdb1ae1b7090314f70550f3c8cd5d7ead4a4f212","impliedFormat":1},{"version":"48b787ad458be9b524fa5fdfef34f68798074132d4b8cfe6a6fe9c2bf334c532","impliedFormat":1},{"version":"37280465f8f9b2ea21d490979952b18b7f4d1f0d8fab2d627618fb2cfa1828e3","impliedFormat":1},{"version":"c12f3ff5e221c1d3e4eaf47a372b538d8e79bd9a15266c2b049a597da0b86924","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f3f85dc43cb93c5a797f1ff0fa948d0e17843a443ae11a20cc032ccdf1b9997","impliedFormat":1},{"version":"581843e855d92557cbe9dfe242de4e53badae5e9096ca593b50788f7c89c37f2","impliedFormat":1},{"version":"869010bc679df668137cb3b78a3cb8196e97acf285208a57f6156ceac894a2f7","impliedFormat":1},{"version":"bcae62618c23047e36d373f0feac5b13f09689e4cd08e788af13271dbe73a139","impliedFormat":1},{"version":"29a99d2e57b3e08a997cbc2397bdb251441a545306a74b95ffedc5f03d9bc6b7","impliedFormat":1},{"version":"5ae003688265a1547bbcb344bf0e26cb994149ac2c032756718e9039302dfac8","impliedFormat":1},{"version":"09e811cc1088d9ea3a7ddd7290f6a13767f56c85daf8c3374a06a45a08d55647","impliedFormat":1},{"version":"a86053981218db1594bd4839bde0fb998e342ecf04967622495434a8f52a4041","impliedFormat":1},{"version":"5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","impliedFormat":1},{"version":"7b270dc53f35dd0b44bfa619ad4d351fffd512e14053c3688323ed007eda3f6d","impliedFormat":1},{"version":"6d4e928f232ade7221cffc6e4332ec935baa176415c9bf5d12111bb883a247d2","impliedFormat":1},{"version":"e86ad029224d4f2af3e188be8b5e9badf8c7083247572069bac7bd2193131fc7","impliedFormat":1},{"version":"057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","impliedFormat":1},{"version":"d94034601782f828aa556791279c86c37f09f7034a2ab873eefe136f77a6046b","impliedFormat":1},{"version":"105ae3dd61531488194f412386ba8c2b786f1389ac3415098cc47c712800da29","impliedFormat":1},{"version":"45851fbb6595233ecf6be213f74f00690c752782387796c66ea186750f831d06","impliedFormat":1},{"version":"4ee905052d0879e667444234d1462540107789cb1c80bd26e328574e4f3e4724","impliedFormat":1},{"version":"151659e152d71986b8943b9943cd7fbe27a65874655081602de7ea24a0f66e9b","impliedFormat":1},{"version":"3448e2fa1ae3a52d50e1e82e50b6ae5b8bd911004a8824b0c6b26c8cdcd15fec","impliedFormat":1},{"version":"c0c0b22cefd1896b92d805556fcabda18720d24981b8cb74e08ffea1f73f96c2","impliedFormat":1},{"version":"b97e6411a3ee83e6f77760f0400d117313a980d05ec89f1e1a7502229e36d060","impliedFormat":1},{"version":"270418f8a6639be745d14bfd085e62685f24eaa6d6482aa9803bae8b8b93919a","impliedFormat":1},{"version":"4cb33d05ff168c1ca836d6d438f93040972af43fc09774876c4add2ad96d125f","impliedFormat":1},{"version":"902d2b66388607197ec48798c94a6ffc657fe1cfbee15e49b6b3052de0e5b8fa","impliedFormat":1},{"version":"38104b9a37d0b9dc54be36ae43b1a32f9cfae34742743bfd7104cf1f39661225","impliedFormat":1},{"version":"47ff32ca9ab8474e89615b4bbe5f2264c2940fc12b86c4dc0a99659479517a6b","impliedFormat":1},{"version":"f892f85b4838f6a2ff1438d240dcf23a872d090794967c7f817a82ea8da1ad8e","impliedFormat":1},{"version":"cb498c53a9d35ac1cf9a3515f3835d48b4626a612cf7540c5bfb99542c9ab1a5","impliedFormat":1},{"version":"b86e64c48044bb73c6de7aa2cdf9295b2c104221e6a68b408225b283d1bcfda2","impliedFormat":1},{"version":"16173f5b3e68a373e7dfe6d00948549facc9947c9dbde813f1efe3a0f236ff6a","impliedFormat":1},{"version":"f457fc1b7583e1215393db13b95a186593660aad29706515ab7479869bc585e0","impliedFormat":1},{"version":"a11288edc8161f664148ea7d56101517e380335f5fa1a94408db86efce025bba","impliedFormat":1},{"version":"0e2a6b2eeadafbc7a27909527af46705d47e93c652d656f09cc3ef460774291b","impliedFormat":1},{"version":"d6d561bf4309a197e4b241fb0eacebf14c400661c4352676cd3c88c17e5ab8a2","impliedFormat":1},{"version":"ed012a19811c4010cb7d8920378f6dd50f22e1cf2842ecb44a157030667b165e","impliedFormat":1},{"version":"4085ac780790cc5787e375bd6c7dc149610665514e1d3d8fb65aec29efb691c9","impliedFormat":1},{"version":"7634eca84d60522b68ac679813fd9247a4260f7412890e924c7779758f8d6391","impliedFormat":1},{"version":"b4ff74f0589487410168be50e3231caf687c5e1302266709742382e8d004fe1e","impliedFormat":1},{"version":"406f227eebfe8be216d7a4b215ed09198b0c2f6599f2273b69ee5b75824c5435","impliedFormat":1},{"version":"e7cd1d6f8afb317dca8c5b6a60d5cd55aacf8d9ed8ae39f22e3104ed0c479552","impliedFormat":1},{"version":"75c9a36ada92da43627b5cf1142a6fe20f50ad00abacb90204b74b19775521c2","impliedFormat":1},{"version":"8a90f97fdb10d83c6842a699c3df474246755f4fbf3ee2d35e69d6599fe9092c","impliedFormat":1},{"version":"88aacf6e2493633490812c70595b517c8e4299f054d28a51687b10f0968276c3","impliedFormat":1},{"version":"f6cae2c0acda884c4b9dec4063d062252cf0625a04ebf711a84d7de576427c3e","impliedFormat":1},{"version":"946739ab9acb2fccd0b2e5a0d1ac4dfe69b9279f33a26e7f0a7a7ab24ee343fc","impliedFormat":1},{"version":"d037b771e89ef6dd81c71de92cc644d68b1b5d1ce25dbce9c2cfe407dd0b5796","impliedFormat":1},{"version":"25091d25f74760301f1e094456e2e6af52ceb6ef1ece48910463528e499992d8","impliedFormat":1},{"version":"853d02f4f46ca9700fefd0d45062f5b82c9335ba2224ca4d7bd34d6ae4fc4a7f","impliedFormat":1},{"version":"ab679e25dcb5d085ca42c33ffc8e2fc48411f81ad3108a3aa81eca79c104ef95","impliedFormat":1},{"version":"b901209745b3cef4b803e42731c40f5c2c2c7101bbd5f481c0fd1c43f9f440f3","impliedFormat":1},{"version":"cf6dc8f18bc5ee063dc1a37bccd3031dc0769f11622399018c375aacfcbda7c9","impliedFormat":1},{"version":"8ca2d01f5f3d4d4067aadea230570afa4c91e24e485fbe2e9d53ead3b33f80d0","impliedFormat":1},{"version":"e35526a0977b9cd80f799aef3314cb2bfe66aeb40879c888f7a993bd3437fc42","impliedFormat":1},{"version":"81d92e5c4d618ba0660121ed30c603e8111ad605e7562948f7430d87038daee0","impliedFormat":1},{"version":"36990d934030ce1060f203c4b45ee7a811aa11aaa4d075bb81c2748da8329607","impliedFormat":1},{"version":"0ae845a8508fbfe0344eb505ddb4a4e5a8759f5ea4608bfc5f3f1b9ea51d76b4","signature":"9230a7b03ae3cce93e94a2cc844da1e5414d2be7505ecc82402094a132cfbbda","impliedFormat":1},{"version":"27350a2872f30b97e947f52ccf15654239eda7c9ff35135a1aa82cc37642fdeb","impliedFormat":1},{"version":"ed3e176bc769725ebc1d93f1d6890fc3d977b9155ae5d03be96ec2d49b303370","impliedFormat":1},{"version":"7933769d84f5ae16546aef06537ca578f1c8d7cca0708452a00613050ac1f265","impliedFormat":1},{"version":"d405963c5f69955e95c30ef121c7a3309f214f21ef09dceb5d7ac69557cbe0fa","impliedFormat":1},{"version":"29c7276f64f0de86eb981ddd4e5a8e7f832fc8d4e712c7e8e1beab6af8cc4147","impliedFormat":1},{"version":"6f11170f0056f1681101d9a1045af3c0d2ea489f14d1a0d4c0b2cb7860cfb8f7","impliedFormat":1},{"version":"fdd84224998f5f4d97017b829548f1fac4ac803025e16c27d4fc7f3426c6261e","impliedFormat":1},{"version":"1591996e71f1aab2e8726d7d04d59a3e8f5162578bee747e883932cfc0b57b2a","impliedFormat":1},{"version":"f8ce447bbda4f75da74cecd866cc1ff9bdde62189ac9d8dc14a16c48b3d702fa","impliedFormat":1},{"version":"da3f7f511c344fb56275cd954156a4d736c9f414f9b84bb0ee229ef583e38074","impliedFormat":1},{"version":"c7d30b164562b7ce99fcb53ab78f937cc845e003f6089d648351331921379994","impliedFormat":1},{"version":"fe2d1251f167d801a27f0dfb4e2c14f4f08bf2214d9784a1b8c310fdfdcdaaea","impliedFormat":1},{"version":"2a1182578228dc1faad14627859042d59ea5ab7e3ac69cb2a3453329aaaa3b83","impliedFormat":1},{"version":"dfa99386b9a1c1803eb20df3f6d3adc9e44effc84fa7c2ab6537ed1cb5cc8cfb","impliedFormat":1},{"version":"79b0d5635af72fb87a2a4b62334b0ab996ff7a1a14cfdb895702e74051917718","impliedFormat":1},{"version":"5f00b052713bfe8e9405df03a1bbe406006b30ec6b0c2ce57d207e70b48cf4e9","impliedFormat":1},{"version":"7abcae770f21794b5ffbc3186483c3dbcf8b0c8e37d3ef3ed6277ece5c5dd4be","impliedFormat":1},{"version":"3e642f39da9ad0a4cd16ccbd7f363b6b5ad5fa16a5c6d44753f98fc1e3be9d96","impliedFormat":1},{"version":"7f5a6eac3d3d334e2f2eba41f659e9618c06361958762869055e22219f341554","impliedFormat":1},{"version":"6f996f44113b76a9960d3fad280f4f671115c5e971356d1dbb4d1b000af8b3b3","impliedFormat":1},{"version":"67f2cd6e208e68fdfa366967d1949575df6ccf90c104fc9747b3f1bdb69ad55a","impliedFormat":1},{"version":"f99ab9dffe6281c9b6df9ae9d8584d18eabf2107572bbd8fa5c83c8afe531af8","impliedFormat":1},{"version":"4fc9939c86a7d80ab6a361264e5666336d37e080a00d831d9358ad83575267da","impliedFormat":1},{"version":"f4ba385eedea4d7be1feeeac05aaa05d6741d931251a85ab48e0610271d001ce","impliedFormat":1},{"version":"f5405fb679a467cb979f8744940b22b7bc3a0bcbe648c3910d98de3188d42a78","impliedFormat":1},{"version":"68969a0efd9030866f60c027aedbd600f66ea09e1c9290853cc24c2dcc92000f","impliedFormat":1},{"version":"fc79932b9aa710f025b89bf8d8329d99080286e5e079a7d5a529236e9f5dd69e","impliedFormat":1},{"version":"6646d9075e3e0eedb02c9d03bffef54c8bbeb601d27eed46f143aba435bac37d","impliedFormat":1},{"version":"0dec72b4c5c4bb149750fef4fc26bdae8f410de941ee766c953f5ac77381d690","impliedFormat":1},{"version":"8f2644578a3273f43fd700803b89b842d2cd09c1fba2421db45737357e50f5b1","impliedFormat":1},{"version":"639f94fe145a72ce520d3d7b9b3b6c9049624d90cbf85cff46fb47fb28d1d8fe","impliedFormat":1},{"version":"8327a51d574987a2b0f61ea40df4adddf959f67bc48c303d4b33d47ba3be114a","impliedFormat":1},{"version":"00e1da5fce4ae9975f7b3ca994dcb188cf4c21aee48643e1d6d4b44e72df21ee","impliedFormat":1},{"version":"991fd5ebf9f30ffa17cae6faeae6a838d3d91bdcdd419bce358dc99b8e5b0ad0","impliedFormat":1},{"version":"4d250e905299144850c6f8e74dad1ee892d847643bacf637e89adcce013f0700","impliedFormat":1},{"version":"51b4ab145645785c8ced29238192f870dbb98f1968a7c7ef2580cd40663b2940","impliedFormat":1},{"version":"589713fefe7282fd008a2672c5fbacc4a94f31138bae6a03db2c7b5453dc8788","impliedFormat":1},{"version":"26f7f55345682291a8280c99bb672e386722961063c890c77120aaca462ac2f9","impliedFormat":1},{"version":"786691c952fe3feac79aca8f0e7e580d95c19afc8a4c6f8765e99fb756d8d9d7","impliedFormat":1},{"version":"747d6d391f97a46f6880e10c8e4858bbd6568070a0f9af0ec74c26475e2c885f","impliedFormat":1},{"version":"354f47aa8d895d523ebc47aea561b5fedb44590ac2f0eae94b56839a0f08056a","impliedFormat":1},{"version":"62b753ed351fba7e0f6b57103529ce90f2e11b949b8fc69c39464fe958535c25","impliedFormat":1},{"version":"514321f6616d04f0c879ac9f06374ed9cb8eac63e57147ac954e8c0e7440ce00","impliedFormat":1},{"version":"ce7b928daedd974205daf616493c6eb358069ed740ed9552c5f4e66da19fd4bf","impliedFormat":1},{"version":"bd0b6d0720c8b9fb5983761df5b57d6dd6646baf9cc438985f1b53d395aad3d0","signature":"b1aa0340d4248aba8e36e7d246b223e3ae89fb27f167f9e3c7b14838bb41b13f","impliedFormat":1},{"version":"67543772f3c75dc5a2d827c954cf0fde958401e96a6e921fbf6079ed7f4f4daa","signature":"620290e7cd91726a13ce06daf8437b37f4bf782c755674a41d881c2217a35830","impliedFormat":1},{"version":"04c72d6fa3275b08865357900ba7580a5c9e31692a12641a25665fed8411c8b8","impliedFormat":1},{"version":"fad2e326af305b648dd46cac96bf31c88f508823cfea877fae79a9b01dd4d524","impliedFormat":1},{"version":"45e0dd06a42ab62f879b1567438bce5b85eee9c6875685ca2c6ca10f978038b2","impliedFormat":1},{"version":"ad5976f5c289f6720287944a265db0761709be06d5331fc37a1b2999fa13bacc","impliedFormat":1},{"version":"15ffad7691bca48369580748c576e889f19700b8b3a1bfc6586beab673a87956","signature":"88c0699b282331433af615deb79fcd6f8e815e93bd40dd7200c1e3cdf052e5a0","impliedFormat":1},{"version":"ce096c727f1ae221bd35b46dd3e050bf3909674e6e9ec1518b3a5aa89ab2a497","impliedFormat":1},{"version":"1a8e6a4f31a5196144f35d0434e16369881d828c849d6a1c9290b6bde8807449","impliedFormat":1},{"version":"42a9ac86df0fa58634ea8a5f7f07b9b9c3243d82e306fb22d8a41639935a6c87","impliedFormat":1},{"version":"5766c26941ae00aa889335bcccc1ecb28271b774be92aede801354c9797074bb","impliedFormat":1},{"version":"3a19286bcc9303c9352c03d68bb4b63cecbf5c9b7848465847bb6c9ceafa1484","impliedFormat":1},{"version":"c573fef34c2e5cc5269fd9c95fe73a1eb9db17142f5d8f36ffe4a686378b8660","impliedFormat":1},{"version":"d97e30dd93590392fed422f2b27325d10ab007d034faaaf61e28e9ddc9d3825b","impliedFormat":1},{"version":"d1f8a829c5e90734bb47a1d1941b8819aeee6e81a2a772c3c0f70b30e3693fa9","impliedFormat":1},{"version":"be1dfacee25a14d79724ba21f1fde67f966b46e2128c68fed2e48c6e1e9822c5","impliedFormat":1},{"version":"19b3d0c212d241c237f79009b4cd0051e54971747fd89dc70a74f874d1192534","impliedFormat":1},{"version":"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","impliedFormat":1},{"version":"0771ddb474014581a882838fd20e25e829038bb53c127c5b339812f749f6aa3e","signature":"529e5b8f3b7ad6bbb679268c7c9f29dcc0670e511574197e9755fbd2d70e1c97","impliedFormat":1},{"version":"d59857b5ae5e3a693c3a2966fe3799ca0ee3c9ff9f3b3e2706cc31bd9f3d4ec4","signature":"e06d050ebf5ab7ae4506d7de03d369e5f2f7c96df0e4ba6aec7a6b2450c039d0","impliedFormat":1},{"version":"952a60f7c6c46b683f6e0804d1e8e46244e90a68cdaef3d426708e0c82edcd94","signature":"8b3603d15e3899df5abe14590f4549414118396c49c75e4cf6f0e944079ded78"},{"version":"a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","impliedFormat":1},{"version":"84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","impliedFormat":1},{"version":"415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","impliedFormat":1},{"version":"901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","impliedFormat":1},{"version":"ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","impliedFormat":1},{"version":"b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","impliedFormat":1},{"version":"ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","impliedFormat":1},{"version":"068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","impliedFormat":1},{"version":"3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","impliedFormat":1},{"version":"fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","impliedFormat":1},{"version":"d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","impliedFormat":1},{"version":"3f6af667357384c1f582ef006906ba36668dd87abe832f4497fffb315c160be9","impliedFormat":1},{"version":"363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","impliedFormat":1},{"version":"c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","impliedFormat":1},{"version":"2f1a8ca9846d9ac5481544b5b53811efe2c44bba9195af584136fb34371d5e23","impliedFormat":1},{"version":"1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","impliedFormat":1},{"version":"ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","impliedFormat":1},{"version":"d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","impliedFormat":1},{"version":"4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","impliedFormat":1},{"version":"7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","impliedFormat":1},{"version":"ea2de1a0ec4c9b8828154a971bfe38c47df2f5e9ec511f1a66adce665b9f04b0","impliedFormat":1},{"version":"c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","impliedFormat":1},{"version":"4ef0a17c5bcae3d68227136b562a4d54a4db18cfa058354e52a9ac167d275bbb","impliedFormat":1},{"version":"a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","impliedFormat":1},{"version":"64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","impliedFormat":1},{"version":"c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","impliedFormat":1},{"version":"b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","impliedFormat":1},{"version":"434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","impliedFormat":1},{"version":"c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7","impliedFormat":1},{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","impliedFormat":1},{"version":"81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","impliedFormat":1},{"version":"4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","impliedFormat":1},{"version":"f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","impliedFormat":1},{"version":"1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","impliedFormat":1},{"version":"ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","impliedFormat":1},{"version":"ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","impliedFormat":1},{"version":"f7a8f4bc1e8e786c6115970b8f3ed4797be48108de00b3552bf590706d3a5e8a","impliedFormat":1},{"version":"c2b694d903303007a430acf66980f3b503dbd4e50cf6c183af0daf39c8d79ee8","impliedFormat":1},{"version":"a945cfe6ca774e53111b0cfb6b767261352dc6e15d27641b61e5c634b4a729c3","impliedFormat":1},{"version":"3c10545e61e9428bebdc65fed8d11e09d203afb4745eea11b98be7b218a2aeb1","impliedFormat":1},{"version":"fde1236eef449f111d0eb306a5245dab335974dd0ccac39223ea200907c27a8b","impliedFormat":1},{"version":"c1a5f70e04c94e202ef756018ddacc22e752ee3e5eb401170a2dca2773877277","impliedFormat":1},{"version":"f4bedf06294a6a4d28179ee9689f2d8e00ad4d9806a99b234c2a58f1c9147acb","impliedFormat":1},{"version":"91d68d8136434dbe13c34fe6ef3fde75791f9be128ab6b4312d1699e1fcd9859","impliedFormat":1},{"version":"260c24d1b8fdb9284ffd93112fb4141e94970be4ff2ca23ca60b361dab39eee2","impliedFormat":1},{"version":"cb5327ac944956c162522b4388a74a4b3151e2ba3fd5b057ad13a452b2c30189","impliedFormat":1},{"version":"7bac1d3d9a1f0290c91e88426dab334d9d31a712647df5fb5666ad7acb3d53bd","impliedFormat":1},{"version":"41d461c745d59a6e125dbb554b814bc99a9f072325ffd3c8407809378995fdd4","impliedFormat":1},{"version":"7639642137f8329ef4a19410ce8d3e46910a76294df263f46b428fd61c79d033","impliedFormat":1},{"version":"8e69efd9afdfcd34d85adb6d8e71a5e13fea2a33c7019dd624cc7696772183a0","impliedFormat":1},{"version":"a7ebfe3e2c8f4fea5dac7ffbf6d00acee63c530de24d57cdeeed05530285ca26","impliedFormat":1},{"version":"82b4045609dc0918319f835de4f6cb6a931fd729602292921c443a732a6bb811","impliedFormat":1},{"version":"0fd70ca1eaef1e2dd6f48f16886df4838664821d992fd8076d07fc15e83c8498","impliedFormat":1},{"version":"ba30e6d2f1d20c707566cf485167331a10c539802a79040ced055b62a7aae53e","impliedFormat":1},{"version":"642eae3e9ec5997883f86dd7346d818f07d40fb83cc3530f0e52e232ffb4e631","impliedFormat":1},{"version":"29a6df727893a86807f4dc02116c31d9e6097139579ed6e8029b14c526cba027","impliedFormat":1},{"version":"537a2b61594512c5e75fad7e29d25c23922e27e5a1506eb4fce74fe858472a6e","impliedFormat":1},{"version":"311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","impliedFormat":1},{"version":"7c07838da165fd43759a54d2d490461315e977f9f37c046e0e357623c657fc42","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"115c8691bd8fac390f6f6eef5b356543d716da7cffa4c2f70f288d56c5b06aeb","impliedFormat":1},{"version":"e91516e66f9fbf39c978a4092c16ffda3bb0b32158fca6def75aae9fab358153","impliedFormat":1},{"version":"abd4563a6a7668fa6f8f5e5a425a0900b80fc2309fec5186e2cae67f3ce92663","impliedFormat":1},{"version":"cb48f3011e72efef9d5a5b312f4a956f699b8d423bf9f2772724cdded496bd50","impliedFormat":1},{"version":"9aed07904079877252e6c0aedf1d2cf1935ed91d4abc16f726c76b61ea453919","impliedFormat":1},{"version":"6621af294bd4af8f3f9dd9bd99bd83ed8d2facd16faa6690a5b02d305abd98ab","impliedFormat":1},{"version":"5eada4495ab95470990b51f467c78d47aecfccc42365df4b1e7e88a2952af1a3","impliedFormat":1},{"version":"4720efe0341867600b139bca9a8fa7858b56b3a13a4a665bd98c77052ca64ea4","impliedFormat":1},{"version":"566fc645642572ec1ae3981e3c0a7dc976636976bd7a1d09740c23e8521496e5","impliedFormat":1},{"version":"66182e2432a30468eb5e2225063c391262b6a6732928bbc8ee794642b041dd87","impliedFormat":1},{"version":"11792ab82e35e82f93690040fd634689cad71e98ab56e0e31c3758662fc85736","impliedFormat":1},{"version":"3957b1244f49991b89f12cc45942c24f9c5927dc72677b105bb896d316f0454e","impliedFormat":1},{"version":"6c53c05df974ece61aca769df915345dc6d5b7649a01dc715b7da1809ce00a77","impliedFormat":1},{"version":"18c505381728b8cc6ea6986728403c1969f0d81216ed04163a867780af89f839","impliedFormat":1},{"version":"d121a48de03095d7dd5cd09d39e1a1c4892b520dad4c1d9c339c5d5008cfb536","impliedFormat":1},{"version":"f6d55e607f55be35a3c481b7685461a9acc1e27b893839218eb9313f7e85278c","impliedFormat":1},{"version":"b394ea95c82281d184ea83e8511bd1a43f78d6908eb34b536446d3eb08f9d47f","impliedFormat":1},{"version":"41edf4071b119fdf28b46a3c28c0845f2598bb8b196e7e4c9e01415403fdaea5","impliedFormat":1},{"version":"2bdf3bcf1a9771a288a783d1e8ee5d1d3126c11ddde26ae44864ab432192a6f6","impliedFormat":1},{"version":"603bafdacee4c8850ef5820f8642a817a3f0db6f76dda0474bcf3d17c2e15398","impliedFormat":1},{"version":"a10c79ab97c8a4f6074203094dba87bc736ca574ec480be1df6ec2c82d774573","impliedFormat":1},{"version":"801f049a9e74e941e8ca8add60492aaf4ab717a166248d355ded5753d80f9a85","impliedFormat":1},{"version":"70bba0a9c9c2ad7a042e134a840c4d8462bf0ad98e41c50ca52725ae47265eb9","impliedFormat":1},{"version":"f4dc28fbbba727722cb1fd82f51a7b9540fbe410ed04ddf35cab191d6aa2ba10","impliedFormat":1},{"version":"33589aa637b92a02e6138fcaab28454fcf35a5e7d4cf91343c83342715f9b55a","impliedFormat":1},{"version":"ac13ba680450baa70ac9e9a2f02b50ae43437fd23d76bf9215a6a5b429455010","impliedFormat":1},{"version":"8b325ba54f25c33b38550f76a31afb82db9d7f4b1891276eeae5aba2f2d3bc30","impliedFormat":1},{"version":"eca427f98f87824d62688c987be1b6fb5dbd2c21a71fbb42702c7e365d0309bf","impliedFormat":1},{"version":"93c931504d284fb193a7cce460e4c2d30d4ed247e246e1f214a8064e95198ce8","impliedFormat":1},{"version":"ce972ae1cfa1741dfc7d5b8caeaabfb696023f45a80c0d71fe55494604cc78c8","impliedFormat":1},{"version":"6360869b4f8e9b942293072189349e2c1a44cc3cd6757e83cc62619e6abb01ad","impliedFormat":1},{"version":"f3ac122e178b71c8d2e74f85d0d0ead1ab592efd4ca989db632bb2f5ecbea484","impliedFormat":1},{"version":"2db9f3f74d99d1d437ca92760f510c76e9024d372506266d8443745eb77eff4a","impliedFormat":1},{"version":"e6bd80f63b2290bcea0bcd06002a19739050f188a8accebec706685cda627755","impliedFormat":1},{"version":"6717f2b01e15e479a01d76258afb0d5f8130fd5d6759a04cd60fde5587549efa","impliedFormat":1},{"version":"0e841b93051d30dc91ae7ecbddb1d89152875ac2e92a18f57d26a135466ba5a7","impliedFormat":1},{"version":"42afd9d91bce6d077990a4f3628bcb7f8fe1bc0397ae481bdf54d6fc7c5cd3a4","impliedFormat":1},{"version":"12f6e76f5766ffb9aaf71adbf0a46b8dca86c59982cbe16a2addb87b68c8b937","impliedFormat":1},{"version":"ec8bff9f60af63c0d12517026faff805a05ae930848edf9f35ef27cf8b0f8478","impliedFormat":1},{"version":"2b26174b7cae62f9d9843b5cab80a844fcf530b528348717180a2e60fcd8c53e","impliedFormat":1},{"version":"16189422d0a96941777ea137f472b05a8dce2c530b4e61970c9412e0a139f9b8","impliedFormat":1},{"version":"373f28376805407a378a80ff2b08c56fa0bf7ac76e5abdedb5a00a4aca2ba9f6","impliedFormat":1},{"version":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"8edadbdab1f9f41f86b9bf0151213fbc7778a337703888ebacf017e73738fa00","impliedFormat":1},{"version":"675d65b49d00d283578a569e662548c2a55a95d7c1a211f9e9a32c6e1398dce8","impliedFormat":1},{"version":"4d11636fad62a75861b44b117d7237d38d957ddd51e09f4021f8b86acc2349b7","impliedFormat":1},{"version":"dbc85ae54cb8da38556b3dc33522159c8a5558c79568edbe4977226764e51219","impliedFormat":1},{"version":"7bf23edcdb0ec0715b7f7b85695a1078a132067c495efa8f6cdcda9359659f9c","impliedFormat":1},{"version":"4ad28da36ad48edec414054e1daef40c1016357b188eca0f72977f30222d9c02","impliedFormat":1},{"version":"6c4032871e6cfcbf2356a398c14a23a54af756bf7a5aff43cddb96b09469248e","impliedFormat":1},{"version":"81f20249f433350a8e13cbb9206779e667f0d5e5ac4b8f014cdf6b6e42a136fc","impliedFormat":1},{"version":"c7185143683e9ba278420520af2e2a80dd911e88e5c08c56405b2a65996e2a1f","impliedFormat":1},{"version":"ca642739f49fb9d709f726a6447cefcaf21d8ccb16595724c8929b515a08ef53","impliedFormat":1},{"version":"42adbc164a978ef94024a312dd27e2415fcf034ca6e1ada520b40582704b3e47","impliedFormat":1},{"version":"4c3e6490ded76314f8115ca4657084c5bd53560db3b366e871c2e44b44437e4a","impliedFormat":1},{"version":"5c44dc0b569cde877bdd06ce1124acd6ae621d0a5dfc65a6668e13b85ca54d55","impliedFormat":1},{"version":"4bc6dbef10e6d46dad778f5fc190eef94e5568d612140b8791b00b01882ec1d6","impliedFormat":1},{"version":"3bb26409311deb6bb7a276fe8af90048fd1146f73881ee9826821df71d11980b","impliedFormat":1},{"version":"e463cc21447f0a1aeeeb793f51f4c165be1cec7583c15f68b8a1703c343a6cca","impliedFormat":1},{"version":"3ba99b530549ef5f440cab610ca72cd7bdc1aab48ba22d24bd00a931aedff21a","impliedFormat":1},{"version":"d62c0b0d23609a485dff9b8ed8e9af9c56b8789dc70a07d4bdbb26f16420b249","impliedFormat":1},{"version":"a2609926cd0259b582f55812d4ea93ff0440e38dd015bdb95394b26ad3d34cd1","impliedFormat":1},{"version":"2bdaf407163ca9ca9bc3c1d3fb78ad26b6bd2f7d68b04810fc28072925a95e9b","impliedFormat":1},{"version":"95347f256453f88602fcfc792b0ccea75f330aa22150bd95a6a8bb034a20ba14","impliedFormat":1},{"version":"dd2505eec07d3d341be4322f9f0380b5196f2b163944016227bb599dd89136e7","impliedFormat":1},{"version":"f9dfcd54e603db0684207424124c340a7eb0e61807ece0cdb51a8801c47c9155","impliedFormat":1},{"version":"2d10d8e7f884bbbbc1dc980464cd36346f2b2aa21bb2c049d21b381053bafbbf","impliedFormat":1},{"version":"7f1567b9dfb571a80556155a5bff1c946b23e74443466689bed24095604b3a9b","impliedFormat":1},{"version":"b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","impliedFormat":1},{"version":"51796c3726bf734b061fac41b479a660f9afccf50b8b493835e204723d23a84d","impliedFormat":1},{"version":"ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","impliedFormat":1},{"version":"970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","impliedFormat":1},{"version":"e81c6b5f3f287690f7400c7468dc2bf21e621902dc1b6f98236e38235c0dfc68","signature":"9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","impliedFormat":1},{"version":"e50222c22db171b6e6f102dad414ba90b1ad3802537779e838bed86ff506cb28","impliedFormat":1},{"version":"4c36f9d0ffb25cf61b696b2777ba06d553d1b0cfd12d9eed8a1e3b1a50beb2f7","impliedFormat":1},{"version":"dd478451ffa00f4352bffe4f55b4531c8dec0edafb5777272089e5127dca808c","impliedFormat":1},{"version":"aedddd59fc4889fcdeb54a3b2a4943736f282c00db826ff710acb6bc91873b0d","impliedFormat":1},{"version":"5d9a5cc1712870f91f66850e7056e0d03b4046de5558a00e7190b6a9c2f7d432","impliedFormat":1},{"version":"0daf877cd2dcb81c0e39a96ee20262dc07ecc6f68d65cdb9cc6e6cf2f31d29c5","impliedFormat":1},{"version":"6206a6984c6210c7e02e8cec6c2417f6d2458ec36ac97b80ce9f894933a08082","impliedFormat":1},{"version":"d686fcb07a661fef0866137e450a487e710c233cb24f04d11426228162595d7e","impliedFormat":1},{"version":"e21af678a334e57edb0948acafa5f8d029a86c515f74b35701de2b7f0734ed78","signature":"e135af5c48d2dfc0c658e06827798aae78a97933bbdbaf8e023ee003d47651b1","impliedFormat":1},{"version":"8e3f8a63b6af3fd917721cfe670eedf5aae7df605d0072c5997021eb6fbdae31","impliedFormat":1},{"version":"046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","impliedFormat":1},{"version":"26b82a7ff864d0e68bc4578771898b91feabcb39dd6371970fd012827bd684f1","signature":"8f4a728c02701563b8b3c4ff7958bfef49dd9e03215db06d31ead9ccd5270242","impliedFormat":1},{"version":"e2264b7f593788fca68253d204722139971cefcc19f01a9540b40e3c6a824152","signature":"cf8659543b380c9cf02c88e231eaad406f323f6b1d3eb877d4cad9ff0408974f","impliedFormat":1},{"version":"a6260e50e119a4ae143e080cb69501b76f70b55df4f40b3874ee785277003570","impliedFormat":1},{"version":"311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","impliedFormat":1},{"version":"c032a9b7dfc5f9b86ac5b1535fe72154dc48a7f89f76c5cb4e8a6ab4db203671","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"23fa431c1549a548df67056c34a9ea3653b50266d77653a406ff5a67a7f861aa","impliedFormat":1},{"version":"1b1fc8e3cac6cd35e6ecae8aa8bda1f7c402e7786ca262ea6294c907c5b00149","signature":"441751fb3deefe98952ba09b3c5a583c66aa2c9a1abe5e9dba6064a55f5a7678","impliedFormat":1},{"version":"403ba71e387291ed9129e24bc76c9fdef4d563d0208baff9ac4f673d6ec2170a","signature":"c211816fd9af3b1541c812b859c769958d5e5b85b81da832eb2bcdf98342b054","impliedFormat":1},{"version":"60a0074289b6584a0d7003c2aa14d9ebd0027e423deb79e08031b7e708770c98","impliedFormat":1},{"version":"d62b7fb6c39357289ba064887935b0966cd99da5a3bb63afc1d6ea4f82ab23f1","impliedFormat":1},{"version":"7a8e7fc0c0b3c6f0344a6b54a56e928aba5b2bde679ca742acf67aeb67e6f9d2","impliedFormat":1},{"version":"189150e785626242df43edde2e537ae48b8d8ba0c93e78c2478c9ce738a14cfe","impliedFormat":1},{"version":"b377fa259d15c6e3c0fc2804530f1c7448906df2b6afdf6ddeff61a75016cb28","impliedFormat":1},{"version":"a26bb2e2693f921f4aa3f6e8c04a18d07c6ab6c3162c426299e0d0a904d76d82","impliedFormat":1},{"version":"42e7c31cdce8294ad4852d465b2dd91307efecfd7a9889f2a0aa49ffca73e83b","impliedFormat":1},{"version":"7922bdca92b1a6f586e9403b2b7972200aae00f926a300e79bf2d62eb410714f","impliedFormat":1},{"version":"d3abaca0cd59f25b4e056681217d1f8674612071706e6825517ec9e264063e55","impliedFormat":1},{"version":"76a7145b39ac6cc3633e2ccb545e9db3e5a02c7e0bceddbb5abbd3b2e1fba32e","impliedFormat":1},{"version":"a3cf3aa8ec934a46e5d10922af944c14e1b73acb81c4ba90348bee40a829b26c","impliedFormat":1},{"version":"8f95f6784090939eb0cb0c648a03bce2208e595730afc14be4969d90b334b541","impliedFormat":1},{"version":"535b6a88c08e138b1b72003f482bceaca78311cd19836bdde0a80a131f457f43","impliedFormat":1},{"version":"cf72ba3ad6ed1f342e8ddbdbfdf425238cbc7a75cc7a318fa994cb3866a68804","impliedFormat":1},{"version":"f213a7dafb0a946c1134a64151cbb7f2301d23f93920356d730cf0ed767e9985","impliedFormat":1},{"version":"c305868de2a4ea029bd4b9593ebb33b602b54cdbb3a09231486f611a414d0f5f","impliedFormat":1},{"version":"cf42fcfc0f9e976054d921a0f5bf898f9127751cf5dd9f1b4820069fd78f2280","impliedFormat":1},{"version":"e35526a0977b9cd80f799aef3314cb2bfe66aeb40879c888f7a993bd3437fc42","impliedFormat":1},{"version":"81d92e5c4d618ba0660121ed30c603e8111ad605e7562948f7430d87038daee0","impliedFormat":1},{"version":"757f7967151a9b1f043aba090f09c1bdb0abe54f229efd3b7a656eb6da616bf4","impliedFormat":1},{"version":"2da74b28ea53cb34b516fd6dbda3ca93495648cf431e59d24ba3ab5d7ec59ba4","impliedFormat":1},{"version":"928ebc4436abadcd3680338883b7e26189beb7532ae4b3d1c1727598607e53fa","impliedFormat":1},{"version":"5fc0957ee8e15821ddb30a76e74e7984953fc35611a57fd703e624bade5836b9","impliedFormat":1},{"version":"40e9c2028b34c6c1e3281818d062f7008705254ee992d9857d051c603391e0f4","impliedFormat":1},{"version":"2d232975df81628cb4d8a5236b8776976940cc4dd202698e498de5a4baeb7389","impliedFormat":1},{"version":"9bddd9fa92fbbb5bd3b7617b88c4aa038391aa29eca99baef820bf0ff422ee43","signature":"1db9e7d40d7ffade5bd15ce84936997bb9d159d37668c9d8955993753bbdfb2c","impliedFormat":1},{"version":"4c1b770da0116b19eb873aa7cd0bd242ce4b18e20ecde61e5c0bda5421f40707","signature":"047f85c429fbee7423e723a6232e527d69b65c3399880ed8ff0842e29c497c20","impliedFormat":1},{"version":"64b05591ba7a6a2025c3ce04bd72b972a6200d4481feaae2e66056e0a1500b3a","signature":"526ee815290e47e75fd2105f83de0916689cc532a19c81620672342f6478095f","impliedFormat":1},{"version":"96def9cb00debb7554a8019ae45310f375a65820bd8efa8e497a96e3416a5677","signature":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"04c8589ba249eb9bc61b2232ab6c29216409852b4aecfb478cbf2a754871253a","signature":"8bfba49493f92a72cdffe5b9947c3f572c9301f4e95a471027d0022e8d9b5d97","impliedFormat":1},{"version":"956f962aca6becfca36766fe3af718b586829e1e4dd72f6b896057f75d4e9e83","impliedFormat":1},{"version":"9f7b583873c73cf01be845311d8b3e1715aecfa476a047d885804d837327d5db","impliedFormat":1},{"version":"f4de63eb261a0b27b5f66f08a4e5c292b67b0c1c0d25199bdd632f4c449b4806","impliedFormat":1},{"version":"f4a795af80885eba93957db860b4b82b4d23a76c5e122c2af5eeb9319094d9d1","impliedFormat":1},{"version":"3267bdd186e8d021bfa57a5314a256b9781e895bc025e426a2bdbe93b946cca0","impliedFormat":1},{"version":"31ed847fef6dc27c5224045deab8f99887ec76146cbc4f2ccb33f5b117fc9bf1","impliedFormat":1},{"version":"0df38983d84eccab44e2e6385bed5e1033b23228e484b80ff124d4049ca8e75a","impliedFormat":1},{"version":"7395857a8b73a1a5a14af625ec52c90f5b24bb0b163057d0f3e8a197ccc816ee","impliedFormat":1},{"version":"8b2e63aba58523a92dd15761096a03b5ebbd8983e2889b1f14265d9b2bb444b6","impliedFormat":1},{"version":"fa90f0cf69cd9296a6c0c43419540ba8e734ab9bf98eff6576bb5f04ddfea175","impliedFormat":1},{"version":"b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","impliedFormat":1},{"version":"68adf02128cad117e068f53ab334cbc730bcfeb7d658d8ce8118da6770b7e622","impliedFormat":1},{"version":"5f932457c501d03a68bee9ae0ab26ef9df2fa1f789a981483ec1f56c120ea5c7","impliedFormat":1},{"version":"4118ae023b5dd1af42aa6ccec246e5c0a7fc32e7459bda588da183d371d46281","impliedFormat":1},{"version":"c935d7a81d4a4409ba02812bd2b9e0176b74d361109d977b13bf6898488df6d9","impliedFormat":1},{"version":"ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","impliedFormat":1},{"version":"970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","impliedFormat":1},{"version":"6477c1bd38bbe6e8d74abebd01a073a7e45a89086a5a250e11725989a54a9a94","impliedFormat":1},{"version":"046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","impliedFormat":1},{"version":"52580471774bba3d4ccd41c1178e2c2884f1caa7257d4e86f760ce840d5083f6","signature":"57148dc07df8d175350eb9576cba28cf1b2b7f8a97fc4fb4fcad25089bdd5272","impliedFormat":1},{"version":"2837ced1e5d4ef88b4e1688fa62bc93b4248d1825667c87a83adaa51bc810cbf","impliedFormat":1},{"version":"f61af6ed7df59c72b7e2fc7e25a4500f5e9beafad5be038d349c5348a0727ba5","impliedFormat":1},{"version":"ab1d998d1a0125aeb4f70beb593220427562543d33c704f7df9e5d8b0de76700","signature":"168ed0c44fb93c128dd97ce63c8f5844c91285710f8424cc85cb804904410629","impliedFormat":1},{"version":"bf7ccda18d9cb9ed3047d96a6542fee3c3bc4e7a7822af40332c5c2f6e07c2b7","impliedFormat":1},{"version":"7bc71d52df9d8e5cc55218d347a91b1758b38341f9cbbac0b80057aa9d93daa6","impliedFormat":1},{"version":"7a1f7b274cf8a66b83fcf42153bde6f25f4eb4d7696d4a6b17e4a8878d128306","impliedFormat":1},{"version":"553dd4fef7d2b88e899646b66b2035e119f61b092d668ae0595a32c234f9b8b5","impliedFormat":1},{"version":"6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","impliedFormat":1},{"version":"afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","impliedFormat":1},{"version":"d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","impliedFormat":1},{"version":"6215681982d007f5e9137ab0ca969c39048401e588bb0ad92018297c82551ea8","impliedFormat":1},{"version":"82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","impliedFormat":1},{"version":"cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","impliedFormat":1},{"version":"3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","impliedFormat":1},{"version":"f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","impliedFormat":1},{"version":"ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","impliedFormat":1},{"version":"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","impliedFormat":1},{"version":"dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","impliedFormat":1},{"version":"67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","impliedFormat":1},{"version":"1b831600aabe1c065830d303d087189e1ccfc93a0ef1882eb58a336ec1ce9f2f","impliedFormat":1},{"version":"75f191b59fe7ce72d1d7d11d0f329a193843f54af93182fc5a65c37d0a82c85a","impliedFormat":1},{"version":"cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","impliedFormat":1},{"version":"f6451dc56be14d37a8b88ea62a143ea398ab44558cd530fb2cdeeea42695c849","impliedFormat":1},{"version":"8ab77e5c32f1b6c6c1ee1b1b771c1a76a16be650559dc61320c8c82c99fc7cde","impliedFormat":1},{"version":"16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","impliedFormat":1},{"version":"ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","impliedFormat":1},{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true,"impliedFormat":1},{"version":"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","impliedFormat":1},{"version":"c269a12e83c5ffc0332b1f245008e4e621e483dd2f8b9b77fc6a664fcde4969d","impliedFormat":1},{"version":"aa8a056ee45ae741849d6e809ba85967b638070060e29c57d12d22b14baefeb6","impliedFormat":1},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true,"impliedFormat":1},{"version":"a97081289e7233ca2ef04a729036449fec4e88818fd7b7397930bd4d52294b18","impliedFormat":1},{"version":"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","impliedFormat":1},{"version":"0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","impliedFormat":1},{"version":"15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","impliedFormat":1},{"version":"963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","impliedFormat":1},{"version":"9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","impliedFormat":1},{"version":"c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","impliedFormat":1},{"version":"ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","impliedFormat":1},{"version":"ae8cd6af37275eac75f5369cdb5f01063bcf1f48d74cb434303ee50ec446acfe","impliedFormat":1},{"version":"2518830a2fda9c272ba48798d0e7b857037443b06594db8e42c87e86944ee9e4","impliedFormat":1},{"version":"95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","impliedFormat":1},{"version":"1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","impliedFormat":1},{"version":"bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","impliedFormat":1},{"version":"5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","impliedFormat":1},{"version":"99ab49d4732fdc98cf5c495925e65e796544cb4086fe42afc235dfc02bcf2351","impliedFormat":1},{"version":"af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","impliedFormat":1},{"version":"d393adc32e520d4274bb4c3dfdcdb342b806a230b66ef0f82b35bffbc4aa2590","impliedFormat":1},{"version":"c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","impliedFormat":1},{"version":"38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","impliedFormat":1},{"version":"3b6040253231d44e6778eb6861cc86c1758562e77783d21b7ecbc73322ded539","impliedFormat":1},{"version":"03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","impliedFormat":1},{"version":"318c82cc1e13da55e8c60d7e1bdc422a0679d675ad048b6d5022a47f57d23e3f","impliedFormat":1},{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac3cce682a1eab96841ce9942ace8dd5649d2951007096555f4950479e4b8d56","impliedFormat":1},{"version":"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","impliedFormat":1},{"version":"fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","impliedFormat":1},{"version":"d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","impliedFormat":1},{"version":"ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","impliedFormat":1},{"version":"9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","impliedFormat":1},{"version":"3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","impliedFormat":1},{"version":"3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","impliedFormat":1},{"version":"951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","impliedFormat":1},{"version":"a45efe8e9134ef64a5e3825944bc16fffaf130b82943844523d7a7f7c1fd91b2","impliedFormat":1},{"version":"969aa6509a994f4f3b09b99d5d29484d8d52a2522e133ef9b4e54af9a3e9feaf","impliedFormat":1},{"version":"f378e8538e407f997a0f88fcd1ecd93a096707cc909339ce4dba2e4ea03f1726","impliedFormat":1},{"version":"dcafd874e49d42fc215dcb4ef1e06511363c1f31979951081f3cd1908a05a636","impliedFormat":1},{"version":"fb73c98050a02b5849cc0fbb0d133ed55764b9c2a91f0ada2a25e74df68e6242","impliedFormat":1},{"version":"6002c44a8e8edbe4c79ce856c7bac3f8e69a2a45dc5bd6b229ca4ab323b924b3","impliedFormat":1},{"version":"b4d505a77e0829de5e5e23eaefb3d7989e0dbdfdb02ea69159df9f40017fb958","impliedFormat":1},{"version":"b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","impliedFormat":1},{"version":"f2242adef346a64818a1af914146f6f6046f16505e8a228c3bdb70185d4fdf4c","impliedFormat":1},{"version":"2f7508d8eeadcfde20b41ec13726c9ad26f04bbf830434e289c6010d5be28455","impliedFormat":1},{"version":"8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","impliedFormat":1},{"version":"9798f0d3693043da9dda9146b5e8622cd4476270e7aed8f3cb346b9b40a52103","impliedFormat":1},{"version":"fc7e8927b6fa6c81d68783afb314d01592c559e86bd36df334c37f40d0136acd","impliedFormat":1},{"version":"73f72caffdd55f189b5bf4e6b5ca273b4e26269d9aac859b9d30a5f799c095ad","impliedFormat":1},{"version":"d998e3e185cdf59dfc84043c41a42c02daaf3b7b21bee2db2d1f620a8e134f4c","impliedFormat":1},{"version":"06aa8858883e08f5136eb182d2f285ea615aeb464007f83c7a31ee1f8d9932b1","impliedFormat":1},{"version":"62d429aba0bbe459a04965d10c7637b74b319149f17874920a5ffb9fe3ba14d8","impliedFormat":1},{"version":"084a25e9ee73362fbb467873341b95721689513c14af6aa3067a1d95d6fafe08","impliedFormat":1},{"version":"4dbfeb147290c498e3aa56ea3198a6a109c5c0d9d7a4936a3138376302d89e7d","impliedFormat":1},{"version":"169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","impliedFormat":1},{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true,"impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","impliedFormat":1},{"version":"5009c081fd8ca3fcd6f3adcd071a1c79a933a400532b897822aad0943688a1f1","impliedFormat":1},{"version":"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","impliedFormat":1},{"version":"93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","impliedFormat":1},{"version":"c271193e426325d9acab2f99997bb9f5f2dff850ec8c7c011c5abafe5af83b5f","impliedFormat":1},{"version":"58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","impliedFormat":1},{"version":"a3e12bcf2d196656ccd5b5d5344182967a2bdde0f63c9b955c36169ed02c3555","impliedFormat":1},{"version":"a016d2f6c0a2c15069ec69661ad37c86a450deb629ce96a592f15f01d3a5746e","impliedFormat":1},{"version":"2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","impliedFormat":1},{"version":"2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","impliedFormat":1},{"version":"42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","impliedFormat":1},{"version":"d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","impliedFormat":1},{"version":"b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","impliedFormat":1},{"version":"7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","impliedFormat":1},{"version":"906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","impliedFormat":1},{"version":"5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","impliedFormat":1},{"version":"c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","impliedFormat":1},{"version":"e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","impliedFormat":1},{"version":"e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","impliedFormat":1},{"version":"9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","impliedFormat":1},{"version":"0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","impliedFormat":1},{"version":"71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","impliedFormat":1},{"version":"c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","impliedFormat":1},{"version":"2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","impliedFormat":1},{"version":"479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","impliedFormat":1},{"version":"ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","impliedFormat":1},{"version":"f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","impliedFormat":1},{"version":"86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","impliedFormat":1},{"version":"2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","impliedFormat":1},{"version":"a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","impliedFormat":1},{"version":"b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","impliedFormat":1},{"version":"61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","impliedFormat":1},{"version":"6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","impliedFormat":1},{"version":"c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","impliedFormat":1},{"version":"38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","impliedFormat":1},{"version":"d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","impliedFormat":1},{"version":"3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","impliedFormat":1},{"version":"b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","impliedFormat":1},{"version":"f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","impliedFormat":1},{"version":"843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","impliedFormat":1},{"version":"f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","impliedFormat":1},{"version":"6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","impliedFormat":1},{"version":"e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","impliedFormat":1},{"version":"a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","impliedFormat":1},{"version":"a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","impliedFormat":1},{"version":"da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","impliedFormat":1},{"version":"acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","impliedFormat":1},{"version":"6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","impliedFormat":1},{"version":"4fddd9f6929421ce580b4583defbb3f78f5a4a3642bea5ecd3209bf652d8b507","impliedFormat":1},{"version":"f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","impliedFormat":1},{"version":"82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","impliedFormat":1},{"version":"557e00bde9af85bcb3ab6b3a785904f028f9f1b65dba664f2fda44965acf8a78","impliedFormat":1},{"version":"397981908f102effb3cd483042076b593f3928264dbf06aec235a7c3e83da2b4","impliedFormat":1},{"version":"ad78491e2a3ae1e59680dbab88607dd670d06a91b1d6c451fa895ad390513e8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a9deb79dabc5153448e38589fbe38945fdad45f0f8442cd4d4e1da8bb879a76","affectsGlobalScope":true,"impliedFormat":1},{"version":"f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956","impliedFormat":1},{"version":"c9cc4c881c910ce378659524d985d2b72b79029b0c473df5d4d3557b4cf6010a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fae4b2bc906f3e6840725cc24affaa4e684e6c9cc20254242c5df4bede5b6f6","impliedFormat":1},{"version":"2dd1d4cea14cead7a7fc9eec8f40593089dff0de8c0199458446143c9b8c4ea9","impliedFormat":1},{"version":"c0288f54de6f544706a3150c8b579b1a975870695c4be866f727ece6a16f3976","impliedFormat":1},{"version":"ec2c7505ede4bc3ee37cfe431cfd87e545f55f27fe15b0809c1a411765145615","impliedFormat":1}],"options":{"declaration":true,"declarationDir":"./dist-types","downlevelIteration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"importHelpers":true,"module":100,"removeComments":false,"rootDir":"./src","skipLibCheck":true,"strict":true,"target":8,"useUnknownInCatchVariables":false},"fileIdsList":[[70,75,123],[70,75,88,104,121,481],[70,75],[70,75,90,123,484],[70,75,81,123],[70,75,87,90,115,123,488,489,490],[70,75,123,499],[70,75,115,123,503],[70,75,90,123],[70,75,76,123],[70,75,492,493,507],[70,75,87,90,123,501,502],[70,75,485,502,503,510],[70,75,87,88,123,512],[70,75,87,90,92,95,104,115,123],[70,75,87,118,123,529,530,532],[70,75,531],[70,75,87,123],[70,75,534,536,537,538,539,540,541,542,543,544,545,546],[70,75,534,535,537,538,539,540,541,542,543,544,545,546],[70,75,535,536,537,538,539,540,541,542,543,544,545,546],[70,75,534,535,536,538,539,540,541,542,543,544,545,546],[70,75,534,535,536,537,539,540,541,542,543,544,545,546],[70,75,534,535,536,537,538,540,541,542,543,544,545,546],[70,75,534,535,536,537,538,539,541,542,543,544,545,546],[70,75,534,535,536,537,538,539,540,542,543,544,545,546],[70,75,534,535,536,537,538,539,540,541,543,544,545,546],[70,75,534,535,536,537,538,539,540,541,542,544,545,546],[70,75,534,535,536,537,538,539,540,541,542,543,545,546],[70,75,534,535,536,537,538,539,540,541,542,543,544,546],[70,75,534,535,536,537,538,539,540,541,542,543,544,545],[70,75,566],[70,75,551],[70,75,555,556,557],[70,75,554],[70,75,556],[70,75,533,552,553,558,561,563,564,565],[70,75,553,559,560,566],[70,75,559,562],[70,75,553,554,559,566],[70,75,553,566],[70,75,547,548,549,550],[70,75,90,115,123,572,573],[70,75,578],[70,75,87,88,123],[70,75,90,104,123],[70,75,581,620],[70,75,581,605,620],[70,75,620],[70,75,581],[70,75,581,606,620],[70,75,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619],[70,75,606,620],[70,75,88,511],[70,75,90,123,509],[70,75,622],[70,75,104,123],[70,75,87,90,92,104,112,115,121,123],[70,75,87,123,634],[70,75,518],[70,75,517,518],[70,75,517],[70,75,517,518,519,521,522,525,526,527,528],[70,75,518,522],[70,75,517,518,519,521,522,523,524],[70,75,517,522],[70,75,522,526],[70,75,518,519,520],[70,75,519],[70,75,517,518,522],[70,75,496],[70,75,493,494,495],[70,75,493,496],[70,75,90,95,112,115,118,492,494,496,497,498],[70,75,310],[70,75,457,458],[70,75,477],[70,75,169,358],[70,75,169,203,369],[70,75,169,224,251,360,369],[70,75,361,362,363,364],[70,75,169],[70,75,169,268,310,366],[70,75,359,365,367,368,369,370,371,375,376],[70,75,360],[70,75,251,359],[70,75,251],[70,75,372,373,374],[70,75,169,369],[70,75,169,362,372],[70,75,169,363,372],[70,75,367],[70,75,169,361,362,363,364,369],[70,75,169,224,251,268,322,325,340,357,358,361,362,363,364,365,368],[51,70,75,197,202],[50,70,75],[70,75,169,185],[70,75,169,184],[70,75,184,185,186,195],[70,75,169,183],[70,75,169,194],[70,75,196],[70,75,198,199,200,201],[70,75,169,311],[70,75,311,312],[70,75,169,179,310,316,317],[70,75,318],[70,75,169,318],[70,75,169,313,316,319,321,383,391],[70,75,392],[70,75,169,179,310],[70,75,320],[70,75,169,179,310,378],[70,75,379,380,381,382],[70,75,169,380],[70,75,377],[70,75,169,310,314],[70,75,169,310],[70,75,314,315],[70,75,427],[70,75,323,324],[70,75,169,323],[70,75,420,423],[70,75,183],[70,75,421,422],[70,75,169,285,286],[70,75,280],[70,75,280,281,282,283,284],[70,75,273,274,275,276,277,278,279,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309],[70,75,285,286],[70,75,169,460],[70,75,169,394],[70,75,326,327,328,329],[70,75,169,328],[70,75,330,333,339],[70,75,331,332],[70,75,334],[70,75,169,336,337],[70,75,336,337,338],[70,75,335],[70,75,433,436,443,444,445,446,447],[70,75,169,430],[70,75,430,431,432],[70,75,434,435],[70,75,169,268],[70,75,438,439,440],[70,75,437,441,442],[70,75,169,384],[70,75,169,384,386],[70,75,384,385,386,387,388,389,390],[70,75,462,463,464],[70,75,449],[70,75,104,123,169],[70,75,396,397],[70,75,466,467],[70,75,469,470],[70,75,169,217,218],[70,75,219,220],[70,75,217,218,221,222,223],[70,75,169,348,350],[70,75,350,351,352,353,354,355,356],[70,75,169,352],[70,75,169,349],[70,75,254,255,256],[70,75,169,255],[70,75,169,170,180,181],[70,75,169,179],[70,75,182],[70,75,400,401,402],[70,75,90,92,123,169,268],[70,75,261],[70,75,262],[70,75,169,264],[70,75,169,259,260],[70,75,259,260,261,263,264,265,266,267],[70,75,171,172,173,174,175,176,177,178],[70,75,169,175],[70,75,187,188,189,190,191,192,193],[70,75,169,215],[70,75,169,224],[70,75,208],[70,75,169,234,235],[70,75,236],[70,75,169,208,216,225,226,227,228,229,230,231,232,233,237,238,239,240,241,242,243,244,245,246,247,248,249,250],[53,70,75],[52,70,75],[56,63,64,65,70,75],[63,66,70,75],[56,60,70,75],[56,66,70,75],[54,55,64,65,66,67,70,75],[70,75,104,123,125],[70,75,127],[61,62,63,70,75,129],[61,63,70,75],[70,75,131,133,134],[70,75,131,132],[70,75,136],[54,70,75],[57,70,75,138],[70,75,138],[70,75,138,139,140,141,142],[70,75,141],[58,70,75],[70,75,138,139,140],[60,61,63,70,75],[70,75,127,128],[70,75,144],[70,75,144,148],[70,75,144,145,148,149],[62,70,75,147],[70,75,124],[53,59,70,75],[58,60,70,75,90,92,123],[56,70,75],[56,70,75,152,153,154],[53,57,58,59,60,61,62,63,68,70,75,126,127,128,129,130,132,135,136,137,143,146,147,150,151,155,156,157,158,159,160,161,162,163,164,166,167,168],[54,57,58,62,70,75],[70,75,130],[70,75,146],[60,62,70,75,132],[60,61,70,75],[60,70,75,136],[62,70,75,127,128],[70,75,90,104,123,125,158],[61,70,75,129,163,164],[60,70,75,90,91,123,129,130,158,162,163,164,165],[70,75,129,130],[60,70,75],[70,75,408,409],[70,75,472],[70,75,404],[70,75,474],[70,75,169,251],[70,75,416],[70,75,204,205],[70,75,169,341],[70,75,169,343],[70,75,341],[70,75,341,342,343,344,345,346,347],[70,75,104],[70,75,209,210,211,212,213,214],[70,75,104,169],[70,75,411,412,413],[70,71,75],[70,74,75],[70,75,80,107],[70,75,76,87,88,95,104,115],[70,75,76,77,87,95],[70,75,78,116],[70,75,79,80,88,96],[70,75,80,104,112],[70,75,81,83,87,95],[70,75,82],[70,75,83,84],[70,75,87],[70,75,86,87],[70,74,75,87],[70,75,87,88,89,104,115],[70,75,87,88,89,104],[70,75,87,90,95,104,115],[70,75,87,88,90,91,95,104,112,115],[70,75,90,92,104,112,115],[70,75,87,93],[70,75,94,115,120],[70,75,83,87,95,104],[70,75,96],[70,75,97],[70,74,75,98],[70,75,99,114,120],[70,75,100],[70,75,101],[70,75,87,102],[70,75,102,103,116,118],[70,75,87,104,105,106],[70,75,104,106],[70,75,104,105],[70,75,107],[70,75,108],[70,75,87,110,111],[70,75,110,111],[70,75,80,95,104,112],[70,75,113],[75],[69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122],[70,75,95,114],[70,75,90,101,115],[70,75,80,116],[70,75,104,117],[70,75,118],[70,75,119],[70,75,80,87,89,98,104,115,118,120],[70,75,104,121],[49,70,75,169,207],[49,70,75,169,203,206,452],[49,70,75,169,251,253,257,270,452],[49,70,75,258,271],[49,70,75,310,340],[49,70,75,169,268,310,419],[49,70,75,252,425,426,452,453,454,455],[49,70,75,253],[49,70,75,251,252],[49,70,75,251],[49,70,75,169,203,251,252,253,258,268,269,271],[49,70,75,169,251,258,271,452],[49,70,75,169,207,251,258,268,271,322,325,340,357,418,426,428,429,448,450,451],[49,70,75,251,272,340,348,415,452,459,461,465,468,471,473,475],[49,70,75,452,476,478],[49,70,75,169,203,207,251,406,407,410,414,452],[49,70,75,183,203,251,272,340,348,357,393,395,398,399,403,405,415,417,452],[49,70,75,251,268,419,424,425],[169,207],[169,203,452],[169,224,251,253,452],[258,271],[310],[169,268,310,419],[252,425,426,452,453,454,455],[253],[251,252],[251],[169,258,268,271],[169,258,271,452],[169,207,251,258,268,271,322,325,340,357,426,450],[169,194,207,251,268,426,452,468],[169,207,426,452],[169,194,207,251,268,393,403,426,452],[425]],"referencedMap":[[480,1],[482,2],[483,3],[485,4],[486,5],[487,3],[491,6],[500,7],[504,8],[484,9],[505,10],[506,3],[507,3],[508,11],[492,3],[503,12],[511,13],[513,14],[512,3],[489,3],[514,15],[515,3],[516,3],[531,16],[532,17],[493,3],[488,18],[533,3],[535,19],[536,20],[534,21],[537,22],[538,23],[539,24],[540,25],[541,26],[542,27],[543,28],[544,29],[545,30],[546,31],[567,32],[552,33],[558,34],[556,3],[555,35],[557,36],[566,37],[561,38],[563,39],[564,40],[565,41],[559,3],[560,41],[562,41],[554,41],[553,3],[548,3],[547,3],[550,33],[551,42],[549,33],[568,3],[509,3],[569,3],[570,3],[571,3],[573,3],[574,43],[575,3],[576,3],[577,3],[579,44],[502,3],[501,3],[481,45],[580,3],[490,46],[578,3],[605,47],[606,48],[581,49],[584,49],[603,47],[604,47],[594,47],[593,50],[591,47],[586,47],[599,47],[597,47],[601,47],[585,47],[598,47],[602,47],[587,47],[588,47],[600,47],[582,47],[589,47],[590,47],[592,47],[596,47],[607,51],[595,47],[583,47],[620,52],[619,3],[614,51],[616,53],[615,51],[608,51],[609,51],[611,51],[613,51],[617,53],[618,53],[610,53],[612,53],[621,54],[510,55],[623,56],[622,3],[624,3],[625,9],[626,57],[627,3],[530,3],[629,3],[628,3],[630,3],[631,3],[632,3],[633,58],[635,59],[634,3],[495,3],[572,46],[519,60],[528,61],[517,3],[518,62],[529,63],[524,64],[525,65],[523,66],[527,67],[521,68],[520,69],[526,70],[522,61],[497,71],[496,72],[494,73],[498,3],[499,74],[457,75],[459,76],[458,75],[478,77],[477,75],[366,78],[358,79],[361,80],[371,81],[362,80],[363,80],[364,80],[365,82],[367,83],[377,84],[376,85],[360,86],[359,87],[375,88],[372,89],[373,90],[374,91],[368,92],[370,93],[369,94],[203,95],[50,3],[51,96],[186,97],[185,98],[196,99],[184,100],[195,101],[197,102],[198,3],[202,103],[199,3],[200,82],[201,82],[312,104],[311,75],[313,105],[318,106],[319,107],[317,108],[392,109],[393,110],[320,111],[321,112],[379,113],[383,114],[381,115],[378,116],[380,82],[382,115],[315,117],[314,118],[316,119],[322,82],[428,120],[427,82],[429,82],[323,82],[325,121],[324,122],[420,118],[424,123],[421,124],[423,125],[422,82],[273,82],[274,82],[275,82],[276,82],[277,82],[278,82],[279,82],[287,126],[288,82],[289,3],[290,82],[291,82],[292,82],[293,82],[294,82],[281,127],[282,82],[280,82],[285,128],[283,127],[284,82],[310,129],[295,82],[296,82],[297,82],[298,82],[299,3],[300,82],[301,82],[302,82],[303,82],[304,82],[305,82],[306,130],[307,82],[308,82],[286,82],[309,82],[460,3],[461,131],[394,3],[395,132],[330,133],[326,124],[327,124],[329,134],[328,82],[340,135],[331,124],[333,136],[332,82],[335,137],[334,3],[338,138],[339,139],[336,140],[337,140],[444,82],[448,141],[431,142],[432,142],[430,82],[433,143],[435,82],[434,82],[436,144],[445,82],[447,82],[446,145],[437,82],[438,145],[439,145],[441,146],[440,82],[443,147],[442,82],[390,3],[385,148],[387,149],[391,150],[388,9],[384,82],[386,82],[389,82],[462,82],[465,151],[463,82],[464,3],[449,82],[450,152],[396,153],[398,154],[397,82],[466,145],[468,155],[467,82],[399,82],[471,156],[469,3],[470,82],[451,82],[219,157],[221,158],[220,82],[222,157],[223,157],[224,159],[217,82],[218,3],[351,160],[352,100],[353,3],[357,161],[354,82],[355,82],[356,162],[350,163],[349,82],[254,82],[257,164],[255,82],[256,165],[182,166],[170,82],[180,167],[181,82],[183,168],[403,169],[400,170],[401,145],[402,82],[262,171],[263,172],[264,82],[265,173],[261,174],[259,82],[260,82],[268,175],[266,3],[267,82],[171,3],[172,3],[173,3],[174,3],[179,176],[175,82],[176,82],[177,177],[178,82],[193,82],[188,82],[189,82],[190,82],[194,178],[191,82],[192,82],[187,82],[208,82],[216,179],[225,180],[226,3],[227,181],[228,3],[229,3],[230,3],[231,3],[232,82],[233,3],[234,82],[236,182],[237,183],[235,82],[238,3],[239,3],[251,184],[240,3],[241,3],[242,82],[243,3],[244,3],[245,3],[246,3],[247,3],[248,3],[249,3],[250,3],[52,185],[53,186],[54,3],[55,3],[66,187],[67,188],[64,189],[65,190],[68,191],[126,192],[128,193],[130,194],[129,195],[131,3],[135,196],[133,197],[134,3],[127,3],[137,198],[57,199],[139,200],[140,201],[143,202],[142,203],[138,204],[141,205],[136,206],[144,207],[145,208],[149,209],[150,210],[148,211],[125,212],[60,213],[151,214],[152,215],[153,215],[56,3],[155,216],[154,215],[169,217],[58,3],[63,218],[156,219],[157,3],[61,3],[147,220],[158,221],[146,222],[159,223],[160,224],[161,192],[162,192],[163,225],[132,3],[165,226],[166,227],[124,3],[167,228],[164,3],[59,229],[62,206],[168,185],[407,82],[408,3],[410,230],[409,3],[472,3],[473,231],[404,3],[405,232],[475,233],[474,234],[417,235],[416,234],[204,82],[206,236],[205,82],[342,237],[346,3],[344,238],[347,3],[345,239],[348,240],[343,82],[341,3],[209,3],[210,153],[213,241],[215,242],[211,243],[212,57],[214,3],[411,3],[414,244],[412,3],[413,3],[71,245],[72,245],[74,246],[75,247],[76,248],[77,249],[78,250],[79,251],[80,252],[81,253],[82,254],[83,255],[84,255],[85,256],[86,257],[87,258],[88,259],[89,260],[73,3],[122,3],[90,261],[91,262],[92,263],[93,264],[94,265],[95,266],[96,267],[97,268],[98,269],[99,270],[100,271],[101,272],[102,273],[103,274],[104,275],[106,276],[105,277],[107,278],[108,279],[109,3],[110,280],[111,281],[112,282],[113,283],[70,284],[69,3],[123,285],[114,286],[115,287],[116,288],[117,289],[118,290],[119,291],[120,292],[121,293],[269,3],[49,3],[9,3],[10,3],[12,3],[11,3],[2,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[3,3],[4,3],[24,3],[21,3],[22,3],[23,3],[25,3],[26,3],[27,3],[5,3],[28,3],[29,3],[30,3],[31,3],[6,3],[35,3],[32,3],[33,3],[34,3],[36,3],[7,3],[37,3],[42,3],[43,3],[38,3],[39,3],[40,3],[41,3],[8,3],[47,3],[44,3],[45,3],[46,3],[1,3],[48,3],[272,3],[419,294],[207,295],[271,296],[454,297],[258,296],[406,298],[425,299],[456,300],[455,301],[253,302],[252,303],[270,304],[453,305],[452,306],[476,307],[479,308],[415,309],[418,310],[426,311]],"exportedModulesMap":[[480,1],[482,2],[483,3],[485,4],[486,5],[487,3],[491,6],[500,7],[504,8],[484,9],[505,10],[506,3],[507,3],[508,11],[492,3],[503,12],[511,13],[513,14],[512,3],[489,3],[514,15],[515,3],[516,3],[531,16],[532,17],[493,3],[488,18],[533,3],[535,19],[536,20],[534,21],[537,22],[538,23],[539,24],[540,25],[541,26],[542,27],[543,28],[544,29],[545,30],[546,31],[567,32],[552,33],[558,34],[556,3],[555,35],[557,36],[566,37],[561,38],[563,39],[564,40],[565,41],[559,3],[560,41],[562,41],[554,41],[553,3],[548,3],[547,3],[550,33],[551,42],[549,33],[568,3],[509,3],[569,3],[570,3],[571,3],[573,3],[574,43],[575,3],[576,3],[577,3],[579,44],[502,3],[501,3],[481,45],[580,3],[490,46],[578,3],[605,47],[606,48],[581,49],[584,49],[603,47],[604,47],[594,47],[593,50],[591,47],[586,47],[599,47],[597,47],[601,47],[585,47],[598,47],[602,47],[587,47],[588,47],[600,47],[582,47],[589,47],[590,47],[592,47],[596,47],[607,51],[595,47],[583,47],[620,52],[619,3],[614,51],[616,53],[615,51],[608,51],[609,51],[611,51],[613,51],[617,53],[618,53],[610,53],[612,53],[621,54],[510,55],[623,56],[622,3],[624,3],[625,9],[626,57],[627,3],[530,3],[629,3],[628,3],[630,3],[631,3],[632,3],[633,58],[635,59],[634,3],[495,3],[572,46],[519,60],[528,61],[517,3],[518,62],[529,63],[524,64],[525,65],[523,66],[527,67],[521,68],[520,69],[526,70],[522,61],[497,71],[496,72],[494,73],[498,3],[499,74],[457,75],[459,76],[458,75],[478,77],[477,75],[366,78],[358,79],[361,80],[371,81],[362,80],[363,80],[364,80],[365,82],[367,83],[377,84],[376,85],[360,86],[359,87],[375,88],[372,89],[373,90],[374,91],[368,92],[370,93],[369,94],[203,95],[50,3],[51,96],[186,97],[185,98],[196,99],[184,100],[195,101],[197,102],[198,3],[202,103],[199,3],[200,82],[201,82],[312,104],[311,75],[313,105],[318,106],[319,107],[317,108],[392,109],[393,110],[320,111],[321,112],[379,113],[383,114],[381,115],[378,116],[380,82],[382,115],[315,117],[314,118],[316,119],[322,82],[428,120],[427,82],[429,82],[323,82],[325,121],[324,122],[420,118],[424,123],[421,124],[423,125],[422,82],[273,82],[274,82],[275,82],[276,82],[277,82],[278,82],[279,82],[287,126],[288,82],[289,3],[290,82],[291,82],[292,82],[293,82],[294,82],[281,127],[282,82],[280,82],[285,128],[283,127],[284,82],[310,129],[295,82],[296,82],[297,82],[298,82],[299,3],[300,82],[301,82],[302,82],[303,82],[304,82],[305,82],[306,130],[307,82],[308,82],[286,82],[309,82],[460,3],[461,131],[394,3],[395,132],[330,133],[326,124],[327,124],[329,134],[328,82],[340,135],[331,124],[333,136],[332,82],[335,137],[334,3],[338,138],[339,139],[336,140],[337,140],[444,82],[448,141],[431,142],[432,142],[430,82],[433,143],[435,82],[434,82],[436,144],[445,82],[447,82],[446,145],[437,82],[438,145],[439,145],[441,146],[440,82],[443,147],[442,82],[390,3],[385,148],[387,149],[391,150],[388,9],[384,82],[386,82],[389,82],[462,82],[465,151],[463,82],[464,3],[449,82],[450,152],[396,153],[398,154],[397,82],[466,145],[468,155],[467,82],[399,82],[471,156],[469,3],[470,82],[451,82],[219,157],[221,158],[220,82],[222,157],[223,157],[224,159],[217,82],[218,3],[351,160],[352,100],[353,3],[357,161],[354,82],[355,82],[356,162],[350,163],[349,82],[254,82],[257,164],[255,82],[256,165],[182,166],[170,82],[180,167],[181,82],[183,168],[403,169],[400,170],[401,145],[402,82],[262,171],[263,172],[264,82],[265,173],[261,174],[259,82],[260,82],[268,175],[266,3],[267,82],[171,3],[172,3],[173,3],[174,3],[179,176],[175,82],[176,82],[177,177],[178,82],[193,82],[188,82],[189,82],[190,82],[194,178],[191,82],[192,82],[187,82],[208,82],[216,179],[225,180],[226,3],[227,181],[228,3],[229,3],[230,3],[231,3],[232,82],[233,3],[234,82],[236,182],[237,183],[235,82],[238,3],[239,3],[251,184],[240,3],[241,3],[242,82],[243,3],[244,3],[245,3],[246,3],[247,3],[248,3],[249,3],[250,3],[52,185],[53,186],[54,3],[55,3],[66,187],[67,188],[64,189],[65,190],[68,191],[126,192],[128,193],[130,194],[129,195],[131,3],[135,196],[133,197],[134,3],[127,3],[137,198],[57,199],[139,200],[140,201],[143,202],[142,203],[138,204],[141,205],[136,206],[144,207],[145,208],[149,209],[150,210],[148,211],[125,212],[60,213],[151,214],[152,215],[153,215],[56,3],[155,216],[154,215],[169,217],[58,3],[63,218],[156,219],[157,3],[61,3],[147,220],[158,221],[146,222],[159,223],[160,224],[161,192],[162,192],[163,225],[132,3],[165,226],[166,227],[124,3],[167,228],[164,3],[59,229],[62,206],[168,185],[407,82],[408,3],[410,230],[409,3],[472,3],[473,231],[404,3],[405,232],[475,233],[474,234],[417,235],[416,234],[204,82],[206,236],[205,82],[342,237],[346,3],[344,238],[347,3],[345,239],[348,240],[343,82],[341,3],[209,3],[210,153],[213,241],[215,242],[211,243],[212,57],[214,3],[411,3],[414,244],[412,3],[413,3],[71,245],[72,245],[74,246],[75,247],[76,248],[77,249],[78,250],[79,251],[80,252],[81,253],[82,254],[83,255],[84,255],[85,256],[86,257],[87,258],[88,259],[89,260],[73,3],[122,3],[90,261],[91,262],[92,263],[93,264],[94,265],[95,266],[96,267],[97,268],[98,269],[99,270],[100,271],[101,272],[102,273],[103,274],[104,275],[106,276],[105,277],[107,278],[108,279],[109,3],[110,280],[111,281],[112,282],[113,283],[70,284],[69,3],[123,285],[114,286],[115,287],[116,288],[117,289],[118,290],[119,291],[120,292],[121,293],[269,3],[49,3],[9,3],[10,3],[12,3],[11,3],[2,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[3,3],[4,3],[24,3],[21,3],[22,3],[23,3],[25,3],[26,3],[27,3],[5,3],[28,3],[29,3],[30,3],[31,3],[6,3],[35,3],[32,3],[33,3],[34,3],[36,3],[7,3],[37,3],[42,3],[43,3],[38,3],[39,3],[40,3],[41,3],[8,3],[47,3],[44,3],[45,3],[46,3],[1,3],[48,3],[419,312],[207,313],[271,314],[454,315],[258,314],[406,316],[425,317],[456,318],[455,319],[253,320],[252,321],[270,322],[453,323],[452,324],[476,325],[479,325],[415,326],[418,327],[426,328]],"semanticDiagnosticsPerFile":[480,482,483,485,486,487,491,500,504,484,505,506,507,508,492,503,511,513,512,489,514,515,516,531,532,493,488,533,535,536,534,537,538,539,540,541,542,543,544,545,546,567,552,558,556,555,557,566,561,563,564,565,559,560,562,554,553,548,547,550,551,549,568,509,569,570,571,573,574,575,576,577,579,502,501,481,580,490,578,605,606,581,584,603,604,594,593,591,586,599,597,601,585,598,602,587,588,600,582,589,590,592,596,607,595,583,620,619,614,616,615,608,609,611,613,617,618,610,612,621,510,623,622,624,625,626,627,530,629,628,630,631,632,633,635,634,495,572,519,528,517,518,529,524,525,523,527,521,520,526,522,497,496,494,498,499,457,459,458,478,477,366,358,361,371,362,363,364,365,367,377,376,360,359,375,372,373,374,368,370,369,203,50,51,186,185,196,184,195,197,198,202,199,200,201,312,311,313,318,319,317,392,393,320,321,379,383,381,378,380,382,315,314,316,322,428,427,429,323,325,324,420,424,421,423,422,273,274,275,276,277,278,279,287,288,289,290,291,292,293,294,281,282,280,285,283,284,310,295,296,297,298,299,300,301,302,303,304,305,306,307,308,286,309,460,461,394,395,330,326,327,329,328,340,331,333,332,335,334,338,339,336,337,444,448,431,432,430,433,435,434,436,445,447,446,437,438,439,441,440,443,442,390,385,387,391,388,384,386,389,462,465,463,464,449,450,396,398,397,466,468,467,399,471,469,470,451,219,221,220,222,223,224,217,218,351,352,353,357,354,355,356,350,349,254,257,255,256,182,170,180,181,183,403,400,401,402,262,263,264,265,261,259,260,268,266,267,171,172,173,174,179,175,176,177,178,193,188,189,190,194,191,192,187,208,216,225,226,227,228,229,230,231,232,233,234,236,237,235,238,239,251,240,241,242,243,244,245,246,247,248,249,250,52,53,54,55,66,67,64,65,68,126,128,130,129,131,135,133,134,127,137,57,139,140,143,142,138,141,136,144,145,149,150,148,125,60,151,152,153,56,155,154,169,58,63,156,157,61,147,158,146,159,160,161,162,163,132,165,166,124,167,164,59,62,168,407,408,410,409,472,473,404,405,475,474,417,416,204,206,205,342,346,344,347,345,348,343,341,209,210,213,215,211,212,214,411,414,412,413,71,72,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,73,122,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,106,105,107,108,109,110,111,112,113,70,69,123,114,115,116,117,118,119,120,121,269,49,9,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,1,48,272,419,207,271,454,258,406,425,456,455,253,252,270,453,452,476,479,415,418,426]},"version":"4.9.5"} \ No newline at end of file diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreaming.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreaming.js new file mode 100644 index 00000000000..097ed03d9e3 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreaming.js @@ -0,0 +1,19 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.CodeWhispererStreaming = void 0; +const CodeWhispererStreamingClient_1 = require("./CodeWhispererStreamingClient"); +const ConverseStreamCommand_1 = require("./commands/ConverseStreamCommand"); +const ExportResultArchiveCommand_1 = require("./commands/ExportResultArchiveCommand"); +const GenerateAssistantResponseCommand_1 = require("./commands/GenerateAssistantResponseCommand"); +const GenerateTaskAssistPlanCommand_1 = require("./commands/GenerateTaskAssistPlanCommand"); +const smithy_client_1 = require("@smithy/smithy-client"); +const commands = { + ExportResultArchiveCommand: ExportResultArchiveCommand_1.ExportResultArchiveCommand, + GenerateAssistantResponseCommand: GenerateAssistantResponseCommand_1.GenerateAssistantResponseCommand, + GenerateTaskAssistPlanCommand: GenerateTaskAssistPlanCommand_1.GenerateTaskAssistPlanCommand, + ConverseStreamCommand: ConverseStreamCommand_1.ConverseStreamCommand, +}; +class CodeWhispererStreaming extends CodeWhispererStreamingClient_1.CodeWhispererStreamingClient { +} +exports.CodeWhispererStreaming = CodeWhispererStreaming; +(0, smithy_client_1.createAggregatedClient)(commands, CodeWhispererStreaming); diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreamingClient.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreamingClient.js new file mode 100644 index 00000000000..f3747f82aad --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreamingClient.js @@ -0,0 +1,42 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.CodeWhispererStreamingClient = exports.__Client = void 0; +const runtimeConfig_1 = require("./runtimeConfig"); +const runtimeExtensions_1 = require("./runtimeExtensions"); +const middleware_host_header_1 = require("@aws-sdk/middleware-host-header"); +const middleware_logger_1 = require("@aws-sdk/middleware-logger"); +const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection"); +const middleware_token_1 = require("@aws-sdk/middleware-token"); +const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent"); +const config_resolver_1 = require("@smithy/config-resolver"); +const eventstream_serde_config_resolver_1 = require("@smithy/eventstream-serde-config-resolver"); +const middleware_content_length_1 = require("@smithy/middleware-content-length"); +const middleware_retry_1 = require("@smithy/middleware-retry"); +const smithy_client_1 = require("@smithy/smithy-client"); +Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } }); +class CodeWhispererStreamingClient extends smithy_client_1.Client { + constructor(...[configuration]) { + let _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {}); + let _config_1 = (0, config_resolver_1.resolveRegionConfig)(_config_0); + let _config_2 = (0, config_resolver_1.resolveEndpointsConfig)(_config_1); + let _config_3 = (0, middleware_retry_1.resolveRetryConfig)(_config_2); + let _config_4 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_3); + let _config_5 = (0, middleware_token_1.resolveTokenConfig)(_config_4); + let _config_6 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_5); + let _config_7 = (0, eventstream_serde_config_resolver_1.resolveEventStreamSerdeConfig)(_config_6); + let _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []); + super(_config_8); + this.config = _config_8; + this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config)); + this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config)); + this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config)); + this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config)); + this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config)); + this.middlewareStack.use((0, middleware_token_1.getTokenPlugin)(this.config)); + this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config)); + } + destroy() { + super.destroy(); + } +} +exports.CodeWhispererStreamingClient = CodeWhispererStreamingClient; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/ConverseStreamCommand.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/ConverseStreamCommand.js new file mode 100644 index 00000000000..15c1befc548 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/ConverseStreamCommand.js @@ -0,0 +1,42 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ConverseStreamCommand = exports.$Command = void 0; +const models_0_1 = require("../models/models_0"); +const Aws_restJson1_1 = require("../protocols/Aws_restJson1"); +const middleware_serde_1 = require("@smithy/middleware-serde"); +const smithy_client_1 = require("@smithy/smithy-client"); +Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } }); +const types_1 = require("@smithy/types"); +class ConverseStreamCommand extends smithy_client_1.Command { + constructor(input) { + super(); + this.input = input; + } + resolveMiddleware(clientStack, configuration, options) { + this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize)); + const stack = clientStack.concat(this.middlewareStack); + const { logger } = configuration; + const clientName = "CodeWhispererStreamingClient"; + const commandName = "ConverseStreamCommand"; + const handlerExecutionContext = { + logger, + clientName, + commandName, + inputFilterSensitiveLog: models_0_1.ConverseStreamRequestFilterSensitiveLog, + outputFilterSensitiveLog: models_0_1.ConverseStreamResponseFilterSensitiveLog, + [types_1.SMITHY_CONTEXT_KEY]: { + service: "AmazonCodeWhispererStreamingService", + operation: "ConverseStream", + }, + }; + const { requestHandler } = configuration; + return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext); + } + serialize(input, context) { + return (0, Aws_restJson1_1.se_ConverseStreamCommand)(input, context); + } + deserialize(output, context) { + return (0, Aws_restJson1_1.de_ConverseStreamCommand)(output, context); + } +} +exports.ConverseStreamCommand = ConverseStreamCommand; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/ExportResultArchiveCommand.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/ExportResultArchiveCommand.js new file mode 100644 index 00000000000..f65dbed5540 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/ExportResultArchiveCommand.js @@ -0,0 +1,42 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ExportResultArchiveCommand = exports.$Command = void 0; +const models_0_1 = require("../models/models_0"); +const Aws_restJson1_1 = require("../protocols/Aws_restJson1"); +const middleware_serde_1 = require("@smithy/middleware-serde"); +const smithy_client_1 = require("@smithy/smithy-client"); +Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } }); +const types_1 = require("@smithy/types"); +class ExportResultArchiveCommand extends smithy_client_1.Command { + constructor(input) { + super(); + this.input = input; + } + resolveMiddleware(clientStack, configuration, options) { + this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize)); + const stack = clientStack.concat(this.middlewareStack); + const { logger } = configuration; + const clientName = "CodeWhispererStreamingClient"; + const commandName = "ExportResultArchiveCommand"; + const handlerExecutionContext = { + logger, + clientName, + commandName, + inputFilterSensitiveLog: (_) => _, + outputFilterSensitiveLog: models_0_1.ExportResultArchiveResponseFilterSensitiveLog, + [types_1.SMITHY_CONTEXT_KEY]: { + service: "AmazonCodeWhispererStreamingService", + operation: "ExportResultArchive", + }, + }; + const { requestHandler } = configuration; + return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext); + } + serialize(input, context) { + return (0, Aws_restJson1_1.se_ExportResultArchiveCommand)(input, context); + } + deserialize(output, context) { + return (0, Aws_restJson1_1.de_ExportResultArchiveCommand)(output, context); + } +} +exports.ExportResultArchiveCommand = ExportResultArchiveCommand; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateAssistantResponseCommand.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateAssistantResponseCommand.js new file mode 100644 index 00000000000..be652ab546d --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateAssistantResponseCommand.js @@ -0,0 +1,42 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.GenerateAssistantResponseCommand = exports.$Command = void 0; +const models_0_1 = require("../models/models_0"); +const Aws_restJson1_1 = require("../protocols/Aws_restJson1"); +const middleware_serde_1 = require("@smithy/middleware-serde"); +const smithy_client_1 = require("@smithy/smithy-client"); +Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } }); +const types_1 = require("@smithy/types"); +class GenerateAssistantResponseCommand extends smithy_client_1.Command { + constructor(input) { + super(); + this.input = input; + } + resolveMiddleware(clientStack, configuration, options) { + this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize)); + const stack = clientStack.concat(this.middlewareStack); + const { logger } = configuration; + const clientName = "CodeWhispererStreamingClient"; + const commandName = "GenerateAssistantResponseCommand"; + const handlerExecutionContext = { + logger, + clientName, + commandName, + inputFilterSensitiveLog: models_0_1.GenerateAssistantResponseRequestFilterSensitiveLog, + outputFilterSensitiveLog: models_0_1.GenerateAssistantResponseResponseFilterSensitiveLog, + [types_1.SMITHY_CONTEXT_KEY]: { + service: "AmazonCodeWhispererStreamingService", + operation: "GenerateAssistantResponse", + }, + }; + const { requestHandler } = configuration; + return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext); + } + serialize(input, context) { + return (0, Aws_restJson1_1.se_GenerateAssistantResponseCommand)(input, context); + } + deserialize(output, context) { + return (0, Aws_restJson1_1.de_GenerateAssistantResponseCommand)(output, context); + } +} +exports.GenerateAssistantResponseCommand = GenerateAssistantResponseCommand; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateTaskAssistPlanCommand.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateTaskAssistPlanCommand.js new file mode 100644 index 00000000000..b3e7f9da21d --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateTaskAssistPlanCommand.js @@ -0,0 +1,42 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.GenerateTaskAssistPlanCommand = exports.$Command = void 0; +const models_0_1 = require("../models/models_0"); +const Aws_restJson1_1 = require("../protocols/Aws_restJson1"); +const middleware_serde_1 = require("@smithy/middleware-serde"); +const smithy_client_1 = require("@smithy/smithy-client"); +Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } }); +const types_1 = require("@smithy/types"); +class GenerateTaskAssistPlanCommand extends smithy_client_1.Command { + constructor(input) { + super(); + this.input = input; + } + resolveMiddleware(clientStack, configuration, options) { + this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize)); + const stack = clientStack.concat(this.middlewareStack); + const { logger } = configuration; + const clientName = "CodeWhispererStreamingClient"; + const commandName = "GenerateTaskAssistPlanCommand"; + const handlerExecutionContext = { + logger, + clientName, + commandName, + inputFilterSensitiveLog: models_0_1.GenerateTaskAssistPlanRequestFilterSensitiveLog, + outputFilterSensitiveLog: models_0_1.GenerateTaskAssistPlanResponseFilterSensitiveLog, + [types_1.SMITHY_CONTEXT_KEY]: { + service: "AmazonCodeWhispererStreamingService", + operation: "GenerateTaskAssistPlan", + }, + }; + const { requestHandler } = configuration; + return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext); + } + serialize(input, context) { + return (0, Aws_restJson1_1.se_GenerateTaskAssistPlanCommand)(input, context); + } + deserialize(output, context) { + return (0, Aws_restJson1_1.de_GenerateTaskAssistPlanCommand)(output, context); + } +} +exports.GenerateTaskAssistPlanCommand = GenerateTaskAssistPlanCommand; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/index.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/index.js new file mode 100644 index 00000000000..cbff60e91bb --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/index.js @@ -0,0 +1,7 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const tslib_1 = require("tslib"); +tslib_1.__exportStar(require("./ExportResultArchiveCommand"), exports); +tslib_1.__exportStar(require("./GenerateAssistantResponseCommand"), exports); +tslib_1.__exportStar(require("./GenerateTaskAssistPlanCommand"), exports); +tslib_1.__exportStar(require("./ConverseStreamCommand"), exports); diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/endpoints.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/endpoints.js new file mode 100644 index 00000000000..6893ce94dd4 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/endpoints.js @@ -0,0 +1,205 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.defaultRegionInfoProvider = void 0; +const config_resolver_1 = require("@smithy/config-resolver"); +const regionHash = {}; +const partitionHash = { + "aws": { + regions: [ + "af-south-1", + "ap-east-1", + "ap-northeast-1", + "ap-northeast-2", + "ap-northeast-3", + "ap-south-1", + "ap-south-2", + "ap-southeast-1", + "ap-southeast-2", + "ap-southeast-3", + "ap-southeast-4", + "ca-central-1", + "eu-central-1", + "eu-central-2", + "eu-north-1", + "eu-south-1", + "eu-south-2", + "eu-west-1", + "eu-west-2", + "eu-west-3", + "il-central-1", + "me-central-1", + "me-south-1", + "sa-east-1", + "us-east-1", + "us-east-2", + "us-west-1", + "us-west-2", + ], + regionRegex: "^(us|eu|ap|sa|ca|me|af|il)\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazoncodewhispererstreamingservice.{region}.amazonaws.com", + "tags": [] + }, + { + "hostname": "amazoncodewhispererstreamingservice-fips.{region}.amazonaws.com", + "tags": [ + "fips" + ] + }, + { + "hostname": "amazoncodewhispererstreamingservice-fips.{region}.api.aws", + "tags": [ + "dualstack", + "fips" + ] + }, + { + "hostname": "amazoncodewhispererstreamingservice.{region}.api.aws", + "tags": [ + "dualstack" + ] + } + ], + }, + "aws-cn": { + regions: [ + "cn-north-1", + "cn-northwest-1", + ], + regionRegex: "^cn\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazoncodewhispererstreamingservice.{region}.amazonaws.com.cn", + "tags": [] + }, + { + "hostname": "amazoncodewhispererstreamingservice-fips.{region}.amazonaws.com.cn", + "tags": [ + "fips" + ] + }, + { + "hostname": "amazoncodewhispererstreamingservice-fips.{region}.api.amazonwebservices.com.cn", + "tags": [ + "dualstack", + "fips" + ] + }, + { + "hostname": "amazoncodewhispererstreamingservice.{region}.api.amazonwebservices.com.cn", + "tags": [ + "dualstack" + ] + } + ], + }, + "aws-iso": { + regions: [ + "us-iso-east-1", + "us-iso-west-1", + ], + regionRegex: "^us\\-iso\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazoncodewhispererstreamingservice.{region}.c2s.ic.gov", + "tags": [] + }, + { + "hostname": "amazoncodewhispererstreamingservice-fips.{region}.c2s.ic.gov", + "tags": [ + "fips" + ] + } + ], + }, + "aws-iso-b": { + regions: [ + "us-isob-east-1", + ], + regionRegex: "^us\\-isob\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazoncodewhispererstreamingservice.{region}.sc2s.sgov.gov", + "tags": [] + }, + { + "hostname": "amazoncodewhispererstreamingservice-fips.{region}.sc2s.sgov.gov", + "tags": [ + "fips" + ] + } + ], + }, + "aws-iso-e": { + regions: [], + regionRegex: "^eu\\-isoe\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazoncodewhispererstreamingservice.{region}.cloud.adc-e.uk", + "tags": [] + }, + { + "hostname": "amazoncodewhispererstreamingservice-fips.{region}.cloud.adc-e.uk", + "tags": [ + "fips" + ] + } + ], + }, + "aws-iso-f": { + regions: [], + regionRegex: "^us\\-isof\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazoncodewhispererstreamingservice.{region}.csp.hci.ic.gov", + "tags": [] + }, + { + "hostname": "amazoncodewhispererstreamingservice-fips.{region}.csp.hci.ic.gov", + "tags": [ + "fips" + ] + } + ], + }, + "aws-us-gov": { + regions: [ + "us-gov-east-1", + "us-gov-west-1", + ], + regionRegex: "^us\\-gov\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazoncodewhispererstreamingservice.{region}.amazonaws.com", + "tags": [] + }, + { + "hostname": "amazoncodewhispererstreamingservice-fips.{region}.amazonaws.com", + "tags": [ + "fips" + ] + }, + { + "hostname": "amazoncodewhispererstreamingservice-fips.{region}.api.aws", + "tags": [ + "dualstack", + "fips" + ] + }, + { + "hostname": "amazoncodewhispererstreamingservice.{region}.api.aws", + "tags": [ + "dualstack" + ] + } + ], + }, +}; +const defaultRegionInfoProvider = async (region, options) => (0, config_resolver_1.getRegionInfo)(region, { + ...options, + signingService: "amazoncodewhispererstreamingservice", + regionHash, + partitionHash, +}); +exports.defaultRegionInfoProvider = defaultRegionInfoProvider; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/extensionConfiguration.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/extensionConfiguration.js new file mode 100644 index 00000000000..c8ad2e549bd --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/extensionConfiguration.js @@ -0,0 +1,2 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/index.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/index.js new file mode 100644 index 00000000000..0a9d98fddef --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/index.js @@ -0,0 +1,10 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.CodeWhispererStreamingServiceException = void 0; +const tslib_1 = require("tslib"); +tslib_1.__exportStar(require("./CodeWhispererStreamingClient"), exports); +tslib_1.__exportStar(require("./CodeWhispererStreaming"), exports); +tslib_1.__exportStar(require("./commands"), exports); +tslib_1.__exportStar(require("./models"), exports); +var CodeWhispererStreamingServiceException_1 = require("./models/CodeWhispererStreamingServiceException"); +Object.defineProperty(exports, "CodeWhispererStreamingServiceException", { enumerable: true, get: function () { return CodeWhispererStreamingServiceException_1.CodeWhispererStreamingServiceException; } }); diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/CodeWhispererStreamingServiceException.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/CodeWhispererStreamingServiceException.js new file mode 100644 index 00000000000..3f6b094554f --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/CodeWhispererStreamingServiceException.js @@ -0,0 +1,12 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.CodeWhispererStreamingServiceException = exports.__ServiceException = void 0; +const smithy_client_1 = require("@smithy/smithy-client"); +Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } }); +class CodeWhispererStreamingServiceException extends smithy_client_1.ServiceException { + constructor(options) { + super(options); + Object.setPrototypeOf(this, CodeWhispererStreamingServiceException.prototype); + } +} +exports.CodeWhispererStreamingServiceException = CodeWhispererStreamingServiceException; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/index.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/index.js new file mode 100644 index 00000000000..8ced418bca0 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/index.js @@ -0,0 +1,4 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +const tslib_1 = require("tslib"); +tslib_1.__exportStar(require("./models_0"), exports); diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/models_0.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/models_0.js new file mode 100644 index 00000000000..8da790a3579 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/models_0.js @@ -0,0 +1,570 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.TransformationDownloadArtifactType = exports.DryRunOperationException = exports.ConversationStateFilterSensitiveLog = exports.ContextTruncationScheme = exports.ChatTriggerType = exports.ChatResponseStreamFilterSensitiveLog = exports.ChatResponseStream = exports.SupplementaryWebLinksEventFilterSensitiveLog = exports.InvalidStateReason = exports.IntentsEventFilterSensitiveLog = exports.IntentDataType = exports.IntentType = exports.FollowupPromptEventFilterSensitiveLog = exports.CodeEventFilterSensitiveLog = exports.ChatMessageFilterSensitiveLog = exports.ChatMessage = exports.UserInputMessageFilterSensitiveLog = exports.UserInputMessageContextFilterSensitiveLog = exports.ShellStateFilterSensitiveLog = exports.ShellHistoryEntryFilterSensitiveLog = exports.GitStateFilterSensitiveLog = exports.EnvStateFilterSensitiveLog = exports.EnvironmentVariableFilterSensitiveLog = exports.EditorStateFilterSensitiveLog = exports.RelevantTextDocumentFilterSensitiveLog = exports.CursorState = exports.DiagnosticFilterSensitiveLog = exports.Diagnostic = exports.TextDocumentDiagnosticFilterSensitiveLog = exports.TextDocumentFilterSensitiveLog = exports.SymbolType = exports.RuntimeDiagnosticFilterSensitiveLog = exports.DiagnosticSeverity = exports.BinaryPayloadEventFilterSensitiveLog = exports.BinaryMetadataEventFilterSensitiveLog = exports.ContentChecksumType = exports.ConflictException = exports.AssistantResponseMessageFilterSensitiveLog = exports.SupplementaryWebLinkFilterSensitiveLog = exports.FollowupPromptFilterSensitiveLog = exports.UserIntent = exports.AssistantResponseEventFilterSensitiveLog = exports.AppStudioStateFilterSensitiveLog = exports.ValidationException = exports.ValidationExceptionReason = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.AccessDeniedException = exports.AccessDeniedExceptionReason = void 0; +exports.GenerateTaskAssistPlanResponseFilterSensitiveLog = exports.GenerateTaskAssistPlanRequestFilterSensitiveLog = exports.ConverseStreamResponseFilterSensitiveLog = exports.ConverseStreamRequestFilterSensitiveLog = exports.Origin = exports.ExportResultArchiveResponseFilterSensitiveLog = exports.GenerateAssistantResponseResponseFilterSensitiveLog = exports.GenerateAssistantResponseRequestFilterSensitiveLog = exports.ServiceQuotaExceededException = exports.ResultArchiveStreamFilterSensitiveLog = exports.ResultArchiveStream = exports.ExportIntent = exports.ExportContext = void 0; +const CodeWhispererStreamingServiceException_1 = require("./CodeWhispererStreamingServiceException"); +const smithy_client_1 = require("@smithy/smithy-client"); +exports.AccessDeniedExceptionReason = { + UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS: "UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS", +}; +class AccessDeniedException extends CodeWhispererStreamingServiceException_1.CodeWhispererStreamingServiceException { + constructor(opts) { + super({ + name: "AccessDeniedException", + $fault: "client", + ...opts + }); + this.name = "AccessDeniedException"; + this.$fault = "client"; + Object.setPrototypeOf(this, AccessDeniedException.prototype); + this.reason = opts.reason; + } +} +exports.AccessDeniedException = AccessDeniedException; +class InternalServerException extends CodeWhispererStreamingServiceException_1.CodeWhispererStreamingServiceException { + constructor(opts) { + super({ + name: "InternalServerException", + $fault: "server", + ...opts + }); + this.name = "InternalServerException"; + this.$fault = "server"; + this.$retryable = {}; + Object.setPrototypeOf(this, InternalServerException.prototype); + } +} +exports.InternalServerException = InternalServerException; +class ResourceNotFoundException extends CodeWhispererStreamingServiceException_1.CodeWhispererStreamingServiceException { + constructor(opts) { + super({ + name: "ResourceNotFoundException", + $fault: "client", + ...opts + }); + this.name = "ResourceNotFoundException"; + this.$fault = "client"; + Object.setPrototypeOf(this, ResourceNotFoundException.prototype); + } +} +exports.ResourceNotFoundException = ResourceNotFoundException; +class ThrottlingException extends CodeWhispererStreamingServiceException_1.CodeWhispererStreamingServiceException { + constructor(opts) { + super({ + name: "ThrottlingException", + $fault: "client", + ...opts + }); + this.name = "ThrottlingException"; + this.$fault = "client"; + this.$retryable = { + throttling: true, + }; + Object.setPrototypeOf(this, ThrottlingException.prototype); + } +} +exports.ThrottlingException = ThrottlingException; +exports.ValidationExceptionReason = { + CONTENT_LENGTH_EXCEEDS_THRESHOLD: "CONTENT_LENGTH_EXCEEDS_THRESHOLD", + INVALID_CONVERSATION_ID: "INVALID_CONVERSATION_ID", +}; +class ValidationException extends CodeWhispererStreamingServiceException_1.CodeWhispererStreamingServiceException { + constructor(opts) { + super({ + name: "ValidationException", + $fault: "client", + ...opts + }); + this.name = "ValidationException"; + this.$fault = "client"; + Object.setPrototypeOf(this, ValidationException.prototype); + this.reason = opts.reason; + } +} +exports.ValidationException = ValidationException; +const AppStudioStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.namespace && { namespace: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.propertyName && { propertyName: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.propertyValue && { propertyValue: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.propertyContext && { propertyContext: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.AppStudioStateFilterSensitiveLog = AppStudioStateFilterSensitiveLog; +const AssistantResponseEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.AssistantResponseEventFilterSensitiveLog = AssistantResponseEventFilterSensitiveLog; +exports.UserIntent = { + APPLY_COMMON_BEST_PRACTICES: "APPLY_COMMON_BEST_PRACTICES", + CITE_SOURCES: "CITE_SOURCES", + EXPLAIN_CODE_SELECTION: "EXPLAIN_CODE_SELECTION", + EXPLAIN_LINE_BY_LINE: "EXPLAIN_LINE_BY_LINE", + GENERATE_CLOUDFORMATION_TEMPLATE: "GENERATE_CLOUDFORMATION_TEMPLATE", + GENERATE_UNIT_TESTS: "GENERATE_UNIT_TESTS", + IMPROVE_CODE: "IMPROVE_CODE", + SHOW_EXAMPLES: "SHOW_EXAMPLES", + SUGGEST_ALTERNATE_IMPLEMENTATION: "SUGGEST_ALTERNATE_IMPLEMENTATION", +}; +const FollowupPromptFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.FollowupPromptFilterSensitiveLog = FollowupPromptFilterSensitiveLog; +const SupplementaryWebLinkFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.url && { url: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.title && { title: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.snippet && { snippet: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.SupplementaryWebLinkFilterSensitiveLog = SupplementaryWebLinkFilterSensitiveLog; +const AssistantResponseMessageFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.supplementaryWebLinks && { supplementaryWebLinks: obj.supplementaryWebLinks.map(item => (0, exports.SupplementaryWebLinkFilterSensitiveLog)(item)) + }), + ...(obj.followupPrompt && { followupPrompt: (0, exports.FollowupPromptFilterSensitiveLog)(obj.followupPrompt) + }), +}); +exports.AssistantResponseMessageFilterSensitiveLog = AssistantResponseMessageFilterSensitiveLog; +class ConflictException extends CodeWhispererStreamingServiceException_1.CodeWhispererStreamingServiceException { + constructor(opts) { + super({ + name: "ConflictException", + $fault: "client", + ...opts + }); + this.name = "ConflictException"; + this.$fault = "client"; + Object.setPrototypeOf(this, ConflictException.prototype); + } +} +exports.ConflictException = ConflictException; +exports.ContentChecksumType = { + SHA_256: "SHA_256", +}; +const BinaryMetadataEventFilterSensitiveLog = (obj) => ({ + ...obj, +}); +exports.BinaryMetadataEventFilterSensitiveLog = BinaryMetadataEventFilterSensitiveLog; +const BinaryPayloadEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.bytes && { bytes: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.BinaryPayloadEventFilterSensitiveLog = BinaryPayloadEventFilterSensitiveLog; +exports.DiagnosticSeverity = { + ERROR: "ERROR", + HINT: "HINT", + INFORMATION: "INFORMATION", + WARNING: "WARNING", +}; +const RuntimeDiagnosticFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.source && { source: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.message && { message: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.RuntimeDiagnosticFilterSensitiveLog = RuntimeDiagnosticFilterSensitiveLog; +exports.SymbolType = { + DECLARATION: "DECLARATION", + USAGE: "USAGE", +}; +const TextDocumentFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.relativeFilePath && { relativeFilePath: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.text && { text: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.TextDocumentFilterSensitiveLog = TextDocumentFilterSensitiveLog; +const TextDocumentDiagnosticFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.document && { document: (0, exports.TextDocumentFilterSensitiveLog)(obj.document) + }), + ...(obj.source && { source: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.message && { message: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.TextDocumentDiagnosticFilterSensitiveLog = TextDocumentDiagnosticFilterSensitiveLog; +var Diagnostic; +(function (Diagnostic) { + Diagnostic.visit = (value, visitor) => { + if (value.textDocumentDiagnostic !== undefined) + return visitor.textDocumentDiagnostic(value.textDocumentDiagnostic); + if (value.runtimeDiagnostic !== undefined) + return visitor.runtimeDiagnostic(value.runtimeDiagnostic); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(Diagnostic = exports.Diagnostic || (exports.Diagnostic = {})); +const DiagnosticFilterSensitiveLog = (obj) => { + if (obj.textDocumentDiagnostic !== undefined) + return { textDocumentDiagnostic: (0, exports.TextDocumentDiagnosticFilterSensitiveLog)(obj.textDocumentDiagnostic) + }; + if (obj.runtimeDiagnostic !== undefined) + return { runtimeDiagnostic: (0, exports.RuntimeDiagnosticFilterSensitiveLog)(obj.runtimeDiagnostic) + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +exports.DiagnosticFilterSensitiveLog = DiagnosticFilterSensitiveLog; +var CursorState; +(function (CursorState) { + CursorState.visit = (value, visitor) => { + if (value.position !== undefined) + return visitor.position(value.position); + if (value.range !== undefined) + return visitor.range(value.range); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(CursorState = exports.CursorState || (exports.CursorState = {})); +const RelevantTextDocumentFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.relativeFilePath && { relativeFilePath: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.text && { text: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.RelevantTextDocumentFilterSensitiveLog = RelevantTextDocumentFilterSensitiveLog; +const EditorStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.document && { document: (0, exports.TextDocumentFilterSensitiveLog)(obj.document) + }), + ...(obj.cursorState && { cursorState: obj.cursorState + }), + ...(obj.relevantDocuments && { relevantDocuments: obj.relevantDocuments.map(item => (0, exports.RelevantTextDocumentFilterSensitiveLog)(item)) + }), +}); +exports.EditorStateFilterSensitiveLog = EditorStateFilterSensitiveLog; +const EnvironmentVariableFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.key && { key: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.value && { value: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.EnvironmentVariableFilterSensitiveLog = EnvironmentVariableFilterSensitiveLog; +const EnvStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.currentWorkingDirectory && { currentWorkingDirectory: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.environmentVariables && { environmentVariables: obj.environmentVariables.map(item => (0, exports.EnvironmentVariableFilterSensitiveLog)(item)) + }), +}); +exports.EnvStateFilterSensitiveLog = EnvStateFilterSensitiveLog; +const GitStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.status && { status: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.GitStateFilterSensitiveLog = GitStateFilterSensitiveLog; +const ShellHistoryEntryFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.command && { command: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.directory && { directory: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.stdout && { stdout: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.stderr && { stderr: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.ShellHistoryEntryFilterSensitiveLog = ShellHistoryEntryFilterSensitiveLog; +const ShellStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.shellHistory && { shellHistory: obj.shellHistory.map(item => (0, exports.ShellHistoryEntryFilterSensitiveLog)(item)) + }), +}); +exports.ShellStateFilterSensitiveLog = ShellStateFilterSensitiveLog; +const UserInputMessageContextFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.editorState && { editorState: (0, exports.EditorStateFilterSensitiveLog)(obj.editorState) + }), + ...(obj.shellState && { shellState: (0, exports.ShellStateFilterSensitiveLog)(obj.shellState) + }), + ...(obj.gitState && { gitState: (0, exports.GitStateFilterSensitiveLog)(obj.gitState) + }), + ...(obj.envState && { envState: (0, exports.EnvStateFilterSensitiveLog)(obj.envState) + }), + ...(obj.appStudioContext && { appStudioContext: (0, exports.AppStudioStateFilterSensitiveLog)(obj.appStudioContext) + }), + ...(obj.diagnostic && { diagnostic: (0, exports.DiagnosticFilterSensitiveLog)(obj.diagnostic) + }), +}); +exports.UserInputMessageContextFilterSensitiveLog = UserInputMessageContextFilterSensitiveLog; +const UserInputMessageFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING + }), + ...(obj.userInputMessageContext && { userInputMessageContext: (0, exports.UserInputMessageContextFilterSensitiveLog)(obj.userInputMessageContext) + }), +}); +exports.UserInputMessageFilterSensitiveLog = UserInputMessageFilterSensitiveLog; +var ChatMessage; +(function (ChatMessage) { + ChatMessage.visit = (value, visitor) => { + if (value.userInputMessage !== undefined) + return visitor.userInputMessage(value.userInputMessage); + if (value.assistantResponseMessage !== undefined) + return visitor.assistantResponseMessage(value.assistantResponseMessage); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(ChatMessage = exports.ChatMessage || (exports.ChatMessage = {})); +const ChatMessageFilterSensitiveLog = (obj) => { + if (obj.userInputMessage !== undefined) + return { userInputMessage: (0, exports.UserInputMessageFilterSensitiveLog)(obj.userInputMessage) + }; + if (obj.assistantResponseMessage !== undefined) + return { assistantResponseMessage: (0, exports.AssistantResponseMessageFilterSensitiveLog)(obj.assistantResponseMessage) + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +exports.ChatMessageFilterSensitiveLog = ChatMessageFilterSensitiveLog; +const CodeEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.CodeEventFilterSensitiveLog = CodeEventFilterSensitiveLog; +const FollowupPromptEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.followupPrompt && { followupPrompt: (0, exports.FollowupPromptFilterSensitiveLog)(obj.followupPrompt) + }), +}); +exports.FollowupPromptEventFilterSensitiveLog = FollowupPromptEventFilterSensitiveLog; +exports.IntentType = { + GLUE_SENSEI: "GLUE_SENSEI", + RESOURCE_DATA: "RESOURCE_DATA", + SUPPORT: "SUPPORT", +}; +var IntentDataType; +(function (IntentDataType) { + IntentDataType.visit = (value, visitor) => { + if (value.string !== undefined) + return visitor.string(value.string); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(IntentDataType = exports.IntentDataType || (exports.IntentDataType = {})); +const IntentsEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.intents && { intents: smithy_client_1.SENSITIVE_STRING + }), +}); +exports.IntentsEventFilterSensitiveLog = IntentsEventFilterSensitiveLog; +exports.InvalidStateReason = { + INVALID_TASK_ASSIST_PLAN: "INVALID_TASK_ASSIST_PLAN", +}; +const SupplementaryWebLinksEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.supplementaryWebLinks && { supplementaryWebLinks: obj.supplementaryWebLinks.map(item => (0, exports.SupplementaryWebLinkFilterSensitiveLog)(item)) + }), +}); +exports.SupplementaryWebLinksEventFilterSensitiveLog = SupplementaryWebLinksEventFilterSensitiveLog; +var ChatResponseStream; +(function (ChatResponseStream) { + ChatResponseStream.visit = (value, visitor) => { + if (value.messageMetadataEvent !== undefined) + return visitor.messageMetadataEvent(value.messageMetadataEvent); + if (value.assistantResponseEvent !== undefined) + return visitor.assistantResponseEvent(value.assistantResponseEvent); + if (value.codeReferenceEvent !== undefined) + return visitor.codeReferenceEvent(value.codeReferenceEvent); + if (value.supplementaryWebLinksEvent !== undefined) + return visitor.supplementaryWebLinksEvent(value.supplementaryWebLinksEvent); + if (value.followupPromptEvent !== undefined) + return visitor.followupPromptEvent(value.followupPromptEvent); + if (value.codeEvent !== undefined) + return visitor.codeEvent(value.codeEvent); + if (value.intentsEvent !== undefined) + return visitor.intentsEvent(value.intentsEvent); + if (value.invalidStateEvent !== undefined) + return visitor.invalidStateEvent(value.invalidStateEvent); + if (value.error !== undefined) + return visitor.error(value.error); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(ChatResponseStream = exports.ChatResponseStream || (exports.ChatResponseStream = {})); +const ChatResponseStreamFilterSensitiveLog = (obj) => { + if (obj.messageMetadataEvent !== undefined) + return { messageMetadataEvent: obj.messageMetadataEvent + }; + if (obj.assistantResponseEvent !== undefined) + return { assistantResponseEvent: (0, exports.AssistantResponseEventFilterSensitiveLog)(obj.assistantResponseEvent) + }; + if (obj.codeReferenceEvent !== undefined) + return { codeReferenceEvent: obj.codeReferenceEvent + }; + if (obj.supplementaryWebLinksEvent !== undefined) + return { supplementaryWebLinksEvent: (0, exports.SupplementaryWebLinksEventFilterSensitiveLog)(obj.supplementaryWebLinksEvent) + }; + if (obj.followupPromptEvent !== undefined) + return { followupPromptEvent: (0, exports.FollowupPromptEventFilterSensitiveLog)(obj.followupPromptEvent) + }; + if (obj.codeEvent !== undefined) + return { codeEvent: (0, exports.CodeEventFilterSensitiveLog)(obj.codeEvent) + }; + if (obj.intentsEvent !== undefined) + return { intentsEvent: (0, exports.IntentsEventFilterSensitiveLog)(obj.intentsEvent) + }; + if (obj.invalidStateEvent !== undefined) + return { invalidStateEvent: obj.invalidStateEvent + }; + if (obj.error !== undefined) + return { error: obj.error + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +exports.ChatResponseStreamFilterSensitiveLog = ChatResponseStreamFilterSensitiveLog; +exports.ChatTriggerType = { + DIAGNOSTIC: "DIAGNOSTIC", + MANUAL: "MANUAL", +}; +exports.ContextTruncationScheme = { + ANALYSIS: "ANALYSIS", + GUMBY: "GUMBY", +}; +const ConversationStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.history && { history: obj.history.map(item => (0, exports.ChatMessageFilterSensitiveLog)(item)) + }), + ...(obj.currentMessage && { currentMessage: (0, exports.ChatMessageFilterSensitiveLog)(obj.currentMessage) + }), +}); +exports.ConversationStateFilterSensitiveLog = ConversationStateFilterSensitiveLog; +class DryRunOperationException extends CodeWhispererStreamingServiceException_1.CodeWhispererStreamingServiceException { + constructor(opts) { + super({ + name: "DryRunOperationException", + $fault: "client", + ...opts + }); + this.name = "DryRunOperationException"; + this.$fault = "client"; + Object.setPrototypeOf(this, DryRunOperationException.prototype); + this.responseCode = opts.responseCode; + } +} +exports.DryRunOperationException = DryRunOperationException; +exports.TransformationDownloadArtifactType = { + CLIENT_INSTRUCTIONS: "ClientInstructions", + LOGS: "Logs", +}; +var ExportContext; +(function (ExportContext) { + ExportContext.visit = (value, visitor) => { + if (value.transformationExportContext !== undefined) + return visitor.transformationExportContext(value.transformationExportContext); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(ExportContext = exports.ExportContext || (exports.ExportContext = {})); +exports.ExportIntent = { + TASK_ASSIST: "TASK_ASSIST", + TRANSFORMATION: "TRANSFORMATION", +}; +var ResultArchiveStream; +(function (ResultArchiveStream) { + ResultArchiveStream.visit = (value, visitor) => { + if (value.binaryMetadataEvent !== undefined) + return visitor.binaryMetadataEvent(value.binaryMetadataEvent); + if (value.binaryPayloadEvent !== undefined) + return visitor.binaryPayloadEvent(value.binaryPayloadEvent); + if (value.internalServerException !== undefined) + return visitor.internalServerException(value.internalServerException); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(ResultArchiveStream = exports.ResultArchiveStream || (exports.ResultArchiveStream = {})); +const ResultArchiveStreamFilterSensitiveLog = (obj) => { + if (obj.binaryMetadataEvent !== undefined) + return { binaryMetadataEvent: smithy_client_1.SENSITIVE_STRING + }; + if (obj.binaryPayloadEvent !== undefined) + return { binaryPayloadEvent: smithy_client_1.SENSITIVE_STRING + }; + if (obj.internalServerException !== undefined) + return { internalServerException: obj.internalServerException + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +exports.ResultArchiveStreamFilterSensitiveLog = ResultArchiveStreamFilterSensitiveLog; +class ServiceQuotaExceededException extends CodeWhispererStreamingServiceException_1.CodeWhispererStreamingServiceException { + constructor(opts) { + super({ + name: "ServiceQuotaExceededException", + $fault: "client", + ...opts + }); + this.name = "ServiceQuotaExceededException"; + this.$fault = "client"; + Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype); + } +} +exports.ServiceQuotaExceededException = ServiceQuotaExceededException; +const GenerateAssistantResponseRequestFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.conversationState && { conversationState: (0, exports.ConversationStateFilterSensitiveLog)(obj.conversationState) + }), +}); +exports.GenerateAssistantResponseRequestFilterSensitiveLog = GenerateAssistantResponseRequestFilterSensitiveLog; +const GenerateAssistantResponseResponseFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.generateAssistantResponseResponse && { generateAssistantResponseResponse: 'STREAMING_CONTENT' + }), +}); +exports.GenerateAssistantResponseResponseFilterSensitiveLog = GenerateAssistantResponseResponseFilterSensitiveLog; +const ExportResultArchiveResponseFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.body && { body: 'STREAMING_CONTENT' + }), +}); +exports.ExportResultArchiveResponseFilterSensitiveLog = ExportResultArchiveResponseFilterSensitiveLog; +exports.Origin = { + CHATBOT: "CHATBOT", + CONSOLE: "CONSOLE", + DOCUMENTATION: "DOCUMENTATION", + IDE: "IDE", + MARKETING: "MARKETING", + MD: "MD", + MOBILE: "MOBILE", + SERVICE_INTERNAL: "SERVICE_INTERNAL", + UNIFIED_SEARCH: "UNIFIED_SEARCH", + UNKNOWN: "UNKNOWN", +}; +const ConverseStreamRequestFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.conversationState && { conversationState: (0, exports.ConversationStateFilterSensitiveLog)(obj.conversationState) + }), +}); +exports.ConverseStreamRequestFilterSensitiveLog = ConverseStreamRequestFilterSensitiveLog; +const ConverseStreamResponseFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.converseStreamResponse && { converseStreamResponse: 'STREAMING_CONTENT' + }), +}); +exports.ConverseStreamResponseFilterSensitiveLog = ConverseStreamResponseFilterSensitiveLog; +const GenerateTaskAssistPlanRequestFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.conversationState && { conversationState: (0, exports.ConversationStateFilterSensitiveLog)(obj.conversationState) + }), +}); +exports.GenerateTaskAssistPlanRequestFilterSensitiveLog = GenerateTaskAssistPlanRequestFilterSensitiveLog; +const GenerateTaskAssistPlanResponseFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.planningResponseStream && { planningResponseStream: 'STREAMING_CONTENT' + }), +}); +exports.GenerateTaskAssistPlanResponseFilterSensitiveLog = GenerateTaskAssistPlanResponseFilterSensitiveLog; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/protocols/Aws_restJson1.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/protocols/Aws_restJson1.js new file mode 100644 index 00000000000..0d7bc03af21 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/protocols/Aws_restJson1.js @@ -0,0 +1,590 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.de_ConverseStreamCommand = exports.de_GenerateTaskAssistPlanCommand = exports.de_GenerateAssistantResponseCommand = exports.de_ExportResultArchiveCommand = exports.se_ConverseStreamCommand = exports.se_GenerateTaskAssistPlanCommand = exports.se_GenerateAssistantResponseCommand = exports.se_ExportResultArchiveCommand = void 0; +const CodeWhispererStreamingServiceException_1 = require("../models/CodeWhispererStreamingServiceException"); +const models_0_1 = require("../models/models_0"); +const protocol_http_1 = require("@smithy/protocol-http"); +const smithy_client_1 = require("@smithy/smithy-client"); +const se_ExportResultArchiveCommand = async (input, context) => { + const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); + const headers = { + 'content-type': 'application/json', + }; + let resolvedPath = `${basePath?.endsWith('/') ? basePath.slice(0, -1) : (basePath || '')}` + "/exportResultArchive"; + let body; + body = JSON.stringify((0, smithy_client_1.take)(input, { + 'exportContext': _ => (0, smithy_client_1._json)(_), + 'exportId': [], + 'exportIntent': [], + })); + return new protocol_http_1.HttpRequest({ + protocol, + hostname, + port, + method: "POST", + headers, + path: resolvedPath, + body, + }); +}; +exports.se_ExportResultArchiveCommand = se_ExportResultArchiveCommand; +const se_GenerateAssistantResponseCommand = async (input, context) => { + const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); + const headers = { + 'content-type': 'application/json', + }; + let resolvedPath = `${basePath?.endsWith('/') ? basePath.slice(0, -1) : (basePath || '')}` + "/generateAssistantResponse"; + let body; + body = JSON.stringify((0, smithy_client_1.take)(input, { + 'conversationState': _ => (0, smithy_client_1._json)(_), + 'profileArn': [], + })); + return new protocol_http_1.HttpRequest({ + protocol, + hostname, + port, + method: "POST", + headers, + path: resolvedPath, + body, + }); +}; +exports.se_GenerateAssistantResponseCommand = se_GenerateAssistantResponseCommand; +const se_GenerateTaskAssistPlanCommand = async (input, context) => { + const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); + const headers = { + 'content-type': 'application/json', + }; + let resolvedPath = `${basePath?.endsWith('/') ? basePath.slice(0, -1) : (basePath || '')}` + "/generateTaskAssistPlan"; + let body; + body = JSON.stringify((0, smithy_client_1.take)(input, { + 'conversationState': _ => (0, smithy_client_1._json)(_), + 'workspaceState': _ => (0, smithy_client_1._json)(_), + })); + return new protocol_http_1.HttpRequest({ + protocol, + hostname, + port, + method: "POST", + headers, + path: resolvedPath, + body, + }); +}; +exports.se_GenerateTaskAssistPlanCommand = se_GenerateTaskAssistPlanCommand; +const se_ConverseStreamCommand = async (input, context) => { + const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); + const headers = { + 'content-type': 'application/json', + }; + let resolvedPath = `${basePath?.endsWith('/') ? basePath.slice(0, -1) : (basePath || '')}` + "/ConverseStream"; + let body; + body = JSON.stringify((0, smithy_client_1.take)(input, { + 'conversationState': _ => (0, smithy_client_1._json)(_), + 'dryRun': [], + 'profileArn': [], + 'source': [], + })); + return new protocol_http_1.HttpRequest({ + protocol, + hostname, + port, + method: "POST", + headers, + path: resolvedPath, + body, + }); +}; +exports.se_ConverseStreamCommand = se_ConverseStreamCommand; +const de_ExportResultArchiveCommand = async (output, context) => { + if (output.statusCode !== 200 && output.statusCode >= 300) { + return de_ExportResultArchiveCommandError(output, context); + } + const contents = (0, smithy_client_1.map)({ + $metadata: deserializeMetadata(output), + }); + const data = output.body; + contents.body = de_ResultArchiveStream(data, context); + return contents; +}; +exports.de_ExportResultArchiveCommand = de_ExportResultArchiveCommand; +const de_ExportResultArchiveCommandError = async (output, context) => { + const parsedOutput = { + ...output, + body: await parseErrorBody(output.body, context) + }; + const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); + switch (errorCode) { + case "AccessDeniedException": + case "com.amazon.aws.codewhisperer#AccessDeniedException": + throw await de_AccessDeniedExceptionRes(parsedOutput, context); + case "ConflictException": + case "com.amazon.aws.codewhisperer#ConflictException": + throw await de_ConflictExceptionRes(parsedOutput, context); + case "InternalServerException": + case "com.amazon.aws.codewhisperer#InternalServerException": + throw await de_InternalServerExceptionRes(parsedOutput, context); + case "ResourceNotFoundException": + case "com.amazon.aws.codewhisperer#ResourceNotFoundException": + throw await de_ResourceNotFoundExceptionRes(parsedOutput, context); + case "ThrottlingException": + case "com.amazon.aws.codewhisperer#ThrottlingException": + throw await de_ThrottlingExceptionRes(parsedOutput, context); + case "ValidationException": + case "com.amazon.aws.codewhisperer#ValidationException": + throw await de_ValidationExceptionRes(parsedOutput, context); + default: + const parsedBody = parsedOutput.body; + return throwDefaultError({ + output, + parsedBody, + errorCode + }); + } +}; +const de_GenerateAssistantResponseCommand = async (output, context) => { + if (output.statusCode !== 200 && output.statusCode >= 300) { + return de_GenerateAssistantResponseCommandError(output, context); + } + const contents = (0, smithy_client_1.map)({ + $metadata: deserializeMetadata(output), + conversationId: [, output.headers['x-amzn-codewhisperer-conversation-id']], + }); + const data = output.body; + contents.generateAssistantResponseResponse = de_ChatResponseStream(data, context); + return contents; +}; +exports.de_GenerateAssistantResponseCommand = de_GenerateAssistantResponseCommand; +const de_GenerateAssistantResponseCommandError = async (output, context) => { + const parsedOutput = { + ...output, + body: await parseErrorBody(output.body, context) + }; + const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); + switch (errorCode) { + case "AccessDeniedException": + case "com.amazon.aws.codewhisperer#AccessDeniedException": + throw await de_AccessDeniedExceptionRes(parsedOutput, context); + case "InternalServerException": + case "com.amazon.aws.codewhisperer#InternalServerException": + throw await de_InternalServerExceptionRes(parsedOutput, context); + case "ThrottlingException": + case "com.amazon.aws.codewhisperer#ThrottlingException": + throw await de_ThrottlingExceptionRes(parsedOutput, context); + case "ValidationException": + case "com.amazon.aws.codewhisperer#ValidationException": + throw await de_ValidationExceptionRes(parsedOutput, context); + default: + const parsedBody = parsedOutput.body; + return throwDefaultError({ + output, + parsedBody, + errorCode + }); + } +}; +const de_GenerateTaskAssistPlanCommand = async (output, context) => { + if (output.statusCode !== 200 && output.statusCode >= 300) { + return de_GenerateTaskAssistPlanCommandError(output, context); + } + const contents = (0, smithy_client_1.map)({ + $metadata: deserializeMetadata(output), + }); + const data = output.body; + contents.planningResponseStream = de_ChatResponseStream(data, context); + return contents; +}; +exports.de_GenerateTaskAssistPlanCommand = de_GenerateTaskAssistPlanCommand; +const de_GenerateTaskAssistPlanCommandError = async (output, context) => { + const parsedOutput = { + ...output, + body: await parseErrorBody(output.body, context) + }; + const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); + switch (errorCode) { + case "AccessDeniedException": + case "com.amazon.aws.codewhisperer#AccessDeniedException": + throw await de_AccessDeniedExceptionRes(parsedOutput, context); + case "ConflictException": + case "com.amazon.aws.codewhisperer#ConflictException": + throw await de_ConflictExceptionRes(parsedOutput, context); + case "InternalServerException": + case "com.amazon.aws.codewhisperer#InternalServerException": + throw await de_InternalServerExceptionRes(parsedOutput, context); + case "ResourceNotFoundException": + case "com.amazon.aws.codewhisperer#ResourceNotFoundException": + throw await de_ResourceNotFoundExceptionRes(parsedOutput, context); + case "ServiceQuotaExceededException": + case "com.amazon.aws.codewhisperer#ServiceQuotaExceededException": + throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context); + case "ThrottlingException": + case "com.amazon.aws.codewhisperer#ThrottlingException": + throw await de_ThrottlingExceptionRes(parsedOutput, context); + case "ValidationException": + case "com.amazon.aws.codewhisperer#ValidationException": + throw await de_ValidationExceptionRes(parsedOutput, context); + default: + const parsedBody = parsedOutput.body; + return throwDefaultError({ + output, + parsedBody, + errorCode + }); + } +}; +const de_ConverseStreamCommand = async (output, context) => { + if (output.statusCode !== 200 && output.statusCode >= 300) { + return de_ConverseStreamCommandError(output, context); + } + const contents = (0, smithy_client_1.map)({ + $metadata: deserializeMetadata(output), + conversationId: [, output.headers['x-amzn-q-conversation-id']], + utteranceId: [, output.headers['x-amzn-q-utterance-id']], + }); + const data = output.body; + contents.converseStreamResponse = de_ChatResponseStream(data, context); + return contents; +}; +exports.de_ConverseStreamCommand = de_ConverseStreamCommand; +const de_ConverseStreamCommandError = async (output, context) => { + const parsedOutput = { + ...output, + body: await parseErrorBody(output.body, context) + }; + const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); + switch (errorCode) { + case "AccessDeniedException": + case "com.amazon.aws.codewhisperer#AccessDeniedException": + throw await de_AccessDeniedExceptionRes(parsedOutput, context); + case "ConflictException": + case "com.amazon.aws.codewhisperer#ConflictException": + throw await de_ConflictExceptionRes(parsedOutput, context); + case "DryRunOperationException": + case "com.amazon.aws.codewhisperer#DryRunOperationException": + throw await de_DryRunOperationExceptionRes(parsedOutput, context); + case "InternalServerException": + case "com.amazon.aws.codewhisperer#InternalServerException": + throw await de_InternalServerExceptionRes(parsedOutput, context); + case "ResourceNotFoundException": + case "com.amazon.aws.codewhisperer#ResourceNotFoundException": + throw await de_ResourceNotFoundExceptionRes(parsedOutput, context); + case "ServiceQuotaExceededException": + case "com.amazon.aws.codewhisperer#ServiceQuotaExceededException": + throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context); + case "ThrottlingException": + case "com.amazon.aws.codewhisperer#ThrottlingException": + throw await de_ThrottlingExceptionRes(parsedOutput, context); + case "ValidationException": + case "com.amazon.aws.codewhisperer#ValidationException": + throw await de_ValidationExceptionRes(parsedOutput, context); + default: + const parsedBody = parsedOutput.body; + return throwDefaultError({ + output, + parsedBody, + errorCode + }); + } +}; +const throwDefaultError = (0, smithy_client_1.withBaseException)(CodeWhispererStreamingServiceException_1.CodeWhispererStreamingServiceException); +const de_AccessDeniedExceptionRes = async (parsedOutput, context) => { + const contents = (0, smithy_client_1.map)({}); + const data = parsedOutput.body; + const doc = (0, smithy_client_1.take)(data, { + 'message': smithy_client_1.expectString, + 'reason': smithy_client_1.expectString, + }); + Object.assign(contents, doc); + const exception = new models_0_1.AccessDeniedException({ + $metadata: deserializeMetadata(parsedOutput), + ...contents + }); + return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body); +}; +const de_ConflictExceptionRes = async (parsedOutput, context) => { + const contents = (0, smithy_client_1.map)({}); + const data = parsedOutput.body; + const doc = (0, smithy_client_1.take)(data, { + 'message': smithy_client_1.expectString, + }); + Object.assign(contents, doc); + const exception = new models_0_1.ConflictException({ + $metadata: deserializeMetadata(parsedOutput), + ...contents + }); + return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body); +}; +const de_DryRunOperationExceptionRes = async (parsedOutput, context) => { + const contents = (0, smithy_client_1.map)({}); + const data = parsedOutput.body; + const doc = (0, smithy_client_1.take)(data, { + 'message': smithy_client_1.expectString, + }); + Object.assign(contents, doc); + const exception = new models_0_1.DryRunOperationException({ + $metadata: deserializeMetadata(parsedOutput), + ...contents + }); + return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body); +}; +const de_InternalServerExceptionRes = async (parsedOutput, context) => { + const contents = (0, smithy_client_1.map)({}); + const data = parsedOutput.body; + const doc = (0, smithy_client_1.take)(data, { + 'message': smithy_client_1.expectString, + }); + Object.assign(contents, doc); + const exception = new models_0_1.InternalServerException({ + $metadata: deserializeMetadata(parsedOutput), + ...contents + }); + return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body); +}; +const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => { + const contents = (0, smithy_client_1.map)({}); + const data = parsedOutput.body; + const doc = (0, smithy_client_1.take)(data, { + 'message': smithy_client_1.expectString, + }); + Object.assign(contents, doc); + const exception = new models_0_1.ResourceNotFoundException({ + $metadata: deserializeMetadata(parsedOutput), + ...contents + }); + return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body); +}; +const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => { + const contents = (0, smithy_client_1.map)({}); + const data = parsedOutput.body; + const doc = (0, smithy_client_1.take)(data, { + 'message': smithy_client_1.expectString, + }); + Object.assign(contents, doc); + const exception = new models_0_1.ServiceQuotaExceededException({ + $metadata: deserializeMetadata(parsedOutput), + ...contents + }); + return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body); +}; +const de_ThrottlingExceptionRes = async (parsedOutput, context) => { + const contents = (0, smithy_client_1.map)({}); + const data = parsedOutput.body; + const doc = (0, smithy_client_1.take)(data, { + 'message': smithy_client_1.expectString, + }); + Object.assign(contents, doc); + const exception = new models_0_1.ThrottlingException({ + $metadata: deserializeMetadata(parsedOutput), + ...contents + }); + return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body); +}; +const de_ValidationExceptionRes = async (parsedOutput, context) => { + const contents = (0, smithy_client_1.map)({}); + const data = parsedOutput.body; + const doc = (0, smithy_client_1.take)(data, { + 'message': smithy_client_1.expectString, + 'reason': smithy_client_1.expectString, + }); + Object.assign(contents, doc); + const exception = new models_0_1.ValidationException({ + $metadata: deserializeMetadata(parsedOutput), + ...contents + }); + return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body); +}; +const de_ChatResponseStream = (output, context) => { + return context.eventStreamMarshaller.deserialize(output, async (event) => { + if (event["messageMetadataEvent"] != null) { + return { + messageMetadataEvent: await de_MessageMetadataEvent_event(event["messageMetadataEvent"], context), + }; + } + if (event["assistantResponseEvent"] != null) { + return { + assistantResponseEvent: await de_AssistantResponseEvent_event(event["assistantResponseEvent"], context), + }; + } + if (event["codeReferenceEvent"] != null) { + return { + codeReferenceEvent: await de_CodeReferenceEvent_event(event["codeReferenceEvent"], context), + }; + } + if (event["supplementaryWebLinksEvent"] != null) { + return { + supplementaryWebLinksEvent: await de_SupplementaryWebLinksEvent_event(event["supplementaryWebLinksEvent"], context), + }; + } + if (event["followupPromptEvent"] != null) { + return { + followupPromptEvent: await de_FollowupPromptEvent_event(event["followupPromptEvent"], context), + }; + } + if (event["codeEvent"] != null) { + return { + codeEvent: await de_CodeEvent_event(event["codeEvent"], context), + }; + } + if (event["intentsEvent"] != null) { + return { + intentsEvent: await de_IntentsEvent_event(event["intentsEvent"], context), + }; + } + if (event["invalidStateEvent"] != null) { + return { + invalidStateEvent: await de_InvalidStateEvent_event(event["invalidStateEvent"], context), + }; + } + if (event["error"] != null) { + return { + error: await de_InternalServerException_event(event["error"], context), + }; + } + return { $unknown: output }; + }); +}; +const de_ResultArchiveStream = (output, context) => { + return context.eventStreamMarshaller.deserialize(output, async (event) => { + if (event["binaryMetadataEvent"] != null) { + return { + binaryMetadataEvent: await de_BinaryMetadataEvent_event(event["binaryMetadataEvent"], context), + }; + } + if (event["binaryPayloadEvent"] != null) { + return { + binaryPayloadEvent: await de_BinaryPayloadEvent_event(event["binaryPayloadEvent"], context), + }; + } + if (event["internalServerException"] != null) { + return { + internalServerException: await de_InternalServerException_event(event["internalServerException"], context), + }; + } + return { $unknown: output }; + }); +}; +const de_AssistantResponseEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, (0, smithy_client_1._json)(data)); + return contents; +}; +const de_BinaryMetadataEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, (0, smithy_client_1._json)(data)); + return contents; +}; +const de_BinaryPayloadEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, de_BinaryPayloadEvent(data, context)); + return contents; +}; +const de_CodeEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, (0, smithy_client_1._json)(data)); + return contents; +}; +const de_CodeReferenceEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, (0, smithy_client_1._json)(data)); + return contents; +}; +const de_FollowupPromptEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, (0, smithy_client_1._json)(data)); + return contents; +}; +const de_IntentsEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, (0, smithy_client_1._json)(data)); + return contents; +}; +const de_InternalServerException_event = async (output, context) => { + const parsedOutput = { + ...output, + body: await parseBody(output.body, context) + }; + return de_InternalServerExceptionRes(parsedOutput, context); +}; +const de_InvalidStateEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, (0, smithy_client_1._json)(data)); + return contents; +}; +const de_MessageMetadataEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, (0, smithy_client_1._json)(data)); + return contents; +}; +const de_SupplementaryWebLinksEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, (0, smithy_client_1._json)(data)); + return contents; +}; +const de_BinaryPayloadEvent = (output, context) => { + return (0, smithy_client_1.take)(output, { + 'bytes': context.base64Decoder, + }); +}; +const deserializeMetadata = (output) => ({ + httpStatusCode: output.statusCode, + requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"], + extendedRequestId: output.headers["x-amz-id-2"], + cfId: output.headers["x-amz-cf-id"], +}); +const collectBodyString = (streamBody, context) => (0, smithy_client_1.collectBody)(streamBody, context).then(body => context.utf8Encoder(body)); +const isSerializableHeaderValue = (value) => value !== undefined && + value !== null && + value !== "" && + (!Object.getOwnPropertyNames(value).includes("length") || + value.length != 0) && + (!Object.getOwnPropertyNames(value).includes("size") || value.size != 0); +const parseBody = (streamBody, context) => collectBodyString(streamBody, context).then(encoded => { + if (encoded.length) { + return JSON.parse(encoded); + } + return {}; +}); +const parseErrorBody = async (errorBody, context) => { + const value = await parseBody(errorBody, context); + value.message = value.message ?? value.Message; + return value; +}; +const loadRestJsonErrorCode = (output, data) => { + const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase()); + const sanitizeErrorCode = (rawValue) => { + let cleanValue = rawValue; + if (typeof cleanValue === "number") { + cleanValue = cleanValue.toString(); + } + if (cleanValue.indexOf(",") >= 0) { + cleanValue = cleanValue.split(",")[0]; + } + if (cleanValue.indexOf(":") >= 0) { + cleanValue = cleanValue.split(":")[0]; + } + if (cleanValue.indexOf("#") >= 0) { + cleanValue = cleanValue.split("#")[1]; + } + return cleanValue; + }; + const headerKey = findKey(output.headers, "x-amzn-errortype"); + if (headerKey !== undefined) { + return sanitizeErrorCode(output.headers[headerKey]); + } + if (data.code !== undefined) { + return sanitizeErrorCode(data.code); + } + if (data["__type"] !== undefined) { + return sanitizeErrorCode(data["__type"]); + } +}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.browser.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.browser.js new file mode 100644 index 00000000000..bd34e782028 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.browser.js @@ -0,0 +1,37 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.getRuntimeConfig = void 0; +const tslib_1 = require("tslib"); +const package_json_1 = tslib_1.__importDefault(require("../package.json")); +const sha256_browser_1 = require("@aws-crypto/sha256-browser"); +const util_user_agent_browser_1 = require("@aws-sdk/util-user-agent-browser"); +const config_resolver_1 = require("@smithy/config-resolver"); +const eventstream_serde_browser_1 = require("@smithy/eventstream-serde-browser"); +const fetch_http_handler_1 = require("@smithy/fetch-http-handler"); +const util_body_length_browser_1 = require("@smithy/util-body-length-browser"); +const util_retry_1 = require("@smithy/util-retry"); +const runtimeConfig_shared_1 = require("./runtimeConfig.shared"); +const smithy_client_1 = require("@smithy/smithy-client"); +const util_defaults_mode_browser_1 = require("@smithy/util-defaults-mode-browser"); +const getRuntimeConfig = (config) => { + const defaultsMode = (0, util_defaults_mode_browser_1.resolveDefaultsModeConfig)(config); + const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode); + const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config); + return { + ...clientSharedValues, + ...config, + runtime: "browser", + defaultsMode, + bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_browser_1.calculateBodyLength, + defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_browser_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }), + eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventstream_serde_browser_1.eventStreamSerdeProvider, + maxAttempts: config?.maxAttempts ?? util_retry_1.DEFAULT_MAX_ATTEMPTS, + requestHandler: config?.requestHandler ?? new fetch_http_handler_1.FetchHttpHandler(defaultConfigProvider), + retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE), + sha256: config?.sha256 ?? sha256_browser_1.Sha256, + streamCollector: config?.streamCollector ?? fetch_http_handler_1.streamCollector, + useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(config_resolver_1.DEFAULT_USE_DUALSTACK_ENDPOINT)), + useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(config_resolver_1.DEFAULT_USE_FIPS_ENDPOINT)), + }; +}; +exports.getRuntimeConfig = getRuntimeConfig; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.js new file mode 100644 index 00000000000..d9fc9a53dc2 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.js @@ -0,0 +1,41 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.getRuntimeConfig = void 0; +const tslib_1 = require("tslib"); +const package_json_1 = tslib_1.__importDefault(require("../package.json")); +const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node"); +const config_resolver_1 = require("@smithy/config-resolver"); +const eventstream_serde_node_1 = require("@smithy/eventstream-serde-node"); +const hash_node_1 = require("@smithy/hash-node"); +const middleware_retry_1 = require("@smithy/middleware-retry"); +const node_config_provider_1 = require("@smithy/node-config-provider"); +const node_http_handler_1 = require("@smithy/node-http-handler"); +const util_body_length_node_1 = require("@smithy/util-body-length-node"); +const util_retry_1 = require("@smithy/util-retry"); +const runtimeConfig_shared_1 = require("./runtimeConfig.shared"); +const smithy_client_1 = require("@smithy/smithy-client"); +const util_defaults_mode_node_1 = require("@smithy/util-defaults-mode-node"); +const smithy_client_2 = require("@smithy/smithy-client"); +const getRuntimeConfig = (config) => { + (0, smithy_client_2.emitWarningIfUnsupportedVersion)(process.version); + const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config); + const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode); + const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config); + return { + ...clientSharedValues, + ...config, + runtime: "node", + defaultsMode, + bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength, + defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }), + eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventstream_serde_node_1.eventStreamSerdeProvider, + maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS), + requestHandler: config?.requestHandler ?? new node_http_handler_1.NodeHttpHandler(defaultConfigProvider), + retryMode: config?.retryMode ?? (0, node_config_provider_1.loadConfig)({ ...middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS, default: async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE, }), + sha256: config?.sha256 ?? hash_node_1.Hash.bind(null, "sha256"), + streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector, + useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS), + useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS), + }; +}; +exports.getRuntimeConfig = getRuntimeConfig; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.native.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.native.js new file mode 100644 index 00000000000..34c5f8ece1d --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.native.js @@ -0,0 +1,15 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.getRuntimeConfig = void 0; +const sha256_js_1 = require("@aws-crypto/sha256-js"); +const runtimeConfig_browser_1 = require("./runtimeConfig.browser"); +const getRuntimeConfig = (config) => { + const browserDefaults = (0, runtimeConfig_browser_1.getRuntimeConfig)(config); + return { + ...browserDefaults, + ...config, + runtime: "react-native", + sha256: config?.sha256 ?? sha256_js_1.Sha256, + }; +}; +exports.getRuntimeConfig = getRuntimeConfig; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.shared.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.shared.js new file mode 100644 index 00000000000..49e4183f40d --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.shared.js @@ -0,0 +1,22 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.getRuntimeConfig = void 0; +const endpoints_1 = require("./endpoints"); +const smithy_client_1 = require("@smithy/smithy-client"); +const url_parser_1 = require("@smithy/url-parser"); +const util_base64_1 = require("@smithy/util-base64"); +const util_utf8_1 = require("@smithy/util-utf8"); +const getRuntimeConfig = (config) => ({ + apiVersion: "2023-11-27", + base64Decoder: config?.base64Decoder ?? util_base64_1.fromBase64, + base64Encoder: config?.base64Encoder ?? util_base64_1.toBase64, + disableHostPrefix: config?.disableHostPrefix ?? false, + extensions: config?.extensions ?? [], + logger: config?.logger ?? new smithy_client_1.NoOpLogger(), + regionInfoProvider: config?.regionInfoProvider ?? endpoints_1.defaultRegionInfoProvider, + serviceId: config?.serviceId ?? "CodeWhispererStreaming", + urlParser: config?.urlParser ?? url_parser_1.parseUrl, + utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8, + utf8Encoder: config?.utf8Encoder ?? util_utf8_1.toUtf8, +}); +exports.getRuntimeConfig = getRuntimeConfig; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeExtensions.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeExtensions.js new file mode 100644 index 00000000000..4f256a7c36a --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeExtensions.js @@ -0,0 +1,22 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.resolveRuntimeExtensions = void 0; +const region_config_resolver_1 = require("@aws-sdk/region-config-resolver"); +const protocol_http_1 = require("@smithy/protocol-http"); +const smithy_client_1 = require("@smithy/smithy-client"); +const asPartial = (t) => t; +const resolveRuntimeExtensions = (runtimeConfig, extensions) => { + const extensionConfiguration = { + ...asPartial((0, region_config_resolver_1.getAwsRegionExtensionConfiguration)(runtimeConfig)), + ...asPartial((0, smithy_client_1.getDefaultExtensionConfiguration)(runtimeConfig)), + ...asPartial((0, protocol_http_1.getHttpHandlerExtensionConfiguration)(runtimeConfig)), + }; + extensions.forEach(extension => extension.configure(extensionConfiguration)); + return { + ...runtimeConfig, + ...(0, region_config_resolver_1.resolveAwsRegionExtensionConfiguration)(extensionConfiguration), + ...(0, smithy_client_1.resolveDefaultRuntimeConfig)(extensionConfiguration), + ...(0, protocol_http_1.resolveHttpHandlerRuntimeConfig)(extensionConfiguration), + }; +}; +exports.resolveRuntimeExtensions = resolveRuntimeExtensions; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreaming.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreaming.js new file mode 100644 index 00000000000..7d154888361 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreaming.js @@ -0,0 +1,15 @@ +import { CodeWhispererStreamingClient, } from "./CodeWhispererStreamingClient"; +import { ConverseStreamCommand, } from "./commands/ConverseStreamCommand"; +import { ExportResultArchiveCommand, } from "./commands/ExportResultArchiveCommand"; +import { GenerateAssistantResponseCommand, } from "./commands/GenerateAssistantResponseCommand"; +import { GenerateTaskAssistPlanCommand, } from "./commands/GenerateTaskAssistPlanCommand"; +import { createAggregatedClient } from "@smithy/smithy-client"; +const commands = { + ExportResultArchiveCommand, + GenerateAssistantResponseCommand, + GenerateTaskAssistPlanCommand, + ConverseStreamCommand, +}; +export class CodeWhispererStreaming extends CodeWhispererStreamingClient { +} +createAggregatedClient(commands, CodeWhispererStreaming); diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreamingClient.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreamingClient.js new file mode 100644 index 00000000000..7a6879f0530 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreamingClient.js @@ -0,0 +1,38 @@ +import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; +import { resolveRuntimeExtensions, } from "./runtimeExtensions"; +import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; +import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; +import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; +import { getTokenPlugin, resolveTokenConfig, } from "@aws-sdk/middleware-token"; +import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent"; +import { resolveEndpointsConfig, resolveRegionConfig, } from "@smithy/config-resolver"; +import { resolveEventStreamSerdeConfig, } from "@smithy/eventstream-serde-config-resolver"; +import { getContentLengthPlugin } from "@smithy/middleware-content-length"; +import { getRetryPlugin, resolveRetryConfig, } from "@smithy/middleware-retry"; +import { Client as __Client, } from "@smithy/smithy-client"; +export { __Client }; +export class CodeWhispererStreamingClient extends __Client { + constructor(...[configuration]) { + let _config_0 = __getRuntimeConfig(configuration || {}); + let _config_1 = resolveRegionConfig(_config_0); + let _config_2 = resolveEndpointsConfig(_config_1); + let _config_3 = resolveRetryConfig(_config_2); + let _config_4 = resolveHostHeaderConfig(_config_3); + let _config_5 = resolveTokenConfig(_config_4); + let _config_6 = resolveUserAgentConfig(_config_5); + let _config_7 = resolveEventStreamSerdeConfig(_config_6); + let _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []); + super(_config_8); + this.config = _config_8; + this.middlewareStack.use(getRetryPlugin(this.config)); + this.middlewareStack.use(getContentLengthPlugin(this.config)); + this.middlewareStack.use(getHostHeaderPlugin(this.config)); + this.middlewareStack.use(getLoggerPlugin(this.config)); + this.middlewareStack.use(getRecursionDetectionPlugin(this.config)); + this.middlewareStack.use(getTokenPlugin(this.config)); + this.middlewareStack.use(getUserAgentPlugin(this.config)); + } + destroy() { + super.destroy(); + } +} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/ConverseStreamCommand.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/ConverseStreamCommand.js new file mode 100644 index 00000000000..7fbeacebeae --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/ConverseStreamCommand.js @@ -0,0 +1,38 @@ +import { ConverseStreamRequestFilterSensitiveLog, ConverseStreamResponseFilterSensitiveLog, } from "../models/models_0"; +import { de_ConverseStreamCommand, se_ConverseStreamCommand, } from "../protocols/Aws_restJson1"; +import { getSerdePlugin } from "@smithy/middleware-serde"; +import { Command as $Command } from "@smithy/smithy-client"; +import { SMITHY_CONTEXT_KEY, } from "@smithy/types"; +export { $Command }; +export class ConverseStreamCommand extends $Command { + constructor(input) { + super(); + this.input = input; + } + resolveMiddleware(clientStack, configuration, options) { + this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize)); + const stack = clientStack.concat(this.middlewareStack); + const { logger } = configuration; + const clientName = "CodeWhispererStreamingClient"; + const commandName = "ConverseStreamCommand"; + const handlerExecutionContext = { + logger, + clientName, + commandName, + inputFilterSensitiveLog: ConverseStreamRequestFilterSensitiveLog, + outputFilterSensitiveLog: ConverseStreamResponseFilterSensitiveLog, + [SMITHY_CONTEXT_KEY]: { + service: "AmazonCodeWhispererStreamingService", + operation: "ConverseStream", + }, + }; + const { requestHandler } = configuration; + return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext); + } + serialize(input, context) { + return se_ConverseStreamCommand(input, context); + } + deserialize(output, context) { + return de_ConverseStreamCommand(output, context); + } +} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/ExportResultArchiveCommand.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/ExportResultArchiveCommand.js new file mode 100644 index 00000000000..cce5f3aafcf --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/ExportResultArchiveCommand.js @@ -0,0 +1,38 @@ +import { ExportResultArchiveResponseFilterSensitiveLog, } from "../models/models_0"; +import { de_ExportResultArchiveCommand, se_ExportResultArchiveCommand, } from "../protocols/Aws_restJson1"; +import { getSerdePlugin } from "@smithy/middleware-serde"; +import { Command as $Command } from "@smithy/smithy-client"; +import { SMITHY_CONTEXT_KEY, } from "@smithy/types"; +export { $Command }; +export class ExportResultArchiveCommand extends $Command { + constructor(input) { + super(); + this.input = input; + } + resolveMiddleware(clientStack, configuration, options) { + this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize)); + const stack = clientStack.concat(this.middlewareStack); + const { logger } = configuration; + const clientName = "CodeWhispererStreamingClient"; + const commandName = "ExportResultArchiveCommand"; + const handlerExecutionContext = { + logger, + clientName, + commandName, + inputFilterSensitiveLog: (_) => _, + outputFilterSensitiveLog: ExportResultArchiveResponseFilterSensitiveLog, + [SMITHY_CONTEXT_KEY]: { + service: "AmazonCodeWhispererStreamingService", + operation: "ExportResultArchive", + }, + }; + const { requestHandler } = configuration; + return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext); + } + serialize(input, context) { + return se_ExportResultArchiveCommand(input, context); + } + deserialize(output, context) { + return de_ExportResultArchiveCommand(output, context); + } +} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/GenerateAssistantResponseCommand.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/GenerateAssistantResponseCommand.js new file mode 100644 index 00000000000..5b01a093d27 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/GenerateAssistantResponseCommand.js @@ -0,0 +1,38 @@ +import { GenerateAssistantResponseRequestFilterSensitiveLog, GenerateAssistantResponseResponseFilterSensitiveLog, } from "../models/models_0"; +import { de_GenerateAssistantResponseCommand, se_GenerateAssistantResponseCommand, } from "../protocols/Aws_restJson1"; +import { getSerdePlugin } from "@smithy/middleware-serde"; +import { Command as $Command } from "@smithy/smithy-client"; +import { SMITHY_CONTEXT_KEY, } from "@smithy/types"; +export { $Command }; +export class GenerateAssistantResponseCommand extends $Command { + constructor(input) { + super(); + this.input = input; + } + resolveMiddleware(clientStack, configuration, options) { + this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize)); + const stack = clientStack.concat(this.middlewareStack); + const { logger } = configuration; + const clientName = "CodeWhispererStreamingClient"; + const commandName = "GenerateAssistantResponseCommand"; + const handlerExecutionContext = { + logger, + clientName, + commandName, + inputFilterSensitiveLog: GenerateAssistantResponseRequestFilterSensitiveLog, + outputFilterSensitiveLog: GenerateAssistantResponseResponseFilterSensitiveLog, + [SMITHY_CONTEXT_KEY]: { + service: "AmazonCodeWhispererStreamingService", + operation: "GenerateAssistantResponse", + }, + }; + const { requestHandler } = configuration; + return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext); + } + serialize(input, context) { + return se_GenerateAssistantResponseCommand(input, context); + } + deserialize(output, context) { + return de_GenerateAssistantResponseCommand(output, context); + } +} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/GenerateTaskAssistPlanCommand.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/GenerateTaskAssistPlanCommand.js new file mode 100644 index 00000000000..e8605e3bb9c --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/GenerateTaskAssistPlanCommand.js @@ -0,0 +1,38 @@ +import { GenerateTaskAssistPlanRequestFilterSensitiveLog, GenerateTaskAssistPlanResponseFilterSensitiveLog, } from "../models/models_0"; +import { de_GenerateTaskAssistPlanCommand, se_GenerateTaskAssistPlanCommand, } from "../protocols/Aws_restJson1"; +import { getSerdePlugin } from "@smithy/middleware-serde"; +import { Command as $Command } from "@smithy/smithy-client"; +import { SMITHY_CONTEXT_KEY, } from "@smithy/types"; +export { $Command }; +export class GenerateTaskAssistPlanCommand extends $Command { + constructor(input) { + super(); + this.input = input; + } + resolveMiddleware(clientStack, configuration, options) { + this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize)); + const stack = clientStack.concat(this.middlewareStack); + const { logger } = configuration; + const clientName = "CodeWhispererStreamingClient"; + const commandName = "GenerateTaskAssistPlanCommand"; + const handlerExecutionContext = { + logger, + clientName, + commandName, + inputFilterSensitiveLog: GenerateTaskAssistPlanRequestFilterSensitiveLog, + outputFilterSensitiveLog: GenerateTaskAssistPlanResponseFilterSensitiveLog, + [SMITHY_CONTEXT_KEY]: { + service: "AmazonCodeWhispererStreamingService", + operation: "GenerateTaskAssistPlan", + }, + }; + const { requestHandler } = configuration; + return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext); + } + serialize(input, context) { + return se_GenerateTaskAssistPlanCommand(input, context); + } + deserialize(output, context) { + return de_GenerateTaskAssistPlanCommand(output, context); + } +} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/index.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/index.js new file mode 100644 index 00000000000..983aed6e929 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/index.js @@ -0,0 +1,4 @@ +export * from "./ExportResultArchiveCommand"; +export * from "./GenerateAssistantResponseCommand"; +export * from "./GenerateTaskAssistPlanCommand"; +export * from "./ConverseStreamCommand"; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/endpoints.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/endpoints.js new file mode 100644 index 00000000000..b3eadfea193 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-es/endpoints.js @@ -0,0 +1,201 @@ +import { getRegionInfo, } from "@smithy/config-resolver"; +const regionHash = {}; +const partitionHash = { + "aws": { + regions: [ + "af-south-1", + "ap-east-1", + "ap-northeast-1", + "ap-northeast-2", + "ap-northeast-3", + "ap-south-1", + "ap-south-2", + "ap-southeast-1", + "ap-southeast-2", + "ap-southeast-3", + "ap-southeast-4", + "ca-central-1", + "eu-central-1", + "eu-central-2", + "eu-north-1", + "eu-south-1", + "eu-south-2", + "eu-west-1", + "eu-west-2", + "eu-west-3", + "il-central-1", + "me-central-1", + "me-south-1", + "sa-east-1", + "us-east-1", + "us-east-2", + "us-west-1", + "us-west-2", + ], + regionRegex: "^(us|eu|ap|sa|ca|me|af|il)\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazoncodewhispererstreamingservice.{region}.amazonaws.com", + "tags": [] + }, + { + "hostname": "amazoncodewhispererstreamingservice-fips.{region}.amazonaws.com", + "tags": [ + "fips" + ] + }, + { + "hostname": "amazoncodewhispererstreamingservice-fips.{region}.api.aws", + "tags": [ + "dualstack", + "fips" + ] + }, + { + "hostname": "amazoncodewhispererstreamingservice.{region}.api.aws", + "tags": [ + "dualstack" + ] + } + ], + }, + "aws-cn": { + regions: [ + "cn-north-1", + "cn-northwest-1", + ], + regionRegex: "^cn\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazoncodewhispererstreamingservice.{region}.amazonaws.com.cn", + "tags": [] + }, + { + "hostname": "amazoncodewhispererstreamingservice-fips.{region}.amazonaws.com.cn", + "tags": [ + "fips" + ] + }, + { + "hostname": "amazoncodewhispererstreamingservice-fips.{region}.api.amazonwebservices.com.cn", + "tags": [ + "dualstack", + "fips" + ] + }, + { + "hostname": "amazoncodewhispererstreamingservice.{region}.api.amazonwebservices.com.cn", + "tags": [ + "dualstack" + ] + } + ], + }, + "aws-iso": { + regions: [ + "us-iso-east-1", + "us-iso-west-1", + ], + regionRegex: "^us\\-iso\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazoncodewhispererstreamingservice.{region}.c2s.ic.gov", + "tags": [] + }, + { + "hostname": "amazoncodewhispererstreamingservice-fips.{region}.c2s.ic.gov", + "tags": [ + "fips" + ] + } + ], + }, + "aws-iso-b": { + regions: [ + "us-isob-east-1", + ], + regionRegex: "^us\\-isob\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazoncodewhispererstreamingservice.{region}.sc2s.sgov.gov", + "tags": [] + }, + { + "hostname": "amazoncodewhispererstreamingservice-fips.{region}.sc2s.sgov.gov", + "tags": [ + "fips" + ] + } + ], + }, + "aws-iso-e": { + regions: [], + regionRegex: "^eu\\-isoe\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazoncodewhispererstreamingservice.{region}.cloud.adc-e.uk", + "tags": [] + }, + { + "hostname": "amazoncodewhispererstreamingservice-fips.{region}.cloud.adc-e.uk", + "tags": [ + "fips" + ] + } + ], + }, + "aws-iso-f": { + regions: [], + regionRegex: "^us\\-isof\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazoncodewhispererstreamingservice.{region}.csp.hci.ic.gov", + "tags": [] + }, + { + "hostname": "amazoncodewhispererstreamingservice-fips.{region}.csp.hci.ic.gov", + "tags": [ + "fips" + ] + } + ], + }, + "aws-us-gov": { + regions: [ + "us-gov-east-1", + "us-gov-west-1", + ], + regionRegex: "^us\\-gov\\-\\w+\\-\\d+$", + variants: [ + { + "hostname": "amazoncodewhispererstreamingservice.{region}.amazonaws.com", + "tags": [] + }, + { + "hostname": "amazoncodewhispererstreamingservice-fips.{region}.amazonaws.com", + "tags": [ + "fips" + ] + }, + { + "hostname": "amazoncodewhispererstreamingservice-fips.{region}.api.aws", + "tags": [ + "dualstack", + "fips" + ] + }, + { + "hostname": "amazoncodewhispererstreamingservice.{region}.api.aws", + "tags": [ + "dualstack" + ] + } + ], + }, +}; +export const defaultRegionInfoProvider = async (region, options) => getRegionInfo(region, { + ...options, + signingService: "amazoncodewhispererstreamingservice", + regionHash, + partitionHash, +}); diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/extensionConfiguration.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/extensionConfiguration.js new file mode 100644 index 00000000000..cb0ff5c3b54 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-es/extensionConfiguration.js @@ -0,0 +1 @@ +export {}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/index.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/index.js new file mode 100644 index 00000000000..4bab106103b --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-es/index.js @@ -0,0 +1,5 @@ +export * from "./CodeWhispererStreamingClient"; +export * from "./CodeWhispererStreaming"; +export * from "./commands"; +export * from "./models"; +export { CodeWhispererStreamingServiceException } from "./models/CodeWhispererStreamingServiceException"; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/models/CodeWhispererStreamingServiceException.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/models/CodeWhispererStreamingServiceException.js new file mode 100644 index 00000000000..eb12b433fc6 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-es/models/CodeWhispererStreamingServiceException.js @@ -0,0 +1,8 @@ +import { ServiceException as __ServiceException, } from "@smithy/smithy-client"; +export { __ServiceException }; +export class CodeWhispererStreamingServiceException extends __ServiceException { + constructor(options) { + super(options); + Object.setPrototypeOf(this, CodeWhispererStreamingServiceException.prototype); + } +} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/models/index.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/models/index.js new file mode 100644 index 00000000000..09c5d6e09b8 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-es/models/index.js @@ -0,0 +1 @@ +export * from "./models_0"; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/models/models_0.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/models/models_0.js new file mode 100644 index 00000000000..d770c29c0c3 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-es/models/models_0.js @@ -0,0 +1,523 @@ +import { CodeWhispererStreamingServiceException as __BaseException } from "./CodeWhispererStreamingServiceException"; +import { SENSITIVE_STRING, } from "@smithy/smithy-client"; +export const AccessDeniedExceptionReason = { + UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS: "UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS", +}; +export class AccessDeniedException extends __BaseException { + constructor(opts) { + super({ + name: "AccessDeniedException", + $fault: "client", + ...opts + }); + this.name = "AccessDeniedException"; + this.$fault = "client"; + Object.setPrototypeOf(this, AccessDeniedException.prototype); + this.reason = opts.reason; + } +} +export class InternalServerException extends __BaseException { + constructor(opts) { + super({ + name: "InternalServerException", + $fault: "server", + ...opts + }); + this.name = "InternalServerException"; + this.$fault = "server"; + this.$retryable = {}; + Object.setPrototypeOf(this, InternalServerException.prototype); + } +} +export class ResourceNotFoundException extends __BaseException { + constructor(opts) { + super({ + name: "ResourceNotFoundException", + $fault: "client", + ...opts + }); + this.name = "ResourceNotFoundException"; + this.$fault = "client"; + Object.setPrototypeOf(this, ResourceNotFoundException.prototype); + } +} +export class ThrottlingException extends __BaseException { + constructor(opts) { + super({ + name: "ThrottlingException", + $fault: "client", + ...opts + }); + this.name = "ThrottlingException"; + this.$fault = "client"; + this.$retryable = { + throttling: true, + }; + Object.setPrototypeOf(this, ThrottlingException.prototype); + } +} +export const ValidationExceptionReason = { + CONTENT_LENGTH_EXCEEDS_THRESHOLD: "CONTENT_LENGTH_EXCEEDS_THRESHOLD", + INVALID_CONVERSATION_ID: "INVALID_CONVERSATION_ID", +}; +export class ValidationException extends __BaseException { + constructor(opts) { + super({ + name: "ValidationException", + $fault: "client", + ...opts + }); + this.name = "ValidationException"; + this.$fault = "client"; + Object.setPrototypeOf(this, ValidationException.prototype); + this.reason = opts.reason; + } +} +export const AppStudioStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.namespace && { namespace: SENSITIVE_STRING + }), + ...(obj.propertyName && { propertyName: SENSITIVE_STRING + }), + ...(obj.propertyValue && { propertyValue: SENSITIVE_STRING + }), + ...(obj.propertyContext && { propertyContext: SENSITIVE_STRING + }), +}); +export const AssistantResponseEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: SENSITIVE_STRING + }), +}); +export const UserIntent = { + APPLY_COMMON_BEST_PRACTICES: "APPLY_COMMON_BEST_PRACTICES", + CITE_SOURCES: "CITE_SOURCES", + EXPLAIN_CODE_SELECTION: "EXPLAIN_CODE_SELECTION", + EXPLAIN_LINE_BY_LINE: "EXPLAIN_LINE_BY_LINE", + GENERATE_CLOUDFORMATION_TEMPLATE: "GENERATE_CLOUDFORMATION_TEMPLATE", + GENERATE_UNIT_TESTS: "GENERATE_UNIT_TESTS", + IMPROVE_CODE: "IMPROVE_CODE", + SHOW_EXAMPLES: "SHOW_EXAMPLES", + SUGGEST_ALTERNATE_IMPLEMENTATION: "SUGGEST_ALTERNATE_IMPLEMENTATION", +}; +export const FollowupPromptFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: SENSITIVE_STRING + }), +}); +export const SupplementaryWebLinkFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.url && { url: SENSITIVE_STRING + }), + ...(obj.title && { title: SENSITIVE_STRING + }), + ...(obj.snippet && { snippet: SENSITIVE_STRING + }), +}); +export const AssistantResponseMessageFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: SENSITIVE_STRING + }), + ...(obj.supplementaryWebLinks && { supplementaryWebLinks: obj.supplementaryWebLinks.map(item => SupplementaryWebLinkFilterSensitiveLog(item)) + }), + ...(obj.followupPrompt && { followupPrompt: FollowupPromptFilterSensitiveLog(obj.followupPrompt) + }), +}); +export class ConflictException extends __BaseException { + constructor(opts) { + super({ + name: "ConflictException", + $fault: "client", + ...opts + }); + this.name = "ConflictException"; + this.$fault = "client"; + Object.setPrototypeOf(this, ConflictException.prototype); + } +} +export const ContentChecksumType = { + SHA_256: "SHA_256", +}; +export const BinaryMetadataEventFilterSensitiveLog = (obj) => ({ + ...obj, +}); +export const BinaryPayloadEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.bytes && { bytes: SENSITIVE_STRING + }), +}); +export const DiagnosticSeverity = { + ERROR: "ERROR", + HINT: "HINT", + INFORMATION: "INFORMATION", + WARNING: "WARNING", +}; +export const RuntimeDiagnosticFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.source && { source: SENSITIVE_STRING + }), + ...(obj.message && { message: SENSITIVE_STRING + }), +}); +export const SymbolType = { + DECLARATION: "DECLARATION", + USAGE: "USAGE", +}; +export const TextDocumentFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.relativeFilePath && { relativeFilePath: SENSITIVE_STRING + }), + ...(obj.text && { text: SENSITIVE_STRING + }), +}); +export const TextDocumentDiagnosticFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.document && { document: TextDocumentFilterSensitiveLog(obj.document) + }), + ...(obj.source && { source: SENSITIVE_STRING + }), + ...(obj.message && { message: SENSITIVE_STRING + }), +}); +export var Diagnostic; +(function (Diagnostic) { + Diagnostic.visit = (value, visitor) => { + if (value.textDocumentDiagnostic !== undefined) + return visitor.textDocumentDiagnostic(value.textDocumentDiagnostic); + if (value.runtimeDiagnostic !== undefined) + return visitor.runtimeDiagnostic(value.runtimeDiagnostic); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(Diagnostic || (Diagnostic = {})); +export const DiagnosticFilterSensitiveLog = (obj) => { + if (obj.textDocumentDiagnostic !== undefined) + return { textDocumentDiagnostic: TextDocumentDiagnosticFilterSensitiveLog(obj.textDocumentDiagnostic) + }; + if (obj.runtimeDiagnostic !== undefined) + return { runtimeDiagnostic: RuntimeDiagnosticFilterSensitiveLog(obj.runtimeDiagnostic) + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +export var CursorState; +(function (CursorState) { + CursorState.visit = (value, visitor) => { + if (value.position !== undefined) + return visitor.position(value.position); + if (value.range !== undefined) + return visitor.range(value.range); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(CursorState || (CursorState = {})); +export const RelevantTextDocumentFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.relativeFilePath && { relativeFilePath: SENSITIVE_STRING + }), + ...(obj.text && { text: SENSITIVE_STRING + }), +}); +export const EditorStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.document && { document: TextDocumentFilterSensitiveLog(obj.document) + }), + ...(obj.cursorState && { cursorState: obj.cursorState + }), + ...(obj.relevantDocuments && { relevantDocuments: obj.relevantDocuments.map(item => RelevantTextDocumentFilterSensitiveLog(item)) + }), +}); +export const EnvironmentVariableFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.key && { key: SENSITIVE_STRING + }), + ...(obj.value && { value: SENSITIVE_STRING + }), +}); +export const EnvStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.currentWorkingDirectory && { currentWorkingDirectory: SENSITIVE_STRING + }), + ...(obj.environmentVariables && { environmentVariables: obj.environmentVariables.map(item => EnvironmentVariableFilterSensitiveLog(item)) + }), +}); +export const GitStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.status && { status: SENSITIVE_STRING + }), +}); +export const ShellHistoryEntryFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.command && { command: SENSITIVE_STRING + }), + ...(obj.directory && { directory: SENSITIVE_STRING + }), + ...(obj.stdout && { stdout: SENSITIVE_STRING + }), + ...(obj.stderr && { stderr: SENSITIVE_STRING + }), +}); +export const ShellStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.shellHistory && { shellHistory: obj.shellHistory.map(item => ShellHistoryEntryFilterSensitiveLog(item)) + }), +}); +export const UserInputMessageContextFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.editorState && { editorState: EditorStateFilterSensitiveLog(obj.editorState) + }), + ...(obj.shellState && { shellState: ShellStateFilterSensitiveLog(obj.shellState) + }), + ...(obj.gitState && { gitState: GitStateFilterSensitiveLog(obj.gitState) + }), + ...(obj.envState && { envState: EnvStateFilterSensitiveLog(obj.envState) + }), + ...(obj.appStudioContext && { appStudioContext: AppStudioStateFilterSensitiveLog(obj.appStudioContext) + }), + ...(obj.diagnostic && { diagnostic: DiagnosticFilterSensitiveLog(obj.diagnostic) + }), +}); +export const UserInputMessageFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: SENSITIVE_STRING + }), + ...(obj.userInputMessageContext && { userInputMessageContext: UserInputMessageContextFilterSensitiveLog(obj.userInputMessageContext) + }), +}); +export var ChatMessage; +(function (ChatMessage) { + ChatMessage.visit = (value, visitor) => { + if (value.userInputMessage !== undefined) + return visitor.userInputMessage(value.userInputMessage); + if (value.assistantResponseMessage !== undefined) + return visitor.assistantResponseMessage(value.assistantResponseMessage); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(ChatMessage || (ChatMessage = {})); +export const ChatMessageFilterSensitiveLog = (obj) => { + if (obj.userInputMessage !== undefined) + return { userInputMessage: UserInputMessageFilterSensitiveLog(obj.userInputMessage) + }; + if (obj.assistantResponseMessage !== undefined) + return { assistantResponseMessage: AssistantResponseMessageFilterSensitiveLog(obj.assistantResponseMessage) + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +export const CodeEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.content && { content: SENSITIVE_STRING + }), +}); +export const FollowupPromptEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.followupPrompt && { followupPrompt: FollowupPromptFilterSensitiveLog(obj.followupPrompt) + }), +}); +export const IntentType = { + GLUE_SENSEI: "GLUE_SENSEI", + RESOURCE_DATA: "RESOURCE_DATA", + SUPPORT: "SUPPORT", +}; +export var IntentDataType; +(function (IntentDataType) { + IntentDataType.visit = (value, visitor) => { + if (value.string !== undefined) + return visitor.string(value.string); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(IntentDataType || (IntentDataType = {})); +export const IntentsEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.intents && { intents: SENSITIVE_STRING + }), +}); +export const InvalidStateReason = { + INVALID_TASK_ASSIST_PLAN: "INVALID_TASK_ASSIST_PLAN", +}; +export const SupplementaryWebLinksEventFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.supplementaryWebLinks && { supplementaryWebLinks: obj.supplementaryWebLinks.map(item => SupplementaryWebLinkFilterSensitiveLog(item)) + }), +}); +export var ChatResponseStream; +(function (ChatResponseStream) { + ChatResponseStream.visit = (value, visitor) => { + if (value.messageMetadataEvent !== undefined) + return visitor.messageMetadataEvent(value.messageMetadataEvent); + if (value.assistantResponseEvent !== undefined) + return visitor.assistantResponseEvent(value.assistantResponseEvent); + if (value.codeReferenceEvent !== undefined) + return visitor.codeReferenceEvent(value.codeReferenceEvent); + if (value.supplementaryWebLinksEvent !== undefined) + return visitor.supplementaryWebLinksEvent(value.supplementaryWebLinksEvent); + if (value.followupPromptEvent !== undefined) + return visitor.followupPromptEvent(value.followupPromptEvent); + if (value.codeEvent !== undefined) + return visitor.codeEvent(value.codeEvent); + if (value.intentsEvent !== undefined) + return visitor.intentsEvent(value.intentsEvent); + if (value.invalidStateEvent !== undefined) + return visitor.invalidStateEvent(value.invalidStateEvent); + if (value.error !== undefined) + return visitor.error(value.error); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(ChatResponseStream || (ChatResponseStream = {})); +export const ChatResponseStreamFilterSensitiveLog = (obj) => { + if (obj.messageMetadataEvent !== undefined) + return { messageMetadataEvent: obj.messageMetadataEvent + }; + if (obj.assistantResponseEvent !== undefined) + return { assistantResponseEvent: AssistantResponseEventFilterSensitiveLog(obj.assistantResponseEvent) + }; + if (obj.codeReferenceEvent !== undefined) + return { codeReferenceEvent: obj.codeReferenceEvent + }; + if (obj.supplementaryWebLinksEvent !== undefined) + return { supplementaryWebLinksEvent: SupplementaryWebLinksEventFilterSensitiveLog(obj.supplementaryWebLinksEvent) + }; + if (obj.followupPromptEvent !== undefined) + return { followupPromptEvent: FollowupPromptEventFilterSensitiveLog(obj.followupPromptEvent) + }; + if (obj.codeEvent !== undefined) + return { codeEvent: CodeEventFilterSensitiveLog(obj.codeEvent) + }; + if (obj.intentsEvent !== undefined) + return { intentsEvent: IntentsEventFilterSensitiveLog(obj.intentsEvent) + }; + if (obj.invalidStateEvent !== undefined) + return { invalidStateEvent: obj.invalidStateEvent + }; + if (obj.error !== undefined) + return { error: obj.error + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +export const ChatTriggerType = { + DIAGNOSTIC: "DIAGNOSTIC", + MANUAL: "MANUAL", +}; +export const ContextTruncationScheme = { + ANALYSIS: "ANALYSIS", + GUMBY: "GUMBY", +}; +export const ConversationStateFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.history && { history: obj.history.map(item => ChatMessageFilterSensitiveLog(item)) + }), + ...(obj.currentMessage && { currentMessage: ChatMessageFilterSensitiveLog(obj.currentMessage) + }), +}); +export class DryRunOperationException extends __BaseException { + constructor(opts) { + super({ + name: "DryRunOperationException", + $fault: "client", + ...opts + }); + this.name = "DryRunOperationException"; + this.$fault = "client"; + Object.setPrototypeOf(this, DryRunOperationException.prototype); + this.responseCode = opts.responseCode; + } +} +export const TransformationDownloadArtifactType = { + CLIENT_INSTRUCTIONS: "ClientInstructions", + LOGS: "Logs", +}; +export var ExportContext; +(function (ExportContext) { + ExportContext.visit = (value, visitor) => { + if (value.transformationExportContext !== undefined) + return visitor.transformationExportContext(value.transformationExportContext); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(ExportContext || (ExportContext = {})); +export const ExportIntent = { + TASK_ASSIST: "TASK_ASSIST", + TRANSFORMATION: "TRANSFORMATION", +}; +export var ResultArchiveStream; +(function (ResultArchiveStream) { + ResultArchiveStream.visit = (value, visitor) => { + if (value.binaryMetadataEvent !== undefined) + return visitor.binaryMetadataEvent(value.binaryMetadataEvent); + if (value.binaryPayloadEvent !== undefined) + return visitor.binaryPayloadEvent(value.binaryPayloadEvent); + if (value.internalServerException !== undefined) + return visitor.internalServerException(value.internalServerException); + return visitor._(value.$unknown[0], value.$unknown[1]); + }; +})(ResultArchiveStream || (ResultArchiveStream = {})); +export const ResultArchiveStreamFilterSensitiveLog = (obj) => { + if (obj.binaryMetadataEvent !== undefined) + return { binaryMetadataEvent: SENSITIVE_STRING + }; + if (obj.binaryPayloadEvent !== undefined) + return { binaryPayloadEvent: SENSITIVE_STRING + }; + if (obj.internalServerException !== undefined) + return { internalServerException: obj.internalServerException + }; + if (obj.$unknown !== undefined) + return { [obj.$unknown[0]]: 'UNKNOWN' }; +}; +export class ServiceQuotaExceededException extends __BaseException { + constructor(opts) { + super({ + name: "ServiceQuotaExceededException", + $fault: "client", + ...opts + }); + this.name = "ServiceQuotaExceededException"; + this.$fault = "client"; + Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype); + } +} +export const GenerateAssistantResponseRequestFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.conversationState && { conversationState: ConversationStateFilterSensitiveLog(obj.conversationState) + }), +}); +export const GenerateAssistantResponseResponseFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.generateAssistantResponseResponse && { generateAssistantResponseResponse: 'STREAMING_CONTENT' + }), +}); +export const ExportResultArchiveResponseFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.body && { body: 'STREAMING_CONTENT' + }), +}); +export const Origin = { + CHATBOT: "CHATBOT", + CONSOLE: "CONSOLE", + DOCUMENTATION: "DOCUMENTATION", + IDE: "IDE", + MARKETING: "MARKETING", + MD: "MD", + MOBILE: "MOBILE", + SERVICE_INTERNAL: "SERVICE_INTERNAL", + UNIFIED_SEARCH: "UNIFIED_SEARCH", + UNKNOWN: "UNKNOWN", +}; +export const ConverseStreamRequestFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.conversationState && { conversationState: ConversationStateFilterSensitiveLog(obj.conversationState) + }), +}); +export const ConverseStreamResponseFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.converseStreamResponse && { converseStreamResponse: 'STREAMING_CONTENT' + }), +}); +export const GenerateTaskAssistPlanRequestFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.conversationState && { conversationState: ConversationStateFilterSensitiveLog(obj.conversationState) + }), +}); +export const GenerateTaskAssistPlanResponseFilterSensitiveLog = (obj) => ({ + ...obj, + ...(obj.planningResponseStream && { planningResponseStream: 'STREAMING_CONTENT' + }), +}); diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/protocols/Aws_restJson1.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/protocols/Aws_restJson1.js new file mode 100644 index 00000000000..04e737f87cc --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-es/protocols/Aws_restJson1.js @@ -0,0 +1,579 @@ +import { CodeWhispererStreamingServiceException as __BaseException } from "../models/CodeWhispererStreamingServiceException"; +import { AccessDeniedException, ConflictException, DryRunOperationException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/models_0"; +import { HttpRequest as __HttpRequest, } from "@smithy/protocol-http"; +import { decorateServiceException as __decorateServiceException, expectString as __expectString, _json, collectBody, map, take, withBaseException, } from "@smithy/smithy-client"; +export const se_ExportResultArchiveCommand = async (input, context) => { + const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); + const headers = { + 'content-type': 'application/json', + }; + let resolvedPath = `${basePath?.endsWith('/') ? basePath.slice(0, -1) : (basePath || '')}` + "/exportResultArchive"; + let body; + body = JSON.stringify(take(input, { + 'exportContext': _ => _json(_), + 'exportId': [], + 'exportIntent': [], + })); + return new __HttpRequest({ + protocol, + hostname, + port, + method: "POST", + headers, + path: resolvedPath, + body, + }); +}; +export const se_GenerateAssistantResponseCommand = async (input, context) => { + const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); + const headers = { + 'content-type': 'application/json', + }; + let resolvedPath = `${basePath?.endsWith('/') ? basePath.slice(0, -1) : (basePath || '')}` + "/generateAssistantResponse"; + let body; + body = JSON.stringify(take(input, { + 'conversationState': _ => _json(_), + 'profileArn': [], + })); + return new __HttpRequest({ + protocol, + hostname, + port, + method: "POST", + headers, + path: resolvedPath, + body, + }); +}; +export const se_GenerateTaskAssistPlanCommand = async (input, context) => { + const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); + const headers = { + 'content-type': 'application/json', + }; + let resolvedPath = `${basePath?.endsWith('/') ? basePath.slice(0, -1) : (basePath || '')}` + "/generateTaskAssistPlan"; + let body; + body = JSON.stringify(take(input, { + 'conversationState': _ => _json(_), + 'workspaceState': _ => _json(_), + })); + return new __HttpRequest({ + protocol, + hostname, + port, + method: "POST", + headers, + path: resolvedPath, + body, + }); +}; +export const se_ConverseStreamCommand = async (input, context) => { + const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); + const headers = { + 'content-type': 'application/json', + }; + let resolvedPath = `${basePath?.endsWith('/') ? basePath.slice(0, -1) : (basePath || '')}` + "/ConverseStream"; + let body; + body = JSON.stringify(take(input, { + 'conversationState': _ => _json(_), + 'dryRun': [], + 'profileArn': [], + 'source': [], + })); + return new __HttpRequest({ + protocol, + hostname, + port, + method: "POST", + headers, + path: resolvedPath, + body, + }); +}; +export const de_ExportResultArchiveCommand = async (output, context) => { + if (output.statusCode !== 200 && output.statusCode >= 300) { + return de_ExportResultArchiveCommandError(output, context); + } + const contents = map({ + $metadata: deserializeMetadata(output), + }); + const data = output.body; + contents.body = de_ResultArchiveStream(data, context); + return contents; +}; +const de_ExportResultArchiveCommandError = async (output, context) => { + const parsedOutput = { + ...output, + body: await parseErrorBody(output.body, context) + }; + const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); + switch (errorCode) { + case "AccessDeniedException": + case "com.amazon.aws.codewhisperer#AccessDeniedException": + throw await de_AccessDeniedExceptionRes(parsedOutput, context); + case "ConflictException": + case "com.amazon.aws.codewhisperer#ConflictException": + throw await de_ConflictExceptionRes(parsedOutput, context); + case "InternalServerException": + case "com.amazon.aws.codewhisperer#InternalServerException": + throw await de_InternalServerExceptionRes(parsedOutput, context); + case "ResourceNotFoundException": + case "com.amazon.aws.codewhisperer#ResourceNotFoundException": + throw await de_ResourceNotFoundExceptionRes(parsedOutput, context); + case "ThrottlingException": + case "com.amazon.aws.codewhisperer#ThrottlingException": + throw await de_ThrottlingExceptionRes(parsedOutput, context); + case "ValidationException": + case "com.amazon.aws.codewhisperer#ValidationException": + throw await de_ValidationExceptionRes(parsedOutput, context); + default: + const parsedBody = parsedOutput.body; + return throwDefaultError({ + output, + parsedBody, + errorCode + }); + } +}; +export const de_GenerateAssistantResponseCommand = async (output, context) => { + if (output.statusCode !== 200 && output.statusCode >= 300) { + return de_GenerateAssistantResponseCommandError(output, context); + } + const contents = map({ + $metadata: deserializeMetadata(output), + conversationId: [, output.headers['x-amzn-codewhisperer-conversation-id']], + }); + const data = output.body; + contents.generateAssistantResponseResponse = de_ChatResponseStream(data, context); + return contents; +}; +const de_GenerateAssistantResponseCommandError = async (output, context) => { + const parsedOutput = { + ...output, + body: await parseErrorBody(output.body, context) + }; + const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); + switch (errorCode) { + case "AccessDeniedException": + case "com.amazon.aws.codewhisperer#AccessDeniedException": + throw await de_AccessDeniedExceptionRes(parsedOutput, context); + case "InternalServerException": + case "com.amazon.aws.codewhisperer#InternalServerException": + throw await de_InternalServerExceptionRes(parsedOutput, context); + case "ThrottlingException": + case "com.amazon.aws.codewhisperer#ThrottlingException": + throw await de_ThrottlingExceptionRes(parsedOutput, context); + case "ValidationException": + case "com.amazon.aws.codewhisperer#ValidationException": + throw await de_ValidationExceptionRes(parsedOutput, context); + default: + const parsedBody = parsedOutput.body; + return throwDefaultError({ + output, + parsedBody, + errorCode + }); + } +}; +export const de_GenerateTaskAssistPlanCommand = async (output, context) => { + if (output.statusCode !== 200 && output.statusCode >= 300) { + return de_GenerateTaskAssistPlanCommandError(output, context); + } + const contents = map({ + $metadata: deserializeMetadata(output), + }); + const data = output.body; + contents.planningResponseStream = de_ChatResponseStream(data, context); + return contents; +}; +const de_GenerateTaskAssistPlanCommandError = async (output, context) => { + const parsedOutput = { + ...output, + body: await parseErrorBody(output.body, context) + }; + const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); + switch (errorCode) { + case "AccessDeniedException": + case "com.amazon.aws.codewhisperer#AccessDeniedException": + throw await de_AccessDeniedExceptionRes(parsedOutput, context); + case "ConflictException": + case "com.amazon.aws.codewhisperer#ConflictException": + throw await de_ConflictExceptionRes(parsedOutput, context); + case "InternalServerException": + case "com.amazon.aws.codewhisperer#InternalServerException": + throw await de_InternalServerExceptionRes(parsedOutput, context); + case "ResourceNotFoundException": + case "com.amazon.aws.codewhisperer#ResourceNotFoundException": + throw await de_ResourceNotFoundExceptionRes(parsedOutput, context); + case "ServiceQuotaExceededException": + case "com.amazon.aws.codewhisperer#ServiceQuotaExceededException": + throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context); + case "ThrottlingException": + case "com.amazon.aws.codewhisperer#ThrottlingException": + throw await de_ThrottlingExceptionRes(parsedOutput, context); + case "ValidationException": + case "com.amazon.aws.codewhisperer#ValidationException": + throw await de_ValidationExceptionRes(parsedOutput, context); + default: + const parsedBody = parsedOutput.body; + return throwDefaultError({ + output, + parsedBody, + errorCode + }); + } +}; +export const de_ConverseStreamCommand = async (output, context) => { + if (output.statusCode !== 200 && output.statusCode >= 300) { + return de_ConverseStreamCommandError(output, context); + } + const contents = map({ + $metadata: deserializeMetadata(output), + conversationId: [, output.headers['x-amzn-q-conversation-id']], + utteranceId: [, output.headers['x-amzn-q-utterance-id']], + }); + const data = output.body; + contents.converseStreamResponse = de_ChatResponseStream(data, context); + return contents; +}; +const de_ConverseStreamCommandError = async (output, context) => { + const parsedOutput = { + ...output, + body: await parseErrorBody(output.body, context) + }; + const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); + switch (errorCode) { + case "AccessDeniedException": + case "com.amazon.aws.codewhisperer#AccessDeniedException": + throw await de_AccessDeniedExceptionRes(parsedOutput, context); + case "ConflictException": + case "com.amazon.aws.codewhisperer#ConflictException": + throw await de_ConflictExceptionRes(parsedOutput, context); + case "DryRunOperationException": + case "com.amazon.aws.codewhisperer#DryRunOperationException": + throw await de_DryRunOperationExceptionRes(parsedOutput, context); + case "InternalServerException": + case "com.amazon.aws.codewhisperer#InternalServerException": + throw await de_InternalServerExceptionRes(parsedOutput, context); + case "ResourceNotFoundException": + case "com.amazon.aws.codewhisperer#ResourceNotFoundException": + throw await de_ResourceNotFoundExceptionRes(parsedOutput, context); + case "ServiceQuotaExceededException": + case "com.amazon.aws.codewhisperer#ServiceQuotaExceededException": + throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context); + case "ThrottlingException": + case "com.amazon.aws.codewhisperer#ThrottlingException": + throw await de_ThrottlingExceptionRes(parsedOutput, context); + case "ValidationException": + case "com.amazon.aws.codewhisperer#ValidationException": + throw await de_ValidationExceptionRes(parsedOutput, context); + default: + const parsedBody = parsedOutput.body; + return throwDefaultError({ + output, + parsedBody, + errorCode + }); + } +}; +const throwDefaultError = withBaseException(__BaseException); +const de_AccessDeniedExceptionRes = async (parsedOutput, context) => { + const contents = map({}); + const data = parsedOutput.body; + const doc = take(data, { + 'message': __expectString, + 'reason': __expectString, + }); + Object.assign(contents, doc); + const exception = new AccessDeniedException({ + $metadata: deserializeMetadata(parsedOutput), + ...contents + }); + return __decorateServiceException(exception, parsedOutput.body); +}; +const de_ConflictExceptionRes = async (parsedOutput, context) => { + const contents = map({}); + const data = parsedOutput.body; + const doc = take(data, { + 'message': __expectString, + }); + Object.assign(contents, doc); + const exception = new ConflictException({ + $metadata: deserializeMetadata(parsedOutput), + ...contents + }); + return __decorateServiceException(exception, parsedOutput.body); +}; +const de_DryRunOperationExceptionRes = async (parsedOutput, context) => { + const contents = map({}); + const data = parsedOutput.body; + const doc = take(data, { + 'message': __expectString, + }); + Object.assign(contents, doc); + const exception = new DryRunOperationException({ + $metadata: deserializeMetadata(parsedOutput), + ...contents + }); + return __decorateServiceException(exception, parsedOutput.body); +}; +const de_InternalServerExceptionRes = async (parsedOutput, context) => { + const contents = map({}); + const data = parsedOutput.body; + const doc = take(data, { + 'message': __expectString, + }); + Object.assign(contents, doc); + const exception = new InternalServerException({ + $metadata: deserializeMetadata(parsedOutput), + ...contents + }); + return __decorateServiceException(exception, parsedOutput.body); +}; +const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => { + const contents = map({}); + const data = parsedOutput.body; + const doc = take(data, { + 'message': __expectString, + }); + Object.assign(contents, doc); + const exception = new ResourceNotFoundException({ + $metadata: deserializeMetadata(parsedOutput), + ...contents + }); + return __decorateServiceException(exception, parsedOutput.body); +}; +const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => { + const contents = map({}); + const data = parsedOutput.body; + const doc = take(data, { + 'message': __expectString, + }); + Object.assign(contents, doc); + const exception = new ServiceQuotaExceededException({ + $metadata: deserializeMetadata(parsedOutput), + ...contents + }); + return __decorateServiceException(exception, parsedOutput.body); +}; +const de_ThrottlingExceptionRes = async (parsedOutput, context) => { + const contents = map({}); + const data = parsedOutput.body; + const doc = take(data, { + 'message': __expectString, + }); + Object.assign(contents, doc); + const exception = new ThrottlingException({ + $metadata: deserializeMetadata(parsedOutput), + ...contents + }); + return __decorateServiceException(exception, parsedOutput.body); +}; +const de_ValidationExceptionRes = async (parsedOutput, context) => { + const contents = map({}); + const data = parsedOutput.body; + const doc = take(data, { + 'message': __expectString, + 'reason': __expectString, + }); + Object.assign(contents, doc); + const exception = new ValidationException({ + $metadata: deserializeMetadata(parsedOutput), + ...contents + }); + return __decorateServiceException(exception, parsedOutput.body); +}; +const de_ChatResponseStream = (output, context) => { + return context.eventStreamMarshaller.deserialize(output, async (event) => { + if (event["messageMetadataEvent"] != null) { + return { + messageMetadataEvent: await de_MessageMetadataEvent_event(event["messageMetadataEvent"], context), + }; + } + if (event["assistantResponseEvent"] != null) { + return { + assistantResponseEvent: await de_AssistantResponseEvent_event(event["assistantResponseEvent"], context), + }; + } + if (event["codeReferenceEvent"] != null) { + return { + codeReferenceEvent: await de_CodeReferenceEvent_event(event["codeReferenceEvent"], context), + }; + } + if (event["supplementaryWebLinksEvent"] != null) { + return { + supplementaryWebLinksEvent: await de_SupplementaryWebLinksEvent_event(event["supplementaryWebLinksEvent"], context), + }; + } + if (event["followupPromptEvent"] != null) { + return { + followupPromptEvent: await de_FollowupPromptEvent_event(event["followupPromptEvent"], context), + }; + } + if (event["codeEvent"] != null) { + return { + codeEvent: await de_CodeEvent_event(event["codeEvent"], context), + }; + } + if (event["intentsEvent"] != null) { + return { + intentsEvent: await de_IntentsEvent_event(event["intentsEvent"], context), + }; + } + if (event["invalidStateEvent"] != null) { + return { + invalidStateEvent: await de_InvalidStateEvent_event(event["invalidStateEvent"], context), + }; + } + if (event["error"] != null) { + return { + error: await de_InternalServerException_event(event["error"], context), + }; + } + return { $unknown: output }; + }); +}; +const de_ResultArchiveStream = (output, context) => { + return context.eventStreamMarshaller.deserialize(output, async (event) => { + if (event["binaryMetadataEvent"] != null) { + return { + binaryMetadataEvent: await de_BinaryMetadataEvent_event(event["binaryMetadataEvent"], context), + }; + } + if (event["binaryPayloadEvent"] != null) { + return { + binaryPayloadEvent: await de_BinaryPayloadEvent_event(event["binaryPayloadEvent"], context), + }; + } + if (event["internalServerException"] != null) { + return { + internalServerException: await de_InternalServerException_event(event["internalServerException"], context), + }; + } + return { $unknown: output }; + }); +}; +const de_AssistantResponseEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; +}; +const de_BinaryMetadataEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; +}; +const de_BinaryPayloadEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, de_BinaryPayloadEvent(data, context)); + return contents; +}; +const de_CodeEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; +}; +const de_CodeReferenceEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; +}; +const de_FollowupPromptEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; +}; +const de_IntentsEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; +}; +const de_InternalServerException_event = async (output, context) => { + const parsedOutput = { + ...output, + body: await parseBody(output.body, context) + }; + return de_InternalServerExceptionRes(parsedOutput, context); +}; +const de_InvalidStateEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; +}; +const de_MessageMetadataEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; +}; +const de_SupplementaryWebLinksEvent_event = async (output, context) => { + const contents = {}; + const data = await parseBody(output.body, context); + Object.assign(contents, _json(data)); + return contents; +}; +const de_BinaryPayloadEvent = (output, context) => { + return take(output, { + 'bytes': context.base64Decoder, + }); +}; +const deserializeMetadata = (output) => ({ + httpStatusCode: output.statusCode, + requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"], + extendedRequestId: output.headers["x-amz-id-2"], + cfId: output.headers["x-amz-cf-id"], +}); +const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then(body => context.utf8Encoder(body)); +const isSerializableHeaderValue = (value) => value !== undefined && + value !== null && + value !== "" && + (!Object.getOwnPropertyNames(value).includes("length") || + value.length != 0) && + (!Object.getOwnPropertyNames(value).includes("size") || value.size != 0); +const parseBody = (streamBody, context) => collectBodyString(streamBody, context).then(encoded => { + if (encoded.length) { + return JSON.parse(encoded); + } + return {}; +}); +const parseErrorBody = async (errorBody, context) => { + const value = await parseBody(errorBody, context); + value.message = value.message ?? value.Message; + return value; +}; +const loadRestJsonErrorCode = (output, data) => { + const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase()); + const sanitizeErrorCode = (rawValue) => { + let cleanValue = rawValue; + if (typeof cleanValue === "number") { + cleanValue = cleanValue.toString(); + } + if (cleanValue.indexOf(",") >= 0) { + cleanValue = cleanValue.split(",")[0]; + } + if (cleanValue.indexOf(":") >= 0) { + cleanValue = cleanValue.split(":")[0]; + } + if (cleanValue.indexOf("#") >= 0) { + cleanValue = cleanValue.split("#")[1]; + } + return cleanValue; + }; + const headerKey = findKey(output.headers, "x-amzn-errortype"); + if (headerKey !== undefined) { + return sanitizeErrorCode(output.headers[headerKey]); + } + if (data.code !== undefined) { + return sanitizeErrorCode(data.code); + } + if (data["__type"] !== undefined) { + return sanitizeErrorCode(data["__type"]); + } +}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.browser.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.browser.js new file mode 100644 index 00000000000..d1fc6189c09 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.browser.js @@ -0,0 +1,32 @@ +import packageInfo from "../package.json"; +import { Sha256 } from "@aws-crypto/sha256-browser"; +import { defaultUserAgent } from "@aws-sdk/util-user-agent-browser"; +import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, } from "@smithy/config-resolver"; +import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-browser"; +import { FetchHttpHandler as RequestHandler, streamCollector, } from "@smithy/fetch-http-handler"; +import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE, } from "@smithy/util-retry"; +import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +export const getRuntimeConfig = (config) => { + const defaultsMode = resolveDefaultsModeConfig(config); + const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode); + const clientSharedValues = getSharedRuntimeConfig(config); + return { + ...clientSharedValues, + ...config, + runtime: "browser", + defaultsMode, + bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength, + defaultUserAgentProvider: config?.defaultUserAgentProvider ?? defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), + eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventStreamSerdeProvider, + maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS, + requestHandler: config?.requestHandler ?? new RequestHandler(defaultConfigProvider), + retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE), + sha256: config?.sha256 ?? Sha256, + streamCollector: config?.streamCollector ?? streamCollector, + useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)), + useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)), + }; +}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.js new file mode 100644 index 00000000000..238f6e92bf2 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.js @@ -0,0 +1,36 @@ +import packageInfo from "../package.json"; +import { defaultUserAgent } from "@aws-sdk/util-user-agent-node"; +import { NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver"; +import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-node"; +import { Hash } from "@smithy/hash-node"; +import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@smithy/middleware-retry"; +import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; +import { NodeHttpHandler as RequestHandler, streamCollector, } from "@smithy/node-http-handler"; +import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; +import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; +import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +export const getRuntimeConfig = (config) => { + emitWarningIfUnsupportedVersion(process.version); + const defaultsMode = resolveDefaultsModeConfig(config); + const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode); + const clientSharedValues = getSharedRuntimeConfig(config); + return { + ...clientSharedValues, + ...config, + runtime: "node", + defaultsMode, + bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength, + defaultUserAgentProvider: config?.defaultUserAgentProvider ?? defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), + eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventStreamSerdeProvider, + maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS), + requestHandler: config?.requestHandler ?? new RequestHandler(defaultConfigProvider), + retryMode: config?.retryMode ?? loadNodeConfig({ ...NODE_RETRY_MODE_CONFIG_OPTIONS, default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE, }), + sha256: config?.sha256 ?? Hash.bind(null, "sha256"), + streamCollector: config?.streamCollector ?? streamCollector, + useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS), + useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS), + }; +}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.native.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.native.js new file mode 100644 index 00000000000..0b546952826 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.native.js @@ -0,0 +1,11 @@ +import { Sha256 } from "@aws-crypto/sha256-js"; +import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; +export const getRuntimeConfig = (config) => { + const browserDefaults = getBrowserRuntimeConfig(config); + return { + ...browserDefaults, + ...config, + runtime: "react-native", + sha256: config?.sha256 ?? Sha256, + }; +}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.shared.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.shared.js new file mode 100644 index 00000000000..a610ede0b28 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.shared.js @@ -0,0 +1,18 @@ +import { defaultRegionInfoProvider } from "./endpoints"; +import { NoOpLogger } from "@smithy/smithy-client"; +import { parseUrl } from "@smithy/url-parser"; +import { fromBase64, toBase64, } from "@smithy/util-base64"; +import { fromUtf8, toUtf8, } from "@smithy/util-utf8"; +export const getRuntimeConfig = (config) => ({ + apiVersion: "2023-11-27", + base64Decoder: config?.base64Decoder ?? fromBase64, + base64Encoder: config?.base64Encoder ?? toBase64, + disableHostPrefix: config?.disableHostPrefix ?? false, + extensions: config?.extensions ?? [], + logger: config?.logger ?? new NoOpLogger(), + regionInfoProvider: config?.regionInfoProvider ?? defaultRegionInfoProvider, + serviceId: config?.serviceId ?? "CodeWhispererStreaming", + urlParser: config?.urlParser ?? parseUrl, + utf8Decoder: config?.utf8Decoder ?? fromUtf8, + utf8Encoder: config?.utf8Encoder ?? toUtf8, +}); diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeExtensions.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeExtensions.js new file mode 100644 index 00000000000..52781fceab4 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeExtensions.js @@ -0,0 +1,18 @@ +import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, } from "@aws-sdk/region-config-resolver"; +import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, } from "@smithy/protocol-http"; +import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, } from "@smithy/smithy-client"; +const asPartial = (t) => t; +export const resolveRuntimeExtensions = (runtimeConfig, extensions) => { + const extensionConfiguration = { + ...asPartial(getAwsRegionExtensionConfiguration(runtimeConfig)), + ...asPartial(getDefaultExtensionConfiguration(runtimeConfig)), + ...asPartial(getHttpHandlerExtensionConfiguration(runtimeConfig)), + }; + extensions.forEach(extension => extension.configure(extensionConfiguration)); + return { + ...runtimeConfig, + ...resolveAwsRegionExtensionConfiguration(extensionConfiguration), + ...resolveDefaultRuntimeConfig(extensionConfiguration), + ...resolveHttpHandlerRuntimeConfig(extensionConfiguration), + }; +}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreaming.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreaming.d.ts new file mode 100644 index 00000000000..10763a425cc --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreaming.d.ts @@ -0,0 +1,37 @@ +import { CodeWhispererStreamingClient } from "./CodeWhispererStreamingClient"; +import { ConverseStreamCommandInput, ConverseStreamCommandOutput } from "./commands/ConverseStreamCommand"; +import { ExportResultArchiveCommandInput, ExportResultArchiveCommandOutput } from "./commands/ExportResultArchiveCommand"; +import { GenerateAssistantResponseCommandInput, GenerateAssistantResponseCommandOutput } from "./commands/GenerateAssistantResponseCommand"; +import { GenerateTaskAssistPlanCommandInput, GenerateTaskAssistPlanCommandOutput } from "./commands/GenerateTaskAssistPlanCommand"; +import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +export interface CodeWhispererStreaming { + /** + * @see {@link ExportResultArchiveCommand} + */ + exportResultArchive(args: ExportResultArchiveCommandInput, options?: __HttpHandlerOptions): Promise; + exportResultArchive(args: ExportResultArchiveCommandInput, cb: (err: any, data?: ExportResultArchiveCommandOutput) => void): void; + exportResultArchive(args: ExportResultArchiveCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportResultArchiveCommandOutput) => void): void; + /** + * @see {@link GenerateAssistantResponseCommand} + */ + generateAssistantResponse(args: GenerateAssistantResponseCommandInput, options?: __HttpHandlerOptions): Promise; + generateAssistantResponse(args: GenerateAssistantResponseCommandInput, cb: (err: any, data?: GenerateAssistantResponseCommandOutput) => void): void; + generateAssistantResponse(args: GenerateAssistantResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GenerateAssistantResponseCommandOutput) => void): void; + /** + * @see {@link GenerateTaskAssistPlanCommand} + */ + generateTaskAssistPlan(args: GenerateTaskAssistPlanCommandInput, options?: __HttpHandlerOptions): Promise; + generateTaskAssistPlan(args: GenerateTaskAssistPlanCommandInput, cb: (err: any, data?: GenerateTaskAssistPlanCommandOutput) => void): void; + generateTaskAssistPlan(args: GenerateTaskAssistPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GenerateTaskAssistPlanCommandOutput) => void): void; + /** + * @see {@link ConverseStreamCommand} + */ + converseStream(args: ConverseStreamCommandInput, options?: __HttpHandlerOptions): Promise; + converseStream(args: ConverseStreamCommandInput, cb: (err: any, data?: ConverseStreamCommandOutput) => void): void; + converseStream(args: ConverseStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConverseStreamCommandOutput) => void): void; +} +/** + * @public + */ +export declare class CodeWhispererStreaming extends CodeWhispererStreamingClient implements CodeWhispererStreaming { +} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreamingClient.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreamingClient.d.ts new file mode 100644 index 00000000000..981bb143653 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreamingClient.d.ts @@ -0,0 +1,170 @@ +import { ConverseStreamCommandInput, ConverseStreamCommandOutput } from "./commands/ConverseStreamCommand"; +import { ExportResultArchiveCommandInput, ExportResultArchiveCommandOutput } from "./commands/ExportResultArchiveCommand"; +import { GenerateAssistantResponseCommandInput, GenerateAssistantResponseCommandOutput } from "./commands/GenerateAssistantResponseCommand"; +import { GenerateTaskAssistPlanCommandInput, GenerateTaskAssistPlanCommandOutput } from "./commands/GenerateTaskAssistPlanCommand"; +import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header"; +import { TokenInputConfig, TokenResolvedConfig } from "@aws-sdk/middleware-token"; +import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent"; +import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@smithy/config-resolver"; +import { EventStreamSerdeInputConfig, EventStreamSerdeResolvedConfig } from "@smithy/eventstream-serde-config-resolver"; +import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; +import { HttpHandler as __HttpHandler } from "@smithy/protocol-http"; +import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client"; +import { Provider, RegionInfoProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, EventStreamSerdeProvider as __EventStreamSerdeProvider, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types"; +export { __Client }; +/** + * @public + */ +export type ServiceInputTypes = ConverseStreamCommandInput | ExportResultArchiveCommandInput | GenerateAssistantResponseCommandInput | GenerateTaskAssistPlanCommandInput; +/** + * @public + */ +export type ServiceOutputTypes = ConverseStreamCommandOutput | ExportResultArchiveCommandOutput | GenerateAssistantResponseCommandOutput | GenerateTaskAssistPlanCommandOutput; +/** + * @public + */ +export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> { + /** + * The HTTP handler to use. Fetch in browser and Https in Nodejs. + */ + requestHandler?: __HttpHandler; + /** + * A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface + * that computes the SHA-256 HMAC or checksum of a string or binary buffer. + * @internal + */ + sha256?: __ChecksumConstructor | __HashConstructor; + /** + * The function that will be used to convert strings into HTTP endpoints. + * @internal + */ + urlParser?: __UrlParser; + /** + * A function that can calculate the length of a request body. + * @internal + */ + bodyLengthChecker?: __BodyLengthCalculator; + /** + * A function that converts a stream into an array of bytes. + * @internal + */ + streamCollector?: __StreamCollector; + /** + * The function that will be used to convert a base64-encoded string to a byte array. + * @internal + */ + base64Decoder?: __Decoder; + /** + * The function that will be used to convert binary data to a base64-encoded string. + * @internal + */ + base64Encoder?: __Encoder; + /** + * The function that will be used to convert a UTF8-encoded string to a byte array. + * @internal + */ + utf8Decoder?: __Decoder; + /** + * The function that will be used to convert binary data to a UTF-8 encoded string. + * @internal + */ + utf8Encoder?: __Encoder; + /** + * The runtime environment. + * @internal + */ + runtime?: string; + /** + * Disable dynamically changing the endpoint of the client based on the hostPrefix + * trait of an operation. + */ + disableHostPrefix?: boolean; + /** + * Unique service identifier. + * @internal + */ + serviceId?: string; + /** + * Enables IPv6/IPv4 dualstack endpoint. + */ + useDualstackEndpoint?: boolean | __Provider; + /** + * Enables FIPS compatible endpoints. + */ + useFipsEndpoint?: boolean | __Provider; + /** + * Fetch related hostname, signing name or signing region with given region. + * @internal + */ + regionInfoProvider?: RegionInfoProvider; + /** + * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header + * @internal + */ + defaultUserAgentProvider?: Provider<__UserAgent>; + /** + * Value for how many times a request will be made at most in case of retry. + */ + maxAttempts?: number | __Provider; + /** + * Specifies which retry algorithm to use. + * @see https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-util-retry/Enum/RETRY_MODES/ + * + */ + retryMode?: string | __Provider; + /** + * Optional logger for logging debug/info/warn/error. + */ + logger?: __Logger; + /** + * Optional extensions + */ + extensions?: RuntimeExtension[]; + /** + * The function that provides necessary utilities for generating and parsing event stream + */ + eventStreamSerdeProvider?: __EventStreamSerdeProvider; + /** + * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK. + */ + defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>; +} +/** + * @public + */ +export type CodeWhispererStreamingClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & TokenInputConfig & UserAgentInputConfig & EventStreamSerdeInputConfig; +/** + * @public + * + * The configuration interface of CodeWhispererStreamingClient class constructor that set the region, credentials and other options. + */ +export interface CodeWhispererStreamingClientConfig extends CodeWhispererStreamingClientConfigType { +} +/** + * @public + */ +export type CodeWhispererStreamingClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required & RuntimeExtensionsConfig & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & TokenResolvedConfig & UserAgentResolvedConfig & EventStreamSerdeResolvedConfig; +/** + * @public + * + * The resolved configuration interface of CodeWhispererStreamingClient class. This is resolved and normalized from the {@link CodeWhispererStreamingClientConfig | constructor configuration interface}. + */ +export interface CodeWhispererStreamingClientResolvedConfig extends CodeWhispererStreamingClientResolvedConfigType { +} +/** + * @public + */ +export declare class CodeWhispererStreamingClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, CodeWhispererStreamingClientResolvedConfig> { + /** + * The resolved configuration of CodeWhispererStreamingClient class. This is resolved and normalized from the {@link CodeWhispererStreamingClientConfig | constructor configuration interface}. + */ + readonly config: CodeWhispererStreamingClientResolvedConfig; + constructor(...[configuration]: __CheckOptionalClientConfig); + /** + * Destroy underlying resources, like sockets. It's usually not necessary to do this. + * However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed. + * Otherwise, sockets might stay open for quite a long time before the server terminates them. + */ + destroy(): void; +} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/ConverseStreamCommand.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/ConverseStreamCommand.d.ts new file mode 100644 index 00000000000..e6b7c0070f0 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/ConverseStreamCommand.d.ts @@ -0,0 +1,431 @@ +import { CodeWhispererStreamingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeWhispererStreamingClient"; +import { ConverseStreamRequest, ConverseStreamResponse } from "../models/models_0"; +import { Command as $Command } from "@smithy/smithy-client"; +import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@smithy/types"; +/** + * @public + */ +export { __MetadataBearer, $Command }; +/** + * @public + * + * The input for {@link ConverseStreamCommand}. + */ +export interface ConverseStreamCommandInput extends ConverseStreamRequest { +} +/** + * @public + * + * The output of {@link ConverseStreamCommand}. + */ +export interface ConverseStreamCommandOutput extends ConverseStreamResponse, __MetadataBearer { +} +/** + * @public + * + * @example + * Use a bare-bones client and the command you need to make an API call. + * ```javascript + * import { CodeWhispererStreamingClient, ConverseStreamCommand } from "@amzn/codewhisperer-streaming"; // ES Modules import + * // const { CodeWhispererStreamingClient, ConverseStreamCommand } = require("@amzn/codewhisperer-streaming"); // CommonJS import + * const client = new CodeWhispererStreamingClient(config); + * const input = { // ConverseStreamRequest + * conversationState: { // ConversationState + * conversationId: "STRING_VALUE", + * history: [ // ChatHistory + * { // ChatMessage Union: only one key present + * userInputMessage: { // UserInputMessage + * content: "STRING_VALUE", // required + * userInputMessageContext: { // UserInputMessageContext + * editorState: { // EditorState + * document: { // TextDocument + * relativeFilePath: "STRING_VALUE", // required + * programmingLanguage: { // ProgrammingLanguage + * languageName: "STRING_VALUE", // required + * }, + * text: "STRING_VALUE", + * documentSymbols: [ // DocumentSymbols + * { // DocumentSymbol + * name: "STRING_VALUE", // required + * type: "DECLARATION" || "USAGE", // required + * source: "STRING_VALUE", + * }, + * ], + * }, + * cursorState: { // CursorState Union: only one key present + * position: { // Position + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * range: { // Range + * start: { + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * end: { + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * }, + * }, + * relevantDocuments: [ // RelevantDocumentList + * { // RelevantTextDocument + * relativeFilePath: "STRING_VALUE", // required + * programmingLanguage: { + * languageName: "STRING_VALUE", // required + * }, + * text: "STRING_VALUE", + * documentSymbols: [ + * { + * name: "STRING_VALUE", // required + * type: "DECLARATION" || "USAGE", // required + * source: "STRING_VALUE", + * }, + * ], + * }, + * ], + * useRelevantDocuments: true || false, + * }, + * shellState: { // ShellState + * shellName: "STRING_VALUE", // required + * shellHistory: [ // ShellHistory + * { // ShellHistoryEntry + * command: "STRING_VALUE", // required + * directory: "STRING_VALUE", + * exitCode: Number("int"), + * stdout: "STRING_VALUE", + * stderr: "STRING_VALUE", + * }, + * ], + * }, + * gitState: { // GitState + * status: "STRING_VALUE", + * }, + * envState: { // EnvState + * operatingSystem: "STRING_VALUE", + * currentWorkingDirectory: "STRING_VALUE", + * environmentVariables: [ // EnvironmentVariables + * { // EnvironmentVariable + * key: "STRING_VALUE", + * value: "STRING_VALUE", + * }, + * ], + * }, + * appStudioContext: { // AppStudioState + * namespace: "STRING_VALUE", // required + * propertyName: "STRING_VALUE", // required + * propertyValue: "STRING_VALUE", + * propertyContext: "STRING_VALUE", // required + * }, + * diagnostic: { // Diagnostic Union: only one key present + * textDocumentDiagnostic: { // TextDocumentDiagnostic + * document: { + * relativeFilePath: "STRING_VALUE", // required + * programmingLanguage: { + * languageName: "STRING_VALUE", // required + * }, + * text: "STRING_VALUE", + * documentSymbols: [ + * { + * name: "STRING_VALUE", // required + * type: "DECLARATION" || "USAGE", // required + * source: "STRING_VALUE", + * }, + * ], + * }, + * range: { + * start: { + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * end: { + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * }, + * source: "STRING_VALUE", // required + * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required + * message: "STRING_VALUE", // required + * }, + * runtimeDiagnostic: { // RuntimeDiagnostic + * source: "STRING_VALUE", // required + * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required + * message: "STRING_VALUE", // required + * }, + * }, + * consoleState: { // ConsoleState + * region: "STRING_VALUE", + * }, + * userSettings: { // UserSettings + * hasConsentedToCrossRegionCalls: true || false, + * }, + * }, + * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE", + * }, + * assistantResponseMessage: { // AssistantResponseMessage + * messageId: "STRING_VALUE", + * content: "STRING_VALUE", // required + * supplementaryWebLinks: [ // SupplementaryWebLinks + * { // SupplementaryWebLink + * url: "STRING_VALUE", // required + * title: "STRING_VALUE", // required + * snippet: "STRING_VALUE", + * }, + * ], + * references: [ // References + * { // Reference + * licenseName: "STRING_VALUE", + * repository: "STRING_VALUE", + * url: "STRING_VALUE", + * recommendationContentSpan: { // Span + * start: Number("int"), + * end: Number("int"), + * }, + * }, + * ], + * followupPrompt: { // FollowupPrompt + * content: "STRING_VALUE", // required + * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE", + * }, + * }, + * }, + * ], + * currentMessage: {// Union: only one key present + * userInputMessage: { + * content: "STRING_VALUE", // required + * userInputMessageContext: { + * editorState: { + * document: "", + * cursorState: {// Union: only one key present + * position: "", + * range: { + * start: "", // required + * end: "", // required + * }, + * }, + * relevantDocuments: [ + * { + * relativeFilePath: "STRING_VALUE", // required + * programmingLanguage: { + * languageName: "STRING_VALUE", // required + * }, + * text: "STRING_VALUE", + * documentSymbols: [ + * { + * name: "STRING_VALUE", // required + * type: "DECLARATION" || "USAGE", // required + * source: "STRING_VALUE", + * }, + * ], + * }, + * ], + * useRelevantDocuments: true || false, + * }, + * shellState: { + * shellName: "STRING_VALUE", // required + * shellHistory: [ + * { + * command: "STRING_VALUE", // required + * directory: "STRING_VALUE", + * exitCode: Number("int"), + * stdout: "STRING_VALUE", + * stderr: "STRING_VALUE", + * }, + * ], + * }, + * gitState: { + * status: "STRING_VALUE", + * }, + * envState: { + * operatingSystem: "STRING_VALUE", + * currentWorkingDirectory: "STRING_VALUE", + * environmentVariables: [ + * { + * key: "STRING_VALUE", + * value: "STRING_VALUE", + * }, + * ], + * }, + * appStudioContext: { + * namespace: "STRING_VALUE", // required + * propertyName: "STRING_VALUE", // required + * propertyValue: "STRING_VALUE", + * propertyContext: "STRING_VALUE", // required + * }, + * diagnostic: {// Union: only one key present + * textDocumentDiagnostic: { + * document: "", // required + * range: { + * start: "", // required + * end: "", // required + * }, + * source: "STRING_VALUE", // required + * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required + * message: "STRING_VALUE", // required + * }, + * runtimeDiagnostic: { + * source: "STRING_VALUE", // required + * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required + * message: "STRING_VALUE", // required + * }, + * }, + * consoleState: { + * region: "STRING_VALUE", + * }, + * userSettings: { + * hasConsentedToCrossRegionCalls: true || false, + * }, + * }, + * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE", + * }, + * assistantResponseMessage: { + * messageId: "STRING_VALUE", + * content: "STRING_VALUE", // required + * supplementaryWebLinks: [ + * { + * url: "STRING_VALUE", // required + * title: "STRING_VALUE", // required + * snippet: "STRING_VALUE", + * }, + * ], + * references: [ + * { + * licenseName: "STRING_VALUE", + * repository: "STRING_VALUE", + * url: "STRING_VALUE", + * recommendationContentSpan: { + * start: Number("int"), + * end: Number("int"), + * }, + * }, + * ], + * followupPrompt: { + * content: "STRING_VALUE", // required + * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE", + * }, + * }, + * }, + * chatTriggerType: "MANUAL" || "DIAGNOSTIC", // required + * customizationArn: "STRING_VALUE", + * }, + * profileArn: "STRING_VALUE", + * source: "STRING_VALUE", + * dryRun: true || false, + * }; + * const command = new ConverseStreamCommand(input); + * const response = await client.send(command); + * // { // ConverseStreamResponse + * // conversationId: "STRING_VALUE", // required + * // utteranceId: "STRING_VALUE", + * // converseStreamResponse: { // ChatResponseStream Union: only one key present + * // messageMetadataEvent: { // MessageMetadataEvent + * // conversationId: "STRING_VALUE", + * // }, + * // assistantResponseEvent: { // AssistantResponseEvent + * // content: "STRING_VALUE", // required + * // }, + * // codeReferenceEvent: { // CodeReferenceEvent + * // references: [ // References + * // { // Reference + * // licenseName: "STRING_VALUE", + * // repository: "STRING_VALUE", + * // url: "STRING_VALUE", + * // recommendationContentSpan: { // Span + * // start: Number("int"), + * // end: Number("int"), + * // }, + * // }, + * // ], + * // }, + * // supplementaryWebLinksEvent: { // SupplementaryWebLinksEvent + * // supplementaryWebLinks: [ // SupplementaryWebLinks + * // { // SupplementaryWebLink + * // url: "STRING_VALUE", // required + * // title: "STRING_VALUE", // required + * // snippet: "STRING_VALUE", + * // }, + * // ], + * // }, + * // followupPromptEvent: { // FollowupPromptEvent + * // followupPrompt: { // FollowupPrompt + * // content: "STRING_VALUE", // required + * // userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE", + * // }, + * // }, + * // codeEvent: { // CodeEvent + * // content: "STRING_VALUE", // required + * // }, + * // intentsEvent: { // IntentsEvent + * // intents: { // IntentMap + * // "": { // IntentData + * // "": { // IntentDataType Union: only one key present + * // string: "STRING_VALUE", + * // }, + * // }, + * // }, + * // }, + * // invalidStateEvent: { // InvalidStateEvent + * // reason: "INVALID_TASK_ASSIST_PLAN", // required + * // message: "STRING_VALUE", // required + * // }, + * // error: { // InternalServerException + * // message: "STRING_VALUE", // required + * // }, + * // }, + * // }; + * + * ``` + * + * @param ConverseStreamCommandInput - {@link ConverseStreamCommandInput} + * @returns {@link ConverseStreamCommandOutput} + * @see {@link ConverseStreamCommandInput} for command's `input` shape. + * @see {@link ConverseStreamCommandOutput} for command's `response` shape. + * @see {@link CodeWhispererStreamingClientResolvedConfig | config} for CodeWhispererStreamingClient's `config` shape. + * + * @throws {@link InternalServerException} (server fault) + * This exception is thrown when an unexpected error occurred during the processing of a request. + * + * @throws {@link ServiceQuotaExceededException} (client fault) + * This exception is thrown when request was denied due to caller exceeding their usage limits + * + * @throws {@link DryRunOperationException} (client fault) + * This exception is translated to a 204 as it succeeded the IAM Auth. + * + * @throws {@link ThrottlingException} (client fault) + * This exception is thrown when request was denied due to request throttling. + * + * @throws {@link ValidationException} (client fault) + * This exception is thrown when the input fails to satisfy the constraints specified by the service. + * + * @throws {@link ConflictException} (client fault) + * This exception is thrown when the action to perform could not be completed because the resource is in a conflicting state. + * + * @throws {@link ResourceNotFoundException} (client fault) + * This exception is thrown when describing a resource that does not exist. + * + * @throws {@link AccessDeniedException} (client fault) + * This exception is thrown when the user does not have sufficient access to perform this action. + * + * @throws {@link CodeWhispererStreamingServiceException} + *

Base exception class for all service exceptions from CodeWhispererStreaming service.

+ * + */ +export declare class ConverseStreamCommand extends $Command { + readonly input: ConverseStreamCommandInput; + /** + * @public + */ + constructor(input: ConverseStreamCommandInput); + /** + * @internal + */ + resolveMiddleware(clientStack: MiddlewareStack, configuration: CodeWhispererStreamingClientResolvedConfig, options?: __HttpHandlerOptions): Handler; + /** + * @internal + */ + private serialize; + /** + * @internal + */ + private deserialize; +} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/ExportResultArchiveCommand.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/ExportResultArchiveCommand.d.ts new file mode 100644 index 00000000000..87ef0e6f053 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/ExportResultArchiveCommand.d.ts @@ -0,0 +1,109 @@ +import { CodeWhispererStreamingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeWhispererStreamingClient"; +import { ExportResultArchiveRequest, ExportResultArchiveResponse } from "../models/models_0"; +import { Command as $Command } from "@smithy/smithy-client"; +import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@smithy/types"; +/** + * @public + */ +export { __MetadataBearer, $Command }; +/** + * @public + * + * The input for {@link ExportResultArchiveCommand}. + */ +export interface ExportResultArchiveCommandInput extends ExportResultArchiveRequest { +} +/** + * @public + * + * The output of {@link ExportResultArchiveCommand}. + */ +export interface ExportResultArchiveCommandOutput extends ExportResultArchiveResponse, __MetadataBearer { +} +/** + * @public + * API to export operation result as an archive + * @example + * Use a bare-bones client and the command you need to make an API call. + * ```javascript + * import { CodeWhispererStreamingClient, ExportResultArchiveCommand } from "@amzn/codewhisperer-streaming"; // ES Modules import + * // const { CodeWhispererStreamingClient, ExportResultArchiveCommand } = require("@amzn/codewhisperer-streaming"); // CommonJS import + * const client = new CodeWhispererStreamingClient(config); + * const input = { // ExportResultArchiveRequest + * exportId: "STRING_VALUE", // required + * exportIntent: "TRANSFORMATION" || "TASK_ASSIST", // required + * exportContext: { // ExportContext Union: only one key present + * transformationExportContext: { // TransformationExportContext + * downloadArtifactId: "STRING_VALUE", // required + * downloadArtifactType: "ClientInstructions" || "Logs", // required + * }, + * }, + * }; + * const command = new ExportResultArchiveCommand(input); + * const response = await client.send(command); + * // { // ExportResultArchiveResponse + * // body: { // ResultArchiveStream Union: only one key present + * // binaryMetadataEvent: { // BinaryMetadataEvent + * // size: Number("long"), + * // mimeType: "STRING_VALUE", + * // contentChecksum: "STRING_VALUE", + * // contentChecksumType: "SHA_256", + * // }, + * // binaryPayloadEvent: { // BinaryPayloadEvent + * // bytes: "BLOB_VALUE", + * // }, + * // internalServerException: { // InternalServerException + * // message: "STRING_VALUE", // required + * // }, + * // }, + * // }; + * + * ``` + * + * @param ExportResultArchiveCommandInput - {@link ExportResultArchiveCommandInput} + * @returns {@link ExportResultArchiveCommandOutput} + * @see {@link ExportResultArchiveCommandInput} for command's `input` shape. + * @see {@link ExportResultArchiveCommandOutput} for command's `response` shape. + * @see {@link CodeWhispererStreamingClientResolvedConfig | config} for CodeWhispererStreamingClient's `config` shape. + * + * @throws {@link InternalServerException} (server fault) + * This exception is thrown when an unexpected error occurred during the processing of a request. + * + * @throws {@link ThrottlingException} (client fault) + * This exception is thrown when request was denied due to request throttling. + * + * @throws {@link ValidationException} (client fault) + * This exception is thrown when the input fails to satisfy the constraints specified by the service. + * + * @throws {@link ConflictException} (client fault) + * This exception is thrown when the action to perform could not be completed because the resource is in a conflicting state. + * + * @throws {@link ResourceNotFoundException} (client fault) + * This exception is thrown when describing a resource that does not exist. + * + * @throws {@link AccessDeniedException} (client fault) + * This exception is thrown when the user does not have sufficient access to perform this action. + * + * @throws {@link CodeWhispererStreamingServiceException} + *

Base exception class for all service exceptions from CodeWhispererStreaming service.

+ * + */ +export declare class ExportResultArchiveCommand extends $Command { + readonly input: ExportResultArchiveCommandInput; + /** + * @public + */ + constructor(input: ExportResultArchiveCommandInput); + /** + * @internal + */ + resolveMiddleware(clientStack: MiddlewareStack, configuration: CodeWhispererStreamingClientResolvedConfig, options?: __HttpHandlerOptions): Handler; + /** + * @internal + */ + private serialize; + /** + * @internal + */ + private deserialize; +} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/GenerateAssistantResponseCommand.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/GenerateAssistantResponseCommand.d.ts new file mode 100644 index 00000000000..d8bb1b8e783 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/GenerateAssistantResponseCommand.d.ts @@ -0,0 +1,416 @@ +import { CodeWhispererStreamingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeWhispererStreamingClient"; +import { GenerateAssistantResponseRequest, GenerateAssistantResponseResponse } from "../models/models_0"; +import { Command as $Command } from "@smithy/smithy-client"; +import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@smithy/types"; +/** + * @public + */ +export { __MetadataBearer, $Command }; +/** + * @public + * + * The input for {@link GenerateAssistantResponseCommand}. + */ +export interface GenerateAssistantResponseCommandInput extends GenerateAssistantResponseRequest { +} +/** + * @public + * + * The output of {@link GenerateAssistantResponseCommand}. + */ +export interface GenerateAssistantResponseCommandOutput extends GenerateAssistantResponseResponse, __MetadataBearer { +} +/** + * @public + * API to generate assistant response. + * @example + * Use a bare-bones client and the command you need to make an API call. + * ```javascript + * import { CodeWhispererStreamingClient, GenerateAssistantResponseCommand } from "@amzn/codewhisperer-streaming"; // ES Modules import + * // const { CodeWhispererStreamingClient, GenerateAssistantResponseCommand } = require("@amzn/codewhisperer-streaming"); // CommonJS import + * const client = new CodeWhispererStreamingClient(config); + * const input = { // GenerateAssistantResponseRequest + * conversationState: { // ConversationState + * conversationId: "STRING_VALUE", + * history: [ // ChatHistory + * { // ChatMessage Union: only one key present + * userInputMessage: { // UserInputMessage + * content: "STRING_VALUE", // required + * userInputMessageContext: { // UserInputMessageContext + * editorState: { // EditorState + * document: { // TextDocument + * relativeFilePath: "STRING_VALUE", // required + * programmingLanguage: { // ProgrammingLanguage + * languageName: "STRING_VALUE", // required + * }, + * text: "STRING_VALUE", + * documentSymbols: [ // DocumentSymbols + * { // DocumentSymbol + * name: "STRING_VALUE", // required + * type: "DECLARATION" || "USAGE", // required + * source: "STRING_VALUE", + * }, + * ], + * }, + * cursorState: { // CursorState Union: only one key present + * position: { // Position + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * range: { // Range + * start: { + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * end: { + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * }, + * }, + * relevantDocuments: [ // RelevantDocumentList + * { // RelevantTextDocument + * relativeFilePath: "STRING_VALUE", // required + * programmingLanguage: { + * languageName: "STRING_VALUE", // required + * }, + * text: "STRING_VALUE", + * documentSymbols: [ + * { + * name: "STRING_VALUE", // required + * type: "DECLARATION" || "USAGE", // required + * source: "STRING_VALUE", + * }, + * ], + * }, + * ], + * useRelevantDocuments: true || false, + * }, + * shellState: { // ShellState + * shellName: "STRING_VALUE", // required + * shellHistory: [ // ShellHistory + * { // ShellHistoryEntry + * command: "STRING_VALUE", // required + * directory: "STRING_VALUE", + * exitCode: Number("int"), + * stdout: "STRING_VALUE", + * stderr: "STRING_VALUE", + * }, + * ], + * }, + * gitState: { // GitState + * status: "STRING_VALUE", + * }, + * envState: { // EnvState + * operatingSystem: "STRING_VALUE", + * currentWorkingDirectory: "STRING_VALUE", + * environmentVariables: [ // EnvironmentVariables + * { // EnvironmentVariable + * key: "STRING_VALUE", + * value: "STRING_VALUE", + * }, + * ], + * }, + * appStudioContext: { // AppStudioState + * namespace: "STRING_VALUE", // required + * propertyName: "STRING_VALUE", // required + * propertyValue: "STRING_VALUE", + * propertyContext: "STRING_VALUE", // required + * }, + * diagnostic: { // Diagnostic Union: only one key present + * textDocumentDiagnostic: { // TextDocumentDiagnostic + * document: { + * relativeFilePath: "STRING_VALUE", // required + * programmingLanguage: { + * languageName: "STRING_VALUE", // required + * }, + * text: "STRING_VALUE", + * documentSymbols: [ + * { + * name: "STRING_VALUE", // required + * type: "DECLARATION" || "USAGE", // required + * source: "STRING_VALUE", + * }, + * ], + * }, + * range: { + * start: { + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * end: { + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * }, + * source: "STRING_VALUE", // required + * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required + * message: "STRING_VALUE", // required + * }, + * runtimeDiagnostic: { // RuntimeDiagnostic + * source: "STRING_VALUE", // required + * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required + * message: "STRING_VALUE", // required + * }, + * }, + * consoleState: { // ConsoleState + * region: "STRING_VALUE", + * }, + * userSettings: { // UserSettings + * hasConsentedToCrossRegionCalls: true || false, + * }, + * }, + * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS", + * }, + * assistantResponseMessage: { // AssistantResponseMessage + * messageId: "STRING_VALUE", + * content: "STRING_VALUE", // required + * supplementaryWebLinks: [ // SupplementaryWebLinks + * { // SupplementaryWebLink + * url: "STRING_VALUE", // required + * title: "STRING_VALUE", // required + * snippet: "STRING_VALUE", + * }, + * ], + * references: [ // References + * { // Reference + * licenseName: "STRING_VALUE", + * repository: "STRING_VALUE", + * url: "STRING_VALUE", + * recommendationContentSpan: { // Span + * start: Number("int"), + * end: Number("int"), + * }, + * }, + * ], + * followupPrompt: { // FollowupPrompt + * content: "STRING_VALUE", // required + * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS", + * }, + * }, + * }, + * ], + * currentMessage: {// Union: only one key present + * userInputMessage: { + * content: "STRING_VALUE", // required + * userInputMessageContext: { + * editorState: { + * document: "", + * cursorState: {// Union: only one key present + * position: "", + * range: { + * start: "", // required + * end: "", // required + * }, + * }, + * relevantDocuments: [ + * { + * relativeFilePath: "STRING_VALUE", // required + * programmingLanguage: { + * languageName: "STRING_VALUE", // required + * }, + * text: "STRING_VALUE", + * documentSymbols: [ + * { + * name: "STRING_VALUE", // required + * type: "DECLARATION" || "USAGE", // required + * source: "STRING_VALUE", + * }, + * ], + * }, + * ], + * useRelevantDocuments: true || false, + * }, + * shellState: { + * shellName: "STRING_VALUE", // required + * shellHistory: [ + * { + * command: "STRING_VALUE", // required + * directory: "STRING_VALUE", + * exitCode: Number("int"), + * stdout: "STRING_VALUE", + * stderr: "STRING_VALUE", + * }, + * ], + * }, + * gitState: { + * status: "STRING_VALUE", + * }, + * envState: { + * operatingSystem: "STRING_VALUE", + * currentWorkingDirectory: "STRING_VALUE", + * environmentVariables: [ + * { + * key: "STRING_VALUE", + * value: "STRING_VALUE", + * }, + * ], + * }, + * appStudioContext: { + * namespace: "STRING_VALUE", // required + * propertyName: "STRING_VALUE", // required + * propertyValue: "STRING_VALUE", + * propertyContext: "STRING_VALUE", // required + * }, + * diagnostic: {// Union: only one key present + * textDocumentDiagnostic: { + * document: "", // required + * range: { + * start: "", // required + * end: "", // required + * }, + * source: "STRING_VALUE", // required + * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required + * message: "STRING_VALUE", // required + * }, + * runtimeDiagnostic: { + * source: "STRING_VALUE", // required + * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required + * message: "STRING_VALUE", // required + * }, + * }, + * consoleState: { + * region: "STRING_VALUE", + * }, + * userSettings: { + * hasConsentedToCrossRegionCalls: true || false, + * }, + * }, + * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS", + * }, + * assistantResponseMessage: { + * messageId: "STRING_VALUE", + * content: "STRING_VALUE", // required + * supplementaryWebLinks: [ + * { + * url: "STRING_VALUE", // required + * title: "STRING_VALUE", // required + * snippet: "STRING_VALUE", + * }, + * ], + * references: [ + * { + * licenseName: "STRING_VALUE", + * repository: "STRING_VALUE", + * url: "STRING_VALUE", + * recommendationContentSpan: { + * start: Number("int"), + * end: Number("int"), + * }, + * }, + * ], + * followupPrompt: { + * content: "STRING_VALUE", // required + * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS", + * }, + * }, + * }, + * chatTriggerType: "MANUAL" || "DIAGNOSTIC", // required + * customizationArn: "STRING_VALUE", + * }, + * profileArn: "STRING_VALUE", + * }; + * const command = new GenerateAssistantResponseCommand(input); + * const response = await client.send(command); + * // { // GenerateAssistantResponseResponse + * // conversationId: "STRING_VALUE", // required + * // generateAssistantResponseResponse: { // ChatResponseStream Union: only one key present + * // messageMetadataEvent: { // MessageMetadataEvent + * // conversationId: "STRING_VALUE", + * // }, + * // assistantResponseEvent: { // AssistantResponseEvent + * // content: "STRING_VALUE", // required + * // }, + * // codeReferenceEvent: { // CodeReferenceEvent + * // references: [ // References + * // { // Reference + * // licenseName: "STRING_VALUE", + * // repository: "STRING_VALUE", + * // url: "STRING_VALUE", + * // recommendationContentSpan: { // Span + * // start: Number("int"), + * // end: Number("int"), + * // }, + * // }, + * // ], + * // }, + * // supplementaryWebLinksEvent: { // SupplementaryWebLinksEvent + * // supplementaryWebLinks: [ // SupplementaryWebLinks + * // { // SupplementaryWebLink + * // url: "STRING_VALUE", // required + * // title: "STRING_VALUE", // required + * // snippet: "STRING_VALUE", + * // }, + * // ], + * // }, + * // followupPromptEvent: { // FollowupPromptEvent + * // followupPrompt: { // FollowupPrompt + * // content: "STRING_VALUE", // required + * // userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS", + * // }, + * // }, + * // codeEvent: { // CodeEvent + * // content: "STRING_VALUE", // required + * // }, + * // intentsEvent: { // IntentsEvent + * // intents: { // IntentMap + * // "": { // IntentData + * // "": { // IntentDataType Union: only one key present + * // string: "STRING_VALUE", + * // }, + * // }, + * // }, + * // }, + * // invalidStateEvent: { // InvalidStateEvent + * // reason: "INVALID_TASK_ASSIST_PLAN", // required + * // message: "STRING_VALUE", // required + * // }, + * // error: { // InternalServerException + * // message: "STRING_VALUE", // required + * // }, + * // }, + * // }; + * + * ``` + * + * @param GenerateAssistantResponseCommandInput - {@link GenerateAssistantResponseCommandInput} + * @returns {@link GenerateAssistantResponseCommandOutput} + * @see {@link GenerateAssistantResponseCommandInput} for command's `input` shape. + * @see {@link GenerateAssistantResponseCommandOutput} for command's `response` shape. + * @see {@link CodeWhispererStreamingClientResolvedConfig | config} for CodeWhispererStreamingClient's `config` shape. + * + * @throws {@link InternalServerException} (server fault) + * This exception is thrown when an unexpected error occurred during the processing of a request. + * + * @throws {@link ThrottlingException} (client fault) + * This exception is thrown when request was denied due to request throttling. + * + * @throws {@link ValidationException} (client fault) + * This exception is thrown when the input fails to satisfy the constraints specified by the service. + * + * @throws {@link AccessDeniedException} (client fault) + * This exception is thrown when the user does not have sufficient access to perform this action. + * + * @throws {@link CodeWhispererStreamingServiceException} + *

Base exception class for all service exceptions from CodeWhispererStreaming service.

+ * + */ +export declare class GenerateAssistantResponseCommand extends $Command { + readonly input: GenerateAssistantResponseCommandInput; + /** + * @public + */ + constructor(input: GenerateAssistantResponseCommandInput); + /** + * @internal + */ + resolveMiddleware(clientStack: MiddlewareStack, configuration: CodeWhispererStreamingClientResolvedConfig, options?: __HttpHandlerOptions): Handler; + /** + * @internal + */ + private serialize; + /** + * @internal + */ + private deserialize; +} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/GenerateTaskAssistPlanCommand.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/GenerateTaskAssistPlanCommand.d.ts new file mode 100644 index 00000000000..262cec16559 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/GenerateTaskAssistPlanCommand.d.ts @@ -0,0 +1,428 @@ +import { CodeWhispererStreamingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeWhispererStreamingClient"; +import { GenerateTaskAssistPlanRequest, GenerateTaskAssistPlanResponse } from "../models/models_0"; +import { Command as $Command } from "@smithy/smithy-client"; +import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@smithy/types"; +/** + * @public + */ +export { __MetadataBearer, $Command }; +/** + * @public + * + * The input for {@link GenerateTaskAssistPlanCommand}. + */ +export interface GenerateTaskAssistPlanCommandInput extends GenerateTaskAssistPlanRequest { +} +/** + * @public + * + * The output of {@link GenerateTaskAssistPlanCommand}. + */ +export interface GenerateTaskAssistPlanCommandOutput extends GenerateTaskAssistPlanResponse, __MetadataBearer { +} +/** + * @public + * API to generate task assit plan. + * @example + * Use a bare-bones client and the command you need to make an API call. + * ```javascript + * import { CodeWhispererStreamingClient, GenerateTaskAssistPlanCommand } from "@amzn/codewhisperer-streaming"; // ES Modules import + * // const { CodeWhispererStreamingClient, GenerateTaskAssistPlanCommand } = require("@amzn/codewhisperer-streaming"); // CommonJS import + * const client = new CodeWhispererStreamingClient(config); + * const input = { // GenerateTaskAssistPlanRequest + * conversationState: { // ConversationState + * conversationId: "STRING_VALUE", + * history: [ // ChatHistory + * { // ChatMessage Union: only one key present + * userInputMessage: { // UserInputMessage + * content: "STRING_VALUE", // required + * userInputMessageContext: { // UserInputMessageContext + * editorState: { // EditorState + * document: { // TextDocument + * relativeFilePath: "STRING_VALUE", // required + * programmingLanguage: { // ProgrammingLanguage + * languageName: "STRING_VALUE", // required + * }, + * text: "STRING_VALUE", + * documentSymbols: [ // DocumentSymbols + * { // DocumentSymbol + * name: "STRING_VALUE", // required + * type: "DECLARATION" || "USAGE", // required + * source: "STRING_VALUE", + * }, + * ], + * }, + * cursorState: { // CursorState Union: only one key present + * position: { // Position + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * range: { // Range + * start: { + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * end: { + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * }, + * }, + * relevantDocuments: [ // RelevantDocumentList + * { // RelevantTextDocument + * relativeFilePath: "STRING_VALUE", // required + * programmingLanguage: { + * languageName: "STRING_VALUE", // required + * }, + * text: "STRING_VALUE", + * documentSymbols: [ + * { + * name: "STRING_VALUE", // required + * type: "DECLARATION" || "USAGE", // required + * source: "STRING_VALUE", + * }, + * ], + * }, + * ], + * useRelevantDocuments: true || false, + * }, + * shellState: { // ShellState + * shellName: "STRING_VALUE", // required + * shellHistory: [ // ShellHistory + * { // ShellHistoryEntry + * command: "STRING_VALUE", // required + * directory: "STRING_VALUE", + * exitCode: Number("int"), + * stdout: "STRING_VALUE", + * stderr: "STRING_VALUE", + * }, + * ], + * }, + * gitState: { // GitState + * status: "STRING_VALUE", + * }, + * envState: { // EnvState + * operatingSystem: "STRING_VALUE", + * currentWorkingDirectory: "STRING_VALUE", + * environmentVariables: [ // EnvironmentVariables + * { // EnvironmentVariable + * key: "STRING_VALUE", + * value: "STRING_VALUE", + * }, + * ], + * }, + * appStudioContext: { // AppStudioState + * namespace: "STRING_VALUE", // required + * propertyName: "STRING_VALUE", // required + * propertyValue: "STRING_VALUE", + * propertyContext: "STRING_VALUE", // required + * }, + * diagnostic: { // Diagnostic Union: only one key present + * textDocumentDiagnostic: { // TextDocumentDiagnostic + * document: { + * relativeFilePath: "STRING_VALUE", // required + * programmingLanguage: { + * languageName: "STRING_VALUE", // required + * }, + * text: "STRING_VALUE", + * documentSymbols: [ + * { + * name: "STRING_VALUE", // required + * type: "DECLARATION" || "USAGE", // required + * source: "STRING_VALUE", + * }, + * ], + * }, + * range: { + * start: { + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * end: { + * line: Number("int"), // required + * character: Number("int"), // required + * }, + * }, + * source: "STRING_VALUE", // required + * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required + * message: "STRING_VALUE", // required + * }, + * runtimeDiagnostic: { // RuntimeDiagnostic + * source: "STRING_VALUE", // required + * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required + * message: "STRING_VALUE", // required + * }, + * }, + * consoleState: { // ConsoleState + * region: "STRING_VALUE", + * }, + * userSettings: { // UserSettings + * hasConsentedToCrossRegionCalls: true || false, + * }, + * }, + * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS", + * }, + * assistantResponseMessage: { // AssistantResponseMessage + * messageId: "STRING_VALUE", + * content: "STRING_VALUE", // required + * supplementaryWebLinks: [ // SupplementaryWebLinks + * { // SupplementaryWebLink + * url: "STRING_VALUE", // required + * title: "STRING_VALUE", // required + * snippet: "STRING_VALUE", + * }, + * ], + * references: [ // References + * { // Reference + * licenseName: "STRING_VALUE", + * repository: "STRING_VALUE", + * url: "STRING_VALUE", + * recommendationContentSpan: { // Span + * start: Number("int"), + * end: Number("int"), + * }, + * }, + * ], + * followupPrompt: { // FollowupPrompt + * content: "STRING_VALUE", // required + * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS", + * }, + * }, + * }, + * ], + * currentMessage: {// Union: only one key present + * userInputMessage: { + * content: "STRING_VALUE", // required + * userInputMessageContext: { + * editorState: { + * document: "", + * cursorState: {// Union: only one key present + * position: "", + * range: { + * start: "", // required + * end: "", // required + * }, + * }, + * relevantDocuments: [ + * { + * relativeFilePath: "STRING_VALUE", // required + * programmingLanguage: { + * languageName: "STRING_VALUE", // required + * }, + * text: "STRING_VALUE", + * documentSymbols: [ + * { + * name: "STRING_VALUE", // required + * type: "DECLARATION" || "USAGE", // required + * source: "STRING_VALUE", + * }, + * ], + * }, + * ], + * useRelevantDocuments: true || false, + * }, + * shellState: { + * shellName: "STRING_VALUE", // required + * shellHistory: [ + * { + * command: "STRING_VALUE", // required + * directory: "STRING_VALUE", + * exitCode: Number("int"), + * stdout: "STRING_VALUE", + * stderr: "STRING_VALUE", + * }, + * ], + * }, + * gitState: { + * status: "STRING_VALUE", + * }, + * envState: { + * operatingSystem: "STRING_VALUE", + * currentWorkingDirectory: "STRING_VALUE", + * environmentVariables: [ + * { + * key: "STRING_VALUE", + * value: "STRING_VALUE", + * }, + * ], + * }, + * appStudioContext: { + * namespace: "STRING_VALUE", // required + * propertyName: "STRING_VALUE", // required + * propertyValue: "STRING_VALUE", + * propertyContext: "STRING_VALUE", // required + * }, + * diagnostic: {// Union: only one key present + * textDocumentDiagnostic: { + * document: "", // required + * range: { + * start: "", // required + * end: "", // required + * }, + * source: "STRING_VALUE", // required + * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required + * message: "STRING_VALUE", // required + * }, + * runtimeDiagnostic: { + * source: "STRING_VALUE", // required + * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required + * message: "STRING_VALUE", // required + * }, + * }, + * consoleState: { + * region: "STRING_VALUE", + * }, + * userSettings: { + * hasConsentedToCrossRegionCalls: true || false, + * }, + * }, + * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS", + * }, + * assistantResponseMessage: { + * messageId: "STRING_VALUE", + * content: "STRING_VALUE", // required + * supplementaryWebLinks: [ + * { + * url: "STRING_VALUE", // required + * title: "STRING_VALUE", // required + * snippet: "STRING_VALUE", + * }, + * ], + * references: [ + * { + * licenseName: "STRING_VALUE", + * repository: "STRING_VALUE", + * url: "STRING_VALUE", + * recommendationContentSpan: { + * start: Number("int"), + * end: Number("int"), + * }, + * }, + * ], + * followupPrompt: { + * content: "STRING_VALUE", // required + * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS", + * }, + * }, + * }, + * chatTriggerType: "MANUAL" || "DIAGNOSTIC", // required + * customizationArn: "STRING_VALUE", + * }, + * workspaceState: { // WorkspaceState + * uploadId: "STRING_VALUE", // required + * programmingLanguage: "", // required + * contextTruncationScheme: "ANALYSIS" || "GUMBY", + * }, + * }; + * const command = new GenerateTaskAssistPlanCommand(input); + * const response = await client.send(command); + * // { // GenerateTaskAssistPlanResponse + * // planningResponseStream: { // ChatResponseStream Union: only one key present + * // messageMetadataEvent: { // MessageMetadataEvent + * // conversationId: "STRING_VALUE", + * // }, + * // assistantResponseEvent: { // AssistantResponseEvent + * // content: "STRING_VALUE", // required + * // }, + * // codeReferenceEvent: { // CodeReferenceEvent + * // references: [ // References + * // { // Reference + * // licenseName: "STRING_VALUE", + * // repository: "STRING_VALUE", + * // url: "STRING_VALUE", + * // recommendationContentSpan: { // Span + * // start: Number("int"), + * // end: Number("int"), + * // }, + * // }, + * // ], + * // }, + * // supplementaryWebLinksEvent: { // SupplementaryWebLinksEvent + * // supplementaryWebLinks: [ // SupplementaryWebLinks + * // { // SupplementaryWebLink + * // url: "STRING_VALUE", // required + * // title: "STRING_VALUE", // required + * // snippet: "STRING_VALUE", + * // }, + * // ], + * // }, + * // followupPromptEvent: { // FollowupPromptEvent + * // followupPrompt: { // FollowupPrompt + * // content: "STRING_VALUE", // required + * // userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS", + * // }, + * // }, + * // codeEvent: { // CodeEvent + * // content: "STRING_VALUE", // required + * // }, + * // intentsEvent: { // IntentsEvent + * // intents: { // IntentMap + * // "": { // IntentData + * // "": { // IntentDataType Union: only one key present + * // string: "STRING_VALUE", + * // }, + * // }, + * // }, + * // }, + * // invalidStateEvent: { // InvalidStateEvent + * // reason: "INVALID_TASK_ASSIST_PLAN", // required + * // message: "STRING_VALUE", // required + * // }, + * // error: { // InternalServerException + * // message: "STRING_VALUE", // required + * // }, + * // }, + * // }; + * + * ``` + * + * @param GenerateTaskAssistPlanCommandInput - {@link GenerateTaskAssistPlanCommandInput} + * @returns {@link GenerateTaskAssistPlanCommandOutput} + * @see {@link GenerateTaskAssistPlanCommandInput} for command's `input` shape. + * @see {@link GenerateTaskAssistPlanCommandOutput} for command's `response` shape. + * @see {@link CodeWhispererStreamingClientResolvedConfig | config} for CodeWhispererStreamingClient's `config` shape. + * + * @throws {@link InternalServerException} (server fault) + * This exception is thrown when an unexpected error occurred during the processing of a request. + * + * @throws {@link ServiceQuotaExceededException} (client fault) + * This exception is thrown when request was denied due to caller exceeding their usage limits + * + * @throws {@link ThrottlingException} (client fault) + * This exception is thrown when request was denied due to request throttling. + * + * @throws {@link ValidationException} (client fault) + * This exception is thrown when the input fails to satisfy the constraints specified by the service. + * + * @throws {@link ConflictException} (client fault) + * This exception is thrown when the action to perform could not be completed because the resource is in a conflicting state. + * + * @throws {@link ResourceNotFoundException} (client fault) + * This exception is thrown when describing a resource that does not exist. + * + * @throws {@link AccessDeniedException} (client fault) + * This exception is thrown when the user does not have sufficient access to perform this action. + * + * @throws {@link CodeWhispererStreamingServiceException} + *

Base exception class for all service exceptions from CodeWhispererStreaming service.

+ * + */ +export declare class GenerateTaskAssistPlanCommand extends $Command { + readonly input: GenerateTaskAssistPlanCommandInput; + /** + * @public + */ + constructor(input: GenerateTaskAssistPlanCommandInput); + /** + * @internal + */ + resolveMiddleware(clientStack: MiddlewareStack, configuration: CodeWhispererStreamingClientResolvedConfig, options?: __HttpHandlerOptions): Handler; + /** + * @internal + */ + private serialize; + /** + * @internal + */ + private deserialize; +} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/index.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/index.d.ts new file mode 100644 index 00000000000..983aed6e929 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/index.d.ts @@ -0,0 +1,4 @@ +export * from "./ExportResultArchiveCommand"; +export * from "./GenerateAssistantResponseCommand"; +export * from "./GenerateTaskAssistPlanCommand"; +export * from "./ConverseStreamCommand"; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/endpoints.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/endpoints.d.ts new file mode 100644 index 00000000000..4605191af31 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-types/endpoints.d.ts @@ -0,0 +1,2 @@ +import { RegionInfoProvider } from "@aws-sdk/types"; +export declare const defaultRegionInfoProvider: RegionInfoProvider; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/extensionConfiguration.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/extensionConfiguration.d.ts new file mode 100644 index 00000000000..43c8bc8bc4c --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-types/extensionConfiguration.d.ts @@ -0,0 +1,8 @@ +import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import { DefaultExtensionConfiguration } from "@smithy/types"; +/** + * @internal + */ +export interface CodeWhispererStreamingExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration { +} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/index.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/index.d.ts new file mode 100644 index 00000000000..4bab106103b --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-types/index.d.ts @@ -0,0 +1,5 @@ +export * from "./CodeWhispererStreamingClient"; +export * from "./CodeWhispererStreaming"; +export * from "./commands"; +export * from "./models"; +export { CodeWhispererStreamingServiceException } from "./models/CodeWhispererStreamingServiceException"; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/models/CodeWhispererStreamingServiceException.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/models/CodeWhispererStreamingServiceException.d.ts new file mode 100644 index 00000000000..57083b25264 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-types/models/CodeWhispererStreamingServiceException.d.ts @@ -0,0 +1,13 @@ +import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client"; +export { __ServiceException, __ServiceExceptionOptions }; +/** + * @public + * + * Base exception class for all service exceptions from CodeWhispererStreaming service. + */ +export declare class CodeWhispererStreamingServiceException extends __ServiceException { + /** + * @internal + */ + constructor(options: __ServiceExceptionOptions); +} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/models/index.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/models/index.d.ts new file mode 100644 index 00000000000..09c5d6e09b8 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-types/models/index.d.ts @@ -0,0 +1 @@ +export * from "./models_0"; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/models/models_0.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/models/models_0.d.ts new file mode 100644 index 00000000000..57e0d83daec --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-types/models/models_0.d.ts @@ -0,0 +1,1708 @@ +import { CodeWhispererStreamingServiceException as __BaseException } from "./CodeWhispererStreamingServiceException"; +import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +/** + * @public + * @enum + */ +export declare const AccessDeniedExceptionReason: { + readonly UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS: "UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS"; +}; +/** + * @public + */ +export type AccessDeniedExceptionReason = typeof AccessDeniedExceptionReason[keyof typeof AccessDeniedExceptionReason]; +/** + * @public + * This exception is thrown when the user does not have sufficient access to perform this action. + */ +export declare class AccessDeniedException extends __BaseException { + readonly name: "AccessDeniedException"; + readonly $fault: "client"; + /** + * @public + * Reason for AccessDeniedException + */ + reason?: AccessDeniedExceptionReason | string; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType); +} +/** + * @public + * This exception is thrown when an unexpected error occurred during the processing of a request. + */ +export declare class InternalServerException extends __BaseException { + readonly name: "InternalServerException"; + readonly $fault: "server"; + $retryable: {}; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType); +} +/** + * @public + * This exception is thrown when describing a resource that does not exist. + */ +export declare class ResourceNotFoundException extends __BaseException { + readonly name: "ResourceNotFoundException"; + readonly $fault: "client"; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType); +} +/** + * @public + * This exception is thrown when request was denied due to request throttling. + */ +export declare class ThrottlingException extends __BaseException { + readonly name: "ThrottlingException"; + readonly $fault: "client"; + $retryable: { + throttling: boolean; + }; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType); +} +/** + * @public + * @enum + */ +export declare const ValidationExceptionReason: { + readonly CONTENT_LENGTH_EXCEEDS_THRESHOLD: "CONTENT_LENGTH_EXCEEDS_THRESHOLD"; + readonly INVALID_CONVERSATION_ID: "INVALID_CONVERSATION_ID"; +}; +/** + * @public + */ +export type ValidationExceptionReason = typeof ValidationExceptionReason[keyof typeof ValidationExceptionReason]; +/** + * @public + * This exception is thrown when the input fails to satisfy the constraints specified by the service. + */ +export declare class ValidationException extends __BaseException { + readonly name: "ValidationException"; + readonly $fault: "client"; + /** + * @public + * Reason for ValidationException + */ + reason?: ValidationExceptionReason | string; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType); +} +/** + * @public + * Description of a user's context when they are calling Q Chat from AppStudio + */ +export interface AppStudioState { + /** + * @public + * The namespace of the context. Examples: 'ui.Button', 'ui.Table.DataSource', 'ui.Table.RowActions.Button', 'logic.invokeAWS', 'logic.JavaScript' + */ + namespace: string | undefined; + /** + * @public + * The name of the property. Examples: 'visibility', 'disability', 'value', 'code' + */ + propertyName: string | undefined; + /** + * @public + * The value of the property. + */ + propertyValue?: string; + /** + * @public + * Context about how the property is used + */ + propertyContext: string | undefined; +} +/** + * @internal + */ +export declare const AppStudioStateFilterSensitiveLog: (obj: AppStudioState) => any; +/** + * @public + * Streaming Response Event for Assistant Markdown text message. + */ +export interface AssistantResponseEvent { + /** + * @public + * The content of the text message in markdown format. + */ + content: string | undefined; +} +/** + * @internal + */ +export declare const AssistantResponseEventFilterSensitiveLog: (obj: AssistantResponseEvent) => any; +/** + * @public + * @enum + */ +export declare const UserIntent: { + /** + * Apply Common Best Practices + */ + readonly APPLY_COMMON_BEST_PRACTICES: "APPLY_COMMON_BEST_PRACTICES"; + /** + * Cite Sources + */ + readonly CITE_SOURCES: "CITE_SOURCES"; + /** + * Explain Code Selection + */ + readonly EXPLAIN_CODE_SELECTION: "EXPLAIN_CODE_SELECTION"; + /** + * Explain Code Line By Line + */ + readonly EXPLAIN_LINE_BY_LINE: "EXPLAIN_LINE_BY_LINE"; + /** + * Generate CloudFormation Template + */ + readonly GENERATE_CLOUDFORMATION_TEMPLATE: "GENERATE_CLOUDFORMATION_TEMPLATE"; + /** + * Generate Unit Tests + */ + readonly GENERATE_UNIT_TESTS: "GENERATE_UNIT_TESTS"; + /** + * Improve Code + */ + readonly IMPROVE_CODE: "IMPROVE_CODE"; + /** + * Show More Examples + */ + readonly SHOW_EXAMPLES: "SHOW_EXAMPLES"; + /** + * Suggest Alternative Implementation + */ + readonly SUGGEST_ALTERNATE_IMPLEMENTATION: "SUGGEST_ALTERNATE_IMPLEMENTATION"; +}; +/** + * @public + */ +export type UserIntent = typeof UserIntent[keyof typeof UserIntent]; +/** + * @public + * Followup Prompt for the Assistant Response + */ +export interface FollowupPrompt { + /** + * @public + * The content of the text message in markdown format. + */ + content: string | undefined; + /** + * @public + * User Intent + */ + userIntent?: UserIntent | string; +} +/** + * @internal + */ +export declare const FollowupPromptFilterSensitiveLog: (obj: FollowupPrompt) => any; +/** + * @public + * Represents span in a text + */ +export interface Span { + start?: number; + end?: number; +} +/** + * @public + * Code Reference / Repository details + */ +export interface Reference { + /** + * @public + * License name + */ + licenseName?: string; + /** + * @public + * Code Repsitory for the associated reference + */ + repository?: string; + /** + * @public + * Respository URL + */ + url?: string; + /** + * @public + * Span / Range for the Reference + */ + recommendationContentSpan?: Span; +} +/** + * @public + * Represents an additional reference link retured with the Chat message + */ +export interface SupplementaryWebLink { + /** + * @public + * URL of the web reference link + */ + url: string | undefined; + /** + * @public + * Title of the web reference link + */ + title: string | undefined; + /** + * @public + * Relevant text snippet from the link + */ + snippet?: string; +} +/** + * @internal + */ +export declare const SupplementaryWebLinkFilterSensitiveLog: (obj: SupplementaryWebLink) => any; +/** + * @public + * Markdown text message. + */ +export interface AssistantResponseMessage { + /** + * @public + * Unique identifier for the chat message + */ + messageId?: string; + /** + * @public + * The content of the text message in markdown format. + */ + content: string | undefined; + /** + * @public + * Web References + */ + supplementaryWebLinks?: (SupplementaryWebLink)[]; + /** + * @public + * Code References + */ + references?: (Reference)[]; + /** + * @public + * Followup Prompt + */ + followupPrompt?: FollowupPrompt; +} +/** + * @internal + */ +export declare const AssistantResponseMessageFilterSensitiveLog: (obj: AssistantResponseMessage) => any; +/** + * @public + * This exception is thrown when the action to perform could not be completed because the resource is in a conflicting state. + */ +export declare class ConflictException extends __BaseException { + readonly name: "ConflictException"; + readonly $fault: "client"; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType); +} +/** + * @public + * Programming Languages supported by CodeWhisperer + */ +export interface ProgrammingLanguage { + languageName: string | undefined; +} +/** + * @public + * @enum + */ +export declare const ContentChecksumType: { + readonly SHA_256: "SHA_256"; +}; +/** + * @public + */ +export type ContentChecksumType = typeof ContentChecksumType[keyof typeof ContentChecksumType]; +/** + * @public + * Payload Part + */ +export interface BinaryMetadataEvent { + /** + * @public + * Content length of the binary payload + */ + size?: number; + /** + * @public + * Content type of the response + */ + mimeType?: string; + /** + * @public + * Content checksum of the binary payload + */ + contentChecksum?: string; + /** + * @public + * Content checksum type of the binary payload + */ + contentChecksumType?: ContentChecksumType | string; +} +/** + * @internal + */ +export declare const BinaryMetadataEventFilterSensitiveLog: (obj: BinaryMetadataEvent) => any; +/** + * @public + * Payload Part + */ +export interface BinaryPayloadEvent { + /** + * @public + * Payload Part's body + */ + bytes?: Uint8Array; +} +/** + * @internal + */ +export declare const BinaryPayloadEventFilterSensitiveLog: (obj: BinaryPayloadEvent) => any; +/** + * @public + * Information about the state of the AWS management console page from which the user is calling + */ +export interface ConsoleState { + region?: string; +} +/** + * @public + * @enum + */ +export declare const DiagnosticSeverity: { + readonly ERROR: "ERROR"; + readonly HINT: "HINT"; + readonly INFORMATION: "INFORMATION"; + readonly WARNING: "WARNING"; +}; +/** + * @public + */ +export type DiagnosticSeverity = typeof DiagnosticSeverity[keyof typeof DiagnosticSeverity]; +/** + * @public + * Structure to represent metadata about a Runtime Diagnostics + */ +export interface RuntimeDiagnostic { + /** + * @public + * A human-readable string describing the source of the diagnostic + */ + source: string | undefined; + /** + * @public + * Diagnostic Error type + */ + severity: DiagnosticSeverity | string | undefined; + /** + * @public + * The diagnostic's message. + */ + message: string | undefined; +} +/** + * @internal + */ +export declare const RuntimeDiagnosticFilterSensitiveLog: (obj: RuntimeDiagnostic) => any; +/** + * @public + * @enum + */ +export declare const SymbolType: { + readonly DECLARATION: "DECLARATION"; + readonly USAGE: "USAGE"; +}; +/** + * @public + */ +export type SymbolType = typeof SymbolType[keyof typeof SymbolType]; +/** + * @public + */ +export interface DocumentSymbol { + /** + * @public + * Name of the Document Symbol + */ + name: string | undefined; + /** + * @public + * Symbol type - DECLARATION / USAGE + */ + type: SymbolType | string | undefined; + /** + * @public + * Symbol package / source for FullyQualified names + */ + source?: string; +} +/** + * @public + * Represents a Text Document / File + */ +export interface TextDocument { + /** + * @public + * Filepath relative to the root of the workspace + */ + relativeFilePath: string | undefined; + /** + * @public + * The text document's language identifier. + */ + programmingLanguage?: ProgrammingLanguage; + /** + * @public + * Content of the text document + */ + text?: string; + /** + * @public + * DocumentSymbols parsed from a text document + */ + documentSymbols?: (DocumentSymbol)[]; +} +/** + * @internal + */ +export declare const TextDocumentFilterSensitiveLog: (obj: TextDocument) => any; +/** + * @public + * Indicates Cursor postion in a Text Document + */ +export interface Position { + /** + * @public + * Line position in a document. + */ + line: number | undefined; + /** + * @public + * Character offset on a line in a document (zero-based) + */ + character: number | undefined; +} +/** + * @public + * Indicates Range / Span in a Text Document + */ +export interface Range { + /** + * @public + * The range's start position. + */ + start: Position | undefined; + /** + * @public + * The range's end position. + */ + end: Position | undefined; +} +/** + * @public + * Structure to represent metadata about a TextDocument Diagnostic + */ +export interface TextDocumentDiagnostic { + /** + * @public + * Represents a Text Document associated with Diagnostic + */ + document: TextDocument | undefined; + /** + * @public + * The range at which the message applies. + */ + range: Range | undefined; + /** + * @public + * A human-readable string describing the source of the diagnostic + */ + source: string | undefined; + /** + * @public + * Diagnostic Error type + */ + severity: DiagnosticSeverity | string | undefined; + /** + * @public + * The diagnostic's message. + */ + message: string | undefined; +} +/** + * @internal + */ +export declare const TextDocumentDiagnosticFilterSensitiveLog: (obj: TextDocumentDiagnostic) => any; +/** + * @public + * Represents a Diagnostic message + */ +export type Diagnostic = Diagnostic.RuntimeDiagnosticMember | Diagnostic.TextDocumentDiagnosticMember | Diagnostic.$UnknownMember; +/** + * @public + */ +export declare namespace Diagnostic { + /** + * @public + * Diagnostics originating from a TextDocument + */ + interface TextDocumentDiagnosticMember { + textDocumentDiagnostic: TextDocumentDiagnostic; + runtimeDiagnostic?: never; + $unknown?: never; + } + /** + * @public + * Diagnostics originating from a Runtime + */ + interface RuntimeDiagnosticMember { + textDocumentDiagnostic?: never; + runtimeDiagnostic: RuntimeDiagnostic; + $unknown?: never; + } + /** + * @public + */ + interface $UnknownMember { + textDocumentDiagnostic?: never; + runtimeDiagnostic?: never; + $unknown: [string, any]; + } + interface Visitor { + textDocumentDiagnostic: (value: TextDocumentDiagnostic) => T; + runtimeDiagnostic: (value: RuntimeDiagnostic) => T; + _: (name: string, value: any) => T; + } + const visit: (value: Diagnostic, visitor: Visitor) => T; +} +/** + * @internal + */ +export declare const DiagnosticFilterSensitiveLog: (obj: Diagnostic) => any; +/** + * @public + * Represents the state of the Cursor in an Editor + */ +export type CursorState = CursorState.PositionMember | CursorState.RangeMember | CursorState.$UnknownMember; +/** + * @public + */ +export declare namespace CursorState { + /** + * @public + * Represents a cursor position in a Text Document + */ + interface PositionMember { + position: Position; + range?: never; + $unknown?: never; + } + /** + * @public + * Represents a text selection in a Text Document + */ + interface RangeMember { + position?: never; + range: Range; + $unknown?: never; + } + /** + * @public + */ + interface $UnknownMember { + position?: never; + range?: never; + $unknown: [string, any]; + } + interface Visitor { + position: (value: Position) => T; + range: (value: Range) => T; + _: (name: string, value: any) => T; + } + const visit: (value: CursorState, visitor: Visitor) => T; +} +/** + * @public + * Represents an IDE retrieved relevant Text Document / File + */ +export interface RelevantTextDocument { + /** + * @public + * Filepath relative to the root of the workspace + */ + relativeFilePath: string | undefined; + /** + * @public + * The text document's language identifier. + */ + programmingLanguage?: ProgrammingLanguage; + /** + * @public + * Content of the text document + */ + text?: string; + /** + * @public + * DocumentSymbols parsed from a text document + */ + documentSymbols?: (DocumentSymbol)[]; +} +/** + * @internal + */ +export declare const RelevantTextDocumentFilterSensitiveLog: (obj: RelevantTextDocument) => any; +/** + * @public + * Represents the state of an Editor + */ +export interface EditorState { + /** + * @public + * Represents currently edited file + */ + document?: TextDocument; + /** + * @public + * Position of the cursor + */ + cursorState?: CursorState; + /** + * @public + * Represents IDE provided relevant files + */ + relevantDocuments?: (RelevantTextDocument)[]; + /** + * @public + * Whether service should use relevant document in prompt + */ + useRelevantDocuments?: boolean; +} +/** + * @internal + */ +export declare const EditorStateFilterSensitiveLog: (obj: EditorState) => any; +/** + * @public + * An environment variable + */ +export interface EnvironmentVariable { + /** + * @public + * The key of an environment variable + */ + key?: string; + /** + * @public + * The value of an environment variable + */ + value?: string; +} +/** + * @internal + */ +export declare const EnvironmentVariableFilterSensitiveLog: (obj: EnvironmentVariable) => any; +/** + * @public + * State related to the user's environment + */ +export interface EnvState { + /** + * @public + * The name of the operating system in use + */ + operatingSystem?: string; + /** + * @public + * The current working directory of the environment + */ + currentWorkingDirectory?: string; + /** + * @public + * The environment variables set in the current environment + */ + environmentVariables?: (EnvironmentVariable)[]; +} +/** + * @internal + */ +export declare const EnvStateFilterSensitiveLog: (obj: EnvState) => any; +/** + * @public + * State related to the Git VSC + */ +export interface GitState { + /** + * @public + * The output of the command `git status --porcelain=v1 -b` + */ + status?: string; +} +/** + * @internal + */ +export declare const GitStateFilterSensitiveLog: (obj: GitState) => any; +/** + * @public + * An single entry in the shell history + */ +export interface ShellHistoryEntry { + /** + * @public + * The shell command that was run + */ + command: string | undefined; + /** + * @public + * The directory the command was ran in + */ + directory?: string; + /** + * @public + * The exit code of the command after it finished + */ + exitCode?: number; + /** + * @public + * The stdout from the command + */ + stdout?: string; + /** + * @public + * The stderr from the command + */ + stderr?: string; +} +/** + * @internal + */ +export declare const ShellHistoryEntryFilterSensitiveLog: (obj: ShellHistoryEntry) => any; +/** + * @public + * Represents the state of a shell + */ +export interface ShellState { + /** + * @public + * The name of the current shell + */ + shellName: string | undefined; + /** + * @public + * The history previous shell commands for the current shell + */ + shellHistory?: (ShellHistoryEntry)[]; +} +/** + * @internal + */ +export declare const ShellStateFilterSensitiveLog: (obj: ShellState) => any; +/** + * @public + * Settings information passed by the Q widget + */ +export interface UserSettings { + hasConsentedToCrossRegionCalls?: boolean; +} +/** + * @public + * Additional Chat message context associated with the Chat Message + */ +export interface UserInputMessageContext { + /** + * @public + * Editor state chat message context. + */ + editorState?: EditorState; + /** + * @public + * Shell state chat message context. + */ + shellState?: ShellState; + /** + * @public + * Git state chat message context. + */ + gitState?: GitState; + /** + * @public + * Environment state chat message context. + */ + envState?: EnvState; + /** + * @public + * The state of a user's AppStudio UI when sending a message. + */ + appStudioContext?: AppStudioState; + /** + * @public + * Diagnostic chat message context. + */ + diagnostic?: Diagnostic; + /** + * @public + * Contextual information about the environment from which the user is calling. + */ + consoleState?: ConsoleState; + /** + * @public + * Settings information, e.g., whether the user has enabled cross-region API calls. + */ + userSettings?: UserSettings; +} +/** + * @internal + */ +export declare const UserInputMessageContextFilterSensitiveLog: (obj: UserInputMessageContext) => any; +/** + * @public + * Structure to represent a chat input message from User + */ +export interface UserInputMessage { + /** + * @public + * The content of the chat message. + */ + content: string | undefined; + /** + * @public + * Chat message context associated with the Chat Message + */ + userInputMessageContext?: UserInputMessageContext; + /** + * @public + * User Intent + */ + userIntent?: UserIntent | string; +} +/** + * @internal + */ +export declare const UserInputMessageFilterSensitiveLog: (obj: UserInputMessage) => any; +/** + * @public + */ +export type ChatMessage = ChatMessage.AssistantResponseMessageMember | ChatMessage.UserInputMessageMember | ChatMessage.$UnknownMember; +/** + * @public + */ +export declare namespace ChatMessage { + /** + * @public + * Structure to represent a chat input message from User + */ + interface UserInputMessageMember { + userInputMessage: UserInputMessage; + assistantResponseMessage?: never; + $unknown?: never; + } + /** + * @public + * Markdown text message. + */ + interface AssistantResponseMessageMember { + userInputMessage?: never; + assistantResponseMessage: AssistantResponseMessage; + $unknown?: never; + } + /** + * @public + */ + interface $UnknownMember { + userInputMessage?: never; + assistantResponseMessage?: never; + $unknown: [string, any]; + } + interface Visitor { + userInputMessage: (value: UserInputMessage) => T; + assistantResponseMessage: (value: AssistantResponseMessage) => T; + _: (name: string, value: any) => T; + } + const visit: (value: ChatMessage, visitor: Visitor) => T; +} +/** + * @internal + */ +export declare const ChatMessageFilterSensitiveLog: (obj: ChatMessage) => any; +/** + * @public + * Streaming response event for generated code text. + */ +export interface CodeEvent { + /** + * @public + * Generated code snippet. + */ + content: string | undefined; +} +/** + * @internal + */ +export declare const CodeEventFilterSensitiveLog: (obj: CodeEvent) => any; +/** + * @public + * Streaming Response Event for CodeReferences + */ +export interface CodeReferenceEvent { + /** + * @public + * Code References for Assistant Response Message + */ + references?: (Reference)[]; +} +/** + * @public + * Streaming Response Event for Followup Prompt. + */ +export interface FollowupPromptEvent { + /** + * @public + * Followup Prompt for the Assistant Response + */ + followupPrompt?: FollowupPrompt; +} +/** + * @internal + */ +export declare const FollowupPromptEventFilterSensitiveLog: (obj: FollowupPromptEvent) => any; +/** + * @public + * @enum + */ +export declare const IntentType: { + readonly GLUE_SENSEI: "GLUE_SENSEI"; + readonly RESOURCE_DATA: "RESOURCE_DATA"; + readonly SUPPORT: "SUPPORT"; +}; +/** + * @public + */ +export type IntentType = typeof IntentType[keyof typeof IntentType]; +/** + * @public + */ +export type IntentDataType = IntentDataType.StringMember | IntentDataType.$UnknownMember; +/** + * @public + */ +export declare namespace IntentDataType { + interface StringMember { + string: string; + $unknown?: never; + } + /** + * @public + */ + interface $UnknownMember { + string?: never; + $unknown: [string, any]; + } + interface Visitor { + string: (value: string) => T; + _: (name: string, value: any) => T; + } + const visit: (value: IntentDataType, visitor: Visitor) => T; +} +/** + * @public + * Streaming Response Event for Intents + */ +export interface IntentsEvent { + /** + * @public + * A map of Intent objects + */ + intents?: Record>; +} +/** + * @internal + */ +export declare const IntentsEventFilterSensitiveLog: (obj: IntentsEvent) => any; +/** + * @public + * @enum + */ +export declare const InvalidStateReason: { + readonly INVALID_TASK_ASSIST_PLAN: "INVALID_TASK_ASSIST_PLAN"; +}; +/** + * @public + */ +export type InvalidStateReason = typeof InvalidStateReason[keyof typeof InvalidStateReason]; +/** + * @public + * Streaming Response Event when an Invalid State is reached + */ +export interface InvalidStateEvent { + /** + * @public + * Reasons for Invalid State Event + */ + reason: InvalidStateReason | string | undefined; + message: string | undefined; +} +/** + * @public + * Streaming Response Event for AssistantResponse Metadata + */ +export interface MessageMetadataEvent { + /** + * @public + * Unique identifier for the conversation + */ + conversationId?: string; +} +/** + * @public + * Streaming Response Event for SupplementaryWebLinks + */ +export interface SupplementaryWebLinksEvent { + /** + * @public + * Web References for Assistant Response Message + */ + supplementaryWebLinks?: (SupplementaryWebLink)[]; +} +/** + * @internal + */ +export declare const SupplementaryWebLinksEventFilterSensitiveLog: (obj: SupplementaryWebLinksEvent) => any; +/** + * @public + * Streaming events from UniDirectional Streaming Conversational APIs. + */ +export type ChatResponseStream = ChatResponseStream.AssistantResponseEventMember | ChatResponseStream.CodeEventMember | ChatResponseStream.CodeReferenceEventMember | ChatResponseStream.ErrorMember | ChatResponseStream.FollowupPromptEventMember | ChatResponseStream.IntentsEventMember | ChatResponseStream.InvalidStateEventMember | ChatResponseStream.MessageMetadataEventMember | ChatResponseStream.SupplementaryWebLinksEventMember | ChatResponseStream.$UnknownMember; +/** + * @public + */ +export declare namespace ChatResponseStream { + /** + * @public + * Message Metadata event + */ + interface MessageMetadataEventMember { + messageMetadataEvent: MessageMetadataEvent; + assistantResponseEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + /** + * @public + * Assistant response event - Text / Code snippet + */ + interface AssistantResponseEventMember { + messageMetadataEvent?: never; + assistantResponseEvent: AssistantResponseEvent; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + /** + * @public + * Code References event + */ + interface CodeReferenceEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + codeReferenceEvent: CodeReferenceEvent; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + /** + * @public + * Web Reference links event + */ + interface SupplementaryWebLinksEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent: SupplementaryWebLinksEvent; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + /** + * @public + * Followup prompt event + */ + interface FollowupPromptEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent: FollowupPromptEvent; + codeEvent?: never; + intentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + /** + * @public + * Code Generated event + */ + interface CodeEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent: CodeEvent; + intentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + /** + * @public + * Intents event + */ + interface IntentsEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent: IntentsEvent; + invalidStateEvent?: never; + error?: never; + $unknown?: never; + } + /** + * @public + * Invalid State event + */ + interface InvalidStateEventMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + invalidStateEvent: InvalidStateEvent; + error?: never; + $unknown?: never; + } + /** + * @public + * Internal Server Exception + */ + interface ErrorMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + invalidStateEvent?: never; + error: InternalServerException; + $unknown?: never; + } + /** + * @public + */ + interface $UnknownMember { + messageMetadataEvent?: never; + assistantResponseEvent?: never; + codeReferenceEvent?: never; + supplementaryWebLinksEvent?: never; + followupPromptEvent?: never; + codeEvent?: never; + intentsEvent?: never; + invalidStateEvent?: never; + error?: never; + $unknown: [string, any]; + } + interface Visitor { + messageMetadataEvent: (value: MessageMetadataEvent) => T; + assistantResponseEvent: (value: AssistantResponseEvent) => T; + codeReferenceEvent: (value: CodeReferenceEvent) => T; + supplementaryWebLinksEvent: (value: SupplementaryWebLinksEvent) => T; + followupPromptEvent: (value: FollowupPromptEvent) => T; + codeEvent: (value: CodeEvent) => T; + intentsEvent: (value: IntentsEvent) => T; + invalidStateEvent: (value: InvalidStateEvent) => T; + error: (value: InternalServerException) => T; + _: (name: string, value: any) => T; + } + const visit: (value: ChatResponseStream, visitor: Visitor) => T; +} +/** + * @internal + */ +export declare const ChatResponseStreamFilterSensitiveLog: (obj: ChatResponseStream) => any; +/** + * @public + * @enum + */ +export declare const ChatTriggerType: { + /** + * Indicates the Chat was triggered in response to a IDE diagnostic + */ + readonly DIAGNOSTIC: "DIAGNOSTIC"; + /** + * Indicates the Chat was triggered due to an explicit chat request by an end-user + */ + readonly MANUAL: "MANUAL"; +}; +/** + * @public + */ +export type ChatTriggerType = typeof ChatTriggerType[keyof typeof ChatTriggerType]; +/** + * @public + * @enum + */ +export declare const ContextTruncationScheme: { + readonly ANALYSIS: "ANALYSIS"; + readonly GUMBY: "GUMBY"; +}; +/** + * @public + */ +export type ContextTruncationScheme = typeof ContextTruncationScheme[keyof typeof ContextTruncationScheme]; +/** + * @public + * Structure to represent the current state of a chat conversation. + */ +export interface ConversationState { + /** + * @public + * Unique identifier for the chat conversation stream + */ + conversationId?: string; + /** + * @public + * Holds the history of chat messages. + */ + history?: (ChatMessage)[]; + /** + * @public + * Holds the current message being processed or displayed. + */ + currentMessage: ChatMessage | undefined; + /** + * @public + * Trigger Reason for Chat + */ + chatTriggerType: ChatTriggerType | string | undefined; + customizationArn?: string; +} +/** + * @internal + */ +export declare const ConversationStateFilterSensitiveLog: (obj: ConversationState) => any; +/** + * @public + * This exception is translated to a 204 as it succeeded the IAM Auth. + */ +export declare class DryRunOperationException extends __BaseException { + readonly name: "DryRunOperationException"; + readonly $fault: "client"; + responseCode?: number; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType); +} +/** + * @public + * @enum + */ +export declare const TransformationDownloadArtifactType: { + readonly CLIENT_INSTRUCTIONS: "ClientInstructions"; + readonly LOGS: "Logs"; +}; +/** + * @public + */ +export type TransformationDownloadArtifactType = typeof TransformationDownloadArtifactType[keyof typeof TransformationDownloadArtifactType]; +/** + * @public + * Transformation export context + */ +export interface TransformationExportContext { + downloadArtifactId: string | undefined; + downloadArtifactType: TransformationDownloadArtifactType | string | undefined; +} +/** + * @public + * Export Context + */ +export type ExportContext = ExportContext.TransformationExportContextMember | ExportContext.$UnknownMember; +/** + * @public + */ +export declare namespace ExportContext { + /** + * @public + * Transformation export context + */ + interface TransformationExportContextMember { + transformationExportContext: TransformationExportContext; + $unknown?: never; + } + /** + * @public + */ + interface $UnknownMember { + transformationExportContext?: never; + $unknown: [string, any]; + } + interface Visitor { + transformationExportContext: (value: TransformationExportContext) => T; + _: (name: string, value: any) => T; + } + const visit: (value: ExportContext, visitor: Visitor) => T; +} +/** + * @public + * @enum + */ +export declare const ExportIntent: { + /** + * Code Task Assist + */ + readonly TASK_ASSIST: "TASK_ASSIST"; + /** + * Code Transformation + */ + readonly TRANSFORMATION: "TRANSFORMATION"; +}; +/** + * @public + */ +export type ExportIntent = typeof ExportIntent[keyof typeof ExportIntent]; +/** + * @public + * Response Stream + */ +export type ResultArchiveStream = ResultArchiveStream.BinaryMetadataEventMember | ResultArchiveStream.BinaryPayloadEventMember | ResultArchiveStream.InternalServerExceptionMember | ResultArchiveStream.$UnknownMember; +/** + * @public + */ +export declare namespace ResultArchiveStream { + /** + * @public + * Payload Part + */ + interface BinaryMetadataEventMember { + binaryMetadataEvent: BinaryMetadataEvent; + binaryPayloadEvent?: never; + internalServerException?: never; + $unknown?: never; + } + /** + * @public + * Payload Part + */ + interface BinaryPayloadEventMember { + binaryMetadataEvent?: never; + binaryPayloadEvent: BinaryPayloadEvent; + internalServerException?: never; + $unknown?: never; + } + /** + * @public + * This exception is thrown when an unexpected error occurred during the processing of a request. + */ + interface InternalServerExceptionMember { + binaryMetadataEvent?: never; + binaryPayloadEvent?: never; + internalServerException: InternalServerException; + $unknown?: never; + } + /** + * @public + */ + interface $UnknownMember { + binaryMetadataEvent?: never; + binaryPayloadEvent?: never; + internalServerException?: never; + $unknown: [string, any]; + } + interface Visitor { + binaryMetadataEvent: (value: BinaryMetadataEvent) => T; + binaryPayloadEvent: (value: BinaryPayloadEvent) => T; + internalServerException: (value: InternalServerException) => T; + _: (name: string, value: any) => T; + } + const visit: (value: ResultArchiveStream, visitor: Visitor) => T; +} +/** + * @internal + */ +export declare const ResultArchiveStreamFilterSensitiveLog: (obj: ResultArchiveStream) => any; +/** + * @public + * This exception is thrown when request was denied due to caller exceeding their usage limits + */ +export declare class ServiceQuotaExceededException extends __BaseException { + readonly name: "ServiceQuotaExceededException"; + readonly $fault: "client"; + /** + * @internal + */ + constructor(opts: __ExceptionOptionType); +} +/** + * @public + * Represents a Workspace state uploaded to S3 for Async Code Actions + */ +export interface WorkspaceState { + /** + * @public + * Upload ID representing an Upload using a PreSigned URL + */ + uploadId: string | undefined; + /** + * @public + * Primary programming language of the Workspace + */ + programmingLanguage: ProgrammingLanguage | undefined; + /** + * @public + * Workspace context truncation schemes based on usecase + */ + contextTruncationScheme?: ContextTruncationScheme | string; +} +/** + * @public + * Structure to represent a new generate assistant response request. + */ +export interface GenerateAssistantResponseRequest { + /** + * @public + * Structure to represent the current state of a chat conversation. + */ + conversationState: ConversationState | undefined; + profileArn?: string; +} +/** + * @internal + */ +export declare const GenerateAssistantResponseRequestFilterSensitiveLog: (obj: GenerateAssistantResponseRequest) => any; +/** + * @public + * Structure to represent generate assistant response response. + */ +export interface GenerateAssistantResponseResponse { + /** + * @public + * ID which represents a multi-turn conversation + */ + conversationId: string | undefined; + /** + * @public + * Streaming events from UniDirectional Streaming Conversational APIs. + */ + generateAssistantResponseResponse: AsyncIterable | undefined; +} +/** + * @internal + */ +export declare const GenerateAssistantResponseResponseFilterSensitiveLog: (obj: GenerateAssistantResponseResponse) => any; +/** + * @public + * Structure to represent a new ExportResultArchive request. + */ +export interface ExportResultArchiveRequest { + exportId: string | undefined; + /** + * @public + * Export Intent + */ + exportIntent: ExportIntent | string | undefined; + /** + * @public + * Export Context + */ + exportContext?: ExportContext; +} +/** + * @public + * Structure to represent ExportResultArchive response. + */ +export interface ExportResultArchiveResponse { + /** + * @public + * Response Stream + */ + body: AsyncIterable | undefined; +} +/** + * @internal + */ +export declare const ExportResultArchiveResponseFilterSensitiveLog: (obj: ExportResultArchiveResponse) => any; +/** + * @public + * @enum + */ +export declare const Origin: { + /** + * AWS Chatbot + */ + readonly CHATBOT: "CHATBOT"; + /** + * AWS Management Console (https://.console.aws.amazon.com) + */ + readonly CONSOLE: "CONSOLE"; + /** + * AWS Documentation Website (https://docs.aws.amazon.com) + */ + readonly DOCUMENTATION: "DOCUMENTATION"; + /** + * Any IDE caller. + */ + readonly IDE: "IDE"; + /** + * AWS Marketing Website (https://aws.amazon.com) + */ + readonly MARKETING: "MARKETING"; + /** + * MD. + */ + readonly MD: "MD"; + /** + * AWS Mobile Application (ACMA) + */ + readonly MOBILE: "MOBILE"; + /** + * Internal Service Traffic (Integ Tests, Canaries, etc.). This is the default when no Origin header present in request. + */ + readonly SERVICE_INTERNAL: "SERVICE_INTERNAL"; + /** + * Unified Search in AWS Management Console (https://.console.aws.amazon.com) + */ + readonly UNIFIED_SEARCH: "UNIFIED_SEARCH"; + /** + * Origin header is not set. + */ + readonly UNKNOWN: "UNKNOWN"; +}; +/** + * @public + */ +export type Origin = typeof Origin[keyof typeof Origin]; +/** + * @public + * Structure to represent a new generate assistant response request. + */ +export interface ConverseStreamRequest { + /** + * @public + * Structure to represent the current state of a chat conversation. + */ + conversationState: ConversationState | undefined; + profileArn?: string; + /** + * @public + * The origin of the caller + */ + source?: Origin | string; + dryRun?: boolean; +} +/** + * @internal + */ +export declare const ConverseStreamRequestFilterSensitiveLog: (obj: ConverseStreamRequest) => any; +/** + * @public + * Structure to represent generate assistant response response. + */ +export interface ConverseStreamResponse { + /** + * @public + * ID which represents a multi-turn conversation + */ + conversationId: string | undefined; + /** + * @public + * UtteranceId + */ + utteranceId?: string; + /** + * @public + * Streaming events from UniDirectional Streaming Conversational APIs. + */ + converseStreamResponse: AsyncIterable | undefined; +} +/** + * @internal + */ +export declare const ConverseStreamResponseFilterSensitiveLog: (obj: ConverseStreamResponse) => any; +/** + * @public + * Structure to represent execute planning interaction request. + */ +export interface GenerateTaskAssistPlanRequest { + /** + * @public + * Structure to represent the current state of a chat conversation. + */ + conversationState: ConversationState | undefined; + /** + * @public + * Represents a Workspace state uploaded to S3 for Async Code Actions + */ + workspaceState: WorkspaceState | undefined; +} +/** + * @internal + */ +export declare const GenerateTaskAssistPlanRequestFilterSensitiveLog: (obj: GenerateTaskAssistPlanRequest) => any; +/** + * @public + * Structure to represent execute planning interaction response. + */ +export interface GenerateTaskAssistPlanResponse { + /** + * @public + * Streaming events from UniDirectional Streaming Conversational APIs. + */ + planningResponseStream?: AsyncIterable; +} +/** + * @internal + */ +export declare const GenerateTaskAssistPlanResponseFilterSensitiveLog: (obj: GenerateTaskAssistPlanResponse) => any; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/protocols/Aws_restJson1.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/protocols/Aws_restJson1.d.ts new file mode 100644 index 00000000000..537d911f133 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-types/protocols/Aws_restJson1.d.ts @@ -0,0 +1,38 @@ +import { ConverseStreamCommandInput, ConverseStreamCommandOutput } from "../commands/ConverseStreamCommand"; +import { ExportResultArchiveCommandInput, ExportResultArchiveCommandOutput } from "../commands/ExportResultArchiveCommand"; +import { GenerateAssistantResponseCommandInput, GenerateAssistantResponseCommandOutput } from "../commands/GenerateAssistantResponseCommand"; +import { GenerateTaskAssistPlanCommandInput, GenerateTaskAssistPlanCommandOutput } from "../commands/GenerateTaskAssistPlanCommand"; +import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http"; +import { EventStreamSerdeContext as __EventStreamSerdeContext, SerdeContext as __SerdeContext } from "@smithy/types"; +/** + * serializeAws_restJson1ExportResultArchiveCommand + */ +export declare const se_ExportResultArchiveCommand: (input: ExportResultArchiveCommandInput, context: __SerdeContext) => Promise<__HttpRequest>; +/** + * serializeAws_restJson1GenerateAssistantResponseCommand + */ +export declare const se_GenerateAssistantResponseCommand: (input: GenerateAssistantResponseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>; +/** + * serializeAws_restJson1GenerateTaskAssistPlanCommand + */ +export declare const se_GenerateTaskAssistPlanCommand: (input: GenerateTaskAssistPlanCommandInput, context: __SerdeContext) => Promise<__HttpRequest>; +/** + * serializeAws_restJson1ConverseStreamCommand + */ +export declare const se_ConverseStreamCommand: (input: ConverseStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>; +/** + * deserializeAws_restJson1ExportResultArchiveCommand + */ +export declare const de_ExportResultArchiveCommand: (output: __HttpResponse, context: __SerdeContext & __EventStreamSerdeContext) => Promise; +/** + * deserializeAws_restJson1GenerateAssistantResponseCommand + */ +export declare const de_GenerateAssistantResponseCommand: (output: __HttpResponse, context: __SerdeContext & __EventStreamSerdeContext) => Promise; +/** + * deserializeAws_restJson1GenerateTaskAssistPlanCommand + */ +export declare const de_GenerateTaskAssistPlanCommand: (output: __HttpResponse, context: __SerdeContext & __EventStreamSerdeContext) => Promise; +/** + * deserializeAws_restJson1ConverseStreamCommand + */ +export declare const de_ConverseStreamCommand: (output: __HttpResponse, context: __SerdeContext & __EventStreamSerdeContext) => Promise; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.browser.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.browser.d.ts new file mode 100644 index 00000000000..4f2b23143a2 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.browser.d.ts @@ -0,0 +1,39 @@ +import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler"; +import { CodeWhispererStreamingClientConfig } from "./CodeWhispererStreamingClient"; +/** + * @internal + */ +export declare const getRuntimeConfig: (config: CodeWhispererStreamingClientConfig) => { + runtime: string; + defaultsMode: import("@smithy/types").Provider; + bodyLengthChecker: import("@smithy/types").BodyLengthCalculator; + defaultUserAgentProvider: import("@smithy/types").Provider; + eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider; + maxAttempts: number | import("@smithy/types").Provider; + requestHandler: ((import("@smithy/types").RequestHandler | Record | import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/fetch-http-handler").FetchHttpHandlerOptions) & import("@smithy/types").RequestHandler & { + updateHttpClientConfig(key: never, value: never): void; + httpHandlerConfigs(): {}; + }) | RequestHandler; + retryMode: string | import("@smithy/types").Provider; + sha256: import("@smithy/types").HashConstructor; + streamCollector: import("@smithy/types").StreamCollector; + useDualstackEndpoint: boolean | import("@smithy/types").Provider; + useFipsEndpoint: boolean | import("@smithy/types").Provider; + apiVersion: string; + urlParser: import("@smithy/types").UrlParser; + base64Decoder: import("@smithy/types").Decoder; + base64Encoder: (_input: string | Uint8Array) => string; + utf8Decoder: import("@smithy/types").Decoder; + utf8Encoder: (input: string | Uint8Array) => string; + disableHostPrefix: boolean; + serviceId: string; + regionInfoProvider: import("@smithy/types").RegionInfoProvider; + logger: import("@smithy/types").Logger; + extensions: import("./runtimeExtensions").RuntimeExtension[]; + region?: string | import("@smithy/types").Provider | undefined; + endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider | undefined; + tls?: boolean | undefined; + retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined; + token?: import("@aws-sdk/types").TokenIdentity | import("@aws-sdk/types").TokenIdentityProvider | undefined; + customUserAgent?: string | import("@smithy/types").UserAgent | undefined; +}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.d.ts new file mode 100644 index 00000000000..27ddba308f5 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.d.ts @@ -0,0 +1,39 @@ +import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler"; +import { CodeWhispererStreamingClientConfig } from "./CodeWhispererStreamingClient"; +/** + * @internal + */ +export declare const getRuntimeConfig: (config: CodeWhispererStreamingClientConfig) => { + runtime: string; + defaultsMode: import("@smithy/types").Provider; + bodyLengthChecker: import("@smithy/types").BodyLengthCalculator; + defaultUserAgentProvider: import("@smithy/types").Provider; + eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider; + maxAttempts: number | import("@smithy/types").Provider; + requestHandler: ((import("@smithy/types").RequestHandler | Record | import("@smithy/node-http-handler").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions) & import("@smithy/types").RequestHandler & { + updateHttpClientConfig(key: never, value: never): void; + httpHandlerConfigs(): {}; + }) | RequestHandler; + retryMode: string | import("@smithy/types").Provider; + sha256: import("@smithy/types").HashConstructor; + streamCollector: import("@smithy/types").StreamCollector; + useDualstackEndpoint: boolean | import("@smithy/types").Provider; + useFipsEndpoint: boolean | import("@smithy/types").Provider; + apiVersion: string; + urlParser: import("@smithy/types").UrlParser; + base64Decoder: import("@smithy/types").Decoder; + base64Encoder: (_input: string | Uint8Array) => string; + utf8Decoder: import("@smithy/types").Decoder; + utf8Encoder: (input: string | Uint8Array) => string; + disableHostPrefix: boolean; + serviceId: string; + regionInfoProvider: import("@smithy/types").RegionInfoProvider; + logger: import("@smithy/types").Logger; + extensions: import("./runtimeExtensions").RuntimeExtension[]; + region?: string | import("@smithy/types").Provider | undefined; + endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider | undefined; + tls?: boolean | undefined; + retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined; + token?: import("@aws-sdk/types").TokenIdentity | import("@aws-sdk/types").TokenIdentityProvider | undefined; + customUserAgent?: string | import("@smithy/types").UserAgent | undefined; +}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.native.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.native.d.ts new file mode 100644 index 00000000000..2b4c9efde4f --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.native.d.ts @@ -0,0 +1,38 @@ +import { CodeWhispererStreamingClientConfig } from "./CodeWhispererStreamingClient"; +/** + * @internal + */ +export declare const getRuntimeConfig: (config: CodeWhispererStreamingClientConfig) => { + runtime: string; + sha256: import("@smithy/types").HashConstructor; + requestHandler: ((import("@smithy/types").RequestHandler | Record | import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions) & import("@smithy/types").RequestHandler & { + updateHttpClientConfig(key: never, value: never): void; + httpHandlerConfigs(): {}; + }) | import("@smithy/fetch-http-handler").FetchHttpHandler; + apiVersion: string; + urlParser: import("@smithy/types").UrlParser; + bodyLengthChecker: import("@smithy/types").BodyLengthCalculator; + streamCollector: import("@smithy/types").StreamCollector; + base64Decoder: import("@smithy/types").Decoder; + base64Encoder: (_input: string | Uint8Array) => string; + utf8Decoder: import("@smithy/types").Decoder; + utf8Encoder: (input: string | Uint8Array) => string; + disableHostPrefix: boolean; + serviceId: string; + useDualstackEndpoint: boolean | import("@smithy/types").Provider; + useFipsEndpoint: boolean | import("@smithy/types").Provider; + regionInfoProvider: import("@smithy/types").RegionInfoProvider; + defaultUserAgentProvider: import("@smithy/types").Provider; + maxAttempts: number | import("@smithy/types").Provider; + retryMode: string | import("@smithy/types").Provider; + logger: import("@smithy/types").Logger; + extensions: import("./runtimeExtensions").RuntimeExtension[]; + eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider; + defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider; + region?: string | import("@smithy/types").Provider | undefined; + endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider | undefined; + tls?: boolean | undefined; + retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined; + token?: import("@aws-sdk/types").TokenIdentity | import("@aws-sdk/types").TokenIdentityProvider | undefined; + customUserAgent?: string | import("@smithy/types").UserAgent | undefined; +}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.shared.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.shared.d.ts new file mode 100644 index 00000000000..c6fbf4fc5c7 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.shared.d.ts @@ -0,0 +1,17 @@ +import { CodeWhispererStreamingClientConfig } from "./CodeWhispererStreamingClient"; +/** + * @internal + */ +export declare const getRuntimeConfig: (config: CodeWhispererStreamingClientConfig) => { + apiVersion: string; + base64Decoder: import("@smithy/types").Decoder; + base64Encoder: (_input: string | Uint8Array) => string; + disableHostPrefix: boolean; + extensions: import("./runtimeExtensions").RuntimeExtension[]; + logger: import("@smithy/types").Logger; + regionInfoProvider: import("@smithy/types").RegionInfoProvider; + serviceId: string; + urlParser: import("@smithy/types").UrlParser; + utf8Decoder: import("@smithy/types").Decoder; + utf8Encoder: (input: string | Uint8Array) => string; +}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeExtensions.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeExtensions.d.ts new file mode 100644 index 00000000000..454d1c6e11d --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeExtensions.d.ts @@ -0,0 +1,17 @@ +import { CodeWhispererStreamingExtensionConfiguration } from "./extensionConfiguration"; +/** + * @public + */ +export interface RuntimeExtension { + configure(extensionConfiguration: CodeWhispererStreamingExtensionConfiguration): void; +} +/** + * @public + */ +export interface RuntimeExtensionsConfig { + extensions: RuntimeExtension[]; +} +/** + * @internal + */ +export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any; diff --git a/src.gen/@amzn/codewhisperer-streaming/tsconfig.cjs.tsbuildinfo b/src.gen/@amzn/codewhisperer-streaming/tsconfig.cjs.tsbuildinfo new file mode 100644 index 00000000000..f7f80618991 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/tsconfig.cjs.tsbuildinfo @@ -0,0 +1 @@ +{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/@smithy/types/dist-types/abort.d.ts","./node_modules/@smithy/types/dist-types/auth/auth.d.ts","./node_modules/@smithy/types/dist-types/auth/httpapikeyauth.d.ts","./node_modules/@smithy/types/dist-types/identity/identity.d.ts","./node_modules/@smithy/types/dist-types/endpoint.d.ts","./node_modules/@smithy/types/dist-types/logger.d.ts","./node_modules/@smithy/types/dist-types/uri.d.ts","./node_modules/@smithy/types/dist-types/http.d.ts","./node_modules/@smithy/types/dist-types/response.d.ts","./node_modules/@smithy/types/dist-types/util.d.ts","./node_modules/@smithy/types/dist-types/middleware.d.ts","./node_modules/@smithy/types/dist-types/auth/httpsigner.d.ts","./node_modules/@smithy/types/dist-types/auth/identityproviderconfig.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthscheme.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/types/dist-types/auth/index.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/index.d.ts","./node_modules/@smithy/types/dist-types/transform/exact.d.ts","./node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts","./node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/crypto.d.ts","./node_modules/@smithy/types/dist-types/checksum.d.ts","./node_modules/@smithy/types/dist-types/command.d.ts","./node_modules/@smithy/types/dist-types/client.d.ts","./node_modules/@smithy/types/dist-types/connection/config.d.ts","./node_modules/@smithy/types/dist-types/transfer.d.ts","./node_modules/@smithy/types/dist-types/connection/manager.d.ts","./node_modules/@smithy/types/dist-types/connection/pool.d.ts","./node_modules/@smithy/types/dist-types/connection/index.d.ts","./node_modules/@smithy/types/dist-types/eventstream.d.ts","./node_modules/@smithy/types/dist-types/encode.d.ts","./node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","./node_modules/@smithy/types/dist-types/endpoints/endpointruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/errorruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/treeruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/rulesetobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/index.d.ts","./node_modules/@smithy/types/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultclientconfiguration.d.ts","./node_modules/@smithy/types/dist-types/shapes.d.ts","./node_modules/@smithy/types/dist-types/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/types/dist-types/extensions/index.d.ts","./node_modules/@smithy/types/dist-types/http/httphandlerinitialization.d.ts","./node_modules/@smithy/types/dist-types/identity/apikeyidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/index.d.ts","./node_modules/@smithy/types/dist-types/pagination.d.ts","./node_modules/@smithy/types/dist-types/profile.d.ts","./node_modules/@smithy/types/dist-types/serde.d.ts","./node_modules/@smithy/types/dist-types/signature.d.ts","./node_modules/@smithy/types/dist-types/stream.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","./node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","./node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","./node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","./node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts","./node_modules/@smithy/types/dist-types/waiter.d.ts","./node_modules/@smithy/types/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/nooplogger.d.ts","./node_modules/@smithy/smithy-client/dist-types/client.d.ts","./node_modules/@smithy/util-stream/dist-types/blob/uint8arrayblobadapter.d.ts","./node_modules/@smithy/util-stream/dist-types/getawschunkedencodingstream.d.ts","./node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts","./node_modules/@smithy/util-stream/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/resolveendpointconfig.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getendpointfrominstructions.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toendpointv1.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/endpointmiddleware.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/getendpointplugin.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/command.d.ts","./node_modules/@smithy/smithy-client/dist-types/constants.d.ts","./node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts","./node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts","./node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts","./node_modules/@smithy/smithy-client/dist-types/emitwarningifunsupportedversion.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts","./node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts","./node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts","./node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts","./node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-every.d.ts","./node_modules/@smithy/smithy-client/dist-types/index.d.ts","./dist-types/models/codewhispererstreamingserviceexception.d.ts","./dist-types/models/models_0.d.ts","./dist-types/commands/conversestreamcommand.d.ts","./dist-types/commands/exportresultarchivecommand.d.ts","./dist-types/commands/generateassistantresponsecommand.d.ts","./dist-types/commands/generatetaskassistplancommand.d.ts","./node_modules/@aws-sdk/types/dist-types/abort.d.ts","./node_modules/@aws-sdk/types/dist-types/auth.d.ts","./node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","./node_modules/@aws-sdk/types/dist-types/checksum.d.ts","./node_modules/@aws-sdk/types/dist-types/client.d.ts","./node_modules/@aws-sdk/types/dist-types/command.d.ts","./node_modules/@aws-sdk/types/dist-types/connection.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/identity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/anonymousidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/loginidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","./node_modules/@aws-sdk/types/dist-types/util.d.ts","./node_modules/@aws-sdk/types/dist-types/credentials.d.ts","./node_modules/@aws-sdk/types/dist-types/crypto.d.ts","./node_modules/@aws-sdk/types/dist-types/dns.d.ts","./node_modules/@aws-sdk/types/dist-types/encode.d.ts","./node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","./node_modules/@aws-sdk/types/dist-types/eventstream.d.ts","./node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/types/dist-types/http.d.ts","./node_modules/@aws-sdk/types/dist-types/logger.d.ts","./node_modules/@aws-sdk/types/dist-types/middleware.d.ts","./node_modules/@aws-sdk/types/dist-types/pagination.d.ts","./node_modules/@aws-sdk/types/dist-types/profile.d.ts","./node_modules/@aws-sdk/types/dist-types/request.d.ts","./node_modules/@aws-sdk/types/dist-types/response.d.ts","./node_modules/@aws-sdk/types/dist-types/retry.d.ts","./node_modules/@aws-sdk/types/dist-types/serde.d.ts","./node_modules/@aws-sdk/types/dist-types/shapes.d.ts","./node_modules/@aws-sdk/types/dist-types/signature.d.ts","./node_modules/@aws-sdk/types/dist-types/stream.d.ts","./node_modules/@aws-sdk/types/dist-types/token.d.ts","./node_modules/@aws-sdk/types/dist-types/transfer.d.ts","./node_modules/@aws-sdk/types/dist-types/uri.d.ts","./node_modules/@aws-sdk/types/dist-types/waiter.d.ts","./node_modules/@aws-sdk/types/dist-types/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/httprequest.d.ts","./node_modules/@smithy/protocol-http/dist-types/httpresponse.d.ts","./node_modules/@smithy/protocol-http/dist-types/httphandler.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/httpextensionconfiguration.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/field.d.ts","./node_modules/@smithy/protocol-http/dist-types/fields.d.ts","./node_modules/@smithy/protocol-http/dist-types/isvalidhostname.d.ts","./node_modules/@smithy/protocol-http/dist-types/types.d.ts","./node_modules/@smithy/protocol-http/dist-types/index.d.ts","./dist-types/extensionconfiguration.d.ts","./dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/gettokenplugin.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/resolvetokenconfig.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/tokenmiddleware.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromenv.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/gethomedir.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getprofilename.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfilepath.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfromfile.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadsharedconfigfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadssosessiondata.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/parseknownfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromsharedconfigfiles.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromstatic.d.ts","./node_modules/@smithy/node-config-provider/dist-types/configloader.d.ts","./node_modules/@smithy/node-config-provider/dist-types/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusedualstackendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusefipsendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolveendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolvecustomendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvarianttag.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvariant.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/partitionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/regionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/getregioninfo.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/eventstreamserdeconfig.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts","./node_modules/@smithy/util-retry/dist-types/types.d.ts","./node_modules/@smithy/util-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/configuredretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/defaultratelimiter.d.ts","./node_modules/@smithy/util-retry/dist-types/config.d.ts","./node_modules/@smithy/util-retry/dist-types/constants.d.ts","./node_modules/@smithy/util-retry/dist-types/index.d.ts","./node_modules/@smithy/middleware-retry/dist-types/types.d.ts","./node_modules/@smithy/middleware-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts","./node_modules/@smithy/middleware-retry/dist-types/delaydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/omitretryheadersmiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrymiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/index.d.ts","./dist-types/codewhispererstreamingclient.d.ts","./dist-types/codewhispererstreaming.d.ts","./dist-types/endpoints.d.ts","./dist-types/commands/index.d.ts","./dist-types/models/index.d.ts","./dist-types/index.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts","./dist-types/runtimeconfig.browser.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts","./node_modules/@smithy/node-http-handler/dist-types/index.d.ts","./dist-types/runtimeconfig.d.ts","./dist-types/runtimeconfig.native.d.ts","./dist-types/runtimeconfig.shared.d.ts","./dist-types/protocols/aws_restjson1.d.ts","./node_modules/tslib/tslib.d.ts","./src/models/codewhispererstreamingserviceexception.ts","./src/models/models_0.ts","./node_modules/@smithy/middleware-serde/dist-types/deserializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serdeplugin.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/index.d.ts","./src/commands/exportresultarchivecommand.ts","./src/commands/generateassistantresponsecommand.ts","./src/commands/generatetaskassistplancommand.ts","./node_modules/@types/uuid/index.d.ts","./src/protocols/aws_restjson1.ts","./src/commands/conversestreamcommand.ts","./package.json","./node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts","./node_modules/@smithy/hash-node/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/index.d.ts","./src/endpoints.ts","./node_modules/@smithy/url-parser/dist-types/index.d.ts","./node_modules/@smithy/util-base64/dist-types/frombase64.d.ts","./node_modules/@smithy/util-base64/dist-types/tobase64.d.ts","./node_modules/@smithy/util-base64/dist-types/index.d.ts","./node_modules/@smithy/util-utf8/dist-types/fromutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/touint8array.d.ts","./node_modules/@smithy/util-utf8/dist-types/toutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/index.d.ts","./src/runtimeconfig.shared.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts","./src/runtimeconfig.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts","./src/extensionconfiguration.ts","./src/runtimeextensions.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/loggermiddleware.d.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts","./node_modules/@smithy/middleware-content-length/dist-types/index.d.ts","./src/codewhispererstreamingclient.ts","./src/codewhispererstreaming.ts","./src/commands/index.ts","./src/models/index.ts","./src/index.ts","./node_modules/@aws-crypto/sha256-browser/build/crossplatformsha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/ie11sha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/webcryptosha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/index.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts","./src/runtimeconfig.browser.ts","./node_modules/@aws-crypto/sha256-js/build/jssha256.d.ts","./node_modules/@aws-crypto/sha256-js/build/index.d.ts","./src/runtimeconfig.native.ts","../../../node_modules/@types/adm-zip/index.d.ts","../../../node_modules/@types/readdir-glob/index.d.ts","../../../node_modules/@types/archiver/index.d.ts","../../../node_modules/@types/async-lock/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/bytes/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/circular-dependency-plugin/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/cross-spawn/index.d.ts","../../../node_modules/@types/diff/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/glob/node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/parse5/dist/common/html.d.ts","../../../node_modules/parse5/dist/common/token.d.ts","../../../node_modules/parse5/dist/common/error-codes.d.ts","../../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/dist/tokenizer/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/parser/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/serializer/index.d.ts","../../../node_modules/parse5/dist/common/foreign-content.d.ts","../../../node_modules/parse5/dist/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/linkify-it/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdurl/encode.d.ts","../../../node_modules/@types/mdurl/decode.d.ts","../../../node_modules/@types/mdurl/parse.d.ts","../../../node_modules/@types/mdurl/format.d.ts","../../../node_modules/@types/mdurl/index.d.ts","../../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../../node_modules/@types/markdown-it/lib/token.d.ts","../../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../../node_modules/@types/markdown-it/lib/index.d.ts","../../../node_modules/@types/markdown-it/index.d.ts","../../../node_modules/@types/mime-types/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/prismjs/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/proper-lockfile/index.d.ts","../../../node_modules/@types/readline-sync/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sinon/node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/stream-buffers/index.d.ts","../../../node_modules/@types/tcp-port-used/index.d.ts","../../../node_modules/@types/vscode/index.d.ts","../../../node_modules/@types/vscode-webview/index.d.ts","../../../node_modules/@types/webidl-conversions/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/whatwg-url/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/xml2js/lib/processors.d.ts","../../../node_modules/@types/xml2js/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"c55ae709f94155174ff63647edd2a7e3acbd02a2909aa2541569e8b8bac9fc40","530e5c7e4f74267b7800f1702cf0c576282296a960acbdb2960389b2b1d0875b","1c483cc60a58a0d4c9a068bdaa8d95933263e6017fbea33c9f99790cf870f0a8","07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","d5f1bbd44ba4f63d8a01fff5e1edc1c1fb50e9caa48a4fa48298a4485d6ff75c","4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","d12680e217215b37094868d491d00196e80f270ce47e5a4bc50269945ae5554d","396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","b7b881ced4ed4dee13d6e0ccdb2296f66663ba6b1419767271090b3ff3478bb9","06289b9873760aac77aed4035ea6c60b1e0879b8afe47a4530bc8522b9b804b1","63c36aa73242aa745fae813c40585111ead225394b0a0ba985c2683baa6b0ef9","3e7ffc7dd797e5d44d387d0892bc288480493e73dcab9832812907d1389e4a98","db011ec9589fd51995cbd0765673838e38e6485a6559163cc53dcf508b480909","e1a4253f0cca15c14516f52a2ad36c3520b140b5dfb3b3880a368cd75d45d6d9","159af954f2633a12fdee68605009e7e5b150dbeb6d70c46672fd41059c154d53","f5331cb9cc00970e4831e7f0de9688e04986bcde808cac10caa3e7005e203907",{"version":"d20bbe9029b614c171212c50c842fa7ddfc61a6bbc697710ac70e4f7f0c77d15","affectsGlobalScope":true},"a9d67f9ae6bb38f732c51d1081af6a0ac6cae5e122472cacc2d54db178013699","1296a364908ba9c646372edc18ee0e140d9a388956b0e9510eec906b19fa5b36","1c863a53fb796e962c4b3e54bc7b77fd04a518444263d307290ff04f619c275e","ff98afc32b01e580077faf85b60232b65c40df0c3ecaa765fabc347a639b4225",{"version":"30133f9ceaa46c9a20092c382fed7b8d09393cf1934392149ea8202991edb3ea","affectsGlobalScope":true},"30c05e45ec7e1247ba9b87ad2acfae4fda401737f0e8a59f78beda8a4e22b110","2da83cc57a94f7aee832f2a71e1a294d857492761c1f5db717ea42c1a22467bc","aa5cc73a5f548f5bc1b4279a730c03294dfa6e98bed228d4ed6322a4183b26ad","b3f1ac9fe3d18d6cd04ab1e67a5da8c33ceb47f26b47e67896a5b2f8293c8a32",{"version":"ca88e8b07c8186ef3180bf9b6b4456311ae41bf3fe5652c27a2a3feba04136b0","affectsGlobalScope":true},{"version":"592d937b7df1b74af7fa81656503fc268fee50f0e882178e851b667def34414b","affectsGlobalScope":true},"fdfdf2eab2bded61ee321ec88b8e083fe8d9fedad25a16ae040740869bc64e48","e8067fc8b0247f8b5ad781bd22f5dd19f6a39961ba60fa6fc13cfe9e624ca92f","842ef57ce3043fba0b0fb7eece785140af9d2381e4bed4f2744d3060352f2fd5","9095b6f13d9e48704b919d9b4162c48b04236a4ce664dc07549a435d8f4e612e","111b4c048fe89d25bb4d2a0646623ff4c456a313ed5bfb647b2262dda69a4ff8","f70f62f5f87ff8900090069554f79d9757f8e385322d0e26268463e27c098204","0932ed41e23d22fa5359f74805c687314e4b707b3428e52419d0fbefc0d66661","af07f4baaca7e5cf70cb8887e7d4f23d6bb0c0dd6ca1329c3d959ea749b7a14d","c80402af7b0420f57372ac99885f1ab058121db72418e43d25f440abda7bbe23","71aba6ce66e76ccfd3ba92b8b5c6658bad293f1313f012821c4bff1dd64ca278","17d944cab17bc9e32975250e8abe8073702f9493582d847805e446641bd7798f",{"version":"c6bfc70bbdee282436ee11e887cceaa5988ac4eec60d5eb9b3711748c811831a","affectsGlobalScope":true},"f9ca5159f56c1fe99cdfc5f942585de20695a2a343db8543383b239c050f6aa4","84634ac706042ac8ee3a1e141bcdee03621725ab55455dba878a5503c6c7e037","d796c62c3c91c22c331b7465be89d009459eb1eb689304c476275f48676eaf9e","51cbf03ad34c3e84d1998bd57d1fd8da333d66dd65904625d22dc01b751d99c7","c31bbdc27ef936061eaa9d423c5da7c5b439a4ff6b5f1b18f89b30cf119d5a56","2a4ae2a8f834858602089792c9e8bab00075f5c4b1708bd49c298a3e6c95a30c","71e29ae391229f876d8628987640c3c51c89a1c2fd980d1a72d69aeee4239f80","51c74d73649a4d788ed97b38bd55ebac57d85b35cbf4a0357e3382324e10bbe9","c8641524781fa803006a144fd3024d5273ab0c531d8a13bbeaa8c81d8241529f","73e218d8914afc428a24b7d1de42a2cb37f0be7ac1f5c32c4a66379572700b52",{"version":"56ff5262d76c01b3637ca82f9749d3ec0d70cf57d87964bf3e9ba4204241849e","affectsGlobalScope":true},"9e3a18040e5a95f61556e09c932393b49c3b21ce42abe0f4ed74b97173f320db","344922fac39b5732179b606e16781b354c160f0e9bd7f5921a0fdc9fe4ede1fb","c1449f51f9496bb23f33ee48ff590b815393ef560a9e80493614869fe50915da","87a49241df2b37e59f86619091dec2beb9ad8126d7649f0b0edb8fc99eca2499","07efd1f649e91967fada88d53ad64b61c1b2853d212f3eaffc946e7e13d03d67","6d79a0938f4b89c1c1fee2c3426754929173c8888fdfaab6b6d645269945f7bf",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"c6c0bd221bb1e94768e94218f8298e47633495529d60cae7d8da9374247a1cf5","a1b36a1f91a54daf2e89e12b834fa41fb7338bc044d1f08a80817efc93c99ee5","8bb4a5b632dd5a868f3271750895cb61b0e20cff82032d87e89288faee8dd6e2","0c1aabfd9fb1818afb2e798f91f669edafce59cd7e3423d25b1cfccfaaf2c403","017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","aee8faa433dde04beedb779b3329456a286a966462d666c138c19113ce78c79e","d620ec36bfc6f8ed6fdecbe036d55cec81637f32fd34dc7bb7e60eba1764e910","4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","fc9bdd9b3d8fb59c913cb3b8dea0d79b38dfe9331ef07e1c6dc6bf363f061ad6","e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","0c3c4ce6a1884610c99306719f59174d81808c69393c30119f9c2aef0449a2cb","219a25474e58a8161b242776856ec5f6960839b63e74809445e51cadbfc18096","5a0d1534e9493ae44b08b3055172da38370e2afd2bc3d4bea11f7be78344036f","6309a45fc3c03d3c4d56228e995d51974f53009a842374695b34f3607877e5a3","bef94eba81ae2c09059c0d9abdb1ae1b7090314f70550f3c8cd5d7ead4a4f212","48b787ad458be9b524fa5fdfef34f68798074132d4b8cfe6a6fe9c2bf334c532","37280465f8f9b2ea21d490979952b18b7f4d1f0d8fab2d627618fb2cfa1828e3","7281550c523596fd0fd36c6e19aa89075dac93144437ce48490da319b1f4d318","3f3f85dc43cb93c5a797f1ff0fa948d0e17843a443ae11a20cc032ccdf1b9997","020507cb67b96b0830a8636db03ae004181eee323ba33565cfe8d45aaedc4d1d","869010bc679df668137cb3b78a3cb8196e97acf285208a57f6156ceac894a2f7","bcae62618c23047e36d373f0feac5b13f09689e4cd08e788af13271dbe73a139","29a99d2e57b3e08a997cbc2397bdb251441a545306a74b95ffedc5f03d9bc6b7","5ae003688265a1547bbcb344bf0e26cb994149ac2c032756718e9039302dfac8","09e811cc1088d9ea3a7ddd7290f6a13767f56c85daf8c3374a06a45a08d55647","9da2c58a27fdce871c2eac09d5172b04248bb86ada9b0d10e8b3dfa8470b8dd3","5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","7b270dc53f35dd0b44bfa619ad4d351fffd512e14053c3688323ed007eda3f6d","6d4e928f232ade7221cffc6e4332ec935baa176415c9bf5d12111bb883a247d2","e86ad029224d4f2af3e188be8b5e9badf8c7083247572069bac7bd2193131fc7","057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","38aa389acf91d77db5a4f8e26e713ed53dc832ed5573def9cd20acd9ba97c1fe","e56784be93954f1f86d4dd3ac61b4c9727e75864baf123a1b584b970baed4ba0","f878779620c5178d45413b33c214419bb3df2945e703c35e1191188321e3633d","b9115605f72b65a662723020b2a1eb696c375a5803d6b401dc01fcbfe49ece90","151659e152d71986b8943b9943cd7fbe27a65874655081602de7ea24a0f66e9b","4d250e905299144850c6f8e74dad1ee892d847643bacf637e89adcce013f0700","5fca180ba7514e439b225ee5eb47e5cf9254a591095f93cf7ca298ce6264159b","ed3e176bc769725ebc1d93f1d6890fc3d977b9155ae5d03be96ec2d49b303370","7933769d84f5ae16546aef06537ca578f1c8d7cca0708452a00613050ac1f265","cc5c913c4716a0d1563b2a63a7c4dc2fa81b7d7bc58489c79896d69b27e978cd","f194cdeb1caaf80e625f4fad340a9434b2b83786028dcc5ea6f3c459cc7789a0","f8ce447bbda4f75da74cecd866cc1ff9bdde62189ac9d8dc14a16c48b3d702fa","236247fb33a56e1d43b097c000aaafcac8fea1e8bf38d1a64f13889b32c372d0","c7d30b164562b7ce99fcb53ab78f937cc845e003f6089d648351331921379994","fe2d1251f167d801a27f0dfb4e2c14f4f08bf2214d9784a1b8c310fdfdcdaaea","2a1182578228dc1faad14627859042d59ea5ab7e3ac69cb2a3453329aaaa3b83","dfa99386b9a1c1803eb20df3f6d3adc9e44effc84fa7c2ab6537ed1cb5cc8cfb","79b0d5635af72fb87a2a4b62334b0ab996ff7a1a14cfdb895702e74051917718","5f00b052713bfe8e9405df03a1bbe406006b30ec6b0c2ce57d207e70b48cf4e9","7abcae770f21794b5ffbc3186483c3dbcf8b0c8e37d3ef3ed6277ece5c5dd4be","3e642f39da9ad0a4cd16ccbd7f363b6b5ad5fa16a5c6d44753f98fc1e3be9d96","7f5a6eac3d3d334e2f2eba41f659e9618c06361958762869055e22219f341554","6f996f44113b76a9960d3fad280f4f671115c5e971356d1dbb4d1b000af8b3b3","67f2cd6e208e68fdfa366967d1949575df6ccf90c104fc9747b3f1bdb69ad55a","f99ab9dffe6281c9b6df9ae9d8584d18eabf2107572bbd8fa5c83c8afe531af8","4fc9939c86a7d80ab6a361264e5666336d37e080a00d831d9358ad83575267da","f4ba385eedea4d7be1feeeac05aaa05d6741d931251a85ab48e0610271d001ce","fc79932b9aa710f025b89bf8d8329d99080286e5e079a7d5a529236e9f5dd69e","6646d9075e3e0eedb02c9d03bffef54c8bbeb601d27eed46f143aba435bac37d","0dec72b4c5c4bb149750fef4fc26bdae8f410de941ee766c953f5ac77381d690","8f2644578a3273f43fd700803b89b842d2cd09c1fba2421db45737357e50f5b1","f5405fb679a467cb979f8744940b22b7bc3a0bcbe648c3910d98de3188d42a78","68969a0efd9030866f60c027aedbd600f66ea09e1c9290853cc24c2dcc92000f","639f94fe145a72ce520d3d7b9b3b6c9049624d90cbf85cff46fb47fb28d1d8fe","8327a51d574987a2b0f61ea40df4adddf959f67bc48c303d4b33d47ba3be114a","991fd5ebf9f30ffa17cae6faeae6a838d3d91bdcdd419bce358dc99b8e5b0ad0","51b4ab145645785c8ced29238192f870dbb98f1968a7c7ef2580cd40663b2940","589713fefe7282fd008a2672c5fbacc4a94f31138bae6a03db2c7b5453dc8788","786691c952fe3feac79aca8f0e7e580d95c19afc8a4c6f8765e99fb756d8d9d7","4c348f139d006057ce9384e60b4ee1ce06bee5c16e19ff70f293ad88d5893386","e9d33b2549b5779b6cad92cb6a370c6c106cc12dc80da1cc199e2cb3a715bf38","62b753ed351fba7e0f6b57103529ce90f2e11b949b8fc69c39464fe958535c25","21e1fa3e5c95c61161a1ea2d819972e3b7e916a58571f8f9828b8a6c32e641ea","f78d0b00cf9700ef6fb82a5e52eeded028b18733bb8fdcc46a95ce598e83a292","24e26950b5a36dbc7f71e05a5f386c48933459e9322ca8b2c422d9154807526d","5a1c65ae0ada64906e44aebc307bb6444eb3d767feb96baea6116a05fcb1c26c","5522c276ab5033605c3afb218e2451063ad52f02a7561e8190855157732d438e","27da9754c20b488a648128951f3fadbdc56a0eeea0f5a1820f5809a5d008f068","cfbd1c9cadc7b4debc0c4807fccbde9d7ee49588f021e47d8d77cfdb22ef12c9","a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","d97766e9af30de9f96c7a5e8d7d6b3e39a269b8bd011083bd3745be7bd532b13","363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","fa2a8e2cc0bde051290d89f15a7b8f4db16d71cf67892be2bf4fca8cc2c3b338","1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","ea2de1a0ec4c9b8828154a971bfe38c47df2f5e9ec511f1a66adce665b9f04b0","c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","48f1a1b9f15770d9a64b51c596f9569f262fc7e67d7767595068a69539d32939","a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7",{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true},"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","f7a8f4bc1e8e786c6115970b8f3ed4797be48108de00b3552bf590706d3a5e8a","79cbed8c779049fdbdd856f1597f2e79be137b6ed44e66ead16ee8bf035d17da","1a8e6a4f31a5196144f35d0434e16369881d828c849d6a1c9290b6bde8807449","42a9ac86df0fa58634ea8a5f7f07b9b9c3243d82e306fb22d8a41639935a6c87","5766c26941ae00aa889335bcccc1ecb28271b774be92aede801354c9797074bb","3a19286bcc9303c9352c03d68bb4b63cecbf5c9b7848465847bb6c9ceafa1484","c573fef34c2e5cc5269fd9c95fe73a1eb9db17142f5d8f36ffe4a686378b8660","d97e30dd93590392fed422f2b27325d10ab007d034faaaf61e28e9ddc9d3825b","d1f8a829c5e90734bb47a1d1941b8819aeee6e81a2a772c3c0f70b30e3693fa9","be1dfacee25a14d79724ba21f1fde67f966b46e2128c68fed2e48c6e1e9822c5","19b3d0c212d241c237f79009b4cd0051e54971747fd89dc70a74f874d1192534","7daf4e4ddb3c93f922c56c836a33e53bd0f8172b68b1da70103b7330fd0f5406","672efa67dd818957bcef7b98f05e534901a0542292319097b543343e749d4ac2","7639642137f8329ef4a19410ce8d3e46910a76294df263f46b428fd61c79d033","3cae18f8e136a4122570a64862ef441372cb822a906b1ee25f1e13e10aba2783","42b4e53ea2ca9d4cff566336b781121a78db65049fafc73e464255534a4ecf48","445418dec131a34f848ab7a2dfb111ab8e854489d0f83c5d550d4ac948b45c1c","ea01929f899657fb0f6ba17b180e045d7053389cc28b9279524bf1ff2b8c164b","9b1b3740954bcc6a5e5360be7c5e7edfb13fb58cdae347430e0f9b239d63e434","8e69efd9afdfcd34d85adb6d8e71a5e13fea2a33c7019dd624cc7696772183a0","a7ebfe3e2c8f4fea5dac7ffbf6d00acee63c530de24d57cdeeed05530285ca26","82b4045609dc0918319f835de4f6cb6a931fd729602292921c443a732a6bb811","b9c6fc6c7b1296dd405f5dbd91ea1ae9f110de4cfab772c80c77d73fe33b2887","c0c0b22cefd1896b92d805556fcabda18720d24981b8cb74e08ffea1f73f96c2","b97e6411a3ee83e6f77760f0400d117313a980d05ec89f1e1a7502229e36d060","270418f8a6639be745d14bfd085e62685f24eaa6d6482aa9803bae8b8b93919a","4cb33d05ff168c1ca836d6d438f93040972af43fc09774876c4add2ad96d125f","707d01e4e7d69c672cbf82276bcdb6dd584b67da29e07fe5cba8c645ef4398ef","38104b9a37d0b9dc54be36ae43b1a32f9cfae34742743bfd7104cf1f39661225","47ff32ca9ab8474e89615b4bbe5f2264c2940fc12b86c4dc0a99659479517a6b","f892f85b4838f6a2ff1438d240dcf23a872d090794967c7f817a82ea8da1ad8e","cb498c53a9d35ac1cf9a3515f3835d48b4626a612cf7540c5bfb99542c9ab1a5","b86e64c48044bb73c6de7aa2cdf9295b2c104221e6a68b408225b283d1bcfda2","16173f5b3e68a373e7dfe6d00948549facc9947c9dbde813f1efe3a0f236ff6a","f457fc1b7583e1215393db13b95a186593660aad29706515ab7479869bc585e0","a11288edc8161f664148ea7d56101517e380335f5fa1a94408db86efce025bba","0fd70ca1eaef1e2dd6f48f16886df4838664821d992fd8076d07fc15e83c8498","ba30e6d2f1d20c707566cf485167331a10c539802a79040ced055b62a7aae53e","642eae3e9ec5997883f86dd7346d818f07d40fb83cc3530f0e52e232ffb4e631","29a6df727893a86807f4dc02116c31d9e6097139579ed6e8029b14c526cba027","537a2b61594512c5e75fad7e29d25c23922e27e5a1506eb4fce74fe858472a6e","311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","7c07838da165fd43759a54d2d490461315e977f9f37c046e0e357623c657fc42","b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","115c8691bd8fac390f6f6eef5b356543d716da7cffa4c2f70f288d56c5b06aeb","e91516e66f9fbf39c978a4092c16ffda3bb0b32158fca6def75aae9fab358153","abd4563a6a7668fa6f8f5e5a425a0900b80fc2309fec5186e2cae67f3ce92663","cb48f3011e72efef9d5a5b312f4a956f699b8d423bf9f2772724cdded496bd50","9aed07904079877252e6c0aedf1d2cf1935ed91d4abc16f726c76b61ea453919","6621af294bd4af8f3f9dd9bd99bd83ed8d2facd16faa6690a5b02d305abd98ab","5eada4495ab95470990b51f467c78d47aecfccc42365df4b1e7e88a2952af1a3","5fc0957ee8e15821ddb30a76e74e7984953fc35611a57fd703e624bade5836b9","40e9c2028b34c6c1e3281818d062f7008705254ee992d9857d051c603391e0f4","4720efe0341867600b139bca9a8fa7858b56b3a13a4a665bd98c77052ca64ea4","566fc645642572ec1ae3981e3c0a7dc976636976bd7a1d09740c23e8521496e5","66182e2432a30468eb5e2225063c391262b6a6732928bbc8ee794642b041dd87","11792ab82e35e82f93690040fd634689cad71e98ab56e0e31c3758662fc85736","3957b1244f49991b89f12cc45942c24f9c5927dc72677b105bb896d316f0454e","6c53c05df974ece61aca769df915345dc6d5b7649a01dc715b7da1809ce00a77","18c505381728b8cc6ea6986728403c1969f0d81216ed04163a867780af89f839","d121a48de03095d7dd5cd09d39e1a1c4892b520dad4c1d9c339c5d5008cfb536","f6d55e607f55be35a3c481b7685461a9acc1e27b893839218eb9313f7e85278c","b394ea95c82281d184ea83e8511bd1a43f78d6908eb34b536446d3eb08f9d47f","41edf4071b119fdf28b46a3c28c0845f2598bb8b196e7e4c9e01415403fdaea5","2bdf3bcf1a9771a288a783d1e8ee5d1d3126c11ddde26ae44864ab432192a6f6","603bafdacee4c8850ef5820f8642a817a3f0db6f76dda0474bcf3d17c2e15398","a10c79ab97c8a4f6074203094dba87bc736ca574ec480be1df6ec2c82d774573","801f049a9e74e941e8ca8add60492aaf4ab717a166248d355ded5753d80f9a85","70bba0a9c9c2ad7a042e134a840c4d8462bf0ad98e41c50ca52725ae47265eb9","f4dc28fbbba727722cb1fd82f51a7b9540fbe410ed04ddf35cab191d6aa2ba10","1f47dea3d5cfa752cfe10c48273dac3bb41cf07ec30d5801c9cb6cbd81823a94","79af5f8e385d7ca4a05f84a0a201c3e927d7a9a4b70c95f05314db8818d1734d","9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","80b47d2c0a754d391234eee9504bef339252456fdfd7745ae771e191828ffaf7","72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","dfc73114040523883452af0d14b19316f5ae4f9f44b131889d665feed7b0f02c","c6cbbca3099e385cc5bb4d68052d39ebf12504d1db8d8e8a035f7d24080fd42e","b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","68adf02128cad117e068f53ab334cbc730bcfeb7d658d8ce8118da6770b7e622","22945d276fc7ca24f1a4dd7fcc42d0c9c7357bee966f0d118b39ed6de97d858a","b606659dbd36a39d5d9324715fd7bf95d99a101ac885bf3cbb30337f8dbe09ab","7f1567b9dfb571a80556155a5bff1c946b23e74443466689bed24095604b3a9b","b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","51796c3726bf734b061fac41b479a660f9afccf50b8b493835e204723d23a84d","4db354d1dc4e2d96cd6fd8521c12cfcbb18a57df8e4be86b6c5123829557997d","da7183b9d834101b5b12d83dbcd4c98ac6d5d9cb7cb9cb66c0bc3b926f03ba45","88b881898e99e16c6c19c8125ea5a9b87d777466e8ac84653ac42c7cd7d5b464","2d2f9eed9f69b8e13e0dd86ab29205a78fbf1ba94c150cc59d58c6576fcca1ce","4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","964d3b8a65d1fa21515a3c7a9ed34898346f755e275c33e6fdfbeebb5f260744","1c77a5ab660e77952cc400cb9eba8f83cd93a045ca7abda544629e69c86150bd","04c72d6fa3275b08865357900ba7580a5c9e31692a12641a25665fed8411c8b8","fad2e326af305b648dd46cac96bf31c88f508823cfea877fae79a9b01dd4d524","45e0dd06a42ab62f879b1567438bce5b85eee9c6875685ca2c6ca10f978038b2","ad5976f5c289f6720287944a265db0761709be06d5331fc37a1b2999fa13bacc","c48268206ba168b8052c8d7fa692c631ae7aab106408c453e615da56f42bdb5f","63a76522cfc8f00ef401645579f8c0959bccd6e3118df66bae1fd45b709a9256","5870b02397c454afa21c294821b9496ebfb68c098c6ca8360bb1506398c39e45","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","f6e42784e93419b8acab053a096a80fc26e9f36bd3c7d10c6549f979968f5372","6f31e8019e7a6f406e786ea51841824dc75318b26f6eae602279342a4da9da6f","003b0535a82e82dd901927bf0092c81ad5867b84e273e0d98ab2d958df591060","2afb1699885c242563656dfac41072849720ab5c9cc3be87133413afb6cbf32c","2bdaf407163ca9ca9bc3c1d3fb78ad26b6bd2f7d68b04810fc28072925a95e9b","95347f256453f88602fcfc792b0ccea75f330aa22150bd95a6a8bb034a20ba14","dd2505eec07d3d341be4322f9f0380b5196f2b163944016227bb599dd89136e7","f9dfcd54e603db0684207424124c340a7eb0e61807ece0cdb51a8801c47c9155","ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","e93760553e478c36485ef4c548bcaed56514a45660636df1a355d647ce172e52","e50222c22db171b6e6f102dad414ba90b1ad3802537779e838bed86ff506cb28","4c36f9d0ffb25cf61b696b2777ba06d553d1b0cfd12d9eed8a1e3b1a50beb2f7","dd478451ffa00f4352bffe4f55b4531c8dec0edafb5777272089e5127dca808c","aedddd59fc4889fcdeb54a3b2a4943736f282c00db826ff710acb6bc91873b0d","5d9a5cc1712870f91f66850e7056e0d03b4046de5558a00e7190b6a9c2f7d432","0daf877cd2dcb81c0e39a96ee20262dc07ecc6f68d65cdb9cc6e6cf2f31d29c5","6206a6984c6210c7e02e8cec6c2417f6d2458ec36ac97b80ce9f894933a08082","d686fcb07a661fef0866137e450a487e710c233cb24f04d11426228162595d7e","8484a8762f074437ff6b9be1730dee2d607ff653ad5b432fe92d3889ec1b53bb","8e3f8a63b6af3fd917721cfe670eedf5aae7df605d0072c5997021eb6fbdae31","046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","abdf76f026d770eda24012e686a77c1c80860267b9e6e95fc26acbc180a1abfb","a6260e50e119a4ae143e080cb69501b76f70b55df4f40b3874ee785277003570","311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","c032a9b7dfc5f9b86ac5b1535fe72154dc48a7f89f76c5cb4e8a6ab4db203671","b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","23fa431c1549a548df67056c34a9ea3653b50266d77653a406ff5a67a7f861aa","174912359daff7bf7851731604bcb1aa25e6b56f2976797c5c2e31bc08bedfe8","a5a8a1bc2f458034182316db21717c4a25438517239ff2868ba8b6bfe455c505","60a0074289b6584a0d7003c2aa14d9ebd0027e423deb79e08031b7e708770c98","d62b7fb6c39357289ba064887935b0966cd99da5a3bb63afc1d6ea4f82ab23f1","7a8e7fc0c0b3c6f0344a6b54a56e928aba5b2bde679ca742acf67aeb67e6f9d2","2d232975df81628cb4d8a5236b8776976940cc4dd202698e498de5a4baeb7389","41b6a32ece86a9f7bdb5a6a9d47c580222f89afc5592654473ceed0035b49544","2f7551bc7fc68539406d169b81e73c085a0a52798efb3aef3266327246c28d29","6a3d24f24ae411600665f30a5d912af979c6fdf1c7ba8a9147235d5c105a9e83","96def9cb00debb7554a8019ae45310f375a65820bd8efa8e497a96e3416a5677","228eae4b5b181e59b73cbe0313eb5aa807f445122b21e365ca330bca2b22772e","956f962aca6becfca36766fe3af718b586829e1e4dd72f6b896057f75d4e9e83","f1f5af5650d4014cd999f2f86f7ab1a81779d966077fa4a723ea05069e07652c","9f7b583873c73cf01be845311d8b3e1715aecfa476a047d885804d837327d5db","6c9dfb8a6bc7ff438e84f19ff882a3d150b4b44e21d494133950f524997b02ee","f4a795af80885eba93957db860b4b82b4d23a76c5e122c2af5eeb9319094d9d1","3267bdd186e8d021bfa57a5314a256b9781e895bc025e426a2bdbe93b946cca0","31ed847fef6dc27c5224045deab8f99887ec76146cbc4f2ccb33f5b117fc9bf1","0df38983d84eccab44e2e6385bed5e1033b23228e484b80ff124d4049ca8e75a","7395857a8b73a1a5a14af625ec52c90f5b24bb0b163057d0f3e8a197ccc816ee","8b2e63aba58523a92dd15761096a03b5ebbd8983e2889b1f14265d9b2bb444b6","ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","6477c1bd38bbe6e8d74abebd01a073a7e45a89086a5a250e11725989a54a9a94","046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","d43fd9837c2a0745faaf914d61220abafe305f48902ec2c5ad3e980a50cf9a6d","2837ced1e5d4ef88b4e1688fa62bc93b4248d1825667c87a83adaa51bc810cbf","f61af6ed7df59c72b7e2fc7e25a4500f5e9beafad5be038d349c5348a0727ba5","d81fe001f3fb987591406c054f7ff1f69bef86d121dc66c03b92c2dee63efa95","bf7ccda18d9cb9ed3047d96a6542fee3c3bc4e7a7822af40332c5c2f6e07c2b7","7bc71d52df9d8e5cc55218d347a91b1758b38341f9cbbac0b80057aa9d93daa6","7a1f7b274cf8a66b83fcf42153bde6f25f4eb4d7696d4a6b17e4a8878d128306","553dd4fef7d2b88e899646b66b2035e119f61b092d668ae0595a32c234f9b8b5","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","6215681982d007f5e9137ab0ca969c39048401e588bb0ad92018297c82551ea8","82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","1b831600aabe1c065830d303d087189e1ccfc93a0ef1882eb58a336ec1ce9f2f","75f191b59fe7ce72d1d7d11d0f329a193843f54af93182fc5a65c37d0a82c85a","cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","f6451dc56be14d37a8b88ea62a143ea398ab44558cd530fb2cdeeea42695c849","8ab77e5c32f1b6c6c1ee1b1b771c1a76a16be650559dc61320c8c82c99fc7cde","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","c269a12e83c5ffc0332b1f245008e4e621e483dd2f8b9b77fc6a664fcde4969d","aa8a056ee45ae741849d6e809ba85967b638070060e29c57d12d22b14baefeb6",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a97081289e7233ca2ef04a729036449fec4e88818fd7b7397930bd4d52294b18","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","ae8cd6af37275eac75f5369cdb5f01063bcf1f48d74cb434303ee50ec446acfe","2518830a2fda9c272ba48798d0e7b857037443b06594db8e42c87e86944ee9e4","95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","99ab49d4732fdc98cf5c495925e65e796544cb4086fe42afc235dfc02bcf2351","af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","d393adc32e520d4274bb4c3dfdcdb342b806a230b66ef0f82b35bffbc4aa2590","c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","3b6040253231d44e6778eb6861cc86c1758562e77783d21b7ecbc73322ded539","03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","318c82cc1e13da55e8c60d7e1bdc422a0679d675ad048b6d5022a47f57d23e3f",{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true},"ac3cce682a1eab96841ce9942ace8dd5649d2951007096555f4950479e4b8d56","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","a45efe8e9134ef64a5e3825944bc16fffaf130b82943844523d7a7f7c1fd91b2","969aa6509a994f4f3b09b99d5d29484d8d52a2522e133ef9b4e54af9a3e9feaf","f378e8538e407f997a0f88fcd1ecd93a096707cc909339ce4dba2e4ea03f1726","dcafd874e49d42fc215dcb4ef1e06511363c1f31979951081f3cd1908a05a636","fb73c98050a02b5849cc0fbb0d133ed55764b9c2a91f0ada2a25e74df68e6242","6002c44a8e8edbe4c79ce856c7bac3f8e69a2a45dc5bd6b229ca4ab323b924b3","b4d505a77e0829de5e5e23eaefb3d7989e0dbdfdb02ea69159df9f40017fb958","b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","f2242adef346a64818a1af914146f6f6046f16505e8a228c3bdb70185d4fdf4c","2f7508d8eeadcfde20b41ec13726c9ad26f04bbf830434e289c6010d5be28455","8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","9798f0d3693043da9dda9146b5e8622cd4476270e7aed8f3cb346b9b40a52103","fc7e8927b6fa6c81d68783afb314d01592c559e86bd36df334c37f40d0136acd","73f72caffdd55f189b5bf4e6b5ca273b4e26269d9aac859b9d30a5f799c095ad","d998e3e185cdf59dfc84043c41a42c02daaf3b7b21bee2db2d1f620a8e134f4c","06aa8858883e08f5136eb182d2f285ea615aeb464007f83c7a31ee1f8d9932b1","62d429aba0bbe459a04965d10c7637b74b319149f17874920a5ffb9fe3ba14d8","084a25e9ee73362fbb467873341b95721689513c14af6aa3067a1d95d6fafe08","4dbfeb147290c498e3aa56ea3198a6a109c5c0d9d7a4936a3138376302d89e7d","169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","5009c081fd8ca3fcd6f3adcd071a1c79a933a400532b897822aad0943688a1f1","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","c271193e426325d9acab2f99997bb9f5f2dff850ec8c7c011c5abafe5af83b5f","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","a3e12bcf2d196656ccd5b5d5344182967a2bdde0f63c9b955c36169ed02c3555","a016d2f6c0a2c15069ec69661ad37c86a450deb629ce96a592f15f01d3a5746e","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","4fddd9f6929421ce580b4583defbb3f78f5a4a3642bea5ecd3209bf652d8b507","f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","557e00bde9af85bcb3ab6b3a785904f028f9f1b65dba664f2fda44965acf8a78","397981908f102effb3cd483042076b593f3928264dbf06aec235a7c3e83da2b4",{"version":"ad78491e2a3ae1e59680dbab88607dd670d06a91b1d6c451fa895ad390513e8a","affectsGlobalScope":true},{"version":"1a9deb79dabc5153448e38589fbe38945fdad45f0f8442cd4d4e1da8bb879a76","affectsGlobalScope":true},"f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956",{"version":"c9cc4c881c910ce378659524d985d2b72b79029b0c473df5d4d3557b4cf6010a","affectsGlobalScope":true},"7fae4b2bc906f3e6840725cc24affaa4e684e6c9cc20254242c5df4bede5b6f6","2dd1d4cea14cead7a7fc9eec8f40593089dff0de8c0199458446143c9b8c4ea9","c0288f54de6f544706a3150c8b579b1a975870695c4be866f727ece6a16f3976","ec2c7505ede4bc3ee37cfe431cfd87e545f55f27fe15b0809c1a411765145615"],"options":{"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":1,"outDir":"./dist-cjs","removeComments":true,"rootDir":"./src","skipLibCheck":true,"strict":true,"target":7,"useUnknownInCatchVariables":false},"fileIdsList":[[103],[73,89,101,388],[75,103,391],[69,103],[72,75,95,103,395,396,397],[103,406],[95,103,410],[75,103],[64,103],[399,400,414],[72,75,103,408,409],[392,409,410,417],[72,73,103,419],[72,75,77,80,89,95,103],[72,98,103,436,437,439],[438],[72,103],[441,443,444,445,446,447,448,449,450,451,452,453],[441,442,444,445,446,447,448,449,450,451,452,453],[442,443,444,445,446,447,448,449,450,451,452,453],[441,442,443,445,446,447,448,449,450,451,452,453],[441,442,443,444,446,447,448,449,450,451,452,453],[441,442,443,444,445,447,448,449,450,451,452,453],[441,442,443,444,445,446,448,449,450,451,452,453],[441,442,443,444,445,446,447,449,450,451,452,453],[441,442,443,444,445,446,447,448,450,451,452,453],[441,442,443,444,445,446,447,448,449,451,452,453],[441,442,443,444,445,446,447,448,449,450,452,453],[441,442,443,444,445,446,447,448,449,450,451,453],[441,442,443,444,445,446,447,448,449,450,451,452],[473],[458],[462,463,464],[461],[463],[440,459,460,465,468,470,471,472],[460,466,467,473],[466,469],[460,461,466,473],[460,473],[454,455,456,457],[75,95,103,479,480],[485],[72,73,103],[75,89,103],[488,527],[488,512,527],[527],[488],[488,513,527],[488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526],[513,527],[73,418],[75,103,416],[529],[89,103],[72,75,77,89,92,95,101,103],[72,103,541],[425],[424,425],[424],[424,425,426,428,429,432,433,434,435],[425,429],[424,425,426,428,429,430,431],[424,429],[429,433],[425,426,427],[426],[424,425,429],[403],[400,401,402],[400,403],[63,75,80,92,95,98,399,401,403,404,405],[149,190,191,192,193,301],[149,187,190,191,192,193,241,243,244,249,252,281,283,300],[149,187,189,301],[190,191,192,193],[231],[149,231,241],[188,301,302,304,305],[187],[189],[187,188],[149,190,191,192,193,241],[149,187,231,241,243,301,309],[149,187,231,241,243,301,314],[149,243,301],[242],[369,370,371],[384],[149],[360],[149,245],[245,246,247,248],[245],[250,251],[149,250],[149,231],[353,356],[266],[354,355],[206,207],[201],[201,202,203,204,205],[194,195,196,197,198,199,200,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230],[149,373],[267,268,269,270],[149,269],[271,274,280],[272,273],[275],[149,277,278],[277,278,279],[276],[375,376,377],[282],[89,103,149],[334,335],[149,241],[307,308],[149,157,158],[159,160],[157,158,161,162,163],[149,291,293],[149,266],[293,294,295,296,297,298,299],[149,295],[149,292],[322,323,324],[149,323],[149,253,263,264],[149,262],[265],[311,312,313],[75,77,103,149,241],[234],[235],[149,237],[149,232,233],[232,233,234,236,237,238,239,240],[254,255,256,257,258,259,260,261],[149,258],[149,155],[149,164],[151],[149,172,173],[174],[149,150,151,156,165,166,167,168,169,170,171,175,176,177,178,179,180,181,182,183,184,185,186],[47,54,55,56],[54,57],[47,51],[47,57],[45,46,55,56,57,58],[89,103,105],[107],[52,53,54,109],[52,54],[111,113,114],[111,112],[116],[45],[48,118],[118],[118,119,120,121,122],[121],[49],[118,119,120],[51,52,54],[107,108],[124],[124,128],[124,125,128,129],[53,127],[104],[44,50],[75,77,103],[47],[47,132,133,134],[44,48,49,50,51,52,53,54,59,106,107,108,109,110,112,115,116,117,123,126,127,130,131,135,136,137,138,139,140,141,142,143,144,146,147,148],[45,48,49,53],[110],[126],[51,53,112],[51,52],[51,116],[53,107,108],[75,89,103,105,138],[52,109,143,144],[51,75,76,103,110,138,142,144,145],[51],[44],[342,343],[379],[338],[381],[149,187],[350],[149,284],[149,286],[284],[284,285,286,287,288,289,290],[152,153,154],[89,149],[345,346,347],[60],[62],[63,68],[64,72,73,80,89],[64,65,72,80],[66,96],[67,68,73,81],[68,89],[69,70,72,80],[70],[71,72],[72],[72,73,74,89,95],[73,74],[72,75,80,89,95],[72,73,75,76,80,89,92,95],[75,77,89,92,95],[60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],[72,78],[79,95],[70,72,80,89],[81],[82],[62,83],[84,94],[85],[86],[72,87],[87,88,96,98],[72,89],[90],[91],[80,89,92],[93],[80,94],[75,86,95],[96],[89,97],[98],[99],[72,74,89,95,98,100],[89,101],[149,187,319,326,327,328,331,364],[149,187,241,244,249,252,281,283,300,319,326,327,328,331,352,359,361,362,363],[149,187,241,319,321,325,330,364],[319,326,327,328,331],[231,281,319],[149,231,241,319],[319,320,364,365,366,367],[187,319],[319,321],[187,319,320],[149,187,241,319,320,321,326,327,328,329,331],[187,281,291,309,319,332,349,364,372,374,378,380,382],[319,364,383,385],[187,319,340,341,344,348,364],[187,266,281,291,300,314,319,332,333,336,337,339,349,351,364],[187,241,319,357,358]],"referencedMap":[[387,1],[389,2],[392,3],[393,4],[398,5],[407,6],[411,7],[391,8],[412,9],[415,10],[410,11],[418,12],[420,13],[421,14],[438,15],[439,16],[395,17],[442,18],[443,19],[441,20],[444,21],[445,22],[446,23],[447,24],[448,25],[449,26],[450,27],[451,28],[452,29],[453,30],[474,31],[459,32],[465,33],[462,34],[464,35],[473,36],[468,37],[470,38],[471,39],[472,40],[467,40],[469,40],[461,40],[457,32],[458,41],[456,32],[481,42],[486,43],[388,44],[397,45],[512,46],[513,47],[488,48],[491,48],[510,46],[511,46],[501,46],[500,49],[498,46],[493,46],[506,46],[504,46],[508,46],[492,46],[505,46],[509,46],[494,46],[495,46],[507,46],[489,46],[496,46],[497,46],[499,46],[503,46],[514,50],[502,46],[490,46],[527,51],[521,50],[523,52],[522,50],[515,50],[516,50],[518,50],[520,50],[524,52],[525,52],[517,52],[519,52],[528,53],[417,54],[530,55],[532,8],[533,56],[540,57],[542,58],[479,45],[426,59],[435,60],[425,61],[436,62],[431,63],[432,64],[430,65],[434,66],[428,67],[427,68],[433,69],[429,60],[404,70],[403,71],[401,72],[406,73],[302,74],[301,75],[190,76],[191,76],[192,76],[193,76],[304,77],[303,78],[242,79],[306,80],[188,81],[305,82],[189,83],[318,84],[310,85],[315,86],[316,85],[317,87],[243,88],[369,78],[370,78],[372,89],[371,78],[385,90],[384,78],[244,91],[361,92],[360,91],[362,91],[245,78],[246,93],[249,94],[247,95],[248,93],[250,91],[252,96],[251,97],[353,98],[357,99],[354,100],[356,101],[355,91],[194,91],[195,91],[196,91],[197,91],[198,91],[199,91],[200,91],[208,102],[209,91],[211,91],[212,91],[213,91],[214,91],[215,91],[202,103],[203,91],[201,91],[206,104],[204,103],[205,103],[231,105],[216,91],[217,91],[218,91],[219,91],[221,91],[222,91],[223,91],[224,91],[225,91],[226,91],[227,102],[228,91],[229,91],[207,91],[230,91],[374,106],[333,91],[271,107],[267,100],[268,100],[270,108],[269,91],[281,109],[272,100],[274,110],[273,91],[276,111],[279,112],[280,113],[277,114],[278,114],[375,91],[378,115],[376,91],[282,91],[283,116],[334,117],[336,118],[335,91],[307,119],[309,120],[308,91],[337,91],[363,91],[159,121],[161,122],[160,91],[162,121],[163,121],[164,123],[157,91],[294,124],[295,125],[300,126],[297,91],[298,91],[299,127],[293,128],[292,91],[322,91],[325,129],[323,91],[324,130],[265,131],[253,91],[263,132],[264,91],[266,133],[314,134],[311,135],[312,119],[313,91],[235,136],[236,137],[237,91],[238,138],[234,139],[232,91],[233,91],[241,140],[240,91],[262,141],[258,91],[259,91],[260,142],[261,91],[151,91],[156,143],[165,144],[167,145],[176,91],[172,91],[174,146],[175,147],[173,91],[187,148],[150,91],[57,149],[58,150],[55,151],[56,152],[59,153],[106,154],[108,155],[110,156],[109,157],[115,158],[113,159],[117,160],[48,161],[119,162],[120,163],[123,164],[122,165],[118,166],[121,167],[116,168],[124,169],[125,170],[129,171],[130,172],[128,173],[105,174],[51,175],[131,176],[132,177],[133,177],[135,178],[134,177],[149,179],[54,180],[136,181],[127,182],[138,183],[126,184],[139,185],[140,186],[141,154],[142,154],[143,187],[145,188],[146,189],[147,181],[50,190],[53,168],[148,191],[341,91],[344,192],[380,193],[339,194],[382,195],[381,196],[351,197],[350,196],[285,198],[287,199],[288,200],[291,201],[286,91],[153,117],[155,202],[154,203],[348,204],[60,205],[62,206],[63,207],[64,208],[65,209],[66,210],[67,211],[68,212],[69,213],[70,214],[71,215],[72,216],[73,217],[74,218],[75,219],[76,220],[77,221],[103,222],[78,223],[79,224],[80,225],[81,226],[82,227],[83,228],[84,229],[85,230],[86,231],[87,232],[88,233],[89,234],[90,235],[91,236],[92,237],[93,238],[94,239],[95,240],[96,241],[97,242],[98,243],[99,244],[100,245],[101,246],[365,247],[364,248],[331,249],[326,249],[327,249],[328,249],[366,250],[340,251],[358,252],[368,253],[320,254],[367,255],[321,256],[330,257],[383,258],[386,259],[349,260],[352,261],[359,262]],"exportedModulesMap":[[387,1],[389,2],[392,3],[393,4],[398,5],[407,6],[411,7],[391,8],[412,9],[415,10],[410,11],[418,12],[420,13],[421,14],[438,15],[439,16],[395,17],[442,18],[443,19],[441,20],[444,21],[445,22],[446,23],[447,24],[448,25],[449,26],[450,27],[451,28],[452,29],[453,30],[474,31],[459,32],[465,33],[462,34],[464,35],[473,36],[468,37],[470,38],[471,39],[472,40],[467,40],[469,40],[461,40],[457,32],[458,41],[456,32],[481,42],[486,43],[388,44],[397,45],[512,46],[513,47],[488,48],[491,48],[510,46],[511,46],[501,46],[500,49],[498,46],[493,46],[506,46],[504,46],[508,46],[492,46],[505,46],[509,46],[494,46],[495,46],[507,46],[489,46],[496,46],[497,46],[499,46],[503,46],[514,50],[502,46],[490,46],[527,51],[521,50],[523,52],[522,50],[515,50],[516,50],[518,50],[520,50],[524,52],[525,52],[517,52],[519,52],[528,53],[417,54],[530,55],[532,8],[533,56],[540,57],[542,58],[479,45],[426,59],[435,60],[425,61],[436,62],[431,63],[432,64],[430,65],[434,66],[428,67],[427,68],[433,69],[429,60],[404,70],[403,71],[401,72],[406,73],[302,74],[301,75],[190,76],[191,76],[192,76],[193,76],[304,77],[303,78],[242,79],[306,80],[188,81],[305,82],[189,83],[318,84],[310,85],[315,86],[316,85],[317,87],[243,88],[369,78],[370,78],[372,89],[371,78],[385,90],[384,78],[244,91],[361,92],[360,91],[362,91],[245,78],[246,93],[249,94],[247,95],[248,93],[250,91],[252,96],[251,97],[353,98],[357,99],[354,100],[356,101],[355,91],[194,91],[195,91],[196,91],[197,91],[198,91],[199,91],[200,91],[208,102],[209,91],[211,91],[212,91],[213,91],[214,91],[215,91],[202,103],[203,91],[201,91],[206,104],[204,103],[205,103],[231,105],[216,91],[217,91],[218,91],[219,91],[221,91],[222,91],[223,91],[224,91],[225,91],[226,91],[227,102],[228,91],[229,91],[207,91],[230,91],[374,106],[333,91],[271,107],[267,100],[268,100],[270,108],[269,91],[281,109],[272,100],[274,110],[273,91],[276,111],[279,112],[280,113],[277,114],[278,114],[375,91],[378,115],[376,91],[282,91],[283,116],[334,117],[336,118],[335,91],[307,119],[309,120],[308,91],[337,91],[363,91],[159,121],[161,122],[160,91],[162,121],[163,121],[164,123],[157,91],[294,124],[295,125],[300,126],[297,91],[298,91],[299,127],[293,128],[292,91],[322,91],[325,129],[323,91],[324,130],[265,131],[253,91],[263,132],[264,91],[266,133],[314,134],[311,135],[312,119],[313,91],[235,136],[236,137],[237,91],[238,138],[234,139],[232,91],[233,91],[241,140],[240,91],[262,141],[258,91],[259,91],[260,142],[261,91],[151,91],[156,143],[165,144],[167,145],[176,91],[172,91],[174,146],[175,147],[173,91],[187,148],[150,91],[57,149],[58,150],[55,151],[56,152],[59,153],[106,154],[108,155],[110,156],[109,157],[115,158],[113,159],[117,160],[48,161],[119,162],[120,163],[123,164],[122,165],[118,166],[121,167],[116,168],[124,169],[125,170],[129,171],[130,172],[128,173],[105,174],[51,175],[131,176],[132,177],[133,177],[135,178],[134,177],[149,179],[54,180],[136,181],[127,182],[138,183],[126,184],[139,185],[140,186],[141,154],[142,154],[143,187],[145,188],[146,189],[147,181],[50,190],[53,168],[148,191],[341,91],[344,192],[380,193],[339,194],[382,195],[381,196],[351,197],[350,196],[285,198],[287,199],[288,200],[291,201],[286,91],[153,117],[155,202],[154,203],[348,204],[60,205],[62,206],[63,207],[64,208],[65,209],[66,210],[67,211],[68,212],[69,213],[70,214],[71,215],[72,216],[73,217],[74,218],[75,219],[76,220],[77,221],[103,222],[78,223],[79,224],[80,225],[81,226],[82,227],[83,228],[84,229],[85,230],[86,231],[87,232],[88,233],[89,234],[90,235],[91,236],[92,237],[93,238],[94,239],[95,240],[96,241],[97,242],[98,243],[99,244],[100,245],[101,246],[365,247],[364,248],[331,249],[326,249],[327,249],[328,249],[366,250],[340,251],[358,252],[368,253],[320,254],[367,255],[321,256],[330,257],[383,258],[386,259],[349,260],[352,261],[359,262]],"semanticDiagnosticsPerFile":[387,389,390,392,393,394,398,407,411,391,412,413,414,415,399,410,418,420,419,396,421,422,423,438,439,400,395,440,442,443,441,444,445,446,447,448,449,450,451,452,453,474,459,465,463,462,464,473,468,470,471,472,466,467,469,461,460,455,454,457,458,456,475,416,476,477,478,480,481,482,483,484,486,409,408,388,487,397,485,512,513,488,491,510,511,501,500,498,493,506,504,508,492,505,509,494,495,507,489,496,497,499,503,514,502,490,527,526,521,523,522,515,516,518,520,524,525,517,519,528,417,530,529,531,532,533,534,437,536,535,537,538,539,540,542,541,402,479,426,435,424,425,436,431,432,430,434,428,427,433,429,404,403,401,405,406,302,301,190,191,192,193,304,303,242,306,188,305,189,318,310,315,316,317,243,369,370,372,371,385,384,244,361,360,362,245,246,249,247,248,250,252,251,353,357,354,356,355,194,195,196,197,198,199,200,208,209,210,211,212,213,214,215,202,203,201,206,204,205,231,216,217,218,219,220,221,222,223,224,225,226,227,228,229,207,230,373,374,333,271,267,268,270,269,281,272,274,273,276,275,279,280,277,278,375,378,376,377,282,283,334,336,335,307,309,308,337,363,159,161,160,162,163,164,157,158,294,295,296,300,297,298,299,293,292,322,325,323,324,265,253,263,264,266,314,311,312,313,235,236,237,238,234,232,233,241,239,240,254,255,256,257,262,258,259,260,261,151,156,165,166,167,168,169,170,171,176,177,172,174,175,173,178,179,187,180,150,181,182,183,184,185,186,44,45,46,57,58,55,56,59,106,108,110,109,111,115,113,114,107,117,48,119,120,123,122,118,121,116,124,125,129,130,128,105,51,131,132,133,47,135,134,149,49,54,136,137,52,127,138,126,139,140,141,142,143,112,145,146,104,147,144,50,53,148,341,342,344,343,379,380,338,339,382,381,351,350,285,289,287,290,288,291,286,284,152,153,155,154,345,348,346,347,60,62,63,64,65,66,67,68,69,70,71,72,73,74,61,102,75,76,77,103,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,329,319,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,332,365,364,331,326,327,328,366,340,358,368,320,367,321,330,383,386,349,352,359]},"version":"4.9.5"} \ No newline at end of file diff --git a/src.gen/@amzn/codewhisperer-streaming/tsconfig.es.tsbuildinfo b/src.gen/@amzn/codewhisperer-streaming/tsconfig.es.tsbuildinfo new file mode 100644 index 00000000000..351837c03a2 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/tsconfig.es.tsbuildinfo @@ -0,0 +1 @@ +{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/@smithy/types/dist-types/abort.d.ts","./node_modules/@smithy/types/dist-types/auth/auth.d.ts","./node_modules/@smithy/types/dist-types/auth/httpapikeyauth.d.ts","./node_modules/@smithy/types/dist-types/identity/identity.d.ts","./node_modules/@smithy/types/dist-types/endpoint.d.ts","./node_modules/@smithy/types/dist-types/logger.d.ts","./node_modules/@smithy/types/dist-types/uri.d.ts","./node_modules/@smithy/types/dist-types/http.d.ts","./node_modules/@smithy/types/dist-types/response.d.ts","./node_modules/@smithy/types/dist-types/util.d.ts","./node_modules/@smithy/types/dist-types/middleware.d.ts","./node_modules/@smithy/types/dist-types/auth/httpsigner.d.ts","./node_modules/@smithy/types/dist-types/auth/identityproviderconfig.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthscheme.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/types/dist-types/auth/index.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/index.d.ts","./node_modules/@smithy/types/dist-types/transform/exact.d.ts","./node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts","./node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/crypto.d.ts","./node_modules/@smithy/types/dist-types/checksum.d.ts","./node_modules/@smithy/types/dist-types/command.d.ts","./node_modules/@smithy/types/dist-types/client.d.ts","./node_modules/@smithy/types/dist-types/connection/config.d.ts","./node_modules/@smithy/types/dist-types/transfer.d.ts","./node_modules/@smithy/types/dist-types/connection/manager.d.ts","./node_modules/@smithy/types/dist-types/connection/pool.d.ts","./node_modules/@smithy/types/dist-types/connection/index.d.ts","./node_modules/@smithy/types/dist-types/eventstream.d.ts","./node_modules/@smithy/types/dist-types/encode.d.ts","./node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","./node_modules/@smithy/types/dist-types/endpoints/endpointruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/errorruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/treeruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/rulesetobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/index.d.ts","./node_modules/@smithy/types/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultclientconfiguration.d.ts","./node_modules/@smithy/types/dist-types/shapes.d.ts","./node_modules/@smithy/types/dist-types/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/types/dist-types/extensions/index.d.ts","./node_modules/@smithy/types/dist-types/http/httphandlerinitialization.d.ts","./node_modules/@smithy/types/dist-types/identity/apikeyidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/index.d.ts","./node_modules/@smithy/types/dist-types/pagination.d.ts","./node_modules/@smithy/types/dist-types/profile.d.ts","./node_modules/@smithy/types/dist-types/serde.d.ts","./node_modules/@smithy/types/dist-types/signature.d.ts","./node_modules/@smithy/types/dist-types/stream.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","./node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","./node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","./node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","./node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts","./node_modules/@smithy/types/dist-types/waiter.d.ts","./node_modules/@smithy/types/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/nooplogger.d.ts","./node_modules/@smithy/smithy-client/dist-types/client.d.ts","./node_modules/@smithy/util-stream/dist-types/blob/uint8arrayblobadapter.d.ts","./node_modules/@smithy/util-stream/dist-types/getawschunkedencodingstream.d.ts","./node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts","./node_modules/@smithy/util-stream/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/resolveendpointconfig.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getendpointfrominstructions.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toendpointv1.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/endpointmiddleware.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/getendpointplugin.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/command.d.ts","./node_modules/@smithy/smithy-client/dist-types/constants.d.ts","./node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts","./node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts","./node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts","./node_modules/@smithy/smithy-client/dist-types/emitwarningifunsupportedversion.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts","./node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts","./node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts","./node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts","./node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-every.d.ts","./node_modules/@smithy/smithy-client/dist-types/index.d.ts","./dist-types/models/codewhispererstreamingserviceexception.d.ts","./dist-types/models/models_0.d.ts","./dist-types/commands/conversestreamcommand.d.ts","./dist-types/commands/exportresultarchivecommand.d.ts","./dist-types/commands/generateassistantresponsecommand.d.ts","./dist-types/commands/generatetaskassistplancommand.d.ts","./node_modules/@aws-sdk/types/dist-types/abort.d.ts","./node_modules/@aws-sdk/types/dist-types/auth.d.ts","./node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","./node_modules/@aws-sdk/types/dist-types/checksum.d.ts","./node_modules/@aws-sdk/types/dist-types/client.d.ts","./node_modules/@aws-sdk/types/dist-types/command.d.ts","./node_modules/@aws-sdk/types/dist-types/connection.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/identity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/anonymousidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/loginidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","./node_modules/@aws-sdk/types/dist-types/util.d.ts","./node_modules/@aws-sdk/types/dist-types/credentials.d.ts","./node_modules/@aws-sdk/types/dist-types/crypto.d.ts","./node_modules/@aws-sdk/types/dist-types/dns.d.ts","./node_modules/@aws-sdk/types/dist-types/encode.d.ts","./node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","./node_modules/@aws-sdk/types/dist-types/eventstream.d.ts","./node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/types/dist-types/http.d.ts","./node_modules/@aws-sdk/types/dist-types/logger.d.ts","./node_modules/@aws-sdk/types/dist-types/middleware.d.ts","./node_modules/@aws-sdk/types/dist-types/pagination.d.ts","./node_modules/@aws-sdk/types/dist-types/profile.d.ts","./node_modules/@aws-sdk/types/dist-types/request.d.ts","./node_modules/@aws-sdk/types/dist-types/response.d.ts","./node_modules/@aws-sdk/types/dist-types/retry.d.ts","./node_modules/@aws-sdk/types/dist-types/serde.d.ts","./node_modules/@aws-sdk/types/dist-types/shapes.d.ts","./node_modules/@aws-sdk/types/dist-types/signature.d.ts","./node_modules/@aws-sdk/types/dist-types/stream.d.ts","./node_modules/@aws-sdk/types/dist-types/token.d.ts","./node_modules/@aws-sdk/types/dist-types/transfer.d.ts","./node_modules/@aws-sdk/types/dist-types/uri.d.ts","./node_modules/@aws-sdk/types/dist-types/waiter.d.ts","./node_modules/@aws-sdk/types/dist-types/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/httprequest.d.ts","./node_modules/@smithy/protocol-http/dist-types/httpresponse.d.ts","./node_modules/@smithy/protocol-http/dist-types/httphandler.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/httpextensionconfiguration.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/field.d.ts","./node_modules/@smithy/protocol-http/dist-types/fields.d.ts","./node_modules/@smithy/protocol-http/dist-types/isvalidhostname.d.ts","./node_modules/@smithy/protocol-http/dist-types/types.d.ts","./node_modules/@smithy/protocol-http/dist-types/index.d.ts","./dist-types/extensionconfiguration.d.ts","./dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/gettokenplugin.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/resolvetokenconfig.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/tokenmiddleware.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromenv.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/gethomedir.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getprofilename.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfilepath.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfromfile.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadsharedconfigfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadssosessiondata.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/parseknownfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromsharedconfigfiles.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromstatic.d.ts","./node_modules/@smithy/node-config-provider/dist-types/configloader.d.ts","./node_modules/@smithy/node-config-provider/dist-types/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusedualstackendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusefipsendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolveendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolvecustomendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvarianttag.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvariant.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/partitionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/regionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/getregioninfo.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/eventstreamserdeconfig.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts","./node_modules/@smithy/util-retry/dist-types/types.d.ts","./node_modules/@smithy/util-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/configuredretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/defaultratelimiter.d.ts","./node_modules/@smithy/util-retry/dist-types/config.d.ts","./node_modules/@smithy/util-retry/dist-types/constants.d.ts","./node_modules/@smithy/util-retry/dist-types/index.d.ts","./node_modules/@smithy/middleware-retry/dist-types/types.d.ts","./node_modules/@smithy/middleware-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts","./node_modules/@smithy/middleware-retry/dist-types/delaydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/omitretryheadersmiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrymiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/index.d.ts","./dist-types/codewhispererstreamingclient.d.ts","./dist-types/codewhispererstreaming.d.ts","./dist-types/endpoints.d.ts","./dist-types/commands/index.d.ts","./dist-types/models/index.d.ts","./dist-types/index.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts","./dist-types/runtimeconfig.browser.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts","./node_modules/@smithy/node-http-handler/dist-types/index.d.ts","./dist-types/runtimeconfig.d.ts","./dist-types/runtimeconfig.native.d.ts","./dist-types/runtimeconfig.shared.d.ts","./dist-types/protocols/aws_restjson1.d.ts","./node_modules/tslib/tslib.d.ts","./src/models/codewhispererstreamingserviceexception.ts","./src/models/models_0.ts","./node_modules/@smithy/middleware-serde/dist-types/deserializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serdeplugin.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/index.d.ts","./src/commands/exportresultarchivecommand.ts","./src/commands/generateassistantresponsecommand.ts","./src/commands/generatetaskassistplancommand.ts","./node_modules/@types/uuid/index.d.ts","./src/protocols/aws_restjson1.ts","./src/commands/conversestreamcommand.ts","./package.json","./node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts","./node_modules/@smithy/hash-node/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/index.d.ts","./src/endpoints.ts","./node_modules/@smithy/url-parser/dist-types/index.d.ts","./node_modules/@smithy/util-base64/dist-types/frombase64.d.ts","./node_modules/@smithy/util-base64/dist-types/tobase64.d.ts","./node_modules/@smithy/util-base64/dist-types/index.d.ts","./node_modules/@smithy/util-utf8/dist-types/fromutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/touint8array.d.ts","./node_modules/@smithy/util-utf8/dist-types/toutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/index.d.ts","./src/runtimeconfig.shared.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts","./src/runtimeconfig.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts","./src/extensionconfiguration.ts","./src/runtimeextensions.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/loggermiddleware.d.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts","./node_modules/@smithy/middleware-content-length/dist-types/index.d.ts","./src/codewhispererstreamingclient.ts","./src/codewhispererstreaming.ts","./src/commands/index.ts","./src/models/index.ts","./src/index.ts","./node_modules/@aws-crypto/sha256-browser/build/crossplatformsha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/ie11sha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/webcryptosha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/index.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts","./src/runtimeconfig.browser.ts","./node_modules/@aws-crypto/sha256-js/build/jssha256.d.ts","./node_modules/@aws-crypto/sha256-js/build/index.d.ts","./src/runtimeconfig.native.ts","../../../node_modules/@types/adm-zip/index.d.ts","../../../node_modules/@types/readdir-glob/index.d.ts","../../../node_modules/@types/archiver/index.d.ts","../../../node_modules/@types/async-lock/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/bytes/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/circular-dependency-plugin/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/cross-spawn/index.d.ts","../../../node_modules/@types/diff/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/glob/node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/parse5/dist/common/html.d.ts","../../../node_modules/parse5/dist/common/token.d.ts","../../../node_modules/parse5/dist/common/error-codes.d.ts","../../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/dist/tokenizer/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/parser/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/serializer/index.d.ts","../../../node_modules/parse5/dist/common/foreign-content.d.ts","../../../node_modules/parse5/dist/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/linkify-it/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdurl/encode.d.ts","../../../node_modules/@types/mdurl/decode.d.ts","../../../node_modules/@types/mdurl/parse.d.ts","../../../node_modules/@types/mdurl/format.d.ts","../../../node_modules/@types/mdurl/index.d.ts","../../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../../node_modules/@types/markdown-it/lib/token.d.ts","../../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../../node_modules/@types/markdown-it/lib/index.d.ts","../../../node_modules/@types/markdown-it/index.d.ts","../../../node_modules/@types/mime-types/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/prismjs/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/proper-lockfile/index.d.ts","../../../node_modules/@types/readline-sync/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sinon/node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/stream-buffers/index.d.ts","../../../node_modules/@types/tcp-port-used/index.d.ts","../../../node_modules/@types/vscode/index.d.ts","../../../node_modules/@types/vscode-webview/index.d.ts","../../../node_modules/@types/webidl-conversions/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/whatwg-url/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/xml2js/lib/processors.d.ts","../../../node_modules/@types/xml2js/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"c55ae709f94155174ff63647edd2a7e3acbd02a2909aa2541569e8b8bac9fc40","530e5c7e4f74267b7800f1702cf0c576282296a960acbdb2960389b2b1d0875b","1c483cc60a58a0d4c9a068bdaa8d95933263e6017fbea33c9f99790cf870f0a8","07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","d5f1bbd44ba4f63d8a01fff5e1edc1c1fb50e9caa48a4fa48298a4485d6ff75c","4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","d12680e217215b37094868d491d00196e80f270ce47e5a4bc50269945ae5554d","396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","b7b881ced4ed4dee13d6e0ccdb2296f66663ba6b1419767271090b3ff3478bb9","06289b9873760aac77aed4035ea6c60b1e0879b8afe47a4530bc8522b9b804b1","63c36aa73242aa745fae813c40585111ead225394b0a0ba985c2683baa6b0ef9","3e7ffc7dd797e5d44d387d0892bc288480493e73dcab9832812907d1389e4a98","db011ec9589fd51995cbd0765673838e38e6485a6559163cc53dcf508b480909","e1a4253f0cca15c14516f52a2ad36c3520b140b5dfb3b3880a368cd75d45d6d9","159af954f2633a12fdee68605009e7e5b150dbeb6d70c46672fd41059c154d53","f5331cb9cc00970e4831e7f0de9688e04986bcde808cac10caa3e7005e203907",{"version":"d20bbe9029b614c171212c50c842fa7ddfc61a6bbc697710ac70e4f7f0c77d15","affectsGlobalScope":true},"a9d67f9ae6bb38f732c51d1081af6a0ac6cae5e122472cacc2d54db178013699","1296a364908ba9c646372edc18ee0e140d9a388956b0e9510eec906b19fa5b36","1c863a53fb796e962c4b3e54bc7b77fd04a518444263d307290ff04f619c275e","ff98afc32b01e580077faf85b60232b65c40df0c3ecaa765fabc347a639b4225",{"version":"30133f9ceaa46c9a20092c382fed7b8d09393cf1934392149ea8202991edb3ea","affectsGlobalScope":true},"30c05e45ec7e1247ba9b87ad2acfae4fda401737f0e8a59f78beda8a4e22b110","2da83cc57a94f7aee832f2a71e1a294d857492761c1f5db717ea42c1a22467bc","aa5cc73a5f548f5bc1b4279a730c03294dfa6e98bed228d4ed6322a4183b26ad","b3f1ac9fe3d18d6cd04ab1e67a5da8c33ceb47f26b47e67896a5b2f8293c8a32",{"version":"ca88e8b07c8186ef3180bf9b6b4456311ae41bf3fe5652c27a2a3feba04136b0","affectsGlobalScope":true},{"version":"592d937b7df1b74af7fa81656503fc268fee50f0e882178e851b667def34414b","affectsGlobalScope":true},"fdfdf2eab2bded61ee321ec88b8e083fe8d9fedad25a16ae040740869bc64e48","e8067fc8b0247f8b5ad781bd22f5dd19f6a39961ba60fa6fc13cfe9e624ca92f","842ef57ce3043fba0b0fb7eece785140af9d2381e4bed4f2744d3060352f2fd5","9095b6f13d9e48704b919d9b4162c48b04236a4ce664dc07549a435d8f4e612e","111b4c048fe89d25bb4d2a0646623ff4c456a313ed5bfb647b2262dda69a4ff8","f70f62f5f87ff8900090069554f79d9757f8e385322d0e26268463e27c098204","0932ed41e23d22fa5359f74805c687314e4b707b3428e52419d0fbefc0d66661","af07f4baaca7e5cf70cb8887e7d4f23d6bb0c0dd6ca1329c3d959ea749b7a14d","c80402af7b0420f57372ac99885f1ab058121db72418e43d25f440abda7bbe23","71aba6ce66e76ccfd3ba92b8b5c6658bad293f1313f012821c4bff1dd64ca278","17d944cab17bc9e32975250e8abe8073702f9493582d847805e446641bd7798f",{"version":"c6bfc70bbdee282436ee11e887cceaa5988ac4eec60d5eb9b3711748c811831a","affectsGlobalScope":true},"f9ca5159f56c1fe99cdfc5f942585de20695a2a343db8543383b239c050f6aa4","84634ac706042ac8ee3a1e141bcdee03621725ab55455dba878a5503c6c7e037","d796c62c3c91c22c331b7465be89d009459eb1eb689304c476275f48676eaf9e","51cbf03ad34c3e84d1998bd57d1fd8da333d66dd65904625d22dc01b751d99c7","c31bbdc27ef936061eaa9d423c5da7c5b439a4ff6b5f1b18f89b30cf119d5a56","2a4ae2a8f834858602089792c9e8bab00075f5c4b1708bd49c298a3e6c95a30c","71e29ae391229f876d8628987640c3c51c89a1c2fd980d1a72d69aeee4239f80","51c74d73649a4d788ed97b38bd55ebac57d85b35cbf4a0357e3382324e10bbe9","c8641524781fa803006a144fd3024d5273ab0c531d8a13bbeaa8c81d8241529f","73e218d8914afc428a24b7d1de42a2cb37f0be7ac1f5c32c4a66379572700b52",{"version":"56ff5262d76c01b3637ca82f9749d3ec0d70cf57d87964bf3e9ba4204241849e","affectsGlobalScope":true},"9e3a18040e5a95f61556e09c932393b49c3b21ce42abe0f4ed74b97173f320db","344922fac39b5732179b606e16781b354c160f0e9bd7f5921a0fdc9fe4ede1fb","c1449f51f9496bb23f33ee48ff590b815393ef560a9e80493614869fe50915da","87a49241df2b37e59f86619091dec2beb9ad8126d7649f0b0edb8fc99eca2499","07efd1f649e91967fada88d53ad64b61c1b2853d212f3eaffc946e7e13d03d67","6d79a0938f4b89c1c1fee2c3426754929173c8888fdfaab6b6d645269945f7bf",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"c6c0bd221bb1e94768e94218f8298e47633495529d60cae7d8da9374247a1cf5","a1b36a1f91a54daf2e89e12b834fa41fb7338bc044d1f08a80817efc93c99ee5","8bb4a5b632dd5a868f3271750895cb61b0e20cff82032d87e89288faee8dd6e2","0c1aabfd9fb1818afb2e798f91f669edafce59cd7e3423d25b1cfccfaaf2c403","017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","aee8faa433dde04beedb779b3329456a286a966462d666c138c19113ce78c79e","d620ec36bfc6f8ed6fdecbe036d55cec81637f32fd34dc7bb7e60eba1764e910","4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","fc9bdd9b3d8fb59c913cb3b8dea0d79b38dfe9331ef07e1c6dc6bf363f061ad6","e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","0c3c4ce6a1884610c99306719f59174d81808c69393c30119f9c2aef0449a2cb","219a25474e58a8161b242776856ec5f6960839b63e74809445e51cadbfc18096","5a0d1534e9493ae44b08b3055172da38370e2afd2bc3d4bea11f7be78344036f","6309a45fc3c03d3c4d56228e995d51974f53009a842374695b34f3607877e5a3","bef94eba81ae2c09059c0d9abdb1ae1b7090314f70550f3c8cd5d7ead4a4f212","48b787ad458be9b524fa5fdfef34f68798074132d4b8cfe6a6fe9c2bf334c532","37280465f8f9b2ea21d490979952b18b7f4d1f0d8fab2d627618fb2cfa1828e3","7281550c523596fd0fd36c6e19aa89075dac93144437ce48490da319b1f4d318","3f3f85dc43cb93c5a797f1ff0fa948d0e17843a443ae11a20cc032ccdf1b9997","020507cb67b96b0830a8636db03ae004181eee323ba33565cfe8d45aaedc4d1d","869010bc679df668137cb3b78a3cb8196e97acf285208a57f6156ceac894a2f7","bcae62618c23047e36d373f0feac5b13f09689e4cd08e788af13271dbe73a139","29a99d2e57b3e08a997cbc2397bdb251441a545306a74b95ffedc5f03d9bc6b7","5ae003688265a1547bbcb344bf0e26cb994149ac2c032756718e9039302dfac8","09e811cc1088d9ea3a7ddd7290f6a13767f56c85daf8c3374a06a45a08d55647","9da2c58a27fdce871c2eac09d5172b04248bb86ada9b0d10e8b3dfa8470b8dd3","5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","7b270dc53f35dd0b44bfa619ad4d351fffd512e14053c3688323ed007eda3f6d","6d4e928f232ade7221cffc6e4332ec935baa176415c9bf5d12111bb883a247d2","e86ad029224d4f2af3e188be8b5e9badf8c7083247572069bac7bd2193131fc7","057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","38aa389acf91d77db5a4f8e26e713ed53dc832ed5573def9cd20acd9ba97c1fe","e56784be93954f1f86d4dd3ac61b4c9727e75864baf123a1b584b970baed4ba0","f878779620c5178d45413b33c214419bb3df2945e703c35e1191188321e3633d","b9115605f72b65a662723020b2a1eb696c375a5803d6b401dc01fcbfe49ece90","151659e152d71986b8943b9943cd7fbe27a65874655081602de7ea24a0f66e9b","4d250e905299144850c6f8e74dad1ee892d847643bacf637e89adcce013f0700","5fca180ba7514e439b225ee5eb47e5cf9254a591095f93cf7ca298ce6264159b","ed3e176bc769725ebc1d93f1d6890fc3d977b9155ae5d03be96ec2d49b303370","7933769d84f5ae16546aef06537ca578f1c8d7cca0708452a00613050ac1f265","cc5c913c4716a0d1563b2a63a7c4dc2fa81b7d7bc58489c79896d69b27e978cd","f194cdeb1caaf80e625f4fad340a9434b2b83786028dcc5ea6f3c459cc7789a0","f8ce447bbda4f75da74cecd866cc1ff9bdde62189ac9d8dc14a16c48b3d702fa","236247fb33a56e1d43b097c000aaafcac8fea1e8bf38d1a64f13889b32c372d0","c7d30b164562b7ce99fcb53ab78f937cc845e003f6089d648351331921379994","fe2d1251f167d801a27f0dfb4e2c14f4f08bf2214d9784a1b8c310fdfdcdaaea","2a1182578228dc1faad14627859042d59ea5ab7e3ac69cb2a3453329aaaa3b83","dfa99386b9a1c1803eb20df3f6d3adc9e44effc84fa7c2ab6537ed1cb5cc8cfb","79b0d5635af72fb87a2a4b62334b0ab996ff7a1a14cfdb895702e74051917718","5f00b052713bfe8e9405df03a1bbe406006b30ec6b0c2ce57d207e70b48cf4e9","7abcae770f21794b5ffbc3186483c3dbcf8b0c8e37d3ef3ed6277ece5c5dd4be","3e642f39da9ad0a4cd16ccbd7f363b6b5ad5fa16a5c6d44753f98fc1e3be9d96","7f5a6eac3d3d334e2f2eba41f659e9618c06361958762869055e22219f341554","6f996f44113b76a9960d3fad280f4f671115c5e971356d1dbb4d1b000af8b3b3","67f2cd6e208e68fdfa366967d1949575df6ccf90c104fc9747b3f1bdb69ad55a","f99ab9dffe6281c9b6df9ae9d8584d18eabf2107572bbd8fa5c83c8afe531af8","4fc9939c86a7d80ab6a361264e5666336d37e080a00d831d9358ad83575267da","f4ba385eedea4d7be1feeeac05aaa05d6741d931251a85ab48e0610271d001ce","fc79932b9aa710f025b89bf8d8329d99080286e5e079a7d5a529236e9f5dd69e","6646d9075e3e0eedb02c9d03bffef54c8bbeb601d27eed46f143aba435bac37d","0dec72b4c5c4bb149750fef4fc26bdae8f410de941ee766c953f5ac77381d690","8f2644578a3273f43fd700803b89b842d2cd09c1fba2421db45737357e50f5b1","f5405fb679a467cb979f8744940b22b7bc3a0bcbe648c3910d98de3188d42a78","68969a0efd9030866f60c027aedbd600f66ea09e1c9290853cc24c2dcc92000f","639f94fe145a72ce520d3d7b9b3b6c9049624d90cbf85cff46fb47fb28d1d8fe","8327a51d574987a2b0f61ea40df4adddf959f67bc48c303d4b33d47ba3be114a","991fd5ebf9f30ffa17cae6faeae6a838d3d91bdcdd419bce358dc99b8e5b0ad0","51b4ab145645785c8ced29238192f870dbb98f1968a7c7ef2580cd40663b2940","589713fefe7282fd008a2672c5fbacc4a94f31138bae6a03db2c7b5453dc8788","786691c952fe3feac79aca8f0e7e580d95c19afc8a4c6f8765e99fb756d8d9d7","4c348f139d006057ce9384e60b4ee1ce06bee5c16e19ff70f293ad88d5893386","e9d33b2549b5779b6cad92cb6a370c6c106cc12dc80da1cc199e2cb3a715bf38","62b753ed351fba7e0f6b57103529ce90f2e11b949b8fc69c39464fe958535c25","21e1fa3e5c95c61161a1ea2d819972e3b7e916a58571f8f9828b8a6c32e641ea","f78d0b00cf9700ef6fb82a5e52eeded028b18733bb8fdcc46a95ce598e83a292","24e26950b5a36dbc7f71e05a5f386c48933459e9322ca8b2c422d9154807526d","5a1c65ae0ada64906e44aebc307bb6444eb3d767feb96baea6116a05fcb1c26c","5522c276ab5033605c3afb218e2451063ad52f02a7561e8190855157732d438e","27da9754c20b488a648128951f3fadbdc56a0eeea0f5a1820f5809a5d008f068","cfbd1c9cadc7b4debc0c4807fccbde9d7ee49588f021e47d8d77cfdb22ef12c9","a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","d97766e9af30de9f96c7a5e8d7d6b3e39a269b8bd011083bd3745be7bd532b13","363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","fa2a8e2cc0bde051290d89f15a7b8f4db16d71cf67892be2bf4fca8cc2c3b338","1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","ea2de1a0ec4c9b8828154a971bfe38c47df2f5e9ec511f1a66adce665b9f04b0","c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","48f1a1b9f15770d9a64b51c596f9569f262fc7e67d7767595068a69539d32939","a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7",{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true},"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","f7a8f4bc1e8e786c6115970b8f3ed4797be48108de00b3552bf590706d3a5e8a","79cbed8c779049fdbdd856f1597f2e79be137b6ed44e66ead16ee8bf035d17da","1a8e6a4f31a5196144f35d0434e16369881d828c849d6a1c9290b6bde8807449","42a9ac86df0fa58634ea8a5f7f07b9b9c3243d82e306fb22d8a41639935a6c87","5766c26941ae00aa889335bcccc1ecb28271b774be92aede801354c9797074bb","3a19286bcc9303c9352c03d68bb4b63cecbf5c9b7848465847bb6c9ceafa1484","c573fef34c2e5cc5269fd9c95fe73a1eb9db17142f5d8f36ffe4a686378b8660","d97e30dd93590392fed422f2b27325d10ab007d034faaaf61e28e9ddc9d3825b","d1f8a829c5e90734bb47a1d1941b8819aeee6e81a2a772c3c0f70b30e3693fa9","be1dfacee25a14d79724ba21f1fde67f966b46e2128c68fed2e48c6e1e9822c5","19b3d0c212d241c237f79009b4cd0051e54971747fd89dc70a74f874d1192534","7daf4e4ddb3c93f922c56c836a33e53bd0f8172b68b1da70103b7330fd0f5406","672efa67dd818957bcef7b98f05e534901a0542292319097b543343e749d4ac2","7639642137f8329ef4a19410ce8d3e46910a76294df263f46b428fd61c79d033","3cae18f8e136a4122570a64862ef441372cb822a906b1ee25f1e13e10aba2783","42b4e53ea2ca9d4cff566336b781121a78db65049fafc73e464255534a4ecf48","445418dec131a34f848ab7a2dfb111ab8e854489d0f83c5d550d4ac948b45c1c","ea01929f899657fb0f6ba17b180e045d7053389cc28b9279524bf1ff2b8c164b","9b1b3740954bcc6a5e5360be7c5e7edfb13fb58cdae347430e0f9b239d63e434","8e69efd9afdfcd34d85adb6d8e71a5e13fea2a33c7019dd624cc7696772183a0","a7ebfe3e2c8f4fea5dac7ffbf6d00acee63c530de24d57cdeeed05530285ca26","82b4045609dc0918319f835de4f6cb6a931fd729602292921c443a732a6bb811","b9c6fc6c7b1296dd405f5dbd91ea1ae9f110de4cfab772c80c77d73fe33b2887","c0c0b22cefd1896b92d805556fcabda18720d24981b8cb74e08ffea1f73f96c2","b97e6411a3ee83e6f77760f0400d117313a980d05ec89f1e1a7502229e36d060","270418f8a6639be745d14bfd085e62685f24eaa6d6482aa9803bae8b8b93919a","4cb33d05ff168c1ca836d6d438f93040972af43fc09774876c4add2ad96d125f","707d01e4e7d69c672cbf82276bcdb6dd584b67da29e07fe5cba8c645ef4398ef","38104b9a37d0b9dc54be36ae43b1a32f9cfae34742743bfd7104cf1f39661225","47ff32ca9ab8474e89615b4bbe5f2264c2940fc12b86c4dc0a99659479517a6b","f892f85b4838f6a2ff1438d240dcf23a872d090794967c7f817a82ea8da1ad8e","cb498c53a9d35ac1cf9a3515f3835d48b4626a612cf7540c5bfb99542c9ab1a5","b86e64c48044bb73c6de7aa2cdf9295b2c104221e6a68b408225b283d1bcfda2","16173f5b3e68a373e7dfe6d00948549facc9947c9dbde813f1efe3a0f236ff6a","f457fc1b7583e1215393db13b95a186593660aad29706515ab7479869bc585e0","a11288edc8161f664148ea7d56101517e380335f5fa1a94408db86efce025bba","0fd70ca1eaef1e2dd6f48f16886df4838664821d992fd8076d07fc15e83c8498","ba30e6d2f1d20c707566cf485167331a10c539802a79040ced055b62a7aae53e","642eae3e9ec5997883f86dd7346d818f07d40fb83cc3530f0e52e232ffb4e631","29a6df727893a86807f4dc02116c31d9e6097139579ed6e8029b14c526cba027","537a2b61594512c5e75fad7e29d25c23922e27e5a1506eb4fce74fe858472a6e","311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","7c07838da165fd43759a54d2d490461315e977f9f37c046e0e357623c657fc42","b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","115c8691bd8fac390f6f6eef5b356543d716da7cffa4c2f70f288d56c5b06aeb","e91516e66f9fbf39c978a4092c16ffda3bb0b32158fca6def75aae9fab358153","abd4563a6a7668fa6f8f5e5a425a0900b80fc2309fec5186e2cae67f3ce92663","cb48f3011e72efef9d5a5b312f4a956f699b8d423bf9f2772724cdded496bd50","9aed07904079877252e6c0aedf1d2cf1935ed91d4abc16f726c76b61ea453919","6621af294bd4af8f3f9dd9bd99bd83ed8d2facd16faa6690a5b02d305abd98ab","5eada4495ab95470990b51f467c78d47aecfccc42365df4b1e7e88a2952af1a3","5fc0957ee8e15821ddb30a76e74e7984953fc35611a57fd703e624bade5836b9","40e9c2028b34c6c1e3281818d062f7008705254ee992d9857d051c603391e0f4","4720efe0341867600b139bca9a8fa7858b56b3a13a4a665bd98c77052ca64ea4","566fc645642572ec1ae3981e3c0a7dc976636976bd7a1d09740c23e8521496e5","66182e2432a30468eb5e2225063c391262b6a6732928bbc8ee794642b041dd87","11792ab82e35e82f93690040fd634689cad71e98ab56e0e31c3758662fc85736","3957b1244f49991b89f12cc45942c24f9c5927dc72677b105bb896d316f0454e","6c53c05df974ece61aca769df915345dc6d5b7649a01dc715b7da1809ce00a77","18c505381728b8cc6ea6986728403c1969f0d81216ed04163a867780af89f839","d121a48de03095d7dd5cd09d39e1a1c4892b520dad4c1d9c339c5d5008cfb536","f6d55e607f55be35a3c481b7685461a9acc1e27b893839218eb9313f7e85278c","b394ea95c82281d184ea83e8511bd1a43f78d6908eb34b536446d3eb08f9d47f","41edf4071b119fdf28b46a3c28c0845f2598bb8b196e7e4c9e01415403fdaea5","2bdf3bcf1a9771a288a783d1e8ee5d1d3126c11ddde26ae44864ab432192a6f6","603bafdacee4c8850ef5820f8642a817a3f0db6f76dda0474bcf3d17c2e15398","a10c79ab97c8a4f6074203094dba87bc736ca574ec480be1df6ec2c82d774573","801f049a9e74e941e8ca8add60492aaf4ab717a166248d355ded5753d80f9a85","70bba0a9c9c2ad7a042e134a840c4d8462bf0ad98e41c50ca52725ae47265eb9","f4dc28fbbba727722cb1fd82f51a7b9540fbe410ed04ddf35cab191d6aa2ba10","1f47dea3d5cfa752cfe10c48273dac3bb41cf07ec30d5801c9cb6cbd81823a94","79af5f8e385d7ca4a05f84a0a201c3e927d7a9a4b70c95f05314db8818d1734d","9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","80b47d2c0a754d391234eee9504bef339252456fdfd7745ae771e191828ffaf7","72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","dfc73114040523883452af0d14b19316f5ae4f9f44b131889d665feed7b0f02c","c6cbbca3099e385cc5bb4d68052d39ebf12504d1db8d8e8a035f7d24080fd42e","b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","68adf02128cad117e068f53ab334cbc730bcfeb7d658d8ce8118da6770b7e622","22945d276fc7ca24f1a4dd7fcc42d0c9c7357bee966f0d118b39ed6de97d858a","b606659dbd36a39d5d9324715fd7bf95d99a101ac885bf3cbb30337f8dbe09ab","7f1567b9dfb571a80556155a5bff1c946b23e74443466689bed24095604b3a9b","b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","51796c3726bf734b061fac41b479a660f9afccf50b8b493835e204723d23a84d","4db354d1dc4e2d96cd6fd8521c12cfcbb18a57df8e4be86b6c5123829557997d","da7183b9d834101b5b12d83dbcd4c98ac6d5d9cb7cb9cb66c0bc3b926f03ba45","88b881898e99e16c6c19c8125ea5a9b87d777466e8ac84653ac42c7cd7d5b464","2d2f9eed9f69b8e13e0dd86ab29205a78fbf1ba94c150cc59d58c6576fcca1ce","4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","964d3b8a65d1fa21515a3c7a9ed34898346f755e275c33e6fdfbeebb5f260744","1c77a5ab660e77952cc400cb9eba8f83cd93a045ca7abda544629e69c86150bd","04c72d6fa3275b08865357900ba7580a5c9e31692a12641a25665fed8411c8b8","fad2e326af305b648dd46cac96bf31c88f508823cfea877fae79a9b01dd4d524","45e0dd06a42ab62f879b1567438bce5b85eee9c6875685ca2c6ca10f978038b2","ad5976f5c289f6720287944a265db0761709be06d5331fc37a1b2999fa13bacc","c48268206ba168b8052c8d7fa692c631ae7aab106408c453e615da56f42bdb5f","63a76522cfc8f00ef401645579f8c0959bccd6e3118df66bae1fd45b709a9256","5870b02397c454afa21c294821b9496ebfb68c098c6ca8360bb1506398c39e45","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","f6e42784e93419b8acab053a096a80fc26e9f36bd3c7d10c6549f979968f5372","6f31e8019e7a6f406e786ea51841824dc75318b26f6eae602279342a4da9da6f","003b0535a82e82dd901927bf0092c81ad5867b84e273e0d98ab2d958df591060","2afb1699885c242563656dfac41072849720ab5c9cc3be87133413afb6cbf32c","2bdaf407163ca9ca9bc3c1d3fb78ad26b6bd2f7d68b04810fc28072925a95e9b","95347f256453f88602fcfc792b0ccea75f330aa22150bd95a6a8bb034a20ba14","dd2505eec07d3d341be4322f9f0380b5196f2b163944016227bb599dd89136e7","f9dfcd54e603db0684207424124c340a7eb0e61807ece0cdb51a8801c47c9155","ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","e93760553e478c36485ef4c548bcaed56514a45660636df1a355d647ce172e52","e50222c22db171b6e6f102dad414ba90b1ad3802537779e838bed86ff506cb28","4c36f9d0ffb25cf61b696b2777ba06d553d1b0cfd12d9eed8a1e3b1a50beb2f7","dd478451ffa00f4352bffe4f55b4531c8dec0edafb5777272089e5127dca808c","aedddd59fc4889fcdeb54a3b2a4943736f282c00db826ff710acb6bc91873b0d","5d9a5cc1712870f91f66850e7056e0d03b4046de5558a00e7190b6a9c2f7d432","0daf877cd2dcb81c0e39a96ee20262dc07ecc6f68d65cdb9cc6e6cf2f31d29c5","6206a6984c6210c7e02e8cec6c2417f6d2458ec36ac97b80ce9f894933a08082","d686fcb07a661fef0866137e450a487e710c233cb24f04d11426228162595d7e","8484a8762f074437ff6b9be1730dee2d607ff653ad5b432fe92d3889ec1b53bb","8e3f8a63b6af3fd917721cfe670eedf5aae7df605d0072c5997021eb6fbdae31","046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","abdf76f026d770eda24012e686a77c1c80860267b9e6e95fc26acbc180a1abfb","a6260e50e119a4ae143e080cb69501b76f70b55df4f40b3874ee785277003570","311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","c032a9b7dfc5f9b86ac5b1535fe72154dc48a7f89f76c5cb4e8a6ab4db203671","b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","23fa431c1549a548df67056c34a9ea3653b50266d77653a406ff5a67a7f861aa","174912359daff7bf7851731604bcb1aa25e6b56f2976797c5c2e31bc08bedfe8","a5a8a1bc2f458034182316db21717c4a25438517239ff2868ba8b6bfe455c505","60a0074289b6584a0d7003c2aa14d9ebd0027e423deb79e08031b7e708770c98","d62b7fb6c39357289ba064887935b0966cd99da5a3bb63afc1d6ea4f82ab23f1","7a8e7fc0c0b3c6f0344a6b54a56e928aba5b2bde679ca742acf67aeb67e6f9d2","2d232975df81628cb4d8a5236b8776976940cc4dd202698e498de5a4baeb7389","41b6a32ece86a9f7bdb5a6a9d47c580222f89afc5592654473ceed0035b49544","2f7551bc7fc68539406d169b81e73c085a0a52798efb3aef3266327246c28d29","6a3d24f24ae411600665f30a5d912af979c6fdf1c7ba8a9147235d5c105a9e83","96def9cb00debb7554a8019ae45310f375a65820bd8efa8e497a96e3416a5677","228eae4b5b181e59b73cbe0313eb5aa807f445122b21e365ca330bca2b22772e","956f962aca6becfca36766fe3af718b586829e1e4dd72f6b896057f75d4e9e83","f1f5af5650d4014cd999f2f86f7ab1a81779d966077fa4a723ea05069e07652c","9f7b583873c73cf01be845311d8b3e1715aecfa476a047d885804d837327d5db","6c9dfb8a6bc7ff438e84f19ff882a3d150b4b44e21d494133950f524997b02ee","f4a795af80885eba93957db860b4b82b4d23a76c5e122c2af5eeb9319094d9d1","3267bdd186e8d021bfa57a5314a256b9781e895bc025e426a2bdbe93b946cca0","31ed847fef6dc27c5224045deab8f99887ec76146cbc4f2ccb33f5b117fc9bf1","0df38983d84eccab44e2e6385bed5e1033b23228e484b80ff124d4049ca8e75a","7395857a8b73a1a5a14af625ec52c90f5b24bb0b163057d0f3e8a197ccc816ee","8b2e63aba58523a92dd15761096a03b5ebbd8983e2889b1f14265d9b2bb444b6","ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","6477c1bd38bbe6e8d74abebd01a073a7e45a89086a5a250e11725989a54a9a94","046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","d43fd9837c2a0745faaf914d61220abafe305f48902ec2c5ad3e980a50cf9a6d","2837ced1e5d4ef88b4e1688fa62bc93b4248d1825667c87a83adaa51bc810cbf","f61af6ed7df59c72b7e2fc7e25a4500f5e9beafad5be038d349c5348a0727ba5","d81fe001f3fb987591406c054f7ff1f69bef86d121dc66c03b92c2dee63efa95","bf7ccda18d9cb9ed3047d96a6542fee3c3bc4e7a7822af40332c5c2f6e07c2b7","7bc71d52df9d8e5cc55218d347a91b1758b38341f9cbbac0b80057aa9d93daa6","7a1f7b274cf8a66b83fcf42153bde6f25f4eb4d7696d4a6b17e4a8878d128306","553dd4fef7d2b88e899646b66b2035e119f61b092d668ae0595a32c234f9b8b5","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","6215681982d007f5e9137ab0ca969c39048401e588bb0ad92018297c82551ea8","82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","1b831600aabe1c065830d303d087189e1ccfc93a0ef1882eb58a336ec1ce9f2f","75f191b59fe7ce72d1d7d11d0f329a193843f54af93182fc5a65c37d0a82c85a","cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","f6451dc56be14d37a8b88ea62a143ea398ab44558cd530fb2cdeeea42695c849","8ab77e5c32f1b6c6c1ee1b1b771c1a76a16be650559dc61320c8c82c99fc7cde","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","c269a12e83c5ffc0332b1f245008e4e621e483dd2f8b9b77fc6a664fcde4969d","aa8a056ee45ae741849d6e809ba85967b638070060e29c57d12d22b14baefeb6",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a97081289e7233ca2ef04a729036449fec4e88818fd7b7397930bd4d52294b18","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","ae8cd6af37275eac75f5369cdb5f01063bcf1f48d74cb434303ee50ec446acfe","2518830a2fda9c272ba48798d0e7b857037443b06594db8e42c87e86944ee9e4","95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","99ab49d4732fdc98cf5c495925e65e796544cb4086fe42afc235dfc02bcf2351","af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","d393adc32e520d4274bb4c3dfdcdb342b806a230b66ef0f82b35bffbc4aa2590","c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","3b6040253231d44e6778eb6861cc86c1758562e77783d21b7ecbc73322ded539","03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","318c82cc1e13da55e8c60d7e1bdc422a0679d675ad048b6d5022a47f57d23e3f",{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true},"ac3cce682a1eab96841ce9942ace8dd5649d2951007096555f4950479e4b8d56","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","a45efe8e9134ef64a5e3825944bc16fffaf130b82943844523d7a7f7c1fd91b2","969aa6509a994f4f3b09b99d5d29484d8d52a2522e133ef9b4e54af9a3e9feaf","f378e8538e407f997a0f88fcd1ecd93a096707cc909339ce4dba2e4ea03f1726","dcafd874e49d42fc215dcb4ef1e06511363c1f31979951081f3cd1908a05a636","fb73c98050a02b5849cc0fbb0d133ed55764b9c2a91f0ada2a25e74df68e6242","6002c44a8e8edbe4c79ce856c7bac3f8e69a2a45dc5bd6b229ca4ab323b924b3","b4d505a77e0829de5e5e23eaefb3d7989e0dbdfdb02ea69159df9f40017fb958","b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","f2242adef346a64818a1af914146f6f6046f16505e8a228c3bdb70185d4fdf4c","2f7508d8eeadcfde20b41ec13726c9ad26f04bbf830434e289c6010d5be28455","8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","9798f0d3693043da9dda9146b5e8622cd4476270e7aed8f3cb346b9b40a52103","fc7e8927b6fa6c81d68783afb314d01592c559e86bd36df334c37f40d0136acd","73f72caffdd55f189b5bf4e6b5ca273b4e26269d9aac859b9d30a5f799c095ad","d998e3e185cdf59dfc84043c41a42c02daaf3b7b21bee2db2d1f620a8e134f4c","06aa8858883e08f5136eb182d2f285ea615aeb464007f83c7a31ee1f8d9932b1","62d429aba0bbe459a04965d10c7637b74b319149f17874920a5ffb9fe3ba14d8","084a25e9ee73362fbb467873341b95721689513c14af6aa3067a1d95d6fafe08","4dbfeb147290c498e3aa56ea3198a6a109c5c0d9d7a4936a3138376302d89e7d","169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","5009c081fd8ca3fcd6f3adcd071a1c79a933a400532b897822aad0943688a1f1","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","c271193e426325d9acab2f99997bb9f5f2dff850ec8c7c011c5abafe5af83b5f","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","a3e12bcf2d196656ccd5b5d5344182967a2bdde0f63c9b955c36169ed02c3555","a016d2f6c0a2c15069ec69661ad37c86a450deb629ce96a592f15f01d3a5746e","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","4fddd9f6929421ce580b4583defbb3f78f5a4a3642bea5ecd3209bf652d8b507","f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","557e00bde9af85bcb3ab6b3a785904f028f9f1b65dba664f2fda44965acf8a78","397981908f102effb3cd483042076b593f3928264dbf06aec235a7c3e83da2b4",{"version":"ad78491e2a3ae1e59680dbab88607dd670d06a91b1d6c451fa895ad390513e8a","affectsGlobalScope":true},{"version":"1a9deb79dabc5153448e38589fbe38945fdad45f0f8442cd4d4e1da8bb879a76","affectsGlobalScope":true},"f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956",{"version":"c9cc4c881c910ce378659524d985d2b72b79029b0c473df5d4d3557b4cf6010a","affectsGlobalScope":true},"7fae4b2bc906f3e6840725cc24affaa4e684e6c9cc20254242c5df4bede5b6f6","2dd1d4cea14cead7a7fc9eec8f40593089dff0de8c0199458446143c9b8c4ea9","c0288f54de6f544706a3150c8b579b1a975870695c4be866f727ece6a16f3976","ec2c7505ede4bc3ee37cfe431cfd87e545f55f27fe15b0809c1a411765145615"],"options":{"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":99,"outDir":"./dist-es","removeComments":true,"rootDir":"./src","skipLibCheck":true,"strict":true,"target":7,"useUnknownInCatchVariables":false},"fileIdsList":[[103],[73,89,101,388],[75,103,391],[69,103],[72,75,95,103,395,396,397],[103,406],[95,103,410],[75,103],[64,103],[399,400,414],[72,75,103,408,409],[392,409,410,417],[72,73,103,419],[72,75,77,80,89,95,103],[72,98,103,436,437,439],[438],[72,103],[441,443,444,445,446,447,448,449,450,451,452,453],[441,442,444,445,446,447,448,449,450,451,452,453],[442,443,444,445,446,447,448,449,450,451,452,453],[441,442,443,445,446,447,448,449,450,451,452,453],[441,442,443,444,446,447,448,449,450,451,452,453],[441,442,443,444,445,447,448,449,450,451,452,453],[441,442,443,444,445,446,448,449,450,451,452,453],[441,442,443,444,445,446,447,449,450,451,452,453],[441,442,443,444,445,446,447,448,450,451,452,453],[441,442,443,444,445,446,447,448,449,451,452,453],[441,442,443,444,445,446,447,448,449,450,452,453],[441,442,443,444,445,446,447,448,449,450,451,453],[441,442,443,444,445,446,447,448,449,450,451,452],[473],[458],[462,463,464],[461],[463],[440,459,460,465,468,470,471,472],[460,466,467,473],[466,469],[460,461,466,473],[460,473],[454,455,456,457],[75,95,103,479,480],[485],[72,73,103],[75,89,103],[488,527],[488,512,527],[527],[488],[488,513,527],[488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526],[513,527],[73,418],[75,103,416],[529],[89,103],[72,75,77,89,92,95,101,103],[72,103,541],[425],[424,425],[424],[424,425,426,428,429,432,433,434,435],[425,429],[424,425,426,428,429,430,431],[424,429],[429,433],[425,426,427],[426],[424,425,429],[403],[400,401,402],[400,403],[63,75,80,92,95,98,399,401,403,404,405],[149,190,191,192,193,301],[149,187,190,191,192,193,241,243,244,249,252,281,283,300],[149,187,189,301],[190,191,192,193],[231],[149,231,241],[188,301,302,304,305],[187],[189],[187,188],[149,190,191,192,193,241],[149,187,231,241,243,301,309],[149,187,231,241,243,301,314],[149,243,301],[242],[369,370,371],[384],[149],[360],[149,245],[245,246,247,248],[245],[250,251],[149,250],[149,231],[353,356],[266],[354,355],[206,207],[201],[201,202,203,204,205],[194,195,196,197,198,199,200,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230],[149,373],[267,268,269,270],[149,269],[271,274,280],[272,273],[275],[149,277,278],[277,278,279],[276],[375,376,377],[282],[89,103,149],[334,335],[149,241],[307,308],[149,157,158],[159,160],[157,158,161,162,163],[149,291,293],[149,266],[293,294,295,296,297,298,299],[149,295],[149,292],[322,323,324],[149,323],[149,253,263,264],[149,262],[265],[311,312,313],[75,77,103,149,241],[234],[235],[149,237],[149,232,233],[232,233,234,236,237,238,239,240],[254,255,256,257,258,259,260,261],[149,258],[149,155],[149,164],[151],[149,172,173],[174],[149,150,151,156,165,166,167,168,169,170,171,175,176,177,178,179,180,181,182,183,184,185,186],[47,54,55,56],[54,57],[47,51],[47,57],[45,46,55,56,57,58],[89,103,105],[107],[52,53,54,109],[52,54],[111,113,114],[111,112],[116],[45],[48,118],[118],[118,119,120,121,122],[121],[49],[118,119,120],[51,52,54],[107,108],[124],[124,128],[124,125,128,129],[53,127],[104],[44,50],[75,77,103],[47],[47,132,133,134],[44,48,49,50,51,52,53,54,59,106,107,108,109,110,112,115,116,117,123,126,127,130,131,135,136,137,138,139,140,141,142,143,144,146,147,148],[45,48,49,53],[110],[126],[51,53,112],[51,52],[51,116],[53,107,108],[75,89,103,105,138],[52,109,143,144],[51,75,76,103,110,138,142,144,145],[51],[44],[342,343],[379],[338],[381],[149,187],[350],[149,284],[149,286],[284],[284,285,286,287,288,289,290],[152,153,154],[89,149],[345,346,347],[60],[62],[63,68],[64,72,73,80,89],[64,65,72,80],[66,96],[67,68,73,81],[68,89],[69,70,72,80],[70],[71,72],[72],[72,73,74,89,95],[73,74],[72,75,80,89,95],[72,73,75,76,80,89,92,95],[75,77,89,92,95],[60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],[72,78],[79,95],[70,72,80,89],[81],[82],[62,83],[84,94],[85],[86],[72,87],[87,88,96,98],[72,89],[90],[91],[80,89,92],[93],[80,94],[75,86,95],[96],[89,97],[98],[99],[72,74,89,95,98,100],[89,101],[149,187,319,326,327,328,331,364],[149,187,241,244,249,252,281,283,300,319,326,327,328,331,352,359,361,362,363],[149,187,241,319,321,325,330,364],[319,326,327,328,331],[231,281,319],[149,231,241,319],[319,320,364,365,366,367],[187,319],[319,321],[187,319,320],[149,187,241,319,320,321,326,327,328,329,331],[187,281,291,309,319,332,349,364,372,374,378,380,382],[319,364,383,385],[187,319,340,341,344,348,364],[187,266,281,291,300,314,319,332,333,336,337,339,349,351,364],[187,241,319,357,358]],"referencedMap":[[387,1],[389,2],[392,3],[393,4],[398,5],[407,6],[411,7],[391,8],[412,9],[415,10],[410,11],[418,12],[420,13],[421,14],[438,15],[439,16],[395,17],[442,18],[443,19],[441,20],[444,21],[445,22],[446,23],[447,24],[448,25],[449,26],[450,27],[451,28],[452,29],[453,30],[474,31],[459,32],[465,33],[462,34],[464,35],[473,36],[468,37],[470,38],[471,39],[472,40],[467,40],[469,40],[461,40],[457,32],[458,41],[456,32],[481,42],[486,43],[388,44],[397,45],[512,46],[513,47],[488,48],[491,48],[510,46],[511,46],[501,46],[500,49],[498,46],[493,46],[506,46],[504,46],[508,46],[492,46],[505,46],[509,46],[494,46],[495,46],[507,46],[489,46],[496,46],[497,46],[499,46],[503,46],[514,50],[502,46],[490,46],[527,51],[521,50],[523,52],[522,50],[515,50],[516,50],[518,50],[520,50],[524,52],[525,52],[517,52],[519,52],[528,53],[417,54],[530,55],[532,8],[533,56],[540,57],[542,58],[479,45],[426,59],[435,60],[425,61],[436,62],[431,63],[432,64],[430,65],[434,66],[428,67],[427,68],[433,69],[429,60],[404,70],[403,71],[401,72],[406,73],[302,74],[301,75],[190,76],[191,76],[192,76],[193,76],[304,77],[303,78],[242,79],[306,80],[188,81],[305,82],[189,83],[318,84],[310,85],[315,86],[316,85],[317,87],[243,88],[369,78],[370,78],[372,89],[371,78],[385,90],[384,78],[244,91],[361,92],[360,91],[362,91],[245,78],[246,93],[249,94],[247,95],[248,93],[250,91],[252,96],[251,97],[353,98],[357,99],[354,100],[356,101],[355,91],[194,91],[195,91],[196,91],[197,91],[198,91],[199,91],[200,91],[208,102],[209,91],[211,91],[212,91],[213,91],[214,91],[215,91],[202,103],[203,91],[201,91],[206,104],[204,103],[205,103],[231,105],[216,91],[217,91],[218,91],[219,91],[221,91],[222,91],[223,91],[224,91],[225,91],[226,91],[227,102],[228,91],[229,91],[207,91],[230,91],[374,106],[333,91],[271,107],[267,100],[268,100],[270,108],[269,91],[281,109],[272,100],[274,110],[273,91],[276,111],[279,112],[280,113],[277,114],[278,114],[375,91],[378,115],[376,91],[282,91],[283,116],[334,117],[336,118],[335,91],[307,119],[309,120],[308,91],[337,91],[363,91],[159,121],[161,122],[160,91],[162,121],[163,121],[164,123],[157,91],[294,124],[295,125],[300,126],[297,91],[298,91],[299,127],[293,128],[292,91],[322,91],[325,129],[323,91],[324,130],[265,131],[253,91],[263,132],[264,91],[266,133],[314,134],[311,135],[312,119],[313,91],[235,136],[236,137],[237,91],[238,138],[234,139],[232,91],[233,91],[241,140],[240,91],[262,141],[258,91],[259,91],[260,142],[261,91],[151,91],[156,143],[165,144],[167,145],[176,91],[172,91],[174,146],[175,147],[173,91],[187,148],[150,91],[57,149],[58,150],[55,151],[56,152],[59,153],[106,154],[108,155],[110,156],[109,157],[115,158],[113,159],[117,160],[48,161],[119,162],[120,163],[123,164],[122,165],[118,166],[121,167],[116,168],[124,169],[125,170],[129,171],[130,172],[128,173],[105,174],[51,175],[131,176],[132,177],[133,177],[135,178],[134,177],[149,179],[54,180],[136,181],[127,182],[138,183],[126,184],[139,185],[140,186],[141,154],[142,154],[143,187],[145,188],[146,189],[147,181],[50,190],[53,168],[148,191],[341,91],[344,192],[380,193],[339,194],[382,195],[381,196],[351,197],[350,196],[285,198],[287,199],[288,200],[291,201],[286,91],[153,117],[155,202],[154,203],[348,204],[60,205],[62,206],[63,207],[64,208],[65,209],[66,210],[67,211],[68,212],[69,213],[70,214],[71,215],[72,216],[73,217],[74,218],[75,219],[76,220],[77,221],[103,222],[78,223],[79,224],[80,225],[81,226],[82,227],[83,228],[84,229],[85,230],[86,231],[87,232],[88,233],[89,234],[90,235],[91,236],[92,237],[93,238],[94,239],[95,240],[96,241],[97,242],[98,243],[99,244],[100,245],[101,246],[365,247],[364,248],[331,249],[326,249],[327,249],[328,249],[366,250],[340,251],[358,252],[368,253],[320,254],[367,255],[321,256],[330,257],[383,258],[386,259],[349,260],[352,261],[359,262]],"exportedModulesMap":[[387,1],[389,2],[392,3],[393,4],[398,5],[407,6],[411,7],[391,8],[412,9],[415,10],[410,11],[418,12],[420,13],[421,14],[438,15],[439,16],[395,17],[442,18],[443,19],[441,20],[444,21],[445,22],[446,23],[447,24],[448,25],[449,26],[450,27],[451,28],[452,29],[453,30],[474,31],[459,32],[465,33],[462,34],[464,35],[473,36],[468,37],[470,38],[471,39],[472,40],[467,40],[469,40],[461,40],[457,32],[458,41],[456,32],[481,42],[486,43],[388,44],[397,45],[512,46],[513,47],[488,48],[491,48],[510,46],[511,46],[501,46],[500,49],[498,46],[493,46],[506,46],[504,46],[508,46],[492,46],[505,46],[509,46],[494,46],[495,46],[507,46],[489,46],[496,46],[497,46],[499,46],[503,46],[514,50],[502,46],[490,46],[527,51],[521,50],[523,52],[522,50],[515,50],[516,50],[518,50],[520,50],[524,52],[525,52],[517,52],[519,52],[528,53],[417,54],[530,55],[532,8],[533,56],[540,57],[542,58],[479,45],[426,59],[435,60],[425,61],[436,62],[431,63],[432,64],[430,65],[434,66],[428,67],[427,68],[433,69],[429,60],[404,70],[403,71],[401,72],[406,73],[302,74],[301,75],[190,76],[191,76],[192,76],[193,76],[304,77],[303,78],[242,79],[306,80],[188,81],[305,82],[189,83],[318,84],[310,85],[315,86],[316,85],[317,87],[243,88],[369,78],[370,78],[372,89],[371,78],[385,90],[384,78],[244,91],[361,92],[360,91],[362,91],[245,78],[246,93],[249,94],[247,95],[248,93],[250,91],[252,96],[251,97],[353,98],[357,99],[354,100],[356,101],[355,91],[194,91],[195,91],[196,91],[197,91],[198,91],[199,91],[200,91],[208,102],[209,91],[211,91],[212,91],[213,91],[214,91],[215,91],[202,103],[203,91],[201,91],[206,104],[204,103],[205,103],[231,105],[216,91],[217,91],[218,91],[219,91],[221,91],[222,91],[223,91],[224,91],[225,91],[226,91],[227,102],[228,91],[229,91],[207,91],[230,91],[374,106],[333,91],[271,107],[267,100],[268,100],[270,108],[269,91],[281,109],[272,100],[274,110],[273,91],[276,111],[279,112],[280,113],[277,114],[278,114],[375,91],[378,115],[376,91],[282,91],[283,116],[334,117],[336,118],[335,91],[307,119],[309,120],[308,91],[337,91],[363,91],[159,121],[161,122],[160,91],[162,121],[163,121],[164,123],[157,91],[294,124],[295,125],[300,126],[297,91],[298,91],[299,127],[293,128],[292,91],[322,91],[325,129],[323,91],[324,130],[265,131],[253,91],[263,132],[264,91],[266,133],[314,134],[311,135],[312,119],[313,91],[235,136],[236,137],[237,91],[238,138],[234,139],[232,91],[233,91],[241,140],[240,91],[262,141],[258,91],[259,91],[260,142],[261,91],[151,91],[156,143],[165,144],[167,145],[176,91],[172,91],[174,146],[175,147],[173,91],[187,148],[150,91],[57,149],[58,150],[55,151],[56,152],[59,153],[106,154],[108,155],[110,156],[109,157],[115,158],[113,159],[117,160],[48,161],[119,162],[120,163],[123,164],[122,165],[118,166],[121,167],[116,168],[124,169],[125,170],[129,171],[130,172],[128,173],[105,174],[51,175],[131,176],[132,177],[133,177],[135,178],[134,177],[149,179],[54,180],[136,181],[127,182],[138,183],[126,184],[139,185],[140,186],[141,154],[142,154],[143,187],[145,188],[146,189],[147,181],[50,190],[53,168],[148,191],[341,91],[344,192],[380,193],[339,194],[382,195],[381,196],[351,197],[350,196],[285,198],[287,199],[288,200],[291,201],[286,91],[153,117],[155,202],[154,203],[348,204],[60,205],[62,206],[63,207],[64,208],[65,209],[66,210],[67,211],[68,212],[69,213],[70,214],[71,215],[72,216],[73,217],[74,218],[75,219],[76,220],[77,221],[103,222],[78,223],[79,224],[80,225],[81,226],[82,227],[83,228],[84,229],[85,230],[86,231],[87,232],[88,233],[89,234],[90,235],[91,236],[92,237],[93,238],[94,239],[95,240],[96,241],[97,242],[98,243],[99,244],[100,245],[101,246],[365,247],[364,248],[331,249],[326,249],[327,249],[328,249],[366,250],[340,251],[358,252],[368,253],[320,254],[367,255],[321,256],[330,257],[383,258],[386,259],[349,260],[352,261],[359,262]],"semanticDiagnosticsPerFile":[387,389,390,392,393,394,398,407,411,391,412,413,414,415,399,410,418,420,419,396,421,422,423,438,439,400,395,440,442,443,441,444,445,446,447,448,449,450,451,452,453,474,459,465,463,462,464,473,468,470,471,472,466,467,469,461,460,455,454,457,458,456,475,416,476,477,478,480,481,482,483,484,486,409,408,388,487,397,485,512,513,488,491,510,511,501,500,498,493,506,504,508,492,505,509,494,495,507,489,496,497,499,503,514,502,490,527,526,521,523,522,515,516,518,520,524,525,517,519,528,417,530,529,531,532,533,534,437,536,535,537,538,539,540,542,541,402,479,426,435,424,425,436,431,432,430,434,428,427,433,429,404,403,401,405,406,302,301,190,191,192,193,304,303,242,306,188,305,189,318,310,315,316,317,243,369,370,372,371,385,384,244,361,360,362,245,246,249,247,248,250,252,251,353,357,354,356,355,194,195,196,197,198,199,200,208,209,210,211,212,213,214,215,202,203,201,206,204,205,231,216,217,218,219,220,221,222,223,224,225,226,227,228,229,207,230,373,374,333,271,267,268,270,269,281,272,274,273,276,275,279,280,277,278,375,378,376,377,282,283,334,336,335,307,309,308,337,363,159,161,160,162,163,164,157,158,294,295,296,300,297,298,299,293,292,322,325,323,324,265,253,263,264,266,314,311,312,313,235,236,237,238,234,232,233,241,239,240,254,255,256,257,262,258,259,260,261,151,156,165,166,167,168,169,170,171,176,177,172,174,175,173,178,179,187,180,150,181,182,183,184,185,186,44,45,46,57,58,55,56,59,106,108,110,109,111,115,113,114,107,117,48,119,120,123,122,118,121,116,124,125,129,130,128,105,51,131,132,133,47,135,134,149,49,54,136,137,52,127,138,126,139,140,141,142,143,112,145,146,104,147,144,50,53,148,341,342,344,343,379,380,338,339,382,381,351,350,285,289,287,290,288,291,286,284,152,153,155,154,345,348,346,347,60,62,63,64,65,66,67,68,69,70,71,72,73,74,61,102,75,76,77,103,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,329,319,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,332,365,364,331,326,327,328,366,340,358,368,320,367,321,330,383,386,349,352,359]},"version":"4.9.5"} \ No newline at end of file diff --git a/src.gen/@amzn/codewhisperer-streaming/tsconfig.types.tsbuildinfo b/src.gen/@amzn/codewhisperer-streaming/tsconfig.types.tsbuildinfo new file mode 100644 index 00000000000..b8d95d85b82 --- /dev/null +++ b/src.gen/@amzn/codewhisperer-streaming/tsconfig.types.tsbuildinfo @@ -0,0 +1 @@ +{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/tslib/tslib.d.ts","./node_modules/@smithy/types/dist-types/abort.d.ts","./node_modules/@smithy/types/dist-types/auth/auth.d.ts","./node_modules/@smithy/types/dist-types/auth/httpapikeyauth.d.ts","./node_modules/@smithy/types/dist-types/identity/identity.d.ts","./node_modules/@smithy/types/dist-types/endpoint.d.ts","./node_modules/@smithy/types/dist-types/logger.d.ts","./node_modules/@smithy/types/dist-types/uri.d.ts","./node_modules/@smithy/types/dist-types/http.d.ts","./node_modules/@smithy/types/dist-types/response.d.ts","./node_modules/@smithy/types/dist-types/util.d.ts","./node_modules/@smithy/types/dist-types/middleware.d.ts","./node_modules/@smithy/types/dist-types/auth/httpsigner.d.ts","./node_modules/@smithy/types/dist-types/auth/identityproviderconfig.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthscheme.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/types/dist-types/auth/index.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/index.d.ts","./node_modules/@smithy/types/dist-types/transform/exact.d.ts","./node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts","./node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/crypto.d.ts","./node_modules/@smithy/types/dist-types/checksum.d.ts","./node_modules/@smithy/types/dist-types/command.d.ts","./node_modules/@smithy/types/dist-types/client.d.ts","./node_modules/@smithy/types/dist-types/connection/config.d.ts","./node_modules/@smithy/types/dist-types/transfer.d.ts","./node_modules/@smithy/types/dist-types/connection/manager.d.ts","./node_modules/@smithy/types/dist-types/connection/pool.d.ts","./node_modules/@smithy/types/dist-types/connection/index.d.ts","./node_modules/@smithy/types/dist-types/eventstream.d.ts","./node_modules/@smithy/types/dist-types/encode.d.ts","./node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","./node_modules/@smithy/types/dist-types/endpoints/endpointruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/errorruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/treeruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/rulesetobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/index.d.ts","./node_modules/@smithy/types/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultclientconfiguration.d.ts","./node_modules/@smithy/types/dist-types/shapes.d.ts","./node_modules/@smithy/types/dist-types/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/types/dist-types/extensions/index.d.ts","./node_modules/@smithy/types/dist-types/http/httphandlerinitialization.d.ts","./node_modules/@smithy/types/dist-types/identity/apikeyidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/index.d.ts","./node_modules/@smithy/types/dist-types/pagination.d.ts","./node_modules/@smithy/types/dist-types/profile.d.ts","./node_modules/@smithy/types/dist-types/serde.d.ts","./node_modules/@smithy/types/dist-types/signature.d.ts","./node_modules/@smithy/types/dist-types/stream.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","./node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","./node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","./node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","./node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts","./node_modules/@smithy/types/dist-types/waiter.d.ts","./node_modules/@smithy/types/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/nooplogger.d.ts","./node_modules/@smithy/smithy-client/dist-types/client.d.ts","./node_modules/@smithy/util-stream/dist-types/blob/uint8arrayblobadapter.d.ts","./node_modules/@smithy/util-stream/dist-types/getawschunkedencodingstream.d.ts","./node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts","./node_modules/@smithy/util-stream/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/resolveendpointconfig.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getendpointfrominstructions.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toendpointv1.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/endpointmiddleware.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/getendpointplugin.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/command.d.ts","./node_modules/@smithy/smithy-client/dist-types/constants.d.ts","./node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts","./node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts","./node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts","./node_modules/@smithy/smithy-client/dist-types/emitwarningifunsupportedversion.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts","./node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts","./node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts","./node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts","./node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-every.d.ts","./node_modules/@smithy/smithy-client/dist-types/index.d.ts","./src/models/codewhispererstreamingserviceexception.ts","./src/models/models_0.ts","./node_modules/@smithy/middleware-serde/dist-types/deserializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serdeplugin.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/httprequest.d.ts","./node_modules/@smithy/protocol-http/dist-types/httpresponse.d.ts","./node_modules/@smithy/protocol-http/dist-types/httphandler.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/httpextensionconfiguration.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/field.d.ts","./node_modules/@smithy/protocol-http/dist-types/fields.d.ts","./node_modules/@smithy/protocol-http/dist-types/isvalidhostname.d.ts","./node_modules/@smithy/protocol-http/dist-types/types.d.ts","./node_modules/@smithy/protocol-http/dist-types/index.d.ts","./src/commands/exportresultarchivecommand.ts","./src/commands/generateassistantresponsecommand.ts","./src/commands/generatetaskassistplancommand.ts","./node_modules/@types/uuid/index.d.ts","./src/protocols/aws_restjson1.ts","./src/commands/conversestreamcommand.ts","./package.json","./node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromenv.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/gethomedir.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getprofilename.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfilepath.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfromfile.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadsharedconfigfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadssosessiondata.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/parseknownfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromsharedconfigfiles.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromstatic.d.ts","./node_modules/@smithy/node-config-provider/dist-types/configloader.d.ts","./node_modules/@smithy/node-config-provider/dist-types/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusedualstackendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusefipsendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolveendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolvecustomendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvarianttag.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvariant.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/partitionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/regionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/getregioninfo.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts","./node_modules/@smithy/hash-node/dist-types/index.d.ts","./node_modules/@smithy/util-retry/dist-types/types.d.ts","./node_modules/@smithy/util-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/configuredretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/defaultratelimiter.d.ts","./node_modules/@smithy/util-retry/dist-types/config.d.ts","./node_modules/@smithy/util-retry/dist-types/constants.d.ts","./node_modules/@smithy/util-retry/dist-types/index.d.ts","./node_modules/@smithy/middleware-retry/dist-types/types.d.ts","./node_modules/@smithy/middleware-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts","./node_modules/@smithy/middleware-retry/dist-types/delaydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/omitretryheadersmiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrymiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/index.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts","./node_modules/@smithy/node-http-handler/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/index.d.ts","./node_modules/@aws-sdk/types/dist-types/abort.d.ts","./node_modules/@aws-sdk/types/dist-types/auth.d.ts","./node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","./node_modules/@aws-sdk/types/dist-types/checksum.d.ts","./node_modules/@aws-sdk/types/dist-types/client.d.ts","./node_modules/@aws-sdk/types/dist-types/command.d.ts","./node_modules/@aws-sdk/types/dist-types/connection.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/identity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/anonymousidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/loginidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","./node_modules/@aws-sdk/types/dist-types/util.d.ts","./node_modules/@aws-sdk/types/dist-types/credentials.d.ts","./node_modules/@aws-sdk/types/dist-types/crypto.d.ts","./node_modules/@aws-sdk/types/dist-types/dns.d.ts","./node_modules/@aws-sdk/types/dist-types/encode.d.ts","./node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","./node_modules/@aws-sdk/types/dist-types/eventstream.d.ts","./node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/types/dist-types/http.d.ts","./node_modules/@aws-sdk/types/dist-types/logger.d.ts","./node_modules/@aws-sdk/types/dist-types/middleware.d.ts","./node_modules/@aws-sdk/types/dist-types/pagination.d.ts","./node_modules/@aws-sdk/types/dist-types/profile.d.ts","./node_modules/@aws-sdk/types/dist-types/request.d.ts","./node_modules/@aws-sdk/types/dist-types/response.d.ts","./node_modules/@aws-sdk/types/dist-types/retry.d.ts","./node_modules/@aws-sdk/types/dist-types/serde.d.ts","./node_modules/@aws-sdk/types/dist-types/shapes.d.ts","./node_modules/@aws-sdk/types/dist-types/signature.d.ts","./node_modules/@aws-sdk/types/dist-types/stream.d.ts","./node_modules/@aws-sdk/types/dist-types/token.d.ts","./node_modules/@aws-sdk/types/dist-types/transfer.d.ts","./node_modules/@aws-sdk/types/dist-types/uri.d.ts","./node_modules/@aws-sdk/types/dist-types/waiter.d.ts","./node_modules/@aws-sdk/types/dist-types/index.d.ts","./src/endpoints.ts","./node_modules/@smithy/url-parser/dist-types/index.d.ts","./node_modules/@smithy/util-base64/dist-types/frombase64.d.ts","./node_modules/@smithy/util-base64/dist-types/tobase64.d.ts","./node_modules/@smithy/util-base64/dist-types/index.d.ts","./node_modules/@smithy/util-utf8/dist-types/fromutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/touint8array.d.ts","./node_modules/@smithy/util-utf8/dist-types/toutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/index.d.ts","./src/runtimeconfig.shared.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts","./src/runtimeconfig.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts","./src/extensionconfiguration.ts","./src/runtimeextensions.ts","./node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/loggermiddleware.d.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/gettokenplugin.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/resolvetokenconfig.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/tokenmiddleware.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/eventstreamserdeconfig.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts","./node_modules/@smithy/middleware-content-length/dist-types/index.d.ts","./src/codewhispererstreamingclient.ts","./src/codewhispererstreaming.ts","./src/commands/index.ts","./src/models/index.ts","./src/index.ts","./node_modules/@aws-crypto/sha256-browser/build/crossplatformsha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/ie11sha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/webcryptosha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/index.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts","./src/runtimeconfig.browser.ts","./node_modules/@aws-crypto/sha256-js/build/jssha256.d.ts","./node_modules/@aws-crypto/sha256-js/build/index.d.ts","./src/runtimeconfig.native.ts","../../../node_modules/@types/adm-zip/index.d.ts","../../../node_modules/@types/readdir-glob/index.d.ts","../../../node_modules/@types/archiver/index.d.ts","../../../node_modules/@types/async-lock/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/bytes/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/circular-dependency-plugin/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/cross-spawn/index.d.ts","../../../node_modules/@types/diff/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/glob/node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/parse5/dist/common/html.d.ts","../../../node_modules/parse5/dist/common/token.d.ts","../../../node_modules/parse5/dist/common/error-codes.d.ts","../../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/dist/tokenizer/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/parser/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/serializer/index.d.ts","../../../node_modules/parse5/dist/common/foreign-content.d.ts","../../../node_modules/parse5/dist/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/linkify-it/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdurl/encode.d.ts","../../../node_modules/@types/mdurl/decode.d.ts","../../../node_modules/@types/mdurl/parse.d.ts","../../../node_modules/@types/mdurl/format.d.ts","../../../node_modules/@types/mdurl/index.d.ts","../../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../../node_modules/@types/markdown-it/lib/token.d.ts","../../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../../node_modules/@types/markdown-it/lib/index.d.ts","../../../node_modules/@types/markdown-it/index.d.ts","../../../node_modules/@types/mime-types/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/prismjs/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/proper-lockfile/index.d.ts","../../../node_modules/@types/readline-sync/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sinon/node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/stream-buffers/index.d.ts","../../../node_modules/@types/tcp-port-used/index.d.ts","../../../node_modules/@types/vscode/index.d.ts","../../../node_modules/@types/vscode-webview/index.d.ts","../../../node_modules/@types/webidl-conversions/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/whatwg-url/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/xml2js/lib/processors.d.ts","../../../node_modules/@types/xml2js/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","c55ae709f94155174ff63647edd2a7e3acbd02a2909aa2541569e8b8bac9fc40","530e5c7e4f74267b7800f1702cf0c576282296a960acbdb2960389b2b1d0875b","1c483cc60a58a0d4c9a068bdaa8d95933263e6017fbea33c9f99790cf870f0a8","07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","d5f1bbd44ba4f63d8a01fff5e1edc1c1fb50e9caa48a4fa48298a4485d6ff75c","4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","d12680e217215b37094868d491d00196e80f270ce47e5a4bc50269945ae5554d","396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","b7b881ced4ed4dee13d6e0ccdb2296f66663ba6b1419767271090b3ff3478bb9","06289b9873760aac77aed4035ea6c60b1e0879b8afe47a4530bc8522b9b804b1","63c36aa73242aa745fae813c40585111ead225394b0a0ba985c2683baa6b0ef9","3e7ffc7dd797e5d44d387d0892bc288480493e73dcab9832812907d1389e4a98","db011ec9589fd51995cbd0765673838e38e6485a6559163cc53dcf508b480909","e1a4253f0cca15c14516f52a2ad36c3520b140b5dfb3b3880a368cd75d45d6d9","159af954f2633a12fdee68605009e7e5b150dbeb6d70c46672fd41059c154d53","f5331cb9cc00970e4831e7f0de9688e04986bcde808cac10caa3e7005e203907",{"version":"d20bbe9029b614c171212c50c842fa7ddfc61a6bbc697710ac70e4f7f0c77d15","affectsGlobalScope":true},"a9d67f9ae6bb38f732c51d1081af6a0ac6cae5e122472cacc2d54db178013699","1296a364908ba9c646372edc18ee0e140d9a388956b0e9510eec906b19fa5b36","1c863a53fb796e962c4b3e54bc7b77fd04a518444263d307290ff04f619c275e","ff98afc32b01e580077faf85b60232b65c40df0c3ecaa765fabc347a639b4225",{"version":"30133f9ceaa46c9a20092c382fed7b8d09393cf1934392149ea8202991edb3ea","affectsGlobalScope":true},"30c05e45ec7e1247ba9b87ad2acfae4fda401737f0e8a59f78beda8a4e22b110","2da83cc57a94f7aee832f2a71e1a294d857492761c1f5db717ea42c1a22467bc","aa5cc73a5f548f5bc1b4279a730c03294dfa6e98bed228d4ed6322a4183b26ad","b3f1ac9fe3d18d6cd04ab1e67a5da8c33ceb47f26b47e67896a5b2f8293c8a32",{"version":"ca88e8b07c8186ef3180bf9b6b4456311ae41bf3fe5652c27a2a3feba04136b0","affectsGlobalScope":true},{"version":"592d937b7df1b74af7fa81656503fc268fee50f0e882178e851b667def34414b","affectsGlobalScope":true},"fdfdf2eab2bded61ee321ec88b8e083fe8d9fedad25a16ae040740869bc64e48","e8067fc8b0247f8b5ad781bd22f5dd19f6a39961ba60fa6fc13cfe9e624ca92f","842ef57ce3043fba0b0fb7eece785140af9d2381e4bed4f2744d3060352f2fd5","9095b6f13d9e48704b919d9b4162c48b04236a4ce664dc07549a435d8f4e612e","111b4c048fe89d25bb4d2a0646623ff4c456a313ed5bfb647b2262dda69a4ff8","f70f62f5f87ff8900090069554f79d9757f8e385322d0e26268463e27c098204","0932ed41e23d22fa5359f74805c687314e4b707b3428e52419d0fbefc0d66661","af07f4baaca7e5cf70cb8887e7d4f23d6bb0c0dd6ca1329c3d959ea749b7a14d","c80402af7b0420f57372ac99885f1ab058121db72418e43d25f440abda7bbe23","71aba6ce66e76ccfd3ba92b8b5c6658bad293f1313f012821c4bff1dd64ca278","17d944cab17bc9e32975250e8abe8073702f9493582d847805e446641bd7798f",{"version":"c6bfc70bbdee282436ee11e887cceaa5988ac4eec60d5eb9b3711748c811831a","affectsGlobalScope":true},"f9ca5159f56c1fe99cdfc5f942585de20695a2a343db8543383b239c050f6aa4","84634ac706042ac8ee3a1e141bcdee03621725ab55455dba878a5503c6c7e037","d796c62c3c91c22c331b7465be89d009459eb1eb689304c476275f48676eaf9e","51cbf03ad34c3e84d1998bd57d1fd8da333d66dd65904625d22dc01b751d99c7","c31bbdc27ef936061eaa9d423c5da7c5b439a4ff6b5f1b18f89b30cf119d5a56","2a4ae2a8f834858602089792c9e8bab00075f5c4b1708bd49c298a3e6c95a30c","71e29ae391229f876d8628987640c3c51c89a1c2fd980d1a72d69aeee4239f80","51c74d73649a4d788ed97b38bd55ebac57d85b35cbf4a0357e3382324e10bbe9","c8641524781fa803006a144fd3024d5273ab0c531d8a13bbeaa8c81d8241529f","73e218d8914afc428a24b7d1de42a2cb37f0be7ac1f5c32c4a66379572700b52",{"version":"56ff5262d76c01b3637ca82f9749d3ec0d70cf57d87964bf3e9ba4204241849e","affectsGlobalScope":true},"9e3a18040e5a95f61556e09c932393b49c3b21ce42abe0f4ed74b97173f320db","344922fac39b5732179b606e16781b354c160f0e9bd7f5921a0fdc9fe4ede1fb","c1449f51f9496bb23f33ee48ff590b815393ef560a9e80493614869fe50915da","87a49241df2b37e59f86619091dec2beb9ad8126d7649f0b0edb8fc99eca2499","07efd1f649e91967fada88d53ad64b61c1b2853d212f3eaffc946e7e13d03d67","6d79a0938f4b89c1c1fee2c3426754929173c8888fdfaab6b6d645269945f7bf",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"c6c0bd221bb1e94768e94218f8298e47633495529d60cae7d8da9374247a1cf5","a1b36a1f91a54daf2e89e12b834fa41fb7338bc044d1f08a80817efc93c99ee5","8bb4a5b632dd5a868f3271750895cb61b0e20cff82032d87e89288faee8dd6e2","0c1aabfd9fb1818afb2e798f91f669edafce59cd7e3423d25b1cfccfaaf2c403","017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","aee8faa433dde04beedb779b3329456a286a966462d666c138c19113ce78c79e","d620ec36bfc6f8ed6fdecbe036d55cec81637f32fd34dc7bb7e60eba1764e910","4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","fc9bdd9b3d8fb59c913cb3b8dea0d79b38dfe9331ef07e1c6dc6bf363f061ad6","e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","0c3c4ce6a1884610c99306719f59174d81808c69393c30119f9c2aef0449a2cb","219a25474e58a8161b242776856ec5f6960839b63e74809445e51cadbfc18096","5a0d1534e9493ae44b08b3055172da38370e2afd2bc3d4bea11f7be78344036f","6309a45fc3c03d3c4d56228e995d51974f53009a842374695b34f3607877e5a3","bef94eba81ae2c09059c0d9abdb1ae1b7090314f70550f3c8cd5d7ead4a4f212","48b787ad458be9b524fa5fdfef34f68798074132d4b8cfe6a6fe9c2bf334c532","37280465f8f9b2ea21d490979952b18b7f4d1f0d8fab2d627618fb2cfa1828e3","7281550c523596fd0fd36c6e19aa89075dac93144437ce48490da319b1f4d318","3f3f85dc43cb93c5a797f1ff0fa948d0e17843a443ae11a20cc032ccdf1b9997","020507cb67b96b0830a8636db03ae004181eee323ba33565cfe8d45aaedc4d1d","869010bc679df668137cb3b78a3cb8196e97acf285208a57f6156ceac894a2f7","bcae62618c23047e36d373f0feac5b13f09689e4cd08e788af13271dbe73a139","29a99d2e57b3e08a997cbc2397bdb251441a545306a74b95ffedc5f03d9bc6b7","5ae003688265a1547bbcb344bf0e26cb994149ac2c032756718e9039302dfac8","09e811cc1088d9ea3a7ddd7290f6a13767f56c85daf8c3374a06a45a08d55647","9da2c58a27fdce871c2eac09d5172b04248bb86ada9b0d10e8b3dfa8470b8dd3","5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","7b270dc53f35dd0b44bfa619ad4d351fffd512e14053c3688323ed007eda3f6d","6d4e928f232ade7221cffc6e4332ec935baa176415c9bf5d12111bb883a247d2","e86ad029224d4f2af3e188be8b5e9badf8c7083247572069bac7bd2193131fc7","057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","38aa389acf91d77db5a4f8e26e713ed53dc832ed5573def9cd20acd9ba97c1fe","e56784be93954f1f86d4dd3ac61b4c9727e75864baf123a1b584b970baed4ba0","f878779620c5178d45413b33c214419bb3df2945e703c35e1191188321e3633d","b9115605f72b65a662723020b2a1eb696c375a5803d6b401dc01fcbfe49ece90","151659e152d71986b8943b9943cd7fbe27a65874655081602de7ea24a0f66e9b","4d250e905299144850c6f8e74dad1ee892d847643bacf637e89adcce013f0700","5fca180ba7514e439b225ee5eb47e5cf9254a591095f93cf7ca298ce6264159b","ed3e176bc769725ebc1d93f1d6890fc3d977b9155ae5d03be96ec2d49b303370","7933769d84f5ae16546aef06537ca578f1c8d7cca0708452a00613050ac1f265","cc5c913c4716a0d1563b2a63a7c4dc2fa81b7d7bc58489c79896d69b27e978cd","f194cdeb1caaf80e625f4fad340a9434b2b83786028dcc5ea6f3c459cc7789a0","f8ce447bbda4f75da74cecd866cc1ff9bdde62189ac9d8dc14a16c48b3d702fa","236247fb33a56e1d43b097c000aaafcac8fea1e8bf38d1a64f13889b32c372d0","c7d30b164562b7ce99fcb53ab78f937cc845e003f6089d648351331921379994","fe2d1251f167d801a27f0dfb4e2c14f4f08bf2214d9784a1b8c310fdfdcdaaea","2a1182578228dc1faad14627859042d59ea5ab7e3ac69cb2a3453329aaaa3b83","dfa99386b9a1c1803eb20df3f6d3adc9e44effc84fa7c2ab6537ed1cb5cc8cfb","79b0d5635af72fb87a2a4b62334b0ab996ff7a1a14cfdb895702e74051917718","5f00b052713bfe8e9405df03a1bbe406006b30ec6b0c2ce57d207e70b48cf4e9","7abcae770f21794b5ffbc3186483c3dbcf8b0c8e37d3ef3ed6277ece5c5dd4be","3e642f39da9ad0a4cd16ccbd7f363b6b5ad5fa16a5c6d44753f98fc1e3be9d96","7f5a6eac3d3d334e2f2eba41f659e9618c06361958762869055e22219f341554","6f996f44113b76a9960d3fad280f4f671115c5e971356d1dbb4d1b000af8b3b3","67f2cd6e208e68fdfa366967d1949575df6ccf90c104fc9747b3f1bdb69ad55a","f99ab9dffe6281c9b6df9ae9d8584d18eabf2107572bbd8fa5c83c8afe531af8","4fc9939c86a7d80ab6a361264e5666336d37e080a00d831d9358ad83575267da","f4ba385eedea4d7be1feeeac05aaa05d6741d931251a85ab48e0610271d001ce","fc79932b9aa710f025b89bf8d8329d99080286e5e079a7d5a529236e9f5dd69e","6646d9075e3e0eedb02c9d03bffef54c8bbeb601d27eed46f143aba435bac37d","0dec72b4c5c4bb149750fef4fc26bdae8f410de941ee766c953f5ac77381d690","8f2644578a3273f43fd700803b89b842d2cd09c1fba2421db45737357e50f5b1","f5405fb679a467cb979f8744940b22b7bc3a0bcbe648c3910d98de3188d42a78","68969a0efd9030866f60c027aedbd600f66ea09e1c9290853cc24c2dcc92000f","639f94fe145a72ce520d3d7b9b3b6c9049624d90cbf85cff46fb47fb28d1d8fe","8327a51d574987a2b0f61ea40df4adddf959f67bc48c303d4b33d47ba3be114a","991fd5ebf9f30ffa17cae6faeae6a838d3d91bdcdd419bce358dc99b8e5b0ad0","51b4ab145645785c8ced29238192f870dbb98f1968a7c7ef2580cd40663b2940","589713fefe7282fd008a2672c5fbacc4a94f31138bae6a03db2c7b5453dc8788","786691c952fe3feac79aca8f0e7e580d95c19afc8a4c6f8765e99fb756d8d9d7","4c348f139d006057ce9384e60b4ee1ce06bee5c16e19ff70f293ad88d5893386","e9d33b2549b5779b6cad92cb6a370c6c106cc12dc80da1cc199e2cb3a715bf38","62b753ed351fba7e0f6b57103529ce90f2e11b949b8fc69c39464fe958535c25","21e1fa3e5c95c61161a1ea2d819972e3b7e916a58571f8f9828b8a6c32e641ea",{"version":"964d3b8a65d1fa21515a3c7a9ed34898346f755e275c33e6fdfbeebb5f260744","signature":"f78d0b00cf9700ef6fb82a5e52eeded028b18733bb8fdcc46a95ce598e83a292"},{"version":"1c77a5ab660e77952cc400cb9eba8f83cd93a045ca7abda544629e69c86150bd","signature":"24e26950b5a36dbc7f71e05a5f386c48933459e9322ca8b2c422d9154807526d"},"04c72d6fa3275b08865357900ba7580a5c9e31692a12641a25665fed8411c8b8","fad2e326af305b648dd46cac96bf31c88f508823cfea877fae79a9b01dd4d524","45e0dd06a42ab62f879b1567438bce5b85eee9c6875685ca2c6ca10f978038b2","ad5976f5c289f6720287944a265db0761709be06d5331fc37a1b2999fa13bacc","79cbed8c779049fdbdd856f1597f2e79be137b6ed44e66ead16ee8bf035d17da","1a8e6a4f31a5196144f35d0434e16369881d828c849d6a1c9290b6bde8807449","42a9ac86df0fa58634ea8a5f7f07b9b9c3243d82e306fb22d8a41639935a6c87","5766c26941ae00aa889335bcccc1ecb28271b774be92aede801354c9797074bb","3a19286bcc9303c9352c03d68bb4b63cecbf5c9b7848465847bb6c9ceafa1484","c573fef34c2e5cc5269fd9c95fe73a1eb9db17142f5d8f36ffe4a686378b8660","d97e30dd93590392fed422f2b27325d10ab007d034faaaf61e28e9ddc9d3825b","d1f8a829c5e90734bb47a1d1941b8819aeee6e81a2a772c3c0f70b30e3693fa9","be1dfacee25a14d79724ba21f1fde67f966b46e2128c68fed2e48c6e1e9822c5","19b3d0c212d241c237f79009b4cd0051e54971747fd89dc70a74f874d1192534",{"version":"c48268206ba168b8052c8d7fa692c631ae7aab106408c453e615da56f42bdb5f","signature":"5522c276ab5033605c3afb218e2451063ad52f02a7561e8190855157732d438e"},{"version":"63a76522cfc8f00ef401645579f8c0959bccd6e3118df66bae1fd45b709a9256","signature":"27da9754c20b488a648128951f3fadbdc56a0eeea0f5a1820f5809a5d008f068"},{"version":"5870b02397c454afa21c294821b9496ebfb68c098c6ca8360bb1506398c39e45","signature":"cfbd1c9cadc7b4debc0c4807fccbde9d7ee49588f021e47d8d77cfdb22ef12c9"},"fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e",{"version":"f6e42784e93419b8acab053a096a80fc26e9f36bd3c7d10c6549f979968f5372","signature":"2d2f9eed9f69b8e13e0dd86ab29205a78fbf1ba94c150cc59d58c6576fcca1ce"},{"version":"6f31e8019e7a6f406e786ea51841824dc75318b26f6eae602279342a4da9da6f","signature":"5a1c65ae0ada64906e44aebc307bb6444eb3d767feb96baea6116a05fcb1c26c"},"003b0535a82e82dd901927bf0092c81ad5867b84e273e0d98ab2d958df591060","2afb1699885c242563656dfac41072849720ab5c9cc3be87133413afb6cbf32c","b9c6fc6c7b1296dd405f5dbd91ea1ae9f110de4cfab772c80c77d73fe33b2887","c0c0b22cefd1896b92d805556fcabda18720d24981b8cb74e08ffea1f73f96c2","b97e6411a3ee83e6f77760f0400d117313a980d05ec89f1e1a7502229e36d060","270418f8a6639be745d14bfd085e62685f24eaa6d6482aa9803bae8b8b93919a","4cb33d05ff168c1ca836d6d438f93040972af43fc09774876c4add2ad96d125f","707d01e4e7d69c672cbf82276bcdb6dd584b67da29e07fe5cba8c645ef4398ef","38104b9a37d0b9dc54be36ae43b1a32f9cfae34742743bfd7104cf1f39661225","47ff32ca9ab8474e89615b4bbe5f2264c2940fc12b86c4dc0a99659479517a6b","f892f85b4838f6a2ff1438d240dcf23a872d090794967c7f817a82ea8da1ad8e","cb498c53a9d35ac1cf9a3515f3835d48b4626a612cf7540c5bfb99542c9ab1a5","b86e64c48044bb73c6de7aa2cdf9295b2c104221e6a68b408225b283d1bcfda2","16173f5b3e68a373e7dfe6d00948549facc9947c9dbde813f1efe3a0f236ff6a","f457fc1b7583e1215393db13b95a186593660aad29706515ab7479869bc585e0","a11288edc8161f664148ea7d56101517e380335f5fa1a94408db86efce025bba","0fd70ca1eaef1e2dd6f48f16886df4838664821d992fd8076d07fc15e83c8498","ba30e6d2f1d20c707566cf485167331a10c539802a79040ced055b62a7aae53e","642eae3e9ec5997883f86dd7346d818f07d40fb83cc3530f0e52e232ffb4e631","29a6df727893a86807f4dc02116c31d9e6097139579ed6e8029b14c526cba027","537a2b61594512c5e75fad7e29d25c23922e27e5a1506eb4fce74fe858472a6e","311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","7c07838da165fd43759a54d2d490461315e977f9f37c046e0e357623c657fc42","b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","115c8691bd8fac390f6f6eef5b356543d716da7cffa4c2f70f288d56c5b06aeb","e91516e66f9fbf39c978a4092c16ffda3bb0b32158fca6def75aae9fab358153","abd4563a6a7668fa6f8f5e5a425a0900b80fc2309fec5186e2cae67f3ce92663","cb48f3011e72efef9d5a5b312f4a956f699b8d423bf9f2772724cdded496bd50","9aed07904079877252e6c0aedf1d2cf1935ed91d4abc16f726c76b61ea453919","6621af294bd4af8f3f9dd9bd99bd83ed8d2facd16faa6690a5b02d305abd98ab","5eada4495ab95470990b51f467c78d47aecfccc42365df4b1e7e88a2952af1a3","2bdaf407163ca9ca9bc3c1d3fb78ad26b6bd2f7d68b04810fc28072925a95e9b","95347f256453f88602fcfc792b0ccea75f330aa22150bd95a6a8bb034a20ba14","dd2505eec07d3d341be4322f9f0380b5196f2b163944016227bb599dd89136e7","f9dfcd54e603db0684207424124c340a7eb0e61807ece0cdb51a8801c47c9155","4720efe0341867600b139bca9a8fa7858b56b3a13a4a665bd98c77052ca64ea4","566fc645642572ec1ae3981e3c0a7dc976636976bd7a1d09740c23e8521496e5","66182e2432a30468eb5e2225063c391262b6a6732928bbc8ee794642b041dd87","11792ab82e35e82f93690040fd634689cad71e98ab56e0e31c3758662fc85736","3957b1244f49991b89f12cc45942c24f9c5927dc72677b105bb896d316f0454e","6c53c05df974ece61aca769df915345dc6d5b7649a01dc715b7da1809ce00a77","18c505381728b8cc6ea6986728403c1969f0d81216ed04163a867780af89f839","d121a48de03095d7dd5cd09d39e1a1c4892b520dad4c1d9c339c5d5008cfb536","f6d55e607f55be35a3c481b7685461a9acc1e27b893839218eb9313f7e85278c","b394ea95c82281d184ea83e8511bd1a43f78d6908eb34b536446d3eb08f9d47f","41edf4071b119fdf28b46a3c28c0845f2598bb8b196e7e4c9e01415403fdaea5","2bdf3bcf1a9771a288a783d1e8ee5d1d3126c11ddde26ae44864ab432192a6f6","603bafdacee4c8850ef5820f8642a817a3f0db6f76dda0474bcf3d17c2e15398","a10c79ab97c8a4f6074203094dba87bc736ca574ec480be1df6ec2c82d774573","801f049a9e74e941e8ca8add60492aaf4ab717a166248d355ded5753d80f9a85","70bba0a9c9c2ad7a042e134a840c4d8462bf0ad98e41c50ca52725ae47265eb9","f4dc28fbbba727722cb1fd82f51a7b9540fbe410ed04ddf35cab191d6aa2ba10","b606659dbd36a39d5d9324715fd7bf95d99a101ac885bf3cbb30337f8dbe09ab","7f1567b9dfb571a80556155a5bff1c946b23e74443466689bed24095604b3a9b","b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","51796c3726bf734b061fac41b479a660f9afccf50b8b493835e204723d23a84d","ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","d97766e9af30de9f96c7a5e8d7d6b3e39a269b8bd011083bd3745be7bd532b13","363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","fa2a8e2cc0bde051290d89f15a7b8f4db16d71cf67892be2bf4fca8cc2c3b338","1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","ea2de1a0ec4c9b8828154a971bfe38c47df2f5e9ec511f1a66adce665b9f04b0","c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","48f1a1b9f15770d9a64b51c596f9569f262fc7e67d7767595068a69539d32939","a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7",{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true},"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","f7a8f4bc1e8e786c6115970b8f3ed4797be48108de00b3552bf590706d3a5e8a",{"version":"e93760553e478c36485ef4c548bcaed56514a45660636df1a355d647ce172e52","signature":"9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea"},"e50222c22db171b6e6f102dad414ba90b1ad3802537779e838bed86ff506cb28","4c36f9d0ffb25cf61b696b2777ba06d553d1b0cfd12d9eed8a1e3b1a50beb2f7","dd478451ffa00f4352bffe4f55b4531c8dec0edafb5777272089e5127dca808c","aedddd59fc4889fcdeb54a3b2a4943736f282c00db826ff710acb6bc91873b0d","5d9a5cc1712870f91f66850e7056e0d03b4046de5558a00e7190b6a9c2f7d432","0daf877cd2dcb81c0e39a96ee20262dc07ecc6f68d65cdb9cc6e6cf2f31d29c5","6206a6984c6210c7e02e8cec6c2417f6d2458ec36ac97b80ce9f894933a08082","d686fcb07a661fef0866137e450a487e710c233cb24f04d11426228162595d7e",{"version":"8484a8762f074437ff6b9be1730dee2d607ff653ad5b432fe92d3889ec1b53bb","signature":"88b881898e99e16c6c19c8125ea5a9b87d777466e8ac84653ac42c7cd7d5b464"},"8e3f8a63b6af3fd917721cfe670eedf5aae7df605d0072c5997021eb6fbdae31","046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913",{"version":"abdf76f026d770eda24012e686a77c1c80860267b9e6e95fc26acbc180a1abfb","signature":"4db354d1dc4e2d96cd6fd8521c12cfcbb18a57df8e4be86b6c5123829557997d"},"a6260e50e119a4ae143e080cb69501b76f70b55df4f40b3874ee785277003570","311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","c032a9b7dfc5f9b86ac5b1535fe72154dc48a7f89f76c5cb4e8a6ab4db203671","b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","23fa431c1549a548df67056c34a9ea3653b50266d77653a406ff5a67a7f861aa",{"version":"174912359daff7bf7851731604bcb1aa25e6b56f2976797c5c2e31bc08bedfe8","signature":"7daf4e4ddb3c93f922c56c836a33e53bd0f8172b68b1da70103b7330fd0f5406"},{"version":"a5a8a1bc2f458034182316db21717c4a25438517239ff2868ba8b6bfe455c505","signature":"672efa67dd818957bcef7b98f05e534901a0542292319097b543343e749d4ac2"},"7639642137f8329ef4a19410ce8d3e46910a76294df263f46b428fd61c79d033","60a0074289b6584a0d7003c2aa14d9ebd0027e423deb79e08031b7e708770c98","d62b7fb6c39357289ba064887935b0966cd99da5a3bb63afc1d6ea4f82ab23f1","7a8e7fc0c0b3c6f0344a6b54a56e928aba5b2bde679ca742acf67aeb67e6f9d2","3cae18f8e136a4122570a64862ef441372cb822a906b1ee25f1e13e10aba2783","42b4e53ea2ca9d4cff566336b781121a78db65049fafc73e464255534a4ecf48","445418dec131a34f848ab7a2dfb111ab8e854489d0f83c5d550d4ac948b45c1c","ea01929f899657fb0f6ba17b180e045d7053389cc28b9279524bf1ff2b8c164b","9b1b3740954bcc6a5e5360be7c5e7edfb13fb58cdae347430e0f9b239d63e434","8e69efd9afdfcd34d85adb6d8e71a5e13fea2a33c7019dd624cc7696772183a0","a7ebfe3e2c8f4fea5dac7ffbf6d00acee63c530de24d57cdeeed05530285ca26","82b4045609dc0918319f835de4f6cb6a931fd729602292921c443a732a6bb811","5fc0957ee8e15821ddb30a76e74e7984953fc35611a57fd703e624bade5836b9","40e9c2028b34c6c1e3281818d062f7008705254ee992d9857d051c603391e0f4","2d232975df81628cb4d8a5236b8776976940cc4dd202698e498de5a4baeb7389",{"version":"41b6a32ece86a9f7bdb5a6a9d47c580222f89afc5592654473ceed0035b49544","signature":"1f47dea3d5cfa752cfe10c48273dac3bb41cf07ec30d5801c9cb6cbd81823a94"},{"version":"2f7551bc7fc68539406d169b81e73c085a0a52798efb3aef3266327246c28d29","signature":"79af5f8e385d7ca4a05f84a0a201c3e927d7a9a4b70c95f05314db8818d1734d"},{"version":"6a3d24f24ae411600665f30a5d912af979c6fdf1c7ba8a9147235d5c105a9e83","signature":"80b47d2c0a754d391234eee9504bef339252456fdfd7745ae771e191828ffaf7"},{"version":"96def9cb00debb7554a8019ae45310f375a65820bd8efa8e497a96e3416a5677","signature":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee"},{"version":"228eae4b5b181e59b73cbe0313eb5aa807f445122b21e365ca330bca2b22772e","signature":"dfc73114040523883452af0d14b19316f5ae4f9f44b131889d665feed7b0f02c"},"956f962aca6becfca36766fe3af718b586829e1e4dd72f6b896057f75d4e9e83","f1f5af5650d4014cd999f2f86f7ab1a81779d966077fa4a723ea05069e07652c","9f7b583873c73cf01be845311d8b3e1715aecfa476a047d885804d837327d5db","6c9dfb8a6bc7ff438e84f19ff882a3d150b4b44e21d494133950f524997b02ee","f4a795af80885eba93957db860b4b82b4d23a76c5e122c2af5eeb9319094d9d1","3267bdd186e8d021bfa57a5314a256b9781e895bc025e426a2bdbe93b946cca0","31ed847fef6dc27c5224045deab8f99887ec76146cbc4f2ccb33f5b117fc9bf1","0df38983d84eccab44e2e6385bed5e1033b23228e484b80ff124d4049ca8e75a","7395857a8b73a1a5a14af625ec52c90f5b24bb0b163057d0f3e8a197ccc816ee","8b2e63aba58523a92dd15761096a03b5ebbd8983e2889b1f14265d9b2bb444b6","c6cbbca3099e385cc5bb4d68052d39ebf12504d1db8d8e8a035f7d24080fd42e","b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","68adf02128cad117e068f53ab334cbc730bcfeb7d658d8ce8118da6770b7e622","ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","6477c1bd38bbe6e8d74abebd01a073a7e45a89086a5a250e11725989a54a9a94","046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913",{"version":"d43fd9837c2a0745faaf914d61220abafe305f48902ec2c5ad3e980a50cf9a6d","signature":"22945d276fc7ca24f1a4dd7fcc42d0c9c7357bee966f0d118b39ed6de97d858a"},"2837ced1e5d4ef88b4e1688fa62bc93b4248d1825667c87a83adaa51bc810cbf","f61af6ed7df59c72b7e2fc7e25a4500f5e9beafad5be038d349c5348a0727ba5",{"version":"d81fe001f3fb987591406c054f7ff1f69bef86d121dc66c03b92c2dee63efa95","signature":"da7183b9d834101b5b12d83dbcd4c98ac6d5d9cb7cb9cb66c0bc3b926f03ba45"},"bf7ccda18d9cb9ed3047d96a6542fee3c3bc4e7a7822af40332c5c2f6e07c2b7","7bc71d52df9d8e5cc55218d347a91b1758b38341f9cbbac0b80057aa9d93daa6","7a1f7b274cf8a66b83fcf42153bde6f25f4eb4d7696d4a6b17e4a8878d128306","553dd4fef7d2b88e899646b66b2035e119f61b092d668ae0595a32c234f9b8b5","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","6215681982d007f5e9137ab0ca969c39048401e588bb0ad92018297c82551ea8","82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","1b831600aabe1c065830d303d087189e1ccfc93a0ef1882eb58a336ec1ce9f2f","75f191b59fe7ce72d1d7d11d0f329a193843f54af93182fc5a65c37d0a82c85a","cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","f6451dc56be14d37a8b88ea62a143ea398ab44558cd530fb2cdeeea42695c849","8ab77e5c32f1b6c6c1ee1b1b771c1a76a16be650559dc61320c8c82c99fc7cde","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","c269a12e83c5ffc0332b1f245008e4e621e483dd2f8b9b77fc6a664fcde4969d","aa8a056ee45ae741849d6e809ba85967b638070060e29c57d12d22b14baefeb6",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a97081289e7233ca2ef04a729036449fec4e88818fd7b7397930bd4d52294b18","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","ae8cd6af37275eac75f5369cdb5f01063bcf1f48d74cb434303ee50ec446acfe","2518830a2fda9c272ba48798d0e7b857037443b06594db8e42c87e86944ee9e4","95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","99ab49d4732fdc98cf5c495925e65e796544cb4086fe42afc235dfc02bcf2351","af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","d393adc32e520d4274bb4c3dfdcdb342b806a230b66ef0f82b35bffbc4aa2590","c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","3b6040253231d44e6778eb6861cc86c1758562e77783d21b7ecbc73322ded539","03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","318c82cc1e13da55e8c60d7e1bdc422a0679d675ad048b6d5022a47f57d23e3f",{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true},"ac3cce682a1eab96841ce9942ace8dd5649d2951007096555f4950479e4b8d56","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","a45efe8e9134ef64a5e3825944bc16fffaf130b82943844523d7a7f7c1fd91b2","969aa6509a994f4f3b09b99d5d29484d8d52a2522e133ef9b4e54af9a3e9feaf","f378e8538e407f997a0f88fcd1ecd93a096707cc909339ce4dba2e4ea03f1726","dcafd874e49d42fc215dcb4ef1e06511363c1f31979951081f3cd1908a05a636","fb73c98050a02b5849cc0fbb0d133ed55764b9c2a91f0ada2a25e74df68e6242","6002c44a8e8edbe4c79ce856c7bac3f8e69a2a45dc5bd6b229ca4ab323b924b3","b4d505a77e0829de5e5e23eaefb3d7989e0dbdfdb02ea69159df9f40017fb958","b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","f2242adef346a64818a1af914146f6f6046f16505e8a228c3bdb70185d4fdf4c","2f7508d8eeadcfde20b41ec13726c9ad26f04bbf830434e289c6010d5be28455","8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","9798f0d3693043da9dda9146b5e8622cd4476270e7aed8f3cb346b9b40a52103","fc7e8927b6fa6c81d68783afb314d01592c559e86bd36df334c37f40d0136acd","73f72caffdd55f189b5bf4e6b5ca273b4e26269d9aac859b9d30a5f799c095ad","d998e3e185cdf59dfc84043c41a42c02daaf3b7b21bee2db2d1f620a8e134f4c","06aa8858883e08f5136eb182d2f285ea615aeb464007f83c7a31ee1f8d9932b1","62d429aba0bbe459a04965d10c7637b74b319149f17874920a5ffb9fe3ba14d8","084a25e9ee73362fbb467873341b95721689513c14af6aa3067a1d95d6fafe08","4dbfeb147290c498e3aa56ea3198a6a109c5c0d9d7a4936a3138376302d89e7d","169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","5009c081fd8ca3fcd6f3adcd071a1c79a933a400532b897822aad0943688a1f1","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","c271193e426325d9acab2f99997bb9f5f2dff850ec8c7c011c5abafe5af83b5f","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","a3e12bcf2d196656ccd5b5d5344182967a2bdde0f63c9b955c36169ed02c3555","a016d2f6c0a2c15069ec69661ad37c86a450deb629ce96a592f15f01d3a5746e","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","4fddd9f6929421ce580b4583defbb3f78f5a4a3642bea5ecd3209bf652d8b507","f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","557e00bde9af85bcb3ab6b3a785904f028f9f1b65dba664f2fda44965acf8a78","397981908f102effb3cd483042076b593f3928264dbf06aec235a7c3e83da2b4",{"version":"ad78491e2a3ae1e59680dbab88607dd670d06a91b1d6c451fa895ad390513e8a","affectsGlobalScope":true},{"version":"1a9deb79dabc5153448e38589fbe38945fdad45f0f8442cd4d4e1da8bb879a76","affectsGlobalScope":true},"f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956",{"version":"c9cc4c881c910ce378659524d985d2b72b79029b0c473df5d4d3557b4cf6010a","affectsGlobalScope":true},"7fae4b2bc906f3e6840725cc24affaa4e684e6c9cc20254242c5df4bede5b6f6","2dd1d4cea14cead7a7fc9eec8f40593089dff0de8c0199458446143c9b8c4ea9","c0288f54de6f544706a3150c8b579b1a975870695c4be866f727ece6a16f3976","ec2c7505ede4bc3ee37cfe431cfd87e545f55f27fe15b0809c1a411765145615"],"options":{"declaration":true,"declarationDir":"./dist-types","downlevelIteration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"importHelpers":true,"module":1,"removeComments":false,"rootDir":"./src","skipLibCheck":true,"strict":true,"target":7,"useUnknownInCatchVariables":false},"fileIdsList":[[104],[74,90,102,369],[76,104,372],[70,104],[73,76,96,104,376,377,378],[104,387],[96,104,391],[76,104],[65,104],[380,381,395],[73,76,104,389,390],[373,390,391,398],[73,74,104,400],[73,76,78,81,90,96,104],[73,99,104,417,418,420],[419],[73,104],[422,424,425,426,427,428,429,430,431,432,433,434],[422,423,425,426,427,428,429,430,431,432,433,434],[423,424,425,426,427,428,429,430,431,432,433,434],[422,423,424,426,427,428,429,430,431,432,433,434],[422,423,424,425,427,428,429,430,431,432,433,434],[422,423,424,425,426,428,429,430,431,432,433,434],[422,423,424,425,426,427,429,430,431,432,433,434],[422,423,424,425,426,427,428,430,431,432,433,434],[422,423,424,425,426,427,428,429,431,432,433,434],[422,423,424,425,426,427,428,429,430,432,433,434],[422,423,424,425,426,427,428,429,430,431,433,434],[422,423,424,425,426,427,428,429,430,431,432,434],[422,423,424,425,426,427,428,429,430,431,432,433],[454],[439],[443,444,445],[442],[444],[421,440,441,446,449,451,452,453],[441,447,448,454],[447,450],[441,442,447,454],[441,454],[435,436,437,438],[76,96,104,460,461],[466],[73,74,104],[76,90,104],[469,508],[469,493,508],[508],[469],[469,494,508],[469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507],[494,508],[74,399],[76,104,397],[510],[90,104],[73,76,78,90,93,96,102,104],[73,104,522],[406],[405,406],[405],[405,406,407,409,410,413,414,415,416],[406,410],[405,406,407,409,410,411,412],[405,410],[410,414],[406,407,408],[407],[405,406,410],[384],[381,382,383],[381,384],[64,76,81,93,96,99,380,382,384,385,386],[306],[347,348,349],[365],[150],[328],[150,331],[331,332,333,334],[331],[336,337],[150,336],[150,306],[320,323],[226],[321,322],[281,282],[276],[276,277,278,279,280],[269,270,271,272,273,274,275,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305],[150,351],[227,228,229,230],[150,229],[231,234,240],[232,233],[235],[150,237,238],[237,238,239],[236],[353,354,355],[339],[90,104,150],[242,243],[150,204],[357,358],[150,158,159],[160,161],[158,159,162,163,164],[150,253,255],[150,226],[255,256,257,258,259,260,261],[150,257],[150,254],[191,192,193],[150,192],[150,213,223,224],[150,222],[225],[263,264,265],[76,78,104,150,204],[197],[198],[150,200],[150,195,196],[195,196,197,199,200,201,202,203],[214,215,216,217,218,219,220,221],[150,218],[150,156],[150,165],[152],[150,173,174],[175],[150,151,152,157,166,167,168,169,170,171,172,176,177,178,179,180,181,182,183,184,185,186,187],[48,55,56,57],[55,58],[48,52],[48,58],[46,47,56,57,58,59],[90,104,106],[108],[53,54,55,110],[53,55],[112,114,115],[112,113],[117],[46],[49,119],[119],[119,120,121,122,123],[122],[50],[119,120,121],[52,53,55],[108,109],[125],[125,129],[125,126,129,130],[54,128],[105],[45,51],[76,78,104],[48],[48,133,134,135],[45,49,50,51,52,53,54,55,60,107,108,109,110,111,113,116,117,118,124,127,128,131,132,136,137,138,139,140,141,142,143,144,145,147,148,149],[46,49,50,54],[111],[127],[52,54,113],[52,53],[52,117],[54,108,109],[76,90,104,106,139],[53,110,144,145],[52,76,77,104,111,139,143,145,146],[52],[45],[309,310],[360],[267],[362],[150,188],[317],[150,246],[150,248],[246],[246,247,248,249,250,251,252],[153,154,155],[90,150],[312,313,314],[61],[63],[64,69],[65,73,74,81,90],[65,66,73,81],[67,97],[68,69,74,82],[69,90],[70,71,73,81],[71],[72,73],[73],[73,74,75,90,96],[74,75],[73,76,81,90,96],[73,74,76,77,81,90,93,96],[76,78,90,93,96],[61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103],[73,79],[80,96],[71,73,81,90],[82],[83],[63,84],[85,95],[86],[87],[73,88],[88,89,97,99],[73,90],[91],[92],[81,90,93],[94],[81,95],[76,87,96],[97],[90,98],[99],[100],[73,75,90,96,99,101],[90,102],[44,150,188,205,206,207,210,342],[44,150,188,204,205,206,207,210,241,262,319,326,327,329,330,335,338,340,341],[44,150,188,190,194,204,209,342],[44,205,206,207,210],[44,241,306],[44,150,204,306],[44,189,342,343,344,345],[44,188],[44,190],[44,188,189],[44,150,188,189,190,204,205,206,207,208,210],[44,188,211,241,253,316,342,350,352,356,359,361,363],[44,342,364,366],[44,188,307,308,311,315,342],[44,188,211,212,226,241,244,245,253,262,266,268,316,318,342],[44,188,204,324,325],[150,205,206,207,210,342],[150,188,204,205,206,207,210,241,262,326,327,335,338,340],[150,188,190,342],[205,206,207,210],[150,204,306],[189,342,343,344,345],[188],[190],[188,189],[150,204,205,206,207,210],[150,188,204,306,326,342,359],[150,326,342],[150,188,204,266,306,326,342],[325]],"referencedMap":[[368,1],[370,2],[373,3],[374,4],[379,5],[388,6],[392,7],[372,8],[393,9],[396,10],[391,11],[399,12],[401,13],[402,14],[419,15],[420,16],[376,17],[423,18],[424,19],[422,20],[425,21],[426,22],[427,23],[428,24],[429,25],[430,26],[431,27],[432,28],[433,29],[434,30],[455,31],[440,32],[446,33],[443,34],[445,35],[454,36],[449,37],[451,38],[452,39],[453,40],[448,40],[450,40],[442,40],[438,32],[439,41],[437,32],[462,42],[467,43],[369,44],[378,45],[493,46],[494,47],[469,48],[472,48],[491,46],[492,46],[482,46],[481,49],[479,46],[474,46],[487,46],[485,46],[489,46],[473,46],[486,46],[490,46],[475,46],[476,46],[488,46],[470,46],[477,46],[478,46],[480,46],[484,46],[495,50],[483,46],[471,46],[508,51],[502,50],[504,52],[503,50],[496,50],[497,50],[499,50],[501,50],[505,52],[506,52],[498,52],[500,52],[509,53],[398,54],[511,55],[513,8],[514,56],[521,57],[523,58],[460,45],[407,59],[416,60],[406,61],[417,62],[412,63],[413,64],[411,65],[415,66],[409,67],[408,68],[414,69],[410,60],[385,70],[384,71],[382,72],[387,73],[347,74],[348,74],[350,75],[349,74],[366,76],[365,74],[327,77],[329,78],[328,77],[330,77],[331,74],[332,79],[335,80],[333,81],[334,79],[336,77],[338,82],[337,83],[320,84],[324,85],[321,86],[323,87],[322,77],[269,77],[270,77],[271,77],[272,77],[273,77],[274,77],[275,77],[283,88],[284,77],[286,77],[287,77],[288,77],[289,77],[290,77],[277,89],[278,77],[276,77],[281,90],[279,89],[280,89],[306,91],[291,77],[292,77],[293,77],[294,77],[296,77],[297,77],[298,77],[299,77],[300,77],[301,77],[302,88],[303,77],[304,77],[282,77],[305,77],[352,92],[212,77],[231,93],[227,86],[228,86],[230,94],[229,77],[241,95],[232,86],[234,96],[233,77],[236,97],[239,98],[240,99],[237,100],[238,100],[353,77],[356,101],[354,77],[339,77],[340,102],[242,103],[244,104],[243,77],[357,105],[359,106],[358,77],[245,77],[341,77],[160,107],[162,108],[161,77],[163,107],[164,107],[165,109],[158,77],[256,110],[257,111],[262,112],[259,77],[260,77],[261,113],[255,114],[254,77],[191,77],[194,115],[192,77],[193,116],[225,117],[213,77],[223,118],[224,77],[226,119],[266,120],[263,121],[264,105],[265,77],[198,122],[199,123],[200,77],[201,124],[197,125],[195,77],[196,77],[204,126],[203,77],[222,127],[218,77],[219,77],[220,128],[221,77],[152,77],[157,129],[166,130],[168,131],[177,77],[173,77],[175,132],[176,133],[174,77],[188,134],[151,77],[58,135],[59,136],[56,137],[57,138],[60,139],[107,140],[109,141],[111,142],[110,143],[116,144],[114,145],[118,146],[49,147],[120,148],[121,149],[124,150],[123,151],[119,152],[122,153],[117,154],[125,155],[126,156],[130,157],[131,158],[129,159],[106,160],[52,161],[132,162],[133,163],[134,163],[136,164],[135,163],[150,165],[55,166],[137,167],[128,168],[139,169],[127,170],[140,171],[141,172],[142,140],[143,140],[144,173],[146,174],[147,175],[148,167],[51,176],[54,154],[149,177],[308,77],[311,178],[361,179],[268,180],[363,181],[362,182],[318,183],[317,182],[247,184],[249,185],[250,186],[253,187],[248,77],[154,103],[156,188],[155,189],[315,190],[61,191],[63,192],[64,193],[65,194],[66,195],[67,196],[68,197],[69,198],[70,199],[71,200],[72,201],[73,202],[74,203],[75,204],[76,205],[77,206],[78,207],[104,208],[79,209],[80,210],[81,211],[82,212],[83,213],[84,214],[85,215],[86,216],[87,217],[88,218],[89,219],[90,220],[91,221],[92,222],[93,223],[94,224],[95,225],[96,226],[97,227],[98,228],[99,229],[100,230],[101,231],[102,232],[343,233],[342,234],[210,235],[205,235],[206,235],[207,235],[344,236],[307,237],[325,238],[346,239],[189,240],[345,241],[190,242],[209,243],[364,244],[367,245],[316,246],[319,247],[326,248]],"exportedModulesMap":[[368,1],[370,2],[373,3],[374,4],[379,5],[388,6],[392,7],[372,8],[393,9],[396,10],[391,11],[399,12],[401,13],[402,14],[419,15],[420,16],[376,17],[423,18],[424,19],[422,20],[425,21],[426,22],[427,23],[428,24],[429,25],[430,26],[431,27],[432,28],[433,29],[434,30],[455,31],[440,32],[446,33],[443,34],[445,35],[454,36],[449,37],[451,38],[452,39],[453,40],[448,40],[450,40],[442,40],[438,32],[439,41],[437,32],[462,42],[467,43],[369,44],[378,45],[493,46],[494,47],[469,48],[472,48],[491,46],[492,46],[482,46],[481,49],[479,46],[474,46],[487,46],[485,46],[489,46],[473,46],[486,46],[490,46],[475,46],[476,46],[488,46],[470,46],[477,46],[478,46],[480,46],[484,46],[495,50],[483,46],[471,46],[508,51],[502,50],[504,52],[503,50],[496,50],[497,50],[499,50],[501,50],[505,52],[506,52],[498,52],[500,52],[509,53],[398,54],[511,55],[513,8],[514,56],[521,57],[523,58],[460,45],[407,59],[416,60],[406,61],[417,62],[412,63],[413,64],[411,65],[415,66],[409,67],[408,68],[414,69],[410,60],[385,70],[384,71],[382,72],[387,73],[347,74],[348,74],[350,75],[349,74],[366,76],[365,74],[327,77],[329,78],[328,77],[330,77],[331,74],[332,79],[335,80],[333,81],[334,79],[336,77],[338,82],[337,83],[320,84],[324,85],[321,86],[323,87],[322,77],[269,77],[270,77],[271,77],[272,77],[273,77],[274,77],[275,77],[283,88],[284,77],[286,77],[287,77],[288,77],[289,77],[290,77],[277,89],[278,77],[276,77],[281,90],[279,89],[280,89],[306,91],[291,77],[292,77],[293,77],[294,77],[296,77],[297,77],[298,77],[299,77],[300,77],[301,77],[302,88],[303,77],[304,77],[282,77],[305,77],[352,92],[212,77],[231,93],[227,86],[228,86],[230,94],[229,77],[241,95],[232,86],[234,96],[233,77],[236,97],[239,98],[240,99],[237,100],[238,100],[353,77],[356,101],[354,77],[339,77],[340,102],[242,103],[244,104],[243,77],[357,105],[359,106],[358,77],[245,77],[341,77],[160,107],[162,108],[161,77],[163,107],[164,107],[165,109],[158,77],[256,110],[257,111],[262,112],[259,77],[260,77],[261,113],[255,114],[254,77],[191,77],[194,115],[192,77],[193,116],[225,117],[213,77],[223,118],[224,77],[226,119],[266,120],[263,121],[264,105],[265,77],[198,122],[199,123],[200,77],[201,124],[197,125],[195,77],[196,77],[204,126],[203,77],[222,127],[218,77],[219,77],[220,128],[221,77],[152,77],[157,129],[166,130],[168,131],[177,77],[173,77],[175,132],[176,133],[174,77],[188,134],[151,77],[58,135],[59,136],[56,137],[57,138],[60,139],[107,140],[109,141],[111,142],[110,143],[116,144],[114,145],[118,146],[49,147],[120,148],[121,149],[124,150],[123,151],[119,152],[122,153],[117,154],[125,155],[126,156],[130,157],[131,158],[129,159],[106,160],[52,161],[132,162],[133,163],[134,163],[136,164],[135,163],[150,165],[55,166],[137,167],[128,168],[139,169],[127,170],[140,171],[141,172],[142,140],[143,140],[144,173],[146,174],[147,175],[148,167],[51,176],[54,154],[149,177],[308,77],[311,178],[361,179],[268,180],[363,181],[362,182],[318,183],[317,182],[247,184],[249,185],[250,186],[253,187],[248,77],[154,103],[156,188],[155,189],[315,190],[61,191],[63,192],[64,193],[65,194],[66,195],[67,196],[68,197],[69,198],[70,199],[71,200],[72,201],[73,202],[74,203],[75,204],[76,205],[77,206],[78,207],[104,208],[79,209],[80,210],[81,211],[82,212],[83,213],[84,214],[85,215],[86,216],[87,217],[88,218],[89,219],[90,220],[91,221],[92,222],[93,223],[94,224],[95,225],[96,226],[97,227],[98,228],[99,229],[100,230],[101,231],[102,232],[343,249],[342,250],[210,251],[205,251],[206,251],[207,251],[344,252],[307,74],[325,253],[346,254],[189,255],[345,256],[190,257],[209,258],[364,259],[367,259],[316,260],[319,261],[326,262]],"semanticDiagnosticsPerFile":[368,370,371,373,374,375,379,388,392,372,393,394,395,396,380,391,399,401,400,377,402,403,404,419,420,381,376,421,423,424,422,425,426,427,428,429,430,431,432,433,434,455,440,446,444,443,445,454,449,451,452,453,447,448,450,442,441,436,435,438,439,437,456,397,457,458,459,461,462,463,464,465,467,390,389,369,468,378,466,493,494,469,472,491,492,482,481,479,474,487,485,489,473,486,490,475,476,488,470,477,478,480,484,495,483,471,508,507,502,504,503,496,497,499,501,505,506,498,500,509,398,511,510,512,513,514,515,418,517,516,518,519,520,521,523,522,383,460,407,416,405,406,417,412,413,411,415,409,408,414,410,385,384,382,386,387,347,348,350,349,366,365,327,329,328,330,331,332,335,333,334,336,338,337,320,324,321,323,322,269,270,271,272,273,274,275,283,284,285,286,287,288,289,290,277,278,276,281,279,280,306,291,292,293,294,295,296,297,298,299,300,301,302,303,304,282,305,351,352,212,231,227,228,230,229,241,232,234,233,236,235,239,240,237,238,353,356,354,355,339,340,242,244,243,357,359,358,245,341,160,162,161,163,164,165,158,159,256,257,258,262,259,260,261,255,254,191,194,192,193,225,213,223,224,226,266,263,264,265,198,199,200,201,197,195,196,204,202,203,214,215,216,217,222,218,219,220,221,152,157,166,167,168,169,170,171,172,177,178,173,175,176,174,179,180,188,181,151,182,183,184,185,186,187,45,46,47,58,59,56,57,60,107,109,111,110,112,116,114,115,108,118,49,120,121,124,123,119,122,117,125,126,130,131,129,106,52,132,133,134,48,136,135,150,50,55,137,138,53,128,139,127,140,141,142,143,144,113,146,147,105,148,145,51,54,149,308,309,311,310,360,361,267,268,363,362,318,317,247,251,249,252,250,253,248,246,153,154,156,155,312,315,313,314,61,63,64,65,66,67,68,69,70,71,72,73,74,75,62,103,76,77,78,104,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,208,44,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,211,343,342,210,205,206,207,344,307,325,346,189,345,190,209,364,367,316,319,326]},"version":"4.9.5"} \ No newline at end of file From 218346fe7eae9f8bfeb62b1c54e96a23f3cbd030 Mon Sep 17 00:00:00 2001 From: Ahmed Ali Date: Wed, 23 Oct 2024 19:20:06 -0700 Subject: [PATCH 04/13] Add logic that uses IAM Q Dev Client --- package-lock.json | 20231 ++++++++-------- packages/amazonq/src/api.ts | 7 +- packages/core/src/amazonq/extApi.ts | 2 + .../core/src/codewhisperer/util/authUtil.ts | 13 +- .../codewhispererChat/clients/chat/v0/chat.ts | 24 +- .../controllers/chat/chatRequest/converter.ts | 4 +- .../controllers/chat/controller.ts | 25 +- .../controllers/chat/messenger/messenger.ts | 14 +- .../shared/clients/qDeveloperChatClient.ts | 25 + packages/toolkit/package.json | 2 +- .../tsconfig.cjs.tsbuildinfo | 2 +- .../tsconfig.es.tsbuildinfo | 2 +- 12 files changed, 10640 insertions(+), 9711 deletions(-) create mode 100644 packages/core/src/shared/clients/qDeveloperChatClient.ts diff --git a/package-lock.json b/package-lock.json index 74176a2cc4e..eadf77dd496 100644 --- a/package-lock.json +++ b/package-lock.json @@ -59,213 +59,257 @@ "node": ">=0.10.0" } }, + "node_modules/@amzn/amazon-q-developer-streaming-client": { + "resolved": "src.gen/@amzn/amazon-q-developer-streaming-client", + "link": true + }, "node_modules/@amzn/codewhisperer-streaming": { "resolved": "src.gen/@amzn/codewhisperer-streaming", "link": true }, - "node_modules/@aws-sdk/client-cognito-identity": { - "version": "3.637.0", + "node_modules/@aws-crypto/crc32": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/crc32/-/crc32-5.2.0.tgz", + "integrity": "sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==", "license": "Apache-2.0", "dependencies": { - "@aws-crypto/sha256-browser": "5.2.0", - "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/client-sso-oidc": "3.637.0", - "@aws-sdk/client-sts": "3.637.0", - "@aws-sdk/core": "3.635.0", - "@aws-sdk/credential-provider-node": "3.637.0", - "@aws-sdk/middleware-host-header": "3.620.0", - "@aws-sdk/middleware-logger": "3.609.0", - "@aws-sdk/middleware-recursion-detection": "3.620.0", - "@aws-sdk/middleware-user-agent": "3.637.0", - "@aws-sdk/region-config-resolver": "3.614.0", - "@aws-sdk/types": "3.609.0", - "@aws-sdk/util-endpoints": "3.637.0", - "@aws-sdk/util-user-agent-browser": "3.609.0", - "@aws-sdk/util-user-agent-node": "3.614.0", - "@smithy/config-resolver": "^3.0.5", - "@smithy/core": "^2.4.0", - "@smithy/fetch-http-handler": "^3.2.4", - "@smithy/hash-node": "^3.0.3", - "@smithy/invalid-dependency": "^3.0.3", - "@smithy/middleware-content-length": "^3.0.5", - "@smithy/middleware-endpoint": "^3.1.0", - "@smithy/middleware-retry": "^3.0.15", - "@smithy/middleware-serde": "^3.0.3", - "@smithy/middleware-stack": "^3.0.3", - "@smithy/node-config-provider": "^3.1.4", - "@smithy/node-http-handler": "^3.1.4", - "@smithy/protocol-http": "^4.1.0", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "@smithy/url-parser": "^3.0.3", - "@smithy/util-base64": "^3.0.0", - "@smithy/util-body-length-browser": "^3.0.0", - "@smithy/util-body-length-node": "^3.0.0", - "@smithy/util-defaults-mode-browser": "^3.0.15", - "@smithy/util-defaults-mode-node": "^3.0.15", - "@smithy/util-endpoints": "^2.0.5", - "@smithy/util-middleware": "^3.0.3", - "@smithy/util-retry": "^3.0.3", - "@smithy/util-utf8": "^3.0.0", + "@aws-crypto/util": "^5.2.0", + "@aws-sdk/types": "^3.222.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-cognito-identity/node_modules/@aws-crypto/sha256-browser": { - "version": "5.2.0", + "node_modules/@aws-crypto/crc32/node_modules/@aws-sdk/types": { + "version": "3.664.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.664.0.tgz", + "integrity": "sha512-+GtXktvVgpreM2b+NJL9OqZGsOzHwlCUrO8jgQUvH/yA6Kd8QO2YFhQCp0C9sSzTteZJVqGBu8E0CQurxJHPbw==", "license": "Apache-2.0", "dependencies": { - "@aws-crypto/sha256-js": "^5.2.0", - "@aws-crypto/supports-web-crypto": "^5.2.0", - "@aws-crypto/util": "^5.2.0", - "@aws-sdk/types": "^3.222.0", - "@aws-sdk/util-locate-window": "^3.0.0", - "@smithy/util-utf8": "^2.0.0", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-cognito-identity/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8": { - "version": "2.3.0", + "node_modules/@aws-crypto/crc32/node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", "license": "Apache-2.0", "dependencies": { - "@smithy/util-buffer-from": "^2.2.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-cognito-identity/node_modules/@aws-crypto/sha256-js": { + "node_modules/@aws-crypto/sha256-browser": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz", + "integrity": "sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==", "license": "Apache-2.0", "dependencies": { + "@aws-crypto/sha256-js": "^5.2.0", + "@aws-crypto/supports-web-crypto": "^5.2.0", "@aws-crypto/util": "^5.2.0", "@aws-sdk/types": "^3.222.0", + "@aws-sdk/util-locate-window": "^3.0.0", + "@smithy/util-utf8": "^2.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-crypto/sha256-browser/node_modules/@aws-sdk/types": { + "version": "3.664.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.664.0.tgz", + "integrity": "sha512-+GtXktvVgpreM2b+NJL9OqZGsOzHwlCUrO8jgQUvH/yA6Kd8QO2YFhQCp0C9sSzTteZJVqGBu8E0CQurxJHPbw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-cognito-identity/node_modules/@aws-crypto/supports-web-crypto": { - "version": "5.2.0", + "node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", "license": "Apache-2.0", "dependencies": { "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-cognito-identity/node_modules/@aws-crypto/util": { + "node_modules/@aws-crypto/sha256-js": { "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz", + "integrity": "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==", "license": "Apache-2.0", "dependencies": { + "@aws-crypto/util": "^5.2.0", "@aws-sdk/types": "^3.222.0", - "@smithy/util-utf8": "^2.0.0", "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-cognito-identity/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8": { - "version": "2.3.0", + "node_modules/@aws-crypto/sha256-js/node_modules/@aws-sdk/types": { + "version": "3.664.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.664.0.tgz", + "integrity": "sha512-+GtXktvVgpreM2b+NJL9OqZGsOzHwlCUrO8jgQUvH/yA6Kd8QO2YFhQCp0C9sSzTteZJVqGBu8E0CQurxJHPbw==", "license": "Apache-2.0", "dependencies": { - "@smithy/util-buffer-from": "^2.2.0", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-cognito-identity/node_modules/@aws-sdk/types": { - "version": "3.609.0", + "node_modules/@aws-crypto/sha256-js/node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-cognito-identity/node_modules/@smithy/abort-controller": { - "version": "3.1.1", + "node_modules/@aws-crypto/supports-web-crypto": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz", + "integrity": "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-cognito-identity/node_modules/@smithy/config-resolver": { - "version": "3.0.5", + "node_modules/@aws-crypto/util": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-5.2.0.tgz", + "integrity": "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/node-config-provider": "^3.1.4", - "@smithy/types": "^3.3.0", - "@smithy/util-config-provider": "^3.0.0", - "@smithy/util-middleware": "^3.0.3", + "@aws-sdk/types": "^3.222.0", + "@smithy/util-utf8": "^2.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@aws-crypto/util/node_modules/@aws-sdk/types": { + "version": "3.664.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.664.0.tgz", + "integrity": "sha512-+GtXktvVgpreM2b+NJL9OqZGsOzHwlCUrO8jgQUvH/yA6Kd8QO2YFhQCp0C9sSzTteZJVqGBu8E0CQurxJHPbw==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-cognito-identity/node_modules/@smithy/credential-provider-imds": { - "version": "3.2.0", + "node_modules/@aws-crypto/util/node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", "license": "Apache-2.0", "dependencies": { - "@smithy/node-config-provider": "^3.1.4", - "@smithy/property-provider": "^3.1.3", - "@smithy/types": "^3.3.0", - "@smithy/url-parser": "^3.0.3", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-cognito-identity/node_modules/@smithy/fetch-http-handler": { - "version": "3.2.4", + "node_modules/@aws-sdk/client-cognito-identity": { + "version": "3.637.0", "license": "Apache-2.0", "dependencies": { + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/client-sso-oidc": "3.637.0", + "@aws-sdk/client-sts": "3.637.0", + "@aws-sdk/core": "3.635.0", + "@aws-sdk/credential-provider-node": "3.637.0", + "@aws-sdk/middleware-host-header": "3.620.0", + "@aws-sdk/middleware-logger": "3.609.0", + "@aws-sdk/middleware-recursion-detection": "3.620.0", + "@aws-sdk/middleware-user-agent": "3.637.0", + "@aws-sdk/region-config-resolver": "3.614.0", + "@aws-sdk/types": "3.609.0", + "@aws-sdk/util-endpoints": "3.637.0", + "@aws-sdk/util-user-agent-browser": "3.609.0", + "@aws-sdk/util-user-agent-node": "3.614.0", + "@smithy/config-resolver": "^3.0.5", + "@smithy/core": "^2.4.0", + "@smithy/fetch-http-handler": "^3.2.4", + "@smithy/hash-node": "^3.0.3", + "@smithy/invalid-dependency": "^3.0.3", + "@smithy/middleware-content-length": "^3.0.5", + "@smithy/middleware-endpoint": "^3.1.0", + "@smithy/middleware-retry": "^3.0.15", + "@smithy/middleware-serde": "^3.0.3", + "@smithy/middleware-stack": "^3.0.3", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/node-http-handler": "^3.1.4", "@smithy/protocol-http": "^4.1.0", - "@smithy/querystring-builder": "^3.0.3", + "@smithy/smithy-client": "^3.2.0", "@smithy/types": "^3.3.0", + "@smithy/url-parser": "^3.0.3", "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.15", + "@smithy/util-defaults-mode-node": "^3.0.15", + "@smithy/util-endpoints": "^2.0.5", + "@smithy/util-middleware": "^3.0.3", + "@smithy/util-retry": "^3.0.3", + "@smithy/util-utf8": "^3.0.0", "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-cognito-identity/node_modules/@smithy/hash-node": { - "version": "3.0.3", + "node_modules/@aws-sdk/client-cognito-identity/node_modules/@aws-sdk/types": { + "version": "3.609.0", "license": "Apache-2.0", "dependencies": { "@smithy/types": "^3.3.0", - "@smithy/util-buffer-from": "^3.0.0", - "@smithy/util-utf8": "^3.0.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-cognito-identity/node_modules/@smithy/hash-node/node_modules/@smithy/util-buffer-from": { - "version": "3.0.0", + "node_modules/@aws-sdk/client-cognito-identity/node_modules/@smithy/abort-controller": { + "version": "3.1.1", "license": "Apache-2.0", "dependencies": { - "@smithy/is-array-buffer": "^3.0.0", + "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-cognito-identity/node_modules/@smithy/invalid-dependency": { - "version": "3.0.3", + "node_modules/@aws-sdk/client-cognito-identity/node_modules/@smithy/fetch-http-handler": { + "version": "3.2.4", "license": "Apache-2.0", "dependencies": { + "@smithy/protocol-http": "^4.1.0", + "@smithy/querystring-builder": "^3.0.3", "@smithy/types": "^3.3.0", + "@smithy/util-base64": "^3.0.0", "tslib": "^2.6.2" } }, @@ -279,18 +323,6 @@ "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-cognito-identity/node_modules/@smithy/middleware-content-length": { - "version": "3.0.5", - "license": "Apache-2.0", - "dependencies": { - "@smithy/protocol-http": "^4.1.0", - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, "node_modules/@aws-sdk/client-cognito-identity/node_modules/@smithy/middleware-endpoint": { "version": "3.1.0", "license": "Apache-2.0", @@ -497,63 +529,6 @@ "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-cognito-identity/node_modules/@smithy/util-body-length-browser": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-sdk/client-cognito-identity/node_modules/@smithy/util-body-length-node": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-cognito-identity/node_modules/@smithy/util-config-provider": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-cognito-identity/node_modules/@smithy/util-defaults-mode-browser": { - "version": "3.0.15", - "license": "Apache-2.0", - "dependencies": { - "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "bowser": "^2.11.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/@aws-sdk/client-cognito-identity/node_modules/@smithy/util-defaults-mode-node": { - "version": "3.0.15", - "license": "Apache-2.0", - "dependencies": { - "@smithy/config-resolver": "^3.0.5", - "@smithy/credential-provider-imds": "^3.2.0", - "@smithy/node-config-provider": "^3.1.4", - "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@aws-sdk/client-cognito-identity/node_modules/@smithy/util-hex-encoding": { "version": "3.0.0", "license": "Apache-2.0", @@ -702,182 +677,22 @@ "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-lambda/node_modules/@aws-crypto/crc32": { - "version": "5.2.0", + "node_modules/@aws-sdk/client-lambda/node_modules/@aws-sdk/types": { + "version": "3.609.0", "license": "Apache-2.0", "dependencies": { - "@aws-crypto/util": "^5.2.0", - "@aws-sdk/types": "^3.222.0", + "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-lambda/node_modules/@aws-crypto/sha256-browser": { - "version": "5.2.0", + "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/abort-controller": { + "version": "3.1.1", "license": "Apache-2.0", "dependencies": { - "@aws-crypto/sha256-js": "^5.2.0", - "@aws-crypto/supports-web-crypto": "^5.2.0", - "@aws-crypto/util": "^5.2.0", - "@aws-sdk/types": "^3.222.0", - "@aws-sdk/util-locate-window": "^3.0.0", - "@smithy/util-utf8": "^2.0.0", - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-sdk/client-lambda/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8": { - "version": "2.3.0", - "license": "Apache-2.0", - "dependencies": { - "@smithy/util-buffer-from": "^2.2.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@aws-sdk/client-lambda/node_modules/@aws-crypto/sha256-js": { - "version": "5.2.0", - "license": "Apache-2.0", - "dependencies": { - "@aws-crypto/util": "^5.2.0", - "@aws-sdk/types": "^3.222.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-lambda/node_modules/@aws-crypto/supports-web-crypto": { - "version": "5.2.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-sdk/client-lambda/node_modules/@aws-crypto/util": { - "version": "5.2.0", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/types": "^3.222.0", - "@smithy/util-utf8": "^2.0.0", - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-sdk/client-lambda/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8": { - "version": "2.3.0", - "license": "Apache-2.0", - "dependencies": { - "@smithy/util-buffer-from": "^2.2.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@aws-sdk/client-lambda/node_modules/@aws-sdk/types": { - "version": "3.609.0", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/abort-controller": { - "version": "3.1.1", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/config-resolver": { - "version": "3.0.5", - "license": "Apache-2.0", - "dependencies": { - "@smithy/node-config-provider": "^3.1.4", - "@smithy/types": "^3.3.0", - "@smithy/util-config-provider": "^3.0.0", - "@smithy/util-middleware": "^3.0.3", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/credential-provider-imds": { - "version": "3.2.0", - "license": "Apache-2.0", - "dependencies": { - "@smithy/node-config-provider": "^3.1.4", - "@smithy/property-provider": "^3.1.3", - "@smithy/types": "^3.3.0", - "@smithy/url-parser": "^3.0.3", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/eventstream-codec": { - "version": "3.1.2", - "license": "Apache-2.0", - "dependencies": { - "@aws-crypto/crc32": "5.2.0", - "@smithy/types": "^3.3.0", - "@smithy/util-hex-encoding": "^3.0.0", - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/eventstream-serde-browser": { - "version": "3.0.6", - "license": "Apache-2.0", - "dependencies": { - "@smithy/eventstream-serde-universal": "^3.0.5", - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/eventstream-serde-config-resolver": { - "version": "3.0.3", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/eventstream-serde-node": { - "version": "3.0.5", - "license": "Apache-2.0", - "dependencies": { - "@smithy/eventstream-serde-universal": "^3.0.5", - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/eventstream-serde-universal": { - "version": "3.0.5", - "license": "Apache-2.0", - "dependencies": { - "@smithy/eventstream-codec": "^3.1.2", - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, "engines": { @@ -895,38 +710,6 @@ "tslib": "^2.6.2" } }, - "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/hash-node": { - "version": "3.0.3", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^3.3.0", - "@smithy/util-buffer-from": "^3.0.0", - "@smithy/util-utf8": "^3.0.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/hash-node/node_modules/@smithy/util-buffer-from": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "@smithy/is-array-buffer": "^3.0.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/invalid-dependency": { - "version": "3.0.3", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - } - }, "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/is-array-buffer": { "version": "3.0.0", "license": "Apache-2.0", @@ -937,18 +720,6 @@ "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/middleware-content-length": { - "version": "3.0.5", - "license": "Apache-2.0", - "dependencies": { - "@smithy/protocol-http": "^4.1.0", - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/middleware-endpoint": { "version": "3.1.0", "license": "Apache-2.0", @@ -1155,63 +926,6 @@ "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/util-body-length-browser": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/util-body-length-node": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/util-config-provider": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/util-defaults-mode-browser": { - "version": "3.0.15", - "license": "Apache-2.0", - "dependencies": { - "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "bowser": "^2.11.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/util-defaults-mode-node": { - "version": "3.0.15", - "license": "Apache-2.0", - "dependencies": { - "@smithy/config-resolver": "^3.0.5", - "@smithy/credential-provider-imds": "^3.2.0", - "@smithy/node-config-provider": "^3.1.4", - "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@aws-sdk/client-lambda/node_modules/@smithy/util-hex-encoding": { "version": "3.0.0", "license": "Apache-2.0", @@ -1403,113 +1117,22 @@ "@aws-sdk/client-sts": "^3.637.0" } }, - "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-crypto/sha256-browser": { - "version": "5.2.0", - "license": "Apache-2.0", - "dependencies": { - "@aws-crypto/sha256-js": "^5.2.0", - "@aws-crypto/supports-web-crypto": "^5.2.0", - "@aws-crypto/util": "^5.2.0", - "@aws-sdk/types": "^3.222.0", - "@aws-sdk/util-locate-window": "^3.0.0", - "@smithy/util-utf8": "^2.0.0", - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8": { - "version": "2.3.0", + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/types": { + "version": "3.609.0", "license": "Apache-2.0", "dependencies": { - "@smithy/util-buffer-from": "^2.2.0", + "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-crypto/sha256-js": { - "version": "5.2.0", + "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/abort-controller": { + "version": "3.1.1", "license": "Apache-2.0", "dependencies": { - "@aws-crypto/util": "^5.2.0", - "@aws-sdk/types": "^3.222.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-crypto/supports-web-crypto": { - "version": "5.2.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-crypto/util": { - "version": "5.2.0", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/types": "^3.222.0", - "@smithy/util-utf8": "^2.0.0", - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8": { - "version": "2.3.0", - "license": "Apache-2.0", - "dependencies": { - "@smithy/util-buffer-from": "^2.2.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@aws-sdk/client-sso-oidc/node_modules/@aws-sdk/types": { - "version": "3.609.0", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/abort-controller": { - "version": "3.1.1", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/config-resolver": { - "version": "3.0.5", - "license": "Apache-2.0", - "dependencies": { - "@smithy/node-config-provider": "^3.1.4", - "@smithy/types": "^3.3.0", - "@smithy/util-config-provider": "^3.0.0", - "@smithy/util-middleware": "^3.0.3", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/credential-provider-imds": { - "version": "3.2.0", - "license": "Apache-2.0", - "dependencies": { - "@smithy/node-config-provider": "^3.1.4", - "@smithy/property-provider": "^3.1.3", - "@smithy/types": "^3.3.0", - "@smithy/url-parser": "^3.0.3", + "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, "engines": { @@ -1527,38 +1150,6 @@ "tslib": "^2.6.2" } }, - "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/hash-node": { - "version": "3.0.3", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^3.3.0", - "@smithy/util-buffer-from": "^3.0.0", - "@smithy/util-utf8": "^3.0.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/hash-node/node_modules/@smithy/util-buffer-from": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "@smithy/is-array-buffer": "^3.0.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/invalid-dependency": { - "version": "3.0.3", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - } - }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/is-array-buffer": { "version": "3.0.0", "license": "Apache-2.0", @@ -1569,18 +1160,6 @@ "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/middleware-content-length": { - "version": "3.0.5", - "license": "Apache-2.0", - "dependencies": { - "@smithy/protocol-http": "^4.1.0", - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/middleware-endpoint": { "version": "3.1.0", "license": "Apache-2.0", @@ -1787,63 +1366,6 @@ "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/util-body-length-browser": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/util-body-length-node": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/util-config-provider": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/util-defaults-mode-browser": { - "version": "3.0.15", - "license": "Apache-2.0", - "dependencies": { - "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "bowser": "^2.11.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/util-defaults-mode-node": { - "version": "3.0.15", - "license": "Apache-2.0", - "dependencies": { - "@smithy/config-resolver": "^3.0.5", - "@smithy/credential-provider-imds": "^3.2.0", - "@smithy/node-config-provider": "^3.1.4", - "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@aws-sdk/client-sso-oidc/node_modules/@smithy/util-hex-encoding": { "version": "3.0.0", "license": "Apache-2.0", @@ -1937,82 +1459,85 @@ "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sso/node_modules/@aws-crypto/sha256-browser": { - "version": "5.2.0", - "license": "Apache-2.0", - "dependencies": { - "@aws-crypto/sha256-js": "^5.2.0", - "@aws-crypto/supports-web-crypto": "^5.2.0", - "@aws-crypto/util": "^5.2.0", - "@aws-sdk/types": "^3.222.0", - "@aws-sdk/util-locate-window": "^3.0.0", - "@smithy/util-utf8": "^2.0.0", - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-sdk/client-sso/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8": { - "version": "2.3.0", + "node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/types": { + "version": "3.609.0", "license": "Apache-2.0", "dependencies": { - "@smithy/util-buffer-from": "^2.2.0", + "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sso/node_modules/@aws-crypto/sha256-js": { - "version": "5.2.0", + "node_modules/@aws-sdk/client-sso/node_modules/@smithy/abort-controller": { + "version": "3.1.1", "license": "Apache-2.0", "dependencies": { - "@aws-crypto/util": "^5.2.0", - "@aws-sdk/types": "^3.222.0", + "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sso/node_modules/@aws-crypto/supports-web-crypto": { - "version": "5.2.0", + "node_modules/@aws-sdk/client-sso/node_modules/@smithy/fetch-http-handler": { + "version": "3.2.4", "license": "Apache-2.0", "dependencies": { + "@smithy/protocol-http": "^4.1.0", + "@smithy/querystring-builder": "^3.0.3", + "@smithy/types": "^3.3.0", + "@smithy/util-base64": "^3.0.0", "tslib": "^2.6.2" } }, - "node_modules/@aws-sdk/client-sso/node_modules/@aws-crypto/util": { - "version": "5.2.0", + "node_modules/@aws-sdk/client-sso/node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/types": "^3.222.0", - "@smithy/util-utf8": "^2.0.0", "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sso/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8": { - "version": "2.3.0", + "node_modules/@aws-sdk/client-sso/node_modules/@smithy/middleware-endpoint": { + "version": "3.1.0", "license": "Apache-2.0", "dependencies": { - "@smithy/util-buffer-from": "^2.2.0", + "@smithy/middleware-serde": "^3.0.3", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/shared-ini-file-loader": "^3.1.4", + "@smithy/types": "^3.3.0", + "@smithy/url-parser": "^3.0.3", + "@smithy/util-middleware": "^3.0.3", "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/types": { - "version": "3.609.0", + "node_modules/@aws-sdk/client-sso/node_modules/@smithy/middleware-retry": { + "version": "3.0.15", "license": "Apache-2.0", "dependencies": { + "@smithy/node-config-provider": "^3.1.4", + "@smithy/protocol-http": "^4.1.0", + "@smithy/service-error-classification": "^3.0.3", + "@smithy/smithy-client": "^3.2.0", "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" + "@smithy/util-middleware": "^3.0.3", + "@smithy/util-retry": "^3.0.3", + "tslib": "^2.6.2", + "uuid": "^9.0.1" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/abort-controller": { - "version": "3.1.1", + "node_modules/@aws-sdk/client-sso/node_modules/@smithy/middleware-serde": { + "version": "3.0.3", "license": "Apache-2.0", "dependencies": { "@smithy/types": "^3.3.0", @@ -2022,184 +1547,46 @@ "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/config-resolver": { - "version": "3.0.5", + "node_modules/@aws-sdk/client-sso/node_modules/@smithy/middleware-stack": { + "version": "3.0.3", "license": "Apache-2.0", "dependencies": { - "@smithy/node-config-provider": "^3.1.4", "@smithy/types": "^3.3.0", - "@smithy/util-config-provider": "^3.0.0", - "@smithy/util-middleware": "^3.0.3", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/credential-provider-imds": { - "version": "3.2.0", + "node_modules/@aws-sdk/client-sso/node_modules/@smithy/node-config-provider": { + "version": "3.1.4", "license": "Apache-2.0", "dependencies": { - "@smithy/node-config-provider": "^3.1.4", "@smithy/property-provider": "^3.1.3", + "@smithy/shared-ini-file-loader": "^3.1.4", "@smithy/types": "^3.3.0", - "@smithy/url-parser": "^3.0.3", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/fetch-http-handler": { - "version": "3.2.4", + "node_modules/@aws-sdk/client-sso/node_modules/@smithy/node-http-handler": { + "version": "3.1.4", "license": "Apache-2.0", "dependencies": { + "@smithy/abort-controller": "^3.1.1", "@smithy/protocol-http": "^4.1.0", "@smithy/querystring-builder": "^3.0.3", "@smithy/types": "^3.3.0", - "@smithy/util-base64": "^3.0.0", "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/hash-node": { - "version": "3.0.3", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^3.3.0", - "@smithy/util-buffer-from": "^3.0.0", - "@smithy/util-utf8": "^3.0.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/hash-node/node_modules/@smithy/util-buffer-from": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "@smithy/is-array-buffer": "^3.0.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/invalid-dependency": { - "version": "3.0.3", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/is-array-buffer": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/middleware-content-length": { - "version": "3.0.5", - "license": "Apache-2.0", - "dependencies": { - "@smithy/protocol-http": "^4.1.0", - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/middleware-endpoint": { - "version": "3.1.0", - "license": "Apache-2.0", - "dependencies": { - "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.4", - "@smithy/shared-ini-file-loader": "^3.1.4", - "@smithy/types": "^3.3.0", - "@smithy/url-parser": "^3.0.3", - "@smithy/util-middleware": "^3.0.3", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/middleware-retry": { - "version": "3.0.15", - "license": "Apache-2.0", - "dependencies": { - "@smithy/node-config-provider": "^3.1.4", - "@smithy/protocol-http": "^4.1.0", - "@smithy/service-error-classification": "^3.0.3", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "@smithy/util-middleware": "^3.0.3", - "@smithy/util-retry": "^3.0.3", - "tslib": "^2.6.2", - "uuid": "^9.0.1" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/middleware-serde": { - "version": "3.0.3", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/middleware-stack": { - "version": "3.0.3", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/node-config-provider": { - "version": "3.1.4", - "license": "Apache-2.0", - "dependencies": { - "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.4", - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/node-http-handler": { - "version": "3.1.4", - "license": "Apache-2.0", - "dependencies": { - "@smithy/abort-controller": "^3.1.1", - "@smithy/protocol-http": "^4.1.0", - "@smithy/querystring-builder": "^3.0.3", - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/property-provider": { - "version": "3.1.3", + "node_modules/@aws-sdk/client-sso/node_modules/@smithy/property-provider": { + "version": "3.1.3", "license": "Apache-2.0", "dependencies": { "@smithy/types": "^3.3.0", @@ -2321,63 +1708,6 @@ "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/util-body-length-browser": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/util-body-length-node": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/util-config-provider": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/util-defaults-mode-browser": { - "version": "3.0.15", - "license": "Apache-2.0", - "dependencies": { - "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "bowser": "^2.11.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/@aws-sdk/client-sso/node_modules/@smithy/util-defaults-mode-node": { - "version": "3.0.15", - "license": "Apache-2.0", - "dependencies": { - "@smithy/config-resolver": "^3.0.5", - "@smithy/credential-provider-imds": "^3.2.0", - "@smithy/node-config-provider": "^3.1.4", - "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@aws-sdk/client-sso/node_modules/@smithy/util-hex-encoding": { "version": "3.0.0", "license": "Apache-2.0", @@ -2520,220 +1850,85 @@ "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sts/node_modules/@aws-crypto/sha256-browser": { - "version": "5.2.0", - "license": "Apache-2.0", - "dependencies": { - "@aws-crypto/sha256-js": "^5.2.0", - "@aws-crypto/supports-web-crypto": "^5.2.0", - "@aws-crypto/util": "^5.2.0", - "@aws-sdk/types": "^3.222.0", - "@aws-sdk/util-locate-window": "^3.0.0", - "@smithy/util-utf8": "^2.0.0", - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-sdk/client-sts/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8": { - "version": "2.3.0", + "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/types": { + "version": "3.609.0", "license": "Apache-2.0", "dependencies": { - "@smithy/util-buffer-from": "^2.2.0", + "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sts/node_modules/@aws-crypto/sha256-js": { - "version": "5.2.0", + "node_modules/@aws-sdk/client-sts/node_modules/@smithy/abort-controller": { + "version": "3.1.1", "license": "Apache-2.0", "dependencies": { - "@aws-crypto/util": "^5.2.0", - "@aws-sdk/types": "^3.222.0", + "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sts/node_modules/@aws-crypto/supports-web-crypto": { - "version": "5.2.0", + "node_modules/@aws-sdk/client-sts/node_modules/@smithy/fetch-http-handler": { + "version": "3.2.4", "license": "Apache-2.0", "dependencies": { + "@smithy/protocol-http": "^4.1.0", + "@smithy/querystring-builder": "^3.0.3", + "@smithy/types": "^3.3.0", + "@smithy/util-base64": "^3.0.0", "tslib": "^2.6.2" } }, - "node_modules/@aws-sdk/client-sts/node_modules/@aws-crypto/util": { - "version": "5.2.0", + "node_modules/@aws-sdk/client-sts/node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/types": "^3.222.0", - "@smithy/util-utf8": "^2.0.0", "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sts/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8": { - "version": "2.3.0", + "node_modules/@aws-sdk/client-sts/node_modules/@smithy/middleware-endpoint": { + "version": "3.1.0", "license": "Apache-2.0", "dependencies": { - "@smithy/util-buffer-from": "^2.2.0", + "@smithy/middleware-serde": "^3.0.3", + "@smithy/node-config-provider": "^3.1.4", + "@smithy/shared-ini-file-loader": "^3.1.4", + "@smithy/types": "^3.3.0", + "@smithy/url-parser": "^3.0.3", + "@smithy/util-middleware": "^3.0.3", "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sts/node_modules/@aws-sdk/types": { - "version": "3.609.0", + "node_modules/@aws-sdk/client-sts/node_modules/@smithy/middleware-retry": { + "version": "3.0.15", "license": "Apache-2.0", "dependencies": { + "@smithy/node-config-provider": "^3.1.4", + "@smithy/protocol-http": "^4.1.0", + "@smithy/service-error-classification": "^3.0.3", + "@smithy/smithy-client": "^3.2.0", "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" + "@smithy/util-middleware": "^3.0.3", + "@smithy/util-retry": "^3.0.3", + "tslib": "^2.6.2", + "uuid": "^9.0.1" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sts/node_modules/@smithy/abort-controller": { - "version": "3.1.1", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sts/node_modules/@smithy/config-resolver": { - "version": "3.0.5", - "license": "Apache-2.0", - "dependencies": { - "@smithy/node-config-provider": "^3.1.4", - "@smithy/types": "^3.3.0", - "@smithy/util-config-provider": "^3.0.0", - "@smithy/util-middleware": "^3.0.3", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sts/node_modules/@smithy/credential-provider-imds": { - "version": "3.2.0", - "license": "Apache-2.0", - "dependencies": { - "@smithy/node-config-provider": "^3.1.4", - "@smithy/property-provider": "^3.1.3", - "@smithy/types": "^3.3.0", - "@smithy/url-parser": "^3.0.3", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sts/node_modules/@smithy/fetch-http-handler": { - "version": "3.2.4", - "license": "Apache-2.0", - "dependencies": { - "@smithy/protocol-http": "^4.1.0", - "@smithy/querystring-builder": "^3.0.3", - "@smithy/types": "^3.3.0", - "@smithy/util-base64": "^3.0.0", - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-sdk/client-sts/node_modules/@smithy/hash-node": { - "version": "3.0.3", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^3.3.0", - "@smithy/util-buffer-from": "^3.0.0", - "@smithy/util-utf8": "^3.0.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sts/node_modules/@smithy/hash-node/node_modules/@smithy/util-buffer-from": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "@smithy/is-array-buffer": "^3.0.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sts/node_modules/@smithy/invalid-dependency": { - "version": "3.0.3", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-sdk/client-sts/node_modules/@smithy/is-array-buffer": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sts/node_modules/@smithy/middleware-content-length": { - "version": "3.0.5", - "license": "Apache-2.0", - "dependencies": { - "@smithy/protocol-http": "^4.1.0", - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sts/node_modules/@smithy/middleware-endpoint": { - "version": "3.1.0", - "license": "Apache-2.0", - "dependencies": { - "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.4", - "@smithy/shared-ini-file-loader": "^3.1.4", - "@smithy/types": "^3.3.0", - "@smithy/url-parser": "^3.0.3", - "@smithy/util-middleware": "^3.0.3", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sts/node_modules/@smithy/middleware-retry": { - "version": "3.0.15", - "license": "Apache-2.0", - "dependencies": { - "@smithy/node-config-provider": "^3.1.4", - "@smithy/protocol-http": "^4.1.0", - "@smithy/service-error-classification": "^3.0.3", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "@smithy/util-middleware": "^3.0.3", - "@smithy/util-retry": "^3.0.3", - "tslib": "^2.6.2", - "uuid": "^9.0.1" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sts/node_modules/@smithy/middleware-serde": { - "version": "3.0.3", + "node_modules/@aws-sdk/client-sts/node_modules/@smithy/middleware-serde": { + "version": "3.0.3", "license": "Apache-2.0", "dependencies": { "@smithy/types": "^3.3.0", @@ -2904,63 +2099,6 @@ "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/client-sts/node_modules/@smithy/util-body-length-browser": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - } - }, - "node_modules/@aws-sdk/client-sts/node_modules/@smithy/util-body-length-node": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sts/node_modules/@smithy/util-config-provider": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/client-sts/node_modules/@smithy/util-defaults-mode-browser": { - "version": "3.0.15", - "license": "Apache-2.0", - "dependencies": { - "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "bowser": "^2.11.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/@aws-sdk/client-sts/node_modules/@smithy/util-defaults-mode-node": { - "version": "3.0.15", - "license": "Apache-2.0", - "dependencies": { - "@smithy/config-resolver": "^3.0.5", - "@smithy/credential-provider-imds": "^3.2.0", - "@smithy/node-config-provider": "^3.1.4", - "@smithy/property-provider": "^3.1.3", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">= 10.0.0" - } - }, "node_modules/@aws-sdk/client-sts/node_modules/@smithy/util-hex-encoding": { "version": "3.0.0", "license": "Apache-2.0", @@ -4318,33 +3456,6 @@ "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/credential-provider-node/node_modules/@smithy/credential-provider-imds": { - "version": "3.2.0", - "license": "Apache-2.0", - "dependencies": { - "@smithy/node-config-provider": "^3.1.4", - "@smithy/property-provider": "^3.1.3", - "@smithy/types": "^3.3.0", - "@smithy/url-parser": "^3.0.3", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/@aws-sdk/credential-provider-node/node_modules/@smithy/node-config-provider": { - "version": "3.1.4", - "license": "Apache-2.0", - "dependencies": { - "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.4", - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, "node_modules/@aws-sdk/credential-provider-node/node_modules/@smithy/property-provider": { "version": "3.1.3", "license": "Apache-2.0", @@ -4356,17 +3467,6 @@ "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/credential-provider-node/node_modules/@smithy/querystring-parser": { - "version": "3.0.3", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, "node_modules/@aws-sdk/credential-provider-node/node_modules/@smithy/shared-ini-file-loader": { "version": "3.1.4", "license": "Apache-2.0", @@ -4388,15 +3488,6 @@ "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/credential-provider-node/node_modules/@smithy/url-parser": { - "version": "3.0.3", - "license": "Apache-2.0", - "dependencies": { - "@smithy/querystring-parser": "^3.0.3", - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - } - }, "node_modules/@aws-sdk/credential-provider-process": { "version": "3.37.0", "license": "Apache-2.0", @@ -4778,16 +3869,6 @@ "node": ">=16.0.0" } }, - "node_modules/@aws-sdk/region-config-resolver/node_modules/@smithy/util-config-provider": { - "version": "3.0.0", - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" - } - }, "node_modules/@aws-sdk/region-config-resolver/node_modules/@smithy/util-middleware": { "version": "3.0.3", "license": "Apache-2.0", @@ -5431,6 +4512,19 @@ "node": ">=6.0.0" } }, + "node_modules/@babel/runtime": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.9.tgz", + "integrity": "sha512-4zpTHZ9Cm6L9L+uIqghQX8ZXg8HKFcjYO3qHoO8zTmRm6HQUJ8SSJ+KRvbMBZn0EGVlT4DRYeQ/6hjlyXBh+Kg==", + "dev": true, + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@bcherny/json-schema-ref-parser": { "version": "10.0.5-fork", "dev": true, @@ -5906,145 +5000,168 @@ "node": ">=14.0.0" } }, - "node_modules/@smithy/core": { - "version": "2.4.0", + "node_modules/@smithy/config-resolver": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.10.tgz", + "integrity": "sha512-Uh0Sz9gdUuz538nvkPiyv1DZRX9+D15EKDtnQP5rYVAzM/dnYk3P8cg73jcxyOitPgT3mE3OVj7ky7sibzHWkw==", "license": "Apache-2.0", "dependencies": { - "@smithy/middleware-endpoint": "^3.1.0", - "@smithy/middleware-retry": "^3.0.15", - "@smithy/middleware-serde": "^3.0.3", - "@smithy/protocol-http": "^4.1.0", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "@smithy/util-body-length-browser": "^3.0.0", - "@smithy/util-middleware": "^3.0.3", - "@smithy/util-utf8": "^3.0.0", + "@smithy/node-config-provider": "^3.1.9", + "@smithy/types": "^3.6.0", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.8", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/abort-controller": { - "version": "3.1.1", + "node_modules/@smithy/config-resolver/node_modules/@smithy/node-config-provider": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.9.tgz", + "integrity": "sha512-qRHoah49QJ71eemjuS/WhUXB+mpNtwHRWQr77J/m40ewBVVwvo52kYAmb7iuaECgGTTcYxHS4Wmewfwy++ueew==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/property-provider": "^3.1.8", + "@smithy/shared-ini-file-loader": "^3.1.9", + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/fetch-http-handler": { - "version": "3.2.4", + "node_modules/@smithy/config-resolver/node_modules/@smithy/property-provider": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.8.tgz", + "integrity": "sha512-ukNUyo6rHmusG64lmkjFeXemwYuKge1BJ8CtpVKmrxQxc6rhUX0vebcptFA9MmrGsnLhwnnqeH83VTU9hwOpjA==", "license": "Apache-2.0", "dependencies": { - "@smithy/protocol-http": "^4.1.0", - "@smithy/querystring-builder": "^3.0.3", - "@smithy/types": "^3.3.0", - "@smithy/util-base64": "^3.0.0", + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/is-array-buffer": { - "version": "3.0.0", + "node_modules/@smithy/config-resolver/node_modules/@smithy/shared-ini-file-loader": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.9.tgz", + "integrity": "sha512-/+OsJRNtoRbtsX0UpSgWVxFZLsJHo/4sTr+kBg/J78sr7iC+tHeOvOJrS5hCpVQ6sWBbhWLp1UNiuMyZhE6pmA==", "license": "Apache-2.0", "dependencies": { + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/middleware-endpoint": { - "version": "3.1.0", + "node_modules/@smithy/config-resolver/node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", "license": "Apache-2.0", "dependencies": { - "@smithy/middleware-serde": "^3.0.3", - "@smithy/node-config-provider": "^3.1.4", - "@smithy/shared-ini-file-loader": "^3.1.4", - "@smithy/types": "^3.3.0", - "@smithy/url-parser": "^3.0.3", - "@smithy/util-middleware": "^3.0.3", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/middleware-retry": { - "version": "3.0.15", + "node_modules/@smithy/config-resolver/node_modules/@smithy/util-middleware": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.8.tgz", + "integrity": "sha512-p7iYAPaQjoeM+AKABpYWeDdtwQNxasr4aXQEA/OmbOaug9V0odRVDy3Wx4ci8soljE/JXQo+abV0qZpW8NX0yA==", "license": "Apache-2.0", "dependencies": { - "@smithy/node-config-provider": "^3.1.4", - "@smithy/protocol-http": "^4.1.0", - "@smithy/service-error-classification": "^3.0.3", - "@smithy/smithy-client": "^3.2.0", - "@smithy/types": "^3.3.0", - "@smithy/util-middleware": "^3.0.3", - "@smithy/util-retry": "^3.0.3", - "tslib": "^2.6.2", - "uuid": "^9.0.1" + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/middleware-serde": { - "version": "3.0.3", + "node_modules/@smithy/core": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.5.1.tgz", + "integrity": "sha512-DujtuDA7BGEKExJ05W5OdxCoyekcKT3Rhg1ZGeiUWaz2BJIWXjZmsG/DIP4W48GHno7AQwRsaCb8NcBgH3QZpg==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/middleware-serde": "^3.0.8", + "@smithy/protocol-http": "^4.1.5", + "@smithy/types": "^3.6.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-middleware": "^3.0.8", + "@smithy/util-stream": "^3.2.1", + "@smithy/util-utf8": "^3.0.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/middleware-stack": { - "version": "3.0.3", + "node_modules/@smithy/core/node_modules/@smithy/abort-controller": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.1.6.tgz", + "integrity": "sha512-0XuhuHQlEqbNQZp7QxxrFTdVWdwxch4vjxYgfInF91hZFkPxf9QDrdQka0KfxFMPqLNzSw0b95uGTrLliQUavQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/node-config-provider": { - "version": "3.1.4", + "node_modules/@smithy/core/node_modules/@smithy/fetch-http-handler": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-4.0.0.tgz", + "integrity": "sha512-MLb1f5tbBO2X6K4lMEKJvxeLooyg7guq48C2zKr4qM7F2Gpkz4dc+hdSgu77pCJ76jVqFBjZczHYAs6dp15N+g==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/protocol-http": "^4.1.5", + "@smithy/querystring-builder": "^3.0.8", + "@smithy/types": "^3.6.0", + "@smithy/util-base64": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/core/node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", + "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.4", - "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/node-http-handler": { - "version": "3.1.4", + "node_modules/@smithy/core/node_modules/@smithy/middleware-serde": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.8.tgz", + "integrity": "sha512-Xg2jK9Wc/1g/MBMP/EUn2DLspN8LNt+GMe7cgF+Ty3vl+Zvu+VeZU5nmhveU+H8pxyTsjrAkci8NqY6OuvZnjA==", "license": "Apache-2.0", "dependencies": { - "@smithy/abort-controller": "^3.1.1", - "@smithy/protocol-http": "^4.1.0", - "@smithy/querystring-builder": "^3.0.3", - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/property-provider": { - "version": "3.1.3", + "node_modules/@smithy/core/node_modules/@smithy/node-http-handler": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.2.5.tgz", + "integrity": "sha512-PkOwPNeKdvX/jCpn0A8n9/TyoxjGZB8WVoJmm9YzsnAgggTj4CrjpRHlTQw7dlLZ320n1mY1y+nTRUDViKi/3w==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/abort-controller": "^3.1.6", + "@smithy/protocol-http": "^4.1.5", + "@smithy/querystring-builder": "^3.0.8", + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" }, "engines": { @@ -6052,10 +5169,12 @@ } }, "node_modules/@smithy/core/node_modules/@smithy/protocol-http": { - "version": "4.1.0", + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.1.5.tgz", + "integrity": "sha512-hsjtwpIemmCkm3ZV5fd/T0bPIugW1gJXwZ/hpuVubt2hEUApIoUTrf6qIdh9MAWlw0vjMrA1ztJLAwtNaZogvg==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" }, "engines": { @@ -6063,10 +5182,12 @@ } }, "node_modules/@smithy/core/node_modules/@smithy/querystring-builder": { - "version": "3.0.3", + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.8.tgz", + "integrity": "sha512-btYxGVqFUARbUrN6VhL9c3dnSviIwBYD9Rz1jHuN1hgh28Fpv2xjU1HeCeDJX68xctz7r4l1PBnFhGg1WBBPuA==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.6.0", "@smithy/util-uri-escape": "^3.0.0", "tslib": "^2.6.2" }, @@ -6074,77 +5195,82 @@ "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/querystring-parser": { - "version": "3.0.3", + "node_modules/@smithy/core/node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/service-error-classification": { - "version": "3.0.3", + "node_modules/@smithy/core/node_modules/@smithy/util-base64": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-base64/-/util-base64-3.0.0.tgz", + "integrity": "sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0" + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/shared-ini-file-loader": { - "version": "3.1.4", + "node_modules/@smithy/core/node_modules/@smithy/util-buffer-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", + "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/is-array-buffer": "^3.0.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/smithy-client": { - "version": "3.2.0", + "node_modules/@smithy/core/node_modules/@smithy/util-hex-encoding": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-3.0.0.tgz", + "integrity": "sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/middleware-endpoint": "^3.1.0", - "@smithy/middleware-stack": "^3.0.3", - "@smithy/protocol-http": "^4.1.0", - "@smithy/types": "^3.3.0", - "@smithy/util-stream": "^3.1.3", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/types": { - "version": "3.3.0", + "node_modules/@smithy/core/node_modules/@smithy/util-middleware": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.8.tgz", + "integrity": "sha512-p7iYAPaQjoeM+AKABpYWeDdtwQNxasr4aXQEA/OmbOaug9V0odRVDy3Wx4ci8soljE/JXQo+abV0qZpW8NX0yA==", "license": "Apache-2.0", "dependencies": { + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/url-parser": { - "version": "3.0.3", - "license": "Apache-2.0", - "dependencies": { - "@smithy/querystring-parser": "^3.0.3", - "@smithy/types": "^3.3.0", - "tslib": "^2.6.2" - } - }, - "node_modules/@smithy/core/node_modules/@smithy/util-base64": { - "version": "3.0.0", + "node_modules/@smithy/core/node_modules/@smithy/util-stream": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.2.1.tgz", + "integrity": "sha512-R3ufuzJRxSJbE58K9AEnL/uSZyVdHzud9wLS8tIbXclxKzoe09CRohj2xV8wpx5tj7ZbiJaKYcutMm1eYgz/0A==", "license": "Apache-2.0", "dependencies": { + "@smithy/fetch-http-handler": "^4.0.0", + "@smithy/node-http-handler": "^3.2.5", + "@smithy/types": "^3.6.0", + "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-hex-encoding": "^3.0.0", "@smithy/util-utf8": "^3.0.0", "tslib": "^2.6.2" }, @@ -6152,492 +5278,550 @@ "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/util-body-length-browser": { + "node_modules/@smithy/core/node_modules/@smithy/util-uri-escape": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-3.0.0.tgz", + "integrity": "sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==", "license": "Apache-2.0", "dependencies": { "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/util-buffer-from": { + "node_modules/@smithy/core/node_modules/@smithy/util-utf8": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-3.0.0.tgz", + "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", "license": "Apache-2.0", "dependencies": { - "@smithy/is-array-buffer": "^3.0.0", + "@smithy/util-buffer-from": "^3.0.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/util-hex-encoding": { - "version": "3.0.0", + "node_modules/@smithy/credential-provider-imds": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.5.tgz", + "integrity": "sha512-4FTQGAsuwqTzVMmiRVTn0RR9GrbRfkP0wfu/tXWVHd2LgNpTY0uglQpIScXK4NaEyXbB3JmZt8gfVqO50lP8wg==", "license": "Apache-2.0", "dependencies": { + "@smithy/node-config-provider": "^3.1.9", + "@smithy/property-provider": "^3.1.8", + "@smithy/types": "^3.6.0", + "@smithy/url-parser": "^3.0.8", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/util-middleware": { - "version": "3.0.3", + "node_modules/@smithy/credential-provider-imds/node_modules/@smithy/node-config-provider": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.9.tgz", + "integrity": "sha512-qRHoah49QJ71eemjuS/WhUXB+mpNtwHRWQr77J/m40ewBVVwvo52kYAmb7iuaECgGTTcYxHS4Wmewfwy++ueew==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/property-provider": "^3.1.8", + "@smithy/shared-ini-file-loader": "^3.1.9", + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/util-retry": { - "version": "3.0.3", + "node_modules/@smithy/credential-provider-imds/node_modules/@smithy/property-provider": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.8.tgz", + "integrity": "sha512-ukNUyo6rHmusG64lmkjFeXemwYuKge1BJ8CtpVKmrxQxc6rhUX0vebcptFA9MmrGsnLhwnnqeH83VTU9hwOpjA==", "license": "Apache-2.0", "dependencies": { - "@smithy/service-error-classification": "^3.0.3", - "@smithy/types": "^3.3.0", + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/util-stream": { - "version": "3.1.3", + "node_modules/@smithy/credential-provider-imds/node_modules/@smithy/querystring-parser": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.8.tgz", + "integrity": "sha512-BtEk3FG7Ks64GAbt+JnKqwuobJNX8VmFLBsKIwWr1D60T426fGrV2L3YS5siOcUhhp6/Y6yhBw1PSPxA5p7qGg==", "license": "Apache-2.0", "dependencies": { - "@smithy/fetch-http-handler": "^3.2.4", - "@smithy/node-http-handler": "^3.1.4", - "@smithy/types": "^3.3.0", - "@smithy/util-base64": "^3.0.0", - "@smithy/util-buffer-from": "^3.0.0", - "@smithy/util-hex-encoding": "^3.0.0", - "@smithy/util-utf8": "^3.0.0", + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/util-uri-escape": { - "version": "3.0.0", + "node_modules/@smithy/credential-provider-imds/node_modules/@smithy/shared-ini-file-loader": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.9.tgz", + "integrity": "sha512-/+OsJRNtoRbtsX0UpSgWVxFZLsJHo/4sTr+kBg/J78sr7iC+tHeOvOJrS5hCpVQ6sWBbhWLp1UNiuMyZhE6pmA==", "license": "Apache-2.0", "dependencies": { + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/core/node_modules/@smithy/util-utf8": { - "version": "3.0.0", + "node_modules/@smithy/credential-provider-imds/node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", "license": "Apache-2.0", "dependencies": { - "@smithy/util-buffer-from": "^3.0.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/fetch-http-handler": { - "version": "2.5.0", + "node_modules/@smithy/credential-provider-imds/node_modules/@smithy/url-parser": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.8.tgz", + "integrity": "sha512-4FdOhwpTW7jtSFWm7SpfLGKIBC9ZaTKG5nBF0wK24aoQKQyDIKUw3+KFWCQ9maMzrgTJIuOvOnsV2lLGW5XjTg==", "license": "Apache-2.0", "dependencies": { - "@smithy/protocol-http": "^3.3.0", - "@smithy/querystring-builder": "^2.2.0", - "@smithy/types": "^2.12.0", - "@smithy/util-base64": "^2.3.0", + "@smithy/querystring-parser": "^3.0.8", + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" } }, - "node_modules/@smithy/is-array-buffer": { - "version": "2.2.0", + "node_modules/@smithy/eventstream-codec": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-3.1.7.tgz", + "integrity": "sha512-kVSXScIiRN7q+s1x7BrQtZ1Aa9hvvP9FeCqCdBxv37GimIHgBCOnZ5Ip80HLt0DhnAKpiobFdGqTFgbaJNrazA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-crypto/crc32": "5.2.0", + "@smithy/types": "^3.6.0", + "@smithy/util-hex-encoding": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/eventstream-codec/node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", "license": "Apache-2.0", "dependencies": { "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@smithy/middleware-endpoint": { - "version": "2.5.1", + "node_modules/@smithy/eventstream-codec/node_modules/@smithy/util-hex-encoding": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-3.0.0.tgz", + "integrity": "sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/middleware-serde": "^2.3.0", - "@smithy/node-config-provider": "^2.3.0", - "@smithy/shared-ini-file-loader": "^2.4.0", - "@smithy/types": "^2.12.0", - "@smithy/url-parser": "^2.2.0", - "@smithy/util-middleware": "^2.2.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@smithy/middleware-retry": { - "version": "2.3.1", + "node_modules/@smithy/eventstream-serde-browser": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-3.0.11.tgz", + "integrity": "sha512-Pd1Wnq3CQ/v2SxRifDUihvpXzirJYbbtXfEnnLV/z0OGCTx/btVX74P86IgrZkjOydOASBGXdPpupYQI+iO/6A==", "license": "Apache-2.0", "dependencies": { - "@smithy/node-config-provider": "^2.3.0", - "@smithy/protocol-http": "^3.3.0", - "@smithy/service-error-classification": "^2.1.5", - "@smithy/smithy-client": "^2.5.1", - "@smithy/types": "^2.12.0", - "@smithy/util-middleware": "^2.2.0", - "@smithy/util-retry": "^2.2.0", - "tslib": "^2.6.2", - "uuid": "^9.0.1" + "@smithy/eventstream-serde-universal": "^3.0.10", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@smithy/middleware-serde": { - "version": "2.3.0", + "node_modules/@smithy/eventstream-serde-browser/node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^2.12.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@smithy/middleware-stack": { - "version": "2.2.0", + "node_modules/@smithy/eventstream-serde-config-resolver": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.0.8.tgz", + "integrity": "sha512-zkFIG2i1BLbfoGQnf1qEeMqX0h5qAznzaZmMVNnvPZz9J5AWBPkOMckZWPedGUPcVITacwIdQXoPcdIQq5FRcg==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^2.12.0", + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@smithy/node-config-provider": { - "version": "2.3.0", + "node_modules/@smithy/eventstream-serde-config-resolver/node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", "license": "Apache-2.0", "dependencies": { - "@smithy/property-provider": "^2.2.0", - "@smithy/shared-ini-file-loader": "^2.4.0", - "@smithy/types": "^2.12.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@smithy/node-http-handler": { - "version": "2.5.0", + "node_modules/@smithy/eventstream-serde-node": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-node/-/eventstream-serde-node-3.0.10.tgz", + "integrity": "sha512-hjpU1tIsJ9qpcoZq9zGHBJPBOeBGYt+n8vfhDwnITPhEre6APrvqq/y3XMDEGUT2cWQ4ramNqBPRbx3qn55rhw==", "license": "Apache-2.0", "dependencies": { - "@smithy/abort-controller": "^2.2.0", - "@smithy/protocol-http": "^3.3.0", - "@smithy/querystring-builder": "^2.2.0", - "@smithy/types": "^2.12.0", + "@smithy/eventstream-serde-universal": "^3.0.10", + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@smithy/property-provider": { - "version": "2.2.0", + "node_modules/@smithy/eventstream-serde-node/node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^2.12.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@smithy/protocol-http": { - "version": "3.3.0", + "node_modules/@smithy/eventstream-serde-universal": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-3.0.10.tgz", + "integrity": "sha512-ewG1GHbbqsFZ4asaq40KmxCmXO+AFSM1b+DcO2C03dyJj/ZH71CiTg853FSE/3SHK9q3jiYQIFjlGSwfxQ9kww==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^2.12.0", + "@smithy/eventstream-codec": "^3.1.7", + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@smithy/querystring-builder": { - "version": "2.2.0", + "node_modules/@smithy/eventstream-serde-universal/node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^2.12.0", - "@smithy/util-uri-escape": "^2.2.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@smithy/querystring-parser": { - "version": "2.2.0", + "node_modules/@smithy/fetch-http-handler": { + "version": "2.5.0", "license": "Apache-2.0", "dependencies": { + "@smithy/protocol-http": "^3.3.0", + "@smithy/querystring-builder": "^2.2.0", "@smithy/types": "^2.12.0", + "@smithy/util-base64": "^2.3.0", "tslib": "^2.6.2" - }, - "engines": { - "node": ">=14.0.0" } }, - "node_modules/@smithy/service-error-classification": { - "version": "2.1.5", + "node_modules/@smithy/hash-node": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-3.0.8.tgz", + "integrity": "sha512-tlNQYbfpWXHimHqrvgo14DrMAgUBua/cNoz9fMYcDmYej7MAmUcjav/QKQbFc3NrcPxeJ7QClER4tWZmfwoPng==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^2.12.0" + "@smithy/types": "^3.6.0", + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@smithy/shared-ini-file-loader": { - "version": "2.4.0", + "node_modules/@smithy/hash-node/node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", + "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^2.12.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@smithy/signature-v4": { - "version": "4.1.0", + "node_modules/@smithy/hash-node/node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", "license": "Apache-2.0", "dependencies": { - "@smithy/is-array-buffer": "^3.0.0", - "@smithy/protocol-http": "^4.1.0", - "@smithy/types": "^3.3.0", - "@smithy/util-hex-encoding": "^3.0.0", - "@smithy/util-middleware": "^3.0.3", - "@smithy/util-uri-escape": "^3.0.0", - "@smithy/util-utf8": "^3.0.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/signature-v4/node_modules/@smithy/is-array-buffer": { + "node_modules/@smithy/hash-node/node_modules/@smithy/util-buffer-from": { "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", + "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", "license": "Apache-2.0", "dependencies": { + "@smithy/is-array-buffer": "^3.0.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/signature-v4/node_modules/@smithy/protocol-http": { - "version": "4.1.0", + "node_modules/@smithy/hash-node/node_modules/@smithy/util-utf8": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-3.0.0.tgz", + "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/util-buffer-from": "^3.0.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/signature-v4/node_modules/@smithy/types": { - "version": "3.3.0", + "node_modules/@smithy/invalid-dependency": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-3.0.8.tgz", + "integrity": "sha512-7Qynk6NWtTQhnGTTZwks++nJhQ1O54Mzi7fz4PqZOiYXb4Z1Flpb2yRvdALoggTS8xjtohWUM+RygOtB30YL3Q==", "license": "Apache-2.0", "dependencies": { + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" - }, - "engines": { - "node": ">=16.0.0" } }, - "node_modules/@smithy/signature-v4/node_modules/@smithy/util-buffer-from": { - "version": "3.0.0", + "node_modules/@smithy/invalid-dependency/node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", "license": "Apache-2.0", "dependencies": { - "@smithy/is-array-buffer": "^3.0.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/signature-v4/node_modules/@smithy/util-hex-encoding": { - "version": "3.0.0", + "node_modules/@smithy/is-array-buffer": { + "version": "2.2.0", "license": "Apache-2.0", "dependencies": { "tslib": "^2.6.2" }, "engines": { - "node": ">=16.0.0" + "node": ">=14.0.0" } }, - "node_modules/@smithy/signature-v4/node_modules/@smithy/util-middleware": { - "version": "3.0.3", + "node_modules/@smithy/middleware-content-length": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-3.0.10.tgz", + "integrity": "sha512-T4dIdCs1d/+/qMpwhJ1DzOhxCZjZHbHazEPJWdB4GDi2HjIZllVzeBEcdJUN0fomV8DURsgOyrbEUzg3vzTaOg==", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/protocol-http": "^4.1.5", + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/signature-v4/node_modules/@smithy/util-uri-escape": { - "version": "3.0.0", + "node_modules/@smithy/middleware-content-length/node_modules/@smithy/protocol-http": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.1.5.tgz", + "integrity": "sha512-hsjtwpIemmCkm3ZV5fd/T0bPIugW1gJXwZ/hpuVubt2hEUApIoUTrf6qIdh9MAWlw0vjMrA1ztJLAwtNaZogvg==", "license": "Apache-2.0", "dependencies": { + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/signature-v4/node_modules/@smithy/util-utf8": { - "version": "3.0.0", + "node_modules/@smithy/middleware-content-length/node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", "license": "Apache-2.0", "dependencies": { - "@smithy/util-buffer-from": "^3.0.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/smithy-client": { + "node_modules/@smithy/middleware-endpoint": { "version": "2.5.1", "license": "Apache-2.0", "dependencies": { - "@smithy/middleware-endpoint": "^2.5.1", - "@smithy/middleware-stack": "^2.2.0", - "@smithy/protocol-http": "^3.3.0", + "@smithy/middleware-serde": "^2.3.0", + "@smithy/node-config-provider": "^2.3.0", + "@smithy/shared-ini-file-loader": "^2.4.0", "@smithy/types": "^2.12.0", - "@smithy/util-stream": "^2.2.0", + "@smithy/url-parser": "^2.2.0", + "@smithy/util-middleware": "^2.2.0", "tslib": "^2.6.2" }, "engines": { "node": ">=14.0.0" } }, - "node_modules/@smithy/types": { - "version": "2.12.0", + "node_modules/@smithy/middleware-retry": { + "version": "2.3.1", "license": "Apache-2.0", "dependencies": { - "tslib": "^2.6.2" + "@smithy/node-config-provider": "^2.3.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/service-error-classification": "^2.1.5", + "@smithy/smithy-client": "^2.5.1", + "@smithy/types": "^2.12.0", + "@smithy/util-middleware": "^2.2.0", + "@smithy/util-retry": "^2.2.0", + "tslib": "^2.6.2", + "uuid": "^9.0.1" }, "engines": { "node": ">=14.0.0" } }, - "node_modules/@smithy/url-parser": { - "version": "2.2.0", + "node_modules/@smithy/middleware-serde": { + "version": "2.3.0", "license": "Apache-2.0", "dependencies": { - "@smithy/querystring-parser": "^2.2.0", "@smithy/types": "^2.12.0", "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" } }, - "node_modules/@smithy/util-base64": { - "version": "2.3.0", + "node_modules/@smithy/middleware-stack": { + "version": "2.2.0", "license": "Apache-2.0", "dependencies": { - "@smithy/util-buffer-from": "^2.2.0", - "@smithy/util-utf8": "^2.3.0", + "@smithy/types": "^2.12.0", "tslib": "^2.6.2" }, "engines": { "node": ">=14.0.0" } }, - "node_modules/@smithy/util-buffer-from": { - "version": "2.2.0", + "node_modules/@smithy/node-config-provider": { + "version": "2.3.0", "license": "Apache-2.0", "dependencies": { - "@smithy/is-array-buffer": "^2.2.0", + "@smithy/property-provider": "^2.2.0", + "@smithy/shared-ini-file-loader": "^2.4.0", + "@smithy/types": "^2.12.0", "tslib": "^2.6.2" }, "engines": { "node": ">=14.0.0" } }, - "node_modules/@smithy/util-endpoints": { - "version": "2.0.5", + "node_modules/@smithy/node-http-handler": { + "version": "2.5.0", "license": "Apache-2.0", "dependencies": { - "@smithy/node-config-provider": "^3.1.4", - "@smithy/types": "^3.3.0", + "@smithy/abort-controller": "^2.2.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/querystring-builder": "^2.2.0", + "@smithy/types": "^2.12.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=16.0.0" + "node": ">=14.0.0" } }, - "node_modules/@smithy/util-endpoints/node_modules/@smithy/node-config-provider": { - "version": "3.1.4", + "node_modules/@smithy/property-provider": { + "version": "2.2.0", "license": "Apache-2.0", "dependencies": { - "@smithy/property-provider": "^3.1.3", - "@smithy/shared-ini-file-loader": "^3.1.4", - "@smithy/types": "^3.3.0", + "@smithy/types": "^2.12.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=16.0.0" + "node": ">=14.0.0" } }, - "node_modules/@smithy/util-endpoints/node_modules/@smithy/property-provider": { - "version": "3.1.3", + "node_modules/@smithy/protocol-http": { + "version": "3.3.0", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/types": "^2.12.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=16.0.0" + "node": ">=14.0.0" } }, - "node_modules/@smithy/util-endpoints/node_modules/@smithy/shared-ini-file-loader": { - "version": "3.1.4", + "node_modules/@smithy/querystring-builder": { + "version": "2.2.0", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", + "@smithy/types": "^2.12.0", + "@smithy/util-uri-escape": "^2.2.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=16.0.0" + "node": ">=14.0.0" } }, - "node_modules/@smithy/util-endpoints/node_modules/@smithy/types": { - "version": "3.3.0", + "node_modules/@smithy/querystring-parser": { + "version": "2.2.0", "license": "Apache-2.0", "dependencies": { + "@smithy/types": "^2.12.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=16.0.0" + "node": ">=14.0.0" } }, - "node_modules/@smithy/util-hex-encoding": { - "version": "2.2.0", + "node_modules/@smithy/service-error-classification": { + "version": "2.1.5", "license": "Apache-2.0", "dependencies": { - "tslib": "^2.6.2" + "@smithy/types": "^2.12.0" }, "engines": { "node": ">=14.0.0" } }, - "node_modules/@smithy/util-middleware": { - "version": "2.2.0", + "node_modules/@smithy/shared-ini-file-loader": { + "version": "2.4.0", "license": "Apache-2.0", "dependencies": { "@smithy/types": "^2.12.0", @@ -6647,306 +5831,1261 @@ "node": ">=14.0.0" } }, - "node_modules/@smithy/util-retry": { - "version": "2.2.0", + "node_modules/@smithy/signature-v4": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-4.2.1.tgz", + "integrity": "sha512-NsV1jF4EvmO5wqmaSzlnTVetemBS3FZHdyc5CExbDljcyJCEEkJr8ANu2JvtNbVg/9MvKAWV44kTrGS+Pi4INg==", "license": "Apache-2.0", "dependencies": { - "@smithy/service-error-classification": "^2.1.5", - "@smithy/types": "^2.12.0", + "@smithy/is-array-buffer": "^3.0.0", + "@smithy/protocol-http": "^4.1.5", + "@smithy/types": "^3.6.0", + "@smithy/util-hex-encoding": "^3.0.0", + "@smithy/util-middleware": "^3.0.8", + "@smithy/util-uri-escape": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", "tslib": "^2.6.2" }, "engines": { - "node": ">= 14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@smithy/util-stream": { - "version": "2.2.0", + "node_modules/@smithy/signature-v4/node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", "license": "Apache-2.0", "dependencies": { - "@smithy/fetch-http-handler": "^2.5.0", - "@smithy/node-http-handler": "^2.5.0", - "@smithy/types": "^2.12.0", - "@smithy/util-base64": "^2.3.0", - "@smithy/util-buffer-from": "^2.2.0", - "@smithy/util-hex-encoding": "^2.2.0", - "@smithy/util-utf8": "^2.3.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@smithy/util-uri-escape": { - "version": "2.2.0", + "node_modules/@smithy/signature-v4/node_modules/@smithy/protocol-http": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.1.5.tgz", + "integrity": "sha512-hsjtwpIemmCkm3ZV5fd/T0bPIugW1gJXwZ/hpuVubt2hEUApIoUTrf6qIdh9MAWlw0vjMrA1ztJLAwtNaZogvg==", "license": "Apache-2.0", "dependencies": { + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@smithy/util-utf8": { - "version": "2.3.0", + "node_modules/@smithy/signature-v4/node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", "license": "Apache-2.0", "dependencies": { - "@smithy/util-buffer-from": "^2.2.0", "tslib": "^2.6.2" }, "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" } }, - "node_modules/@smithy/util-waiter": { - "version": "3.1.2", + "node_modules/@smithy/signature-v4/node_modules/@smithy/util-buffer-from": { + "version": "3.0.0", "license": "Apache-2.0", "dependencies": { - "@smithy/abort-controller": "^3.1.1", - "@smithy/types": "^3.3.0", + "@smithy/is-array-buffer": "^3.0.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/util-waiter/node_modules/@smithy/abort-controller": { - "version": "3.1.1", + "node_modules/@smithy/signature-v4/node_modules/@smithy/util-hex-encoding": { + "version": "3.0.0", "license": "Apache-2.0", "dependencies": { - "@smithy/types": "^3.3.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@smithy/util-waiter/node_modules/@smithy/types": { - "version": "3.3.0", + "node_modules/@smithy/signature-v4/node_modules/@smithy/util-middleware": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.8.tgz", + "integrity": "sha512-p7iYAPaQjoeM+AKABpYWeDdtwQNxasr4aXQEA/OmbOaug9V0odRVDy3Wx4ci8soljE/JXQo+abV0qZpW8NX0yA==", "license": "Apache-2.0", "dependencies": { + "@smithy/types": "^3.6.0", "tslib": "^2.6.2" }, "engines": { "node": ">=16.0.0" } }, - "node_modules/@szmarczak/http-timer": { - "version": "4.0.6", - "license": "MIT", + "node_modules/@smithy/signature-v4/node_modules/@smithy/util-uri-escape": { + "version": "3.0.0", + "license": "Apache-2.0", "dependencies": { - "defer-to-connect": "^2.0.0" + "tslib": "^2.6.2" }, "engines": { - "node": ">=10" + "node": ">=16.0.0" } }, - "node_modules/@tootallnate/once": { - "version": "1.1.2", - "dev": true, - "license": "MIT", + "node_modules/@smithy/signature-v4/node_modules/@smithy/util-utf8": { + "version": "3.0.0", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "tslib": "^2.6.2" + }, "engines": { - "node": ">= 6" + "node": ">=16.0.0" } }, - "node_modules/@ts-morph/common": { - "version": "0.24.0", - "dev": true, - "license": "MIT", + "node_modules/@smithy/smithy-client": { + "version": "2.5.1", + "license": "Apache-2.0", "dependencies": { - "fast-glob": "^3.3.2", - "minimatch": "^9.0.4", - "mkdirp": "^3.0.1", - "path-browserify": "^1.0.1" + "@smithy/middleware-endpoint": "^2.5.1", + "@smithy/middleware-stack": "^2.2.0", + "@smithy/protocol-http": "^3.3.0", + "@smithy/types": "^2.12.0", + "@smithy/util-stream": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" } }, - "node_modules/@ts-morph/common/node_modules/brace-expansion": { - "version": "2.0.1", - "dev": true, - "license": "MIT", + "node_modules/@smithy/types": { + "version": "2.12.0", + "license": "Apache-2.0", "dependencies": { - "balanced-match": "^1.0.0" + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" } }, - "node_modules/@ts-morph/common/node_modules/minimatch": { - "version": "9.0.5", - "dev": true, - "license": "ISC", + "node_modules/@smithy/url-parser": { + "version": "2.2.0", + "license": "Apache-2.0", "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "@smithy/querystring-parser": "^2.2.0", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" } }, - "node_modules/@ts-morph/common/node_modules/mkdirp": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "bin": { - "mkdirp": "dist/cjs/src/bin.js" + "node_modules/@smithy/util-base64": { + "version": "2.3.0", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=14.0.0" } }, - "node_modules/@tsconfig/node10": { - "version": "1.0.8", - "dev": true, - "license": "MIT" - }, - "node_modules/@tsconfig/node12": { - "version": "1.0.9", - "dev": true, - "license": "MIT" - }, - "node_modules/@tsconfig/node14": { - "version": "1.0.3", - "dev": true, - "license": "MIT" - }, - "node_modules/@tsconfig/node16": { - "version": "1.0.2", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/adm-zip": { - "version": "0.4.34", - "dev": true, - "license": "MIT", + "node_modules/@smithy/util-body-length-browser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-browser/-/util-body-length-browser-3.0.0.tgz", + "integrity": "sha512-cbjJs2A1mLYmqmyVl80uoLTJhAcfzMOyPgjwAYusWKMdLeNtzmMz9YxNl3/jRLoxSS3wkqkf0jwNdtXWtyEBaQ==", + "license": "Apache-2.0", "dependencies": { - "@types/node": "*" + "tslib": "^2.6.2" } }, - "node_modules/@types/async-lock": { - "version": "1.4.0", - "dev": true, - "license": "MIT" + "node_modules/@smithy/util-body-length-node": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-body-length-node/-/util-body-length-node-3.0.0.tgz", + "integrity": "sha512-Tj7pZ4bUloNUP6PzwhN7K386tmSmEET9QtQg0TgdNOnxhZvCssHji+oZTUIuzxECRfG8rdm2PMw2WCFs6eIYkA==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } }, - "node_modules/@types/body-parser": { - "version": "1.19.2", - "dev": true, - "license": "MIT", + "node_modules/@smithy/util-buffer-from": { + "version": "2.2.0", + "license": "Apache-2.0", "dependencies": { - "@types/connect": "*", - "@types/node": "*" + "@smithy/is-array-buffer": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" } }, - "node_modules/@types/bonjour": { - "version": "3.5.10", - "dev": true, - "license": "MIT", + "node_modules/@smithy/util-config-provider": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-config-provider/-/util-config-provider-3.0.0.tgz", + "integrity": "sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==", + "license": "Apache-2.0", "dependencies": { - "@types/node": "*" + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@types/bytes": { - "version": "3.1.1", - "dev": true, - "license": "MIT" + "node_modules/@smithy/util-defaults-mode-browser": { + "version": "3.0.25", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.25.tgz", + "integrity": "sha512-fRw7zymjIDt6XxIsLwfJfYUfbGoO9CmCJk6rjJ/X5cd20+d2Is7xjU5Kt/AiDt6hX8DAf5dztmfP5O82gR9emA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/property-provider": "^3.1.8", + "@smithy/smithy-client": "^3.4.2", + "@smithy/types": "^3.6.0", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">= 10.0.0" + } }, - "node_modules/@types/cacheable-request": { - "version": "6.0.2", - "license": "MIT", + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/abort-controller": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.1.6.tgz", + "integrity": "sha512-0XuhuHQlEqbNQZp7QxxrFTdVWdwxch4vjxYgfInF91hZFkPxf9QDrdQka0KfxFMPqLNzSw0b95uGTrLliQUavQ==", + "license": "Apache-2.0", "dependencies": { - "@types/http-cache-semantics": "*", - "@types/keyv": "*", - "@types/node": "*", - "@types/responselike": "*" + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@types/circular-dependency-plugin": { - "version": "5.0.8", - "dev": true, - "license": "MIT", + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/fetch-http-handler": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-4.0.0.tgz", + "integrity": "sha512-MLb1f5tbBO2X6K4lMEKJvxeLooyg7guq48C2zKr4qM7F2Gpkz4dc+hdSgu77pCJ76jVqFBjZczHYAs6dp15N+g==", + "license": "Apache-2.0", "dependencies": { - "@types/node": "*", - "webpack": "^5.1.0" + "@smithy/protocol-http": "^4.1.5", + "@smithy/querystring-builder": "^3.0.8", + "@smithy/types": "^3.6.0", + "@smithy/util-base64": "^3.0.0", + "tslib": "^2.6.2" } }, - "node_modules/@types/connect": { - "version": "3.4.35", - "dev": true, - "license": "MIT", + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", + "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", + "license": "Apache-2.0", "dependencies": { - "@types/node": "*" + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@types/connect-history-api-fallback": { - "version": "1.3.5", - "dev": true, - "license": "MIT", + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/middleware-endpoint": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.2.1.tgz", + "integrity": "sha512-wWO3xYmFm6WRW8VsEJ5oU6h7aosFXfszlz3Dj176pTij6o21oZnzkCLzShfmRaaCHDkBXWBdO0c4sQAvLFP6zA==", + "license": "Apache-2.0", "dependencies": { - "@types/express-serve-static-core": "*", - "@types/node": "*" + "@smithy/core": "^2.5.1", + "@smithy/middleware-serde": "^3.0.8", + "@smithy/node-config-provider": "^3.1.9", + "@smithy/shared-ini-file-loader": "^3.1.9", + "@smithy/types": "^3.6.0", + "@smithy/url-parser": "^3.0.8", + "@smithy/util-middleware": "^3.0.8", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@types/cross-spawn": { - "version": "6.0.6", - "dev": true, - "license": "MIT", + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/middleware-serde": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.8.tgz", + "integrity": "sha512-Xg2jK9Wc/1g/MBMP/EUn2DLspN8LNt+GMe7cgF+Ty3vl+Zvu+VeZU5nmhveU+H8pxyTsjrAkci8NqY6OuvZnjA==", + "license": "Apache-2.0", "dependencies": { - "@types/node": "*" + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@types/diff": { - "version": "5.0.7", - "dev": true, - "license": "MIT" + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/middleware-stack": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.8.tgz", + "integrity": "sha512-d7ZuwvYgp1+3682Nx0MD3D/HtkmZd49N3JUndYWQXfRZrYEnCWYc8BHcNmVsPAp9gKvlurdg/mubE6b/rPS9MA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } }, - "node_modules/@types/eslint": { - "version": "8.44.8", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/node-config-provider": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.9.tgz", + "integrity": "sha512-qRHoah49QJ71eemjuS/WhUXB+mpNtwHRWQr77J/m40ewBVVwvo52kYAmb7iuaECgGTTcYxHS4Wmewfwy++ueew==", + "license": "Apache-2.0", "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" + "@smithy/property-provider": "^3.1.8", + "@smithy/shared-ini-file-loader": "^3.1.9", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@types/estree": { - "version": "1.0.5", - "dev": true, - "license": "MIT" + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/node-http-handler": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.2.5.tgz", + "integrity": "sha512-PkOwPNeKdvX/jCpn0A8n9/TyoxjGZB8WVoJmm9YzsnAgggTj4CrjpRHlTQw7dlLZ320n1mY1y+nTRUDViKi/3w==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/abort-controller": "^3.1.6", + "@smithy/protocol-http": "^4.1.5", + "@smithy/querystring-builder": "^3.0.8", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } }, - "node_modules/@types/express": { - "version": "4.17.13", - "dev": true, - "license": "MIT", + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/property-provider": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.8.tgz", + "integrity": "sha512-ukNUyo6rHmusG64lmkjFeXemwYuKge1BJ8CtpVKmrxQxc6rhUX0vebcptFA9MmrGsnLhwnnqeH83VTU9hwOpjA==", + "license": "Apache-2.0", "dependencies": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.18", - "@types/qs": "*", - "@types/serve-static": "*" + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@types/express-serve-static-core": { - "version": "4.17.28", - "dev": true, - "license": "MIT", + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/protocol-http": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.1.5.tgz", + "integrity": "sha512-hsjtwpIemmCkm3ZV5fd/T0bPIugW1gJXwZ/hpuVubt2hEUApIoUTrf6qIdh9MAWlw0vjMrA1ztJLAwtNaZogvg==", + "license": "Apache-2.0", "dependencies": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*" + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@types/glob": { - "version": "8.1.0", - "dev": true, - "license": "MIT", + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/querystring-builder": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.8.tgz", + "integrity": "sha512-btYxGVqFUARbUrN6VhL9c3dnSviIwBYD9Rz1jHuN1hgh28Fpv2xjU1HeCeDJX68xctz7r4l1PBnFhGg1WBBPuA==", + "license": "Apache-2.0", "dependencies": { - "@types/minimatch": "^5.1.2", - "@types/node": "*" + "@smithy/types": "^3.6.0", + "@smithy/util-uri-escape": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/@types/glob/node_modules/@types/minimatch": { - "version": "5.1.2", + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/querystring-parser": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.8.tgz", + "integrity": "sha512-BtEk3FG7Ks64GAbt+JnKqwuobJNX8VmFLBsKIwWr1D60T426fGrV2L3YS5siOcUhhp6/Y6yhBw1PSPxA5p7qGg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/shared-ini-file-loader": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.9.tgz", + "integrity": "sha512-/+OsJRNtoRbtsX0UpSgWVxFZLsJHo/4sTr+kBg/J78sr7iC+tHeOvOJrS5hCpVQ6sWBbhWLp1UNiuMyZhE6pmA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/smithy-client": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.4.2.tgz", + "integrity": "sha512-dxw1BDxJiY9/zI3cBqfVrInij6ShjpV4fmGHesGZZUiP9OSE/EVfdwdRz0PgvkEvrZHpsj2htRaHJfftE8giBA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/core": "^2.5.1", + "@smithy/middleware-endpoint": "^3.2.1", + "@smithy/middleware-stack": "^3.0.8", + "@smithy/protocol-http": "^4.1.5", + "@smithy/types": "^3.6.0", + "@smithy/util-stream": "^3.2.1", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/url-parser": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.8.tgz", + "integrity": "sha512-4FdOhwpTW7jtSFWm7SpfLGKIBC9ZaTKG5nBF0wK24aoQKQyDIKUw3+KFWCQ9maMzrgTJIuOvOnsV2lLGW5XjTg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/querystring-parser": "^3.0.8", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/util-base64": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-base64/-/util-base64-3.0.0.tgz", + "integrity": "sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/util-buffer-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", + "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/is-array-buffer": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/util-hex-encoding": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-3.0.0.tgz", + "integrity": "sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/util-middleware": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.8.tgz", + "integrity": "sha512-p7iYAPaQjoeM+AKABpYWeDdtwQNxasr4aXQEA/OmbOaug9V0odRVDy3Wx4ci8soljE/JXQo+abV0qZpW8NX0yA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/util-stream": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.2.1.tgz", + "integrity": "sha512-R3ufuzJRxSJbE58K9AEnL/uSZyVdHzud9wLS8tIbXclxKzoe09CRohj2xV8wpx5tj7ZbiJaKYcutMm1eYgz/0A==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/fetch-http-handler": "^4.0.0", + "@smithy/node-http-handler": "^3.2.5", + "@smithy/types": "^3.6.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-hex-encoding": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/util-uri-escape": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-3.0.0.tgz", + "integrity": "sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-browser/node_modules/@smithy/util-utf8": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-3.0.0.tgz", + "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node": { + "version": "3.0.25", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.25.tgz", + "integrity": "sha512-H3BSZdBDiVZGzt8TG51Pd2FvFO0PAx/A0mJ0EH8a13KJ6iUCdYnw/Dk/MdC1kTd0eUuUGisDFaxXVXo4HHFL1g==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/config-resolver": "^3.0.10", + "@smithy/credential-provider-imds": "^3.2.5", + "@smithy/node-config-provider": "^3.1.9", + "@smithy/property-provider": "^3.1.8", + "@smithy/smithy-client": "^3.4.2", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/abort-controller": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.1.6.tgz", + "integrity": "sha512-0XuhuHQlEqbNQZp7QxxrFTdVWdwxch4vjxYgfInF91hZFkPxf9QDrdQka0KfxFMPqLNzSw0b95uGTrLliQUavQ==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/fetch-http-handler": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-4.0.0.tgz", + "integrity": "sha512-MLb1f5tbBO2X6K4lMEKJvxeLooyg7guq48C2zKr4qM7F2Gpkz4dc+hdSgu77pCJ76jVqFBjZczHYAs6dp15N+g==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/protocol-http": "^4.1.5", + "@smithy/querystring-builder": "^3.0.8", + "@smithy/types": "^3.6.0", + "@smithy/util-base64": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", + "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/middleware-endpoint": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.2.1.tgz", + "integrity": "sha512-wWO3xYmFm6WRW8VsEJ5oU6h7aosFXfszlz3Dj176pTij6o21oZnzkCLzShfmRaaCHDkBXWBdO0c4sQAvLFP6zA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/core": "^2.5.1", + "@smithy/middleware-serde": "^3.0.8", + "@smithy/node-config-provider": "^3.1.9", + "@smithy/shared-ini-file-loader": "^3.1.9", + "@smithy/types": "^3.6.0", + "@smithy/url-parser": "^3.0.8", + "@smithy/util-middleware": "^3.0.8", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/middleware-serde": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.8.tgz", + "integrity": "sha512-Xg2jK9Wc/1g/MBMP/EUn2DLspN8LNt+GMe7cgF+Ty3vl+Zvu+VeZU5nmhveU+H8pxyTsjrAkci8NqY6OuvZnjA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/middleware-stack": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.8.tgz", + "integrity": "sha512-d7ZuwvYgp1+3682Nx0MD3D/HtkmZd49N3JUndYWQXfRZrYEnCWYc8BHcNmVsPAp9gKvlurdg/mubE6b/rPS9MA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/node-config-provider": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.9.tgz", + "integrity": "sha512-qRHoah49QJ71eemjuS/WhUXB+mpNtwHRWQr77J/m40ewBVVwvo52kYAmb7iuaECgGTTcYxHS4Wmewfwy++ueew==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/property-provider": "^3.1.8", + "@smithy/shared-ini-file-loader": "^3.1.9", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/node-http-handler": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.2.5.tgz", + "integrity": "sha512-PkOwPNeKdvX/jCpn0A8n9/TyoxjGZB8WVoJmm9YzsnAgggTj4CrjpRHlTQw7dlLZ320n1mY1y+nTRUDViKi/3w==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/abort-controller": "^3.1.6", + "@smithy/protocol-http": "^4.1.5", + "@smithy/querystring-builder": "^3.0.8", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/property-provider": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.8.tgz", + "integrity": "sha512-ukNUyo6rHmusG64lmkjFeXemwYuKge1BJ8CtpVKmrxQxc6rhUX0vebcptFA9MmrGsnLhwnnqeH83VTU9hwOpjA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/protocol-http": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.1.5.tgz", + "integrity": "sha512-hsjtwpIemmCkm3ZV5fd/T0bPIugW1gJXwZ/hpuVubt2hEUApIoUTrf6qIdh9MAWlw0vjMrA1ztJLAwtNaZogvg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/querystring-builder": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.8.tgz", + "integrity": "sha512-btYxGVqFUARbUrN6VhL9c3dnSviIwBYD9Rz1jHuN1hgh28Fpv2xjU1HeCeDJX68xctz7r4l1PBnFhGg1WBBPuA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "@smithy/util-uri-escape": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/querystring-parser": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.8.tgz", + "integrity": "sha512-BtEk3FG7Ks64GAbt+JnKqwuobJNX8VmFLBsKIwWr1D60T426fGrV2L3YS5siOcUhhp6/Y6yhBw1PSPxA5p7qGg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/shared-ini-file-loader": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.9.tgz", + "integrity": "sha512-/+OsJRNtoRbtsX0UpSgWVxFZLsJHo/4sTr+kBg/J78sr7iC+tHeOvOJrS5hCpVQ6sWBbhWLp1UNiuMyZhE6pmA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/smithy-client": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.4.2.tgz", + "integrity": "sha512-dxw1BDxJiY9/zI3cBqfVrInij6ShjpV4fmGHesGZZUiP9OSE/EVfdwdRz0PgvkEvrZHpsj2htRaHJfftE8giBA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/core": "^2.5.1", + "@smithy/middleware-endpoint": "^3.2.1", + "@smithy/middleware-stack": "^3.0.8", + "@smithy/protocol-http": "^4.1.5", + "@smithy/types": "^3.6.0", + "@smithy/util-stream": "^3.2.1", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/url-parser": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.8.tgz", + "integrity": "sha512-4FdOhwpTW7jtSFWm7SpfLGKIBC9ZaTKG5nBF0wK24aoQKQyDIKUw3+KFWCQ9maMzrgTJIuOvOnsV2lLGW5XjTg==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/querystring-parser": "^3.0.8", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/util-base64": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-base64/-/util-base64-3.0.0.tgz", + "integrity": "sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/util-buffer-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", + "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/is-array-buffer": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/util-hex-encoding": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-3.0.0.tgz", + "integrity": "sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/util-middleware": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.8.tgz", + "integrity": "sha512-p7iYAPaQjoeM+AKABpYWeDdtwQNxasr4aXQEA/OmbOaug9V0odRVDy3Wx4ci8soljE/JXQo+abV0qZpW8NX0yA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/util-stream": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.2.1.tgz", + "integrity": "sha512-R3ufuzJRxSJbE58K9AEnL/uSZyVdHzud9wLS8tIbXclxKzoe09CRohj2xV8wpx5tj7ZbiJaKYcutMm1eYgz/0A==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/fetch-http-handler": "^4.0.0", + "@smithy/node-http-handler": "^3.2.5", + "@smithy/types": "^3.6.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-hex-encoding": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/util-uri-escape": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-3.0.0.tgz", + "integrity": "sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-defaults-mode-node/node_modules/@smithy/util-utf8": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-3.0.0.tgz", + "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-endpoints": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.1.4.tgz", + "integrity": "sha512-kPt8j4emm7rdMWQyL0F89o92q10gvCUa6sBkBtDJ7nV2+P7wpXczzOfoDJ49CKXe5CCqb8dc1W+ZdLlrKzSAnQ==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/node-config-provider": "^3.1.9", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-endpoints/node_modules/@smithy/node-config-provider": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.9.tgz", + "integrity": "sha512-qRHoah49QJ71eemjuS/WhUXB+mpNtwHRWQr77J/m40ewBVVwvo52kYAmb7iuaECgGTTcYxHS4Wmewfwy++ueew==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/property-provider": "^3.1.8", + "@smithy/shared-ini-file-loader": "^3.1.9", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-endpoints/node_modules/@smithy/property-provider": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.8.tgz", + "integrity": "sha512-ukNUyo6rHmusG64lmkjFeXemwYuKge1BJ8CtpVKmrxQxc6rhUX0vebcptFA9MmrGsnLhwnnqeH83VTU9hwOpjA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-endpoints/node_modules/@smithy/shared-ini-file-loader": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.9.tgz", + "integrity": "sha512-/+OsJRNtoRbtsX0UpSgWVxFZLsJHo/4sTr+kBg/J78sr7iC+tHeOvOJrS5hCpVQ6sWBbhWLp1UNiuMyZhE6pmA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-endpoints/node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-hex-encoding": { + "version": "2.2.0", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-middleware": { + "version": "2.2.0", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-retry": { + "version": "2.2.0", + "license": "Apache-2.0", + "dependencies": { + "@smithy/service-error-classification": "^2.1.5", + "@smithy/types": "^2.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@smithy/util-stream": { + "version": "2.2.0", + "license": "Apache-2.0", + "dependencies": { + "@smithy/fetch-http-handler": "^2.5.0", + "@smithy/node-http-handler": "^2.5.0", + "@smithy/types": "^2.12.0", + "@smithy/util-base64": "^2.3.0", + "@smithy/util-buffer-from": "^2.2.0", + "@smithy/util-hex-encoding": "^2.2.0", + "@smithy/util-utf8": "^2.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-uri-escape": { + "version": "2.2.0", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-utf8": { + "version": "2.3.0", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^2.2.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@smithy/util-waiter": { + "version": "3.1.2", + "license": "Apache-2.0", + "dependencies": { + "@smithy/abort-controller": "^3.1.1", + "@smithy/types": "^3.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-waiter/node_modules/@smithy/abort-controller": { + "version": "3.1.1", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.3.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@smithy/util-waiter/node_modules/@smithy/types": { + "version": "3.3.0", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@szmarczak/http-timer": { + "version": "4.0.6", + "license": "MIT", + "dependencies": { + "defer-to-connect": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@tootallnate/once": { + "version": "1.1.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@ts-morph/common": { + "version": "0.24.0", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-glob": "^3.3.2", + "minimatch": "^9.0.4", + "mkdirp": "^3.0.1", + "path-browserify": "^1.0.1" + } + }, + "node_modules/@ts-morph/common/node_modules/brace-expansion": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@ts-morph/common/node_modules/minimatch": { + "version": "9.0.5", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@ts-morph/common/node_modules/mkdirp": { + "version": "3.0.1", + "dev": true, + "license": "MIT", + "bin": { + "mkdirp": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.8", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.9", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/adm-zip": { + "version": "0.4.34", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/async-lock": { + "version": "1.4.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/body-parser": { + "version": "1.19.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/bonjour": { + "version": "3.5.10", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/bytes": { + "version": "3.1.1", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/cacheable-request": { + "version": "6.0.2", + "license": "MIT", + "dependencies": { + "@types/http-cache-semantics": "*", + "@types/keyv": "*", + "@types/node": "*", + "@types/responselike": "*" + } + }, + "node_modules/@types/circular-dependency-plugin": { + "version": "5.0.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "webpack": "^5.1.0" + } + }, + "node_modules/@types/connect": { + "version": "3.4.35", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect-history-api-fallback": { + "version": "1.3.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "node_modules/@types/cross-spawn": { + "version": "6.0.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/diff": { + "version": "5.0.7", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/eslint": { + "version": "8.44.8", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.5", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/express": { + "version": "4.17.13", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.18", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.17.28", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "node_modules/@types/glob": { + "version": "8.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/minimatch": "^5.1.2", + "@types/node": "*" + } + }, + "node_modules/@types/glob/node_modules/@types/minimatch": { + "version": "5.1.2", "dev": true, "license": "MIT" }, @@ -7025,4520 +7164,5177 @@ "dev": true, "license": "MIT" }, - "node_modules/@types/mime": { - "version": "1.3.2", + "node_modules/@types/mime": { + "version": "1.3.2", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/mime-types": { + "version": "2.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/minimatch": { + "version": "3.0.5", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/minimist": { + "version": "1.2.2", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/mocha": { + "version": "10.0.6", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "18.19.55", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.55.tgz", + "integrity": "sha512-zzw5Vw52205Zr/nmErSEkN5FLqXPuKX/k5d1D7RKHATGqU7y6YfX9QxZraUzUrFGqH6XzOzG196BC35ltJC4Cw==", + "license": "MIT", + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@types/node-fetch": { + "version": "2.6.9", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "form-data": "^4.0.0" + } + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.1", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/prettier": { + "version": "2.7.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/prismjs": { + "version": "1.26.3", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/proper-lockfile": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/@types/proper-lockfile/-/proper-lockfile-4.1.4.tgz", + "integrity": "sha512-uo2ABllncSqg9F1D4nugVl9v93RmjxF6LJzQLMLDdPaXCUIDPeOJ21Gbqi43xNKzBi/WQ0Q0dICqufzQbMjipQ==", + "dev": true, + "dependencies": { + "@types/retry": "*" + } + }, + "node_modules/@types/qs": { + "version": "6.9.7", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/range-parser": { + "version": "1.2.4", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/readline-sync": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/@types/readline-sync/-/readline-sync-1.4.8.tgz", + "integrity": "sha512-BL7xOf0yKLA6baAX6MMOnYkoflUyj/c7y3pqMRfU0va7XlwHAOTOIo4x55P/qLfMsuaYdJJKubToLqRVmRtRZA==", + "dev": true + }, + "node_modules/@types/responselike": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/retry": { + "version": "0.12.1", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/semver": { + "version": "7.5.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/serve-index": { + "version": "1.9.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/express": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.13.10", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "node_modules/@types/sinon": { + "version": "10.0.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@sinonjs/fake-timers": "^7.1.0" + } + }, + "node_modules/@types/sinon/node_modules/@sinonjs/fake-timers": { + "version": "7.1.2", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@types/sinonjs__fake-timers": { + "version": "8.1.2", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/sockjs": { + "version": "0.3.33", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/stream-buffers": { + "version": "3.0.7", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/tcp-port-used": { + "version": "1.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/tough-cookie": { + "version": "4.0.5", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/uuid": { + "version": "9.0.8", + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.8.tgz", + "integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==", "dev": true, "license": "MIT" }, - "node_modules/@types/mime-types": { - "version": "2.1.4", + "node_modules/@types/vscode": { + "version": "1.83.0", "dev": true, "license": "MIT" }, - "node_modules/@types/minimatch": { - "version": "3.0.5", + "node_modules/@types/vscode-webview": { + "version": "1.57.1", "dev": true, "license": "MIT" }, - "node_modules/@types/minimist": { - "version": "1.2.2", + "node_modules/@types/webidl-conversions": { + "version": "7.0.3", "dev": true, "license": "MIT" }, - "node_modules/@types/mocha": { - "version": "10.0.6", + "node_modules/@types/webpack-env": { + "version": "1.18.5", + "resolved": "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.18.5.tgz", + "integrity": "sha512-wz7kjjRRj8/Lty4B+Kr0LN6Ypc/3SymeCCGSbaXp2leH0ZVg/PriNiOwNj4bD4uphI7A8NXS4b6Gl373sfO5mA==", + "dev": true + }, + "node_modules/@types/whatwg-url": { + "version": "11.0.4", "dev": true, - "license": "MIT" + "license": "MIT", + "dependencies": { + "@types/webidl-conversions": "*" + } }, - "node_modules/@types/node": { - "version": "18.19.55", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.55.tgz", - "integrity": "sha512-zzw5Vw52205Zr/nmErSEkN5FLqXPuKX/k5d1D7RKHATGqU7y6YfX9QxZraUzUrFGqH6XzOzG196BC35ltJC4Cw==", + "node_modules/@types/ws": { + "version": "8.5.5", + "dev": true, "license": "MIT", "dependencies": { - "undici-types": "~5.26.4" + "@types/node": "*" } }, - "node_modules/@types/node-fetch": { - "version": "2.6.9", + "node_modules/@types/xml2js": { + "version": "0.4.11", "dev": true, "license": "MIT", "dependencies": { - "@types/node": "*", - "form-data": "^4.0.0" + "@types/node": "*" } }, - "node_modules/@types/normalize-package-data": { - "version": "2.4.1", + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "7.14.1", "dev": true, - "license": "MIT" + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "7.14.1", + "@typescript-eslint/type-utils": "7.14.1", + "@typescript-eslint/utils": "7.14.1", + "@typescript-eslint/visitor-keys": "7.14.1", + "graphemer": "^1.4.0", + "ignore": "^5.3.1", + "natural-compare": "^1.4.0", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^7.0.0", + "eslint": "^8.56.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } }, - "node_modules/@types/prettier": { - "version": "2.7.0", + "node_modules/@typescript-eslint/parser": { + "version": "7.14.1", "dev": true, - "license": "MIT" + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/scope-manager": "7.14.1", + "@typescript-eslint/types": "7.14.1", + "@typescript-eslint/typescript-estree": "7.14.1", + "@typescript-eslint/visitor-keys": "7.14.1", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.56.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } }, - "node_modules/@types/prismjs": { - "version": "1.26.3", + "node_modules/@typescript-eslint/scope-manager": { + "version": "7.14.1", "dev": true, - "license": "MIT" + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "7.14.1", + "@typescript-eslint/visitor-keys": "7.14.1" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } }, - "node_modules/@types/proper-lockfile": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/@types/proper-lockfile/-/proper-lockfile-4.1.4.tgz", - "integrity": "sha512-uo2ABllncSqg9F1D4nugVl9v93RmjxF6LJzQLMLDdPaXCUIDPeOJ21Gbqi43xNKzBi/WQ0Q0dICqufzQbMjipQ==", + "node_modules/@typescript-eslint/type-utils": { + "version": "7.14.1", "dev": true, + "license": "MIT", "dependencies": { - "@types/retry": "*" + "@typescript-eslint/typescript-estree": "7.14.1", + "@typescript-eslint/utils": "7.14.1", + "debug": "^4.3.4", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.56.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@types/qs": { - "version": "6.9.7", + "node_modules/@typescript-eslint/types": { + "version": "7.14.1", "dev": true, - "license": "MIT" + "license": "MIT", + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } }, - "node_modules/@types/range-parser": { - "version": "1.2.4", + "node_modules/@typescript-eslint/typescript-estree": { + "version": "7.14.1", "dev": true, - "license": "MIT" + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/types": "7.14.1", + "@typescript-eslint/visitor-keys": "7.14.1", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } }, - "node_modules/@types/readline-sync": { - "version": "1.4.8", - "resolved": "https://registry.npmjs.org/@types/readline-sync/-/readline-sync-1.4.8.tgz", - "integrity": "sha512-BL7xOf0yKLA6baAX6MMOnYkoflUyj/c7y3pqMRfU0va7XlwHAOTOIo4x55P/qLfMsuaYdJJKubToLqRVmRtRZA==", - "dev": true + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } }, - "node_modules/@types/responselike": { - "version": "1.0.0", + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.5", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "7.14.1", + "dev": true, "license": "MIT", "dependencies": { - "@types/node": "*" + "@eslint-community/eslint-utils": "^4.4.0", + "@typescript-eslint/scope-manager": "7.14.1", + "@typescript-eslint/types": "7.14.1", + "@typescript-eslint/typescript-estree": "7.14.1" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.56.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "7.14.1", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "7.14.1", + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@types/retry": { - "version": "0.12.1", + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "dev": true, + "license": "ISC" + }, + "node_modules/@vscode/codicons": { + "version": "0.0.33", "dev": true, + "license": "CC-BY-4.0" + }, + "node_modules/@vscode/debugprotocol": { + "version": "1.64.0", "license": "MIT" }, - "node_modules/@types/semver": { - "version": "7.5.0", - "dev": true, + "node_modules/@vscode/l10n": { + "version": "0.0.13", "license": "MIT" }, - "node_modules/@types/serve-index": { - "version": "1.9.1", + "node_modules/@vscode/test-electron": { + "version": "2.3.8", "dev": true, "license": "MIT", "dependencies": { - "@types/express": "*" + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "jszip": "^3.10.1", + "semver": "^7.5.2" + }, + "engines": { + "node": ">=16" } }, - "node_modules/@types/serve-static": { - "version": "1.13.10", + "node_modules/@vscode/test-web": { + "version": "0.0.54", "dev": true, "license": "MIT", "dependencies": { - "@types/mime": "^1", - "@types/node": "*" + "@koa/cors": "^5.0.0", + "@koa/router": "^12.0.1", + "@playwright/browser-chromium": "^1.43.1", + "gunzip-maybe": "^1.4.2", + "http-proxy-agent": "^7.0.2", + "https-proxy-agent": "^7.0.4", + "koa": "^2.15.3", + "koa-morgan": "^1.0.1", + "koa-mount": "^4.0.0", + "koa-static": "^5.0.0", + "minimist": "^1.2.8", + "playwright": "^1.43.1", + "tar-fs": "^3.0.5", + "vscode-uri": "^3.0.8" + }, + "bin": { + "vscode-test-web": "out/index.js" + }, + "engines": { + "node": ">=16" } }, - "node_modules/@types/sinon": { - "version": "10.0.5", + "node_modules/@vscode/test-web/node_modules/agent-base": { + "version": "7.1.1", "dev": true, "license": "MIT", "dependencies": { - "@sinonjs/fake-timers": "^7.1.0" + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" } }, - "node_modules/@types/sinon/node_modules/@sinonjs/fake-timers": { - "version": "7.1.2", + "node_modules/@vscode/test-web/node_modules/http-proxy-agent": { + "version": "7.0.2", "dev": true, - "license": "BSD-3-Clause", + "license": "MIT", "dependencies": { - "@sinonjs/commons": "^1.7.0" + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" } }, - "node_modules/@types/sinonjs__fake-timers": { - "version": "8.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/sockjs": { - "version": "0.3.33", + "node_modules/@vscode/test-web/node_modules/https-proxy-agent": { + "version": "7.0.4", "dev": true, "license": "MIT", "dependencies": { - "@types/node": "*" + "agent-base": "^7.0.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" } }, - "node_modules/@types/stream-buffers": { - "version": "3.0.7", + "node_modules/@vscode/test-web/node_modules/tar-fs": { + "version": "3.0.6", "dev": true, "license": "MIT", "dependencies": { - "@types/node": "*" + "pump": "^3.0.0", + "tar-stream": "^3.1.5" + }, + "optionalDependencies": { + "bare-fs": "^2.1.1", + "bare-path": "^2.1.0" } }, - "node_modules/@types/tcp-port-used": { - "version": "1.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/tough-cookie": { - "version": "4.0.5", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/uuid": { - "version": "9.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/vscode": { - "version": "1.83.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/vscode-webview": { - "version": "1.57.1", + "node_modules/@vscode/test-web/node_modules/tar-stream": { + "version": "3.1.7", "dev": true, - "license": "MIT" + "license": "MIT", + "dependencies": { + "b4a": "^1.6.4", + "fast-fifo": "^1.2.0", + "streamx": "^2.15.0" + } }, - "node_modules/@types/webidl-conversions": { - "version": "7.0.3", + "node_modules/@vscode/test-web/node_modules/vscode-uri": { + "version": "3.0.8", "dev": true, "license": "MIT" }, - "node_modules/@types/webpack-env": { - "version": "1.18.5", - "resolved": "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.18.5.tgz", - "integrity": "sha512-wz7kjjRRj8/Lty4B+Kr0LN6Ypc/3SymeCCGSbaXp2leH0ZVg/PriNiOwNj4bD4uphI7A8NXS4b6Gl373sfO5mA==", - "dev": true - }, - "node_modules/@types/whatwg-url": { - "version": "11.0.4", + "node_modules/@vscode/vsce": { + "version": "2.19.0", "dev": true, "license": "MIT", "dependencies": { - "@types/webidl-conversions": "*" + "azure-devops-node-api": "^11.0.1", + "chalk": "^2.4.2", + "cheerio": "^1.0.0-rc.9", + "commander": "^6.1.0", + "glob": "^7.0.6", + "hosted-git-info": "^4.0.2", + "jsonc-parser": "^3.2.0", + "leven": "^3.1.0", + "markdown-it": "^12.3.2", + "mime": "^1.3.4", + "minimatch": "^3.0.3", + "parse-semver": "^1.1.1", + "read": "^1.0.7", + "semver": "^5.1.0", + "tmp": "^0.2.1", + "typed-rest-client": "^1.8.4", + "url-join": "^4.0.1", + "xml2js": "^0.5.0", + "yauzl": "^2.3.1", + "yazl": "^2.2.2" + }, + "bin": { + "vsce": "vsce" + }, + "engines": { + "node": ">= 14" + }, + "optionalDependencies": { + "keytar": "^7.7.0" } }, - "node_modules/@types/ws": { - "version": "8.5.5", + "node_modules/@vscode/vsce/node_modules/ansi-styles": { + "version": "3.2.1", "dev": true, "license": "MIT", "dependencies": { - "@types/node": "*" + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/@types/xml2js": { - "version": "0.4.11", + "node_modules/@vscode/vsce/node_modules/chalk": { + "version": "2.4.2", "dev": true, "license": "MIT", "dependencies": { - "@types/node": "*" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "7.14.1", + "node_modules/@vscode/vsce/node_modules/color-convert": { + "version": "1.9.3", "dev": true, "license": "MIT", "dependencies": { - "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "7.14.1", - "@typescript-eslint/type-utils": "7.14.1", - "@typescript-eslint/utils": "7.14.1", - "@typescript-eslint/visitor-keys": "7.14.1", - "graphemer": "^1.4.0", - "ignore": "^5.3.1", - "natural-compare": "^1.4.0", - "ts-api-utils": "^1.3.0" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^7.0.0", - "eslint": "^8.56.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "color-name": "1.1.3" } }, - "node_modules/@typescript-eslint/parser": { - "version": "7.14.1", + "node_modules/@vscode/vsce/node_modules/color-name": { + "version": "1.1.3", + "dev": true, + "license": "MIT" + }, + "node_modules/@vscode/vsce/node_modules/entities": { + "version": "2.1.0", "dev": true, "license": "BSD-2-Clause", - "dependencies": { - "@typescript-eslint/scope-manager": "7.14.1", - "@typescript-eslint/types": "7.14.1", - "@typescript-eslint/typescript-estree": "7.14.1", - "@typescript-eslint/visitor-keys": "7.14.1", - "debug": "^4.3.4" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.56.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "7.14.1", + "node_modules/@vscode/vsce/node_modules/escape-string-regexp": { + "version": "1.0.5", "dev": true, "license": "MIT", - "dependencies": { - "@typescript-eslint/types": "7.14.1", - "@typescript-eslint/visitor-keys": "7.14.1" - }, "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=0.8.0" } }, - "node_modules/@typescript-eslint/type-utils": { - "version": "7.14.1", + "node_modules/@vscode/vsce/node_modules/glob": { + "version": "7.2.3", "dev": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "@typescript-eslint/typescript-estree": "7.14.1", - "@typescript-eslint/utils": "7.14.1", - "debug": "^4.3.4", - "ts-api-utils": "^1.3.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": "^18.18.0 || >=20.0.0" + "node": "*" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.56.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@typescript-eslint/types": { - "version": "7.14.1", + "node_modules/@vscode/vsce/node_modules/has-flag": { + "version": "3.0.0", "dev": true, "license": "MIT", "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=4" } }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "7.14.1", + "node_modules/@vscode/vsce/node_modules/linkify-it": { + "version": "3.0.3", "dev": true, - "license": "BSD-2-Clause", + "license": "MIT", "dependencies": { - "@typescript-eslint/types": "7.14.1", - "@typescript-eslint/visitor-keys": "7.14.1", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "minimatch": "^9.0.4", - "semver": "^7.6.0", - "ts-api-utils": "^1.3.0" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "uc.micro": "^1.0.1" } }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { - "version": "2.0.1", + "node_modules/@vscode/vsce/node_modules/markdown-it": { + "version": "12.3.2", "dev": true, "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" + "argparse": "^2.0.1", + "entities": "~2.1.0", + "linkify-it": "^3.0.1", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" + }, + "bin": { + "markdown-it": "bin/markdown-it.js" } }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { - "version": "9.0.5", + "node_modules/@vscode/vsce/node_modules/semver": { + "version": "5.7.2", "dev": true, "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@vscode/vsce/node_modules/supports-color": { + "version": "5.5.0", + "dev": true, + "license": "MIT", "dependencies": { - "brace-expansion": "^2.0.1" + "has-flag": "^3.0.0" }, "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=4" } }, - "node_modules/@typescript-eslint/utils": { - "version": "7.14.1", + "node_modules/@vscode/vsce/node_modules/xml2js": { + "version": "0.5.0", "dev": true, "license": "MIT", "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", - "@typescript-eslint/scope-manager": "7.14.1", - "@typescript-eslint/types": "7.14.1", - "@typescript-eslint/typescript-estree": "7.14.1" + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" }, "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=4.0.0" + } + }, + "node_modules/@vue/compiler-core": { + "version": "3.3.4", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.21.3", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "source-map-js": "^1.0.2" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.3.4", + "license": "MIT", + "dependencies": { + "@vue/compiler-core": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.3.4", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.15", + "@vue/compiler-core": "3.3.4", + "@vue/compiler-dom": "3.3.4", + "@vue/compiler-ssr": "3.3.4", + "@vue/reactivity-transform": "3.3.4", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.0", + "postcss": "^8.1.10", + "source-map-js": "^1.0.2" + } + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.3.4", + "license": "MIT", + "dependencies": { + "@vue/compiler-dom": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "node_modules/@vue/reactivity": { + "version": "3.3.4", + "license": "MIT", + "dependencies": { + "@vue/shared": "3.3.4" + } + }, + "node_modules/@vue/reactivity-transform": { + "version": "3.3.4", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.15", + "@vue/compiler-core": "3.3.4", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.0" + } + }, + "node_modules/@vue/runtime-core": { + "version": "3.3.4", + "license": "MIT", + "dependencies": { + "@vue/reactivity": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.3.4", + "license": "MIT", + "dependencies": { + "@vue/runtime-core": "3.3.4", + "@vue/shared": "3.3.4", + "csstype": "^3.1.1" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.3.4", + "license": "MIT", + "dependencies": { + "@vue/compiler-ssr": "3.3.4", + "@vue/shared": "3.3.4" }, "peerDependencies": { - "eslint": "^8.56.0" + "vue": "3.3.4" } }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "7.14.1", + "node_modules/@vue/shared": { + "version": "3.3.4", + "license": "MIT" + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.12.1", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "7.14.1", - "eslint-visitor-keys": "^3.4.3" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", "dev": true, - "license": "ISC" + "license": "MIT" }, - "node_modules/@vscode/codicons": { - "version": "0.0.33", + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", "dev": true, - "license": "CC-BY-4.0" + "license": "MIT" }, - "node_modules/@vscode/debugprotocol": { - "version": "1.64.0", + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.12.1", + "dev": true, "license": "MIT" }, - "node_modules/@vscode/l10n": { - "version": "0.0.13", + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "dev": true, + "license": "MIT", + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "dev": true, "license": "MIT" }, - "node_modules/@vscode/test-electron": { - "version": "2.3.8", + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.12.1", "dev": true, "license": "MIT", "dependencies": { - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "^5.0.0", - "jszip": "^3.10.1", - "semver": "^7.5.2" - }, - "engines": { - "node": ">=16" + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.12.1" } }, - "node_modules/@vscode/test-web": { - "version": "0.0.54", + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", "dev": true, "license": "MIT", "dependencies": { - "@koa/cors": "^5.0.0", - "@koa/router": "^12.0.1", - "@playwright/browser-chromium": "^1.43.1", - "gunzip-maybe": "^1.4.2", - "http-proxy-agent": "^7.0.2", - "https-proxy-agent": "^7.0.4", - "koa": "^2.15.3", - "koa-morgan": "^1.0.1", - "koa-mount": "^4.0.0", - "koa-static": "^5.0.0", - "minimist": "^1.2.8", - "playwright": "^1.43.1", - "tar-fs": "^3.0.5", - "vscode-uri": "^3.0.8" - }, - "bin": { - "vscode-test-web": "out/index.js" - }, - "engines": { - "node": ">=16" + "@xtuc/ieee754": "^1.2.0" } }, - "node_modules/@vscode/test-web/node_modules/agent-base": { - "version": "7.1.1", + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", "dev": true, - "license": "MIT", + "license": "Apache-2.0", "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" + "@xtuc/long": "4.2.2" } }, - "node_modules/@vscode/test-web/node_modules/http-proxy-agent": { - "version": "7.0.2", + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "dev": true, + "license": "MIT" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.12.1", "dev": true, "license": "MIT", "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-opt": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1", + "@webassemblyjs/wast-printer": "1.12.1" } }, - "node_modules/@vscode/test-web/node_modules/https-proxy-agent": { - "version": "7.0.4", + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.12.1", "dev": true, "license": "MIT", "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, - "node_modules/@vscode/test-web/node_modules/tar-fs": { - "version": "3.0.6", + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.12.1", "dev": true, "license": "MIT", "dependencies": { - "pump": "^3.0.0", - "tar-stream": "^3.1.5" - }, - "optionalDependencies": { - "bare-fs": "^2.1.1", - "bare-path": "^2.1.0" + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1" } }, - "node_modules/@vscode/test-web/node_modules/tar-stream": { - "version": "3.1.7", + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.12.1", "dev": true, "license": "MIT", "dependencies": { - "b4a": "^1.6.4", - "fast-fifo": "^1.2.0", - "streamx": "^2.15.0" + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, - "node_modules/@vscode/test-web/node_modules/vscode-uri": { - "version": "3.0.8", + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.12.1", "dev": true, - "license": "MIT" + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@xtuc/long": "4.2.2" + } }, - "node_modules/@vscode/vsce": { - "version": "2.19.0", + "node_modules/@webpack-cli/configtest": { + "version": "2.1.1", "dev": true, "license": "MIT", - "dependencies": { - "azure-devops-node-api": "^11.0.1", - "chalk": "^2.4.2", - "cheerio": "^1.0.0-rc.9", - "commander": "^6.1.0", - "glob": "^7.0.6", - "hosted-git-info": "^4.0.2", - "jsonc-parser": "^3.2.0", - "leven": "^3.1.0", - "markdown-it": "^12.3.2", - "mime": "^1.3.4", - "minimatch": "^3.0.3", - "parse-semver": "^1.1.1", - "read": "^1.0.7", - "semver": "^5.1.0", - "tmp": "^0.2.1", - "typed-rest-client": "^1.8.4", - "url-join": "^4.0.1", - "xml2js": "^0.5.0", - "yauzl": "^2.3.1", - "yazl": "^2.2.2" - }, - "bin": { - "vsce": "vsce" - }, "engines": { - "node": ">= 14" + "node": ">=14.15.0" }, - "optionalDependencies": { - "keytar": "^7.7.0" + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" } }, - "node_modules/@vscode/vsce/node_modules/ansi-styles": { - "version": "3.2.1", + "node_modules/@webpack-cli/info": { + "version": "2.0.2", "dev": true, "license": "MIT", - "dependencies": { - "color-convert": "^1.9.0" - }, "engines": { - "node": ">=4" + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" } }, - "node_modules/@vscode/vsce/node_modules/chalk": { - "version": "2.4.2", + "node_modules/@webpack-cli/serve": { + "version": "2.0.5", "dev": true, "license": "MIT", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, "engines": { - "node": ">=4" + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + }, + "peerDependenciesMeta": { + "webpack-dev-server": { + "optional": true + } } }, - "node_modules/@vscode/vsce/node_modules/color-convert": { - "version": "1.9.3", + "node_modules/@xmldom/xmldom": { + "version": "0.7.8", "dev": true, "license": "MIT", - "dependencies": { - "color-name": "1.1.3" + "engines": { + "node": ">=10.0.0" } }, - "node_modules/@vscode/vsce/node_modules/color-name": { - "version": "1.1.3", + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", "dev": true, - "license": "MIT" + "license": "BSD-3-Clause" }, - "node_modules/@vscode/vsce/node_modules/entities": { - "version": "2.1.0", + "node_modules/@xtuc/long": { + "version": "4.2.2", "dev": true, - "license": "BSD-2-Clause", - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } + "license": "Apache-2.0" }, - "node_modules/@vscode/vsce/node_modules/escape-string-regexp": { - "version": "1.0.5", - "dev": true, - "license": "MIT", + "node_modules/@zip.js/zip.js": { + "version": "2.7.41", + "resolved": "https://registry.npmjs.org/@zip.js/zip.js/-/zip.js-2.7.41.tgz", + "integrity": "sha512-EMxPWXlEqqvsK9jxPmNvEShrIXP2LYTdQnEfsBH6OQCnlZRVo/dJIgtzbKvtK9A8PBTDQdxwxulj+QKplmW2Xg==", "engines": { - "node": ">=0.8.0" + "bun": ">=0.7.0", + "deno": ">=1.0.0", + "node": ">=16.5.0" } }, - "node_modules/@vscode/vsce/node_modules/glob": { - "version": "7.2.3", + "node_modules/a-sync-waterfall": { + "version": "1.0.1", "dev": true, - "license": "ISC", + "license": "MIT" + }, + "node_modules/accepts": { + "version": "1.3.8", + "dev": true, + "license": "MIT", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "mime-types": "~2.1.34", + "negotiator": "0.6.3" }, "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">= 0.6" } }, - "node_modules/@vscode/vsce/node_modules/has-flag": { - "version": "3.0.0", + "node_modules/acorn": { + "version": "8.12.0", "dev": true, "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, "engines": { - "node": ">=4" + "node": ">=0.4.0" } }, - "node_modules/@vscode/vsce/node_modules/linkify-it": { - "version": "3.0.3", + "node_modules/acorn-import-attributes": { + "version": "1.9.5", "dev": true, "license": "MIT", - "dependencies": { - "uc.micro": "^1.0.1" + "peerDependencies": { + "acorn": "^8" } }, - "node_modules/@vscode/vsce/node_modules/markdown-it": { - "version": "12.3.2", + "node_modules/acorn-jsx": { + "version": "5.3.2", "dev": true, "license": "MIT", - "dependencies": { - "argparse": "^2.0.1", - "entities": "~2.1.0", - "linkify-it": "^3.0.1", - "mdurl": "^1.0.1", - "uc.micro": "^1.0.5" - }, - "bin": { - "markdown-it": "bin/markdown-it.js" + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/@vscode/vsce/node_modules/semver": { - "version": "5.7.2", + "node_modules/acorn-walk": { + "version": "8.2.0", "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver" + "license": "MIT", + "engines": { + "node": ">=0.4.0" } }, - "node_modules/@vscode/vsce/node_modules/supports-color": { - "version": "5.5.0", - "dev": true, + "node_modules/adm-zip": { + "version": "0.5.10", "license": "MIT", - "dependencies": { - "has-flag": "^3.0.0" - }, "engines": { - "node": ">=4" + "node": ">=6.0" } }, - "node_modules/@vscode/vsce/node_modules/xml2js": { - "version": "0.5.0", + "node_modules/agent-base": { + "version": "6.0.2", "dev": true, "license": "MIT", "dependencies": { - "sax": ">=0.6.0", - "xmlbuilder": "~11.0.0" + "debug": "4" }, "engines": { - "node": ">=4.0.0" + "node": ">= 6.0.0" } }, - "node_modules/@vue/compiler-core": { - "version": "3.3.4", + "node_modules/ajv": { + "version": "6.12.6", + "dev": true, "license": "MIT", "dependencies": { - "@babel/parser": "^7.21.3", - "@vue/shared": "3.3.4", - "estree-walker": "^2.0.2", - "source-map-js": "^1.0.2" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/@vue/compiler-dom": { - "version": "3.3.4", + "node_modules/ajv-formats": { + "version": "2.1.1", + "dev": true, "license": "MIT", "dependencies": { - "@vue/compiler-core": "3.3.4", - "@vue/shared": "3.3.4" + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } } }, - "node_modules/@vue/compiler-sfc": { - "version": "3.3.4", + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.8.2", + "dev": true, "license": "MIT", "dependencies": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.4", - "@vue/compiler-dom": "3.3.4", - "@vue/compiler-ssr": "3.3.4", - "@vue/reactivity-transform": "3.3.4", - "@vue/shared": "3.3.4", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.0", - "postcss": "^8.1.10", - "source-map-js": "^1.0.2" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/@vue/compiler-ssr": { - "version": "3.3.4", + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "dev": true, "license": "MIT", - "dependencies": { - "@vue/compiler-dom": "3.3.4", - "@vue/shared": "3.3.4" + "peerDependencies": { + "ajv": "^6.9.1" } }, - "node_modules/@vue/reactivity": { - "version": "3.3.4", + "node_modules/amazon-q-vscode": { + "resolved": "packages/amazonq", + "link": true + }, + "node_modules/amazon-states-language-service": { + "version": "1.11.0", "license": "MIT", "dependencies": { - "@vue/shared": "3.3.4" + "js-yaml": "^4.1.0", + "vscode-json-languageservice": "5.3.5", + "vscode-languageserver": "^8.1.0", + "vscode-languageserver-textdocument": "^1.0.0", + "vscode-languageserver-types": "^3.15.1", + "yaml-language-server": "0.15.0" } }, - "node_modules/@vue/reactivity-transform": { - "version": "3.3.4", + "node_modules/amazon-states-language-service/node_modules/vscode-jsonrpc": { + "version": "8.1.0", "license": "MIT", - "dependencies": { - "@babel/parser": "^7.20.15", - "@vue/compiler-core": "3.3.4", - "@vue/shared": "3.3.4", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.0" + "engines": { + "node": ">=14.0.0" } }, - "node_modules/@vue/runtime-core": { - "version": "3.3.4", + "node_modules/amazon-states-language-service/node_modules/vscode-languageserver": { + "version": "8.1.0", "license": "MIT", "dependencies": { - "@vue/reactivity": "3.3.4", - "@vue/shared": "3.3.4" + "vscode-languageserver-protocol": "3.17.3" + }, + "bin": { + "installServerIntoExtension": "bin/installServerIntoExtension" } }, - "node_modules/@vue/runtime-dom": { - "version": "3.3.4", + "node_modules/amazon-states-language-service/node_modules/vscode-languageserver-protocol": { + "version": "3.17.3", "license": "MIT", "dependencies": { - "@vue/runtime-core": "3.3.4", - "@vue/shared": "3.3.4", - "csstype": "^3.1.1" + "vscode-jsonrpc": "8.1.0", + "vscode-languageserver-types": "3.17.3" } }, - "node_modules/@vue/server-renderer": { - "version": "3.3.4", + "node_modules/ansi-colors": { + "version": "4.1.1", "license": "MIT", - "dependencies": { - "@vue/compiler-ssr": "3.3.4", - "@vue/shared": "3.3.4" - }, - "peerDependencies": { - "vue": "3.3.4" + "engines": { + "node": ">=6" } }, - "node_modules/@vue/shared": { - "version": "3.3.4", - "license": "MIT" - }, - "node_modules/@webassemblyjs/ast": { - "version": "1.12.1", - "dev": true, + "node_modules/ansi-gray": { + "version": "0.1.1", "license": "MIT", "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "ansi-wrap": "0.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "dev": true, - "license": "MIT" - }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", + "node_modules/ansi-html-community": { + "version": "0.0.8", "dev": true, - "license": "MIT" + "engines": [ + "node >= 0.8.0" + ], + "license": "Apache-2.0", + "bin": { + "ansi-html": "bin/ansi-html" + } }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.12.1", - "dev": true, - "license": "MIT" + "node_modules/ansi-regex": { + "version": "4.1.1", + "license": "MIT", + "engines": { + "node": ">=6" + } }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "dev": true, + "node_modules/ansi-styles": { + "version": "4.3.0", "license": "MIT", "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@xtuc/long": "4.2.2" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ansi-wrap": { + "version": "0.1.0", + "license": "MIT", + "engines": { + "node": ">=0.10.0" } }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", + "node_modules/any-promise": { + "version": "1.3.0", "dev": true, "license": "MIT" }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.12.1", + "node_modules/anymatch": { + "version": "3.1.2", "dev": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.12.1" + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" } }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", + "node_modules/arg": { + "version": "4.1.3", "dev": true, - "license": "MIT", - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } + "license": "MIT" }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@xtuc/long": "4.2.2" - } + "node_modules/argparse": { + "version": "2.0.1", + "license": "Python-2.0" }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", + "node_modules/array-flatten": { + "version": "2.1.2", "dev": true, "license": "MIT" }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.12.1", + "node_modules/array-union": { + "version": "2.1.0", "dev": true, "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.12.1", - "@webassemblyjs/wasm-gen": "1.12.1", - "@webassemblyjs/wasm-opt": "1.12.1", - "@webassemblyjs/wasm-parser": "1.12.1", - "@webassemblyjs/wast-printer": "1.12.1" + "engines": { + "node": ">=8" } }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.12.1", + "node_modules/asap": { + "version": "2.0.6", "dev": true, - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" - } + "license": "MIT" }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.12.1", - "dev": true, + "node_modules/asn1.js": { + "version": "5.4.1", "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/wasm-gen": "1.12.1", - "@webassemblyjs/wasm-parser": "1.12.1" + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" } }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.12.1", + "node_modules/asn1.js/node_modules/bn.js": { + "version": "4.12.0", + "license": "MIT" + }, + "node_modules/assert": { + "version": "2.1.0", "dev": true, "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "call-bind": "^1.0.2", + "is-nan": "^1.3.2", + "object-is": "^1.1.5", + "object.assign": "^4.1.4", + "util": "^0.12.5" } }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.12.1", + "node_modules/ast-types": { + "version": "0.9.14", "dev": true, "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@xtuc/long": "4.2.2" + "engines": { + "node": ">= 0.8" } }, - "node_modules/@webpack-cli/configtest": { - "version": "2.1.1", + "node_modules/async": { + "version": "3.2.5", + "license": "MIT" + }, + "node_modules/async-lock": { + "version": "1.4.0", + "license": "MIT" + }, + "node_modules/asynckit": { + "version": "0.4.0", "dev": true, + "license": "MIT" + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", "license": "MIT", "engines": { - "node": ">=14.15.0" + "node": ">= 0.4" }, - "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@webpack-cli/info": { - "version": "2.0.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14.15.0" + "node_modules/aws-core-vscode": { + "resolved": "packages/core", + "link": true + }, + "node_modules/aws-sdk": { + "version": "2.1384.0", + "license": "Apache-2.0", + "dependencies": { + "buffer": "4.9.2", + "events": "1.1.1", + "ieee754": "1.1.13", + "jmespath": "0.16.0", + "querystring": "0.2.0", + "sax": "1.2.1", + "url": "0.10.3", + "util": "^0.12.4", + "uuid": "8.0.0", + "xml2js": "0.5.0" }, - "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" + "engines": { + "node": ">= 10.0.0" } }, - "node_modules/@webpack-cli/serve": { - "version": "2.0.5", - "dev": true, + "node_modules/aws-sdk/node_modules/uuid": { + "version": "8.0.0", "license": "MIT", - "engines": { - "node": ">=14.15.0" - }, - "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" - }, - "peerDependenciesMeta": { - "webpack-dev-server": { - "optional": true - } + "bin": { + "uuid": "dist/bin/uuid" } }, - "node_modules/@xmldom/xmldom": { - "version": "0.7.8", - "dev": true, + "node_modules/aws-sdk/node_modules/xml2js": { + "version": "0.5.0", "license": "MIT", + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, "engines": { - "node": ">=10.0.0" + "node": ">=4.0.0" } }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "dev": true, - "license": "BSD-3-Clause" - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "dev": true, - "license": "Apache-2.0" - }, - "node_modules/@zip.js/zip.js": { - "version": "2.7.41", - "resolved": "https://registry.npmjs.org/@zip.js/zip.js/-/zip.js-2.7.41.tgz", - "integrity": "sha512-EMxPWXlEqqvsK9jxPmNvEShrIXP2LYTdQnEfsBH6OQCnlZRVo/dJIgtzbKvtK9A8PBTDQdxwxulj+QKplmW2Xg==", - "engines": { - "bun": ">=0.7.0", - "deno": ">=1.0.0", - "node": ">=16.5.0" + "node_modules/aws-ssm-document-language-service": { + "version": "1.0.0", + "license": "Apache-2.0", + "dependencies": { + "vscode-json-languageservice": "3.8.3", + "vscode-languageserver": "^6.1.1", + "yaml": "^1.10.0", + "yaml-language-server": "0.10.1" } }, - "node_modules/a-sync-waterfall": { - "version": "1.0.1", - "dev": true, - "license": "MIT" + "node_modules/aws-ssm-document-language-service/node_modules/argparse": { + "version": "1.0.10", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } }, - "node_modules/accepts": { - "version": "1.3.8", - "dev": true, + "node_modules/aws-ssm-document-language-service/node_modules/js-yaml": { + "version": "3.14.1", "license": "MIT", "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, - "engines": { - "node": ">= 0.6" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/acorn": { - "version": "8.12.0", - "dev": true, + "node_modules/aws-ssm-document-language-service/node_modules/jsonc-parser": { + "version": "2.3.1", + "license": "MIT" + }, + "node_modules/aws-ssm-document-language-service/node_modules/prettier": { + "version": "2.0.5", "license": "MIT", + "optional": true, "bin": { - "acorn": "bin/acorn" + "prettier": "bin-prettier.js" }, "engines": { - "node": ">=0.4.0" + "node": ">=10.13.0" } }, - "node_modules/acorn-import-attributes": { - "version": "1.9.5", - "dev": true, + "node_modules/aws-ssm-document-language-service/node_modules/vscode-json-languageservice": { + "version": "3.8.3", "license": "MIT", - "peerDependencies": { - "acorn": "^8" + "dependencies": { + "jsonc-parser": "^2.2.1", + "vscode-languageserver-textdocument": "^1.0.1", + "vscode-languageserver-types": "^3.15.1", + "vscode-nls": "^4.1.2", + "vscode-uri": "^2.1.2" } }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "dev": true, + "node_modules/aws-ssm-document-language-service/node_modules/vscode-jsonrpc": { + "version": "4.0.0", "license": "MIT", - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + "engines": { + "node": ">=8.0.0 || >=10.0.0" } }, - "node_modules/acorn-walk": { - "version": "8.2.0", - "dev": true, + "node_modules/aws-ssm-document-language-service/node_modules/vscode-languageserver-protocol": { + "version": "3.14.1", "license": "MIT", - "engines": { - "node": ">=0.4.0" + "dependencies": { + "vscode-jsonrpc": "^4.0.0", + "vscode-languageserver-types": "3.14.0" } }, - "node_modules/adm-zip": { - "version": "0.5.10", + "node_modules/aws-ssm-document-language-service/node_modules/vscode-languageserver-protocol/node_modules/vscode-languageserver-types": { + "version": "3.14.0", + "license": "MIT" + }, + "node_modules/aws-ssm-document-language-service/node_modules/vscode-nls": { + "version": "4.1.2", + "license": "MIT" + }, + "node_modules/aws-ssm-document-language-service/node_modules/yaml-language-server": { + "version": "0.10.1", "license": "MIT", + "dependencies": { + "js-yaml": "^3.13.1", + "jsonc-parser": "^2.2.1", + "request-light": "^0.2.4", + "vscode-json-languageservice": "^3.6.0", + "vscode-languageserver": "^5.2.1", + "vscode-languageserver-types": "^3.15.1", + "vscode-nls": "^4.1.2", + "vscode-uri": "^2.1.1", + "yaml-ast-parser-custom-tags": "0.0.43" + }, + "bin": { + "yaml-language-server": "bin/yaml-language-server" + }, "engines": { - "node": ">=6.0" + "node": "*" + }, + "optionalDependencies": { + "prettier": "2.0.5" } }, - "node_modules/agent-base": { - "version": "6.0.2", - "dev": true, + "node_modules/aws-ssm-document-language-service/node_modules/yaml-language-server/node_modules/vscode-languageserver": { + "version": "5.2.1", "license": "MIT", "dependencies": { - "debug": "4" + "vscode-languageserver-protocol": "3.14.1", + "vscode-uri": "^1.0.6" }, - "engines": { - "node": ">= 6.0.0" + "bin": { + "installServerIntoExtension": "bin/installServerIntoExtension" } }, - "node_modules/ajv": { - "version": "6.12.6", + "node_modules/aws-ssm-document-language-service/node_modules/yaml-language-server/node_modules/vscode-languageserver/node_modules/vscode-uri": { + "version": "1.0.8", + "license": "MIT" + }, + "node_modules/aws-toolkit-vscode": { + "resolved": "packages/toolkit", + "link": true + }, + "node_modules/azure-devops-node-api": { + "version": "11.2.0", "dev": true, "license": "MIT", "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "tunnel": "0.0.6", + "typed-rest-client": "^1.8.4" } }, - "node_modules/ajv-formats": { - "version": "2.1.1", + "node_modules/b4a": { + "version": "1.6.4", "dev": true, - "license": "MIT", + "license": "ISC" + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "license": "MIT" + }, + "node_modules/bare-events": { + "version": "2.2.2", + "dev": true, + "license": "Apache-2.0", + "optional": true + }, + "node_modules/bare-fs": { + "version": "2.3.0", + "dev": true, + "license": "Apache-2.0", + "optional": true, "dependencies": { - "ajv": "^8.0.0" - }, - "peerDependencies": { - "ajv": "^8.0.0" - }, - "peerDependenciesMeta": { - "ajv": { - "optional": true - } + "bare-events": "^2.0.0", + "bare-path": "^2.0.0", + "bare-stream": "^1.0.0" } }, - "node_modules/ajv-formats/node_modules/ajv": { - "version": "8.8.2", + "node_modules/bare-os": { + "version": "2.3.0", "dev": true, - "license": "MIT", + "license": "Apache-2.0", + "optional": true + }, + "node_modules/bare-path": { + "version": "2.1.2", + "dev": true, + "license": "Apache-2.0", + "optional": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "bare-os": "^2.1.0" } }, - "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "node_modules/bare-stream": { "version": "1.0.0", "dev": true, + "license": "Apache-2.0", + "optional": true, + "dependencies": { + "streamx": "^2.16.1" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "license": "MIT" }, - "node_modules/ajv-keywords": { - "version": "3.5.2", + "node_modules/basic-auth": { + "version": "2.0.1", "dev": true, "license": "MIT", - "peerDependencies": { - "ajv": "^6.9.1" + "dependencies": { + "safe-buffer": "5.1.2" + }, + "engines": { + "node": ">= 0.8" } }, - "node_modules/amazon-q-vscode": { - "resolved": "packages/amazonq", - "link": true + "node_modules/basic-auth/node_modules/safe-buffer": { + "version": "5.1.2", + "dev": true, + "license": "MIT" }, - "node_modules/amazon-states-language-service": { - "version": "1.11.0", + "node_modules/batch": { + "version": "0.6.1", + "dev": true, + "license": "MIT" + }, + "node_modules/big.js": { + "version": "5.2.2", + "dev": true, "license": "MIT", - "dependencies": { - "js-yaml": "^4.1.0", - "vscode-json-languageservice": "5.3.5", - "vscode-languageserver": "^8.1.0", - "vscode-languageserver-textdocument": "^1.0.0", - "vscode-languageserver-types": "^3.15.1", - "yaml-language-server": "0.15.0" + "engines": { + "node": "*" } }, - "node_modules/amazon-states-language-service/node_modules/vscode-jsonrpc": { - "version": "8.1.0", + "node_modules/binary-extensions": { + "version": "2.2.0", + "dev": true, "license": "MIT", "engines": { - "node": ">=14.0.0" + "node": ">=8" } }, - "node_modules/amazon-states-language-service/node_modules/vscode-languageserver": { - "version": "8.1.0", + "node_modules/bl": { + "version": "4.1.0", + "dev": true, "license": "MIT", + "optional": true, "dependencies": { - "vscode-languageserver-protocol": "3.17.3" - }, - "bin": { - "installServerIntoExtension": "bin/installServerIntoExtension" + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" } }, - "node_modules/amazon-states-language-service/node_modules/vscode-languageserver-protocol": { - "version": "3.17.3", + "node_modules/bl/node_modules/buffer": { + "version": "5.7.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "license": "MIT", + "optional": true, "dependencies": { - "vscode-jsonrpc": "8.1.0", - "vscode-languageserver-types": "3.17.3" + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" } }, - "node_modules/ansi-colors": { - "version": "4.1.1", - "license": "MIT", - "engines": { - "node": ">=6" - } + "node_modules/bn.js": { + "version": "5.2.1", + "license": "MIT" }, - "node_modules/ansi-gray": { - "version": "0.1.1", + "node_modules/body-parser": { + "version": "1.20.3", + "dev": true, "license": "MIT", "dependencies": { - "ansi-wrap": "0.1.0" + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.13.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/ansi-html-community": { - "version": "0.0.8", + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", "dev": true, - "engines": [ - "node >= 0.8.0" - ], - "license": "Apache-2.0", - "bin": { - "ansi-html": "bin/ansi-html" - } - }, - "node_modules/ansi-regex": { - "version": "4.1.1", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/ansi-styles": { - "version": "4.3.0", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "ms": "2.0.0" } }, - "node_modules/ansi-wrap": { - "version": "0.1.0", + "node_modules/body-parser/node_modules/depd": { + "version": "2.0.0", + "dev": true, "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">= 0.8" } }, - "node_modules/any-promise": { - "version": "1.3.0", + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", "dev": true, "license": "MIT" }, - "node_modules/anymatch": { - "version": "3.1.2", + "node_modules/bonjour-service": { + "version": "1.0.13", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" + "array-flatten": "^2.1.2", + "dns-equal": "^1.0.0", + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" } }, - "node_modules/arg": { - "version": "4.1.3", + "node_modules/boolbase": { + "version": "1.0.0", "dev": true, - "license": "MIT" - }, - "node_modules/argparse": { - "version": "2.0.1", - "license": "Python-2.0" + "license": "ISC" }, - "node_modules/array-flatten": { - "version": "2.1.2", - "dev": true, + "node_modules/bowser": { + "version": "2.11.0", "license": "MIT" }, - "node_modules/array-union": { - "version": "2.1.0", + "node_modules/brace-expansion": { + "version": "1.1.11", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", "dev": true, "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, "engines": { "node": ">=8" } }, - "node_modules/asap": { - "version": "2.0.6", - "dev": true, + "node_modules/brorand": { + "version": "1.1.0", "license": "MIT" }, - "node_modules/asn1.js": { - "version": "5.4.1", + "node_modules/browser-stdout": { + "version": "1.3.1", + "dev": true, + "license": "ISC" + }, + "node_modules/browserify-aes": { + "version": "1.2.0", "license": "MIT", "dependencies": { - "bn.js": "^4.0.0", + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" + "safe-buffer": "^5.0.1" } }, - "node_modules/asn1.js/node_modules/bn.js": { - "version": "4.12.0", - "license": "MIT" - }, - "node_modules/assert": { - "version": "2.1.0", - "dev": true, + "node_modules/browserify-cipher": { + "version": "1.0.1", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "is-nan": "^1.3.2", - "object-is": "^1.1.5", - "object.assign": "^4.1.4", - "util": "^0.12.5" + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" } }, - "node_modules/ast-types": { - "version": "0.9.14", - "dev": true, + "node_modules/browserify-des": { + "version": "1.0.2", "license": "MIT", - "engines": { - "node": ">= 0.8" + "dependencies": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" } }, - "node_modules/async": { - "version": "3.2.5", - "license": "MIT" + "node_modules/browserify-rsa": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } }, - "node_modules/async-lock": { - "version": "1.4.0", - "license": "MIT" + "node_modules/browserify-sign": { + "version": "4.2.2", + "license": "ISC", + "dependencies": { + "bn.js": "^5.2.1", + "browserify-rsa": "^4.1.0", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.4", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.6", + "readable-stream": "^3.6.2", + "safe-buffer": "^5.2.1" + }, + "engines": { + "node": ">= 4" + } }, - "node_modules/asynckit": { - "version": "0.4.0", + "node_modules/browserify-zlib": { + "version": "0.1.4", "dev": true, - "license": "MIT" - }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "dependencies": { + "pako": "~0.2.0" } }, - "node_modules/aws-core-vscode": { - "resolved": "packages/core", - "link": true + "node_modules/browserify-zlib/node_modules/pako": { + "version": "0.2.9", + "dev": true, + "license": "MIT" }, - "node_modules/aws-sdk": { - "version": "2.1384.0", - "license": "Apache-2.0", + "node_modules/browserslist": { + "version": "4.23.1", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", "dependencies": { - "buffer": "4.9.2", - "events": "1.1.1", - "ieee754": "1.1.13", - "jmespath": "0.16.0", - "querystring": "0.2.0", - "sax": "1.2.1", - "url": "0.10.3", - "util": "^0.12.4", - "uuid": "8.0.0", - "xml2js": "0.5.0" + "caniuse-lite": "^1.0.30001629", + "electron-to-chromium": "^1.4.796", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.16" + }, + "bin": { + "browserslist": "cli.js" }, "engines": { - "node": ">= 10.0.0" + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, - "node_modules/aws-sdk/node_modules/uuid": { - "version": "8.0.0", + "node_modules/buffer": { + "version": "4.9.2", "license": "MIT", - "bin": { - "uuid": "dist/bin/uuid" + "dependencies": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" } }, - "node_modules/aws-sdk/node_modules/xml2js": { - "version": "0.5.0", + "node_modules/buffer-crc32": { + "version": "0.2.13", + "dev": true, "license": "MIT", - "dependencies": { - "sax": ">=0.6.0", - "xmlbuilder": "~11.0.0" - }, "engines": { - "node": ">=4.0.0" + "node": "*" } }, - "node_modules/aws-ssm-document-language-service": { - "version": "1.0.0", - "license": "Apache-2.0", - "dependencies": { - "vscode-json-languageservice": "3.8.3", - "vscode-languageserver": "^6.1.1", - "yaml": "^1.10.0", - "yaml-language-server": "0.10.1" - } + "node_modules/buffer-from": { + "version": "1.1.2", + "dev": true, + "license": "MIT" }, - "node_modules/aws-ssm-document-language-service/node_modules/argparse": { - "version": "1.0.10", - "license": "MIT", - "dependencies": { - "sprintf-js": "~1.0.2" - } + "node_modules/buffer-xor": { + "version": "1.0.3", + "license": "MIT" }, - "node_modules/aws-ssm-document-language-service/node_modules/js-yaml": { - "version": "3.14.1", + "node_modules/builtin-modules": { + "version": "3.3.0", + "dev": true, "license": "MIT", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "engines": { + "node": ">=6" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/aws-ssm-document-language-service/node_modules/jsonc-parser": { - "version": "2.3.1", - "license": "MIT" - }, - "node_modules/aws-ssm-document-language-service/node_modules/prettier": { - "version": "2.0.5", + "node_modules/bytes": { + "version": "3.1.2", "license": "MIT", - "optional": true, - "bin": { - "prettier": "bin-prettier.js" - }, "engines": { - "node": ">=10.13.0" + "node": ">= 0.8" } }, - "node_modules/aws-ssm-document-language-service/node_modules/vscode-json-languageservice": { - "version": "3.8.3", - "license": "MIT", + "node_modules/c8": { + "version": "9.0.0", + "dev": true, + "license": "ISC", "dependencies": { - "jsonc-parser": "^2.2.1", - "vscode-languageserver-textdocument": "^1.0.1", - "vscode-languageserver-types": "^3.15.1", - "vscode-nls": "^4.1.2", - "vscode-uri": "^2.1.2" + "@bcoe/v8-coverage": "^0.2.3", + "@istanbuljs/schema": "^0.1.3", + "find-up": "^5.0.0", + "foreground-child": "^3.1.1", + "istanbul-lib-coverage": "^3.2.0", + "istanbul-lib-report": "^3.0.1", + "istanbul-reports": "^3.1.6", + "test-exclude": "^6.0.0", + "v8-to-istanbul": "^9.0.0", + "yargs": "^17.7.2", + "yargs-parser": "^21.1.1" + }, + "bin": { + "c8": "bin/c8.js" + }, + "engines": { + "node": ">=14.14.0" } }, - "node_modules/aws-ssm-document-language-service/node_modules/vscode-jsonrpc": { - "version": "4.0.0", - "license": "MIT", + "node_modules/c8/node_modules/yargs-parser": { + "version": "21.1.1", + "dev": true, + "license": "ISC", "engines": { - "node": ">=8.0.0 || >=10.0.0" + "node": ">=12" } }, - "node_modules/aws-ssm-document-language-service/node_modules/vscode-languageserver-protocol": { - "version": "3.14.1", + "node_modules/cache-content-type": { + "version": "1.0.1", + "dev": true, "license": "MIT", "dependencies": { - "vscode-jsonrpc": "^4.0.0", - "vscode-languageserver-types": "3.14.0" + "mime-types": "^2.1.18", + "ylru": "^1.2.0" + }, + "engines": { + "node": ">= 6.0.0" } }, - "node_modules/aws-ssm-document-language-service/node_modules/vscode-languageserver-protocol/node_modules/vscode-languageserver-types": { - "version": "3.14.0", - "license": "MIT" - }, - "node_modules/aws-ssm-document-language-service/node_modules/vscode-nls": { - "version": "4.1.2", - "license": "MIT" + "node_modules/cacheable-lookup": { + "version": "5.0.4", + "license": "MIT", + "engines": { + "node": ">=10.6.0" + } }, - "node_modules/aws-ssm-document-language-service/node_modules/yaml-language-server": { - "version": "0.10.1", + "node_modules/cacheable-request": { + "version": "7.0.2", "license": "MIT", "dependencies": { - "js-yaml": "^3.13.1", - "jsonc-parser": "^2.2.1", - "request-light": "^0.2.4", - "vscode-json-languageservice": "^3.6.0", - "vscode-languageserver": "^5.2.1", - "vscode-languageserver-types": "^3.15.1", - "vscode-nls": "^4.1.2", - "vscode-uri": "^2.1.1", - "yaml-ast-parser-custom-tags": "0.0.43" - }, - "bin": { - "yaml-language-server": "bin/yaml-language-server" + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^6.0.1", + "responselike": "^2.0.0" }, "engines": { - "node": "*" - }, - "optionalDependencies": { - "prettier": "2.0.5" + "node": ">=8" } }, - "node_modules/aws-ssm-document-language-service/node_modules/yaml-language-server/node_modules/vscode-languageserver": { - "version": "5.2.1", + "node_modules/call-bind": { + "version": "1.0.7", "license": "MIT", "dependencies": { - "vscode-languageserver-protocol": "3.14.1", - "vscode-uri": "^1.0.6" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" }, - "bin": { - "installServerIntoExtension": "bin/installServerIntoExtension" + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/aws-ssm-document-language-service/node_modules/yaml-language-server/node_modules/vscode-languageserver/node_modules/vscode-uri": { - "version": "1.0.8", + "node_modules/call-me-maybe": { + "version": "1.0.2", + "dev": true, "license": "MIT" }, - "node_modules/aws-toolkit-vscode": { - "resolved": "packages/toolkit", - "link": true - }, - "node_modules/azure-devops-node-api": { - "version": "11.2.0", + "node_modules/caller-callsite": { + "version": "2.0.0", "dev": true, "license": "MIT", "dependencies": { - "tunnel": "0.0.6", - "typed-rest-client": "^1.8.4" + "callsites": "^2.0.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/b4a": { - "version": "1.6.4", + "node_modules/caller-callsite/node_modules/callsites": { + "version": "2.0.0", "dev": true, - "license": "ISC" - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">=4" + } }, - "node_modules/bare-events": { - "version": "2.2.2", + "node_modules/caller-path": { + "version": "2.0.0", "dev": true, - "license": "Apache-2.0", - "optional": true + "license": "MIT", + "dependencies": { + "caller-callsite": "^2.0.0" + }, + "engines": { + "node": ">=4" + } }, - "node_modules/bare-fs": { - "version": "2.3.0", + "node_modules/callsites": { + "version": "3.1.0", "dev": true, - "license": "Apache-2.0", - "optional": true, - "dependencies": { - "bare-events": "^2.0.0", - "bare-path": "^2.0.0", - "bare-stream": "^1.0.0" + "license": "MIT", + "engines": { + "node": ">=6" } }, - "node_modules/bare-os": { - "version": "2.3.0", + "node_modules/camelcase": { + "version": "6.2.0", "dev": true, - "license": "Apache-2.0", - "optional": true + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/bare-path": { - "version": "2.1.2", + "node_modules/camelcase-keys": { + "version": "6.2.2", "dev": true, - "license": "Apache-2.0", - "optional": true, + "license": "MIT", "dependencies": { - "bare-os": "^2.1.0" + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/bare-stream": { - "version": "1.0.0", + "node_modules/camelcase-keys/node_modules/camelcase": { + "version": "5.3.1", "dev": true, - "license": "Apache-2.0", - "optional": true, - "dependencies": { - "streamx": "^2.16.1" + "license": "MIT", + "engines": { + "node": ">=6" } }, - "node_modules/base64-js": { - "version": "1.5.1", + "node_modules/camelcase-keys/node_modules/quick-lru": { + "version": "4.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001638", + "dev": true, "funding": [ { - "type": "github", - "url": "https://github.com/sponsors/feross" + "type": "opencollective", + "url": "https://opencollective.com/browserslist" }, { - "type": "patreon", - "url": "https://www.patreon.com/feross" + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" }, { - "type": "consulting", - "url": "https://feross.org/support" + "type": "github", + "url": "https://github.com/sponsors/ai" } ], - "license": "MIT" + "license": "CC-BY-4.0" }, - "node_modules/basic-auth": { - "version": "2.0.1", + "node_modules/chalk": { + "version": "4.1.2", "dev": true, "license": "MIT", "dependencies": { - "safe-buffer": "5.1.2" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">= 0.8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/basic-auth/node_modules/safe-buffer": { - "version": "5.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/batch": { - "version": "0.6.1", - "dev": true, - "license": "MIT" - }, - "node_modules/big.js": { - "version": "5.2.2", + "node_modules/charenc": { + "version": "0.0.2", "dev": true, - "license": "MIT", + "license": "BSD-3-Clause", "engines": { "node": "*" } }, - "node_modules/binary-extensions": { - "version": "2.2.0", + "node_modules/cheerio": { + "version": "1.0.0-rc.12", "dev": true, "license": "MIT", + "dependencies": { + "cheerio-select": "^2.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "htmlparser2": "^8.0.1", + "parse5": "^7.0.0", + "parse5-htmlparser2-tree-adapter": "^7.0.0" + }, "engines": { - "node": ">=8" + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/cheeriojs/cheerio?sponsor=1" } }, - "node_modules/bl": { - "version": "4.1.0", + "node_modules/cheerio-select": { + "version": "2.1.0", "dev": true, - "license": "MIT", - "optional": true, + "license": "BSD-2-Clause", "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" + "boolbase": "^1.0.0", + "css-select": "^5.1.0", + "css-what": "^6.1.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/bl/node_modules/buffer": { - "version": "5.7.1", + "node_modules/chokidar": { + "version": "3.5.3", "dev": true, "funding": [ { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" + "type": "individual", + "url": "https://paulmillr.com/funding/" } ], "license": "MIT", - "optional": true, "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "node_modules/bn.js": { - "version": "5.2.1", - "license": "MIT" + "node_modules/chownr": { + "version": "1.1.4", + "dev": true, + "license": "ISC", + "optional": true }, - "node_modules/body-parser": { - "version": "1.20.3", + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "4.0.0", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cipher-base": { + "version": "1.0.4", "license": "MIT", "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.13.0", - "raw-body": "2.5.2", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/circular-dependency-plugin": { + "version": "5.2.2", + "dev": true, + "license": "ISC", "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "node": ">=6.0.0" + }, + "peerDependencies": { + "webpack": ">=4.0.1" } }, - "node_modules/body-parser/node_modules/debug": { - "version": "2.6.9", + "node_modules/clean-regexp": { + "version": "1.0.0", "dev": true, "license": "MIT", "dependencies": { - "ms": "2.0.0" + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=4" } }, - "node_modules/body-parser/node_modules/depd": { - "version": "2.0.0", + "node_modules/clean-regexp/node_modules/escape-string-regexp": { + "version": "1.0.5", "dev": true, "license": "MIT", "engines": { - "node": ">= 0.8" + "node": ">=0.8.0" } }, - "node_modules/body-parser/node_modules/ms": { - "version": "2.0.0", + "node_modules/cli-color": { + "version": "2.0.3", "dev": true, - "license": "MIT" + "license": "ISC", + "dependencies": { + "d": "^1.0.1", + "es5-ext": "^0.10.61", + "es6-iterator": "^2.0.3", + "memoizee": "^0.4.15", + "timers-ext": "^0.1.7" + }, + "engines": { + "node": ">=0.10" + } }, - "node_modules/bonjour-service": { - "version": "1.0.13", + "node_modules/cliui": { + "version": "7.0.4", "dev": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "array-flatten": "^2.1.2", - "dns-equal": "^1.0.0", - "fast-deep-equal": "^3.1.3", - "multicast-dns": "^7.2.5" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" } }, - "node_modules/boolbase": { - "version": "1.0.0", + "node_modules/cliui/node_modules/ansi-regex": { + "version": "5.0.1", "dev": true, - "license": "ISC" - }, - "node_modules/bowser": { - "version": "2.11.0", - "license": "MIT" - }, - "node_modules/brace-expansion": { - "version": "1.1.11", "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "engines": { + "node": ">=8" } }, - "node_modules/braces": { - "version": "3.0.3", + "node_modules/cliui/node_modules/strip-ansi": { + "version": "6.0.1", "dev": true, "license": "MIT", "dependencies": { - "fill-range": "^7.1.1" + "ansi-regex": "^5.0.1" }, "engines": { "node": ">=8" } }, - "node_modules/brorand": { - "version": "1.1.0", - "license": "MIT" + "node_modules/clone": { + "version": "2.1.2", + "license": "MIT", + "engines": { + "node": ">=0.8" + } }, - "node_modules/browser-stdout": { - "version": "1.3.1", - "dev": true, - "license": "ISC" + "node_modules/clone-buffer": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } }, - "node_modules/browserify-aes": { - "version": "1.2.0", + "node_modules/clone-deep": { + "version": "4.0.1", + "dev": true, "license": "MIT", "dependencies": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" } }, - "node_modules/browserify-cipher": { - "version": "1.0.1", + "node_modules/clone-response": { + "version": "1.0.2", "license": "MIT", "dependencies": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" + "mimic-response": "^1.0.0" } }, - "node_modules/browserify-des": { - "version": "1.0.2", + "node_modules/clone-stats": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/cloneable-readable": { + "version": "1.1.3", "license": "MIT", "dependencies": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" + "process-nextick-args": "^2.0.0", + "readable-stream": "^2.3.5" } }, - "node_modules/browserify-rsa": { - "version": "4.1.0", + "node_modules/cloneable-readable/node_modules/readable-stream": { + "version": "2.3.7", "license": "MIT", "dependencies": { - "bn.js": "^5.0.0", - "randombytes": "^2.0.1" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "node_modules/browserify-sign": { - "version": "4.2.2", - "license": "ISC", + "node_modules/cloneable-readable/node_modules/safe-buffer": { + "version": "5.1.2", + "license": "MIT" + }, + "node_modules/cloneable-readable/node_modules/string_decoder": { + "version": "1.1.1", + "license": "MIT", "dependencies": { - "bn.js": "^5.2.1", - "browserify-rsa": "^4.1.0", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.5.4", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.6", - "readable-stream": "^3.6.2", - "safe-buffer": "^5.2.1" - }, - "engines": { - "node": ">= 4" + "safe-buffer": "~5.1.0" } }, - "node_modules/browserify-zlib": { - "version": "0.1.4", + "node_modules/co": { + "version": "4.6.0", "dev": true, "license": "MIT", - "dependencies": { - "pako": "~0.2.0" + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" } }, - "node_modules/browserify-zlib/node_modules/pako": { - "version": "0.2.9", - "dev": true, - "license": "MIT" + "node_modules/code-block-writer": { + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-13.0.2.tgz", + "integrity": "sha512-XfXzAGiStXSmCIwrkdfvc7FS5Dtj8yelCtyOf2p2skCAfvLd6zu0rGzuS9NSCO3bq1JKpFZ7tbKdKlcd5occQA==", + "dev": true }, - "node_modules/browserslist": { - "version": "4.23.1", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], + "node_modules/color": { + "version": "3.2.1", "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001629", - "electron-to-chromium": "^1.4.796", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.16" - }, - "bin": { - "browserslist": "cli.js" + "color-convert": "^1.9.3", + "color-string": "^1.6.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" }, "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + "node": ">=7.0.0" } }, - "node_modules/buffer": { - "version": "4.9.2", + "node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" + }, + "node_modules/color-string": { + "version": "1.9.1", "license": "MIT", "dependencies": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" } }, - "node_modules/buffer-crc32": { - "version": "0.2.13", - "dev": true, - "license": "MIT", - "engines": { - "node": "*" + "node_modules/color-support": { + "version": "1.1.3", + "license": "ISC", + "bin": { + "color-support": "bin.js" } }, - "node_modules/buffer-from": { - "version": "1.1.2", - "dev": true, - "license": "MIT" + "node_modules/color/node_modules/color-convert": { + "version": "1.9.3", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } }, - "node_modules/buffer-xor": { - "version": "1.0.3", + "node_modules/color/node_modules/color-name": { + "version": "1.1.3", "license": "MIT" }, - "node_modules/builtin-modules": { - "version": "3.3.0", + "node_modules/colorette": { + "version": "2.0.16", "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "license": "MIT" }, - "node_modules/bytes": { - "version": "3.1.2", + "node_modules/colorspace": { + "version": "1.1.4", "license": "MIT", - "engines": { - "node": ">= 0.8" + "dependencies": { + "color": "^3.1.3", + "text-hex": "1.0.x" } }, - "node_modules/c8": { - "version": "9.0.0", + "node_modules/combined-stream": { + "version": "1.0.8", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "@bcoe/v8-coverage": "^0.2.3", - "@istanbuljs/schema": "^0.1.3", - "find-up": "^5.0.0", - "foreground-child": "^3.1.1", - "istanbul-lib-coverage": "^3.2.0", - "istanbul-lib-report": "^3.0.1", - "istanbul-reports": "^3.1.6", - "test-exclude": "^6.0.0", - "v8-to-istanbul": "^9.0.0", - "yargs": "^17.7.2", - "yargs-parser": "^21.1.1" - }, - "bin": { - "c8": "bin/c8.js" + "delayed-stream": "~1.0.0" }, "engines": { - "node": ">=14.14.0" + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "6.2.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" } }, - "node_modules/c8/node_modules/yargs-parser": { - "version": "21.1.1", + "node_modules/compressible": { + "version": "2.0.18", "dev": true, - "license": "ISC", + "license": "MIT", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, "engines": { - "node": ">=12" + "node": ">= 0.6" } }, - "node_modules/cache-content-type": { - "version": "1.0.1", + "node_modules/compression": { + "version": "1.7.4", "dev": true, "license": "MIT", "dependencies": { - "mime-types": "^2.1.18", - "ylru": "^1.2.0" + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" }, "engines": { - "node": ">= 6.0.0" + "node": ">= 0.8.0" } }, - "node_modules/cacheable-lookup": { - "version": "5.0.4", + "node_modules/compression/node_modules/bytes": { + "version": "3.0.0", + "dev": true, "license": "MIT", "engines": { - "node": ">=10.6.0" + "node": ">= 0.8" } }, - "node_modules/cacheable-request": { - "version": "7.0.2", + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "dev": true, "license": "MIT", "dependencies": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^4.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^6.0.1", - "responselike": "^2.0.0" + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "dev": true, + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "license": "MIT" + }, + "node_modules/concurrently": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-7.0.0.tgz", + "integrity": "sha512-WKM7PUsI8wyXpF80H+zjHP32fsgsHNQfPLw/e70Z5dYkV7hF+rf8q3D+ScWJIEr57CpkO3OWBko6hwhQLPR8Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "date-fns": "^2.16.1", + "lodash": "^4.17.21", + "rxjs": "^6.6.3", + "spawn-command": "^0.0.2-1", + "supports-color": "^8.1.0", + "tree-kill": "^1.2.2", + "yargs": "^16.2.0" + }, + "bin": { + "concurrently": "dist/bin/concurrently.js" }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.0 || >=16.0.0" } }, - "node_modules/call-bind": { - "version": "1.0.7", + "node_modules/concurrently/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, "license": "MIT", "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" + "has-flag": "^4.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/call-me-maybe": { - "version": "1.0.2", - "dev": true, - "license": "MIT" - }, - "node_modules/caller-callsite": { - "version": "2.0.0", + "node_modules/concurrently/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, "license": "MIT", "dependencies": { - "callsites": "^2.0.0" + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" }, "engines": { - "node": ">=4" + "node": ">=10" } }, - "node_modules/caller-callsite/node_modules/callsites": { + "node_modules/connect-history-api-fallback": { "version": "2.0.0", "dev": true, "license": "MIT", "engines": { - "node": ">=4" + "node": ">=0.8" } }, - "node_modules/caller-path": { - "version": "2.0.0", + "node_modules/content-disposition": { + "version": "0.5.4", "dev": true, "license": "MIT", "dependencies": { - "caller-callsite": "^2.0.0" + "safe-buffer": "5.2.1" }, "engines": { - "node": ">=4" + "node": ">= 0.6" } }, - "node_modules/callsites": { - "version": "3.1.0", + "node_modules/content-type": { + "version": "1.0.5", "dev": true, "license": "MIT", "engines": { - "node": ">=6" + "node": ">= 0.6" } }, - "node_modules/camelcase": { - "version": "6.2.0", + "node_modules/convert-source-map": { + "version": "2.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/cookie": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", + "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", "dev": true, - "license": "MIT", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.6" } }, - "node_modules/camelcase-keys": { - "version": "6.2.2", + "node_modules/cookie-signature": { + "version": "1.0.6", + "dev": true, + "license": "MIT" + }, + "node_modules/cookies": { + "version": "0.9.1", "dev": true, "license": "MIT", "dependencies": { - "camelcase": "^5.3.1", - "map-obj": "^4.0.0", - "quick-lru": "^4.0.1" + "depd": "~2.0.0", + "keygrip": "~1.1.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.8" } }, - "node_modules/camelcase-keys/node_modules/camelcase": { - "version": "5.3.1", + "node_modules/cookies/node_modules/depd": { + "version": "2.0.0", "dev": true, "license": "MIT", "engines": { - "node": ">=6" + "node": ">= 0.8" } }, - "node_modules/camelcase-keys/node_modules/quick-lru": { - "version": "4.0.1", + "node_modules/core-js-compat": { + "version": "3.37.1", "dev": true, "license": "MIT", - "engines": { - "node": ">=8" + "dependencies": { + "browserslist": "^4.23.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" } }, - "node_modules/caniuse-lite": { - "version": "1.0.30001638", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "CC-BY-4.0" + "node_modules/core-util-is": { + "version": "1.0.3", + "license": "MIT" }, - "node_modules/chalk": { - "version": "4.1.2", + "node_modules/cosmiconfig": { + "version": "5.2.1", "dev": true, "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=4" } }, - "node_modules/charenc": { - "version": "0.0.2", + "node_modules/cosmiconfig/node_modules/argparse": { + "version": "1.0.10", "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": "*" + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" } }, - "node_modules/cheerio": { - "version": "1.0.0-rc.12", + "node_modules/cosmiconfig/node_modules/import-fresh": { + "version": "2.0.0", "dev": true, "license": "MIT", "dependencies": { - "cheerio-select": "^2.1.0", - "dom-serializer": "^2.0.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1", - "htmlparser2": "^8.0.1", - "parse5": "^7.0.0", - "parse5-htmlparser2-tree-adapter": "^7.0.0" - }, - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/cheeriojs/cheerio?sponsor=1" + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/cheerio-select": { - "version": "2.1.0", + "node_modules/cosmiconfig/node_modules/js-yaml": { + "version": "3.14.1", "dev": true, - "license": "BSD-2-Clause", + "license": "MIT", "dependencies": { - "boolbase": "^1.0.0", - "css-select": "^5.1.0", - "css-what": "^6.1.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/fb55" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/chokidar": { - "version": "3.5.3", + "node_modules/cosmiconfig/node_modules/parse-json": { + "version": "4.0.0", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], "license": "MIT", "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" }, "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "node": ">=4" } }, - "node_modules/chownr": { - "version": "1.1.4", - "dev": true, - "license": "ISC", - "optional": true - }, - "node_modules/chrome-trace-event": { - "version": "1.0.3", + "node_modules/cosmiconfig/node_modules/resolve-from": { + "version": "3.0.0", "dev": true, "license": "MIT", "engines": { - "node": ">=6.0" + "node": ">=4" } }, - "node_modules/ci-info": { - "version": "4.0.0", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], + "node_modules/create-ecdh": { + "version": "4.0.4", "license": "MIT", - "engines": { - "node": ">=8" + "dependencies": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" } }, - "node_modules/cipher-base": { - "version": "1.0.4", + "node_modules/create-ecdh/node_modules/bn.js": { + "version": "4.12.0", + "license": "MIT" + }, + "node_modules/create-hash": { + "version": "1.2.0", "license": "MIT", "dependencies": { + "cipher-base": "^1.0.1", "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" } }, - "node_modules/circular-dependency-plugin": { - "version": "5.2.2", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=6.0.0" - }, - "peerDependencies": { - "webpack": ">=4.0.1" + "node_modules/create-hmac": { + "version": "1.1.7", + "license": "MIT", + "dependencies": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" } }, - "node_modules/clean-regexp": { - "version": "1.0.0", + "node_modules/create-require": { + "version": "1.1.1", "dev": true, + "license": "MIT" + }, + "node_modules/cross-fetch": { + "version": "4.0.0", "license": "MIT", "dependencies": { - "escape-string-regexp": "^1.0.5" + "node-fetch": "^2.6.12" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "engines": { - "node": ">=4" + "node": ">= 8" } }, - "node_modules/clean-regexp/node_modules/escape-string-regexp": { - "version": "1.0.5", + "node_modules/crypt": { + "version": "0.0.2", "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } + }, + "node_modules/crypto-browserify": { + "version": "3.12.0", "license": "MIT", + "dependencies": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + }, "engines": { - "node": ">=0.8.0" + "node": "*" } }, - "node_modules/cli-color": { - "version": "2.0.3", + "node_modules/css-loader": { + "version": "6.10.0", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "d": "^1.0.1", - "es5-ext": "^0.10.61", - "es6-iterator": "^2.0.3", - "memoizee": "^0.4.15", - "timers-ext": "^0.1.7" + "icss-utils": "^5.1.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.4", + "postcss-modules-scope": "^3.1.1", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.5.4" }, "engines": { - "node": ">=0.10" + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } } }, - "node_modules/cliui": { - "version": "7.0.4", + "node_modules/css-select": { + "version": "5.1.0", "dev": true, - "license": "ISC", + "license": "BSD-2-Clause", "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/cliui/node_modules/ansi-regex": { - "version": "5.0.1", + "node_modules/css-what": { + "version": "6.1.0", "dev": true, - "license": "MIT", + "license": "BSD-2-Clause", "engines": { - "node": ">=8" + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/cliui/node_modules/strip-ansi": { - "version": "6.0.1", + "node_modules/cssesc": { + "version": "3.0.0", "dev": true, "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" + "bin": { + "cssesc": "bin/cssesc" }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/clone": { - "version": "2.1.2", + "node_modules/cssstyle": { + "version": "3.0.0", + "dev": true, "license": "MIT", + "dependencies": { + "rrweb-cssom": "^0.6.0" + }, "engines": { - "node": ">=0.8" + "node": ">=14" } }, - "node_modules/clone-buffer": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">= 0.10" + "node_modules/csstype": { + "version": "3.1.2", + "license": "MIT" + }, + "node_modules/cubic2quad": { + "version": "1.2.1", + "dev": true, + "license": "MIT" + }, + "node_modules/d": { + "version": "1.0.1", + "dev": true, + "license": "ISC", + "dependencies": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" } }, - "node_modules/clone-deep": { - "version": "4.0.1", + "node_modules/data-urls": { + "version": "5.0.0", "dev": true, "license": "MIT", "dependencies": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" + "whatwg-mimetype": "^4.0.0", + "whatwg-url": "^14.0.0" }, "engines": { - "node": ">=6" + "node": ">=18" } }, - "node_modules/clone-response": { - "version": "1.0.2", + "node_modules/date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "dev": true, "license": "MIT", "dependencies": { - "mimic-response": "^1.0.0" + "@babel/runtime": "^7.21.0" + }, + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" } }, - "node_modules/clone-stats": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/cloneable-readable": { - "version": "1.1.3", + "node_modules/debug": { + "version": "4.3.4", + "dev": true, "license": "MIT", "dependencies": { - "inherits": "^2.0.1", - "process-nextick-args": "^2.0.0", - "readable-stream": "^2.3.5" + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/cloneable-readable/node_modules/readable-stream": { - "version": "2.3.7", + "node_modules/decamelize": { + "version": "4.0.0", + "dev": true, "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cloneable-readable/node_modules/safe-buffer": { - "version": "5.1.2", - "license": "MIT" - }, - "node_modules/cloneable-readable/node_modules/string_decoder": { - "version": "1.1.1", + "node_modules/decamelize-keys": { + "version": "1.1.0", + "dev": true, "license": "MIT", "dependencies": { - "safe-buffer": "~5.1.0" + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/co": { - "version": "4.6.0", + "node_modules/decamelize-keys/node_modules/decamelize": { + "version": "1.2.0", "dev": true, "license": "MIT", "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" - } - }, - "node_modules/code-block-writer": { - "version": "13.0.2", - "resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-13.0.2.tgz", - "integrity": "sha512-XfXzAGiStXSmCIwrkdfvc7FS5Dtj8yelCtyOf2p2skCAfvLd6zu0rGzuS9NSCO3bq1JKpFZ7tbKdKlcd5occQA==", - "dev": true - }, - "node_modules/color": { - "version": "3.2.1", - "license": "MIT", - "dependencies": { - "color-convert": "^1.9.3", - "color-string": "^1.6.0" + "node": ">=0.10.0" } }, - "node_modules/color-convert": { - "version": "2.0.1", + "node_modules/decamelize-keys/node_modules/map-obj": { + "version": "1.0.1", + "dev": true, "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, "engines": { - "node": ">=7.0.0" + "node": ">=0.10.0" } }, - "node_modules/color-name": { - "version": "1.1.4", + "node_modules/decimal.js": { + "version": "10.4.3", + "dev": true, "license": "MIT" }, - "node_modules/color-string": { - "version": "1.9.1", + "node_modules/decompress-response": { + "version": "6.0.0", "license": "MIT", "dependencies": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "node_modules/color-support": { - "version": "1.1.3", - "license": "ISC", - "bin": { - "color-support": "bin.js" + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/color/node_modules/color-convert": { - "version": "1.9.3", + "node_modules/decompress-response/node_modules/mimic-response": { + "version": "3.1.0", "license": "MIT", - "dependencies": { - "color-name": "1.1.3" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/color/node_modules/color-name": { - "version": "1.1.3", + "node_modules/deep-equal": { + "version": "1.0.1", + "dev": true, "license": "MIT" }, - "node_modules/colorette": { - "version": "2.0.16", + "node_modules/deep-extend": { + "version": "0.6.0", "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", "license": "MIT" }, - "node_modules/colorspace": { - "version": "1.1.4", + "node_modules/deepmerge": { + "version": "4.2.2", "license": "MIT", - "dependencies": { - "color": "^3.1.3", - "text-hex": "1.0.x" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/combined-stream": { - "version": "1.0.8", + "node_modules/default-gateway": { + "version": "6.0.3", "dev": true, - "license": "MIT", + "license": "BSD-2-Clause", "dependencies": { - "delayed-stream": "~1.0.0" + "execa": "^5.0.0" }, "engines": { - "node": ">= 0.8" + "node": ">= 10" } }, - "node_modules/commander": { - "version": "6.2.1", - "dev": true, + "node_modules/defer-to-connect": { + "version": "2.0.1", "license": "MIT", "engines": { - "node": ">= 6" + "node": ">=10" } }, - "node_modules/compressible": { - "version": "2.0.18", - "dev": true, + "node_modules/define-data-property": { + "version": "1.1.4", "license": "MIT", "dependencies": { - "mime-db": ">= 1.43.0 < 2" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" }, "engines": { - "node": ">= 0.6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/compression": { - "version": "1.7.4", + "node_modules/define-lazy-prop": { + "version": "2.0.0", "dev": true, "license": "MIT", - "dependencies": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" - }, "engines": { - "node": ">= 0.8.0" + "node": ">=8" } }, - "node_modules/compression/node_modules/bytes": { - "version": "3.0.0", - "dev": true, + "node_modules/define-properties": { + "version": "1.1.4", "license": "MIT", + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, "engines": { - "node": ">= 0.8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/compression/node_modules/debug": { - "version": "2.6.9", + "node_modules/delayed-stream": { + "version": "1.0.0", "dev": true, "license": "MIT", - "dependencies": { - "ms": "2.0.0" + "engines": { + "node": ">=0.4.0" } }, - "node_modules/compression/node_modules/ms": { - "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/compression/node_modules/safe-buffer": { - "version": "5.1.2", + "node_modules/delegates": { + "version": "1.0.0", "dev": true, "license": "MIT" }, - "node_modules/concat-map": { - "version": "0.0.1", - "license": "MIT" - }, - "node_modules/connect-history-api-fallback": { - "version": "2.0.0", + "node_modules/depd": { + "version": "1.1.2", "dev": true, "license": "MIT", "engines": { - "node": ">=0.8" + "node": ">= 0.6" } }, - "node_modules/content-disposition": { - "version": "0.5.4", - "dev": true, + "node_modules/des.js": { + "version": "1.1.0", "license": "MIT", "dependencies": { - "safe-buffer": "5.2.1" - }, - "engines": { - "node": ">= 0.6" + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" } }, - "node_modules/content-type": { - "version": "1.0.5", + "node_modules/destroy": { + "version": "1.2.0", "dev": true, "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/cookie": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", - "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", + "node_modules/detect-libc": { + "version": "2.0.2", "dev": true, + "license": "Apache-2.0", + "optional": true, "engines": { - "node": ">= 0.6" + "node": ">=8" } }, - "node_modules/cookie-signature": { - "version": "1.0.6", + "node_modules/detect-node": { + "version": "2.1.0", "dev": true, "license": "MIT" }, - "node_modules/cookies": { - "version": "0.9.1", + "node_modules/diff": { + "version": "5.1.0", "dev": true, - "license": "MIT", - "dependencies": { - "depd": "~2.0.0", - "keygrip": "~1.1.0" - }, + "license": "BSD-3-Clause", "engines": { - "node": ">= 0.8" + "node": ">=0.3.1" } }, - "node_modules/cookies/node_modules/depd": { - "version": "2.0.0", - "dev": true, + "node_modules/diffie-hellman": { + "version": "5.0.3", "license": "MIT", - "engines": { - "node": ">= 0.8" + "dependencies": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" } }, - "node_modules/core-js-compat": { - "version": "3.37.1", + "node_modules/diffie-hellman/node_modules/bn.js": { + "version": "4.12.0", + "license": "MIT" + }, + "node_modules/dir-glob": { + "version": "3.0.1", "dev": true, "license": "MIT", "dependencies": { - "browserslist": "^4.23.0" + "path-type": "^4.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "engines": { + "node": ">=8" } }, - "node_modules/core-util-is": { - "version": "1.0.3", + "node_modules/dns-equal": { + "version": "1.0.0", + "dev": true, "license": "MIT" }, - "node_modules/cosmiconfig": { - "version": "5.2.1", + "node_modules/dns-packet": { + "version": "5.4.0", "dev": true, "license": "MIT", "dependencies": { - "import-fresh": "^2.0.0", - "is-directory": "^0.3.1", - "js-yaml": "^3.13.1", - "parse-json": "^4.0.0" + "@leichtgewicht/ip-codec": "^2.0.1" }, "engines": { - "node": ">=4" + "node": ">=6" } }, - "node_modules/cosmiconfig/node_modules/argparse": { - "version": "1.0.10", + "node_modules/doctrine": { + "version": "3.0.0", "dev": true, - "license": "MIT", + "license": "Apache-2.0", "dependencies": { - "sprintf-js": "~1.0.2" + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" } }, - "node_modules/cosmiconfig/node_modules/import-fresh": { + "node_modules/dom-serializer": { "version": "2.0.0", - "dev": true, "license": "MIT", "dependencies": { - "caller-path": "^2.0.0", - "resolve-from": "^3.0.0" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/domhandler": { + "version": "5.0.3", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.3.0" }, "engines": { - "node": ">=4" + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "node_modules/cosmiconfig/node_modules/js-yaml": { - "version": "3.14.1", + "node_modules/domutils": { + "version": "3.1.0", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/downlevel-dts": { + "version": "0.10.1", + "resolved": "https://registry.npmjs.org/downlevel-dts/-/downlevel-dts-0.10.1.tgz", + "integrity": "sha512-bwY63Y0Gfwotcly4vU6rB66m5txvfQzDGd1Gai9E9orqsDIswXKjkdR18Tm6TidnAk9+J5N68a5VMDO2bsQCKQ==", "dev": true, "license": "MIT", "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "semver": "^7.3.2", + "shelljs": "^0.8.3", + "typescript": "next" }, "bin": { - "js-yaml": "bin/js-yaml.js" + "downlevel-dts": "index.js" } }, - "node_modules/cosmiconfig/node_modules/parse-json": { - "version": "4.0.0", + "node_modules/downlevel-dts/node_modules/typescript": { + "version": "5.7.0-dev.20241023", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.0-dev.20241023.tgz", + "integrity": "sha512-HB6rRd9ySnFMoQUuDasWnBtvOg1P4CFG3nRfs2ZvFbenUkxSzoeeZ0PUwJJ7MKJp5zz7uMTZamGt7zdj0tP9YA==", "dev": true, - "license": "MIT", - "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" }, "engines": { - "node": ">=4" + "node": ">=14.17" } }, - "node_modules/cosmiconfig/node_modules/resolve-from": { - "version": "3.0.0", + "node_modules/duplexer": { + "version": "0.1.2", + "license": "MIT" + }, + "node_modules/duplexify": { + "version": "3.7.1", "dev": true, "license": "MIT", - "engines": { - "node": ">=4" + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" } }, - "node_modules/create-ecdh": { - "version": "4.0.4", + "node_modules/duplexify/node_modules/readable-stream": { + "version": "2.3.8", + "dev": true, "license": "MIT", "dependencies": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "node_modules/create-ecdh/node_modules/bn.js": { - "version": "4.12.0", + "node_modules/duplexify/node_modules/safe-buffer": { + "version": "5.1.2", + "dev": true, "license": "MIT" }, - "node_modules/create-hash": { - "version": "1.2.0", + "node_modules/duplexify/node_modules/string_decoder": { + "version": "1.1.1", + "dev": true, "license": "MIT", "dependencies": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" + "safe-buffer": "~5.1.0" } }, - "node_modules/create-hmac": { - "version": "1.1.7", - "license": "MIT", - "dependencies": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } + "node_modules/eastasianwidth": { + "version": "0.2.0", + "license": "MIT" }, - "node_modules/create-require": { + "node_modules/ee-first": { "version": "1.1.1", "dev": true, "license": "MIT" }, - "node_modules/cross-fetch": { - "version": "4.0.0", + "node_modules/electron-to-chromium": { + "version": "1.4.812", + "dev": true, + "license": "ISC" + }, + "node_modules/elliptic": { + "version": "6.5.7", "license": "MIT", "dependencies": { - "node-fetch": "^2.6.12" + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" } }, - "node_modules/cross-spawn": { - "version": "7.0.3", + "node_modules/elliptic/node_modules/bn.js": { + "version": "4.12.0", + "license": "MIT" + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "license": "MIT" + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "dev": true, "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, "engines": { - "node": ">= 8" + "node": ">= 4" } }, - "node_modules/crypt": { - "version": "0.0.2", + "node_modules/enabled": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/encodeurl": { + "version": "1.0.2", "dev": true, - "license": "BSD-3-Clause", + "license": "MIT", "engines": { - "node": "*" + "node": ">= 0.8" } }, - "node_modules/crypto-browserify": { - "version": "3.12.0", + "node_modules/end-of-stream": { + "version": "1.4.4", "license": "MIT", "dependencies": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" - }, - "engines": { - "node": "*" + "once": "^1.4.0" } }, - "node_modules/css-loader": { - "version": "6.10.0", + "node_modules/enhanced-resolve": { + "version": "5.17.1", "dev": true, "license": "MIT", "dependencies": { - "icss-utils": "^5.1.0", - "postcss": "^8.4.33", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.4", - "postcss-modules-scope": "^3.1.1", - "postcss-modules-values": "^4.0.0", - "postcss-value-parser": "^4.2.0", - "semver": "^7.5.4" + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "@rspack/core": "0.x || 1.x", - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "@rspack/core": { - "optional": true - }, - "webpack": { - "optional": true - } - } - }, - "node_modules/css-select": { - "version": "5.1.0", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.1.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" + "node": ">=10.13.0" } }, - "node_modules/css-what": { - "version": "6.1.0", - "dev": true, + "node_modules/entities": { + "version": "4.5.0", "license": "BSD-2-Clause", "engines": { - "node": ">= 6" + "node": ">=0.12" }, "funding": { - "url": "https://github.com/sponsors/fb55" + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/cssesc": { - "version": "3.0.0", + "node_modules/envinfo": { + "version": "7.11.1", "dev": true, "license": "MIT", "bin": { - "cssesc": "bin/cssesc" + "envinfo": "dist/cli.js" }, "engines": { "node": ">=4" } }, - "node_modules/cssstyle": { - "version": "3.0.0", + "node_modules/error-ex": { + "version": "1.3.2", "dev": true, "license": "MIT", "dependencies": { - "rrweb-cssom": "^0.6.0" - }, - "engines": { - "node": ">=14" + "is-arrayish": "^0.2.1" } }, - "node_modules/csstype": { - "version": "3.1.2", - "license": "MIT" - }, - "node_modules/cubic2quad": { - "version": "1.2.1", + "node_modules/error-ex/node_modules/is-arrayish": { + "version": "0.2.1", "dev": true, "license": "MIT" }, - "node_modules/d": { - "version": "1.0.1", - "dev": true, - "license": "ISC", - "dependencies": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" - } - }, - "node_modules/data-urls": { - "version": "5.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "whatwg-mimetype": "^4.0.0", - "whatwg-url": "^14.0.0" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/debug": { - "version": "4.3.4", - "dev": true, + "node_modules/es-abstract": { + "version": "1.20.2", "license": "MIT", "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.1.2", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.2", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "string.prototype.trimend": "^1.0.5", + "string.prototype.trimstart": "^1.0.5", + "unbox-primitive": "^1.0.2" }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decamelize": { - "version": "4.0.0", - "dev": true, - "license": "MIT", "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/decamelize-keys": { - "version": "1.1.0", - "dev": true, + "node_modules/es-define-property": { + "version": "1.0.0", "license": "MIT", "dependencies": { - "decamelize": "^1.1.0", - "map-obj": "^1.0.0" + "get-intrinsic": "^1.2.4" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/decamelize-keys/node_modules/decamelize": { - "version": "1.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, - "node_modules/decamelize-keys/node_modules/map-obj": { - "version": "1.0.1", - "dev": true, + "node_modules/es-errors": { + "version": "1.3.0", "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, - "node_modules/decimal.js": { - "version": "10.4.3", + "node_modules/es-module-lexer": { + "version": "1.2.1", "dev": true, "license": "MIT" }, - "node_modules/decompress-response": { - "version": "6.0.0", + "node_modules/es-to-primitive": { + "version": "1.2.1", "license": "MIT", "dependencies": { - "mimic-response": "^3.1.0" - }, - "engines": { - "node": ">=10" + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/decompress-response/node_modules/mimic-response": { - "version": "3.1.0", - "license": "MIT", "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/deep-equal": { - "version": "1.0.1", + "node_modules/es5-ext": { + "version": "0.10.64", "dev": true, - "license": "MIT" + "hasInstallScript": true, + "license": "ISC", + "dependencies": { + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.3", + "esniff": "^2.0.1", + "next-tick": "^1.1.0" + }, + "engines": { + "node": ">=0.10" + } }, - "node_modules/deep-extend": { - "version": "0.6.0", + "node_modules/es6-iterator": { + "version": "2.0.3", "dev": true, "license": "MIT", - "optional": true, - "engines": { - "node": ">=4.0.0" + "dependencies": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" } }, - "node_modules/deep-is": { - "version": "0.1.4", + "node_modules/es6-promise": { + "version": "4.2.8", "license": "MIT" }, - "node_modules/deepmerge": { - "version": "4.2.2", + "node_modules/es6-promisify": { + "version": "5.0.0", "license": "MIT", - "engines": { - "node": ">=0.10.0" + "dependencies": { + "es6-promise": "^4.0.3" } }, - "node_modules/default-gateway": { - "version": "6.0.3", + "node_modules/es6-symbol": { + "version": "3.1.3", "dev": true, - "license": "BSD-2-Clause", + "license": "ISC", "dependencies": { - "execa": "^5.0.0" - }, - "engines": { - "node": ">= 10" + "d": "^1.0.1", + "ext": "^1.1.2" } }, - "node_modules/defer-to-connect": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">=10" + "node_modules/es6-weak-map": { + "version": "2.0.3", + "dev": true, + "license": "ISC", + "dependencies": { + "d": "1", + "es5-ext": "^0.10.46", + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.1" } }, - "node_modules/define-data-property": { - "version": "1.1.4", + "node_modules/esbuild": { + "version": "0.15.13", + "dev": true, + "hasInstallScript": true, "license": "MIT", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" + "bin": { + "esbuild": "bin/esbuild" }, "engines": { - "node": ">= 0.4" + "node": ">=12" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "optionalDependencies": { + "@esbuild/android-arm": "0.15.13", + "@esbuild/linux-loong64": "0.15.13", + "esbuild-android-64": "0.15.13", + "esbuild-android-arm64": "0.15.13", + "esbuild-darwin-64": "0.15.13", + "esbuild-darwin-arm64": "0.15.13", + "esbuild-freebsd-64": "0.15.13", + "esbuild-freebsd-arm64": "0.15.13", + "esbuild-linux-32": "0.15.13", + "esbuild-linux-64": "0.15.13", + "esbuild-linux-arm": "0.15.13", + "esbuild-linux-arm64": "0.15.13", + "esbuild-linux-mips64le": "0.15.13", + "esbuild-linux-ppc64le": "0.15.13", + "esbuild-linux-riscv64": "0.15.13", + "esbuild-linux-s390x": "0.15.13", + "esbuild-netbsd-64": "0.15.13", + "esbuild-openbsd-64": "0.15.13", + "esbuild-sunos-64": "0.15.13", + "esbuild-windows-32": "0.15.13", + "esbuild-windows-64": "0.15.13", + "esbuild-windows-arm64": "0.15.13" } }, - "node_modules/define-lazy-prop": { - "version": "2.0.0", + "node_modules/esbuild-loader": { + "version": "2.20.0", "dev": true, "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/define-properties": { - "version": "1.1.4", - "license": "MIT", "dependencies": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" + "esbuild": "^0.15.6", + "joycon": "^3.0.1", + "json5": "^2.2.0", + "loader-utils": "^2.0.0", + "tapable": "^2.2.0", + "webpack-sources": "^2.2.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/privatenumber/esbuild-loader?sponsor=1" + }, + "peerDependencies": { + "webpack": "^4.40.0 || ^5.0.0" } }, - "node_modules/delayed-stream": { - "version": "1.0.0", + "node_modules/esbuild/node_modules/esbuild-darwin-arm64": { + "version": "0.15.13", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=0.4.0" + "node": ">=12" } }, - "node_modules/delegates": { - "version": "1.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/depd": { - "version": "1.1.2", - "dev": true, + "node_modules/escalade": { + "version": "3.1.2", "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=6" } }, - "node_modules/des.js": { - "version": "1.1.0", + "node_modules/escape-html": { + "version": "1.0.3", + "license": "MIT" + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", "license": "MIT", - "dependencies": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/destroy": { - "version": "1.2.0", + "node_modules/eslint": { + "version": "8.56.0", "dev": true, "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.56.0", + "@humanwhocodes/config-array": "^0.11.13", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/detect-libc": { - "version": "2.0.2", + "node_modules/eslint-config-prettier": { + "version": "9.1.0", "dev": true, - "license": "Apache-2.0", - "optional": true, - "engines": { - "node": ">=8" + "license": "MIT", + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" } }, - "node_modules/detect-node": { - "version": "2.1.0", - "dev": true, - "license": "MIT" + "node_modules/eslint-plugin-aws-toolkits": { + "resolved": "plugins/eslint-plugin-aws-toolkits", + "link": true }, - "node_modules/diff": { - "version": "5.1.0", + "node_modules/eslint-plugin-header": { + "version": "3.1.1", "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/diffie-hellman": { - "version": "5.0.3", "license": "MIT", - "dependencies": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" + "peerDependencies": { + "eslint": ">=7.7.0" } }, - "node_modules/diffie-hellman/node_modules/bn.js": { - "version": "4.12.0", - "license": "MIT" - }, - "node_modules/dir-glob": { - "version": "3.0.1", + "node_modules/eslint-plugin-prettier": { + "version": "5.1.3", "dev": true, "license": "MIT", "dependencies": { - "path-type": "^4.0.0" + "prettier-linter-helpers": "^1.0.0", + "synckit": "^0.8.6" }, "engines": { - "node": ">=8" + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint-plugin-prettier" + }, + "peerDependencies": { + "@types/eslint": ">=8.0.0", + "eslint": ">=8.0.0", + "eslint-config-prettier": "*", + "prettier": ">=3.0.0" + }, + "peerDependenciesMeta": { + "@types/eslint": { + "optional": true + }, + "eslint-config-prettier": { + "optional": true + } } }, - "node_modules/dns-equal": { - "version": "1.0.0", + "node_modules/eslint-plugin-security-node": { + "version": "1.1.4", "dev": true, - "license": "MIT" + "license": "ISC", + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/dns-packet": { - "version": "5.4.0", + "node_modules/eslint-plugin-unicorn": { + "version": "54.0.0", "dev": true, "license": "MIT", "dependencies": { - "@leichtgewicht/ip-codec": "^2.0.1" + "@babel/helper-validator-identifier": "^7.24.5", + "@eslint-community/eslint-utils": "^4.4.0", + "@eslint/eslintrc": "^3.0.2", + "ci-info": "^4.0.0", + "clean-regexp": "^1.0.0", + "core-js-compat": "^3.37.0", + "esquery": "^1.5.0", + "indent-string": "^4.0.0", + "is-builtin-module": "^3.2.1", + "jsesc": "^3.0.2", + "pluralize": "^8.0.0", + "read-pkg-up": "^7.0.1", + "regexp-tree": "^0.1.27", + "regjsparser": "^0.10.0", + "semver": "^7.6.1", + "strip-indent": "^3.0.0" }, "engines": { - "node": ">=6" + "node": ">=18.18" + }, + "funding": { + "url": "https://github.com/sindresorhus/eslint-plugin-unicorn?sponsor=1" + }, + "peerDependencies": { + "eslint": ">=8.56.0" } }, - "node_modules/doctrine": { - "version": "3.0.0", + "node_modules/eslint-plugin-unicorn/node_modules/@eslint/eslintrc": { + "version": "3.1.0", "dev": true, - "license": "Apache-2.0", + "license": "MIT", "dependencies": { - "esutils": "^2.0.2" + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" }, "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/dom-serializer": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + "url": "https://opencollective.com/eslint" } }, - "node_modules/domelementtype": { - "version": "2.3.0", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "BSD-2-Clause" - }, - "node_modules/domhandler": { - "version": "5.0.3", - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "^2.3.0" - }, + "node_modules/eslint-plugin-unicorn/node_modules/eslint-visitor-keys": { + "version": "4.0.0", + "dev": true, + "license": "Apache-2.0", "engines": { - "node": ">= 4" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" + "url": "https://opencollective.com/eslint" } }, - "node_modules/domutils": { - "version": "3.1.0", + "node_modules/eslint-plugin-unicorn/node_modules/espree": { + "version": "10.1.0", + "dev": true, "license": "BSD-2-Clause", "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" + "acorn": "^8.12.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.0.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/duplexer": { - "version": "0.1.2", - "license": "MIT" - }, - "node_modules/duplexify": { - "version": "3.7.1", - "dev": true, - "license": "MIT", - "dependencies": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - } - }, - "node_modules/duplexify/node_modules/readable-stream": { - "version": "2.3.8", - "dev": true, - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "url": "https://opencollective.com/eslint" } }, - "node_modules/duplexify/node_modules/safe-buffer": { - "version": "5.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/duplexify/node_modules/string_decoder": { - "version": "1.1.1", + "node_modules/eslint-plugin-unicorn/node_modules/globals": { + "version": "14.0.0", "dev": true, "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "license": "MIT" - }, - "node_modules/ee-first": { - "version": "1.1.1", - "dev": true, - "license": "MIT" - }, - "node_modules/electron-to-chromium": { - "version": "1.4.812", + "node_modules/eslint-scope": { + "version": "5.1.1", "dev": true, - "license": "ISC" - }, - "node_modules/elliptic": { - "version": "6.5.7", - "license": "MIT", + "license": "BSD-2-Clause", "dependencies": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/elliptic/node_modules/bn.js": { - "version": "4.12.0", - "license": "MIT" - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "license": "MIT" - }, - "node_modules/emojis-list": { - "version": "3.0.0", - "dev": true, - "license": "MIT", + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, "engines": { - "node": ">= 4" + "node": ">=8.0.0" } }, - "node_modules/enabled": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/encodeurl": { - "version": "1.0.2", + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", "dev": true, - "license": "MIT", + "license": "Apache-2.0", "engines": { - "node": ">= 0.8" - } - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "license": "MIT", - "dependencies": { - "once": "^1.4.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/enhanced-resolve": { - "version": "5.17.1", + "node_modules/eslint/node_modules/ansi-regex": { + "version": "5.0.1", "dev": true, "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, "engines": { - "node": ">=10.13.0" + "node": ">=8" } - }, - "node_modules/entities": { - "version": "4.5.0", + }, + "node_modules/eslint/node_modules/eslint-scope": { + "version": "7.2.2", + "dev": true, "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, "engines": { - "node": ">=0.12" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "url": "https://opencollective.com/eslint" } }, - "node_modules/envinfo": { - "version": "7.11.1", + "node_modules/eslint/node_modules/estraverse": { + "version": "5.3.0", "dev": true, - "license": "MIT", - "bin": { - "envinfo": "dist/cli.js" - }, + "license": "BSD-2-Clause", "engines": { - "node": ">=4" + "node": ">=4.0" } }, - "node_modules/error-ex": { - "version": "1.3.2", + "node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", "dev": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "is-arrayish": "^0.2.1" + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" } }, - "node_modules/error-ex/node_modules/is-arrayish": { - "version": "0.2.1", + "node_modules/eslint/node_modules/strip-ansi": { + "version": "6.0.1", "dev": true, - "license": "MIT" - }, - "node_modules/es-abstract": { - "version": "1.20.2", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.1.2", - "get-symbol-description": "^1.0.0", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "is-callable": "^1.2.4", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.2", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "string.prototype.trimend": "^1.0.5", - "string.prototype.trimstart": "^1.0.5", - "unbox-primitive": "^1.0.2" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/es-define-property": { - "version": "1.0.0", - "license": "MIT", + "node_modules/esniff": { + "version": "2.0.1", + "dev": true, + "license": "ISC", "dependencies": { - "get-intrinsic": "^1.2.4" + "d": "^1.0.1", + "es5-ext": "^0.10.62", + "event-emitter": "^0.3.5", + "type": "^2.7.2" }, "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-errors": { - "version": "1.3.0", - "license": "MIT", - "engines": { - "node": ">= 0.4" + "node": ">=0.10" } }, - "node_modules/es-module-lexer": { - "version": "1.2.1", + "node_modules/esniff/node_modules/type": { + "version": "2.7.3", "dev": true, - "license": "MIT" + "license": "ISC" }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "license": "MIT", + "node_modules/espree": { + "version": "9.6.1", + "dev": true, + "license": "BSD-2-Clause", "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" }, "engines": { - "node": ">= 0.4" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://opencollective.com/eslint" } }, - "node_modules/es5-ext": { - "version": "0.10.64", + "node_modules/esprima": { + "version": "4.0.1", + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.5.0", "dev": true, - "hasInstallScript": true, - "license": "ISC", + "license": "BSD-3-Clause", "dependencies": { - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.3", - "esniff": "^2.0.1", - "next-tick": "^1.1.0" + "estraverse": "^5.1.0" }, "engines": { "node": ">=0.10" } }, - "node_modules/es6-iterator": { - "version": "2.0.3", + "node_modules/esquery/node_modules/estraverse": { + "version": "5.3.0", "dev": true, - "license": "MIT", - "dependencies": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" } }, - "node_modules/es6-promise": { - "version": "4.2.8", - "license": "MIT" - }, - "node_modules/es6-promisify": { - "version": "5.0.0", - "license": "MIT", + "node_modules/esrecurse": { + "version": "4.3.0", + "dev": true, + "license": "BSD-2-Clause", "dependencies": { - "es6-promise": "^4.0.3" + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" } }, - "node_modules/es6-symbol": { - "version": "3.1.3", + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.2.0", "dev": true, - "license": "ISC", - "dependencies": { - "d": "^1.0.1", - "ext": "^1.1.2" + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" } }, - "node_modules/es6-weak-map": { + "node_modules/estraverse": { + "version": "4.3.0", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "license": "MIT" + }, + "node_modules/esutils": { "version": "2.0.3", "dev": true, - "license": "ISC", - "dependencies": { - "d": "1", - "es5-ext": "^0.10.46", - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.1" + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" } }, - "node_modules/esbuild": { - "version": "0.15.13", + "node_modules/etag": { + "version": "1.8.1", "dev": true, - "hasInstallScript": true, "license": "MIT", - "bin": { - "esbuild": "bin/esbuild" - }, "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.15.13", - "@esbuild/linux-loong64": "0.15.13", - "esbuild-android-64": "0.15.13", - "esbuild-android-arm64": "0.15.13", - "esbuild-darwin-64": "0.15.13", - "esbuild-darwin-arm64": "0.15.13", - "esbuild-freebsd-64": "0.15.13", - "esbuild-freebsd-arm64": "0.15.13", - "esbuild-linux-32": "0.15.13", - "esbuild-linux-64": "0.15.13", - "esbuild-linux-arm": "0.15.13", - "esbuild-linux-arm64": "0.15.13", - "esbuild-linux-mips64le": "0.15.13", - "esbuild-linux-ppc64le": "0.15.13", - "esbuild-linux-riscv64": "0.15.13", - "esbuild-linux-s390x": "0.15.13", - "esbuild-netbsd-64": "0.15.13", - "esbuild-openbsd-64": "0.15.13", - "esbuild-sunos-64": "0.15.13", - "esbuild-windows-32": "0.15.13", - "esbuild-windows-64": "0.15.13", - "esbuild-windows-arm64": "0.15.13" + "node": ">= 0.6" } }, - "node_modules/esbuild-loader": { - "version": "2.20.0", + "node_modules/event-emitter": { + "version": "0.3.5", "dev": true, "license": "MIT", "dependencies": { - "esbuild": "^0.15.6", - "joycon": "^3.0.1", - "json5": "^2.2.0", - "loader-utils": "^2.0.0", - "tapable": "^2.2.0", - "webpack-sources": "^2.2.0" - }, - "funding": { - "url": "https://github.com/privatenumber/esbuild-loader?sponsor=1" - }, - "peerDependencies": { - "webpack": "^4.40.0 || ^5.0.0" + "d": "1", + "es5-ext": "~0.10.14" + } + }, + "node_modules/event-stream": { + "version": "3.3.5", + "license": "MIT", + "dependencies": { + "duplexer": "^0.1.1", + "from": "^0.1.7", + "map-stream": "0.0.7", + "pause-stream": "^0.0.11", + "split": "^1.0.1", + "stream-combiner": "^0.2.2", + "through": "^2.3.8" } }, - "node_modules/esbuild/node_modules/esbuild-darwin-arm64": { - "version": "0.15.13", - "cpu": [ - "arm64" - ], + "node_modules/eventemitter3": { + "version": "4.0.7", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } + "license": "MIT" }, - "node_modules/escalade": { - "version": "3.1.2", + "node_modules/events": { + "version": "1.1.1", "license": "MIT", "engines": { - "node": ">=6" + "node": ">=0.4.x" } }, - "node_modules/escape-html": { + "node_modules/evp_bytestokey": { "version": "1.0.3", - "license": "MIT" + "license": "MIT", + "dependencies": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", + "node_modules/execa": { + "version": "5.1.1", + "dev": true, "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/eslint": { - "version": "8.56.0", + "node_modules/execa/node_modules/get-stream": { + "version": "6.0.1", "dev": true, "license": "MIT", - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.4", - "@eslint/js": "8.56.0", - "@humanwhocodes/config-array": "^0.11.13", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "@ungap/structured-clone": "^1.2.0", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=10" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-config-prettier": { - "version": "9.1.0", + "node_modules/expand-template": { + "version": "2.0.3", "dev": true, - "license": "MIT", - "bin": { - "eslint-config-prettier": "bin/cli.js" + "license": "(MIT OR WTFPL)", + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/express": { + "version": "4.21.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.21.1.tgz", + "integrity": "sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.3", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.7.1", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.3.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.3", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.10", + "proxy-addr": "~2.0.7", + "qs": "6.13.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.19.0", + "serve-static": "1.16.2", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" }, - "peerDependencies": { - "eslint": ">=7.0.0" + "engines": { + "node": ">= 0.10.0" } }, - "node_modules/eslint-plugin-aws-toolkits": { - "resolved": "plugins/eslint-plugin-aws-toolkits", - "link": true + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "dev": true, + "license": "MIT" }, - "node_modules/eslint-plugin-header": { - "version": "3.1.1", + "node_modules/express/node_modules/debug": { + "version": "2.6.9", "dev": true, "license": "MIT", - "peerDependencies": { - "eslint": ">=7.7.0" + "dependencies": { + "ms": "2.0.0" } }, - "node_modules/eslint-plugin-prettier": { - "version": "5.1.3", + "node_modules/express/node_modules/depd": { + "version": "2.0.0", "dev": true, "license": "MIT", - "dependencies": { - "prettier-linter-helpers": "^1.0.0", - "synckit": "^0.8.6" - }, "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint-plugin-prettier" - }, - "peerDependencies": { - "@types/eslint": ">=8.0.0", - "eslint": ">=8.0.0", - "eslint-config-prettier": "*", - "prettier": ">=3.0.0" - }, - "peerDependenciesMeta": { - "@types/eslint": { - "optional": true - }, - "eslint-config-prettier": { - "optional": true - } + "node": ">= 0.8" } }, - "node_modules/eslint-plugin-security-node": { - "version": "1.1.4", + "node_modules/express/node_modules/encodeurl": { + "version": "2.0.0", "dev": true, - "license": "ISC", + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">= 0.8" } }, - "node_modules/eslint-plugin-unicorn": { - "version": "54.0.0", + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/express/node_modules/path-to-regexp": { + "version": "0.1.10", + "dev": true, + "license": "MIT" + }, + "node_modules/express/node_modules/statuses": { + "version": "2.0.1", "dev": true, "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.24.5", - "@eslint-community/eslint-utils": "^4.4.0", - "@eslint/eslintrc": "^3.0.2", - "ci-info": "^4.0.0", - "clean-regexp": "^1.0.0", - "core-js-compat": "^3.37.0", - "esquery": "^1.5.0", - "indent-string": "^4.0.0", - "is-builtin-module": "^3.2.1", - "jsesc": "^3.0.2", - "pluralize": "^8.0.0", - "read-pkg-up": "^7.0.1", - "regexp-tree": "^0.1.27", - "regjsparser": "^0.10.0", - "semver": "^7.6.1", - "strip-indent": "^3.0.0" - }, "engines": { - "node": ">=18.18" - }, - "funding": { - "url": "https://github.com/sindresorhus/eslint-plugin-unicorn?sponsor=1" - }, - "peerDependencies": { - "eslint": ">=8.56.0" + "node": ">= 0.8" + } + }, + "node_modules/ext": { + "version": "1.6.0", + "dev": true, + "license": "ISC", + "dependencies": { + "type": "^2.5.0" } }, - "node_modules/eslint-plugin-unicorn/node_modules/@eslint/eslintrc": { - "version": "3.1.0", + "node_modules/ext/node_modules/type": { + "version": "2.7.2", "dev": true, + "license": "ISC" + }, + "node_modules/fancy-log": { + "version": "1.3.3", "license": "MIT", "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^10.0.1", - "globals": "^14.0.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" + "ansi-gray": "^0.1.1", + "color-support": "^1.1.3", + "parse-node-version": "^1.0.0", + "time-stamp": "^1.0.0" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">= 0.10" } }, - "node_modules/eslint-plugin-unicorn/node_modules/eslint-visitor-keys": { - "version": "4.0.0", + "node_modules/fast-deep-equal": { + "version": "3.1.3", "dev": true, - "license": "Apache-2.0", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } + "license": "MIT" }, - "node_modules/eslint-plugin-unicorn/node_modules/espree": { - "version": "10.1.0", + "node_modules/fast-diff": { + "version": "1.3.0", "dev": true, - "license": "BSD-2-Clause", + "license": "Apache-2.0" + }, + "node_modules/fast-fifo": { + "version": "1.3.2", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "dev": true, + "license": "MIT", "dependencies": { - "acorn": "^8.12.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^4.0.0" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">=8.6.0" } }, - "node_modules/eslint-plugin-unicorn/node_modules/globals": { - "version": "14.0.0", + "node_modules/fast-json-patch": { + "version": "3.1.1", + "license": "MIT" + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", "dev": true, + "license": "MIT" + }, + "node_modules/fast-xml-parser": { + "version": "4.4.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + }, + { + "type": "paypal", + "url": "https://paypal.me/naturalintelligence" + } + ], "license": "MIT", - "engines": { - "node": ">=18" + "dependencies": { + "strnum": "^1.0.5" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "bin": { + "fxparser": "src/cli/cli.js" } }, - "node_modules/eslint-scope": { - "version": "5.1.1", + "node_modules/fastest-levenshtein": { + "version": "1.0.12", "dev": true, - "license": "BSD-2-Clause", + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.13.0", + "dev": true, + "license": "ISC", "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" + "reusify": "^1.0.4" } }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", + "node_modules/faye-websocket": { + "version": "0.11.4", "dev": true, "license": "Apache-2.0", - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "dependencies": { + "websocket-driver": ">=0.5.1" }, - "funding": { - "url": "https://opencollective.com/eslint" + "engines": { + "node": ">=0.8.0" } }, - "node_modules/eslint/node_modules/ansi-regex": { - "version": "5.0.1", + "node_modules/fd-slicer": { + "version": "1.1.0", "dev": true, "license": "MIT", - "engines": { - "node": ">=8" + "dependencies": { + "pend": "~1.2.0" } }, - "node_modules/eslint/node_modules/eslint-scope": { - "version": "7.2.2", + "node_modules/fecha": { + "version": "4.2.1", + "license": "MIT" + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", "dev": true, - "license": "BSD-2-Clause", + "license": "MIT", "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" + "flat-cache": "^3.0.4" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/eslint/node_modules/estraverse": { - "version": "5.3.0", + "node_modules/file-loader": { + "version": "6.2.0", "dev": true, - "license": "BSD-2-Clause", + "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, "engines": { - "node": ">=4.0" + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" } }, - "node_modules/eslint/node_modules/glob-parent": { - "version": "6.0.2", + "node_modules/fill-range": { + "version": "7.1.1", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "is-glob": "^4.0.3" + "to-regex-range": "^5.0.1" }, "engines": { - "node": ">=10.13.0" + "node": ">=8" } }, - "node_modules/eslint/node_modules/strip-ansi": { - "version": "6.0.1", + "node_modules/finalhandler": { + "version": "1.3.1", "dev": true, "license": "MIT", "dependencies": { - "ansi-regex": "^5.0.1" + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" }, "engines": { - "node": ">=8" + "node": ">= 0.8" } }, - "node_modules/esniff": { - "version": "2.0.1", + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "d": "^1.0.1", - "es5-ext": "^0.10.62", - "event-emitter": "^0.3.5", - "type": "^2.7.2" - }, + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/encodeurl": { + "version": "2.0.0", + "dev": true, + "license": "MIT", "engines": { - "node": ">=0.10" + "node": ">= 0.8" } }, - "node_modules/esniff/node_modules/type": { - "version": "2.7.3", + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", "dev": true, - "license": "ISC" + "license": "MIT" }, - "node_modules/espree": { - "version": "9.6.1", + "node_modules/finalhandler/node_modules/statuses": { + "version": "2.0.1", "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - }, + "license": "MIT", "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">= 0.8" } }, - "node_modules/esprima": { - "version": "4.0.1", - "license": "BSD-2-Clause", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" + "node_modules/find-up": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/esquery": { - "version": "1.5.0", + "node_modules/flat": { + "version": "5.0.2", "dev": true, "license": "BSD-3-Clause", + "bin": { + "flat": "cli.js" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "dev": true, + "license": "MIT", "dependencies": { - "estraverse": "^5.1.0" + "flatted": "^3.1.0", + "rimraf": "^3.0.2" }, "engines": { - "node": ">=0.10" + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/esquery/node_modules/estraverse": { - "version": "5.3.0", + "node_modules/flatted": { + "version": "3.2.2", "dev": true, - "license": "BSD-2-Clause", + "license": "ISC" + }, + "node_modules/fn.name": { + "version": "1.1.0", + "license": "MIT" + }, + "node_modules/follow-redirects": { + "version": "1.15.6", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", "engines": { "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } } }, - "node_modules/esrecurse": { - "version": "4.3.0", - "dev": true, - "license": "BSD-2-Clause", + "node_modules/for-each": { + "version": "0.3.3", + "license": "MIT", "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" + "is-callable": "^1.1.3" } }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.2.0", - "dev": true, - "license": "BSD-2-Clause", + "node_modules/foreground-child": { + "version": "3.1.1", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, "engines": { - "node": ">=4.0" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/estraverse": { - "version": "4.3.0", - "dev": true, - "license": "BSD-2-Clause", + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "license": "ISC", "engines": { - "node": ">=4.0" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/estree-walker": { - "version": "2.0.2", - "license": "MIT" - }, - "node_modules/esutils": { - "version": "2.0.3", + "node_modules/form-data": { + "version": "4.0.0", "dev": true, - "license": "BSD-2-Clause", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 6" } }, - "node_modules/etag": { - "version": "1.8.1", + "node_modules/forwarded": { + "version": "0.2.0", "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" } }, - "node_modules/event-emitter": { - "version": "0.3.5", + "node_modules/fresh": { + "version": "0.5.2", "dev": true, "license": "MIT", - "dependencies": { - "d": "1", - "es5-ext": "~0.10.14" + "engines": { + "node": ">= 0.6" } }, - "node_modules/event-stream": { - "version": "3.3.5", + "node_modules/from": { + "version": "0.1.7", + "license": "MIT" + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "dev": true, "license": "MIT", - "dependencies": { - "duplexer": "^0.1.1", - "from": "^0.1.7", - "map-stream": "0.0.7", - "pause-stream": "^0.0.11", - "split": "^1.0.1", - "stream-combiner": "^0.2.2", - "through": "^2.3.8" - } + "optional": true }, - "node_modules/eventemitter3": { - "version": "4.0.7", + "node_modules/fs-monkey": { + "version": "1.0.3", "dev": true, - "license": "MIT" + "license": "Unlicense" }, - "node_modules/events": { - "version": "1.1.1", + "node_modules/fs.realpath": { + "version": "1.0.0", + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.2", + "dev": true, "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=0.4.x" + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/evp_bytestokey": { - "version": "1.0.3", + "node_modules/function-bind": { + "version": "1.1.2", "license": "MIT", - "dependencies": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/execa": { - "version": "5.1.1", - "dev": true, + "node_modules/function.prototype.name": { + "version": "1.1.5", "license": "MIT", "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/execa/node_modules/get-stream": { - "version": "6.0.1", - "dev": true, + "node_modules/functions-have-names": { + "version": "1.2.3", "license": "MIT", - "engines": { - "node": ">=10" - }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/expand-template": { - "version": "2.0.3", + "node_modules/geometry-interfaces": { + "version": "1.1.4", "dev": true, - "license": "(MIT OR WTFPL)", - "optional": true, + "license": "MIT" + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "license": "ISC", "engines": { - "node": ">=6" + "node": "6.* || 8.* || >= 10.*" } }, - "node_modules/express": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.21.1.tgz", - "integrity": "sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==", - "dev": true, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "license": "MIT", "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.3", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.7.1", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.3.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.3", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.10", - "proxy-addr": "~2.0.7", - "qs": "6.13.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.19.0", - "serve-static": "1.16.2", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" }, "engines": { - "node": ">= 0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/express/node_modules/array-flatten": { - "version": "1.1.1", + "node_modules/get-stdin": { + "version": "8.0.0", "dev": true, - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/express/node_modules/debug": { - "version": "2.6.9", - "dev": true, + "node_modules/get-stream": { + "version": "5.2.0", "license": "MIT", "dependencies": { - "ms": "2.0.0" + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/express/node_modules/depd": { - "version": "2.0.0", - "dev": true, + "node_modules/get-symbol-description": { + "version": "1.0.0", "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, "engines": { - "node": ">= 0.8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/express/node_modules/encodeurl": { - "version": "2.0.0", + "node_modules/github-from-package": { + "version": "0.0.0", "dev": true, "license": "MIT", + "optional": true + }, + "node_modules/glob": { + "version": "10.3.10", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, "engines": { - "node": ">= 0.8" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/express/node_modules/ms": { - "version": "2.0.0", + "node_modules/glob-parent": { + "version": "5.1.2", "dev": true, - "license": "MIT" + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } }, - "node_modules/express/node_modules/path-to-regexp": { - "version": "0.1.10", + "node_modules/glob-to-regexp": { + "version": "0.4.1", "dev": true, - "license": "MIT" + "license": "BSD-2-Clause" }, - "node_modules/express/node_modules/statuses": { + "node_modules/glob/node_modules/brace-expansion": { "version": "2.0.1", - "dev": true, "license": "MIT", - "engines": { - "node": ">= 0.8" + "dependencies": { + "balanced-match": "^1.0.0" } }, - "node_modules/ext": { - "version": "1.6.0", - "dev": true, + "node_modules/glob/node_modules/minimatch": { + "version": "9.0.3", "license": "ISC", "dependencies": { - "type": "^2.5.0" + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/ext/node_modules/type": { - "version": "2.7.2", + "node_modules/globals": { + "version": "13.24.0", "dev": true, - "license": "ISC" - }, - "node_modules/fancy-log": { - "version": "1.3.3", "license": "MIT", "dependencies": { - "ansi-gray": "^0.1.1", - "color-support": "^1.1.3", - "parse-node-version": "^1.0.0", - "time-stamp": "^1.0.0" + "type-fest": "^0.20.2" }, "engines": { - "node": ">= 0.10" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", + "node_modules/globals/node_modules/type-fest": { + "version": "0.20.2", "dev": true, - "license": "MIT" + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/fast-diff": { - "version": "1.3.0", + "node_modules/globby": { + "version": "11.1.0", "dev": true, - "license": "Apache-2.0" + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/fast-fifo": { - "version": "1.3.2", - "dev": true, - "license": "MIT" + "node_modules/gopd": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/fast-glob": { - "version": "3.3.2", - "dev": true, + "node_modules/got": { + "version": "11.8.5", "license": "MIT", "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" }, "engines": { - "node": ">=8.6.0" + "node": ">=10.19.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" } }, - "node_modules/fast-json-patch": { - "version": "3.1.1", - "license": "MIT" - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", + "node_modules/graceful-fs": { + "version": "4.2.11", "dev": true, - "license": "MIT" + "license": "ISC" }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", + "node_modules/graphemer": { + "version": "1.4.0", "dev": true, "license": "MIT" }, - "node_modules/fast-xml-parser": { - "version": "4.4.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/NaturalIntelligence" - }, - { - "type": "paypal", - "url": "https://paypal.me/naturalintelligence" - } - ], + "node_modules/gunzip-maybe": { + "version": "1.4.2", + "dev": true, "license": "MIT", "dependencies": { - "strnum": "^1.0.5" + "browserify-zlib": "^0.1.4", + "is-deflate": "^1.0.0", + "is-gzip": "^1.0.0", + "peek-stream": "^1.1.0", + "pumpify": "^1.3.3", + "through2": "^2.0.3" }, "bin": { - "fxparser": "src/cli/cli.js" + "gunzip-maybe": "bin.js" } }, - "node_modules/fastest-levenshtein": { - "version": "1.0.12", + "node_modules/handle-thing": { + "version": "2.0.1", "dev": true, "license": "MIT" }, - "node_modules/fastq": { - "version": "1.13.0", + "node_modules/hard-rejection": { + "version": "2.1.0", "dev": true, - "license": "ISC", - "dependencies": { - "reusify": "^1.0.4" + "license": "MIT", + "engines": { + "node": ">=6" } }, - "node_modules/faye-websocket": { - "version": "0.11.4", - "dev": true, - "license": "Apache-2.0", + "node_modules/has": { + "version": "1.0.3", + "license": "MIT", "dependencies": { - "websocket-driver": ">=0.5.1" + "function-bind": "^1.1.1" }, "engines": { - "node": ">=0.8.0" + "node": ">= 0.4.0" } }, - "node_modules/fd-slicer": { - "version": "1.1.0", - "dev": true, + "node_modules/has-bigints": { + "version": "1.0.2", "license": "MIT", - "dependencies": { - "pend": "~1.2.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/fecha": { - "version": "4.2.1", - "license": "MIT" - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", + "node_modules/has-flag": { + "version": "4.0.0", "dev": true, "license": "MIT", - "dependencies": { - "flat-cache": "^3.0.4" - }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=8" } }, - "node_modules/file-loader": { - "version": "6.2.0", - "dev": true, + "node_modules/has-property-descriptors": { + "version": "1.0.2", "license": "MIT", "dependencies": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" + "es-define-property": "^1.0.0" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "license": "MIT", "engines": { - "node": ">= 10.13.0" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "license": "MIT", + "engines": { + "node": ">= 0.4" }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/fill-range": { - "version": "7.1.1", - "dev": true, + "node_modules/has-tostringtag": { + "version": "1.0.0", "license": "MIT", "dependencies": { - "to-regex-range": "^5.0.1" + "has-symbols": "^1.0.2" }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/finalhandler": { - "version": "1.3.1", - "dev": true, + "node_modules/hash-base": { + "version": "3.1.0", "license": "MIT", "dependencies": { - "debug": "2.6.9", - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" }, "engines": { - "node": ">= 0.8" + "node": ">=4" } }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", + "node_modules/hash-sum": { + "version": "2.0.0", "dev": true, + "license": "MIT" + }, + "node_modules/hash.js": { + "version": "1.1.7", "license": "MIT", "dependencies": { - "ms": "2.0.0" + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" } }, - "node_modules/finalhandler/node_modules/encodeurl": { - "version": "2.0.0", - "dev": true, + "node_modules/hasown": { + "version": "2.0.2", "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, "engines": { - "node": ">= 0.8" + "node": ">= 0.4" } }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/finalhandler/node_modules/statuses": { - "version": "2.0.1", + "node_modules/he": { + "version": "1.2.0", "dev": true, "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/highlight.js": { + "version": "11.9.0", + "license": "BSD-3-Clause", "engines": { - "node": ">= 0.8" + "node": ">=12.0.0" } }, - "node_modules/find-up": { - "version": "5.0.0", - "dev": true, + "node_modules/hmac-drbg": { + "version": "1.0.1", "license": "MIT", "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/hosted-git-info": { + "version": "4.0.2", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/flat": { - "version": "5.0.2", + "node_modules/hpack.js": { + "version": "2.1.6", "dev": true, - "license": "BSD-3-Clause", - "bin": { - "flat": "cli.js" + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" } }, - "node_modules/flat-cache": { - "version": "3.0.4", + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.7", "dev": true, "license": "MIT", "dependencies": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "node_modules/flatted": { - "version": "3.2.2", + "node_modules/hpack.js/node_modules/safe-buffer": { + "version": "5.1.2", "dev": true, - "license": "ISC" - }, - "node_modules/fn.name": { - "version": "1.1.0", "license": "MIT" }, - "node_modules/follow-redirects": { - "version": "1.15.6", + "node_modules/hpack.js/node_modules/string_decoder": { + "version": "1.1.1", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "license": "MIT", - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/for-each": { - "version": "0.3.3", "license": "MIT", "dependencies": { - "is-callable": "^1.1.3" + "safe-buffer": "~5.1.0" } }, - "node_modules/foreground-child": { - "version": "3.1.1", - "license": "ISC", + "node_modules/html-encoding-sniffer": { + "version": "4.0.0", + "dev": true, + "license": "MIT", "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" + "whatwg-encoding": "^3.1.1" }, "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=18" } }, - "node_modules/foreground-child/node_modules/signal-exit": { - "version": "4.1.0", - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node_modules/html-entities": { + "version": "2.3.2", + "dev": true, + "license": "MIT" + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "dev": true, + "license": "MIT" + }, + "node_modules/htmlparser2": { + "version": "8.0.2", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "entities": "^4.4.0" } }, - "node_modules/form-data": { - "version": "4.0.0", + "node_modules/http-assert": { + "version": "1.5.0", "dev": true, "license": "MIT", "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "deep-equal": "~1.0.1", + "http-errors": "~1.8.0" }, "engines": { - "node": ">= 6" + "node": ">= 0.8" } }, - "node_modules/forwarded": { - "version": "0.2.0", + "node_modules/http-assert/node_modules/http-errors": { + "version": "1.8.1", "dev": true, "license": "MIT", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" + }, "engines": { "node": ">= 0.6" } }, - "node_modules/fresh": { - "version": "0.5.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.6" - } + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "license": "BSD-2-Clause" }, - "node_modules/from": { - "version": "0.1.7", + "node_modules/http-deceiver": { + "version": "1.2.7", + "dev": true, "license": "MIT" }, - "node_modules/fs-constants": { - "version": "1.0.0", + "node_modules/http-errors": { + "version": "2.0.0", "dev": true, "license": "MIT", - "optional": true - }, - "node_modules/fs-monkey": { - "version": "1.0.3", - "dev": true, - "license": "Unlicense" - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "license": "ISC" + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } }, - "node_modules/fsevents": { - "version": "2.3.2", + "node_modules/http-errors/node_modules/depd": { + "version": "2.0.0", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + "node": ">= 0.8" } }, - "node_modules/function-bind": { - "version": "1.1.2", + "node_modules/http-errors/node_modules/statuses": { + "version": "2.0.1", + "dev": true, "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 0.8" } }, - "node_modules/function.prototype.name": { - "version": "1.1.5", + "node_modules/http-parser-js": { + "version": "0.5.8", + "dev": true, + "license": "MIT" + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8.0.0" } }, - "node_modules/geometry-interfaces": { - "version": "1.1.4", + "node_modules/http-proxy-agent": { + "version": "4.0.1", "dev": true, - "license": "MIT" - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "license": "ISC", + "license": "MIT", + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, "engines": { - "node": "6.* || 8.* || >= 10.*" + "node": ">= 6" } }, - "node_modules/get-intrinsic": { - "version": "1.2.4", + "node_modules/http-proxy-middleware": { + "version": "2.0.6", + "dev": true, "license": "MIT", "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" }, "engines": { - "node": ">= 0.4" + "node": ">=12.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } } }, - "node_modules/get-stdin": { - "version": "8.0.0", + "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { + "version": "3.0.0", "dev": true, "license": "MIT", "engines": { @@ -11548,258 +12344,278 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/get-stream": { - "version": "5.2.0", + "node_modules/http2-wrapper": { + "version": "1.0.3", "license": "MIT", "dependencies": { - "pump": "^3.0.0" + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=10.19.0" } }, - "node_modules/get-symbol-description": { - "version": "1.0.0", + "node_modules/https-proxy-agent": { + "version": "5.0.0", + "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "agent-base": "6", + "debug": "4" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 6" } }, - "node_modules/github-from-package": { - "version": "0.0.0", + "node_modules/human-signals": { + "version": "2.1.0", "dev": true, - "license": "MIT", - "optional": true + "license": "Apache-2.0", + "engines": { + "node": ">=10.17.0" + } }, - "node_modules/glob": { - "version": "10.3.10", - "license": "ISC", - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" - }, + "node_modules/husky": { + "version": "9.0.7", + "dev": true, + "license": "MIT", "bin": { - "glob": "dist/esm/bin.mjs" + "husky": "bin.js" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=18" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/typicode" } }, - "node_modules/glob-parent": { - "version": "5.1.2", + "node_modules/i18n-ts": { + "version": "1.0.5", + "license": "MIT" + }, + "node_modules/iconv-lite": { + "version": "0.4.24", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "is-glob": "^4.0.1" + "safer-buffer": ">= 2.1.2 < 3" }, "engines": { - "node": ">= 6" + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "dev": true, + "license": "ISC", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/ieee754": { + "version": "1.1.13", + "license": "BSD-3-Clause" + }, + "node_modules/ignore": { + "version": "5.3.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" } }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", + "node_modules/immediate": { + "version": "3.0.6", + "dev": true, + "license": "MIT" + }, + "node_modules/immutable": { + "version": "4.3.0", + "license": "MIT" + }, + "node_modules/import-fresh": { + "version": "3.3.0", "dev": true, - "license": "BSD-2-Clause" - }, - "node_modules/glob/node_modules/brace-expansion": { - "version": "2.0.1", "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/glob/node_modules/minimatch": { - "version": "9.0.3", - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=6" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/globals": { - "version": "13.24.0", + "node_modules/import-local": { + "version": "3.0.3", "dev": true, "license": "MIT", "dependencies": { - "type-fest": "^0.20.2" + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/globals/node_modules/type-fest": { - "version": "0.20.2", + "node_modules/imurmurhash": { + "version": "0.1.4", "dev": true, - "license": "(MIT OR CC0-1.0)", + "license": "MIT", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.8.19" } }, - "node_modules/globby": { - "version": "11.1.0", + "node_modules/indent-string": { + "version": "4.0.0", "dev": true, "license": "MIT", - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/gopd": { - "version": "1.0.1", - "license": "MIT", + "node_modules/inflight": { + "version": "1.0.6", + "license": "ISC", "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "once": "^1.3.0", + "wrappy": "1" } }, - "node_modules/got": { - "version": "11.8.5", + "node_modules/inherits": { + "version": "2.0.4", + "license": "ISC" + }, + "node_modules/ini": { + "version": "1.3.8", + "dev": true, + "license": "ISC", + "optional": true + }, + "node_modules/internal-slot": { + "version": "1.0.3", "license": "MIT", "dependencies": { - "@sindresorhus/is": "^4.0.0", - "@szmarczak/http-timer": "^4.0.5", - "@types/cacheable-request": "^6.0.1", - "@types/responselike": "^1.0.0", - "cacheable-lookup": "^5.0.3", - "cacheable-request": "^7.0.2", - "decompress-response": "^6.0.0", - "http2-wrapper": "^1.0.0-beta.5.2", - "lowercase-keys": "^2.0.0", - "p-cancelable": "^2.0.0", - "responselike": "^2.0.0" + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" }, "engines": { - "node": ">=10.19.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/got?sponsor=1" + "node": ">= 0.4" } }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "dev": true, - "license": "ISC" - }, - "node_modules/graphemer": { - "version": "1.4.0", + "node_modules/interpret": { + "version": "3.1.1", "dev": true, - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } }, - "node_modules/gunzip-maybe": { - "version": "1.4.2", - "dev": true, + "node_modules/ip-regex": { + "version": "4.3.0", "license": "MIT", - "dependencies": { - "browserify-zlib": "^0.1.4", - "is-deflate": "^1.0.0", - "is-gzip": "^1.0.0", - "peek-stream": "^1.1.0", - "pumpify": "^1.3.3", - "through2": "^2.0.3" - }, - "bin": { - "gunzip-maybe": "bin.js" + "engines": { + "node": ">=8" } }, - "node_modules/handle-thing": { + "node_modules/ipaddr.js": { "version": "2.0.1", "dev": true, - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">= 10" + } }, - "node_modules/hard-rejection": { - "version": "2.1.0", - "dev": true, + "node_modules/is": { + "version": "3.3.0", "license": "MIT", "engines": { - "node": ">=6" + "node": "*" } }, - "node_modules/has": { - "version": "1.0.3", + "node_modules/is-arguments": { + "version": "1.1.1", "license": "MIT", "dependencies": { - "function-bind": "^1.1.1" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">= 0.4.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-bigints": { - "version": "1.0.2", + "node_modules/is-arrayish": { + "version": "0.3.2", + "license": "MIT" + }, + "node_modules/is-bigint": { + "version": "1.0.4", "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.1" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-flag": { - "version": "4.0.0", + "node_modules/is-binary-path": { + "version": "2.1.0", "dev": true, "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", + "node_modules/is-boolean-object": { + "version": "1.1.2", "license": "MIT", "dependencies": { - "es-define-property": "^1.0.0" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-proto": { - "version": "1.0.3", + "node_modules/is-buffer": { + "version": "1.1.6", + "dev": true, + "license": "MIT" + }, + "node_modules/is-builtin-module": { + "version": "3.2.1", + "dev": true, "license": "MIT", + "dependencies": { + "builtin-modules": "^3.3.0" + }, "engines": { - "node": ">= 0.4" + "node": ">=6" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/has-symbols": { - "version": "1.0.3", + "node_modules/is-callable": { + "version": "1.2.4", "license": "MIT", "engines": { "node": ">= 0.4" @@ -11808,288 +12624,266 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-tostringtag": { - "version": "1.0.0", + "node_modules/is-core-module": { + "version": "2.9.0", + "dev": true, "license": "MIT", "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" + "has": "^1.0.3" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hash-base": { - "version": "3.1.0", + "node_modules/is-date-object": { + "version": "1.0.5", "license": "MIT", "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hash-sum": { - "version": "2.0.0", + "node_modules/is-deflate": { + "version": "1.0.0", "dev": true, "license": "MIT" }, - "node_modules/hash.js": { - "version": "1.1.7", + "node_modules/is-directory": { + "version": "0.3.1", + "dev": true, "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" + "engines": { + "node": ">=0.10.0" } - }, - "node_modules/hasown": { - "version": "2.0.2", + }, + "node_modules/is-docker": { + "version": "2.2.1", + "dev": true, "license": "MIT", - "dependencies": { - "function-bind": "^1.1.2" + "bin": { + "is-docker": "cli.js" }, "engines": { - "node": ">= 0.4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/he": { - "version": "1.2.0", + "node_modules/is-extglob": { + "version": "2.1.1", "dev": true, "license": "MIT", - "bin": { - "he": "bin/he" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/highlight.js": { - "version": "11.9.0", - "license": "BSD-3-Clause", + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "license": "MIT", "engines": { - "node": ">=12.0.0" + "node": ">=8" } }, - "node_modules/hmac-drbg": { - "version": "1.0.1", + "node_modules/is-generator-function": { + "version": "1.0.10", "license": "MIT", "dependencies": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hosted-git-info": { - "version": "4.0.2", + "node_modules/is-glob": { + "version": "4.0.3", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "lru-cache": "^6.0.0" + "is-extglob": "^2.1.1" }, "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, - "node_modules/hpack.js": { - "version": "2.1.6", + "node_modules/is-gzip": { + "version": "1.0.0", "dev": true, "license": "MIT", - "dependencies": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/hpack.js/node_modules/readable-stream": { - "version": "2.3.7", + "node_modules/is-nan": { + "version": "1.3.2", "dev": true, "license": "MIT", "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hpack.js/node_modules/safe-buffer": { - "version": "5.1.2", - "dev": true, - "license": "MIT" + "node_modules/is-negative-zero": { + "version": "2.0.2", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/hpack.js/node_modules/string_decoder": { - "version": "1.1.1", + "node_modules/is-number": { + "version": "7.0.0", "dev": true, "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" + "engines": { + "node": ">=0.12.0" } }, - "node_modules/html-encoding-sniffer": { - "version": "4.0.0", - "dev": true, + "node_modules/is-number-object": { + "version": "1.0.7", "license": "MIT", "dependencies": { - "whatwg-encoding": "^3.1.1" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=18" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/html-entities": { - "version": "2.3.2", - "dev": true, - "license": "MIT" - }, - "node_modules/html-escaper": { - "version": "2.0.2", + "node_modules/is-path-inside": { + "version": "3.0.3", "dev": true, - "license": "MIT" - }, - "node_modules/htmlparser2": { - "version": "8.0.2", - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], "license": "MIT", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1", - "entities": "^4.4.0" + "engines": { + "node": ">=8" } }, - "node_modules/http-assert": { - "version": "1.5.0", + "node_modules/is-plain-obj": { + "version": "2.1.0", "dev": true, "license": "MIT", - "dependencies": { - "deep-equal": "~1.0.1", - "http-errors": "~1.8.0" - }, "engines": { - "node": ">= 0.8" + "node": ">=8" } }, - "node_modules/http-assert/node_modules/http-errors": { - "version": "1.8.1", + "node_modules/is-plain-object": { + "version": "2.0.4", "dev": true, "license": "MIT", "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.1" + "isobject": "^3.0.1" }, "engines": { - "node": ">= 0.6" + "node": ">=0.10.0" } }, - "node_modules/http-cache-semantics": { - "version": "4.1.1", - "license": "BSD-2-Clause" - }, - "node_modules/http-deceiver": { - "version": "1.2.7", + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", "dev": true, "license": "MIT" }, - "node_modules/http-errors": { - "version": "2.0.0", + "node_modules/is-promise": { + "version": "2.2.2", "dev": true, + "license": "MIT" + }, + "node_modules/is-regex": { + "version": "1.1.4", "license": "MIT", "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">= 0.8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/http-errors/node_modules/depd": { - "version": "2.0.0", - "dev": true, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", "license": "MIT", - "engines": { - "node": ">= 0.8" + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/http-errors/node_modules/statuses": { + "node_modules/is-stream": { "version": "2.0.1", - "dev": true, "license": "MIT", "engines": { - "node": ">= 0.8" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/http-parser-js": { - "version": "0.5.8", - "dev": true, - "license": "MIT" - }, - "node_modules/http-proxy": { - "version": "1.18.1", - "dev": true, + "node_modules/is-string": { + "version": "1.0.7", "license": "MIT", "dependencies": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=8.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/http-proxy-agent": { - "version": "4.0.1", - "dev": true, + "node_modules/is-symbol": { + "version": "1.0.4", "license": "MIT", "dependencies": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" + "has-symbols": "^1.0.2" }, "engines": { - "node": ">= 6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/http-proxy-middleware": { - "version": "2.0.6", - "dev": true, + "node_modules/is-typed-array": { + "version": "1.1.9", "license": "MIT", "dependencies": { - "@types/http-proxy": "^1.17.8", - "http-proxy": "^1.18.1", - "is-glob": "^4.0.1", - "is-plain-obj": "^3.0.0", - "micromatch": "^4.0.2" + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-abstract": "^1.20.0", + "for-each": "^0.3.3", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "@types/express": "^4.17.13" + "node": ">= 0.4" }, - "peerDependenciesMeta": { - "@types/express": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { - "version": "3.0.0", + "node_modules/is-unicode-supported": { + "version": "0.1.0", "dev": true, "license": "MIT", "engines": { @@ -12099,3129 +12893,3221 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/http2-wrapper": { - "version": "1.0.3", + "node_modules/is-url": { + "version": "1.2.4", + "license": "MIT" + }, + "node_modules/is-weakref": { + "version": "1.0.2", "license": "MIT", "dependencies": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.0.0" + "call-bind": "^1.0.2" }, - "engines": { - "node": ">=10.19.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/https-proxy-agent": { - "version": "5.0.0", + "node_modules/is-wsl": { + "version": "2.2.0", "dev": true, "license": "MIT", "dependencies": { - "agent-base": "6", - "debug": "4" + "is-docker": "^2.0.0" }, "engines": { - "node": ">= 6" - } - }, - "node_modules/human-signals": { - "version": "2.1.0", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=10.17.0" + "node": ">=8" } }, - "node_modules/husky": { - "version": "9.0.7", - "dev": true, + "node_modules/is2": { + "version": "2.0.7", "license": "MIT", - "bin": { - "husky": "bin.js" + "dependencies": { + "deep-is": "^0.1.3", + "ip-regex": "^4.1.0", + "is-url": "^1.2.4" }, "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/typicode" + "node": ">=v0.10.0" } }, - "node_modules/i18n-ts": { - "version": "1.0.5", + "node_modules/isarray": { + "version": "1.0.0", "license": "MIT" }, - "node_modules/iconv-lite": { - "version": "0.4.24", + "node_modules/isexe": { + "version": "2.0.0", + "license": "ISC" + }, + "node_modules/isobject": { + "version": "3.0.1", "dev": true, "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, "engines": { "node": ">=0.10.0" } }, - "node_modules/icss-utils": { - "version": "5.1.0", + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", "dev": true, - "license": "ISC", + "license": "BSD-3-Clause", "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">=8" } }, - "node_modules/ieee754": { - "version": "1.1.13", - "license": "BSD-3-Clause" - }, - "node_modules/ignore": { - "version": "5.3.1", + "node_modules/istanbul-lib-report": { + "version": "3.0.1", "dev": true, - "license": "MIT", + "license": "BSD-3-Clause", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": ">= 4" + "node": ">=10" } }, - "node_modules/immediate": { - "version": "3.0.6", + "node_modules/istanbul-reports": { + "version": "3.1.6", "dev": true, - "license": "MIT" - }, - "node_modules/immutable": { - "version": "4.3.0", - "license": "MIT" + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } }, - "node_modules/import-fresh": { - "version": "3.3.0", - "dev": true, - "license": "MIT", + "node_modules/jackspeak": { + "version": "2.3.6", + "license": "BlueOak-1.0.0", "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "@isaacs/cliui": "^8.0.2" }, "engines": { - "node": ">=6" + "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" } }, - "node_modules/import-local": { - "version": "3.0.3", + "node_modules/jest-worker": { + "version": "27.5.1", "dev": true, "license": "MIT", "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "engines": { - "node": ">=8" + "node": ">= 10.13.0" } }, - "node_modules/imurmurhash": { - "version": "0.1.4", + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", "dev": true, "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">=0.8.19" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/indent-string": { - "version": "4.0.0", + "node_modules/jmespath": { + "version": "0.16.0", + "license": "Apache-2.0", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/jose": { + "version": "5.4.1", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/panva" + } + }, + "node_modules/joycon": { + "version": "3.0.1", "dev": true, "license": "MIT", "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/inflight": { - "version": "1.0.6", - "license": "ISC", + "node_modules/js-tokens": { + "version": "4.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "license": "MIT", "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/inherits": { - "version": "2.0.4", - "license": "ISC" - }, - "node_modules/ini": { - "version": "1.3.8", + "node_modules/jsdom": { + "version": "23.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "cssstyle": "^3.0.0", + "data-urls": "^5.0.0", + "decimal.js": "^10.4.3", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^4.0.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.2", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.7", + "parse5": "^7.1.2", + "rrweb-cssom": "^0.6.0", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.1.3", + "w3c-xmlserializer": "^5.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^3.1.1", + "whatwg-mimetype": "^4.0.0", + "whatwg-url": "^14.0.0", + "ws": "^8.14.2", + "xml-name-validator": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "canvas": "^2.11.2" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsdom/node_modules/agent-base": { + "version": "7.1.0", "dev": true, - "license": "ISC", - "optional": true - }, - "node_modules/internal-slot": { - "version": "1.0.3", "license": "MIT", "dependencies": { - "get-intrinsic": "^1.1.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" + "debug": "^4.3.4" }, "engines": { - "node": ">= 0.4" + "node": ">= 14" } }, - "node_modules/interpret": { - "version": "3.1.1", + "node_modules/jsdom/node_modules/http-proxy-agent": { + "version": "7.0.0", "dev": true, "license": "MIT", + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, "engines": { - "node": ">=10.13.0" + "node": ">= 14" } }, - "node_modules/ip-regex": { - "version": "4.3.0", + "node_modules/jsdom/node_modules/https-proxy-agent": { + "version": "7.0.2", + "dev": true, "license": "MIT", + "dependencies": { + "agent-base": "^7.0.2", + "debug": "4" + }, "engines": { - "node": ">=8" + "node": ">= 14" } }, - "node_modules/ipaddr.js": { - "version": "2.0.1", + "node_modules/jsesc": { + "version": "3.0.2", "dev": true, "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, "engines": { - "node": ">= 10" + "node": ">=6" } }, - "node_modules/is": { - "version": "3.3.0", + "node_modules/json-buffer": { + "version": "3.0.1", + "license": "MIT" + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-to-typescript": { + "version": "13.1.1", + "dev": true, "license": "MIT", + "dependencies": { + "@bcherny/json-schema-ref-parser": "10.0.5-fork", + "@types/json-schema": "^7.0.11", + "@types/lodash": "^4.14.182", + "@types/prettier": "^2.6.1", + "cli-color": "^2.0.2", + "get-stdin": "^8.0.0", + "glob": "^7.1.6", + "glob-promise": "^4.2.2", + "is-glob": "^4.0.3", + "lodash": "^4.17.21", + "minimist": "^1.2.6", + "mkdirp": "^1.0.4", + "mz": "^2.7.0", + "prettier": "^2.6.2" + }, + "bin": { + "json2ts": "dist/src/cli.js" + }, "engines": { - "node": "*" + "node": ">=12.0.0" } }, - "node_modules/is-arguments": { - "version": "1.1.1", + "node_modules/json-schema-to-typescript/node_modules/@types/glob": { + "version": "7.2.0", + "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "node_modules/json-schema-to-typescript/node_modules/glob": { + "version": "7.2.3", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">= 0.4" + "node": "*" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/is-arrayish": { - "version": "0.3.2", - "license": "MIT" - }, - "node_modules/is-bigint": { - "version": "1.0.4", + "node_modules/json-schema-to-typescript/node_modules/glob-promise": { + "version": "4.2.2", + "dev": true, "license": "MIT", "dependencies": { - "has-bigints": "^1.0.1" + "@types/glob": "^7.1.3" + }, + "engines": { + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "individual", + "url": "https://github.com/sponsors/ahmadnassri" + }, + "peerDependencies": { + "glob": "^7.1.6" } }, - "node_modules/is-binary-path": { - "version": "2.1.0", + "node_modules/json-schema-to-typescript/node_modules/mkdirp": { + "version": "1.0.4", "dev": true, "license": "MIT", - "dependencies": { - "binary-extensions": "^2.0.0" + "bin": { + "mkdirp": "bin/cmd.js" }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/is-boolean-object": { - "version": "1.1.2", + "node_modules/json-schema-to-typescript/node_modules/prettier": { + "version": "2.8.8", + "dev": true, "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "bin": { + "prettier": "bin-prettier.js" }, "engines": { - "node": ">= 0.4" + "node": ">=10.13.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/prettier/prettier?sponsor=1" } }, - "node_modules/is-buffer": { - "version": "1.1.6", + "node_modules/json-schema-traverse": { + "version": "0.4.1", "dev": true, "license": "MIT" }, - "node_modules/is-builtin-module": { - "version": "3.2.1", + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", "dev": true, "license": "MIT", - "dependencies": { - "builtin-modules": "^3.3.0" + "bin": { + "json5": "lib/cli.js" }, "engines": { "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-callable": { - "version": "1.2.4", + "node_modules/jsonc-parser": { + "version": "3.2.0", + "license": "MIT" + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "dev": true, "license": "MIT", - "engines": { - "node": ">= 0.4" + "dependencies": { + "universalify": "^2.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "node_modules/is-core-module": { - "version": "2.9.0", + "node_modules/jszip": { + "version": "3.10.1", "dev": true, - "license": "MIT", + "license": "(MIT OR GPL-3.0-or-later)", "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "lie": "~3.3.0", + "pako": "~1.0.2", + "readable-stream": "~2.3.6", + "setimmediate": "^1.0.5" } }, - "node_modules/is-date-object": { - "version": "1.0.5", + "node_modules/jszip/node_modules/readable-stream": { + "version": "2.3.8", + "dev": true, "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "node_modules/is-deflate": { - "version": "1.0.0", + "node_modules/jszip/node_modules/safe-buffer": { + "version": "5.1.2", "dev": true, "license": "MIT" }, - "node_modules/is-directory": { - "version": "0.3.1", + "node_modules/jszip/node_modules/string_decoder": { + "version": "1.1.1", "dev": true, "license": "MIT", - "engines": { - "node": ">=0.10.0" + "dependencies": { + "safe-buffer": "~5.1.0" } }, - "node_modules/is-docker": { - "version": "2.2.1", - "dev": true, - "license": "MIT", - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "node_modules/just-clone": { + "version": "6.2.0", + "license": "MIT" }, - "node_modules/is-extglob": { - "version": "2.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } + "node_modules/just-extend": { + "version": "4.2.1", + "dev": true, + "license": "MIT" }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", + "node_modules/keygrip": { + "version": "1.1.0", + "dev": true, "license": "MIT", + "dependencies": { + "tsscmp": "1.0.6" + }, "engines": { - "node": ">=8" + "node": ">= 0.6" } }, - "node_modules/is-generator-function": { - "version": "1.0.10", + "node_modules/keytar": { + "version": "7.9.0", + "dev": true, + "hasInstallScript": true, "license": "MIT", + "optional": true, "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node-addon-api": "^4.3.0", + "prebuild-install": "^7.0.1" } }, - "node_modules/is-glob": { + "node_modules/keyv": { "version": "4.0.3", - "dev": true, "license": "MIT", "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" + "json-buffer": "3.0.1" } }, - "node_modules/is-gzip": { - "version": "1.0.0", + "node_modules/kind-of": { + "version": "6.0.3", "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/is-nan": { - "version": "1.3.2", + "node_modules/koa": { + "version": "2.15.3", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" + "accepts": "^1.3.5", + "cache-content-type": "^1.0.0", + "content-disposition": "~0.5.2", + "content-type": "^1.0.4", + "cookies": "~0.9.0", + "debug": "^4.3.2", + "delegates": "^1.0.0", + "depd": "^2.0.0", + "destroy": "^1.0.4", + "encodeurl": "^1.0.2", + "escape-html": "^1.0.3", + "fresh": "~0.5.2", + "http-assert": "^1.3.0", + "http-errors": "^1.6.3", + "is-generator-function": "^1.0.7", + "koa-compose": "^4.1.0", + "koa-convert": "^2.0.0", + "on-finished": "^2.3.0", + "only": "~0.0.2", + "parseurl": "^1.3.2", + "statuses": "^1.5.0", + "type-is": "^1.6.16", + "vary": "^1.1.2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.2", - "license": "MIT", "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4" } }, - "node_modules/is-number": { - "version": "7.0.0", + "node_modules/koa-compose": { + "version": "4.1.0", "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } + "license": "MIT" }, - "node_modules/is-number-object": { - "version": "1.0.7", + "node_modules/koa-convert": { + "version": "2.0.0", + "dev": true, "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" + "co": "^4.6.0", + "koa-compose": "^4.1.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 10" } }, - "node_modules/is-path-inside": { - "version": "3.0.3", + "node_modules/koa-morgan": { + "version": "1.0.1", "dev": true, "license": "MIT", - "engines": { - "node": ">=8" + "dependencies": { + "morgan": "^1.6.1" } }, - "node_modules/is-plain-obj": { - "version": "2.1.0", + "node_modules/koa-mount": { + "version": "4.0.0", "dev": true, "license": "MIT", + "dependencies": { + "debug": "^4.0.1", + "koa-compose": "^4.1.0" + }, "engines": { - "node": ">=8" + "node": ">= 7.6.0" } }, - "node_modules/is-plain-object": { - "version": "2.0.4", + "node_modules/koa-send": { + "version": "5.0.1", "dev": true, "license": "MIT", "dependencies": { - "isobject": "^3.0.1" + "debug": "^4.1.1", + "http-errors": "^1.7.3", + "resolve-path": "^1.4.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 8" } }, - "node_modules/is-potential-custom-element-name": { - "version": "1.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/is-promise": { - "version": "2.2.2", + "node_modules/koa-send/node_modules/http-errors": { + "version": "1.8.1", "dev": true, - "license": "MIT" - }, - "node_modules/is-regex": { - "version": "1.1.4", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 0.6" } }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.2", + "node_modules/koa-static": { + "version": "5.0.0", + "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2" + "debug": "^3.1.0", + "koa-send": "^5.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-stream": { - "version": "2.0.1", - "license": "MIT", "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 7.6.0" } }, - "node_modules/is-string": { - "version": "1.0.7", + "node_modules/koa-static/node_modules/debug": { + "version": "3.2.7", + "dev": true, "license": "MIT", "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "ms": "^2.1.1" } }, - "node_modules/is-symbol": { - "version": "1.0.4", + "node_modules/koa/node_modules/depd": { + "version": "2.0.0", + "dev": true, "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.2" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 0.8" } }, - "node_modules/is-typed-array": { - "version": "1.1.9", + "node_modules/koa/node_modules/http-errors": { + "version": "1.8.1", + "dev": true, "license": "MIT", "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-abstract": "^1.20.0", - "for-each": "^0.3.3", - "has-tostringtag": "^1.0.0" + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 0.6" } }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", + "node_modules/koa/node_modules/http-errors/node_modules/depd": { + "version": "1.1.2", "dev": true, "license": "MIT", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.6" } }, - "node_modules/is-url": { - "version": "1.2.4", + "node_modules/kuler": { + "version": "2.0.0", "license": "MIT" }, - "node_modules/is-weakref": { - "version": "1.0.2", + "node_modules/launch-editor": { + "version": "2.6.0", + "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "picocolors": "^1.0.0", + "shell-quote": "^1.7.3" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" } }, - "node_modules/is-wsl": { - "version": "2.2.0", + "node_modules/levn": { + "version": "0.4.1", "dev": true, "license": "MIT", "dependencies": { - "is-docker": "^2.0.0" + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" }, "engines": { - "node": ">=8" + "node": ">= 0.8.0" } }, - "node_modules/is2": { - "version": "2.0.7", + "node_modules/lie": { + "version": "3.3.0", + "dev": true, "license": "MIT", "dependencies": { - "deep-is": "^0.1.3", - "ip-regex": "^4.1.0", - "is-url": "^1.2.4" - }, - "engines": { - "node": ">=v0.10.0" + "immediate": "~3.0.5" } }, - "node_modules/isarray": { - "version": "1.0.0", + "node_modules/lines-and-columns": { + "version": "1.2.4", + "dev": true, "license": "MIT" }, - "node_modules/isexe": { - "version": "2.0.0", - "license": "ISC" - }, - "node_modules/isobject": { - "version": "3.0.1", - "dev": true, + "node_modules/linkify-it": { + "version": "4.0.1", "license": "MIT", - "engines": { - "node": ">=0.10.0" + "dependencies": { + "uc.micro": "^1.0.1" } }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.0", + "node_modules/loader-runner": { + "version": "4.2.0", "dev": true, - "license": "BSD-3-Clause", + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=6.11.5" } }, - "node_modules/istanbul-lib-report": { - "version": "3.0.1", + "node_modules/loader-utils": { + "version": "2.0.4", "dev": true, - "license": "BSD-3-Clause", + "license": "MIT", "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^4.0.0", - "supports-color": "^7.1.0" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" }, "engines": { - "node": ">=10" + "node": ">=8.9.0" } }, - "node_modules/istanbul-reports": { - "version": "3.1.6", + "node_modules/locate-path": { + "version": "6.0.0", "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jackspeak": { - "version": "2.3.6", - "license": "BlueOak-1.0.0", + "license": "MIT", "dependencies": { - "@isaacs/cliui": "^8.0.2" + "p-locate": "^5.0.0" }, "engines": { - "node": ">=14" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-worker": { - "version": "27.5.1", + "node_modules/lodash": { + "version": "4.17.21", + "license": "MIT" + }, + "node_modules/lodash.get": { + "version": "4.4.2", "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } + "license": "MIT" }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", + "node_modules/lodash.merge": { + "version": "4.6.2", + "dev": true, + "license": "MIT" + }, + "node_modules/log-symbols": { + "version": "4.1.0", "dev": true, "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jmespath": { - "version": "0.16.0", - "license": "Apache-2.0", - "engines": { - "node": ">= 0.6.0" + "node_modules/logform": { + "version": "2.4.0", + "license": "MIT", + "dependencies": { + "@colors/colors": "1.5.0", + "fecha": "^4.2.0", + "ms": "^2.1.1", + "safe-stable-stringify": "^2.3.1", + "triple-beam": "^1.3.0" } }, - "node_modules/jose": { - "version": "5.4.1", + "node_modules/lowercase-keys": { + "version": "2.0.0", "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/panva" + "engines": { + "node": ">=8" } }, - "node_modules/joycon": { - "version": "3.0.1", + "node_modules/lru-cache": { + "version": "6.0.0", "dev": true, - "license": "MIT", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, "engines": { "node": ">=10" } }, - "node_modules/js-tokens": { - "version": "4.0.0", + "node_modules/lru-queue": { + "version": "0.1.0", "dev": true, - "license": "MIT" - }, - "node_modules/js-yaml": { - "version": "4.1.0", "license": "MIT", "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "es5-ext": "~0.10.2" } }, - "node_modules/jsdom": { - "version": "23.0.1", - "dev": true, + "node_modules/magic-string": { + "version": "0.30.0", "license": "MIT", "dependencies": { - "cssstyle": "^3.0.0", - "data-urls": "^5.0.0", - "decimal.js": "^10.4.3", - "form-data": "^4.0.0", - "html-encoding-sniffer": "^4.0.0", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.2", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.7", - "parse5": "^7.1.2", - "rrweb-cssom": "^0.6.0", - "saxes": "^6.0.0", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.1.3", - "w3c-xmlserializer": "^5.0.0", - "webidl-conversions": "^7.0.0", - "whatwg-encoding": "^3.1.1", - "whatwg-mimetype": "^4.0.0", - "whatwg-url": "^14.0.0", - "ws": "^8.14.2", - "xml-name-validator": "^5.0.0" + "@jridgewell/sourcemap-codec": "^1.4.13" }, "engines": { - "node": ">=18" - }, - "peerDependencies": { - "canvas": "^2.11.2" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } + "node": ">=12" } }, - "node_modules/jsdom/node_modules/agent-base": { - "version": "7.1.0", + "node_modules/make-dir": { + "version": "4.0.0", "dev": true, "license": "MIT", "dependencies": { - "debug": "^4.3.4" + "semver": "^7.5.3" }, "engines": { - "node": ">= 14" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jsdom/node_modules/http-proxy-agent": { - "version": "7.0.0", + "node_modules/make-error": { + "version": "1.3.6", + "dev": true, + "license": "ISC" + }, + "node_modules/map-obj": { + "version": "4.3.0", "dev": true, "license": "MIT", - "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" - }, "engines": { - "node": ">= 14" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jsdom/node_modules/https-proxy-agent": { - "version": "7.0.2", - "dev": true, + "node_modules/map-stream": { + "version": "0.0.7", + "license": "MIT" + }, + "node_modules/markdown-it": { + "version": "13.0.2", "license": "MIT", "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" + "argparse": "^2.0.1", + "entities": "~3.0.1", + "linkify-it": "^4.0.1", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" }, + "bin": { + "markdown-it": "bin/markdown-it.js" + } + }, + "node_modules/markdown-it/node_modules/entities": { + "version": "3.0.1", + "license": "BSD-2-Clause", "engines": { - "node": ">= 14" + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/jsesc": { - "version": "3.0.2", + "node_modules/marked": { + "version": "13.0.1", "dev": true, "license": "MIT", "bin": { - "jsesc": "bin/jsesc" + "marked": "bin/marked.js" }, "engines": { - "node": ">=6" + "node": ">= 18" } }, - "node_modules/json-buffer": { - "version": "3.0.1", - "license": "MIT" - }, - "node_modules/json-parse-better-errors": { - "version": "1.0.2", + "node_modules/md5": { + "version": "2.3.0", "dev": true, - "license": "MIT" + "license": "BSD-3-Clause", + "dependencies": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "~1.1.6" + } }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "dev": true, + "node_modules/md5.js": { + "version": "1.3.5", + "license": "MIT", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/mdurl": { + "version": "1.0.1", "license": "MIT" }, - "node_modules/json-schema-to-typescript": { - "version": "13.1.1", + "node_modules/media-typer": { + "version": "0.3.0", "dev": true, "license": "MIT", - "dependencies": { - "@bcherny/json-schema-ref-parser": "10.0.5-fork", - "@types/json-schema": "^7.0.11", - "@types/lodash": "^4.14.182", - "@types/prettier": "^2.6.1", - "cli-color": "^2.0.2", - "get-stdin": "^8.0.0", - "glob": "^7.1.6", - "glob-promise": "^4.2.2", - "is-glob": "^4.0.3", - "lodash": "^4.17.21", - "minimist": "^1.2.6", - "mkdirp": "^1.0.4", - "mz": "^2.7.0", - "prettier": "^2.6.2" - }, - "bin": { - "json2ts": "dist/src/cli.js" - }, "engines": { - "node": ">=12.0.0" + "node": ">= 0.6" } }, - "node_modules/json-schema-to-typescript/node_modules/@types/glob": { - "version": "7.2.0", + "node_modules/memfs": { + "version": "3.4.7", "dev": true, - "license": "MIT", + "license": "Unlicense", "dependencies": { - "@types/minimatch": "*", - "@types/node": "*" + "fs-monkey": "^1.0.3" + }, + "engines": { + "node": ">= 4.0.0" } }, - "node_modules/json-schema-to-typescript/node_modules/glob": { - "version": "7.2.3", + "node_modules/memoizee": { + "version": "0.4.15", "dev": true, "license": "ISC", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "d": "^1.0.1", + "es5-ext": "^0.10.53", + "es6-weak-map": "^2.0.3", + "event-emitter": "^0.3.5", + "is-promise": "^2.2.2", + "lru-queue": "^0.1.0", + "next-tick": "^1.1.0", + "timers-ext": "^0.1.7" } }, - "node_modules/json-schema-to-typescript/node_modules/glob-promise": { - "version": "4.2.2", + "node_modules/meow": { + "version": "9.0.0", "dev": true, "license": "MIT", "dependencies": { - "@types/glob": "^7.1.3" + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize": "^1.2.0", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" }, "engines": { - "node": ">=12" + "node": ">=10" }, "funding": { - "type": "individual", - "url": "https://github.com/sponsors/ahmadnassri" - }, - "peerDependencies": { - "glob": "^7.1.6" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/json-schema-to-typescript/node_modules/mkdirp": { - "version": "1.0.4", + "node_modules/meow/node_modules/decamelize": { + "version": "1.2.0", "dev": true, "license": "MIT", - "bin": { - "mkdirp": "bin/cmd.js" - }, "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, - "node_modules/json-schema-to-typescript/node_modules/prettier": { - "version": "2.8.8", + "node_modules/meow/node_modules/type-fest": { + "version": "0.18.1", "dev": true, - "license": "MIT", - "bin": { - "prettier": "bin-prettier.js" - }, + "license": "(MIT OR CC0-1.0)", "engines": { - "node": ">=10.13.0" + "node": ">=10" }, "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", + "node_modules/merge-descriptors": { + "version": "1.0.3", "dev": true, - "license": "MIT" + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", + "node_modules/merge-stream": { + "version": "2.0.0", "dev": true, "license": "MIT" }, - "node_modules/json5": { - "version": "2.2.3", + "node_modules/merge2": { + "version": "1.4.1", "dev": true, "license": "MIT", - "bin": { - "json5": "lib/cli.js" - }, "engines": { - "node": ">=6" + "node": ">= 8" } }, - "node_modules/jsonc-parser": { - "version": "3.2.0", - "license": "MIT" - }, - "node_modules/jsonfile": { - "version": "6.1.0", + "node_modules/methods": { + "version": "1.1.2", "dev": true, "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "engines": { + "node": ">= 0.6" } }, - "node_modules/jszip": { - "version": "3.10.1", + "node_modules/microbuffer": { + "version": "1.0.0", "dev": true, - "license": "(MIT OR GPL-3.0-or-later)", - "dependencies": { - "lie": "~3.3.0", - "pako": "~1.0.2", - "readable-stream": "~2.3.6", - "setimmediate": "^1.0.5" - } + "license": "MIT" }, - "node_modules/jszip/node_modules/readable-stream": { - "version": "2.3.8", + "node_modules/micromatch": { + "version": "4.0.8", "dev": true, "license": "MIT", "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" } }, - "node_modules/jszip/node_modules/safe-buffer": { - "version": "5.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/jszip/node_modules/string_decoder": { - "version": "1.1.1", - "dev": true, + "node_modules/miller-rabin": { + "version": "4.0.1", "license": "MIT", "dependencies": { - "safe-buffer": "~5.1.0" + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "bin": { + "miller-rabin": "bin/miller-rabin" } }, - "node_modules/just-clone": { - "version": "6.2.0", + "node_modules/miller-rabin/node_modules/bn.js": { + "version": "4.12.0", "license": "MIT" }, - "node_modules/just-extend": { - "version": "4.2.1", + "node_modules/mime": { + "version": "1.6.0", "dev": true, - "license": "MIT" + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } }, - "node_modules/keygrip": { - "version": "1.1.0", - "dev": true, + "node_modules/mime-db": { + "version": "1.52.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", "license": "MIT", "dependencies": { - "tsscmp": "1.0.6" + "mime-db": "1.52.0" }, "engines": { "node": ">= 0.6" } }, - "node_modules/keytar": { - "version": "7.9.0", + "node_modules/mimic-fn": { + "version": "2.1.0", "dev": true, - "hasInstallScript": true, - "license": "MIT", - "optional": true, - "dependencies": { - "node-addon-api": "^4.3.0", - "prebuild-install": "^7.0.1" - } - }, - "node_modules/keyv": { - "version": "4.0.3", "license": "MIT", - "dependencies": { - "json-buffer": "3.0.1" + "engines": { + "node": ">=6" } }, - "node_modules/kind-of": { - "version": "6.0.3", - "dev": true, + "node_modules/mimic-response": { + "version": "1.0.1", "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/koa": { - "version": "2.15.3", + "node_modules/min-indent": { + "version": "1.0.1", "dev": true, "license": "MIT", - "dependencies": { - "accepts": "^1.3.5", - "cache-content-type": "^1.0.0", - "content-disposition": "~0.5.2", - "content-type": "^1.0.4", - "cookies": "~0.9.0", - "debug": "^4.3.2", - "delegates": "^1.0.0", - "depd": "^2.0.0", - "destroy": "^1.0.4", - "encodeurl": "^1.0.2", - "escape-html": "^1.0.3", - "fresh": "~0.5.2", - "http-assert": "^1.3.0", - "http-errors": "^1.6.3", - "is-generator-function": "^1.0.7", - "koa-compose": "^4.1.0", - "koa-convert": "^2.0.0", - "on-finished": "^2.3.0", - "only": "~0.0.2", - "parseurl": "^1.3.2", - "statuses": "^1.5.0", - "type-is": "^1.6.16", - "vary": "^1.1.2" - }, "engines": { - "node": "^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4" + "node": ">=4" } }, - "node_modules/koa-compose": { - "version": "4.1.0", - "dev": true, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "license": "ISC" + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", "license": "MIT" }, - "node_modules/koa-convert": { - "version": "2.0.0", - "dev": true, - "license": "MIT", + "node_modules/minimatch": { + "version": "3.1.2", + "license": "ISC", "dependencies": { - "co": "^4.6.0", - "koa-compose": "^4.1.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">= 10" + "node": "*" } }, - "node_modules/koa-morgan": { - "version": "1.0.1", - "dev": true, + "node_modules/minimist": { + "version": "1.2.8", "license": "MIT", - "dependencies": { - "morgan": "^1.6.1" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/koa-mount": { - "version": "4.0.0", + "node_modules/minimist-options": { + "version": "4.1.0", "dev": true, "license": "MIT", "dependencies": { - "debug": "^4.0.1", - "koa-compose": "^4.1.0" + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" }, "engines": { - "node": ">= 7.6.0" + "node": ">= 6" } }, - "node_modules/koa-send": { - "version": "5.0.1", + "node_modules/minimist-options/node_modules/arrify": { + "version": "1.0.1", "dev": true, "license": "MIT", - "dependencies": { - "debug": "^4.1.1", - "http-errors": "^1.7.3", - "resolve-path": "^1.4.0" - }, "engines": { - "node": ">= 8" + "node": ">=0.10.0" } }, - "node_modules/koa-send/node_modules/http-errors": { - "version": "1.8.1", + "node_modules/minimist-options/node_modules/is-plain-obj": { + "version": "1.1.0", "dev": true, "license": "MIT", - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.1" - }, "engines": { - "node": ">= 0.6" + "node": ">=0.10.0" } }, - "node_modules/koa-static": { - "version": "5.0.0", - "dev": true, + "node_modules/minipass": { + "version": "7.0.4", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", "license": "MIT", "dependencies": { - "debug": "^3.1.0", - "koa-send": "^5.0.0" + "minimist": "^1.2.6" }, - "engines": { - "node": ">= 7.6.0" + "bin": { + "mkdirp": "bin/cmd.js" } }, - "node_modules/koa-static/node_modules/debug": { - "version": "3.2.7", + "node_modules/mkdirp-classic": { + "version": "0.5.3", "dev": true, "license": "MIT", - "dependencies": { - "ms": "^2.1.1" - } + "optional": true }, - "node_modules/koa/node_modules/depd": { - "version": "2.0.0", + "node_modules/mocha": { + "version": "10.1.0", "dev": true, "license": "MIT", + "dependencies": { + "ansi-colors": "4.1.1", + "browser-stdout": "1.3.1", + "chokidar": "3.5.3", + "debug": "4.3.4", + "diff": "5.0.0", + "escape-string-regexp": "4.0.0", + "find-up": "5.0.0", + "glob": "7.2.0", + "he": "1.2.0", + "js-yaml": "4.1.0", + "log-symbols": "4.1.0", + "minimatch": "5.0.1", + "ms": "2.1.3", + "nanoid": "3.3.3", + "serialize-javascript": "6.0.0", + "strip-json-comments": "3.1.1", + "supports-color": "8.1.1", + "workerpool": "6.2.1", + "yargs": "16.2.0", + "yargs-parser": "20.2.4", + "yargs-unparser": "2.0.0" + }, + "bin": { + "_mocha": "bin/_mocha", + "mocha": "bin/mocha.js" + }, "engines": { - "node": ">= 0.8" + "node": ">= 14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mochajs" } }, - "node_modules/koa/node_modules/http-errors": { - "version": "1.8.1", + "node_modules/mocha-junit-reporter": { + "version": "2.2.1", "dev": true, "license": "MIT", "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.1" + "debug": "^4.3.4", + "md5": "^2.3.0", + "mkdirp": "^3.0.0", + "strip-ansi": "^6.0.1", + "xml": "^1.0.1" }, - "engines": { - "node": ">= 0.6" + "peerDependencies": { + "mocha": ">=2.2.5" } }, - "node_modules/koa/node_modules/http-errors/node_modules/depd": { - "version": "1.1.2", + "node_modules/mocha-junit-reporter/node_modules/ansi-regex": { + "version": "5.0.1", "dev": true, "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=8" } }, - "node_modules/kuler": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/launch-editor": { - "version": "2.6.0", + "node_modules/mocha-junit-reporter/node_modules/mkdirp": { + "version": "3.0.1", "dev": true, "license": "MIT", - "dependencies": { - "picocolors": "^1.0.0", - "shell-quote": "^1.7.3" + "bin": { + "mkdirp": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/leven": { - "version": "3.1.0", + "node_modules/mocha-junit-reporter/node_modules/strip-ansi": { + "version": "6.0.1", "dev": true, "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/levn": { - "version": "0.4.1", + "node_modules/mocha-multi-reporters": { + "version": "1.5.1", "dev": true, "license": "MIT", "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" + "debug": "^4.1.1", + "lodash": "^4.17.15" }, "engines": { - "node": ">= 0.8.0" + "node": ">=6.0.0" + }, + "peerDependencies": { + "mocha": ">=3.1.2" } }, - "node_modules/lie": { - "version": "3.3.0", + "node_modules/mocha/node_modules/brace-expansion": { + "version": "2.0.1", "dev": true, "license": "MIT", "dependencies": { - "immediate": "~3.0.5" + "balanced-match": "^1.0.0" } }, - "node_modules/lines-and-columns": { - "version": "1.2.4", + "node_modules/mocha/node_modules/diff": { + "version": "5.0.0", "dev": true, - "license": "MIT" + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } }, - "node_modules/linkify-it": { - "version": "4.0.1", - "license": "MIT", + "node_modules/mocha/node_modules/glob": { + "version": "7.2.0", + "dev": true, + "license": "ISC", "dependencies": { - "uc.micro": "^1.0.1" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/loader-runner": { - "version": "4.2.0", + "node_modules/mocha/node_modules/glob/node_modules/brace-expansion": { + "version": "1.1.11", "dev": true, "license": "MIT", - "engines": { - "node": ">=6.11.5" + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/loader-utils": { - "version": "2.0.4", + "node_modules/mocha/node_modules/glob/node_modules/minimatch": { + "version": "3.1.2", "dev": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=8.9.0" + "node": "*" } }, - "node_modules/locate-path": { - "version": "6.0.0", + "node_modules/mocha/node_modules/minimatch": { + "version": "5.0.1", "dev": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "p-locate": "^5.0.0" + "brace-expansion": "^2.0.1" }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lodash": { - "version": "4.17.21", - "license": "MIT" - }, - "node_modules/lodash.get": { - "version": "4.4.2", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.merge": { - "version": "4.6.2", + "node_modules/mocha/node_modules/ms": { + "version": "2.1.3", "dev": true, "license": "MIT" }, - "node_modules/log-symbols": { - "version": "4.1.0", + "node_modules/mocha/node_modules/supports-color": { + "version": "8.1.1", "dev": true, "license": "MIT", "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" + "has-flag": "^4.0.0" }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/logform": { - "version": "2.4.0", + "node_modules/mocha/node_modules/yargs": { + "version": "16.2.0", + "dev": true, "license": "MIT", "dependencies": { - "@colors/colors": "1.5.0", - "fecha": "^4.2.0", - "ms": "^2.1.1", - "safe-stable-stringify": "^2.3.1", - "triple-beam": "^1.3.0" - } - }, - "node_modules/lowercase-keys": { - "version": "2.0.0", - "license": "MIT", + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/lru-cache": { - "version": "6.0.0", + "node_modules/morgan": { + "version": "1.10.0", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "yallist": "^4.0.0" + "basic-auth": "~2.0.1", + "debug": "2.6.9", + "depd": "~2.0.0", + "on-finished": "~2.3.0", + "on-headers": "~1.0.2" }, "engines": { - "node": ">=10" + "node": ">= 0.8.0" } }, - "node_modules/lru-queue": { - "version": "0.1.0", + "node_modules/morgan/node_modules/debug": { + "version": "2.6.9", "dev": true, "license": "MIT", "dependencies": { - "es5-ext": "~0.10.2" + "ms": "2.0.0" } }, - "node_modules/magic-string": { - "version": "0.30.0", + "node_modules/morgan/node_modules/depd": { + "version": "2.0.0", + "dev": true, "license": "MIT", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.13" - }, "engines": { - "node": ">=12" + "node": ">= 0.8" } }, - "node_modules/make-dir": { - "version": "4.0.0", + "node_modules/morgan/node_modules/ms": { + "version": "2.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/morgan/node_modules/on-finished": { + "version": "2.3.0", "dev": true, "license": "MIT", "dependencies": { - "semver": "^7.5.3" + "ee-first": "1.1.1" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.8" } }, - "node_modules/make-error": { - "version": "1.3.6", - "dev": true, - "license": "ISC" - }, - "node_modules/map-obj": { - "version": "4.3.0", + "node_modules/mri": { + "version": "1.2.0", "dev": true, "license": "MIT", "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4" } }, - "node_modules/map-stream": { - "version": "0.0.7", + "node_modules/ms": { + "version": "2.1.2", "license": "MIT" }, - "node_modules/markdown-it": { - "version": "13.0.2", + "node_modules/multicast-dns": { + "version": "7.2.5", + "dev": true, "license": "MIT", "dependencies": { - "argparse": "^2.0.1", - "entities": "~3.0.1", - "linkify-it": "^4.0.1", - "mdurl": "^1.0.1", - "uc.micro": "^1.0.5" + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" }, "bin": { - "markdown-it": "bin/markdown-it.js" + "multicast-dns": "cli.js" } }, - "node_modules/markdown-it/node_modules/entities": { - "version": "3.0.1", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "node_modules/mute-stream": { + "version": "0.0.8", + "dev": true, + "license": "ISC" + }, + "node_modules/mvdan-sh": { + "version": "0.10.1", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/mz": { + "version": "2.7.0", + "dev": true, + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" } }, - "node_modules/marked": { - "version": "13.0.1", + "node_modules/nanoid": { + "version": "3.3.3", "dev": true, "license": "MIT", "bin": { - "marked": "bin/marked.js" + "nanoid": "bin/nanoid.cjs" }, "engines": { - "node": ">= 18" + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/md5": { - "version": "2.3.0", + "node_modules/napi-build-utils": { + "version": "1.0.2", "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "charenc": "0.0.2", - "crypt": "0.0.2", - "is-buffer": "~1.1.6" - } - }, - "node_modules/md5.js": { - "version": "1.3.5", "license": "MIT", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } + "optional": true }, - "node_modules/mdurl": { - "version": "1.0.1", + "node_modules/natural-compare": { + "version": "1.4.0", + "dev": true, "license": "MIT" }, - "node_modules/media-typer": { - "version": "0.3.0", + "node_modules/neatequal": { + "version": "1.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "varstream": "^0.3.2" + } + }, + "node_modules/negotiator": { + "version": "0.6.3", "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" } }, - "node_modules/memfs": { - "version": "3.4.7", + "node_modules/neo-async": { + "version": "2.6.2", "dev": true, - "license": "Unlicense", - "dependencies": { - "fs-monkey": "^1.0.3" - }, - "engines": { - "node": ">= 4.0.0" - } + "license": "MIT" }, - "node_modules/memoizee": { - "version": "0.4.15", + "node_modules/next-tick": { + "version": "1.1.0", "dev": true, - "license": "ISC", + "license": "ISC" + }, + "node_modules/nise": { + "version": "5.1.1", + "dev": true, + "license": "BSD-3-Clause", "dependencies": { - "d": "^1.0.1", - "es5-ext": "^0.10.53", - "es6-weak-map": "^2.0.3", - "event-emitter": "^0.3.5", - "is-promise": "^2.2.2", - "lru-queue": "^0.1.0", - "next-tick": "^1.1.0", - "timers-ext": "^0.1.7" + "@sinonjs/commons": "^1.8.3", + "@sinonjs/fake-timers": ">=5", + "@sinonjs/text-encoding": "^0.7.1", + "just-extend": "^4.0.2", + "path-to-regexp": "^1.7.0" } }, - "node_modules/meow": { - "version": "9.0.0", + "node_modules/node-abi": { + "version": "3.45.0", "dev": true, "license": "MIT", + "optional": true, "dependencies": { - "@types/minimist": "^1.2.0", - "camelcase-keys": "^6.2.2", - "decamelize": "^1.2.0", - "decamelize-keys": "^1.1.0", - "hard-rejection": "^2.1.0", - "minimist-options": "4.1.0", - "normalize-package-data": "^3.0.0", - "read-pkg-up": "^7.0.1", - "redent": "^3.0.0", - "trim-newlines": "^3.0.0", - "type-fest": "^0.18.0", - "yargs-parser": "^20.2.3" + "semver": "^7.3.5" }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/meow/node_modules/decamelize": { - "version": "1.2.0", + "node_modules/node-addon-api": { + "version": "4.3.0", "dev": true, "license": "MIT", - "engines": { - "node": ">=0.10.0" - } + "optional": true }, - "node_modules/meow/node_modules/type-fest": { - "version": "0.18.1", - "dev": true, - "license": "(MIT OR CC0-1.0)", + "node_modules/node-fetch": { + "version": "2.7.0", + "license": "MIT", + "dependencies": { + "whatwg-url": "^5.0.0" + }, "engines": { - "node": ">=10" + "node": "4.x || >=6.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, - "node_modules/merge-descriptors": { - "version": "1.0.3", - "dev": true, + "node_modules/node-fetch/node_modules/tr46": { + "version": "0.0.3", + "license": "MIT" + }, + "node_modules/node-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "license": "BSD-2-Clause" + }, + "node_modules/node-fetch/node_modules/whatwg-url": { + "version": "5.0.0", "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" } }, - "node_modules/merge-stream": { - "version": "2.0.0", + "node_modules/node-forge": { + "version": "1.3.1", + "dev": true, + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-releases": { + "version": "2.0.14", "dev": true, "license": "MIT" }, - "node_modules/merge2": { - "version": "1.4.1", + "node_modules/normalize-package-data": { + "version": "3.0.3", "dev": true, - "license": "MIT", + "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, "engines": { - "node": ">= 8" + "node": ">=10" } }, - "node_modules/methods": { - "version": "1.1.2", + "node_modules/normalize-path": { + "version": "3.0.0", "dev": true, "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=0.10.0" } }, - "node_modules/microbuffer": { - "version": "1.0.0", - "dev": true, - "license": "MIT" + "node_modules/normalize-url": { + "version": "6.1.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/micromatch": { - "version": "4.0.8", + "node_modules/npm-run-path": { + "version": "4.0.1", "dev": true, "license": "MIT", "dependencies": { - "braces": "^3.0.3", - "picomatch": "^2.3.1" + "path-key": "^3.0.0" }, "engines": { - "node": ">=8.6" + "node": ">=8" } }, - "node_modules/miller-rabin": { - "version": "4.0.1", - "license": "MIT", + "node_modules/nth-check": { + "version": "2.1.1", + "dev": true, + "license": "BSD-2-Clause", "dependencies": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" + "boolbase": "^1.0.0" }, - "bin": { - "miller-rabin": "bin/miller-rabin" + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" } }, - "node_modules/miller-rabin/node_modules/bn.js": { - "version": "4.12.0", - "license": "MIT" - }, - "node_modules/mime": { - "version": "1.6.0", + "node_modules/nunjucks": { + "version": "3.2.4", "dev": true, - "license": "MIT", + "license": "BSD-2-Clause", + "dependencies": { + "a-sync-waterfall": "^1.0.0", + "asap": "^2.0.3", + "commander": "^5.1.0" + }, "bin": { - "mime": "cli.js" + "nunjucks-precompile": "bin/precompile" }, "engines": { - "node": ">=4" + "node": ">= 6.9.0" + }, + "peerDependencies": { + "chokidar": "^3.3.0" + }, + "peerDependenciesMeta": { + "chokidar": { + "optional": true + } } }, - "node_modules/mime-db": { - "version": "1.52.0", + "node_modules/nunjucks/node_modules/commander": { + "version": "5.1.0", + "dev": true, "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">= 6" } }, - "node_modules/mime-types": { - "version": "2.1.35", - "license": "MIT", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } + "node_modules/nwsapi": { + "version": "2.2.7", + "dev": true, + "license": "MIT" }, - "node_modules/mimic-fn": { - "version": "2.1.0", + "node_modules/object-assign": { + "version": "4.1.1", "dev": true, "license": "MIT", "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/mimic-response": { - "version": "1.0.1", + "node_modules/object-inspect": { + "version": "1.13.2", "license": "MIT", "engines": { - "node": ">=4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/min-indent": { - "version": "1.0.1", + "node_modules/object-is": { + "version": "1.1.5", "dev": true, "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", - "license": "ISC" - }, - "node_modules/minimalistic-crypto-utils": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/minimatch": { - "version": "3.1.2", - "license": "ISC", "dependencies": { - "brace-expansion": "^1.1.7" + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" }, "engines": { - "node": "*" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/minimist": { - "version": "1.2.8", + "node_modules/object-keys": { + "version": "1.1.1", "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 0.4" } }, - "node_modules/minimist-options": { - "version": "4.1.0", - "dev": true, + "node_modules/object.assign": { + "version": "4.1.4", "license": "MIT", "dependencies": { - "arrify": "^1.0.1", - "is-plain-obj": "^1.1.0", - "kind-of": "^6.0.3" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" }, "engines": { - "node": ">= 6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/minimist-options/node_modules/arrify": { - "version": "1.0.1", + "node_modules/obuf": { + "version": "1.1.2", + "dev": true, + "license": "MIT" + }, + "node_modules/on-finished": { + "version": "2.4.1", "dev": true, "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.8" } }, - "node_modules/minimist-options/node_modules/is-plain-obj": { - "version": "1.1.0", + "node_modules/on-headers": { + "version": "1.0.2", "dev": true, "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">= 0.8" } }, - "node_modules/minipass": { - "version": "7.0.4", + "node_modules/once": { + "version": "1.4.0", "license": "ISC", - "engines": { - "node": ">=16 || 14 >=14.17" + "dependencies": { + "wrappy": "1" } }, - "node_modules/mkdirp": { - "version": "0.5.6", + "node_modules/one-time": { + "version": "1.0.0", "license": "MIT", "dependencies": { - "minimist": "^1.2.6" - }, - "bin": { - "mkdirp": "bin/cmd.js" + "fn.name": "1.x.x" } }, - "node_modules/mkdirp-classic": { - "version": "0.5.3", + "node_modules/onetime": { + "version": "5.1.2", "dev": true, "license": "MIT", - "optional": true + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/mocha": { - "version": "10.1.0", + "node_modules/only": { + "version": "0.0.2", + "dev": true + }, + "node_modules/open": { + "version": "8.4.0", "dev": true, "license": "MIT", "dependencies": { - "ansi-colors": "4.1.1", - "browser-stdout": "1.3.1", - "chokidar": "3.5.3", - "debug": "4.3.4", - "diff": "5.0.0", - "escape-string-regexp": "4.0.0", - "find-up": "5.0.0", - "glob": "7.2.0", - "he": "1.2.0", - "js-yaml": "4.1.0", - "log-symbols": "4.1.0", - "minimatch": "5.0.1", - "ms": "2.1.3", - "nanoid": "3.3.3", - "serialize-javascript": "6.0.0", - "strip-json-comments": "3.1.1", - "supports-color": "8.1.1", - "workerpool": "6.2.1", - "yargs": "16.2.0", - "yargs-parser": "20.2.4", - "yargs-unparser": "2.0.0" - }, - "bin": { - "_mocha": "bin/_mocha", - "mocha": "bin/mocha.js" + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" }, "engines": { - "node": ">= 14.0.0" + "node": ">=12" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mochajs" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/mocha-junit-reporter": { - "version": "2.2.1", + "node_modules/optionator": { + "version": "0.9.3", "dev": true, "license": "MIT", "dependencies": { - "debug": "^4.3.4", - "md5": "^2.3.0", - "mkdirp": "^3.0.0", - "strip-ansi": "^6.0.1", - "xml": "^1.0.1" + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" }, - "peerDependencies": { - "mocha": ">=2.2.5" + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/mocha-junit-reporter/node_modules/ansi-regex": { - "version": "5.0.1", - "dev": true, + "node_modules/os-browserify": { + "version": "0.3.0", + "license": "MIT" + }, + "node_modules/p-cancelable": { + "version": "2.1.1", "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/mocha-junit-reporter/node_modules/mkdirp": { - "version": "3.0.1", + "node_modules/p-limit": { + "version": "3.1.0", "dev": true, "license": "MIT", - "bin": { - "mkdirp": "dist/cjs/src/bin.js" + "dependencies": { + "yocto-queue": "^0.1.0" }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/mocha-junit-reporter/node_modules/strip-ansi": { - "version": "6.0.1", + "node_modules/p-locate": { + "version": "5.0.0", "dev": true, "license": "MIT", "dependencies": { - "ansi-regex": "^5.0.1" + "p-limit": "^3.0.2" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/mocha-multi-reporters": { - "version": "1.5.1", + "node_modules/p-retry": { + "version": "4.6.1", "dev": true, "license": "MIT", "dependencies": { - "debug": "^4.1.1", - "lodash": "^4.17.15" + "@types/retry": "^0.12.0", + "retry": "^0.13.1" }, "engines": { - "node": ">=6.0.0" - }, - "peerDependencies": { - "mocha": ">=3.1.2" + "node": ">=8" } }, - "node_modules/mocha/node_modules/brace-expansion": { - "version": "2.0.1", + "node_modules/p-try": { + "version": "2.2.0", "dev": true, "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" + "engines": { + "node": ">=6" } }, - "node_modules/mocha/node_modules/diff": { - "version": "5.0.0", + "node_modules/pako": { + "version": "1.0.11", "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.3.1" - } + "license": "(MIT AND Zlib)" }, - "node_modules/mocha/node_modules/glob": { - "version": "7.2.0", + "node_modules/parent-module": { + "version": "1.0.1", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "callsites": "^3.0.0" }, "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=6" } }, - "node_modules/mocha/node_modules/glob/node_modules/brace-expansion": { - "version": "1.1.11", - "dev": true, - "license": "MIT", + "node_modules/parse-asn1": { + "version": "5.1.6", + "license": "ISC", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" } }, - "node_modules/mocha/node_modules/glob/node_modules/minimatch": { - "version": "3.1.2", + "node_modules/parse-json": { + "version": "5.2.0", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "brace-expansion": "^1.1.7" + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse-node-version": { + "version": "1.0.1", + "license": "MIT", "engines": { - "node": "*" + "node": ">= 0.10" } }, - "node_modules/mocha/node_modules/minimatch": { - "version": "5.0.1", + "node_modules/parse-semver": { + "version": "1.1.1", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" + "semver": "^5.1.0" } }, - "node_modules/mocha/node_modules/ms": { - "version": "2.1.3", + "node_modules/parse-semver/node_modules/semver": { + "version": "5.7.2", "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/parse-srcset": { + "version": "1.0.2", "license": "MIT" }, - "node_modules/mocha/node_modules/supports-color": { - "version": "8.1.1", + "node_modules/parse5": { + "version": "7.1.2", "dev": true, "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" + "entities": "^4.4.0" }, "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "url": "https://github.com/inikulin/parse5?sponsor=1" } }, - "node_modules/mocha/node_modules/yargs": { - "version": "16.2.0", + "node_modules/parse5-htmlparser2-tree-adapter": { + "version": "7.0.0", "dev": true, "license": "MIT", "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" + "domhandler": "^5.0.2", + "parse5": "^7.0.0" }, - "engines": { - "node": ">=10" + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" } }, - "node_modules/morgan": { - "version": "1.10.0", + "node_modules/parseurl": { + "version": "1.3.3", "dev": true, "license": "MIT", - "dependencies": { - "basic-auth": "~2.0.1", - "debug": "2.6.9", - "depd": "~2.0.0", - "on-finished": "~2.3.0", - "on-headers": "~1.0.2" - }, "engines": { - "node": ">= 0.8.0" + "node": ">= 0.8" } }, - "node_modules/morgan/node_modules/debug": { - "version": "2.6.9", + "node_modules/path-browserify": { + "version": "1.0.1", + "license": "MIT" + }, + "node_modules/path-exists": { + "version": "4.0.0", "dev": true, "license": "MIT", - "dependencies": { - "ms": "2.0.0" + "engines": { + "node": ">=8" } }, - "node_modules/morgan/node_modules/depd": { - "version": "2.0.0", - "dev": true, + "node_modules/path-is-absolute": { + "version": "1.0.1", "license": "MIT", "engines": { - "node": ">= 0.8" + "node": ">=0.10.0" } }, - "node_modules/morgan/node_modules/ms": { - "version": "2.0.0", + "node_modules/path-key": { + "version": "3.1.1", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", "dev": true, "license": "MIT" }, - "node_modules/morgan/node_modules/on-finished": { - "version": "2.3.0", - "dev": true, - "license": "MIT", + "node_modules/path-scurry": { + "version": "1.10.1", + "license": "BlueOak-1.0.0", "dependencies": { - "ee-first": "1.1.1" + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { - "node": ">= 0.8" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/mri": { - "version": "1.2.0", - "dev": true, - "license": "MIT", + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.1.0", + "license": "ISC", "engines": { - "node": ">=4" + "node": "14 || >=16.14" } }, - "node_modules/ms": { - "version": "2.1.2", - "license": "MIT" - }, - "node_modules/multicast-dns": { - "version": "7.2.5", + "node_modules/path-to-regexp": { + "version": "1.9.0", "dev": true, "license": "MIT", "dependencies": { - "dns-packet": "^5.2.2", - "thunky": "^1.0.2" - }, - "bin": { - "multicast-dns": "cli.js" + "isarray": "0.0.1" } }, - "node_modules/mute-stream": { - "version": "0.0.8", - "dev": true, - "license": "ISC" - }, - "node_modules/mvdan-sh": { - "version": "0.10.1", + "node_modules/path-to-regexp/node_modules/isarray": { + "version": "0.0.1", "dev": true, - "license": "BSD-3-Clause" + "license": "MIT" }, - "node_modules/mz": { - "version": "2.7.0", + "node_modules/path-type": { + "version": "4.0.0", "dev": true, "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/pause-stream": { + "version": "0.0.11", + "license": [ + "MIT", + "Apache2" + ], "dependencies": { - "any-promise": "^1.0.0", - "object-assign": "^4.0.1", - "thenify-all": "^1.0.0" + "through": "~2.3" } }, - "node_modules/nanoid": { - "version": "3.3.3", - "dev": true, + "node_modules/pbkdf2": { + "version": "3.1.2", "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.cjs" + "dependencies": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" }, "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + "node": ">=0.12" } }, - "node_modules/napi-build-utils": { - "version": "1.0.2", + "node_modules/peek-stream": { + "version": "1.1.3", "dev": true, "license": "MIT", - "optional": true + "dependencies": { + "buffer-from": "^1.0.0", + "duplexify": "^3.5.0", + "through2": "^2.0.3" + } }, - "node_modules/natural-compare": { - "version": "1.4.0", + "node_modules/pend": { + "version": "1.2.0", "dev": true, "license": "MIT" }, - "node_modules/neatequal": { - "version": "1.0.0", + "node_modules/picocolors": { + "version": "1.0.1", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", "dev": true, "license": "MIT", - "dependencies": { - "varstream": "^0.3.2" + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/negotiator": { - "version": "0.6.3", + "node_modules/pkg-dir": { + "version": "4.2.0", "dev": true, "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, "engines": { - "node": ">= 0.6" + "node": ">=8" } }, - "node_modules/neo-async": { - "version": "2.6.2", + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", "dev": true, - "license": "MIT" + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "node_modules/next-tick": { - "version": "1.1.0", + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", "dev": true, - "license": "ISC" + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } }, - "node_modules/nise": { - "version": "5.1.1", + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", "dev": true, - "license": "BSD-3-Clause", + "license": "MIT", "dependencies": { - "@sinonjs/commons": "^1.8.3", - "@sinonjs/fake-timers": ">=5", - "@sinonjs/text-encoding": "^0.7.1", - "just-extend": "^4.0.2", - "path-to-regexp": "^1.7.0" + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/node-abi": { - "version": "3.45.0", + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", "dev": true, "license": "MIT", - "optional": true, "dependencies": { - "semver": "^7.3.5" + "p-limit": "^2.2.0" }, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/node-addon-api": { - "version": "4.3.0", + "node_modules/playwright": { + "version": "1.44.0", "dev": true, - "license": "MIT", - "optional": true - }, - "node_modules/node-fetch": { - "version": "2.7.0", - "license": "MIT", + "license": "Apache-2.0", "dependencies": { - "whatwg-url": "^5.0.0" + "playwright-core": "1.44.0" }, - "engines": { - "node": "4.x || >=6.0.0" + "bin": { + "playwright": "cli.js" }, - "peerDependencies": { - "encoding": "^0.1.0" + "engines": { + "node": ">=16" }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } + "optionalDependencies": { + "fsevents": "2.3.2" } }, - "node_modules/node-fetch/node_modules/tr46": { - "version": "0.0.3", - "license": "MIT" + "node_modules/playwright-core": { + "version": "1.44.0", + "dev": true, + "license": "Apache-2.0", + "bin": { + "playwright-core": "cli.js" + }, + "engines": { + "node": ">=16" + } }, - "node_modules/node-fetch/node_modules/webidl-conversions": { - "version": "3.0.1", - "license": "BSD-2-Clause" + "node_modules/pluralize": { + "version": "8.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } }, - "node_modules/node-fetch/node_modules/whatwg-url": { - "version": "5.0.0", + "node_modules/portfinder": { + "version": "1.0.32", "license": "MIT", "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" + "async": "^2.6.4", + "debug": "^3.2.7", + "mkdirp": "^0.5.6" + }, + "engines": { + "node": ">= 0.12.0" } }, - "node_modules/node-forge": { - "version": "1.3.1", - "dev": true, - "license": "(BSD-3-Clause OR GPL-2.0)", - "engines": { - "node": ">= 6.13.0" + "node_modules/portfinder/node_modules/async": { + "version": "2.6.4", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.14" } }, - "node_modules/node-releases": { - "version": "2.0.14", - "dev": true, - "license": "MIT" + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } }, - "node_modules/normalize-package-data": { - "version": "3.0.3", - "dev": true, - "license": "BSD-2-Clause", + "node_modules/postcss": { + "version": "8.4.33", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", "dependencies": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", - "semver": "^7.3.4", - "validate-npm-package-license": "^3.0.1" + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" }, "engines": { - "node": ">=10" + "node": "^10 || ^12 || >=14" } }, - "node_modules/normalize-path": { + "node_modules/postcss-modules-extract-imports": { "version": "3.0.0", "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-url": { - "version": "6.1.0", - "license": "MIT", + "license": "ISC", "engines": { - "node": ">=10" + "node": "^10 || ^12 || >= 14" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/npm-run-path": { - "version": "4.0.1", + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.4", "dev": true, "license": "MIT", "dependencies": { - "path-key": "^3.0.0" + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" }, "engines": { - "node": ">=8" + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/nth-check": { - "version": "2.1.1", + "node_modules/postcss-modules-scope": { + "version": "3.1.1", "dev": true, - "license": "BSD-2-Clause", + "license": "ISC", "dependencies": { - "boolbase": "^1.0.0" + "postcss-selector-parser": "^6.0.4" }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/nunjucks": { - "version": "3.2.4", + "node_modules/postcss-modules-values": { + "version": "4.0.0", "dev": true, - "license": "BSD-2-Clause", + "license": "ISC", "dependencies": { - "a-sync-waterfall": "^1.0.0", - "asap": "^2.0.3", - "commander": "^5.1.0" - }, - "bin": { - "nunjucks-precompile": "bin/precompile" + "icss-utils": "^5.0.0" }, "engines": { - "node": ">= 6.9.0" + "node": "^10 || ^12 || >= 14" }, "peerDependencies": { - "chokidar": "^3.3.0" - }, - "peerDependenciesMeta": { - "chokidar": { - "optional": true - } + "postcss": "^8.1.0" } }, - "node_modules/nunjucks/node_modules/commander": { - "version": "5.1.0", + "node_modules/postcss-selector-parser": { + "version": "6.0.15", "dev": true, "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, "engines": { - "node": ">= 6" + "node": ">=4" } }, - "node_modules/nwsapi": { - "version": "2.2.7", + "node_modules/postcss-value-parser": { + "version": "4.2.0", "dev": true, "license": "MIT" }, - "node_modules/object-assign": { - "version": "4.1.1", - "dev": true, + "node_modules/postcss/node_modules/nanoid": { + "version": "3.3.7", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, "engines": { - "node": ">=0.10.0" + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/object-inspect": { - "version": "1.13.2", + "node_modules/prebuild-install": { + "version": "7.1.1", + "dev": true, "license": "MIT", - "engines": { - "node": ">= 0.4" + "optional": true, + "dependencies": { + "detect-libc": "^2.0.0", + "expand-template": "^2.0.3", + "github-from-package": "0.0.0", + "minimist": "^1.2.3", + "mkdirp-classic": "^0.5.3", + "napi-build-utils": "^1.0.1", + "node-abi": "^3.3.0", + "pump": "^3.0.0", + "rc": "^1.2.7", + "simple-get": "^4.0.0", + "tar-fs": "^2.0.0", + "tunnel-agent": "^0.6.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "bin": { + "prebuild-install": "bin.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/object-is": { - "version": "1.1.5", + "node_modules/prettier": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", + "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" + "bin": { + "prettier": "bin/prettier.cjs" }, "engines": { - "node": ">= 0.4" + "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/prettier/prettier?sponsor=1" } }, - "node_modules/object-keys": { - "version": "1.1.1", + "node_modules/prettier-linter-helpers": { + "version": "1.0.0", + "dev": true, "license": "MIT", + "dependencies": { + "fast-diff": "^1.1.2" + }, "engines": { - "node": ">= 0.4" + "node": ">=6.0.0" } }, - "node_modules/object.assign": { - "version": "4.1.4", + "node_modules/prettier-plugin-sh": { + "version": "0.14.0", + "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" + "mvdan-sh": "^0.10.1", + "sh-syntax": "^0.4.1" }, "engines": { - "node": ">= 0.4" + "node": ">=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://opencollective.com/unts" + }, + "peerDependencies": { + "prettier": "^3.0.3" } }, - "node_modules/obuf": { - "version": "1.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/on-finished": { - "version": "2.4.1", + "node_modules/pretty-quick": { + "version": "4.0.0", "dev": true, "license": "MIT", "dependencies": { - "ee-first": "1.1.1" + "execa": "^5.1.1", + "find-up": "^5.0.0", + "ignore": "^5.3.0", + "mri": "^1.2.0", + "picocolors": "^1.0.0", + "picomatch": "^3.0.1", + "tslib": "^2.6.2" + }, + "bin": { + "pretty-quick": "lib/cli.mjs" }, "engines": { - "node": ">= 0.8" + "node": ">=14" + }, + "peerDependencies": { + "prettier": "^3.0.0" } }, - "node_modules/on-headers": { - "version": "1.0.2", + "node_modules/pretty-quick/node_modules/picomatch": { + "version": "3.0.1", "dev": true, "license": "MIT", "engines": { - "node": ">= 0.8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/once": { - "version": "1.4.0", - "license": "ISC", - "dependencies": { - "wrappy": "1" + "node_modules/prismjs": { + "version": "1.29.0", + "license": "MIT", + "engines": { + "node": ">=6" } }, - "node_modules/one-time": { - "version": "1.0.0", + "node_modules/private": { + "version": "0.1.8", + "dev": true, "license": "MIT", - "dependencies": { - "fn.name": "1.x.x" + "engines": { + "node": ">= 0.6" } }, - "node_modules/onetime": { - "version": "5.1.2", - "dev": true, + "node_modules/process": { + "version": "0.11.10", "license": "MIT", - "dependencies": { - "mimic-fn": "^2.1.0" - }, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.6.0" } }, - "node_modules/only": { - "version": "0.0.2", - "dev": true + "node_modules/process-nextick-args": { + "version": "2.0.1", + "license": "MIT" }, - "node_modules/open": { - "version": "8.4.0", + "node_modules/proxy-addr": { + "version": "2.0.7", "dev": true, "license": "MIT", "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.10" } }, - "node_modules/optionator": { - "version": "0.9.3", + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", "dev": true, "license": "MIT", - "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" - }, "engines": { - "node": ">= 0.8.0" + "node": ">= 0.10" } }, - "node_modules/os-browserify": { - "version": "0.3.0", + "node_modules/psl": { + "version": "1.9.0", + "dev": true, "license": "MIT" }, - "node_modules/p-cancelable": { - "version": "2.1.1", + "node_modules/public-encrypt": { + "version": "4.0.3", "license": "MIT", - "engines": { - "node": ">=8" + "dependencies": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" } }, - "node_modules/p-limit": { - "version": "3.1.0", - "dev": true, + "node_modules/public-encrypt/node_modules/bn.js": { + "version": "4.12.0", + "license": "MIT" + }, + "node_modules/pump": { + "version": "3.0.0", "license": "MIT", "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "end-of-stream": "^1.1.0", + "once": "^1.3.1" } }, - "node_modules/p-locate": { - "version": "5.0.0", + "node_modules/pumpify": { + "version": "1.5.1", "dev": true, "license": "MIT", "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" } }, - "node_modules/p-retry": { - "version": "4.6.1", + "node_modules/pumpify/node_modules/pump": { + "version": "2.0.1", "dev": true, "license": "MIT", "dependencies": { - "@types/retry": "^0.12.0", - "retry": "^0.13.1" - }, - "engines": { - "node": ">=8" + "end-of-stream": "^1.1.0", + "once": "^1.3.1" } }, - "node_modules/p-try": { - "version": "2.2.0", - "dev": true, + "node_modules/punycode": { + "version": "2.3.1", "license": "MIT", "engines": { "node": ">=6" } }, - "node_modules/pako": { - "version": "1.0.11", - "dev": true, - "license": "(MIT AND Zlib)" - }, - "node_modules/parent-module": { - "version": "1.0.1", + "node_modules/qs": { + "version": "6.13.0", "dev": true, - "license": "MIT", + "license": "BSD-3-Clause", "dependencies": { - "callsites": "^3.0.0" + "side-channel": "^1.0.6" }, "engines": { - "node": ">=6" + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/parse-asn1": { - "version": "5.1.6", - "license": "ISC", - "dependencies": { - "asn1.js": "^5.2.0", - "browserify-aes": "^1.0.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" + "node_modules/querystring": { + "version": "0.2.0", + "engines": { + "node": ">=0.4.x" } }, - "node_modules/parse-json": { - "version": "5.2.0", + "node_modules/querystringify": { + "version": "2.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/queue-tick": { + "version": "1.0.1", "dev": true, + "license": "MIT" + }, + "node_modules/quick-lru": { + "version": "5.1.1", "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/parse-node-version": { - "version": "1.0.1", + "node_modules/randombytes": { + "version": "2.1.0", "license": "MIT", - "engines": { - "node": ">= 0.10" + "dependencies": { + "safe-buffer": "^5.1.0" } }, - "node_modules/parse-semver": { - "version": "1.1.1", - "dev": true, + "node_modules/randomfill": { + "version": "1.0.4", "license": "MIT", "dependencies": { - "semver": "^5.1.0" + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" } }, - "node_modules/parse-semver/node_modules/semver": { - "version": "5.7.2", + "node_modules/range-parser": { + "version": "1.2.1", "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver" + "license": "MIT", + "engines": { + "node": ">= 0.6" } }, - "node_modules/parse-srcset": { - "version": "1.0.2", - "license": "MIT" - }, - "node_modules/parse5": { - "version": "7.1.2", + "node_modules/raw-body": { + "version": "2.5.2", "dev": true, "license": "MIT", "dependencies": { - "entities": "^4.4.0" + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" + "engines": { + "node": ">= 0.8" } }, - "node_modules/parse5-htmlparser2-tree-adapter": { - "version": "7.0.0", + "node_modules/rc": { + "version": "1.2.8", "dev": true, - "license": "MIT", + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "optional": true, "dependencies": { - "domhandler": "^5.0.2", - "parse5": "^7.0.0" + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" + "bin": { + "rc": "cli.js" } }, - "node_modules/parseurl": { - "version": "1.3.3", + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", "dev": true, "license": "MIT", + "optional": true, "engines": { - "node": ">= 0.8" + "node": ">=0.10.0" } }, - "node_modules/path-browserify": { - "version": "1.0.1", - "license": "MIT" - }, - "node_modules/path-exists": { - "version": "4.0.0", + "node_modules/read": { + "version": "1.0.7", "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "license": "MIT", + "license": "ISC", + "dependencies": { + "mute-stream": "~0.0.4" + }, "engines": { - "node": ">=0.10.0" + "node": ">=0.8" } }, - "node_modules/path-key": { - "version": "3.1.1", + "node_modules/read-pkg": { + "version": "5.2.0", + "dev": true, "license": "MIT", + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, "engines": { "node": ">=8" } }, - "node_modules/path-parse": { - "version": "1.0.7", + "node_modules/read-pkg-up": { + "version": "7.0.1", "dev": true, - "license": "MIT" - }, - "node_modules/path-scurry": { - "version": "1.10.1", - "license": "BlueOak-1.0.0", + "license": "MIT", "dependencies": { - "lru-cache": "^9.1.1 || ^10.0.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.1.0", - "license": "ISC", - "engines": { - "node": "14 || >=16.14" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/path-to-regexp": { - "version": "1.9.0", + "node_modules/read-pkg-up/node_modules/find-up": { + "version": "4.1.0", "dev": true, "license": "MIT", "dependencies": { - "isarray": "0.0.1" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/path-to-regexp/node_modules/isarray": { - "version": "0.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/path-type": { - "version": "4.0.0", + "node_modules/read-pkg-up/node_modules/locate-path": { + "version": "5.0.0", "dev": true, "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, "engines": { "node": ">=8" } }, - "node_modules/pause-stream": { - "version": "0.0.11", - "license": [ - "MIT", - "Apache2" - ], + "node_modules/read-pkg-up/node_modules/p-limit": { + "version": "2.3.0", + "dev": true, + "license": "MIT", "dependencies": { - "through": "~2.3" + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pbkdf2": { - "version": "3.1.2", + "node_modules/read-pkg-up/node_modules/p-locate": { + "version": "4.1.0", + "dev": true, "license": "MIT", "dependencies": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" + "p-limit": "^2.2.0" }, "engines": { - "node": ">=0.12" + "node": ">=8" } }, - "node_modules/peek-stream": { - "version": "1.1.3", + "node_modules/read-pkg/node_modules/hosted-git-info": { + "version": "2.8.9", "dev": true, - "license": "MIT", + "license": "ISC" + }, + "node_modules/read-pkg/node_modules/normalize-package-data": { + "version": "2.5.0", + "dev": true, + "license": "BSD-2-Clause", "dependencies": { - "buffer-from": "^1.0.0", - "duplexify": "^3.5.0", - "through2": "^2.0.3" + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" } }, - "node_modules/pend": { - "version": "1.2.0", + "node_modules/read-pkg/node_modules/semver": { + "version": "5.7.2", "dev": true, - "license": "MIT" - }, - "node_modules/picocolors": { - "version": "1.0.1", - "license": "ISC" + "license": "ISC", + "bin": { + "semver": "bin/semver" + } }, - "node_modules/picomatch": { - "version": "2.3.1", + "node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", "dev": true, - "license": "MIT", + "license": "(MIT OR CC0-1.0)", "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "node": ">=8" } }, - "node_modules/pkg-dir": { - "version": "4.2.0", - "dev": true, + "node_modules/readable-stream": { + "version": "3.6.2", "license": "MIT", "dependencies": { - "find-up": "^4.0.0" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": ">=8" + "node": ">= 6" } }, - "node_modules/pkg-dir/node_modules/find-up": { - "version": "4.1.0", + "node_modules/readdirp": { + "version": "3.6.0", "dev": true, "license": "MIT", "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "picomatch": "^2.2.1" }, "engines": { - "node": ">=8" + "node": ">=8.10.0" } }, - "node_modules/pkg-dir/node_modules/locate-path": { - "version": "5.0.0", + "node_modules/readline-sync": { + "version": "1.4.10", "dev": true, "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, "engines": { - "node": ">=8" + "node": ">= 0.8.0" } }, - "node_modules/pkg-dir/node_modules/p-limit": { - "version": "2.3.0", + "node_modules/recast": { + "version": "0.11.23", "dev": true, "license": "MIT", "dependencies": { - "p-try": "^2.0.0" + "ast-types": "0.9.6", + "esprima": "~3.1.0", + "private": "~0.1.5", + "source-map": "~0.5.0" }, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.8" } }, - "node_modules/pkg-dir/node_modules/p-locate": { - "version": "4.1.0", + "node_modules/recast/node_modules/ast-types": { + "version": "0.9.6", "dev": true, "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" - }, "engines": { - "node": ">=8" + "node": ">= 0.8" } }, - "node_modules/playwright": { - "version": "1.44.0", + "node_modules/recast/node_modules/esprima": { + "version": "3.1.3", "dev": true, - "license": "Apache-2.0", - "dependencies": { - "playwright-core": "1.44.0" - }, + "license": "BSD-2-Clause", "bin": { - "playwright": "cli.js" + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" }, "engines": { - "node": ">=16" - }, - "optionalDependencies": { - "fsevents": "2.3.2" + "node": ">=4" } }, - "node_modules/playwright-core": { - "version": "1.44.0", + "node_modules/recast/node_modules/source-map": { + "version": "0.5.7", "dev": true, - "license": "Apache-2.0", - "bin": { - "playwright-core": "cli.js" - }, + "license": "BSD-3-Clause", "engines": { - "node": ">=16" + "node": ">=0.10.0" } }, - "node_modules/pluralize": { - "version": "8.0.0", + "node_modules/rechoir": { + "version": "0.8.0", "dev": true, "license": "MIT", + "dependencies": { + "resolve": "^1.20.0" + }, "engines": { - "node": ">=4" + "node": ">= 10.13.0" } }, - "node_modules/portfinder": { - "version": "1.0.32", + "node_modules/redent": { + "version": "3.0.0", + "dev": true, "license": "MIT", "dependencies": { - "async": "^2.6.4", - "debug": "^3.2.7", - "mkdirp": "^0.5.6" + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" }, "engines": { - "node": ">= 0.12.0" + "node": ">=8" } }, - "node_modules/portfinder/node_modules/async": { - "version": "2.6.4", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.14" - } + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", + "dev": true, + "license": "MIT" }, - "node_modules/portfinder/node_modules/debug": { - "version": "3.2.7", + "node_modules/regexp-tree": { + "version": "0.1.27", + "dev": true, "license": "MIT", - "dependencies": { - "ms": "^2.1.1" + "bin": { + "regexp-tree": "bin/regexp-tree" } }, - "node_modules/postcss": { - "version": "8.4.33", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], + "node_modules/regexp.prototype.flags": { + "version": "1.4.3", "license": "MIT", "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "functions-have-names": "^1.2.2" }, "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-modules-extract-imports": { - "version": "3.0.0", - "dev": true, - "license": "ISC", - "engines": { - "node": "^10 || ^12 || >= 14" + "node": ">= 0.4" }, - "peerDependencies": { - "postcss": "^8.1.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/postcss-modules-local-by-default": { - "version": "4.0.4", + "node_modules/regjsparser": { + "version": "0.10.0", "dev": true, - "license": "MIT", + "license": "BSD-2-Clause", "dependencies": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" - }, - "engines": { - "node": "^10 || ^12 || >= 14" + "jsesc": "~0.5.0" }, - "peerDependencies": { - "postcss": "^8.1.0" + "bin": { + "regjsparser": "bin/parser" } }, - "node_modules/postcss-modules-scope": { - "version": "3.1.1", + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", "dev": true, - "license": "ISC", - "dependencies": { - "postcss-selector-parser": "^6.0.4" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "bin": { + "jsesc": "bin/jsesc" } }, - "node_modules/postcss-modules-values": { - "version": "4.0.0", - "dev": true, - "license": "ISC", - "dependencies": { - "icss-utils": "^5.0.0" - }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "license": "ISC" + }, + "node_modules/replace-ext": { + "version": "1.0.1", + "license": "MIT", "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">= 0.10" } }, - "node_modules/postcss-selector-parser": { - "version": "6.0.15", - "dev": true, + "node_modules/request-light": { + "version": "0.2.5", "license": "MIT", "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" + "http-proxy-agent": "^2.1.0", + "https-proxy-agent": "^2.2.3", + "vscode-nls": "^4.1.1" } }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/postcss/node_modules/nanoid": { - "version": "3.3.7", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], + "node_modules/request-light/node_modules/agent-base": { + "version": "4.3.0", "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.cjs" + "dependencies": { + "es6-promisify": "^5.0.0" }, "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + "node": ">= 4.0.0" } }, - "node_modules/prebuild-install": { - "version": "7.1.1", - "dev": true, + "node_modules/request-light/node_modules/debug": { + "version": "3.1.0", "license": "MIT", - "optional": true, "dependencies": { - "detect-libc": "^2.0.0", - "expand-template": "^2.0.3", - "github-from-package": "0.0.0", - "minimist": "^1.2.3", - "mkdirp-classic": "^0.5.3", - "napi-build-utils": "^1.0.1", - "node-abi": "^3.3.0", - "pump": "^3.0.0", - "rc": "^1.2.7", - "simple-get": "^4.0.0", - "tar-fs": "^2.0.0", - "tunnel-agent": "^0.6.0" - }, - "bin": { - "prebuild-install": "bin.js" + "ms": "2.0.0" + } + }, + "node_modules/request-light/node_modules/http-proxy-agent": { + "version": "2.1.0", + "license": "MIT", + "dependencies": { + "agent-base": "4", + "debug": "3.1.0" }, "engines": { - "node": ">=10" + "node": ">= 4.5.0" } }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "dev": true, + "node_modules/request-light/node_modules/https-proxy-agent": { + "version": "2.2.4", "license": "MIT", + "dependencies": { + "agent-base": "^4.3.0", + "debug": "^3.1.0" + }, "engines": { - "node": ">= 0.8.0" + "node": ">= 4.5.0" } }, - "node_modules/prettier": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", - "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", - "dev": true, - "bin": { - "prettier": "bin/prettier.cjs" - }, + "node_modules/request-light/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/request-light/node_modules/vscode-nls": { + "version": "4.1.2", + "license": "MIT" + }, + "node_modules/require-directory": { + "version": "2.1.1", + "license": "MIT", "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/prettier-linter-helpers": { - "version": "1.0.0", + "node_modules/require-from-string": { + "version": "2.0.2", "dev": true, "license": "MIT", - "dependencies": { - "fast-diff": "^1.1.2" - }, "engines": { - "node": ">=6.0.0" + "node": ">=0.10.0" } }, - "node_modules/prettier-plugin-sh": { - "version": "0.14.0", + "node_modules/requires-port": { + "version": "1.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/resolve": { + "version": "1.22.1", "dev": true, "license": "MIT", "dependencies": { - "mvdan-sh": "^0.10.1", - "sh-syntax": "^0.4.1" + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" }, - "engines": { - "node": ">=16.0.0" + "bin": { + "resolve": "bin/resolve" }, "funding": { - "url": "https://opencollective.com/unts" - }, - "peerDependencies": { - "prettier": "^3.0.3" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/pretty-quick": { - "version": "4.0.0", + "node_modules/resolve-alpn": { + "version": "1.2.1", + "license": "MIT" + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", "dev": true, "license": "MIT", "dependencies": { - "execa": "^5.1.1", - "find-up": "^5.0.0", - "ignore": "^5.3.0", - "mri": "^1.2.0", - "picocolors": "^1.0.0", - "picomatch": "^3.0.1", - "tslib": "^2.6.2" - }, - "bin": { - "pretty-quick": "lib/cli.mjs" + "resolve-from": "^5.0.0" }, "engines": { - "node": ">=14" - }, - "peerDependencies": { - "prettier": "^3.0.0" + "node": ">=8" } }, - "node_modules/pretty-quick/node_modules/picomatch": { - "version": "3.0.1", + "node_modules/resolve-cwd/node_modules/resolve-from": { + "version": "5.0.0", "dev": true, "license": "MIT", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "node": ">=8" } }, - "node_modules/prismjs": { - "version": "1.29.0", + "node_modules/resolve-from": { + "version": "4.0.0", + "dev": true, "license": "MIT", "engines": { - "node": ">=6" + "node": ">=4" } }, - "node_modules/private": { - "version": "0.1.8", + "node_modules/resolve-path": { + "version": "1.4.0", "dev": true, "license": "MIT", + "dependencies": { + "http-errors": "~1.6.2", + "path-is-absolute": "1.0.1" + }, "engines": { - "node": ">= 0.6" + "node": ">= 0.8" } }, - "node_modules/process": { - "version": "0.11.10", + "node_modules/resolve-path/node_modules/http-errors": { + "version": "1.6.3", + "dev": true, "license": "MIT", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, "engines": { - "node": ">= 0.6.0" + "node": ">= 0.6" } }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "license": "MIT" + "node_modules/resolve-path/node_modules/inherits": { + "version": "2.0.3", + "dev": true, + "license": "ISC" }, - "node_modules/proxy-addr": { - "version": "2.0.7", + "node_modules/resolve-path/node_modules/setprototypeof": { + "version": "1.1.0", "dev": true, + "license": "ISC" + }, + "node_modules/responselike": { + "version": "2.0.0", "license": "MIT", "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - }, - "engines": { - "node": ">= 0.10" + "lowercase-keys": "^2.0.0" } }, - "node_modules/proxy-addr/node_modules/ipaddr.js": { - "version": "1.9.1", + "node_modules/retry": { + "version": "0.13.1", "dev": true, "license": "MIT", "engines": { - "node": ">= 0.10" + "node": ">= 4" } }, - "node_modules/psl": { - "version": "1.9.0", + "node_modules/reusify": { + "version": "1.0.4", "dev": true, - "license": "MIT" - }, - "node_modules/public-encrypt": { - "version": "4.0.3", "license": "MIT", - "dependencies": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" } }, - "node_modules/public-encrypt/node_modules/bn.js": { - "version": "4.12.0", - "license": "MIT" - }, - "node_modules/pump": { - "version": "3.0.0", - "license": "MIT", + "node_modules/rimraf": { + "version": "3.0.2", + "dev": true, + "license": "ISC", "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/pumpify": { - "version": "1.5.1", + "node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", "dev": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/pumpify/node_modules/pump": { - "version": "2.0.1", - "dev": true, + "node_modules/ripemd160": { + "version": "2.0.2", "license": "MIT", "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" + "hash-base": "^3.0.0", + "inherits": "^2.0.1" } }, - "node_modules/punycode": { - "version": "2.3.1", + "node_modules/rrweb-cssom": { + "version": "0.6.0", + "dev": true, + "license": "MIT" + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "license": "MIT", - "engines": { - "node": ">=6" + "dependencies": { + "queue-microtask": "^1.2.2" } }, - "node_modules/qs": { - "version": "6.13.0", + "node_modules/rxjs": { + "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "dev": true, - "license": "BSD-3-Clause", + "license": "Apache-2.0", "dependencies": { - "side-channel": "^1.0.6" - }, - "engines": { - "node": ">=0.6" + "tslib": "^1.9.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/querystring": { - "version": "0.2.0", "engines": { - "node": ">=0.4.x" + "npm": ">=2.0.0" } }, - "node_modules/querystringify": { - "version": "2.2.0", + "node_modules/rxjs/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true, - "license": "MIT" + "license": "0BSD" }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "dev": true, + "node_modules/safe-buffer": { + "version": "5.2.1", "funding": [ { "type": "github", @@ -15238,3731 +16124,4128 @@ ], "license": "MIT" }, - "node_modules/queue-tick": { - "version": "1.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/quick-lru": { - "version": "5.1.1", + "node_modules/safe-stable-stringify": { + "version": "2.3.1", "license": "MIT", "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/randombytes": { - "version": "2.1.0", - "license": "MIT", - "dependencies": { - "safe-buffer": "^5.1.0" - } + "node_modules/safer-buffer": { + "version": "2.1.2", + "license": "MIT" }, - "node_modules/randomfill": { - "version": "1.0.4", + "node_modules/sanitize-html": { + "version": "2.13.0", "license": "MIT", "dependencies": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" + "deepmerge": "^4.2.2", + "escape-string-regexp": "^4.0.0", + "htmlparser2": "^8.0.0", + "is-plain-object": "^5.0.0", + "parse-srcset": "^1.0.2", + "postcss": "^8.3.11" } }, - "node_modules/range-parser": { - "version": "1.2.1", - "dev": true, + "node_modules/sanitize-html/node_modules/is-plain-object": { + "version": "5.0.0", "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=0.10.0" } }, - "node_modules/raw-body": { - "version": "2.5.2", + "node_modules/sass": { + "version": "1.69.5", "dev": true, "license": "MIT", "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/rc": { - "version": "1.2.8", - "dev": true, - "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", - "optional": true, - "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" }, "bin": { - "rc": "cli.js" - } - }, - "node_modules/rc/node_modules/strip-json-comments": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/read": { - "version": "1.0.7", - "dev": true, - "license": "ISC", - "dependencies": { - "mute-stream": "~0.0.4" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/read-pkg": { - "version": "5.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^2.5.0", - "parse-json": "^5.0.0", - "type-fest": "^0.6.0" + "sass": "sass.js" }, "engines": { - "node": ">=8" + "node": ">=14.0.0" } }, - "node_modules/read-pkg-up": { - "version": "7.0.1", + "node_modules/sass-loader": { + "version": "16.0.2", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-16.0.2.tgz", + "integrity": "sha512-Ll6iXZ1EYwYT19SqW4mSBb76vSSi8JgzElmzIerhEGgzB5hRjDQIWsPmuk1UrAXkR16KJHqVY0eH+5/uw9Tmfw==", "dev": true, - "license": "MIT", "dependencies": { - "find-up": "^4.1.0", - "read-pkg": "^5.2.0", - "type-fest": "^0.8.1" + "neo-async": "^2.6.2" }, "engines": { - "node": ">=8" + "node": ">= 18.12.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg-up/node_modules/find-up": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "type": "opencollective", + "url": "https://opencollective.com/webpack" }, - "engines": { - "node": ">=8" + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "webpack": { + "optional": true + } } }, - "node_modules/read-pkg-up/node_modules/locate-path": { - "version": "5.0.0", + "node_modules/sax": { + "version": "1.2.1", + "license": "ISC" + }, + "node_modules/saxes": { + "version": "6.0.0", "dev": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "p-locate": "^4.1.0" + "xmlchars": "^2.2.0" }, "engines": { - "node": ">=8" + "node": ">=v12.22.7" } }, - "node_modules/read-pkg-up/node_modules/p-limit": { - "version": "2.3.0", + "node_modules/schema-utils": { + "version": "3.3.0", "dev": true, "license": "MIT", "dependencies": { - "p-try": "^2.0.0" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" }, "engines": { - "node": ">=6" + "node": ">= 10.13.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg-up/node_modules/p-locate": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg/node_modules/hosted-git-info": { - "version": "2.8.9", - "dev": true, - "license": "ISC" - }, - "node_modules/read-pkg/node_modules/normalize-package-data": { - "version": "2.5.0", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/read-pkg/node_modules/semver": { - "version": "5.7.2", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/read-pkg/node_modules/type-fest": { - "version": "0.6.0", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=8" + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/readable-stream": { - "version": "3.6.2", + "node_modules/select-hose": { + "version": "2.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/selfsigned": { + "version": "2.1.1", + "dev": true, "license": "MIT", "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "node-forge": "^1" }, "engines": { - "node": ">= 6" + "node": ">=10" } }, - "node_modules/readdirp": { - "version": "3.6.0", - "dev": true, - "license": "MIT", - "dependencies": { - "picomatch": "^2.2.1" + "node_modules/semver": { + "version": "7.6.2", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">=8.10.0" + "node": ">=10" } }, - "node_modules/readline-sync": { - "version": "1.4.10", + "node_modules/send": { + "version": "0.19.0", "dev": true, "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, "engines": { "node": ">= 0.8.0" } }, - "node_modules/recast": { - "version": "0.11.23", + "node_modules/send/node_modules/debug": { + "version": "2.6.9", "dev": true, "license": "MIT", "dependencies": { - "ast-types": "0.9.6", - "esprima": "~3.1.0", - "private": "~0.1.5", - "source-map": "~0.5.0" - }, - "engines": { - "node": ">= 0.8" + "ms": "2.0.0" } }, - "node_modules/recast/node_modules/ast-types": { - "version": "0.9.6", + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/send/node_modules/depd": { + "version": "2.0.0", "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" } }, - "node_modules/recast/node_modules/esprima": { - "version": "3.1.3", + "node_modules/send/node_modules/ms": { + "version": "2.1.3", "dev": true, - "license": "BSD-2-Clause", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } + "license": "MIT" }, - "node_modules/recast/node_modules/source-map": { - "version": "0.5.7", + "node_modules/send/node_modules/statuses": { + "version": "2.0.1", "dev": true, - "license": "BSD-3-Clause", + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">= 0.8" } }, - "node_modules/rechoir": { - "version": "0.8.0", + "node_modules/serialize-javascript": { + "version": "6.0.0", "dev": true, - "license": "MIT", + "license": "BSD-3-Clause", "dependencies": { - "resolve": "^1.20.0" - }, - "engines": { - "node": ">= 10.13.0" + "randombytes": "^2.1.0" } }, - "node_modules/redent": { - "version": "3.0.0", + "node_modules/serve-index": { + "version": "1.9.1", "dev": true, "license": "MIT", "dependencies": { - "indent-string": "^4.0.0", - "strip-indent": "^3.0.0" + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" }, "engines": { - "node": ">=8" + "node": ">= 0.8.0" } }, - "node_modules/regexp-tree": { - "version": "0.1.27", + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", "dev": true, "license": "MIT", - "bin": { - "regexp-tree": "bin/regexp-tree" + "dependencies": { + "ms": "2.0.0" } }, - "node_modules/regexp.prototype.flags": { - "version": "1.4.3", + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "functions-have-names": "^1.2.2" + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 0.6" } }, - "node_modules/regjsparser": { - "version": "0.10.0", + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "jsesc": "~0.5.0" - }, - "bin": { - "regjsparser": "bin/parser" - } + "license": "ISC" }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", "dev": true, - "bin": { - "jsesc": "bin/jsesc" - } + "license": "MIT" }, - "node_modules/remove-trailing-separator": { + "node_modules/serve-index/node_modules/setprototypeof": { "version": "1.1.0", + "dev": true, "license": "ISC" }, - "node_modules/replace-ext": { - "version": "1.0.1", + "node_modules/serve-static": { + "version": "1.16.2", + "dev": true, "license": "MIT", + "dependencies": { + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.19.0" + }, "engines": { - "node": ">= 0.10" + "node": ">= 0.8.0" } }, - "node_modules/request-light": { - "version": "0.2.5", + "node_modules/serve-static/node_modules/encodeurl": { + "version": "2.0.0", + "dev": true, "license": "MIT", - "dependencies": { - "http-proxy-agent": "^2.1.0", - "https-proxy-agent": "^2.2.3", - "vscode-nls": "^4.1.1" + "engines": { + "node": ">= 0.8" } }, - "node_modules/request-light/node_modules/agent-base": { - "version": "4.3.0", + "node_modules/set-function-length": { + "version": "1.2.2", "license": "MIT", "dependencies": { - "es6-promisify": "^5.0.0" + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" }, "engines": { - "node": ">= 4.0.0" + "node": ">= 0.4" } }, - "node_modules/request-light/node_modules/debug": { - "version": "3.1.0", + "node_modules/setimmediate": { + "version": "1.0.5", + "dev": true, + "license": "MIT" + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "dev": true, + "license": "ISC" + }, + "node_modules/sh-syntax": { + "version": "0.4.2", + "dev": true, "license": "MIT", "dependencies": { - "ms": "2.0.0" + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" } }, - "node_modules/request-light/node_modules/http-proxy-agent": { - "version": "2.1.0", - "license": "MIT", + "node_modules/sha.js": { + "version": "2.4.11", + "license": "(MIT AND BSD-3-Clause)", "dependencies": { - "agent-base": "4", - "debug": "3.1.0" + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" }, - "engines": { - "node": ">= 4.5.0" + "bin": { + "sha.js": "bin.js" } }, - "node_modules/request-light/node_modules/https-proxy-agent": { - "version": "2.2.4", + "node_modules/shallow-clone": { + "version": "3.0.1", + "dev": true, "license": "MIT", "dependencies": { - "agent-base": "^4.3.0", - "debug": "^3.1.0" + "kind-of": "^6.0.2" }, "engines": { - "node": ">= 4.5.0" - } - }, - "node_modules/request-light/node_modules/ms": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/request-light/node_modules/vscode-nls": { - "version": "4.1.2", - "license": "MIT" + "node": ">=8" + } }, - "node_modules/require-directory": { - "version": "2.1.1", + "node_modules/shebang-command": { + "version": "2.0.0", "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/require-from-string": { - "version": "2.0.2", - "dev": true, + "node_modules/shebang-regex": { + "version": "3.0.0", "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/requires-port": { - "version": "1.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/resolve": { - "version": "1.22.1", + "node_modules/shell-quote": { + "version": "1.8.1", "dev": true, "license": "MIT", - "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/resolve-alpn": { - "version": "1.2.1", - "license": "MIT" - }, - "node_modules/resolve-cwd": { - "version": "3.0.0", + "node_modules/shelljs": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", "dev": true, - "license": "MIT", + "license": "BSD-3-Clause", "dependencies": { - "resolve-from": "^5.0.0" + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + }, + "bin": { + "shjs": "bin/shjs" }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/resolve-cwd/node_modules/resolve-from": { - "version": "5.0.0", + "node_modules/shelljs/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, - "license": "MIT", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, "engines": { - "node": ">=8" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/resolve-from": { - "version": "4.0.0", + "node_modules/shelljs/node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", "dev": true, "license": "MIT", "engines": { - "node": ">=4" + "node": ">= 0.10" } }, - "node_modules/resolve-path": { - "version": "1.4.0", + "node_modules/shelljs/node_modules/rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", "dev": true, - "license": "MIT", "dependencies": { - "http-errors": "~1.6.2", - "path-is-absolute": "1.0.1" + "resolve": "^1.1.6" }, "engines": { - "node": ">= 0.8" + "node": ">= 0.10" } }, - "node_modules/resolve-path/node_modules/http-errors": { - "version": "1.6.3", - "dev": true, + "node_modules/side-channel": { + "version": "1.0.6", "license": "MIT", "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" }, "engines": { - "node": ">= 0.6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/resolve-path/node_modules/inherits": { - "version": "2.0.3", + "node_modules/signal-exit": { + "version": "3.0.7", "dev": true, "license": "ISC" }, - "node_modules/resolve-path/node_modules/setprototypeof": { - "version": "1.1.0", + "node_modules/simple-concat": { + "version": "1.0.1", "dev": true, - "license": "ISC" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "optional": true }, - "node_modules/responselike": { - "version": "2.0.0", + "node_modules/simple-get": { + "version": "4.0.1", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "license": "MIT", + "optional": true, "dependencies": { - "lowercase-keys": "^2.0.0" + "decompress-response": "^6.0.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" } }, - "node_modules/retry": { - "version": "0.13.1", - "dev": true, + "node_modules/simple-swizzle": { + "version": "0.2.2", "license": "MIT", - "engines": { - "node": ">= 4" + "dependencies": { + "is-arrayish": "^0.3.1" } }, - "node_modules/reusify": { - "version": "1.0.4", + "node_modules/sinon": { + "version": "14.0.0", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.8.3", + "@sinonjs/fake-timers": "^9.1.2", + "@sinonjs/samsam": "^6.1.1", + "diff": "^5.0.0", + "nise": "^5.1.1", + "supports-color": "^7.2.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/sinon" + } + }, + "node_modules/sinon/node_modules/@sinonjs/fake-timers": { + "version": "9.1.2", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/slash": { + "version": "3.0.0", "dev": true, "license": "MIT", "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/rimraf": { - "version": "3.0.2", + "node_modules/sockjs": { + "version": "0.3.24", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "glob": "^7.1.3" - }, + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/sockjs/node_modules/uuid": { + "version": "8.3.2", + "dev": true, + "license": "MIT", "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "uuid": "dist/bin/uuid" } }, - "node_modules/rimraf/node_modules/glob": { - "version": "7.2.3", + "node_modules/source-list-map": { + "version": "2.0.1", "dev": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, + "license": "MIT" + }, + "node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=0.10.0" } }, - "node_modules/ripemd160": { - "version": "2.0.2", + "node_modules/source-map-js": { + "version": "1.0.2", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "dev": true, "license": "MIT", "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/spawn-command": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2.tgz", + "integrity": "sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==", + "dev": true + }, + "node_modules/spdx-correct": { + "version": "3.1.1", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" } }, - "node_modules/rrweb-cssom": { - "version": "0.6.0", + "node_modules/spdx-exceptions": { + "version": "2.3.0", "dev": true, - "license": "MIT" + "license": "CC-BY-3.0" }, - "node_modules/run-parallel": { - "version": "1.2.0", + "node_modules/spdx-expression-parse": { + "version": "3.0.1", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], "license": "MIT", "dependencies": { - "queue-microtask": "^1.2.2" + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" } }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" + "node_modules/spdx-license-ids": { + "version": "3.0.11", + "dev": true, + "license": "CC0-1.0" }, - "node_modules/safe-stable-stringify": { - "version": "2.3.1", + "node_modules/spdy": { + "version": "4.0.2", + "dev": true, "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, "engines": { - "node": ">=10" + "node": ">=6.0.0" } }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "license": "MIT" - }, - "node_modules/sanitize-html": { - "version": "2.13.0", + "node_modules/spdy-transport": { + "version": "3.0.0", + "dev": true, "license": "MIT", "dependencies": { - "deepmerge": "^4.2.2", - "escape-string-regexp": "^4.0.0", - "htmlparser2": "^8.0.0", - "is-plain-object": "^5.0.0", - "parse-srcset": "^1.0.2", - "postcss": "^8.3.11" + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" } }, - "node_modules/sanitize-html/node_modules/is-plain-object": { - "version": "5.0.0", + "node_modules/split": { + "version": "1.0.1", "license": "MIT", + "dependencies": { + "through": "2" + }, "engines": { - "node": ">=0.10.0" + "node": "*" } }, - "node_modules/sass": { - "version": "1.69.5", - "dev": true, + "node_modules/sprintf-js": { + "version": "1.0.3", + "license": "BSD-3-Clause" + }, + "node_modules/stack-trace": { + "version": "0.0.10", "license": "MIT", - "dependencies": { - "chokidar": ">=3.0.0 <4.0.0", - "immutable": "^4.0.0", - "source-map-js": ">=0.6.2 <2.0.0" - }, - "bin": { - "sass": "sass.js" - }, "engines": { - "node": ">=14.0.0" + "node": "*" } }, - "node_modules/sass-loader": { - "version": "16.0.2", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-16.0.2.tgz", - "integrity": "sha512-Ll6iXZ1EYwYT19SqW4mSBb76vSSi8JgzElmzIerhEGgzB5hRjDQIWsPmuk1UrAXkR16KJHqVY0eH+5/uw9Tmfw==", + "node_modules/statuses": { + "version": "1.5.0", "dev": true, - "dependencies": { - "neo-async": "^2.6.2" - }, + "license": "MIT", "engines": { - "node": ">= 18.12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "@rspack/core": "0.x || 1.x", - "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", - "sass": "^1.3.0", - "sass-embedded": "*", - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "@rspack/core": { - "optional": true - }, - "node-sass": { - "optional": true - }, - "sass": { - "optional": true - }, - "sass-embedded": { - "optional": true - }, - "webpack": { - "optional": true - } + "node": ">= 0.6" } }, - "node_modules/sax": { - "version": "1.2.1", - "license": "ISC" - }, - "node_modules/saxes": { - "version": "6.0.0", - "dev": true, - "license": "ISC", + "node_modules/stream-browserify": { + "version": "3.0.0", + "license": "MIT", "dependencies": { - "xmlchars": "^2.2.0" - }, + "inherits": "~2.0.4", + "readable-stream": "^3.5.0" + } + }, + "node_modules/stream-buffers": { + "version": "3.0.2", + "license": "Unlicense", "engines": { - "node": ">=v12.22.7" + "node": ">= 0.10.0" } }, - "node_modules/schema-utils": { - "version": "3.3.0", - "dev": true, + "node_modules/stream-combiner": { + "version": "0.2.2", "license": "MIT", "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "duplexer": "~0.1.1", + "through": "~2.3.4" } }, - "node_modules/select-hose": { - "version": "2.0.0", + "node_modules/stream-shift": { + "version": "1.0.1", "dev": true, "license": "MIT" }, - "node_modules/selfsigned": { - "version": "2.1.1", + "node_modules/streamx": { + "version": "2.16.1", "dev": true, "license": "MIT", "dependencies": { - "node-forge": "^1" + "fast-fifo": "^1.1.0", + "queue-tick": "^1.0.1" }, - "engines": { - "node": ">=10" + "optionalDependencies": { + "bare-events": "^2.2.0" } }, - "node_modules/semver": { - "version": "7.6.2", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" + "node_modules/string_decoder": { + "version": "1.3.0", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/send": { - "version": "0.19.0", - "dev": true, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", "license": "MIT", "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">= 0.8.0" + "node": ">=8" } }, - "node_modules/send/node_modules/debug": { - "version": "2.6.9", - "dev": true, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", "license": "MIT", - "dependencies": { - "ms": "2.0.0" + "engines": { + "node": ">=8" } }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/send/node_modules/depd": { - "version": "2.0.0", - "dev": true, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, "engines": { - "node": ">= 0.8" + "node": ">=8" } }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "dev": true, - "license": "MIT" - }, - "node_modules/send/node_modules/statuses": { - "version": "2.0.1", - "dev": true, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "5.0.1", "license": "MIT", "engines": { - "node": ">= 0.8" + "node": ">=8" } }, - "node_modules/serialize-javascript": { - "version": "6.0.0", - "dev": true, - "license": "BSD-3-Clause", + "node_modules/string-width/node_modules/strip-ansi": { + "version": "6.0.1", + "license": "MIT", "dependencies": { - "randombytes": "^2.1.0" + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "node_modules/serve-index": { - "version": "1.9.1", - "dev": true, + "node_modules/string.prototype.trimend": { + "version": "1.0.5", "license": "MIT", "dependencies": { - "accepts": "~1.3.4", - "batch": "0.6.1", - "debug": "2.6.9", - "escape-html": "~1.0.3", - "http-errors": "~1.6.2", - "mime-types": "~2.1.17", - "parseurl": "~1.3.2" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" }, - "engines": { - "node": ">= 0.8.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/serve-index/node_modules/debug": { - "version": "2.6.9", - "dev": true, + "node_modules/string.prototype.trimstart": { + "version": "1.0.5", "license": "MIT", "dependencies": { - "ms": "2.0.0" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/serve-index/node_modules/http-errors": { - "version": "1.6.3", - "dev": true, + "node_modules/strip-ansi": { + "version": "5.2.0", "license": "MIT", "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" + "ansi-regex": "^4.1.0" }, "engines": { - "node": ">= 0.6" + "node": ">=6" } }, - "node_modules/serve-index/node_modules/inherits": { - "version": "2.0.3", - "dev": true, - "license": "ISC" - }, - "node_modules/serve-index/node_modules/ms": { - "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/serve-index/node_modules/setprototypeof": { - "version": "1.1.0", - "dev": true, - "license": "ISC" - }, - "node_modules/serve-static": { - "version": "1.16.2", - "dev": true, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", "license": "MIT", "dependencies": { - "encodeurl": "~2.0.0", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.19.0" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">= 0.8.0" + "node": ">=8" } }, - "node_modules/serve-static/node_modules/encodeurl": { + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { "version": "2.0.0", "dev": true, "license": "MIT", "engines": { - "node": ">= 0.8" + "node": ">=6" } }, - "node_modules/set-function-length": { - "version": "1.2.2", + "node_modules/strip-indent": { + "version": "3.0.0", + "dev": true, "license": "MIT", "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2" + "min-indent": "^1.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=8" } }, - "node_modules/setimmediate": { - "version": "1.0.5", + "node_modules/strip-json-comments": { + "version": "3.1.1", "dev": true, - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "dev": true, - "license": "ISC" + "node_modules/strnum": { + "version": "1.0.5", + "license": "MIT" }, - "node_modules/sh-syntax": { - "version": "0.4.2", + "node_modules/style-loader": { + "version": "3.3.3", "dev": true, "license": "MIT", - "dependencies": { - "tslib": "^2.6.2" - }, "engines": { - "node": ">=16.0.0" + "node": ">= 12.13.0" }, "funding": { - "url": "https://opencollective.com/unts" + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" } }, - "node_modules/sha.js": { - "version": "2.4.11", - "license": "(MIT AND BSD-3-Clause)", + "node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "has-flag": "^4.0.0" }, - "bin": { - "sha.js": "bin.js" + "engines": { + "node": ">=8" } }, - "node_modules/shallow-clone": { - "version": "3.0.1", + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", "dev": true, "license": "MIT", - "dependencies": { - "kind-of": "^6.0.2" + "engines": { + "node": ">= 0.4" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svg-pathdata": { + "version": "6.0.3", + "dev": true, + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=12.0.0" } }, - "node_modules/shebang-command": { - "version": "2.0.0", + "node_modules/svg2ttf": { + "version": "6.0.3", + "dev": true, "license": "MIT", "dependencies": { - "shebang-regex": "^3.0.0" + "@xmldom/xmldom": "^0.7.2", + "argparse": "^2.0.1", + "cubic2quad": "^1.2.1", + "lodash": "^4.17.10", + "microbuffer": "^1.0.0", + "svgpath": "^2.1.5" }, - "engines": { - "node": ">=8" + "bin": { + "svg2ttf": "svg2ttf.js" } }, - "node_modules/shebang-regex": { - "version": "3.0.0", + "node_modules/svgicons2svgfont": { + "version": "10.0.6", + "dev": true, "license": "MIT", + "dependencies": { + "commander": "^7.2.0", + "geometry-interfaces": "^1.1.4", + "glob": "^7.1.6", + "neatequal": "^1.0.0", + "readable-stream": "^3.4.0", + "sax": "^1.2.4", + "svg-pathdata": "^6.0.0" + }, + "bin": { + "svgicons2svgfont": "bin/svgicons2svgfont.js" + }, "engines": { - "node": ">=8" + "node": ">=12.0.0" } }, - "node_modules/shell-quote": { - "version": "1.8.1", + "node_modules/svgicons2svgfont/node_modules/commander": { + "version": "7.2.0", "dev": true, "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 10" } }, - "node_modules/side-channel": { - "version": "1.0.6", - "license": "MIT", + "node_modules/svgicons2svgfont/node_modules/glob": { + "version": "7.2.3", + "dev": true, + "license": "ISC", "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">= 0.4" + "node": "*" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/signal-exit": { - "version": "3.0.7", + "node_modules/svgicons2svgfont/node_modules/sax": { + "version": "1.2.4", "dev": true, "license": "ISC" }, - "node_modules/simple-concat": { - "version": "1.0.1", + "node_modules/svgpath": { + "version": "2.5.0", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "optional": true + "license": "MIT" }, - "node_modules/simple-get": { - "version": "4.0.1", + "node_modules/symbol-tree": { + "version": "3.2.4", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "optional": true, - "dependencies": { - "decompress-response": "^6.0.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - } - }, - "node_modules/simple-swizzle": { - "version": "0.2.2", - "license": "MIT", - "dependencies": { - "is-arrayish": "^0.3.1" - } + "license": "MIT" }, - "node_modules/sinon": { - "version": "14.0.0", + "node_modules/synckit": { + "version": "0.8.8", "dev": true, - "license": "BSD-3-Clause", + "license": "MIT", "dependencies": { - "@sinonjs/commons": "^1.8.3", - "@sinonjs/fake-timers": "^9.1.2", - "@sinonjs/samsam": "^6.1.1", - "diff": "^5.0.0", - "nise": "^5.1.1", - "supports-color": "^7.2.0" + "@pkgr/core": "^0.1.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/sinon" - } - }, - "node_modules/sinon/node_modules/@sinonjs/fake-timers": { - "version": "9.1.2", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "@sinonjs/commons": "^1.7.0" + "url": "https://opencollective.com/unts" } }, - "node_modules/slash": { - "version": "3.0.0", + "node_modules/tapable": { + "version": "2.2.1", "dev": true, "license": "MIT", "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/sockjs": { - "version": "0.3.24", + "node_modules/tar-fs": { + "version": "2.1.1", "dev": true, "license": "MIT", + "optional": true, "dependencies": { - "faye-websocket": "^0.11.3", - "uuid": "^8.3.2", - "websocket-driver": "^0.7.4" + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" } }, - "node_modules/sockjs/node_modules/uuid": { - "version": "8.3.2", + "node_modules/tar-stream": { + "version": "2.2.0", "dev": true, "license": "MIT", - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/source-list-map": { - "version": "2.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/source-map": { - "version": "0.6.1", - "license": "BSD-3-Clause", + "optional": true, + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/source-map-js": { + "node_modules/tcp-port-used": { "version": "1.0.2", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" + "license": "MIT", + "dependencies": { + "debug": "4.3.1", + "is2": "^2.0.6" } }, - "node_modules/source-map-support": { - "version": "0.5.21", - "dev": true, + "node_modules/tcp-port-used/node_modules/debug": { + "version": "4.3.1", "license": "MIT", "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/spdx-correct": { - "version": "3.1.1", + "node_modules/terser": { + "version": "5.31.6", "dev": true, - "license": "Apache-2.0", + "license": "BSD-2-Clause", "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" } }, - "node_modules/spdx-exceptions": { - "version": "2.3.0", + "node_modules/terser-webpack-plugin": { + "version": "5.3.10", "dev": true, - "license": "CC-BY-3.0" + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.20", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.26.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } }, - "node_modules/spdx-expression-parse": { - "version": "3.0.1", + "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { + "version": "6.0.2", "dev": true, - "license": "MIT", + "license": "BSD-3-Clause", "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" + "randombytes": "^2.1.0" } }, - "node_modules/spdx-license-ids": { - "version": "3.0.11", + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", "dev": true, - "license": "CC0-1.0" + "license": "MIT" }, - "node_modules/spdy": { - "version": "4.0.2", + "node_modules/test-exclude": { + "version": "6.0.0", "dev": true, - "license": "MIT", - "dependencies": { - "debug": "^4.1.0", - "handle-thing": "^2.0.0", - "http-deceiver": "^1.2.7", - "select-hose": "^2.0.0", - "spdy-transport": "^3.0.0" + "license": "ISC", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" }, "engines": { - "node": ">=6.0.0" + "node": ">=8" } }, - "node_modules/spdy-transport": { - "version": "3.0.0", + "node_modules/test-exclude/node_modules/glob": { + "version": "7.2.3", "dev": true, - "license": "MIT", - "dependencies": { - "debug": "^4.1.0", - "detect-node": "^2.0.4", - "hpack.js": "^2.1.6", - "obuf": "^1.1.2", - "readable-stream": "^3.0.6", - "wbuf": "^1.7.3" - } - }, - "node_modules/split": { - "version": "1.0.1", - "license": "MIT", + "license": "ISC", "dependencies": { - "through": "2" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "license": "BSD-3-Clause" + "node_modules/text-hex": { + "version": "1.0.0", + "license": "MIT" }, - "node_modules/stack-trace": { - "version": "0.0.10", + "node_modules/text-table": { + "version": "0.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/thenify": { + "version": "3.3.1", + "dev": true, "license": "MIT", - "engines": { - "node": "*" + "dependencies": { + "any-promise": "^1.0.0" } }, - "node_modules/statuses": { - "version": "1.5.0", + "node_modules/thenify-all": { + "version": "1.6.0", "dev": true, "license": "MIT", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, "engines": { - "node": ">= 0.6" + "node": ">=0.8" } }, - "node_modules/stream-browserify": { - "version": "3.0.0", + "node_modules/through": { + "version": "2.3.8", + "license": "MIT" + }, + "node_modules/through2": { + "version": "2.0.5", + "dev": true, "license": "MIT", "dependencies": { - "inherits": "~2.0.4", - "readable-stream": "^3.5.0" - } - }, - "node_modules/stream-buffers": { - "version": "3.0.2", - "license": "Unlicense", - "engines": { - "node": ">= 0.10.0" + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" } }, - "node_modules/stream-combiner": { - "version": "0.2.2", + "node_modules/through2/node_modules/readable-stream": { + "version": "2.3.8", + "dev": true, "license": "MIT", "dependencies": { - "duplexer": "~0.1.1", - "through": "~2.3.4" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "node_modules/stream-shift": { - "version": "1.0.1", + "node_modules/through2/node_modules/safe-buffer": { + "version": "5.1.2", "dev": true, "license": "MIT" }, - "node_modules/streamx": { - "version": "2.16.1", + "node_modules/through2/node_modules/string_decoder": { + "version": "1.1.1", "dev": true, "license": "MIT", "dependencies": { - "fast-fifo": "^1.1.0", - "queue-tick": "^1.0.1" - }, - "optionalDependencies": { - "bare-events": "^2.2.0" + "safe-buffer": "~5.1.0" } }, - "node_modules/string_decoder": { - "version": "1.3.0", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" - } + "node_modules/thunky": { + "version": "1.1.0", + "dev": true, + "license": "MIT" }, - "node_modules/string-width": { - "version": "4.2.3", + "node_modules/time-stamp": { + "version": "1.1.0", "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "license": "MIT", + "node_modules/timers-ext": { + "version": "0.1.7", + "dev": true, + "license": "ISC", "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width-cjs/node_modules/ansi-regex": { - "version": "5.0.1", - "license": "MIT", - "engines": { - "node": ">=8" + "es5-ext": "~0.10.46", + "next-tick": "1" } }, - "node_modules/string-width-cjs/node_modules/strip-ansi": { - "version": "6.0.1", + "node_modules/tmp": { + "version": "0.2.1", + "dev": true, "license": "MIT", "dependencies": { - "ansi-regex": "^5.0.1" + "rimraf": "^3.0.0" }, "engines": { - "node": ">=8" + "node": ">=8.17.0" } }, - "node_modules/string-width/node_modules/ansi-regex": { + "node_modules/to-regex-range": { "version": "5.0.1", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width/node_modules/strip-ansi": { - "version": "6.0.1", + "dev": true, "license": "MIT", "dependencies": { - "ansi-regex": "^5.0.1" + "is-number": "^7.0.0" }, "engines": { - "node": ">=8" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.5", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.19.5" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.5", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.19.5" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8.0" } }, - "node_modules/strip-ansi": { - "version": "5.2.0", + "node_modules/toidentifier": { + "version": "1.0.1", + "dev": true, "license": "MIT", - "dependencies": { - "ansi-regex": "^4.1.0" - }, "engines": { - "node": ">=6" + "node": ">=0.6" } }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", - "license": "MIT", + "node_modules/tough-cookie": { + "version": "4.1.3", + "dev": true, + "license": "BSD-3-Clause", "dependencies": { - "ansi-regex": "^5.0.1" + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" }, "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { - "version": "5.0.1", + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "dev": true, "license": "MIT", "engines": { - "node": ">=8" + "node": ">= 4.0.0" } }, - "node_modules/strip-final-newline": { - "version": "2.0.0", - "dev": true, + "node_modules/tr46": { + "version": "5.0.0", "license": "MIT", + "dependencies": { + "punycode": "^2.3.1" + }, "engines": { - "node": ">=6" + "node": ">=18" } }, - "node_modules/strip-indent": { - "version": "3.0.0", + "node_modules/tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", "dev": true, "license": "MIT", - "dependencies": { - "min-indent": "^1.0.0" - }, - "engines": { - "node": ">=8" + "bin": { + "tree-kill": "cli.js" } }, - "node_modules/strip-json-comments": { - "version": "3.1.1", + "node_modules/trim-newlines": { + "version": "3.0.1", "dev": true, "license": "MIT", "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/strnum": { - "version": "1.0.5", + "node_modules/triple-beam": { + "version": "1.3.0", "license": "MIT" }, - "node_modules/style-loader": { - "version": "3.3.3", + "node_modules/ts-api-utils": { + "version": "1.3.0", "dev": true, "license": "MIT", "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": ">=16" }, "peerDependencies": { - "webpack": "^5.0.0" + "typescript": ">=4.2.0" } }, - "node_modules/supports-color": { - "version": "7.2.0", + "node_modules/ts-morph": { + "version": "23.0.0", "dev": true, "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "@ts-morph/common": "~0.24.0", + "code-block-writer": "^13.0.1" + } + }, + "node_modules/ts-node": { + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", + "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", + "dev": true, + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/ts-node/node_modules/diff": { + "version": "4.0.2", + "dev": true, + "license": "BSD-3-Clause", "engines": { - "node": ">=8" + "node": ">=0.3.1" } }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", + "node_modules/tslib": { + "version": "2.6.2", + "license": "0BSD" + }, + "node_modules/tsscmp": { + "version": "1.0.6", "dev": true, "license": "MIT", "engines": { - "node": ">= 0.4" + "node": ">=0.6.x" + } + }, + "node_modules/ttf2eot": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^1.0.6", + "microbuffer": "^1.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "bin": { + "ttf2eot": "ttf2eot.js" } }, - "node_modules/svg-pathdata": { - "version": "6.0.3", + "node_modules/ttf2eot/node_modules/argparse": { + "version": "1.0.10", "dev": true, "license": "MIT", - "engines": { - "node": ">=12.0.0" + "dependencies": { + "sprintf-js": "~1.0.2" } }, - "node_modules/svg2ttf": { - "version": "6.0.3", + "node_modules/ttf2woff": { + "version": "2.0.2", "dev": true, "license": "MIT", "dependencies": { - "@xmldom/xmldom": "^0.7.2", - "argparse": "^2.0.1", - "cubic2quad": "^1.2.1", - "lodash": "^4.17.10", + "argparse": "^1.0.6", "microbuffer": "^1.0.0", - "svgpath": "^2.1.5" + "pako": "^1.0.0" }, "bin": { - "svg2ttf": "svg2ttf.js" + "ttf2woff": "ttf2woff.js" } }, - "node_modules/svgicons2svgfont": { - "version": "10.0.6", + "node_modules/ttf2woff/node_modules/argparse": { + "version": "1.0.10", "dev": true, "license": "MIT", "dependencies": { - "commander": "^7.2.0", - "geometry-interfaces": "^1.1.4", - "glob": "^7.1.6", - "neatequal": "^1.0.0", - "readable-stream": "^3.4.0", - "sax": "^1.2.4", - "svg-pathdata": "^6.0.0" - }, - "bin": { - "svgicons2svgfont": "bin/svgicons2svgfont.js" - }, - "engines": { - "node": ">=12.0.0" + "sprintf-js": "~1.0.2" } }, - "node_modules/svgicons2svgfont/node_modules/commander": { - "version": "7.2.0", + "node_modules/tunnel": { + "version": "0.0.6", "dev": true, "license": "MIT", "engines": { - "node": ">= 10" + "node": ">=0.6.11 <=0.7.0 || >=0.7.3" } }, - "node_modules/svgicons2svgfont/node_modules/glob": { - "version": "7.2.3", + "node_modules/tunnel-agent": { + "version": "0.6.0", "dev": true, - "license": "ISC", + "license": "Apache-2.0", + "optional": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "safe-buffer": "^5.0.1" }, "engines": { "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/svgicons2svgfont/node_modules/sax": { - "version": "1.2.4", + "node_modules/type": { + "version": "1.2.0", "dev": true, "license": "ISC" }, - "node_modules/svgpath": { - "version": "2.5.0", + "node_modules/type-check": { + "version": "0.4.0", "dev": true, - "license": "MIT" + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } }, - "node_modules/symbol-tree": { - "version": "3.2.4", + "node_modules/type-detect": { + "version": "4.0.8", "dev": true, - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">=4" + } }, - "node_modules/synckit": { - "version": "0.8.8", + "node_modules/type-fest": { + "version": "0.8.1", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=8" + } + }, + "node_modules/type-is": { + "version": "1.6.18", "dev": true, "license": "MIT", "dependencies": { - "@pkgr/core": "^0.1.0", - "tslib": "^2.6.2" + "media-typer": "0.3.0", + "mime-types": "~2.1.24" }, "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts" + "node": ">= 0.6" } }, - "node_modules/tapable": { - "version": "2.2.1", + "node_modules/typed-rest-client": { + "version": "1.8.11", "dev": true, "license": "MIT", + "dependencies": { + "qs": "^6.9.1", + "tunnel": "0.0.6", + "underscore": "^1.12.1" + } + }, + "node_modules/typescript": { + "version": "5.0.4", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, "engines": { - "node": ">=6" + "node": ">=12.20" } }, - "node_modules/tar-fs": { - "version": "2.1.1", + "node_modules/uc.micro": { + "version": "1.0.6", + "license": "MIT" + }, + "node_modules/umd-compat-loader": { + "version": "2.1.2", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "ast-types": "^0.9.2", + "loader-utils": "^1.0.3", + "recast": "^0.11.17" + } + }, + "node_modules/umd-compat-loader/node_modules/json5": { + "version": "1.0.2", "dev": true, "license": "MIT", - "optional": true, "dependencies": { - "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^2.1.4" + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" } }, - "node_modules/tar-stream": { - "version": "2.2.0", + "node_modules/umd-compat-loader/node_modules/loader-utils": { + "version": "1.4.2", "dev": true, "license": "MIT", - "optional": true, "dependencies": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" }, "engines": { - "node": ">=6" + "node": ">=4.0.0" } }, - "node_modules/tcp-port-used": { + "node_modules/unbox-primitive": { "version": "1.0.2", "license": "MIT", "dependencies": { - "debug": "4.3.1", - "is2": "^2.0.6" + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/tcp-port-used/node_modules/debug": { - "version": "4.3.1", + "node_modules/underscore": { + "version": "1.13.6", + "dev": true, + "license": "MIT" + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "license": "MIT" + }, + "node_modules/unescape-html": { + "version": "1.1.0", + "license": "MIT" + }, + "node_modules/universalify": { + "version": "2.0.0", + "dev": true, "license": "MIT", - "dependencies": { - "ms": "2.1.2" - }, "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "node": ">= 10.0.0" } }, - "node_modules/terser": { - "version": "5.31.6", + "node_modules/unpipe": { + "version": "1.0.0", "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" - }, + "license": "MIT", "engines": { - "node": ">=10" + "node": ">= 0.8" } }, - "node_modules/terser-webpack-plugin": { - "version": "5.3.10", + "node_modules/update-browserslist-db": { + "version": "1.0.16", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "license": "MIT", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.20", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.26.0" - }, - "engines": { - "node": ">= 10.13.0" + "escalade": "^3.1.2", + "picocolors": "^1.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "bin": { + "update-browserslist-db": "cli.js" }, "peerDependencies": { - "webpack": "^5.1.0" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "uglify-js": { - "optional": true - } + "browserslist": ">= 4.21.0" } }, - "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { - "version": "6.0.2", + "node_modules/uri-js": { + "version": "4.4.1", "dev": true, - "license": "BSD-3-Clause", + "license": "BSD-2-Clause", "dependencies": { - "randombytes": "^2.1.0" + "punycode": "^2.1.0" } }, - "node_modules/terser/node_modules/commander": { - "version": "2.20.3", + "node_modules/url": { + "version": "0.10.3", + "license": "MIT", + "dependencies": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "node_modules/url-join": { + "version": "4.0.1", "dev": true, "license": "MIT" }, - "node_modules/test-exclude": { - "version": "6.0.0", + "node_modules/url-parse": { + "version": "1.5.10", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" - }, - "engines": { - "node": ">=8" + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" } }, - "node_modules/test-exclude/node_modules/glob": { - "version": "7.2.3", - "dev": true, - "license": "ISC", + "node_modules/url/node_modules/punycode": { + "version": "1.3.2", + "license": "MIT" + }, + "node_modules/util": { + "version": "0.12.5", + "license": "MIT", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "which-typed-array": "^1.1.2" } }, - "node_modules/text-hex": { - "version": "1.0.0", + "node_modules/util-deprecate": { + "version": "1.0.2", "license": "MIT" }, - "node_modules/text-table": { - "version": "0.2.0", + "node_modules/utils-merge": { + "version": "1.0.1", "dev": true, - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } }, - "node_modules/thenify": { - "version": "3.3.1", - "dev": true, + "node_modules/uuid": { + "version": "9.0.1", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], "license": "MIT", - "dependencies": { - "any-promise": "^1.0.0" + "bin": { + "uuid": "dist/bin/uuid" } }, - "node_modules/thenify-all": { - "version": "1.6.0", + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", "dev": true, - "license": "MIT", + "license": "MIT" + }, + "node_modules/v8-to-istanbul": { + "version": "9.2.0", + "dev": true, + "license": "ISC", "dependencies": { - "thenify": ">= 3.1.0 < 4" + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^2.0.0" }, "engines": { - "node": ">=0.8" + "node": ">=10.12.0" } }, - "node_modules/through": { - "version": "2.3.8", - "license": "MIT" - }, - "node_modules/through2": { - "version": "2.0.5", + "node_modules/validate-npm-package-license": { + "version": "3.0.4", "dev": true, - "license": "MIT", + "license": "Apache-2.0", "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" } }, - "node_modules/through2/node_modules/readable-stream": { - "version": "2.3.8", + "node_modules/varstream": { + "version": "0.3.2", "dev": true, - "license": "MIT", "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "readable-stream": "^1.0.33" + }, + "bin": { + "json2varstream": "cli/json2varstream.js", + "varstream2json": "cli/varstream2json.js" + }, + "engines": { + "node": ">=0.10.*" } }, - "node_modules/through2/node_modules/safe-buffer": { - "version": "5.1.2", + "node_modules/varstream/node_modules/isarray": { + "version": "0.0.1", "dev": true, "license": "MIT" }, - "node_modules/through2/node_modules/string_decoder": { - "version": "1.1.1", + "node_modules/varstream/node_modules/readable-stream": { + "version": "1.1.14", "dev": true, "license": "MIT", "dependencies": { - "safe-buffer": "~5.1.0" + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" } }, - "node_modules/thunky": { - "version": "1.1.0", + "node_modules/varstream/node_modules/string_decoder": { + "version": "0.10.31", "dev": true, "license": "MIT" }, - "node_modules/time-stamp": { - "version": "1.1.0", + "node_modules/vary": { + "version": "1.1.2", + "dev": true, "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">= 0.8" } }, - "node_modules/timers-ext": { - "version": "0.1.7", - "dev": true, - "license": "ISC", + "node_modules/vinyl": { + "version": "2.2.1", + "license": "MIT", "dependencies": { - "es5-ext": "~0.10.46", - "next-tick": "1" + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" } }, - "node_modules/tmp": { - "version": "0.2.1", - "dev": true, + "node_modules/vscode-json-languageservice": { + "version": "5.3.5", "license": "MIT", "dependencies": { - "rimraf": "^3.0.0" - }, - "engines": { - "node": ">=8.17.0" + "@vscode/l10n": "^0.0.13", + "jsonc-parser": "^3.2.0", + "vscode-languageserver-textdocument": "^1.0.8", + "vscode-languageserver-types": "^3.17.3", + "vscode-uri": "^3.0.7" } }, - "node_modules/to-regex-range": { + "node_modules/vscode-json-languageservice/node_modules/vscode-uri": { + "version": "3.0.7", + "license": "MIT" + }, + "node_modules/vscode-jsonrpc": { "version": "5.0.1", - "dev": true, "license": "MIT", - "dependencies": { - "is-number": "^7.0.0" - }, "engines": { - "node": ">=8.0" + "node": ">=8.0.0 || >=10.0.0" } }, - "node_modules/toidentifier": { - "version": "1.0.1", - "dev": true, + "node_modules/vscode-languageclient": { + "version": "6.1.4", "license": "MIT", + "dependencies": { + "semver": "^6.3.0", + "vscode-languageserver-protocol": "3.15.3" + }, "engines": { - "node": ">=0.6" + "vscode": "^1.41.0" } }, - "node_modules/tough-cookie": { - "version": "4.1.3", - "dev": true, - "license": "BSD-3-Clause", + "node_modules/vscode-languageclient/node_modules/semver": { + "version": "6.3.1", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/vscode-languageserver": { + "version": "6.1.1", + "license": "MIT", "dependencies": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.2.0", - "url-parse": "^1.5.3" + "vscode-languageserver-protocol": "^3.15.3" }, - "engines": { - "node": ">=6" + "bin": { + "installServerIntoExtension": "bin/installServerIntoExtension" } }, - "node_modules/tough-cookie/node_modules/universalify": { - "version": "0.2.0", - "dev": true, + "node_modules/vscode-languageserver-protocol": { + "version": "3.15.3", "license": "MIT", - "engines": { - "node": ">= 4.0.0" + "dependencies": { + "vscode-jsonrpc": "^5.0.1", + "vscode-languageserver-types": "3.15.1" } }, - "node_modules/tr46": { - "version": "5.0.0", + "node_modules/vscode-languageserver-protocol/node_modules/vscode-languageserver-types": { + "version": "3.15.1", + "license": "MIT" + }, + "node_modules/vscode-languageserver-textdocument": { + "version": "1.0.8", + "license": "MIT" + }, + "node_modules/vscode-languageserver-types": { + "version": "3.17.3", + "license": "MIT" + }, + "node_modules/vscode-nls": { + "version": "5.2.0", + "license": "MIT" + }, + "node_modules/vscode-nls-dev": { + "version": "4.0.4", "license": "MIT", "dependencies": { - "punycode": "^2.3.1" + "ansi-colors": "^4.1.1", + "clone": "^2.1.2", + "event-stream": "^3.3.4", + "fancy-log": "^1.3.3", + "glob": "^7.2.0", + "iconv-lite": "^0.6.3", + "is": "^3.3.0", + "source-map": "^0.6.1", + "typescript": "^4.5.4", + "vinyl": "^2.2.1", + "xml2js": "^0.5.0", + "yargs": "^17.3.0" + }, + "bin": { + "vscl": "lib/vscl.js" + } + }, + "node_modules/vscode-nls-dev/node_modules/glob": { + "version": "7.2.3", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=18" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/trim-newlines": { - "version": "3.0.1", - "dev": true, + "node_modules/vscode-nls-dev/node_modules/iconv-lite": { + "version": "0.6.3", "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/triple-beam": { - "version": "1.3.0", - "license": "MIT" + "node_modules/vscode-nls-dev/node_modules/typescript": { + "version": "4.9.5", + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } }, - "node_modules/ts-api-utils": { - "version": "1.3.0", - "dev": true, + "node_modules/vscode-nls-dev/node_modules/xml2js": { + "version": "0.5.0", "license": "MIT", - "engines": { - "node": ">=16" + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" }, - "peerDependencies": { - "typescript": ">=4.2.0" + "engines": { + "node": ">=4.0.0" } }, - "node_modules/ts-morph": { - "version": "23.0.0", - "dev": true, + "node_modules/vscode-uri": { + "version": "2.1.2", + "license": "MIT" + }, + "node_modules/vue": { + "version": "3.3.4", "license": "MIT", "dependencies": { - "@ts-morph/common": "~0.24.0", - "code-block-writer": "^13.0.1" + "@vue/compiler-dom": "3.3.4", + "@vue/compiler-sfc": "3.3.4", + "@vue/runtime-dom": "3.3.4", + "@vue/server-renderer": "3.3.4", + "@vue/shared": "3.3.4" } }, - "node_modules/ts-node": { - "version": "10.9.2", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", - "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", + "node_modules/vue-loader": { + "version": "17.2.2", "dev": true, + "license": "MIT", "dependencies": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "bin": { - "ts-node": "dist/bin.js", - "ts-node-cwd": "dist/bin-cwd.js", - "ts-node-esm": "dist/bin-esm.js", - "ts-node-script": "dist/bin-script.js", - "ts-node-transpile-only": "dist/bin-transpile.js", - "ts-script": "dist/bin-script-deprecated.js" + "chalk": "^4.1.0", + "hash-sum": "^2.0.0", + "watchpack": "^2.4.0" }, - "peerDependencies": { - "@swc/core": ">=1.2.50", - "@swc/wasm": ">=1.2.50", - "@types/node": "*", - "typescript": ">=2.7" + "peerDependencies": { + "webpack": "^4.1.0 || ^5.0.0-0" }, "peerDependenciesMeta": { - "@swc/core": { + "@vue/compiler-sfc": { "optional": true }, - "@swc/wasm": { + "vue": { "optional": true } } }, - "node_modules/ts-node/node_modules/diff": { - "version": "4.0.2", + "node_modules/vue-style-loader": { + "version": "4.1.3", "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.3.1" + "license": "MIT", + "dependencies": { + "hash-sum": "^1.0.2", + "loader-utils": "^1.0.2" } }, - "node_modules/tslib": { - "version": "2.6.2", - "license": "0BSD" - }, - "node_modules/tsscmp": { - "version": "1.0.6", + "node_modules/vue-style-loader/node_modules/hash-sum": { + "version": "1.0.2", "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.6.x" - } + "license": "MIT" }, - "node_modules/ttf2eot": { - "version": "2.0.0", + "node_modules/vue-style-loader/node_modules/json5": { + "version": "1.0.2", "dev": true, "license": "MIT", "dependencies": { - "argparse": "^1.0.6", - "microbuffer": "^1.0.0" + "minimist": "^1.2.0" }, "bin": { - "ttf2eot": "ttf2eot.js" + "json5": "lib/cli.js" } }, - "node_modules/ttf2eot/node_modules/argparse": { - "version": "1.0.10", + "node_modules/vue-style-loader/node_modules/loader-utils": { + "version": "1.4.2", "dev": true, "license": "MIT", "dependencies": { - "sprintf-js": "~1.0.2" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" } }, - "node_modules/ttf2woff": { - "version": "2.0.2", + "node_modules/w3c-xmlserializer": { + "version": "5.0.0", "dev": true, "license": "MIT", "dependencies": { - "argparse": "^1.0.6", - "microbuffer": "^1.0.0", - "pako": "^1.0.0" + "xml-name-validator": "^5.0.0" }, - "bin": { - "ttf2woff": "ttf2woff.js" + "engines": { + "node": ">=18" } }, - "node_modules/ttf2woff/node_modules/argparse": { - "version": "1.0.10", + "node_modules/watchpack": { + "version": "2.4.2", "dev": true, "license": "MIT", "dependencies": { - "sprintf-js": "~1.0.2" + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" } }, - "node_modules/tunnel": { - "version": "0.0.6", + "node_modules/wawoff2": { + "version": "2.0.1", "dev": true, "license": "MIT", - "engines": { - "node": ">=0.6.11 <=0.7.0 || >=0.7.3" + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "woff2_compress.js": "bin/woff2_compress.js", + "woff2_decompress.js": "bin/woff2_decompress.js" } }, - "node_modules/tunnel-agent": { - "version": "0.6.0", + "node_modules/wbuf": { + "version": "1.7.3", "dev": true, - "license": "Apache-2.0", - "optional": true, + "license": "MIT", "dependencies": { - "safe-buffer": "^5.0.1" - }, - "engines": { - "node": "*" + "minimalistic-assert": "^1.0.0" } }, - "node_modules/type": { - "version": "1.2.0", - "dev": true, - "license": "ISC" + "node_modules/web-toolkit": { + "resolved": "packages/core/src/web", + "link": true }, - "node_modules/type-check": { - "version": "0.4.0", + "node_modules/web-tree-sitter": { + "version": "0.20.8", + "license": "MIT" + }, + "node_modules/webfont": { + "version": "11.2.26", "dev": true, "license": "MIT", "dependencies": { - "prelude-ls": "^1.2.1" + "cosmiconfig": "^5.2.0", + "deepmerge": "^4.2.2", + "globby": "^11.0.0", + "meow": "^9.0.0", + "nunjucks": "^3.2.3", + "p-limit": "^3.1.0", + "parse-json": "^5.2.0", + "resolve-from": "^5.0.0", + "svg2ttf": "^6.0.2", + "svgicons2svgfont": "^10.0.3", + "ttf2eot": "^2.0.0", + "ttf2woff": "^2.0.2", + "wawoff2": "^2.0.0", + "xml2js": "^0.4.23" + }, + "bin": { + "webfont": "dist/cli.js" }, "engines": { - "node": ">= 0.8.0" + "node": ">= 12.0.0" } }, - "node_modules/type-detect": { - "version": "4.0.8", + "node_modules/webfont/node_modules/resolve-from": { + "version": "5.0.0", "dev": true, "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/type-fest": { - "version": "0.8.1", - "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" } }, - "node_modules/type-is": { - "version": "1.6.18", + "node_modules/webfont/node_modules/xml2js": { + "version": "0.5.0", "dev": true, "license": "MIT", "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" }, "engines": { - "node": ">= 0.6" + "node": ">=4.0.0" } }, - "node_modules/typed-rest-client": { - "version": "1.8.11", - "dev": true, - "license": "MIT", - "dependencies": { - "qs": "^6.9.1", - "tunnel": "0.0.6", - "underscore": "^1.12.1" + "node_modules/webidl-conversions": { + "version": "7.0.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" } }, - "node_modules/typescript": { - "version": "5.0.4", + "node_modules/webpack": { + "version": "5.95.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.95.0.tgz", + "integrity": "sha512-2t3XstrKULz41MNMBF+cJ97TyHdyQ8HCt//pqErqDvNjU9YQBnZxIHa11VXsi7F3mb5/aO2tuDxdeTPdU7xu9Q==", "dev": true, - "license": "Apache-2.0", + "dependencies": { + "@types/estree": "^1.0.5", + "@webassemblyjs/ast": "^1.12.1", + "@webassemblyjs/wasm-edit": "^1.12.1", + "@webassemblyjs/wasm-parser": "^1.12.1", + "acorn": "^8.7.1", + "acorn-import-attributes": "^1.9.5", + "browserslist": "^4.21.10", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.17.1", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.11", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.10", + "watchpack": "^2.4.1", + "webpack-sources": "^3.2.3" + }, "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" + "webpack": "bin/webpack.js" }, "engines": { - "node": ">=12.20" + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } } }, - "node_modules/uc.micro": { - "version": "1.0.6", - "license": "MIT" - }, - "node_modules/umd-compat-loader": { - "version": "2.1.2", + "node_modules/webpack-cli": { + "version": "5.1.4", "dev": true, - "license": "Apache-2.0", + "license": "MIT", "dependencies": { - "ast-types": "^0.9.2", - "loader-utils": "^1.0.3", - "recast": "^0.11.17" + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^2.1.1", + "@webpack-cli/info": "^2.0.2", + "@webpack-cli/serve": "^2.0.5", + "colorette": "^2.0.14", + "commander": "^10.0.1", + "cross-spawn": "^7.0.3", + "envinfo": "^7.7.3", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^3.1.1", + "rechoir": "^0.8.0", + "webpack-merge": "^5.7.3" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "5.x.x" + }, + "peerDependenciesMeta": { + "@webpack-cli/generators": { + "optional": true + }, + "webpack-bundle-analyzer": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + } } }, - "node_modules/umd-compat-loader/node_modules/json5": { - "version": "1.0.2", + "node_modules/webpack-cli/node_modules/commander": { + "version": "10.0.1", "dev": true, "license": "MIT", - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" + "engines": { + "node": ">=14" } }, - "node_modules/umd-compat-loader/node_modules/loader-utils": { - "version": "1.4.2", + "node_modules/webpack-dev-middleware": { + "version": "5.3.4", "dev": true, "license": "MIT", "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" }, "engines": { - "node": ">=4.0.0" + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" } }, - "node_modules/unbox-primitive": { - "version": "1.0.2", + "node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.11.0", + "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/underscore": { - "version": "1.13.6", - "dev": true, - "license": "MIT" - }, - "node_modules/undici-types": { - "version": "5.26.5", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", - "license": "MIT" - }, - "node_modules/unescape-html": { - "version": "1.1.0", - "license": "MIT" - }, - "node_modules/universalify": { - "version": "2.0.0", + "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", "dev": true, "license": "MIT", - "engines": { - "node": ">= 10.0.0" + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" } }, - "node_modules/unpipe": { + "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { "version": "1.0.0", "dev": true, + "license": "MIT" + }, + "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.0.0", + "dev": true, "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, "engines": { - "node": ">= 0.8" + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/update-browserslist-db": { - "version": "1.0.16", + "node_modules/webpack-dev-server": { + "version": "4.15.1", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], "license": "MIT", "dependencies": { - "escalade": "^3.1.2", - "picocolors": "^1.0.1" + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.5", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "launch-editor": "^2.6.0", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.1.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.13.0" }, "bin": { - "update-browserslist-db": "cli.js" + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "browserslist": ">= 4.21.0" + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-cli": { + "optional": true + } } }, - "node_modules/uri-js": { - "version": "4.4.1", + "node_modules/webpack-dev-server/node_modules/ajv": { + "version": "8.8.2", "dev": true, - "license": "BSD-2-Clause", + "license": "MIT", "dependencies": { - "punycode": "^2.1.0" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/url": { - "version": "0.10.3", + "node_modules/webpack-dev-server/node_modules/ajv-keywords": { + "version": "5.1.0", + "dev": true, "license": "MIT", "dependencies": { - "punycode": "1.3.2", - "querystring": "0.2.0" + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" } }, - "node_modules/url-join": { - "version": "4.0.1", + "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { + "version": "1.0.0", "dev": true, "license": "MIT" }, - "node_modules/url-parse": { - "version": "1.5.10", + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "4.0.0", "dev": true, "license": "MIT", "dependencies": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/url/node_modules/punycode": { - "version": "1.3.2", - "license": "MIT" - }, - "node_modules/util": { - "version": "0.12.5", + "node_modules/webpack-merge": { + "version": "5.10.0", + "dev": true, "license": "MIT", "dependencies": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "is-typed-array": "^1.1.3", - "which-typed-array": "^1.1.2" + "clone-deep": "^4.0.1", + "flat": "^5.0.2", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" } }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "license": "MIT" - }, - "node_modules/utils-merge": { - "version": "1.0.1", + "node_modules/webpack-sources": { + "version": "2.3.1", "dev": true, "license": "MIT", + "dependencies": { + "source-list-map": "^2.0.1", + "source-map": "^0.6.1" + }, "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/uuid": { - "version": "9.0.1", - "funding": [ - "https://github.com/sponsors/broofa", - "https://github.com/sponsors/ctavan" - ], + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/events": { + "version": "3.3.0", + "dev": true, "license": "MIT", - "bin": { - "uuid": "dist/bin/uuid" + "engines": { + "node": ">=0.8.x" } }, - "node_modules/v8-compile-cache-lib": { - "version": "3.0.1", + "node_modules/webpack/node_modules/webpack-sources": { + "version": "3.2.3", "dev": true, - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } }, - "node_modules/v8-to-istanbul": { - "version": "9.2.0", + "node_modules/websocket-driver": { + "version": "0.7.4", "dev": true, - "license": "ISC", + "license": "Apache-2.0", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.12", - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^2.0.0" + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" }, "engines": { - "node": ">=10.12.0" + "node": ">=0.8.0" } }, - "node_modules/validate-npm-package-license": { - "version": "3.0.4", + "node_modules/websocket-extensions": { + "version": "0.1.4", "dev": true, "license": "Apache-2.0", - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" + "engines": { + "node": ">=0.8.0" } }, - "node_modules/varstream": { - "version": "0.3.2", + "node_modules/whatwg-encoding": { + "version": "3.1.1", "dev": true, + "license": "MIT", "dependencies": { - "readable-stream": "^1.0.33" - }, - "bin": { - "json2varstream": "cli/json2varstream.js", - "varstream2json": "cli/varstream2json.js" + "iconv-lite": "0.6.3" }, "engines": { - "node": ">=0.10.*" + "node": ">=18" } }, - "node_modules/varstream/node_modules/isarray": { - "version": "0.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/varstream/node_modules/readable-stream": { - "version": "1.1.14", + "node_modules/whatwg-encoding/node_modules/iconv-lite": { + "version": "0.6.3", "dev": true, "license": "MIT", "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/varstream/node_modules/string_decoder": { - "version": "0.10.31", - "dev": true, - "license": "MIT" - }, - "node_modules/vary": { - "version": "1.1.2", + "node_modules/whatwg-mimetype": { + "version": "4.0.0", "dev": true, "license": "MIT", "engines": { - "node": ">= 0.8" + "node": ">=18" } }, - "node_modules/vinyl": { - "version": "2.2.1", + "node_modules/whatwg-url": { + "version": "14.0.0", "license": "MIT", "dependencies": { - "clone": "^2.1.1", - "clone-buffer": "^1.0.0", - "clone-stats": "^1.0.0", - "cloneable-readable": "^1.0.0", - "remove-trailing-separator": "^1.0.1", - "replace-ext": "^1.0.0" + "tr46": "^5.0.0", + "webidl-conversions": "^7.0.0" }, "engines": { - "node": ">= 0.10" + "node": ">=18" } }, - "node_modules/vscode-json-languageservice": { - "version": "5.3.5", - "license": "MIT", + "node_modules/which": { + "version": "2.0.2", + "license": "ISC", "dependencies": { - "@vscode/l10n": "^0.0.13", - "jsonc-parser": "^3.2.0", - "vscode-languageserver-textdocument": "^1.0.8", - "vscode-languageserver-types": "^3.17.3", - "vscode-uri": "^3.0.7" + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" } }, - "node_modules/vscode-json-languageservice/node_modules/vscode-uri": { - "version": "3.0.7", - "license": "MIT" - }, - "node_modules/vscode-jsonrpc": { - "version": "5.0.1", + "node_modules/which-boxed-primitive": { + "version": "1.0.2", "license": "MIT", - "engines": { - "node": ">=8.0.0 || >=10.0.0" + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/vscode-languageclient": { - "version": "6.1.4", + "node_modules/which-typed-array": { + "version": "1.1.8", "license": "MIT", "dependencies": { - "semver": "^6.3.0", - "vscode-languageserver-protocol": "3.15.3" + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-abstract": "^1.20.0", + "for-each": "^0.3.3", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.9" }, "engines": { - "vscode": "^1.41.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/vscode-languageclient/node_modules/semver": { - "version": "6.3.1", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } + "node_modules/wildcard": { + "version": "2.0.0", + "dev": true, + "license": "MIT" }, - "node_modules/vscode-languageserver": { - "version": "6.1.1", + "node_modules/winston": { + "version": "3.11.0", "license": "MIT", "dependencies": { - "vscode-languageserver-protocol": "^3.15.3" + "@colors/colors": "^1.6.0", + "@dabh/diagnostics": "^2.0.2", + "async": "^3.2.3", + "is-stream": "^2.0.0", + "logform": "^2.4.0", + "one-time": "^1.0.0", + "readable-stream": "^3.4.0", + "safe-stable-stringify": "^2.3.1", + "stack-trace": "0.0.x", + "triple-beam": "^1.3.0", + "winston-transport": "^4.5.0" }, - "bin": { - "installServerIntoExtension": "bin/installServerIntoExtension" + "engines": { + "node": ">= 12.0.0" } }, - "node_modules/vscode-languageserver-protocol": { - "version": "3.15.3", + "node_modules/winston-transport": { + "version": "4.6.0", "license": "MIT", "dependencies": { - "vscode-jsonrpc": "^5.0.1", - "vscode-languageserver-types": "3.15.1" + "logform": "^2.3.2", + "readable-stream": "^3.6.0", + "triple-beam": "^1.3.0" + }, + "engines": { + "node": ">= 12.0.0" } }, - "node_modules/vscode-languageserver-protocol/node_modules/vscode-languageserver-types": { - "version": "3.15.1", - "license": "MIT" - }, - "node_modules/vscode-languageserver-textdocument": { - "version": "1.0.8", - "license": "MIT" - }, - "node_modules/vscode-languageserver-types": { - "version": "3.17.3", - "license": "MIT" + "node_modules/winston/node_modules/@colors/colors": { + "version": "1.6.0", + "license": "MIT", + "engines": { + "node": ">=0.1.90" + } }, - "node_modules/vscode-nls": { - "version": "5.2.0", - "license": "MIT" + "node_modules/workerpool": { + "version": "6.2.1", + "dev": true, + "license": "Apache-2.0" }, - "node_modules/vscode-nls-dev": { - "version": "4.0.4", + "node_modules/wrap-ansi": { + "version": "7.0.0", "license": "MIT", "dependencies": { - "ansi-colors": "^4.1.1", - "clone": "^2.1.2", - "event-stream": "^3.3.4", - "fancy-log": "^1.3.3", - "glob": "^7.2.0", - "iconv-lite": "^0.6.3", - "is": "^3.3.0", - "source-map": "^0.6.1", - "typescript": "^4.5.4", - "vinyl": "^2.2.1", - "xml2js": "^0.5.0", - "yargs": "^17.3.0" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, - "bin": { - "vscl": "lib/vscl.js" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/vscode-nls-dev/node_modules/glob": { - "version": "7.2.3", - "license": "ISC", + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "license": "MIT", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, "engines": { - "node": "*" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/vscode-nls-dev/node_modules/iconv-lite": { - "version": "0.6.3", + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/vscode-nls-dev/node_modules/typescript": { - "version": "4.9.5", - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">=4.2.0" + "node": ">=8" } }, - "node_modules/vscode-nls-dev/node_modules/xml2js": { - "version": "0.5.0", + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "5.0.1", "license": "MIT", - "dependencies": { - "sax": ">=0.6.0", - "xmlbuilder": "~11.0.0" - }, "engines": { - "node": ">=4.0.0" + "node": ">=8" } }, - "node_modules/vscode-uri": { - "version": "2.1.2", - "license": "MIT" - }, - "node_modules/vue": { - "version": "3.3.4", + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "6.0.1", "license": "MIT", "dependencies": { - "@vue/compiler-dom": "3.3.4", - "@vue/compiler-sfc": "3.3.4", - "@vue/runtime-dom": "3.3.4", - "@vue/server-renderer": "3.3.4", - "@vue/shared": "3.3.4" + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "node_modules/vue-loader": { - "version": "17.2.2", + "node_modules/wrappy": { + "version": "1.0.2", + "license": "ISC" + }, + "node_modules/ws": { + "version": "8.17.1", "dev": true, "license": "MIT", - "dependencies": { - "chalk": "^4.1.0", - "hash-sum": "^2.0.0", - "watchpack": "^2.4.0" + "engines": { + "node": ">=10.0.0" }, "peerDependencies": { - "webpack": "^4.1.0 || ^5.0.0-0" + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" }, "peerDependenciesMeta": { - "@vue/compiler-sfc": { + "bufferutil": { "optional": true }, - "vue": { + "utf-8-validate": { "optional": true } } }, - "node_modules/vue-style-loader": { - "version": "4.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "hash-sum": "^1.0.2", - "loader-utils": "^1.0.2" - } - }, - "node_modules/vue-style-loader/node_modules/hash-sum": { - "version": "1.0.2", + "node_modules/xml": { + "version": "1.0.1", "dev": true, "license": "MIT" }, - "node_modules/vue-style-loader/node_modules/json5": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/vue-style-loader/node_modules/loader-utils": { - "version": "1.4.2", - "dev": true, - "license": "MIT", - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/w3c-xmlserializer": { + "node_modules/xml-name-validator": { "version": "5.0.0", "dev": true, - "license": "MIT", - "dependencies": { - "xml-name-validator": "^5.0.0" - }, + "license": "Apache-2.0", "engines": { "node": ">=18" } }, - "node_modules/watchpack": { - "version": "2.4.2", - "dev": true, + "node_modules/xml2js": { + "version": "0.6.1", "license": "MIT", "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" }, "engines": { - "node": ">=10.13.0" + "node": ">=4.0.0" } }, - "node_modules/wawoff2": { - "version": "2.0.1", - "dev": true, + "node_modules/xmlbuilder": { + "version": "11.0.1", "license": "MIT", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "woff2_compress.js": "bin/woff2_compress.js", - "woff2_decompress.js": "bin/woff2_decompress.js" + "engines": { + "node": ">=4.0" } }, - "node_modules/wbuf": { - "version": "1.7.3", + "node_modules/xmlchars": { + "version": "2.2.0", "dev": true, - "license": "MIT", - "dependencies": { - "minimalistic-assert": "^1.0.0" - } - }, - "node_modules/web-toolkit": { - "resolved": "packages/core/src/web", - "link": true - }, - "node_modules/web-tree-sitter": { - "version": "0.20.8", "license": "MIT" }, - "node_modules/webfont": { - "version": "11.2.26", + "node_modules/xtend": { + "version": "4.0.2", "dev": true, "license": "MIT", - "dependencies": { - "cosmiconfig": "^5.2.0", - "deepmerge": "^4.2.2", - "globby": "^11.0.0", - "meow": "^9.0.0", - "nunjucks": "^3.2.3", - "p-limit": "^3.1.0", - "parse-json": "^5.2.0", - "resolve-from": "^5.0.0", - "svg2ttf": "^6.0.2", - "svgicons2svgfont": "^10.0.3", - "ttf2eot": "^2.0.0", - "ttf2woff": "^2.0.2", - "wawoff2": "^2.0.0", - "xml2js": "^0.4.23" - }, - "bin": { - "webfont": "dist/cli.js" - }, "engines": { - "node": ">= 12.0.0" + "node": ">=0.4" } }, - "node_modules/webfont/node_modules/resolve-from": { - "version": "5.0.0", - "dev": true, - "license": "MIT", + "node_modules/y18n": { + "version": "5.0.8", + "license": "ISC", "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/webfont/node_modules/xml2js": { - "version": "0.5.0", + "node_modules/yallist": { + "version": "4.0.0", "dev": true, - "license": "MIT", - "dependencies": { - "sax": ">=0.6.0", - "xmlbuilder": "~11.0.0" - }, - "engines": { - "node": ">=4.0.0" - } + "license": "ISC" }, - "node_modules/webidl-conversions": { - "version": "7.0.0", - "license": "BSD-2-Clause", + "node_modules/yaml": { + "version": "1.10.2", + "license": "ISC", "engines": { - "node": ">=12" + "node": ">= 6" } }, - "node_modules/webpack": { - "version": "5.95.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.95.0.tgz", - "integrity": "sha512-2t3XstrKULz41MNMBF+cJ97TyHdyQ8HCt//pqErqDvNjU9YQBnZxIHa11VXsi7F3mb5/aO2tuDxdeTPdU7xu9Q==", - "dev": true, - "dependencies": { - "@types/estree": "^1.0.5", - "@webassemblyjs/ast": "^1.12.1", - "@webassemblyjs/wasm-edit": "^1.12.1", - "@webassemblyjs/wasm-parser": "^1.12.1", - "acorn": "^8.7.1", - "acorn-import-attributes": "^1.9.5", - "browserslist": "^4.21.10", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.17.1", - "es-module-lexer": "^1.2.1", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.11", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.10", - "watchpack": "^2.4.1", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node_modules/yaml-ast-parser-custom-tags": { + "version": "0.0.43", + "license": "Apache-2.0" + }, + "node_modules/yaml-cfn": { + "version": "0.3.2", + "license": "Apache-2.0", + "dependencies": { + "js-yaml": "^4.0.0" }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } + "bin": { + "yaml-cfn": "cli.js" } }, - "node_modules/webpack-cli": { - "version": "5.1.4", - "dev": true, + "node_modules/yaml-language-server": { + "version": "0.15.0", "license": "MIT", "dependencies": { - "@discoveryjs/json-ext": "^0.5.0", - "@webpack-cli/configtest": "^2.1.1", - "@webpack-cli/info": "^2.0.2", - "@webpack-cli/serve": "^2.0.5", - "colorette": "^2.0.14", - "commander": "^10.0.1", - "cross-spawn": "^7.0.3", - "envinfo": "^7.7.3", - "fastest-levenshtein": "^1.0.12", - "import-local": "^3.0.2", - "interpret": "^3.1.1", - "rechoir": "^0.8.0", - "webpack-merge": "^5.7.3" + "js-yaml": "^3.13.1", + "jsonc-parser": "^2.2.1", + "request-light": "^0.2.4", + "vscode-json-languageservice": "^3.10.0", + "vscode-languageserver": "^5.2.1", + "vscode-languageserver-textdocument": "^1.0.1", + "vscode-languageserver-types": "^3.15.1", + "vscode-nls": "^4.1.2", + "vscode-uri": "^2.1.1", + "yaml-language-server-parser": "0.1.2" }, "bin": { - "webpack-cli": "bin/cli.js" + "yaml-language-server": "bin/yaml-language-server" }, "engines": { - "node": ">=14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "5.x.x" + "node": "*" }, - "peerDependenciesMeta": { - "@webpack-cli/generators": { - "optional": true - }, - "webpack-bundle-analyzer": { - "optional": true - }, - "webpack-dev-server": { - "optional": true - } + "optionalDependencies": { + "prettier": "2.0.5" } }, - "node_modules/webpack-cli/node_modules/commander": { - "version": "10.0.1", - "dev": true, + "node_modules/yaml-language-server-parser": { + "version": "0.1.2", + "license": "Apache-2.0" + }, + "node_modules/yaml-language-server/node_modules/argparse": { + "version": "1.0.10", "license": "MIT", - "engines": { - "node": ">=14" + "dependencies": { + "sprintf-js": "~1.0.2" } }, - "node_modules/webpack-dev-middleware": { - "version": "5.3.4", - "dev": true, + "node_modules/yaml-language-server/node_modules/js-yaml": { + "version": "3.14.1", "license": "MIT", "dependencies": { - "colorette": "^2.0.10", - "memfs": "^3.4.3", - "mime-types": "^2.1.31", - "range-parser": "^1.2.1", - "schema-utils": "^4.0.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/webpack-dev-middleware/node_modules/ajv": { - "version": "8.11.0", - "dev": true, + "node_modules/yaml-language-server/node_modules/jsonc-parser": { + "version": "2.3.1", + "license": "MIT" + }, + "node_modules/yaml-language-server/node_modules/prettier": { + "version": "2.0.5", "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "optional": true, + "bin": { + "prettier": "bin-prettier.js" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "engines": { + "node": ">=10.13.0" } }, - "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { - "version": "5.1.0", - "dev": true, + "node_modules/yaml-language-server/node_modules/vscode-json-languageservice": { + "version": "3.11.0", "license": "MIT", "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" + "jsonc-parser": "^3.0.0", + "vscode-languageserver-textdocument": "^1.0.1", + "vscode-languageserver-types": "3.16.0-next.2", + "vscode-nls": "^5.0.0", + "vscode-uri": "^2.1.2" } }, - "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { - "version": "1.0.0", - "dev": true, + "node_modules/yaml-language-server/node_modules/vscode-json-languageservice/node_modules/jsonc-parser": { + "version": "3.2.0", "license": "MIT" }, - "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "node_modules/yaml-language-server/node_modules/vscode-json-languageservice/node_modules/vscode-languageserver-types": { + "version": "3.16.0-next.2", + "license": "MIT" + }, + "node_modules/yaml-language-server/node_modules/vscode-json-languageservice/node_modules/vscode-nls": { + "version": "5.2.0", + "license": "MIT" + }, + "node_modules/yaml-language-server/node_modules/vscode-jsonrpc": { "version": "4.0.0", - "dev": true, "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" - }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": ">=8.0.0 || >=10.0.0" } }, - "node_modules/webpack-dev-server": { - "version": "4.15.1", - "dev": true, + "node_modules/yaml-language-server/node_modules/vscode-languageserver": { + "version": "5.2.1", "license": "MIT", "dependencies": { - "@types/bonjour": "^3.5.9", - "@types/connect-history-api-fallback": "^1.3.5", - "@types/express": "^4.17.13", - "@types/serve-index": "^1.9.1", - "@types/serve-static": "^1.13.10", - "@types/sockjs": "^0.3.33", - "@types/ws": "^8.5.5", - "ansi-html-community": "^0.0.8", - "bonjour-service": "^1.0.11", - "chokidar": "^3.5.3", - "colorette": "^2.0.10", - "compression": "^1.7.4", - "connect-history-api-fallback": "^2.0.0", - "default-gateway": "^6.0.3", - "express": "^4.17.3", - "graceful-fs": "^4.2.6", - "html-entities": "^2.3.2", - "http-proxy-middleware": "^2.0.3", - "ipaddr.js": "^2.0.1", - "launch-editor": "^2.6.0", - "open": "^8.0.9", - "p-retry": "^4.5.0", - "rimraf": "^3.0.2", - "schema-utils": "^4.0.0", - "selfsigned": "^2.1.1", - "serve-index": "^1.9.1", - "sockjs": "^0.3.24", - "spdy": "^4.0.2", - "webpack-dev-middleware": "^5.3.1", - "ws": "^8.13.0" + "vscode-languageserver-protocol": "3.14.1", + "vscode-uri": "^1.0.6" }, "bin": { - "webpack-dev-server": "bin/webpack-dev-server.js" + "installServerIntoExtension": "bin/installServerIntoExtension" + } + }, + "node_modules/yaml-language-server/node_modules/vscode-languageserver-protocol": { + "version": "3.14.1", + "license": "MIT", + "dependencies": { + "vscode-jsonrpc": "^4.0.0", + "vscode-languageserver-types": "3.14.0" + } + }, + "node_modules/yaml-language-server/node_modules/vscode-languageserver-protocol/node_modules/vscode-languageserver-types": { + "version": "3.14.0", + "license": "MIT" + }, + "node_modules/yaml-language-server/node_modules/vscode-languageserver/node_modules/vscode-uri": { + "version": "1.0.8", + "license": "MIT" + }, + "node_modules/yaml-language-server/node_modules/vscode-nls": { + "version": "4.1.2", + "license": "MIT" + }, + "node_modules/yargs": { + "version": "17.7.2", + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.37.0 || ^5.0.0" - }, - "peerDependenciesMeta": { - "webpack": { - "optional": true - }, - "webpack-cli": { - "optional": true - } + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.4", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" } }, - "node_modules/webpack-dev-server/node_modules/ajv": { - "version": "8.8.2", + "node_modules/yargs-unparser": { + "version": "2.0.0", "dev": true, "license": "MIT", "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "camelcase": "^6.0.0", + "decamelize": "^4.0.0", + "flat": "^5.0.2", + "is-plain-obj": "^2.1.0" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "engines": { + "node": ">=10" } }, - "node_modules/webpack-dev-server/node_modules/ajv-keywords": { - "version": "5.1.0", - "dev": true, + "node_modules/yargs/node_modules/ansi-regex": { + "version": "5.0.1", "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs/node_modules/cliui": { + "version": "8.0.1", + "license": "ISC", "dependencies": { - "fast-deep-equal": "^3.1.3" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" }, - "peerDependencies": { - "ajv": "^8.8.2" + "engines": { + "node": ">=12" } }, - "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { - "version": "1.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/webpack-dev-server/node_modules/schema-utils": { - "version": "4.0.0", - "dev": true, + "node_modules/yargs/node_modules/strip-ansi": { + "version": "6.0.1", "license": "MIT", "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": ">=8" } }, - "node_modules/webpack-merge": { - "version": "5.10.0", + "node_modules/yargs/node_modules/yargs-parser": { + "version": "21.1.1", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yauzl": { + "version": "2.10.0", "dev": true, "license": "MIT", "dependencies": { - "clone-deep": "^4.0.1", - "flat": "^5.0.2", - "wildcard": "^2.0.0" - }, - "engines": { - "node": ">=10.0.0" + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" } }, - "node_modules/webpack-sources": { - "version": "2.3.1", + "node_modules/yazl": { + "version": "2.5.1", "dev": true, "license": "MIT", "dependencies": { - "source-list-map": "^2.0.1", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=10.13.0" + "buffer-crc32": "~0.2.3" } }, - "node_modules/webpack/node_modules/events": { - "version": "3.3.0", + "node_modules/ylru": { + "version": "1.4.0", "dev": true, "license": "MIT", "engines": { - "node": ">=0.8.x" + "node": ">= 4.0.0" } }, - "node_modules/webpack/node_modules/webpack-sources": { - "version": "3.2.3", + "node_modules/yn": { + "version": "3.1.1", "dev": true, "license": "MIT", "engines": { - "node": ">=10.13.0" + "node": ">=6" } }, - "node_modules/websocket-driver": { - "version": "0.7.4", + "node_modules/yocto-queue": { + "version": "0.1.0", "dev": true, - "license": "Apache-2.0", - "dependencies": { - "http-parser-js": ">=0.5.1", - "safe-buffer": ">=5.1.0", - "websocket-extensions": ">=0.1.1" - }, + "license": "MIT", "engines": { - "node": ">=0.8.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/websocket-extensions": { - "version": "0.1.4", - "dev": true, + "packages/amazonq": { + "name": "amazon-q-vscode", + "version": "1.31.0-SNAPSHOT", "license": "Apache-2.0", + "dependencies": { + "aws-core-vscode": "file:../core/" + }, "engines": { - "node": ">=0.8.0" + "npm": "^10.1.0", + "vscode": "^1.83.0" } }, - "node_modules/whatwg-encoding": { - "version": "3.1.1", - "dev": true, - "license": "MIT", + "packages/core": { + "name": "aws-core-vscode", + "version": "1.0.0", + "hasInstallScript": true, + "license": "Apache-2.0", "dependencies": { - "iconv-lite": "0.6.3" + "@amzn/amazon-q-developer-streaming-client": "file:../../src.gen/@amzn/amazon-q-developer-streaming-client", + "@amzn/codewhisperer-streaming": "file:../../src.gen/@amzn/codewhisperer-streaming", + "@aws-sdk/client-cognito-identity": "^3.637.0", + "@aws-sdk/client-lambda": "^3.637.0", + "@aws-sdk/client-sso": "^3.342.0", + "@aws-sdk/client-sso-oidc": "^3.574.0", + "@aws-sdk/credential-provider-ini": "3.46.0", + "@aws-sdk/credential-provider-process": "3.37.0", + "@aws-sdk/credential-provider-sso": "^3.345.0", + "@aws-sdk/property-provider": "3.46.0", + "@aws-sdk/smithy-client": "^3.46.0", + "@aws-sdk/util-arn-parser": "^3.46.0", + "@aws/mynah-ui": "^4.15.11", + "@gerhobbelt/gitignore-parser": "^0.2.0-9", + "@iarna/toml": "^2.2.5", + "@smithy/middleware-retry": "^2.3.1", + "@smithy/protocol-http": "^3.3.0", + "@smithy/service-error-classification": "^2.1.5", + "@smithy/shared-ini-file-loader": "^2.2.8", + "@smithy/util-retry": "^2.2.0", + "@vscode/debugprotocol": "^1.57.0", + "@zip.js/zip.js": "^2.7.41", + "adm-zip": "^0.5.10", + "amazon-states-language-service": "^1.11.0", + "async-lock": "^1.4.0", + "aws-sdk": "^2.1384.0", + "aws-ssm-document-language-service": "^1.0.0", + "bytes": "^3.1.2", + "cross-fetch": "^4.0.0", + "cross-spawn": "^7.0.3", + "fast-json-patch": "^3.1.1", + "glob": "^10.3.10", + "got": "^11.8.5", + "highlight.js": "^11.9.0", + "i18n-ts": "^1.0.5", + "immutable": "^4.3.0", + "jose": "5.4.1", + "js-yaml": "^4.1.0", + "jsonc-parser": "^3.2.0", + "lodash": "^4.17.21", + "markdown-it": "^13.0.2", + "mime-types": "^2.1.32", + "node-fetch": "^2.7.0", + "portfinder": "^1.0.32", + "semver": "^7.5.4", + "stream-buffers": "^3.0.2", + "strip-ansi": "^5.2.0", + "tcp-port-used": "^1.0.1", + "vscode-languageclient": "^6.1.4", + "vscode-languageserver": "^6.1.1", + "vscode-languageserver-protocol": "^3.15.3", + "vscode-languageserver-textdocument": "^1.0.8", + "vue": "^3.3.4", + "web-tree-sitter": "^0.20.8", + "whatwg-url": "^14.0.0", + "winston": "^3.11.0", + "winston-transport": "^4.6.0", + "xml2js": "^0.6.1", + "yaml-cfn": "^0.3.2" + }, + "devDependencies": { + "@aws-sdk/types": "^3.13.1", + "@aws/fully-qualified-names": "^2.1.4", + "@cspotcode/source-map-support": "^0.8.1", + "@sinonjs/fake-timers": "^10.0.2", + "@types/adm-zip": "^0.4.34", + "@types/async-lock": "^1.4.0", + "@types/bytes": "^3.1.0", + "@types/circular-dependency-plugin": "^5.0.8", + "@types/cross-spawn": "^6.0.6", + "@types/diff": "^5.0.7", + "@types/glob": "^8.1.0", + "@types/js-yaml": "^4.0.5", + "@types/jsdom": "^21.1.6", + "@types/lodash": "^4.14.180", + "@types/markdown-it": "^13.0.2", + "@types/mime-types": "^2.1.4", + "@types/mocha": "^10.0.6", + "@types/node": "^16.18.95", + "@types/node-fetch": "^2.6.8", + "@types/prismjs": "^1.26.0", + "@types/proper-lockfile": "^4.1.4", + "@types/readline-sync": "^1.4.8", + "@types/semver": "^7.5.0", + "@types/sinon": "^10.0.5", + "@types/sinonjs__fake-timers": "^8.1.2", + "@types/stream-buffers": "^3.0.7", + "@types/tcp-port-used": "^1.0.1", + "@types/uuid": "^9.0.1", + "@types/whatwg-url": "^11.0.4", + "@types/xml2js": "^0.4.11", + "@vue/compiler-sfc": "^3.3.2", + "c8": "^9.0.0", + "circular-dependency-plugin": "^5.2.2", + "css-loader": "^6.10.0", + "diff": "^5.1.0", + "esbuild-loader": "2.20.0", + "file-loader": "^6.2.0", + "jsdom": "^23.0.1", + "json-schema-to-typescript": "^13.1.1", + "marked": "^13.0.1", + "mocha": "^10.1.0", + "mocha-junit-reporter": "^2.2.1", + "mocha-multi-reporters": "^1.5.1", + "readline-sync": "^1.4.9", + "sass": "^1.49.8", + "sass-loader": "^16.0.2", + "sinon": "^14.0.0", + "style-loader": "^3.3.1", + "ts-node": "^10.9.1", + "typescript": "^5.0.4", + "umd-compat-loader": "^2.1.2", + "vue-loader": "^17.2.2", + "vue-style-loader": "^4.1.3", + "webfont": "^11.2.26" }, "engines": { - "node": ">=18" + "npm": "^10.1.0", + "vscode": "^1.83.0" } }, - "node_modules/whatwg-encoding/node_modules/iconv-lite": { - "version": "0.6.3", + "packages/core/node_modules/@types/node": { + "version": "16.18.95", "dev": true, - "license": "MIT", + "license": "MIT" + }, + "packages/core/src/web": { + "name": "web-toolkit", + "license": "Apache-2.0", "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "crypto-browserify": "^3.12.0", + "os-browserify": "^0.3.0", + "path-browserify": "^1.0.1", + "process": "^0.11.10", + "stream-browserify": "^3.0.0" }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/whatwg-mimetype": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" + "devDependencies": { + "assert": "^2.1.0" } }, - "node_modules/whatwg-url": { - "version": "14.0.0", - "license": "MIT", + "packages/toolkit": { + "name": "aws-toolkit-vscode", + "version": "3.30.0-SNAPSHOT", + "license": "Apache-2.0", "dependencies": { - "tr46": "^5.0.0", - "webidl-conversions": "^7.0.0" + "aws-core-vscode": "file:../core/" }, + "devDependencies": {}, "engines": { - "node": ">=18" + "npm": "^10.1.0", + "vscode": "^1.83.0" } }, - "node_modules/which": { - "version": "2.0.2", - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" + "plugins/eslint-plugin-aws-toolkits": { + "version": "1.0.0", + "license": "Apache-2.0", + "devDependencies": { + "mocha": "^10.1.0" }, "engines": { - "node": ">= 8" + "npm": "^10.1.0" } }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client": { + "version": "1.0.0", + "hasInstallScript": true, "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/client-sso-oidc": "3.658.1", + "@aws-sdk/client-sts": "3.658.1", + "@aws-sdk/core": "3.658.1", + "@aws-sdk/credential-provider-node": "3.658.1", + "@aws-sdk/middleware-host-header": "3.654.0", + "@aws-sdk/middleware-logger": "3.654.0", + "@aws-sdk/middleware-recursion-detection": "3.654.0", + "@aws-sdk/middleware-user-agent": "3.654.0", + "@aws-sdk/region-config-resolver": "3.654.0", + "@aws-sdk/types": "3.654.0", + "@aws-sdk/util-user-agent-browser": "3.654.0", + "@aws-sdk/util-user-agent-node": "3.654.0", + "@smithy/config-resolver": "^3.0.8", + "@smithy/core": "^2.4.6", + "@smithy/eventstream-serde-browser": "^3.0.9", + "@smithy/eventstream-serde-config-resolver": "^3.0.6", + "@smithy/eventstream-serde-node": "^3.0.8", + "@smithy/fetch-http-handler": "^3.2.8", + "@smithy/hash-node": "^3.0.6", + "@smithy/invalid-dependency": "^3.0.6", + "@smithy/middleware-content-length": "^3.0.8", + "@smithy/middleware-retry": "^3.0.21", + "@smithy/middleware-serde": "^3.0.6", + "@smithy/middleware-stack": "^3.0.6", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/node-http-handler": "^3.2.3", + "@smithy/protocol-http": "^4.1.3", + "@smithy/smithy-client": "^3.3.5", + "@smithy/types": "^3.4.2", + "@smithy/url-parser": "^3.0.6", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.21", + "@smithy/util-defaults-mode-node": "^3.0.21", + "@smithy/util-middleware": "^3.0.6", + "@smithy/util-retry": "^3.0.6", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2", + "uuid": "^9.0.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-typed-array": { - "version": "1.1.8", - "license": "MIT", - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-abstract": "^1.20.0", - "for-each": "^0.3.3", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.9" + "devDependencies": { + "@tsconfig/node16": "16.1.3", + "@types/node": "^16.18.96", + "@types/uuid": "^9.0.4", + "concurrently": "7.0.0", + "downlevel-dts": "0.10.1", + "rimraf": "^3.0.0", + "typescript": "~4.9.5" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=16.0.0" } }, - "node_modules/wildcard": { - "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/winston": { - "version": "3.11.0", - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/client-sso": { + "version": "3.658.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.658.1.tgz", + "integrity": "sha512-lOuaBtqPTYGn6xpXlQF4LsNDsQ8Ij2kOdnk+i69Kp6yS76TYvtUuukyLL5kx8zE1c8WbYtxj9y8VNw9/6uKl7Q==", + "license": "Apache-2.0", "dependencies": { - "@colors/colors": "^1.6.0", - "@dabh/diagnostics": "^2.0.2", - "async": "^3.2.3", - "is-stream": "^2.0.0", - "logform": "^2.4.0", - "one-time": "^1.0.0", - "readable-stream": "^3.4.0", - "safe-stable-stringify": "^2.3.1", - "stack-trace": "0.0.x", - "triple-beam": "^1.3.0", - "winston-transport": "^4.5.0" + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/core": "3.658.1", + "@aws-sdk/middleware-host-header": "3.654.0", + "@aws-sdk/middleware-logger": "3.654.0", + "@aws-sdk/middleware-recursion-detection": "3.654.0", + "@aws-sdk/middleware-user-agent": "3.654.0", + "@aws-sdk/region-config-resolver": "3.654.0", + "@aws-sdk/types": "3.654.0", + "@aws-sdk/util-endpoints": "3.654.0", + "@aws-sdk/util-user-agent-browser": "3.654.0", + "@aws-sdk/util-user-agent-node": "3.654.0", + "@smithy/config-resolver": "^3.0.8", + "@smithy/core": "^2.4.6", + "@smithy/fetch-http-handler": "^3.2.8", + "@smithy/hash-node": "^3.0.6", + "@smithy/invalid-dependency": "^3.0.6", + "@smithy/middleware-content-length": "^3.0.8", + "@smithy/middleware-endpoint": "^3.1.3", + "@smithy/middleware-retry": "^3.0.21", + "@smithy/middleware-serde": "^3.0.6", + "@smithy/middleware-stack": "^3.0.6", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/node-http-handler": "^3.2.3", + "@smithy/protocol-http": "^4.1.3", + "@smithy/smithy-client": "^3.3.5", + "@smithy/types": "^3.4.2", + "@smithy/url-parser": "^3.0.6", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.21", + "@smithy/util-defaults-mode-node": "^3.0.21", + "@smithy/util-endpoints": "^2.1.2", + "@smithy/util-middleware": "^3.0.6", + "@smithy/util-retry": "^3.0.6", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" }, "engines": { - "node": ">= 12.0.0" + "node": ">=16.0.0" } }, - "node_modules/winston-transport": { - "version": "4.6.0", - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/client-sso-oidc": { + "version": "3.658.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.658.1.tgz", + "integrity": "sha512-RGcZAI3qEA05JszPKwa0cAyp8rnS1nUvs0Sqw4hqLNQ1kD7b7V6CPjRXe7EFQqCOMvM4kGqx0+cEEVTOmBsFLw==", + "license": "Apache-2.0", "dependencies": { - "logform": "^2.3.2", - "readable-stream": "^3.6.0", - "triple-beam": "^1.3.0" + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/core": "3.658.1", + "@aws-sdk/credential-provider-node": "3.658.1", + "@aws-sdk/middleware-host-header": "3.654.0", + "@aws-sdk/middleware-logger": "3.654.0", + "@aws-sdk/middleware-recursion-detection": "3.654.0", + "@aws-sdk/middleware-user-agent": "3.654.0", + "@aws-sdk/region-config-resolver": "3.654.0", + "@aws-sdk/types": "3.654.0", + "@aws-sdk/util-endpoints": "3.654.0", + "@aws-sdk/util-user-agent-browser": "3.654.0", + "@aws-sdk/util-user-agent-node": "3.654.0", + "@smithy/config-resolver": "^3.0.8", + "@smithy/core": "^2.4.6", + "@smithy/fetch-http-handler": "^3.2.8", + "@smithy/hash-node": "^3.0.6", + "@smithy/invalid-dependency": "^3.0.6", + "@smithy/middleware-content-length": "^3.0.8", + "@smithy/middleware-endpoint": "^3.1.3", + "@smithy/middleware-retry": "^3.0.21", + "@smithy/middleware-serde": "^3.0.6", + "@smithy/middleware-stack": "^3.0.6", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/node-http-handler": "^3.2.3", + "@smithy/protocol-http": "^4.1.3", + "@smithy/smithy-client": "^3.3.5", + "@smithy/types": "^3.4.2", + "@smithy/url-parser": "^3.0.6", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.21", + "@smithy/util-defaults-mode-node": "^3.0.21", + "@smithy/util-endpoints": "^2.1.2", + "@smithy/util-middleware": "^3.0.6", + "@smithy/util-retry": "^3.0.6", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" }, "engines": { - "node": ">= 12.0.0" - } - }, - "node_modules/winston/node_modules/@colors/colors": { - "version": "1.6.0", - "license": "MIT", - "engines": { - "node": ">=0.1.90" + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "^3.658.1" } }, - "node_modules/workerpool": { - "version": "6.2.1", - "dev": true, - "license": "Apache-2.0" - }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/client-sts": { + "version": "3.658.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.658.1.tgz", + "integrity": "sha512-yw9hc5blTnbT1V6mR7Cx9HGc9KQpcLQ1QXj8rntiJi6tIYu3aFNVEyy81JHL7NsuBSeQulJTvHO3y6r3O0sfRg==", + "license": "Apache-2.0", "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "@aws-crypto/sha256-browser": "5.2.0", + "@aws-crypto/sha256-js": "5.2.0", + "@aws-sdk/client-sso-oidc": "3.658.1", + "@aws-sdk/core": "3.658.1", + "@aws-sdk/credential-provider-node": "3.658.1", + "@aws-sdk/middleware-host-header": "3.654.0", + "@aws-sdk/middleware-logger": "3.654.0", + "@aws-sdk/middleware-recursion-detection": "3.654.0", + "@aws-sdk/middleware-user-agent": "3.654.0", + "@aws-sdk/region-config-resolver": "3.654.0", + "@aws-sdk/types": "3.654.0", + "@aws-sdk/util-endpoints": "3.654.0", + "@aws-sdk/util-user-agent-browser": "3.654.0", + "@aws-sdk/util-user-agent-node": "3.654.0", + "@smithy/config-resolver": "^3.0.8", + "@smithy/core": "^2.4.6", + "@smithy/fetch-http-handler": "^3.2.8", + "@smithy/hash-node": "^3.0.6", + "@smithy/invalid-dependency": "^3.0.6", + "@smithy/middleware-content-length": "^3.0.8", + "@smithy/middleware-endpoint": "^3.1.3", + "@smithy/middleware-retry": "^3.0.21", + "@smithy/middleware-serde": "^3.0.6", + "@smithy/middleware-stack": "^3.0.6", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/node-http-handler": "^3.2.3", + "@smithy/protocol-http": "^4.1.3", + "@smithy/smithy-client": "^3.3.5", + "@smithy/types": "^3.4.2", + "@smithy/url-parser": "^3.0.6", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-body-length-browser": "^3.0.0", + "@smithy/util-body-length-node": "^3.0.0", + "@smithy/util-defaults-mode-browser": "^3.0.21", + "@smithy/util-defaults-mode-node": "^3.0.21", + "@smithy/util-endpoints": "^2.1.2", + "@smithy/util-middleware": "^3.0.6", + "@smithy/util-retry": "^3.0.6", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "node": ">=16.0.0" } }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/core": { + "version": "3.658.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.658.1.tgz", + "integrity": "sha512-vJVMoMcSKXK2gBRSu9Ywwv6wQ7tXH8VL1fqB1uVxgCqBZ3IHfqNn4zvpMPWrwgO2/3wv7XFyikGQ5ypPTCw4jA==", + "license": "Apache-2.0", "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" + "@smithy/core": "^2.4.6", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/property-provider": "^3.1.6", + "@smithy/protocol-http": "^4.1.3", + "@smithy/signature-v4": "^4.1.4", + "@smithy/smithy-client": "^3.3.5", + "@smithy/types": "^3.4.2", + "@smithy/util-middleware": "^3.0.6", + "fast-xml-parser": "4.4.1", + "tslib": "^2.6.2" }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { - "version": "5.0.1", - "license": "MIT", "engines": { - "node": ">=8" + "node": ">=16.0.0" } }, - "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { - "version": "6.0.1", - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/credential-provider-env": { + "version": "3.654.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.654.0.tgz", + "integrity": "sha512-kogsx3Ql81JouHS7DkheCDU9MYAvK0AokxjcshDveGmf7BbgbWCA8Fnb9wjQyNDaOXNvkZu8Z8rgkX91z324/w==", + "license": "Apache-2.0", "dependencies": { - "ansi-regex": "^5.0.1" + "@aws-sdk/types": "3.654.0", + "@smithy/property-provider": "^3.1.6", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" }, "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "5.0.1", - "license": "MIT", - "engines": { - "node": ">=8" + "node": ">=16.0.0" } }, - "node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "6.0.1", - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/credential-provider-http": { + "version": "3.658.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.658.1.tgz", + "integrity": "sha512-4ubkJjEVCZflxkZnV1JDQv8P2pburxk1LrEp55telfJRzXrnowzBKwuV2ED0QMNC448g2B3VCaffS+Ct7c4IWQ==", + "license": "Apache-2.0", "dependencies": { - "ansi-regex": "^5.0.1" + "@aws-sdk/types": "3.654.0", + "@smithy/fetch-http-handler": "^3.2.8", + "@smithy/node-http-handler": "^3.2.3", + "@smithy/property-provider": "^3.1.6", + "@smithy/protocol-http": "^4.1.3", + "@smithy/smithy-client": "^3.3.5", + "@smithy/types": "^3.4.2", + "@smithy/util-stream": "^3.1.8", + "tslib": "^2.6.2" }, "engines": { - "node": ">=8" + "node": ">=16.0.0" } }, - "node_modules/wrappy": { - "version": "1.0.2", - "license": "ISC" - }, - "node_modules/ws": { - "version": "8.17.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/credential-provider-ini": { + "version": "3.658.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.658.1.tgz", + "integrity": "sha512-2uwOamQg5ppwfegwen1ddPu5HM3/IBSnaGlaKLFhltkdtZ0jiqTZWUtX2V+4Q+buLnT0hQvLS/frQ+7QUam+0Q==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/credential-provider-env": "3.654.0", + "@aws-sdk/credential-provider-http": "3.658.1", + "@aws-sdk/credential-provider-process": "3.654.0", + "@aws-sdk/credential-provider-sso": "3.658.1", + "@aws-sdk/credential-provider-web-identity": "3.654.0", + "@aws-sdk/types": "3.654.0", + "@smithy/credential-provider-imds": "^3.2.3", + "@smithy/property-provider": "^3.1.6", + "@smithy/shared-ini-file-loader": "^3.1.7", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/xml": { - "version": "1.0.1", - "dev": true, - "license": "MIT" + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "^3.658.1" + } }, - "node_modules/xml-name-validator": { - "version": "5.0.0", - "dev": true, + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/credential-provider-node": { + "version": "3.658.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.658.1.tgz", + "integrity": "sha512-XwxW6N+uPXPYAuyq+GfOEdfL/MZGAlCSfB5gEWtLBFmFbikhmEuqfWtI6CD60OwudCUOh6argd21BsJf8o1SJA==", "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/credential-provider-env": "3.654.0", + "@aws-sdk/credential-provider-http": "3.658.1", + "@aws-sdk/credential-provider-ini": "3.658.1", + "@aws-sdk/credential-provider-process": "3.654.0", + "@aws-sdk/credential-provider-sso": "3.658.1", + "@aws-sdk/credential-provider-web-identity": "3.654.0", + "@aws-sdk/types": "3.654.0", + "@smithy/credential-provider-imds": "^3.2.3", + "@smithy/property-provider": "^3.1.6", + "@smithy/shared-ini-file-loader": "^3.1.7", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" + }, "engines": { - "node": ">=18" + "node": ">=16.0.0" } }, - "node_modules/xml2js": { - "version": "0.6.1", - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/credential-provider-process": { + "version": "3.654.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.654.0.tgz", + "integrity": "sha512-PmQoo8sZ9Q2Ow8OMzK++Z9lI7MsRUG7sNq3E72DVA215dhtTICTDQwGlXH2AAmIp7n+G9LLRds+4wo2ehG4mkg==", + "license": "Apache-2.0", "dependencies": { - "sax": ">=0.6.0", - "xmlbuilder": "~11.0.0" + "@aws-sdk/types": "3.654.0", + "@smithy/property-provider": "^3.1.6", + "@smithy/shared-ini-file-loader": "^3.1.7", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" }, "engines": { - "node": ">=4.0.0" + "node": ">=16.0.0" } }, - "node_modules/xmlbuilder": { - "version": "11.0.1", - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/credential-provider-sso": { + "version": "3.658.1", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.658.1.tgz", + "integrity": "sha512-YOagVEsZEk9DmgJEBg+4MBXrPcw/tYas0VQ5OVBqC5XHNbi2OBGJqgmjVPesuu393E7W0VQxtJFDS00O1ewQgA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/client-sso": "3.658.1", + "@aws-sdk/token-providers": "3.654.0", + "@aws-sdk/types": "3.654.0", + "@smithy/property-provider": "^3.1.6", + "@smithy/shared-ini-file-loader": "^3.1.7", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" + }, "engines": { - "node": ">=4.0" + "node": ">=16.0.0" } }, - "node_modules/xmlchars": { - "version": "2.2.0", - "dev": true, - "license": "MIT" - }, - "node_modules/xtend": { - "version": "4.0.2", - "dev": true, - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/credential-provider-web-identity": { + "version": "3.654.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.654.0.tgz", + "integrity": "sha512-6a2g9gMtZToqSu+CusjNK5zvbLJahQ9di7buO3iXgbizXpLXU1rnawCpWxwslMpT5fLgMSKDnKDrr6wdEk7jSw==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.654.0", + "@smithy/property-provider": "^3.1.6", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" + }, "engines": { - "node": ">=0.4" + "node": ">=16.0.0" + }, + "peerDependencies": { + "@aws-sdk/client-sts": "^3.654.0" } }, - "node_modules/y18n": { - "version": "5.0.8", - "license": "ISC", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/middleware-host-header": { + "version": "3.654.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.654.0.tgz", + "integrity": "sha512-rxGgVHWKp8U2ubMv+t+vlIk7QYUaRCHaVpmUlJv0Wv6Q0KeO9a42T9FxHphjOTlCGQOLcjCreL9CF8Qhtb4mdQ==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.654.0", + "@smithy/protocol-http": "^4.1.3", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" + }, "engines": { - "node": ">=10" + "node": ">=16.0.0" } }, - "node_modules/yallist": { - "version": "4.0.0", - "dev": true, - "license": "ISC" - }, - "node_modules/yaml": { - "version": "1.10.2", - "license": "ISC", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/middleware-logger": { + "version": "3.654.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.654.0.tgz", + "integrity": "sha512-OQYb+nWlmASyXfRb989pwkJ9EVUMP1CrKn2eyTk3usl20JZmKo2Vjis6I0tLUkMSxMhnBJJlQKyWkRpD/u1FVg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.654.0", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" + }, "engines": { - "node": ">= 6" + "node": ">=16.0.0" } }, - "node_modules/yaml-ast-parser-custom-tags": { - "version": "0.0.43", - "license": "Apache-2.0" + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/middleware-recursion-detection": { + "version": "3.654.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.654.0.tgz", + "integrity": "sha512-gKSomgltKVmsT8sC6W7CrADZ4GHwX9epk3GcH6QhebVO3LA9LRbkL3TwOPUXakxxOLLUTYdOZLIOtFf7iH00lg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.654.0", + "@smithy/protocol-http": "^4.1.3", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } }, - "node_modules/yaml-cfn": { - "version": "0.3.2", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/middleware-user-agent": { + "version": "3.654.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.654.0.tgz", + "integrity": "sha512-liCcqPAyRsr53cy2tYu4qeH4MMN0eh9g6k56XzI5xd4SghXH5YWh4qOYAlQ8T66ZV4nPMtD8GLtLXGzsH8moFg==", "license": "Apache-2.0", "dependencies": { - "js-yaml": "^4.0.0" + "@aws-sdk/types": "3.654.0", + "@aws-sdk/util-endpoints": "3.654.0", + "@smithy/protocol-http": "^4.1.3", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" }, - "bin": { - "yaml-cfn": "cli.js" + "engines": { + "node": ">=16.0.0" } }, - "node_modules/yaml-language-server": { - "version": "0.15.0", - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/region-config-resolver": { + "version": "3.654.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.654.0.tgz", + "integrity": "sha512-ydGOrXJxj3x0sJhsXyTmvJVLAE0xxuTWFJihTl67RtaO7VRNtd82I3P3bwoMMaDn5WpmV5mPo8fEUDRlBm3fPg==", + "license": "Apache-2.0", "dependencies": { - "js-yaml": "^3.13.1", - "jsonc-parser": "^2.2.1", - "request-light": "^0.2.4", - "vscode-json-languageservice": "^3.10.0", - "vscode-languageserver": "^5.2.1", - "vscode-languageserver-textdocument": "^1.0.1", - "vscode-languageserver-types": "^3.15.1", - "vscode-nls": "^4.1.2", - "vscode-uri": "^2.1.1", - "yaml-language-server-parser": "0.1.2" + "@aws-sdk/types": "3.654.0", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/types": "^3.4.2", + "@smithy/util-config-provider": "^3.0.0", + "@smithy/util-middleware": "^3.0.6", + "tslib": "^2.6.2" }, - "bin": { - "yaml-language-server": "bin/yaml-language-server" + "engines": { + "node": ">=16.0.0" + } + }, + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/token-providers": { + "version": "3.654.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.654.0.tgz", + "integrity": "sha512-D8GeJYmvbfWkQDtTB4owmIobSMexZel0fOoetwvgCQ/7L8VPph3Q2bn1TRRIXvH7wdt6DcDxA3tKMHPBkT3GlA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.654.0", + "@smithy/property-provider": "^3.1.6", + "@smithy/shared-ini-file-loader": "^3.1.7", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" }, "engines": { - "node": "*" + "node": ">=16.0.0" }, - "optionalDependencies": { - "prettier": "2.0.5" + "peerDependencies": { + "@aws-sdk/client-sso-oidc": "^3.654.0" } }, - "node_modules/yaml-language-server-parser": { - "version": "0.1.2", - "license": "Apache-2.0" - }, - "node_modules/yaml-language-server/node_modules/argparse": { - "version": "1.0.10", - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/types": { + "version": "3.654.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.654.0.tgz", + "integrity": "sha512-VWvbED3SV+10QJIcmU/PKjsKilsTV16d1I7/on4bvD/jo1qGeMXqLDBSen3ks/tuvXZF/mFc7ZW/W2DiLVtO7A==", + "license": "Apache-2.0", "dependencies": { - "sprintf-js": "~1.0.2" + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/yaml-language-server/node_modules/js-yaml": { - "version": "3.14.1", - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/util-endpoints": { + "version": "3.654.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.654.0.tgz", + "integrity": "sha512-i902fcBknHs0Irgdpi62+QMvzxE+bczvILXigYrlHL4+PiEnlMVpni5L5W1qCkNZXf8AaMrSBuR1NZAGp6UOUw==", + "license": "Apache-2.0", "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "@aws-sdk/types": "3.654.0", + "@smithy/types": "^3.4.2", + "@smithy/util-endpoints": "^2.1.2", + "tslib": "^2.6.2" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": ">=16.0.0" } }, - "node_modules/yaml-language-server/node_modules/jsonc-parser": { - "version": "2.3.1", - "license": "MIT" + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/util-user-agent-browser": { + "version": "3.654.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.654.0.tgz", + "integrity": "sha512-ykYAJqvnxLt7wfrqya28wuH3/7NdrwzfiFd7NqEVQf7dXVxL5RPEpD7DxjcyQo3DsHvvdUvGZVaQhozycn1pzA==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.654.0", + "@smithy/types": "^3.4.2", + "bowser": "^2.11.0", + "tslib": "^2.6.2" + } }, - "node_modules/yaml-language-server/node_modules/prettier": { - "version": "2.0.5", - "license": "MIT", - "optional": true, - "bin": { - "prettier": "bin-prettier.js" + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@aws-sdk/util-user-agent-node": { + "version": "3.654.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.654.0.tgz", + "integrity": "sha512-a0ojjdBN6pqv6gB4H/QPPSfhs7mFtlVwnmKCM/QrTaFzN0U810PJ1BST3lBx5sa23I5jWHGaoFY+5q65C3clLQ==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.654.0", + "@smithy/node-config-provider": "^3.1.7", + "@smithy/types": "^3.4.2", + "tslib": "^2.6.2" }, "engines": { - "node": ">=10.13.0" + "node": ">=16.0.0" + }, + "peerDependencies": { + "aws-crt": ">=1.0.0" + }, + "peerDependenciesMeta": { + "aws-crt": { + "optional": true + } } }, - "node_modules/yaml-language-server/node_modules/vscode-json-languageservice": { - "version": "3.11.0", - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/abort-controller": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.1.6.tgz", + "integrity": "sha512-0XuhuHQlEqbNQZp7QxxrFTdVWdwxch4vjxYgfInF91hZFkPxf9QDrdQka0KfxFMPqLNzSw0b95uGTrLliQUavQ==", + "license": "Apache-2.0", "dependencies": { - "jsonc-parser": "^3.0.0", - "vscode-languageserver-textdocument": "^1.0.1", - "vscode-languageserver-types": "3.16.0-next.2", - "vscode-nls": "^5.0.0", - "vscode-uri": "^2.1.2" + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/yaml-language-server/node_modules/vscode-json-languageservice/node_modules/jsonc-parser": { - "version": "3.2.0", - "license": "MIT" - }, - "node_modules/yaml-language-server/node_modules/vscode-json-languageservice/node_modules/vscode-languageserver-types": { - "version": "3.16.0-next.2", - "license": "MIT" - }, - "node_modules/yaml-language-server/node_modules/vscode-json-languageservice/node_modules/vscode-nls": { - "version": "5.2.0", - "license": "MIT" + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/fetch-http-handler": { + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.9.tgz", + "integrity": "sha512-hYNVQOqhFQ6vOpenifFME546f0GfJn2OiQ3M0FDmuUu8V/Uiwy2wej7ZXxFBNqdx0R5DZAqWM1l6VRhGz8oE6A==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/protocol-http": "^4.1.4", + "@smithy/querystring-builder": "^3.0.7", + "@smithy/types": "^3.5.0", + "@smithy/util-base64": "^3.0.0", + "tslib": "^2.6.2" + } }, - "node_modules/yaml-language-server/node_modules/vscode-jsonrpc": { - "version": "4.0.0", - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/is-array-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-3.0.0.tgz", + "integrity": "sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, "engines": { - "node": ">=8.0.0 || >=10.0.0" + "node": ">=16.0.0" } }, - "node_modules/yaml-language-server/node_modules/vscode-languageserver": { - "version": "5.2.1", - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/middleware-endpoint": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.2.1.tgz", + "integrity": "sha512-wWO3xYmFm6WRW8VsEJ5oU6h7aosFXfszlz3Dj176pTij6o21oZnzkCLzShfmRaaCHDkBXWBdO0c4sQAvLFP6zA==", + "license": "Apache-2.0", "dependencies": { - "vscode-languageserver-protocol": "3.14.1", - "vscode-uri": "^1.0.6" + "@smithy/core": "^2.5.1", + "@smithy/middleware-serde": "^3.0.8", + "@smithy/node-config-provider": "^3.1.9", + "@smithy/shared-ini-file-loader": "^3.1.9", + "@smithy/types": "^3.6.0", + "@smithy/url-parser": "^3.0.8", + "@smithy/util-middleware": "^3.0.8", + "tslib": "^2.6.2" }, - "bin": { - "installServerIntoExtension": "bin/installServerIntoExtension" + "engines": { + "node": ">=16.0.0" } }, - "node_modules/yaml-language-server/node_modules/vscode-languageserver-protocol": { - "version": "3.14.1", - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/middleware-retry": { + "version": "3.0.25", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.25.tgz", + "integrity": "sha512-m1F70cPaMBML4HiTgCw5I+jFNtjgz5z5UdGnUbG37vw6kh4UvizFYjqJGHvicfgKMkDL6mXwyPp5mhZg02g5sg==", + "license": "Apache-2.0", "dependencies": { - "vscode-jsonrpc": "^4.0.0", - "vscode-languageserver-types": "3.14.0" + "@smithy/node-config-provider": "^3.1.9", + "@smithy/protocol-http": "^4.1.5", + "@smithy/service-error-classification": "^3.0.8", + "@smithy/smithy-client": "^3.4.2", + "@smithy/types": "^3.6.0", + "@smithy/util-middleware": "^3.0.8", + "@smithy/util-retry": "^3.0.8", + "tslib": "^2.6.2", + "uuid": "^9.0.1" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/yaml-language-server/node_modules/vscode-languageserver-protocol/node_modules/vscode-languageserver-types": { - "version": "3.14.0", - "license": "MIT" - }, - "node_modules/yaml-language-server/node_modules/vscode-languageserver/node_modules/vscode-uri": { - "version": "1.0.8", - "license": "MIT" - }, - "node_modules/yaml-language-server/node_modules/vscode-nls": { - "version": "4.1.2", - "license": "MIT" - }, - "node_modules/yargs": { - "version": "17.7.2", - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/middleware-serde": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.8.tgz", + "integrity": "sha512-Xg2jK9Wc/1g/MBMP/EUn2DLspN8LNt+GMe7cgF+Ty3vl+Zvu+VeZU5nmhveU+H8pxyTsjrAkci8NqY6OuvZnjA==", + "license": "Apache-2.0", "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" }, "engines": { - "node": ">=12" + "node": ">=16.0.0" } }, - "node_modules/yargs-parser": { - "version": "20.2.4", - "dev": true, - "license": "ISC", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/middleware-stack": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.8.tgz", + "integrity": "sha512-d7ZuwvYgp1+3682Nx0MD3D/HtkmZd49N3JUndYWQXfRZrYEnCWYc8BHcNmVsPAp9gKvlurdg/mubE6b/rPS9MA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, "engines": { - "node": ">=10" + "node": ">=16.0.0" } }, - "node_modules/yargs-unparser": { - "version": "2.0.0", - "dev": true, - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-config-provider": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.9.tgz", + "integrity": "sha512-qRHoah49QJ71eemjuS/WhUXB+mpNtwHRWQr77J/m40ewBVVwvo52kYAmb7iuaECgGTTcYxHS4Wmewfwy++ueew==", + "license": "Apache-2.0", "dependencies": { - "camelcase": "^6.0.0", - "decamelize": "^4.0.0", - "flat": "^5.0.2", - "is-plain-obj": "^2.1.0" + "@smithy/property-provider": "^3.1.8", + "@smithy/shared-ini-file-loader": "^3.1.9", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" }, "engines": { - "node": ">=10" + "node": ">=16.0.0" } }, - "node_modules/yargs/node_modules/ansi-regex": { - "version": "5.0.1", - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/node-http-handler": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.2.5.tgz", + "integrity": "sha512-PkOwPNeKdvX/jCpn0A8n9/TyoxjGZB8WVoJmm9YzsnAgggTj4CrjpRHlTQw7dlLZ320n1mY1y+nTRUDViKi/3w==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/abort-controller": "^3.1.6", + "@smithy/protocol-http": "^4.1.5", + "@smithy/querystring-builder": "^3.0.8", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, "engines": { - "node": ">=8" + "node": ">=16.0.0" } }, - "node_modules/yargs/node_modules/cliui": { - "version": "8.0.1", - "license": "ISC", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/property-provider": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.8.tgz", + "integrity": "sha512-ukNUyo6rHmusG64lmkjFeXemwYuKge1BJ8CtpVKmrxQxc6rhUX0vebcptFA9MmrGsnLhwnnqeH83VTU9hwOpjA==", + "license": "Apache-2.0", "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" }, "engines": { - "node": ">=12" + "node": ">=16.0.0" } }, - "node_modules/yargs/node_modules/strip-ansi": { - "version": "6.0.1", - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/protocol-http": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.1.5.tgz", + "integrity": "sha512-hsjtwpIemmCkm3ZV5fd/T0bPIugW1gJXwZ/hpuVubt2hEUApIoUTrf6qIdh9MAWlw0vjMrA1ztJLAwtNaZogvg==", + "license": "Apache-2.0", "dependencies": { - "ansi-regex": "^5.0.1" + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" }, "engines": { - "node": ">=8" + "node": ">=16.0.0" } }, - "node_modules/yargs/node_modules/yargs-parser": { - "version": "21.1.1", - "license": "ISC", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/querystring-builder": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.8.tgz", + "integrity": "sha512-btYxGVqFUARbUrN6VhL9c3dnSviIwBYD9Rz1jHuN1hgh28Fpv2xjU1HeCeDJX68xctz7r4l1PBnFhGg1WBBPuA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "@smithy/util-uri-escape": "^3.0.0", + "tslib": "^2.6.2" + }, "engines": { - "node": ">=12" + "node": ">=16.0.0" } }, - "node_modules/yauzl": { - "version": "2.10.0", - "dev": true, - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/querystring-parser": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.8.tgz", + "integrity": "sha512-BtEk3FG7Ks64GAbt+JnKqwuobJNX8VmFLBsKIwWr1D60T426fGrV2L3YS5siOcUhhp6/Y6yhBw1PSPxA5p7qGg==", + "license": "Apache-2.0", "dependencies": { - "buffer-crc32": "~0.2.3", - "fd-slicer": "~1.1.0" + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" } }, - "node_modules/yazl": { - "version": "2.5.1", - "dev": true, - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/service-error-classification": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-3.0.8.tgz", + "integrity": "sha512-uEC/kCCFto83bz5ZzapcrgGqHOh/0r69sZ2ZuHlgoD5kYgXJEThCoTuw/y1Ub3cE7aaKdznb+jD9xRPIfIwD7g==", + "license": "Apache-2.0", "dependencies": { - "buffer-crc32": "~0.2.3" - } - }, - "node_modules/ylru": { - "version": "1.4.0", - "dev": true, - "license": "MIT", + "@smithy/types": "^3.6.0" + }, "engines": { - "node": ">= 4.0.0" + "node": ">=16.0.0" } }, - "node_modules/yn": { - "version": "3.1.1", - "dev": true, - "license": "MIT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/shared-ini-file-loader": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.9.tgz", + "integrity": "sha512-/+OsJRNtoRbtsX0UpSgWVxFZLsJHo/4sTr+kBg/J78sr7iC+tHeOvOJrS5hCpVQ6sWBbhWLp1UNiuMyZhE6pmA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + }, "engines": { - "node": ">=6" + "node": ">=16.0.0" } }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/smithy-client": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.4.2.tgz", + "integrity": "sha512-dxw1BDxJiY9/zI3cBqfVrInij6ShjpV4fmGHesGZZUiP9OSE/EVfdwdRz0PgvkEvrZHpsj2htRaHJfftE8giBA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/core": "^2.5.1", + "@smithy/middleware-endpoint": "^3.2.1", + "@smithy/middleware-stack": "^3.0.8", + "@smithy/protocol-http": "^4.1.5", + "@smithy/types": "^3.6.0", + "@smithy/util-stream": "^3.2.1", + "tslib": "^2.6.2" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=16.0.0" } }, - "packages/amazonq": { - "name": "amazon-q-vscode", - "version": "1.31.0-SNAPSHOT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/types": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.6.0.tgz", + "integrity": "sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==", "license": "Apache-2.0", "dependencies": { - "aws-core-vscode": "file:../core/" + "tslib": "^2.6.2" }, "engines": { - "npm": "^10.1.0", - "vscode": "^1.83.0" + "node": ">=16.0.0" } }, - "packages/core": { - "name": "aws-core-vscode", - "version": "1.0.0", - "hasInstallScript": true, + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/url-parser": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.8.tgz", + "integrity": "sha512-4FdOhwpTW7jtSFWm7SpfLGKIBC9ZaTKG5nBF0wK24aoQKQyDIKUw3+KFWCQ9maMzrgTJIuOvOnsV2lLGW5XjTg==", "license": "Apache-2.0", "dependencies": { - "@amzn/codewhisperer-streaming": "file:../../src.gen/@amzn/codewhisperer-streaming", - "@aws-sdk/client-cognito-identity": "^3.637.0", - "@aws-sdk/client-lambda": "^3.637.0", - "@aws-sdk/client-sso": "^3.342.0", - "@aws-sdk/client-sso-oidc": "^3.574.0", - "@aws-sdk/credential-provider-ini": "3.46.0", - "@aws-sdk/credential-provider-process": "3.37.0", - "@aws-sdk/credential-provider-sso": "^3.345.0", - "@aws-sdk/property-provider": "3.46.0", - "@aws-sdk/smithy-client": "^3.46.0", - "@aws-sdk/util-arn-parser": "^3.46.0", - "@aws/mynah-ui": "^4.15.11", - "@gerhobbelt/gitignore-parser": "^0.2.0-9", - "@iarna/toml": "^2.2.5", - "@smithy/middleware-retry": "^2.3.1", - "@smithy/protocol-http": "^3.3.0", - "@smithy/service-error-classification": "^2.1.5", - "@smithy/shared-ini-file-loader": "^2.2.8", - "@smithy/util-retry": "^2.2.0", - "@vscode/debugprotocol": "^1.57.0", - "@zip.js/zip.js": "^2.7.41", - "adm-zip": "^0.5.10", - "amazon-states-language-service": "^1.11.0", - "async-lock": "^1.4.0", - "aws-sdk": "^2.1384.0", - "aws-ssm-document-language-service": "^1.0.0", - "bytes": "^3.1.2", - "cross-fetch": "^4.0.0", - "cross-spawn": "^7.0.3", - "fast-json-patch": "^3.1.1", - "glob": "^10.3.10", - "got": "^11.8.5", - "highlight.js": "^11.9.0", - "i18n-ts": "^1.0.5", - "immutable": "^4.3.0", - "jose": "5.4.1", - "js-yaml": "^4.1.0", - "jsonc-parser": "^3.2.0", - "lodash": "^4.17.21", - "markdown-it": "^13.0.2", - "mime-types": "^2.1.32", - "node-fetch": "^2.7.0", - "portfinder": "^1.0.32", - "semver": "^7.5.4", - "stream-buffers": "^3.0.2", - "strip-ansi": "^5.2.0", - "tcp-port-used": "^1.0.1", - "vscode-languageclient": "^6.1.4", - "vscode-languageserver": "^6.1.1", - "vscode-languageserver-protocol": "^3.15.3", - "vscode-languageserver-textdocument": "^1.0.8", - "vue": "^3.3.4", - "web-tree-sitter": "^0.20.8", - "whatwg-url": "^14.0.0", - "winston": "^3.11.0", - "winston-transport": "^4.6.0", - "xml2js": "^0.6.1", - "yaml-cfn": "^0.3.2" + "@smithy/querystring-parser": "^3.0.8", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" + } + }, + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/util-base64": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-base64/-/util-base64-3.0.0.tgz", + "integrity": "sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" }, - "devDependencies": { - "@aws-sdk/types": "^3.13.1", - "@aws/fully-qualified-names": "^2.1.4", - "@cspotcode/source-map-support": "^0.8.1", - "@sinonjs/fake-timers": "^10.0.2", - "@types/adm-zip": "^0.4.34", - "@types/async-lock": "^1.4.0", - "@types/bytes": "^3.1.0", - "@types/circular-dependency-plugin": "^5.0.8", - "@types/cross-spawn": "^6.0.6", - "@types/diff": "^5.0.7", - "@types/glob": "^8.1.0", - "@types/js-yaml": "^4.0.5", - "@types/jsdom": "^21.1.6", - "@types/lodash": "^4.14.180", - "@types/markdown-it": "^13.0.2", - "@types/mime-types": "^2.1.4", - "@types/mocha": "^10.0.6", - "@types/node": "^16.18.95", - "@types/node-fetch": "^2.6.8", - "@types/prismjs": "^1.26.0", - "@types/proper-lockfile": "^4.1.4", - "@types/readline-sync": "^1.4.8", - "@types/semver": "^7.5.0", - "@types/sinon": "^10.0.5", - "@types/sinonjs__fake-timers": "^8.1.2", - "@types/stream-buffers": "^3.0.7", - "@types/tcp-port-used": "^1.0.1", - "@types/uuid": "^9.0.1", - "@types/whatwg-url": "^11.0.4", - "@types/xml2js": "^0.4.11", - "@vue/compiler-sfc": "^3.3.2", - "c8": "^9.0.0", - "circular-dependency-plugin": "^5.2.2", - "css-loader": "^6.10.0", - "diff": "^5.1.0", - "esbuild-loader": "2.20.0", - "file-loader": "^6.2.0", - "jsdom": "^23.0.1", - "json-schema-to-typescript": "^13.1.1", - "marked": "^13.0.1", - "mocha": "^10.1.0", - "mocha-junit-reporter": "^2.2.1", - "mocha-multi-reporters": "^1.5.1", - "readline-sync": "^1.4.9", - "sass": "^1.49.8", - "sass-loader": "^16.0.2", - "sinon": "^14.0.0", - "style-loader": "^3.3.1", - "ts-node": "^10.9.1", - "typescript": "^5.0.4", - "umd-compat-loader": "^2.1.2", - "vue-loader": "^17.2.2", - "vue-style-loader": "^4.1.3", - "webfont": "^11.2.26" + "engines": { + "node": ">=16.0.0" + } + }, + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/util-buffer-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-3.0.0.tgz", + "integrity": "sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/is-array-buffer": "^3.0.0", + "tslib": "^2.6.2" }, "engines": { - "npm": "^10.1.0", - "vscode": "^1.83.0" + "node": ">=16.0.0" } }, - "packages/core/node_modules/@types/node": { - "version": "16.18.95", - "dev": true, - "license": "MIT" + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/util-hex-encoding": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-3.0.0.tgz", + "integrity": "sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } }, - "packages/core/src/web": { - "name": "web-toolkit", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/util-middleware": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.8.tgz", + "integrity": "sha512-p7iYAPaQjoeM+AKABpYWeDdtwQNxasr4aXQEA/OmbOaug9V0odRVDy3Wx4ci8soljE/JXQo+abV0qZpW8NX0yA==", "license": "Apache-2.0", "dependencies": { - "crypto-browserify": "^3.12.0", - "os-browserify": "^0.3.0", - "path-browserify": "^1.0.1", - "process": "^0.11.10", - "stream-browserify": "^3.0.0" + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" }, - "devDependencies": { - "assert": "^2.1.0" + "engines": { + "node": ">=16.0.0" } }, - "packages/toolkit": { - "name": "aws-toolkit-vscode", - "version": "3.30.0-SNAPSHOT", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/util-retry": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-3.0.8.tgz", + "integrity": "sha512-TCEhLnY581YJ+g1x0hapPz13JFqzmh/pMWL2KEFASC51qCfw3+Y47MrTmea4bUE5vsdxQ4F6/KFbUeSz22Q1ow==", "license": "Apache-2.0", "dependencies": { - "aws-core-vscode": "file:../core/" + "@smithy/service-error-classification": "^3.0.8", + "@smithy/types": "^3.6.0", + "tslib": "^2.6.2" }, - "devDependencies": {}, "engines": { - "npm": "^10.1.0", - "vscode": "^1.83.0" + "node": ">=16.0.0" } }, - "plugins/eslint-plugin-aws-toolkits": { - "version": "1.0.0", + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/util-stream": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.2.1.tgz", + "integrity": "sha512-R3ufuzJRxSJbE58K9AEnL/uSZyVdHzud9wLS8tIbXclxKzoe09CRohj2xV8wpx5tj7ZbiJaKYcutMm1eYgz/0A==", "license": "Apache-2.0", - "devDependencies": { - "mocha": "^10.1.0" + "dependencies": { + "@smithy/fetch-http-handler": "^4.0.0", + "@smithy/node-http-handler": "^3.2.5", + "@smithy/types": "^3.6.0", + "@smithy/util-base64": "^3.0.0", + "@smithy/util-buffer-from": "^3.0.0", + "@smithy/util-hex-encoding": "^3.0.0", + "@smithy/util-utf8": "^3.0.0", + "tslib": "^2.6.2" }, "engines": { - "npm": "^10.1.0" + "node": ">=16.0.0" + } + }, + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-4.0.0.tgz", + "integrity": "sha512-MLb1f5tbBO2X6K4lMEKJvxeLooyg7guq48C2zKr4qM7F2Gpkz4dc+hdSgu77pCJ76jVqFBjZczHYAs6dp15N+g==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/protocol-http": "^4.1.5", + "@smithy/querystring-builder": "^3.0.8", + "@smithy/types": "^3.6.0", + "@smithy/util-base64": "^3.0.0", + "tslib": "^2.6.2" + } + }, + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/util-uri-escape": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-3.0.0.tgz", + "integrity": "sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@smithy/util-utf8": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-3.0.0.tgz", + "integrity": "sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/util-buffer-from": "^3.0.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@tsconfig/node16": { + "version": "16.1.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-16.1.3.tgz", + "integrity": "sha512-9nTOUBn+EMKO6rtSZJk+DcqsfgtlERGT9XPJ5PRj/HNENPCBY1yu/JEj5wT6GLtbCLBO2k46SeXDaY0pjMqypw==", + "dev": true, + "license": "MIT" + }, + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/@types/node": { + "version": "16.18.115", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.115.tgz", + "integrity": "sha512-NF5ajYn+dq0tRfswdyp8Df75h7D9z+L8TCIwrXoh46ZLK6KZVXkRhf/luXaZytvm/keUo9vU4m1Bg39St91a5w==", + "dev": true, + "license": "MIT" + }, + "src.gen/@amzn/amazon-q-developer-streaming-client/node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" } }, "src.gen/@amzn/codewhisperer-streaming": { @@ -19297,17 +20580,6 @@ "tslib": "^2.3.1" } }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/@babel/runtime": { - "version": "7.25.6", - "dev": true, - "license": "MIT", - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, "src.gen/@amzn/codewhisperer-streaming/node_modules/@smithy/abort-controller": { "version": "2.2.0", "license": "Apache-2.0", @@ -19822,201 +21094,37 @@ "license": "MIT" }, "src.gen/@amzn/codewhisperer-streaming/node_modules/@types/uuid": { - "version": "8.3.4", - "dev": true, - "license": "MIT" - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/ansi-regex": { - "version": "5.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/balanced-match": { - "version": "1.0.2", - "dev": true, - "license": "MIT" - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/bowser": { - "version": "2.11.0", - "license": "MIT" - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/brace-expansion": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/chalk/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/cliui": { - "version": "7.0.4", - "dev": true, - "license": "ISC", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/concat-map": { - "version": "0.0.1", - "dev": true, - "license": "MIT" - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/concurrently": { - "version": "7.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.1.0", - "date-fns": "^2.16.1", - "lodash": "^4.17.21", - "rxjs": "^6.6.3", - "spawn-command": "^0.0.2-1", - "supports-color": "^8.1.0", - "tree-kill": "^1.2.2", - "yargs": "^16.2.0" - }, - "bin": { - "concurrently": "dist/bin/concurrently.js" - }, - "engines": { - "node": "^12.20.0 || ^14.13.0 || >=16.0.0" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/date-fns": { - "version": "2.30.0", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.21.0" - }, - "engines": { - "node": ">=0.11" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/date-fns" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/downlevel-dts": { - "version": "0.10.1", - "dev": true, - "license": "MIT", - "dependencies": { - "semver": "^7.3.2", - "shelljs": "^0.8.3", - "typescript": "next" - }, - "bin": { - "downlevel-dts": "index.js" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/downlevel-dts/node_modules/typescript": { - "version": "5.7.0-dev.20240926", - "dev": true, - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } + "version": "8.3.4", + "dev": true, + "license": "MIT" }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/emoji-regex": { - "version": "8.0.0", + "src.gen/@amzn/codewhisperer-streaming/node_modules/balanced-match": { + "version": "1.0.2", "dev": true, "license": "MIT" }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/escalade": { - "version": "3.2.0", + "src.gen/@amzn/codewhisperer-streaming/node_modules/bowser": { + "version": "2.11.0", + "license": "MIT" + }, + "src.gen/@amzn/codewhisperer-streaming/node_modules/brace-expansion": { + "version": "2.0.1", "dev": true, "license": "MIT", - "engines": { - "node": ">=6" + "dependencies": { + "balanced-match": "^1.0.0" } }, + "src.gen/@amzn/codewhisperer-streaming/node_modules/concat-map": { + "version": "0.0.1", + "dev": true, + "license": "MIT" + }, "src.gen/@amzn/codewhisperer-streaming/node_modules/fs.realpath": { "version": "1.0.0", "dev": true, "license": "ISC" }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/function-bind": { - "version": "1.1.2", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/get-caller-file": { - "version": "2.0.5", - "dev": true, - "license": "ISC", - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, "src.gen/@amzn/codewhisperer-streaming/node_modules/glob": { "version": "7.2.3", "dev": true, @@ -20056,25 +21164,6 @@ "node": "*" } }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/hasown": { - "version": "2.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, "src.gen/@amzn/codewhisperer-streaming/node_modules/inflight": { "version": "1.0.6", "dev": true, @@ -20089,46 +21178,11 @@ "dev": true, "license": "ISC" }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/interpret": { - "version": "1.4.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.10" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/is-core-module": { - "version": "2.15.1", - "dev": true, - "license": "MIT", - "dependencies": { - "hasown": "^2.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "src.gen/@amzn/codewhisperer-streaming/node_modules/jsonc-parser": { "version": "3.3.1", "dev": true, "license": "MIT" }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/lodash": { - "version": "4.17.21", - "dev": true, - "license": "MIT" - }, "src.gen/@amzn/codewhisperer-streaming/node_modules/lunr": { "version": "2.3.9", "dev": true, @@ -20172,50 +21226,6 @@ "node": ">=0.10.0" } }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/path-parse": { - "version": "1.0.7", - "dev": true, - "license": "MIT" - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/rechoir": { - "version": "0.6.2", - "dev": true, - "dependencies": { - "resolve": "^1.1.6" - }, - "engines": { - "node": ">= 0.10" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/regenerator-runtime": { - "version": "0.14.1", - "dev": true, - "license": "MIT" - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/require-directory": { - "version": "2.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/resolve": { - "version": "1.22.8", - "dev": true, - "license": "MIT", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "src.gen/@amzn/codewhisperer-streaming/node_modules/rimraf": { "version": "3.0.2", "dev": true, @@ -20230,49 +21240,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/rxjs": { - "version": "6.6.7", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "tslib": "^1.9.0" - }, - "engines": { - "npm": ">=2.0.0" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/rxjs/node_modules/tslib": { - "version": "1.14.1", - "dev": true, - "license": "0BSD" - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/semver": { - "version": "7.6.3", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/shelljs": { - "version": "0.8.5", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" - }, - "bin": { - "shjs": "bin/shjs" - }, - "engines": { - "node": ">=4" - } - }, "src.gen/@amzn/codewhisperer-streaming/node_modules/shiki": { "version": "0.11.1", "dev": true, @@ -20283,67 +21250,6 @@ "vscode-textmate": "^6.0.0" } }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/spawn-command": { - "version": "0.0.2", - "dev": true - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/string-width": { - "version": "4.2.3", - "dev": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/strip-ansi": { - "version": "6.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/supports-color": { - "version": "8.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/tree-kill": { - "version": "1.2.2", - "dev": true, - "license": "MIT", - "bin": { - "tree-kill": "cli.js" - } - }, "src.gen/@amzn/codewhisperer-streaming/node_modules/tslib": { "version": "2.7.0", "license": "0BSD" @@ -20397,59 +21303,10 @@ "dev": true, "license": "MIT" }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/wrap-ansi": { - "version": "7.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, "src.gen/@amzn/codewhisperer-streaming/node_modules/wrappy": { "version": "1.0.2", "dev": true, "license": "ISC" - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/y18n": { - "version": "5.0.8", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=10" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/yargs": { - "version": "16.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - }, - "engines": { - "node": ">=10" - } - }, - "src.gen/@amzn/codewhisperer-streaming/node_modules/yargs-parser": { - "version": "20.2.9", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=10" - } } } } diff --git a/packages/amazonq/src/api.ts b/packages/amazonq/src/api.ts index 51b5225079b..03b2a32ea55 100644 --- a/packages/amazonq/src/api.ts +++ b/packages/amazonq/src/api.ts @@ -3,6 +3,7 @@ * SPDX-License-Identifier: Apache-2.0 */ +import { SendMessageCommandOutput, SendMessageRequest } from '@amzn/amazon-q-developer-streaming-client' import { GenerateAssistantResponseCommandOutput, GenerateAssistantResponseRequest } from '@amzn/codewhisperer-streaming' import { AuthUtil } from 'aws-core-vscode/codewhisperer' import { ChatSession } from 'aws-core-vscode/codewhispererChat' @@ -12,7 +13,11 @@ export default { chatApi: { async chat(request: GenerateAssistantResponseRequest): Promise { const chatSession = new ChatSession() - return chatSession.chat(request) + return chatSession.chatSso(request) + }, + async chatIam(request: SendMessageRequest): Promise { + const chatSession = new ChatSession() + return chatSession.chatIam(request) }, }, authApi: { diff --git a/packages/core/src/amazonq/extApi.ts b/packages/core/src/amazonq/extApi.ts index 8475fc6ba56..874ee018526 100644 --- a/packages/core/src/amazonq/extApi.ts +++ b/packages/core/src/amazonq/extApi.ts @@ -5,6 +5,7 @@ import vscode from 'vscode' import { VSCODE_EXTENSION_ID } from '../shared/utilities' +import { SendMessageCommandOutput, SendMessageRequest } from '@amzn/amazon-q-developer-streaming-client' import { GenerateAssistantResponseCommandOutput, GenerateAssistantResponseRequest } from '@amzn/codewhisperer-streaming' import { FeatureAuthState } from '../codewhisperer/util/authUtil' import { ToolkitError } from '../shared' @@ -16,6 +17,7 @@ import { ToolkitError } from '../shared' export interface api { chatApi: { chat(request: GenerateAssistantResponseRequest): Promise + chatIam(request: SendMessageRequest): Promise } authApi: { reauthIfNeeded(): Promise diff --git a/packages/core/src/codewhisperer/util/authUtil.ts b/packages/core/src/codewhisperer/util/authUtil.ts index c4d2c0109b8..d7eb8166efd 100644 --- a/packages/core/src/codewhisperer/util/authUtil.ts +++ b/packages/core/src/codewhisperer/util/authUtil.ts @@ -8,7 +8,7 @@ import * as localizedText from '../../shared/localizedText' import { Auth } from '../../auth/auth' import { ToolkitError, isNetworkError, tryRun } from '../../shared/errors' import { getSecondaryAuth, setScopes } from '../../auth/secondaryAuth' -import { isCloud9, isSageMaker } from '../../shared/extensionUtilities' +import { isAmazonQ, isCloud9, isSageMaker } from '../../shared/extensionUtilities' import { AmazonQPromptSettings } from '../../shared/settings' import { scopesCodeWhispererCore, @@ -60,7 +60,7 @@ export const isValidCodeWhispererCoreConnection = (conn?: Connection): conn is C } if (isSageMaker()) { - return isIamConnection(conn) + return isIamConnection(conn) || (isSsoConnection(conn) && hasScopes(conn, codeWhispererCoreScopes)) } return ( @@ -70,6 +70,10 @@ export const isValidCodeWhispererCoreConnection = (conn?: Connection): conn is C } /** Superset that includes all of CodeWhisperer + Amazon Q */ export const isValidAmazonQConnection = (conn?: Connection): conn is Connection => { + if (isSageMaker() && isAmazonQ()) { + return isIamConnection(conn) || (isSsoConnection(conn) && hasScopes(conn, amazonQScopes)) + } + return ( (isSsoConnection(conn) || isBuilderIdConnection(conn)) && isValidCodeWhispererCoreConnection(conn) && @@ -442,9 +446,6 @@ export class AuthUtil { if (conn === undefined) { return buildFeatureAuthState(AuthStates.disconnected) } - if (!isSsoConnection(conn)) { - throw new ToolkitError(`Connection "${conn.id}" is not a valid type: ${conn.type}`) - } // default to expired to indicate reauth is needed if unmodified const state: FeatureAuthState = buildFeatureAuthState(AuthStates.expired) @@ -453,7 +454,7 @@ export class AuthUtil { return state } - if (isBuilderIdConnection(conn) || isIdcSsoConnection(conn)) { + if (isBuilderIdConnection(conn) || isIdcSsoConnection(conn) || isSageMaker()) { if (isValidCodeWhispererCoreConnection(conn)) { state[Features.codewhispererCore] = AuthStates.connected } diff --git a/packages/core/src/codewhispererChat/clients/chat/v0/chat.ts b/packages/core/src/codewhispererChat/clients/chat/v0/chat.ts index 00326ddd955..fc164ebb95c 100644 --- a/packages/core/src/codewhispererChat/clients/chat/v0/chat.ts +++ b/packages/core/src/codewhispererChat/clients/chat/v0/chat.ts @@ -3,10 +3,12 @@ * SPDX-License-Identifier: Apache-2.0 */ +import { SendMessageCommandOutput, SendMessageRequest } from '@amzn/amazon-q-developer-streaming-client' import { GenerateAssistantResponseCommandOutput, GenerateAssistantResponseRequest } from '@amzn/codewhisperer-streaming' import * as vscode from 'vscode' import { ToolkitError } from '../../../../shared/errors' import { createCodeWhispererChatStreamingClient } from '../../../../shared/clients/codewhispererChatClient' +import { createQDeveloperStreamingClient } from '../../../../shared/clients/qDeveloperChatClient' export class ChatSession { private sessionId?: string @@ -28,8 +30,28 @@ export class ChatSession { public setSessionID(id?: string) { this.sessionId = id } + async chatIam(chatRequest: SendMessageRequest): Promise { + const client = await createQDeveloperStreamingClient() - async chat(chatRequest: GenerateAssistantResponseRequest): Promise { + const response = await client.sendMessage(chatRequest) + if (!response.sendMessageResponse) { + throw new ToolkitError( + `Empty chat response. Session id: ${this.sessionId} Request ID: ${response.$metadata.requestId}` + ) + } + + const responseStream = response.sendMessageResponse + for await (const event of responseStream) { + if ('messageMetadataEvent' in event) { + this.sessionId = event.messageMetadataEvent?.conversationId + break + } + } + + return response + } + + async chatSso(chatRequest: GenerateAssistantResponseRequest): Promise { const client = await createCodeWhispererChatStreamingClient() if (this.sessionId !== undefined && chatRequest.conversationState !== undefined) { diff --git a/packages/core/src/codewhispererChat/controllers/chat/chatRequest/converter.ts b/packages/core/src/codewhispererChat/controllers/chat/chatRequest/converter.ts index 5d884b24d1a..9ff56523379 100644 --- a/packages/core/src/codewhispererChat/controllers/chat/chatRequest/converter.ts +++ b/packages/core/src/codewhispererChat/controllers/chat/chatRequest/converter.ts @@ -4,9 +4,9 @@ */ import { + ConversationState, CursorState, DocumentSymbol, - GenerateAssistantResponseRequest, RelevantTextDocument, SymbolType, TextDocument, @@ -37,7 +37,7 @@ export const supportedLanguagesList = [ const filePathSizeLimit = 4_000 const customerMessageSizeLimit = 4_000 -export function triggerPayloadToChatRequest(triggerPayload: TriggerPayload): GenerateAssistantResponseRequest { +export function triggerPayloadToChatRequest(triggerPayload: TriggerPayload): { conversationState: ConversationState } { let document: TextDocument | undefined = undefined let cursorState: CursorState | undefined = undefined diff --git a/packages/core/src/codewhispererChat/controllers/chat/controller.ts b/packages/core/src/codewhispererChat/controllers/chat/controller.ts index 98d09ca3c7c..b98a5e7b91f 100644 --- a/packages/core/src/codewhispererChat/controllers/chat/controller.ts +++ b/packages/core/src/codewhispererChat/controllers/chat/controller.ts @@ -5,7 +5,7 @@ import { Event as VSCodeEvent, Uri } from 'vscode' import { EditorContextExtractor } from '../../editor/context/extractor' import { ChatSessionStorage } from '../../storages/chatSession' -import { Messenger, StaticTextResponseType } from './messenger/messenger' +import { Messenger, MessengerResponseType, StaticTextResponseType } from './messenger/messenger' import { PromptMessage, ChatTriggerType, @@ -34,10 +34,8 @@ import { EditorContentController } from '../../../amazonq/commons/controllers/co import { EditorContextCommand } from '../../commands/registerCommands' import { PromptsGenerator } from './prompts/promptsGenerator' import { TriggerEventsStorage } from '../../storages/triggerEvents' -import { - CodeWhispererStreamingServiceException, - GenerateAssistantResponseCommandOutput, -} from '@amzn/codewhisperer-streaming' +import { SendMessageRequest } from '@amzn/amazon-q-developer-streaming-client' +import { CodeWhispererStreamingServiceException, __MetadataBearer } from '@amzn/codewhisperer-streaming' import { UserIntentRecognizer } from './userIntent/userIntentRecognizer' import { CWCTelemetryHelper, recordTelemetryChatRunCommand } from './telemetryHelper' import { CodeWhispererTracker } from '../../../codewhisperer/tracker/codewhispererTracker' @@ -54,6 +52,7 @@ import { getHttpStatusCode, AwsClientResponseError } from '../../../shared/error import { uiEventRecorder } from '../../../amazonq/util/eventRecorder' import { globals } from '../../../shared' import { telemetry } from '../../../shared/telemetry' +import { isSsoConnection } from '../../../auth/connection' export interface ChatControllerMessagePublishers { readonly processPromptChatMessage: MessagePublisher @@ -656,12 +655,24 @@ export class ChatController { request )}` ) - let response: GenerateAssistantResponseCommandOutput | undefined = undefined + let response: MessengerResponseType | undefined = undefined session.createNewTokenSource() try { this.messenger.sendInitalStream(tabID, triggerID) this.telemetryHelper.setConversationStreamStartTime(tabID) - response = await session.chat(request) + if (isSsoConnection(AuthUtil.instance.conn)) { + const { $metadata, generateAssistantResponseResponse } = await session.chatSso(request) + response = { + $metadata: $metadata, + message: generateAssistantResponseResponse, + } + } else { + const { $metadata, sendMessageResponse } = await session.chatIam(request as SendMessageRequest) + response = { + $metadata: $metadata, + message: sendMessageResponse, + } + } this.telemetryHelper.recordEnterFocusConversation(triggerEvent.tabID) this.telemetryHelper.recordStartConversation(triggerEvent, triggerPayload) diff --git a/packages/core/src/codewhispererChat/controllers/chat/messenger/messenger.ts b/packages/core/src/codewhispererChat/controllers/chat/messenger/messenger.ts index c011d0e5c51..b431020867a 100644 --- a/packages/core/src/codewhispererChat/controllers/chat/messenger/messenger.ts +++ b/packages/core/src/codewhispererChat/controllers/chat/messenger/messenger.ts @@ -13,10 +13,12 @@ import { QuickActionMessage, } from '../../../view/connector/connector' import { EditorContextCommandType } from '../../../commands/registerCommands' +import { ChatResponseStream as qdevChatResponseStream } from '@amzn/amazon-q-developer-streaming-client' import { + ChatResponseStream as cwChatResponseStream, CodeWhispererStreamingServiceException, - GenerateAssistantResponseCommandOutput, SupplementaryWebLink, + __MetadataBearer, } from '@amzn/codewhisperer-streaming' import { ChatMessage, ErrorMessage, FollowUp, Suggestion } from '../../../view/connector/connector' import { ChatSession } from '../../../clients/chat/v0/chat' @@ -37,6 +39,10 @@ import { extractAuthFollowUp } from '../../../../amazonq/util/authUtils' export type StaticTextResponseType = 'quick-action-help' | 'onboarding-help' | 'transform' | 'help' +export type MessengerResponseType = __MetadataBearer & { + message?: AsyncIterable +} + export class Messenger { public constructor( private readonly dispatcher: AppToWebViewMessageDispatcher, @@ -103,7 +109,7 @@ export class Messenger { } public async sendAIResponse( - response: GenerateAssistantResponseCommandOutput, + response: MessengerResponseType, session: ChatSession, tabID: string, triggerID: string, @@ -116,7 +122,7 @@ export class Messenger { let relatedSuggestions: Suggestion[] = [] let codeBlockLanguage: string = 'plaintext' - if (response.generateAssistantResponseResponse === undefined) { + if (response.message === undefined) { throw new ToolkitError( `Empty response from CodeWhisperer Streaming service. Request ID: ${response.$metadata.requestId}` ) @@ -133,7 +139,7 @@ export class Messenger { const eventCounts = new Map() waitUntil( async () => { - for await (const chatEvent of response.generateAssistantResponseResponse!) { + for await (const chatEvent of response.message!) { for (const key of keys(chatEvent)) { if ((chatEvent[key] as any) !== undefined) { eventCounts.set(key, (eventCounts.get(key) ?? 0) + 1) diff --git a/packages/core/src/shared/clients/qDeveloperChatClient.ts b/packages/core/src/shared/clients/qDeveloperChatClient.ts new file mode 100644 index 00000000000..ee98a78e356 --- /dev/null +++ b/packages/core/src/shared/clients/qDeveloperChatClient.ts @@ -0,0 +1,25 @@ +/*! + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0 + */ +import { QDeveloperStreaming } from '@amzn/amazon-q-developer-streaming-client' +import { getCodewhispererConfig } from '../../codewhisperer/client/codewhisperer' +import { getUserAgent } from '../telemetry/util' +import { ConfiguredRetryStrategy } from '@smithy/util-retry' +import { AuthUtil } from '../../codewhisperer/util/authUtil' + +// Create a client for featureDev streaming based off of aws sdk v3 +export async function createQDeveloperStreamingClient(): Promise { + const cwsprConfig = getCodewhispererConfig() + const credentials = await AuthUtil.instance.getCredentials() + const streamingClient = new QDeveloperStreaming({ + region: cwsprConfig.region, + endpoint: cwsprConfig.endpoint, + credentials: credentials, + customUserAgent: getUserAgent(), + // SETTING max attempts to 0 FOR BETA. RE-ENABLE FOR RE-INVENT + // Implement exponential back off starting with a base of 500ms (500 + attempt^10) + retryStrategy: new ConfiguredRetryStrategy(0, (attempt: number) => 500 + attempt ** 10), + }) + return streamingClient +} diff --git a/packages/toolkit/package.json b/packages/toolkit/package.json index ce9f4deebee..22218abe267 100644 --- a/packages/toolkit/package.json +++ b/packages/toolkit/package.json @@ -709,7 +709,7 @@ { "id": "aws.amazonq.codewhisperer", "name": "%AWS.amazonq.codewhisperer.title%", - "when": "!isCloud9 && !aws.isSageMaker && !aws.toolkit.amazonq.dismissed && !aws.explorer.showAuthView" + "when": "!isCloud9 && !aws.toolkit.amazonq.dismissed && !aws.explorer.showAuthView" }, { "id": "aws.explorer", diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.cjs.tsbuildinfo b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.cjs.tsbuildinfo index 8d24673c707..00767843f3d 100644 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.cjs.tsbuildinfo +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.cjs.tsbuildinfo @@ -1 +1 @@ -{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.es2021.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.es2021.promise.d.ts","./node_modules/typescript/lib/lib.es2021.string.d.ts","./node_modules/typescript/lib/lib.es2021.weakref.d.ts","./node_modules/typescript/lib/lib.es2021.intl.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/client/emitwarningifunsupportedversion.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts","./node_modules/@smithy/types/dist-types/abort-handler.d.ts","./node_modules/@smithy/types/dist-types/abort.d.ts","./node_modules/@smithy/types/dist-types/auth/auth.d.ts","./node_modules/@smithy/types/dist-types/auth/httpapikeyauth.d.ts","./node_modules/@smithy/types/dist-types/identity/identity.d.ts","./node_modules/@smithy/types/dist-types/endpoint.d.ts","./node_modules/@smithy/types/dist-types/logger.d.ts","./node_modules/@smithy/types/dist-types/uri.d.ts","./node_modules/@smithy/types/dist-types/http.d.ts","./node_modules/@smithy/types/dist-types/response.d.ts","./node_modules/@smithy/types/dist-types/util.d.ts","./node_modules/@smithy/types/dist-types/middleware.d.ts","./node_modules/@smithy/types/dist-types/auth/httpsigner.d.ts","./node_modules/@smithy/types/dist-types/auth/identityproviderconfig.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthscheme.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/types/dist-types/auth/index.d.ts","./node_modules/@types/node/ts5.6/globals.typedarray.d.ts","./node_modules/@types/node/ts5.6/buffer.buffer.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/dom-events.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/ts5.6/index.d.ts","./node_modules/@smithy/types/dist-types/transform/exact.d.ts","./node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts","./node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/crypto.d.ts","./node_modules/@smithy/types/dist-types/checksum.d.ts","./node_modules/@smithy/types/dist-types/command.d.ts","./node_modules/@smithy/types/dist-types/client.d.ts","./node_modules/@smithy/types/dist-types/connection/config.d.ts","./node_modules/@smithy/types/dist-types/transfer.d.ts","./node_modules/@smithy/types/dist-types/connection/manager.d.ts","./node_modules/@smithy/types/dist-types/connection/pool.d.ts","./node_modules/@smithy/types/dist-types/connection/index.d.ts","./node_modules/@smithy/types/dist-types/eventstream.d.ts","./node_modules/@smithy/types/dist-types/encode.d.ts","./node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","./node_modules/@smithy/types/dist-types/endpoints/endpointruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/errorruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/treeruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/rulesetobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/index.d.ts","./node_modules/@smithy/types/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultclientconfiguration.d.ts","./node_modules/@smithy/types/dist-types/shapes.d.ts","./node_modules/@smithy/types/dist-types/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/types/dist-types/extensions/index.d.ts","./node_modules/@smithy/types/dist-types/http/httphandlerinitialization.d.ts","./node_modules/@smithy/types/dist-types/identity/apikeyidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/index.d.ts","./node_modules/@smithy/types/dist-types/pagination.d.ts","./node_modules/@smithy/types/dist-types/profile.d.ts","./node_modules/@smithy/types/dist-types/serde.d.ts","./node_modules/@smithy/types/dist-types/signature.d.ts","./node_modules/@smithy/types/dist-types/stream.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","./node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","./node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","./node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","./node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts","./node_modules/@smithy/types/dist-types/waiter.d.ts","./node_modules/@smithy/types/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromenv.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/gethomedir.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getprofilename.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfilepath.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfromfile.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadsharedconfigfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadssosessiondata.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/parseknownfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromsharedconfigfiles.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromstatic.d.ts","./node_modules/@smithy/node-config-provider/dist-types/configloader.d.ts","./node_modules/@smithy/node-config-provider/dist-types/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4aconfig.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4signer.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4asigner.d.ts","./node_modules/@smithy/signature-v4/dist-types/signaturev4.d.ts","./node_modules/@smithy/signature-v4/dist-types/getcanonicalheaders.d.ts","./node_modules/@smithy/signature-v4/dist-types/getcanonicalquery.d.ts","./node_modules/@smithy/signature-v4/dist-types/getpayloadhash.d.ts","./node_modules/@smithy/signature-v4/dist-types/moveheaderstoquery.d.ts","./node_modules/@smithy/signature-v4/dist-types/preparerequest.d.ts","./node_modules/@smithy/signature-v4/dist-types/credentialderivation.d.ts","./node_modules/@smithy/signature-v4/dist-types/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4config.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/coercing-serializers.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsexpectunion.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parsejsonbody.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/parsexmlbody.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts","./node_modules/@aws-sdk/core/dist-types/index.d.ts","./dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/smithy-client/dist-types/client.d.ts","./node_modules/@smithy/util-stream/dist-types/blob/uint8arrayblobadapter.d.ts","./node_modules/@smithy/util-stream/dist-types/getawschunkedencodingstream.d.ts","./node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts","./node_modules/@smithy/util-stream/dist-types/splitstream.d.ts","./node_modules/@smithy/util-stream/dist-types/headstream.d.ts","./node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts","./node_modules/@smithy/util-stream/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/resolveendpointconfig.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getendpointfrominstructions.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toendpointv1.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/endpointmiddleware.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/getendpointplugin.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/command.d.ts","./node_modules/@smithy/smithy-client/dist-types/constants.d.ts","./node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts","./node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts","./node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts","./node_modules/@smithy/smithy-client/dist-types/emitwarningifunsupportedversion.d.ts","./node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts","./node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts","./node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts","./node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/nooplogger.d.ts","./node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts","./node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/quote-header.d.ts","./node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts","./node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-every.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-header.d.ts","./node_modules/@smithy/smithy-client/dist-types/index.d.ts","./dist-types/models/qdeveloperstreamingserviceexception.d.ts","./dist-types/models/models_0.d.ts","./dist-types/commands/generatecodefromcommandscommand.d.ts","./dist-types/commands/sendmessagecommand.d.ts","./dist-types/auth/httpauthextensionconfiguration.d.ts","./node_modules/@aws-sdk/types/dist-types/abort.d.ts","./node_modules/@aws-sdk/types/dist-types/auth.d.ts","./node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","./node_modules/@aws-sdk/types/dist-types/checksum.d.ts","./node_modules/@aws-sdk/types/dist-types/client.d.ts","./node_modules/@aws-sdk/types/dist-types/command.d.ts","./node_modules/@aws-sdk/types/dist-types/connection.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/identity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/anonymousidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/loginidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","./node_modules/@aws-sdk/types/dist-types/util.d.ts","./node_modules/@aws-sdk/types/dist-types/credentials.d.ts","./node_modules/@aws-sdk/types/dist-types/crypto.d.ts","./node_modules/@aws-sdk/types/dist-types/dns.d.ts","./node_modules/@aws-sdk/types/dist-types/encode.d.ts","./node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","./node_modules/@aws-sdk/types/dist-types/eventstream.d.ts","./node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/types/dist-types/http.d.ts","./node_modules/@aws-sdk/types/dist-types/logger.d.ts","./node_modules/@aws-sdk/types/dist-types/middleware.d.ts","./node_modules/@aws-sdk/types/dist-types/pagination.d.ts","./node_modules/@aws-sdk/types/dist-types/profile.d.ts","./node_modules/@aws-sdk/types/dist-types/request.d.ts","./node_modules/@aws-sdk/types/dist-types/response.d.ts","./node_modules/@aws-sdk/types/dist-types/retry.d.ts","./node_modules/@aws-sdk/types/dist-types/serde.d.ts","./node_modules/@aws-sdk/types/dist-types/shapes.d.ts","./node_modules/@aws-sdk/types/dist-types/signature.d.ts","./node_modules/@aws-sdk/types/dist-types/stream.d.ts","./node_modules/@aws-sdk/types/dist-types/token.d.ts","./node_modules/@aws-sdk/types/dist-types/transfer.d.ts","./node_modules/@aws-sdk/types/dist-types/uri.d.ts","./node_modules/@aws-sdk/types/dist-types/waiter.d.ts","./node_modules/@aws-sdk/types/dist-types/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/httprequest.d.ts","./node_modules/@smithy/protocol-http/dist-types/httpresponse.d.ts","./node_modules/@smithy/protocol-http/dist-types/httphandler.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/httpextensionconfiguration.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/field.d.ts","./node_modules/@smithy/protocol-http/dist-types/fields.d.ts","./node_modules/@smithy/protocol-http/dist-types/isvalidhostname.d.ts","./node_modules/@smithy/protocol-http/dist-types/types.d.ts","./node_modules/@smithy/protocol-http/dist-types/index.d.ts","./dist-types/extensionconfiguration.d.ts","./dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusedualstackendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusefipsendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolveendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolvecustomendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvarianttag.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvariant.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/partitionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/regionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/getregioninfo.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/eventstreamserdeconfig.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts","./node_modules/@smithy/util-retry/dist-types/types.d.ts","./node_modules/@smithy/util-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/configuredretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/defaultratelimiter.d.ts","./node_modules/@smithy/util-retry/dist-types/config.d.ts","./node_modules/@smithy/util-retry/dist-types/constants.d.ts","./node_modules/@smithy/util-retry/dist-types/index.d.ts","./node_modules/@smithy/middleware-retry/dist-types/types.d.ts","./node_modules/@smithy/middleware-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts","./node_modules/@smithy/middleware-retry/dist-types/delaydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/omitretryheadersmiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrymiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/index.d.ts","./dist-types/qdeveloperstreamingclient.d.ts","./dist-types/qdeveloperstreaming.d.ts","./dist-types/endpoints.d.ts","./dist-types/commands/index.d.ts","./dist-types/models/index.d.ts","./dist-types/index.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts","./dist-types/runtimeconfig.browser.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts","./node_modules/@smithy/node-http-handler/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/fromhttp/fromhttptypes.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/fromhttp/fromhttp.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromwebtoken.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromtokenfile.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveassumerolecredentials.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/fromini.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-process/dist-types/fromprocess.d.ts","./node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/ssoserviceexception.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/getrolecredentialscommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/listaccountrolescommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/listaccountscommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/logoutcommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointparameters.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/auth/httpauthextensionconfiguration.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/extensionconfiguration.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/ssoclient.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/sso.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/interfaces.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/listaccountrolespaginator.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/listaccountspaginator.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/loadsso.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/fromsso.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/isssoprofile.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/validatessoprofile.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/remoteprovider/remoteproviderinit.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/fromcontainermetadata.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/frominstancemetadata.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/remoteprovider/httprequest.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/utils/getinstancemetadataendpoint.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/config/endpoint.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-node/dist-types/defaultprovider.d.ts","./node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts","./dist-types/runtimeconfig.d.ts","./dist-types/runtimeconfig.native.d.ts","./dist-types/runtimeconfig.shared.d.ts","./dist-types/protocols/aws_json1_0.d.ts","./node_modules/tslib/tslib.d.ts","./node_modules/@smithy/util-middleware/dist-types/getsmithycontext.d.ts","./node_modules/@smithy/util-middleware/dist-types/normalizeprovider.d.ts","./node_modules/@smithy/util-middleware/dist-types/index.d.ts","./src/auth/httpauthschemeprovider.ts","./src/models/qdeveloperstreamingserviceexception.ts","./src/models/models_0.ts","./node_modules/@smithy/middleware-serde/dist-types/deserializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serdeplugin.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/index.d.ts","./src/commands/sendmessagecommand.ts","./node_modules/@types/uuid/index.d.ts","./src/protocols/aws_json1_0.ts","./src/commands/generatecodefromcommandscommand.ts","./package.json","./node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts","./node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts","./node_modules/@smithy/hash-node/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/index.d.ts","./src/endpoints.ts","./node_modules/@smithy/url-parser/dist-types/index.d.ts","./node_modules/@smithy/util-base64/dist-types/frombase64.d.ts","./node_modules/@smithy/util-base64/dist-types/tobase64.d.ts","./node_modules/@smithy/util-base64/dist-types/index.d.ts","./node_modules/@smithy/util-utf8/dist-types/fromutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/touint8array.d.ts","./node_modules/@smithy/util-utf8/dist-types/toutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/index.d.ts","./src/runtimeconfig.shared.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts","./src/runtimeconfig.ts","./src/auth/httpauthextensionconfiguration.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts","./src/extensionconfiguration.ts","./src/runtimeextensions.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/loggermiddleware.d.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpauthschememiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/gethttpauthschemeendpointrulesetplugin.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/gethttpauthschemeplugin.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/httpsigningmiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/gethttpsigningmiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/defaultidentityproviderconfig.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/httpapikeyauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/httpbearerauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/noauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/index.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeidentityprovider.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts","./node_modules/@smithy/core/dist-types/getsmithycontext.d.ts","./node_modules/@smithy/core/dist-types/normalizeprovider.d.ts","./node_modules/@smithy/core/dist-types/protocols/requestbuilder.d.ts","./node_modules/@smithy/core/dist-types/pagination/createpaginator.d.ts","./node_modules/@smithy/core/dist-types/index.d.ts","./node_modules/@smithy/middleware-content-length/dist-types/index.d.ts","./src/qdeveloperstreamingclient.ts","./src/qdeveloperstreaming.ts","./src/commands/index.ts","./src/models/index.ts","./src/index.ts","./node_modules/@aws-crypto/sha256-browser/build/main/crossplatformsha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/main/webcryptosha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/invalidfunction.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/invalidprovider.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts","./src/runtimeconfig.browser.ts","./node_modules/@aws-crypto/sha256-js/build/main/jssha256.d.ts","./node_modules/@aws-crypto/sha256-js/build/main/index.d.ts","./src/runtimeconfig.native.ts","../../../node_modules/@types/adm-zip/index.d.ts","../../../node_modules/@types/readdir-glob/index.d.ts","../../../node_modules/@types/archiver/index.d.ts","../../../node_modules/@types/async-lock/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/bytes/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/circular-dependency-plugin/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/cross-spawn/index.d.ts","../../../node_modules/@types/diff/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/glob/node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/parse5/dist/cjs/common/html.d.ts","../../../node_modules/parse5/dist/cjs/common/token.d.ts","../../../node_modules/parse5/dist/cjs/common/error-codes.d.ts","../../../node_modules/parse5/dist/cjs/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/dist/cjs/tokenizer/index.d.ts","../../../node_modules/parse5/dist/cjs/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/cjs/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/cjs/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/cjs/parser/index.d.ts","../../../node_modules/parse5/dist/cjs/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/cjs/serializer/index.d.ts","../../../node_modules/parse5/dist/cjs/common/foreign-content.d.ts","../../../node_modules/parse5/dist/cjs/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/linkify-it/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdurl/encode.d.ts","../../../node_modules/@types/mdurl/decode.d.ts","../../../node_modules/@types/mdurl/parse.d.ts","../../../node_modules/@types/mdurl/format.d.ts","../../../node_modules/@types/mdurl/index.d.ts","../../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../../node_modules/@types/markdown-it/lib/token.d.ts","../../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../../node_modules/@types/markdown-it/lib/index.d.ts","../../../node_modules/@types/markdown-it/index.d.ts","../../../node_modules/@types/mime-types/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/prismjs/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/proper-lockfile/index.d.ts","../../../node_modules/@types/readline-sync/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sinon/node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/stream-buffers/index.d.ts","../../../node_modules/@types/tcp-port-used/index.d.ts","../../../node_modules/@types/vscode/index.d.ts","../../../node_modules/@types/vscode-webview/index.d.ts","../../../node_modules/@types/webidl-conversions/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/whatwg-url/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/xml2js/lib/processors.d.ts","../../../node_modules/@types/xml2js/index.d.ts","../../../node_modules/@smithy/core/node_modules/@smithy/protocol-http/dist-types/index.d.ts","../../../node_modules/@smithy/signature-v4/dist-types/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","impliedFormat":1},{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true,"impliedFormat":1},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"02ec1ffcc0823cb9c9ba420c619d3af2c726e3a674b66a91941c07a3e7f65dba","impliedFormat":1},{"version":"38f6da5b6f318c33e18dd7c983cab3fe52f510c9a2573948fb13f012e01b1ba6","impliedFormat":1},{"version":"b40885a4e39fb67eb251fb009bf990f3571ccf7279dccad26c2261b4e5c8ebcd","impliedFormat":1},{"version":"2d0e63718a9ab15554cca1ef458a269ff938aea2ad379990a018a49e27aadf40","impliedFormat":1},{"version":"530e5c7e4f74267b7800f1702cf0c576282296a960acbdb2960389b2b1d0875b","impliedFormat":1},{"version":"1c483cc60a58a0d4c9a068bdaa8d95933263e6017fbea33c9f99790cf870f0a8","impliedFormat":1},{"version":"07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","impliedFormat":1},{"version":"5d3e656baf210f702e4006949a640730d6aef8d6afc3de264877e0ff76335f39","impliedFormat":1},{"version":"4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","impliedFormat":1},{"version":"c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","impliedFormat":1},{"version":"570efec02480a95fa35e7c6dc3c00c59309d221e0698cefbc9e27a3c13d69c96","impliedFormat":1},{"version":"396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","impliedFormat":1},{"version":"b7b881ced4ed4dee13d6e0ccdb2296f66663ba6b1419767271090b3ff3478bb9","impliedFormat":1},{"version":"06289b9873760aac77aed4035ea6c60b1e0879b8afe47a4530bc8522b9b804b1","impliedFormat":1},{"version":"63c36aa73242aa745fae813c40585111ead225394b0a0ba985c2683baa6b0ef9","impliedFormat":1},{"version":"3e7ffc7dd797e5d44d387d0892bc288480493e73dcab9832812907d1389e4a98","impliedFormat":1},{"version":"db011ec9589fd51995cbd0765673838e38e6485a6559163cc53dcf508b480909","impliedFormat":1},{"version":"e1a4253f0cca15c14516f52a2ad36c3520b140b5dfb3b3880a368cd75d45d6d9","impliedFormat":1},{"version":"159af954f2633a12fdee68605009e7e5b150dbeb6d70c46672fd41059c154d53","impliedFormat":1},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true,"impliedFormat":1},{"version":"894dae169f8193e3f07c3fec14149a60592d1f13720907ffdf7b0c05cfb62c38","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e0d35597ff6c5142082e60814fa39c8a2077a58d8a6a262e619afb5f855f6ba","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"228318442187dee1f3b18047e6281d12d59f7b492d6243db4eb720d53e3c03f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"f51b4042a3ac86f1f707500a9768f88d0b0c1fc3f3e45a73333283dea720cdc6","impliedFormat":1},{"version":"a29bc8aa8cc100d0c09370c03508f1245853efe017bb98699d4c690868371fc7","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f95830ca11e2c7e82235b73dc149e68a0632b41e671724d12adc83a6750746d","impliedFormat":1},{"version":"7aa011cda7cf0b9e87c85d128b2eeac9930bda215b0fee265d8bf2cec039fb5f","impliedFormat":1},{"version":"92ec1aeca4e94bdab04083daa6039f807c0fce8f09bc42e8b24bf49fa5cdbbff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"25bfb291668b70290dd646f6e99e681ded0481bc0610d241a229cda07d7af425","impliedFormat":1},{"version":"6c39d4dbdb372b364442854e42d8c473e2ec67badb226745af17ed5ac41ce6f5","impliedFormat":1},{"version":"7693b90b3075deaccafd5efb467bf9f2b747a3075be888652ef73e64396d8628","impliedFormat":1},{"version":"bd01a987f0fcf2344a405e542ee681e420651eaff1222a5a6e0c02fda52343bc","impliedFormat":1},{"version":"693e50962e90a3548f41bff2c22676e3964212a836022d82e49eca0b20320a38","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"300b0c12998391154d7b9115a85554e91632a3d3e1b66038e98f2b9cb3c1061d","impliedFormat":1},{"version":"8d680d5d1a77028ca1708118b8c941edd90a6329f9dc0315ffc3a06b4820e937","affectsGlobalScope":true,"impliedFormat":1},{"version":"8bc550ee45988b123605e2cbba4dc8d3b4153c3d06f59074c7cda5bc3b2f2fd8","impliedFormat":1},{"version":"5293d799856f47259146ccf0be9a1cc0a4a5343696182d7206ed25ea67d67920","impliedFormat":1},{"version":"d7cdb379f1a8febb8ba181b2bba4c89b7f9189c68ce00292253d9f827eb0b2d3","impliedFormat":1},{"version":"fab49059d6c2026bdb2e53e4e5cde1a39da44e61daff1867c8b3b10b507bfe17","impliedFormat":1},{"version":"5a551275f85bcc4003e543a1951a5b2f682cfba9b2922f65ae0df40ab71724a5","impliedFormat":1},{"version":"22d1a3163b9a961dbe78b0aedbd7bcbc071ce1f31efb76eb013b0aee230fef0e","impliedFormat":1},{"version":"c31695696ade4514cfcbb22799997b690d3dca7fb72beab68fb2e73b6ef450dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"d99ad56d57f2c96daaf4475a8b64344b24dedafdb8f3c32d43552bcc72279a75","impliedFormat":1},{"version":"a101ef17aece908c1029a1bd3f97132794dcff21b4ca0b997d9a633f962c46aa","impliedFormat":1},{"version":"511575e18249b64b90d8f884fdb8a383c767d1a7efccd9d66a4e125a4dc5c462","impliedFormat":1},{"version":"6d8001f2c3b86c4f1de1d45ecb3f87f287ed7313d6999f8c8318cec4f50e6323","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d09f4b48899d342b5d6cd846f95f969a401933b0dcd375a8a7e45832328bb86","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c3d1222e6e3d8c35a4293d7a54d4142ebb8f7f70ec4111b8136df07fdc66169","impliedFormat":1},{"version":"70173c475c6e76ccebc37412b02b2e26f62bf45fc1534c3ebe6d7fa60fb88819","impliedFormat":1},{"version":"1c05d80325e7cb8ad9fe6f4f8cd1798ec87607fe523865b27cab9fc5b816f067","impliedFormat":1},{"version":"863bc4e31de6c75423bb02da16190d582b0a69b8964b61d45920e5b2cb3832dd","impliedFormat":1},{"version":"3c92f365d57fd49656e4907bf1d950d4a4060dde7db35effe2f6348e0e800b86","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"6e191fea1db6e9e4fa828259cf489e820ec9170effff57fb081a2f3295db4722","impliedFormat":1},{"version":"aed943465fbce1efe49ee16b5ea409050f15cd8eaf116f6fadb64ef0772e7d95","impliedFormat":1},{"version":"0435070b07e646b406b1c9b8b1b1878ea6917c32abc47e6435ec26d71212d513","impliedFormat":1},{"version":"f71188f97c9f7d309798ec02a56dd3bf50a4e4d079b3480f275ac13719953898","impliedFormat":1},{"version":"c4454589a0aa92c10d684c8c9584574bc404d1db556d72196cd31f8f7651af1a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b17790866e140a630fa8891d7105c728a1bd60f4e35822e4b345af166a4a728c","impliedFormat":1},{"version":"c50c75f4360f6fc06c4be29dafe28210e15c50cd6b04ad19c4808fa504efb51a","impliedFormat":1},{"version":"d4a1f5f7ee89b2afffd3c74282f8ee65b24266c92b7d40398c12a27054ed745c","impliedFormat":1},{"version":"900b5a9802192bc77eba35a5b87ce770df7b867a6d61772c554058c9ed635386","impliedFormat":1},{"version":"65278b3e3cb8e3f0b7bc712e86858ba7695501e76a84eedb730cc15b85d92b56","affectsGlobalScope":true,"impliedFormat":1},{"version":"f43fcf89d75f13d0908a77cd3fa32b9fd28c915deded9b2778b08f2e242d07a7","affectsGlobalScope":true,"impliedFormat":1},{"version":"9b6fc34aca8b0411b96ba35b2315017236a47709a1a98d5e16aed3b84037b9e8","impliedFormat":1},{"version":"aebf613f7831125038942eba891005fd25fa5cadcc3e3d13af4768dc7549161f","impliedFormat":1},{"version":"0faee6b555890a1cb106e2adc5d3ffd89545b1da894d474e9d436596d654998f","impliedFormat":1},{"version":"247e5c34784d185bc81442e8b1a371a36c4a5307a766a3725454c0a191b5cfad","impliedFormat":1},{"version":"1c382a6446d63340be549a616ff5142a91653cea45d6d137e25b929130a4f29a","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"20eb6689443f55ebd33372566b0afad619f1ba48fec4ffb4ab0c119e4fc52eea","impliedFormat":1},{"version":"a1b36a1f91a54daf2e89e12b834fa41fb7338bc044d1f08a80817efc93c99ee5","impliedFormat":1},{"version":"8bb4a5b632dd5a868f3271750895cb61b0e20cff82032d87e89288faee8dd6e2","impliedFormat":1},{"version":"0c1aabfd9fb1818afb2e798f91f669edafce59cd7e3423d25b1cfccfaaf2c403","impliedFormat":1},{"version":"017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","impliedFormat":1},{"version":"ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","impliedFormat":1},{"version":"9ae7df67c30dc5f52b7b21e8bb36fd9ff05e7ed10e514e2d9ed879b4547c4cd3","impliedFormat":1},{"version":"fd6a17c2d015cb2963d62db7566a43818424e8f32eb821fa9b8b142d4ab12664","impliedFormat":1},{"version":"4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","impliedFormat":1},{"version":"e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","impliedFormat":1},{"version":"d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","impliedFormat":1},{"version":"d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","impliedFormat":1},{"version":"5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","impliedFormat":1},{"version":"27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","impliedFormat":1},{"version":"eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","impliedFormat":1},{"version":"52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","impliedFormat":1},{"version":"5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","impliedFormat":1},{"version":"fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","impliedFormat":1},{"version":"d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","impliedFormat":1},{"version":"fc9bdd9b3d8fb59c913cb3b8dea0d79b38dfe9331ef07e1c6dc6bf363f061ad6","impliedFormat":1},{"version":"e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","impliedFormat":1},{"version":"0c3c4ce6a1884610c99306719f59174d81808c69393c30119f9c2aef0449a2cb","impliedFormat":1},{"version":"219a25474e58a8161b242776856ec5f6960839b63e74809445e51cadbfc18096","impliedFormat":1},{"version":"5a0d1534e9493ae44b08b3055172da38370e2afd2bc3d4bea11f7be78344036f","impliedFormat":1},{"version":"6309a45fc3c03d3c4d56228e995d51974f53009a842374695b34f3607877e5a3","impliedFormat":1},{"version":"bef94eba81ae2c09059c0d9abdb1ae1b7090314f70550f3c8cd5d7ead4a4f212","impliedFormat":1},{"version":"48b787ad458be9b524fa5fdfef34f68798074132d4b8cfe6a6fe9c2bf334c532","impliedFormat":1},{"version":"37280465f8f9b2ea21d490979952b18b7f4d1f0d8fab2d627618fb2cfa1828e3","impliedFormat":1},{"version":"c12f3ff5e221c1d3e4eaf47a372b538d8e79bd9a15266c2b049a597da0b86924","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f3f85dc43cb93c5a797f1ff0fa948d0e17843a443ae11a20cc032ccdf1b9997","impliedFormat":1},{"version":"581843e855d92557cbe9dfe242de4e53badae5e9096ca593b50788f7c89c37f2","impliedFormat":1},{"version":"869010bc679df668137cb3b78a3cb8196e97acf285208a57f6156ceac894a2f7","impliedFormat":1},{"version":"bcae62618c23047e36d373f0feac5b13f09689e4cd08e788af13271dbe73a139","impliedFormat":1},{"version":"29a99d2e57b3e08a997cbc2397bdb251441a545306a74b95ffedc5f03d9bc6b7","impliedFormat":1},{"version":"5ae003688265a1547bbcb344bf0e26cb994149ac2c032756718e9039302dfac8","impliedFormat":1},{"version":"09e811cc1088d9ea3a7ddd7290f6a13767f56c85daf8c3374a06a45a08d55647","impliedFormat":1},{"version":"a86053981218db1594bd4839bde0fb998e342ecf04967622495434a8f52a4041","impliedFormat":1},{"version":"5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","impliedFormat":1},{"version":"7b270dc53f35dd0b44bfa619ad4d351fffd512e14053c3688323ed007eda3f6d","impliedFormat":1},{"version":"6d4e928f232ade7221cffc6e4332ec935baa176415c9bf5d12111bb883a247d2","impliedFormat":1},{"version":"e86ad029224d4f2af3e188be8b5e9badf8c7083247572069bac7bd2193131fc7","impliedFormat":1},{"version":"057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","impliedFormat":1},{"version":"d94034601782f828aa556791279c86c37f09f7034a2ab873eefe136f77a6046b","impliedFormat":1},{"version":"105ae3dd61531488194f412386ba8c2b786f1389ac3415098cc47c712800da29","impliedFormat":1},{"version":"45851fbb6595233ecf6be213f74f00690c752782387796c66ea186750f831d06","impliedFormat":1},{"version":"4ee905052d0879e667444234d1462540107789cb1c80bd26e328574e4f3e4724","impliedFormat":1},{"version":"151659e152d71986b8943b9943cd7fbe27a65874655081602de7ea24a0f66e9b","impliedFormat":1},{"version":"3448e2fa1ae3a52d50e1e82e50b6ae5b8bd911004a8824b0c6b26c8cdcd15fec","impliedFormat":1},{"version":"c0c0b22cefd1896b92d805556fcabda18720d24981b8cb74e08ffea1f73f96c2","impliedFormat":1},{"version":"b97e6411a3ee83e6f77760f0400d117313a980d05ec89f1e1a7502229e36d060","impliedFormat":1},{"version":"270418f8a6639be745d14bfd085e62685f24eaa6d6482aa9803bae8b8b93919a","impliedFormat":1},{"version":"4cb33d05ff168c1ca836d6d438f93040972af43fc09774876c4add2ad96d125f","impliedFormat":1},{"version":"902d2b66388607197ec48798c94a6ffc657fe1cfbee15e49b6b3052de0e5b8fa","impliedFormat":1},{"version":"38104b9a37d0b9dc54be36ae43b1a32f9cfae34742743bfd7104cf1f39661225","impliedFormat":1},{"version":"47ff32ca9ab8474e89615b4bbe5f2264c2940fc12b86c4dc0a99659479517a6b","impliedFormat":1},{"version":"f892f85b4838f6a2ff1438d240dcf23a872d090794967c7f817a82ea8da1ad8e","impliedFormat":1},{"version":"cb498c53a9d35ac1cf9a3515f3835d48b4626a612cf7540c5bfb99542c9ab1a5","impliedFormat":1},{"version":"b86e64c48044bb73c6de7aa2cdf9295b2c104221e6a68b408225b283d1bcfda2","impliedFormat":1},{"version":"16173f5b3e68a373e7dfe6d00948549facc9947c9dbde813f1efe3a0f236ff6a","impliedFormat":1},{"version":"f457fc1b7583e1215393db13b95a186593660aad29706515ab7479869bc585e0","impliedFormat":1},{"version":"a11288edc8161f664148ea7d56101517e380335f5fa1a94408db86efce025bba","impliedFormat":1},{"version":"0e2a6b2eeadafbc7a27909527af46705d47e93c652d656f09cc3ef460774291b","impliedFormat":1},{"version":"d6d561bf4309a197e4b241fb0eacebf14c400661c4352676cd3c88c17e5ab8a2","impliedFormat":1},{"version":"ed012a19811c4010cb7d8920378f6dd50f22e1cf2842ecb44a157030667b165e","impliedFormat":1},{"version":"4085ac780790cc5787e375bd6c7dc149610665514e1d3d8fb65aec29efb691c9","impliedFormat":1},{"version":"7634eca84d60522b68ac679813fd9247a4260f7412890e924c7779758f8d6391","impliedFormat":1},{"version":"b4ff74f0589487410168be50e3231caf687c5e1302266709742382e8d004fe1e","impliedFormat":1},{"version":"406f227eebfe8be216d7a4b215ed09198b0c2f6599f2273b69ee5b75824c5435","impliedFormat":1},{"version":"e7cd1d6f8afb317dca8c5b6a60d5cd55aacf8d9ed8ae39f22e3104ed0c479552","impliedFormat":1},{"version":"75c9a36ada92da43627b5cf1142a6fe20f50ad00abacb90204b74b19775521c2","impliedFormat":1},{"version":"8a90f97fdb10d83c6842a699c3df474246755f4fbf3ee2d35e69d6599fe9092c","impliedFormat":1},{"version":"88aacf6e2493633490812c70595b517c8e4299f054d28a51687b10f0968276c3","impliedFormat":1},{"version":"f6cae2c0acda884c4b9dec4063d062252cf0625a04ebf711a84d7de576427c3e","impliedFormat":1},{"version":"946739ab9acb2fccd0b2e5a0d1ac4dfe69b9279f33a26e7f0a7a7ab24ee343fc","impliedFormat":1},{"version":"d037b771e89ef6dd81c71de92cc644d68b1b5d1ce25dbce9c2cfe407dd0b5796","impliedFormat":1},{"version":"25091d25f74760301f1e094456e2e6af52ceb6ef1ece48910463528e499992d8","impliedFormat":1},{"version":"853d02f4f46ca9700fefd0d45062f5b82c9335ba2224ca4d7bd34d6ae4fc4a7f","impliedFormat":1},{"version":"ab679e25dcb5d085ca42c33ffc8e2fc48411f81ad3108a3aa81eca79c104ef95","impliedFormat":1},{"version":"b901209745b3cef4b803e42731c40f5c2c2c7101bbd5f481c0fd1c43f9f440f3","impliedFormat":1},{"version":"cf6dc8f18bc5ee063dc1a37bccd3031dc0769f11622399018c375aacfcbda7c9","impliedFormat":1},{"version":"8ca2d01f5f3d4d4067aadea230570afa4c91e24e485fbe2e9d53ead3b33f80d0","impliedFormat":1},{"version":"9230a7b03ae3cce93e94a2cc844da1e5414d2be7505ecc82402094a132cfbbda","impliedFormat":1},{"version":"27350a2872f30b97e947f52ccf15654239eda7c9ff35135a1aa82cc37642fdeb","impliedFormat":1},{"version":"ed3e176bc769725ebc1d93f1d6890fc3d977b9155ae5d03be96ec2d49b303370","impliedFormat":1},{"version":"7933769d84f5ae16546aef06537ca578f1c8d7cca0708452a00613050ac1f265","impliedFormat":1},{"version":"d405963c5f69955e95c30ef121c7a3309f214f21ef09dceb5d7ac69557cbe0fa","impliedFormat":1},{"version":"29c7276f64f0de86eb981ddd4e5a8e7f832fc8d4e712c7e8e1beab6af8cc4147","impliedFormat":1},{"version":"6f11170f0056f1681101d9a1045af3c0d2ea489f14d1a0d4c0b2cb7860cfb8f7","impliedFormat":1},{"version":"fdd84224998f5f4d97017b829548f1fac4ac803025e16c27d4fc7f3426c6261e","impliedFormat":1},{"version":"1591996e71f1aab2e8726d7d04d59a3e8f5162578bee747e883932cfc0b57b2a","impliedFormat":1},{"version":"f8ce447bbda4f75da74cecd866cc1ff9bdde62189ac9d8dc14a16c48b3d702fa","impliedFormat":1},{"version":"da3f7f511c344fb56275cd954156a4d736c9f414f9b84bb0ee229ef583e38074","impliedFormat":1},{"version":"c7d30b164562b7ce99fcb53ab78f937cc845e003f6089d648351331921379994","impliedFormat":1},{"version":"fe2d1251f167d801a27f0dfb4e2c14f4f08bf2214d9784a1b8c310fdfdcdaaea","impliedFormat":1},{"version":"2a1182578228dc1faad14627859042d59ea5ab7e3ac69cb2a3453329aaaa3b83","impliedFormat":1},{"version":"dfa99386b9a1c1803eb20df3f6d3adc9e44effc84fa7c2ab6537ed1cb5cc8cfb","impliedFormat":1},{"version":"79b0d5635af72fb87a2a4b62334b0ab996ff7a1a14cfdb895702e74051917718","impliedFormat":1},{"version":"5f00b052713bfe8e9405df03a1bbe406006b30ec6b0c2ce57d207e70b48cf4e9","impliedFormat":1},{"version":"7abcae770f21794b5ffbc3186483c3dbcf8b0c8e37d3ef3ed6277ece5c5dd4be","impliedFormat":1},{"version":"3e642f39da9ad0a4cd16ccbd7f363b6b5ad5fa16a5c6d44753f98fc1e3be9d96","impliedFormat":1},{"version":"7f5a6eac3d3d334e2f2eba41f659e9618c06361958762869055e22219f341554","impliedFormat":1},{"version":"6f996f44113b76a9960d3fad280f4f671115c5e971356d1dbb4d1b000af8b3b3","impliedFormat":1},{"version":"67f2cd6e208e68fdfa366967d1949575df6ccf90c104fc9747b3f1bdb69ad55a","impliedFormat":1},{"version":"f99ab9dffe6281c9b6df9ae9d8584d18eabf2107572bbd8fa5c83c8afe531af8","impliedFormat":1},{"version":"4fc9939c86a7d80ab6a361264e5666336d37e080a00d831d9358ad83575267da","impliedFormat":1},{"version":"f4ba385eedea4d7be1feeeac05aaa05d6741d931251a85ab48e0610271d001ce","impliedFormat":1},{"version":"f5405fb679a467cb979f8744940b22b7bc3a0bcbe648c3910d98de3188d42a78","impliedFormat":1},{"version":"68969a0efd9030866f60c027aedbd600f66ea09e1c9290853cc24c2dcc92000f","impliedFormat":1},{"version":"fc79932b9aa710f025b89bf8d8329d99080286e5e079a7d5a529236e9f5dd69e","impliedFormat":1},{"version":"6646d9075e3e0eedb02c9d03bffef54c8bbeb601d27eed46f143aba435bac37d","impliedFormat":1},{"version":"0dec72b4c5c4bb149750fef4fc26bdae8f410de941ee766c953f5ac77381d690","impliedFormat":1},{"version":"8f2644578a3273f43fd700803b89b842d2cd09c1fba2421db45737357e50f5b1","impliedFormat":1},{"version":"639f94fe145a72ce520d3d7b9b3b6c9049624d90cbf85cff46fb47fb28d1d8fe","impliedFormat":1},{"version":"8327a51d574987a2b0f61ea40df4adddf959f67bc48c303d4b33d47ba3be114a","impliedFormat":1},{"version":"00e1da5fce4ae9975f7b3ca994dcb188cf4c21aee48643e1d6d4b44e72df21ee","impliedFormat":1},{"version":"991fd5ebf9f30ffa17cae6faeae6a838d3d91bdcdd419bce358dc99b8e5b0ad0","impliedFormat":1},{"version":"4d250e905299144850c6f8e74dad1ee892d847643bacf637e89adcce013f0700","impliedFormat":1},{"version":"51b4ab145645785c8ced29238192f870dbb98f1968a7c7ef2580cd40663b2940","impliedFormat":1},{"version":"589713fefe7282fd008a2672c5fbacc4a94f31138bae6a03db2c7b5453dc8788","impliedFormat":1},{"version":"26f7f55345682291a8280c99bb672e386722961063c890c77120aaca462ac2f9","impliedFormat":1},{"version":"786691c952fe3feac79aca8f0e7e580d95c19afc8a4c6f8765e99fb756d8d9d7","impliedFormat":1},{"version":"747d6d391f97a46f6880e10c8e4858bbd6568070a0f9af0ec74c26475e2c885f","impliedFormat":1},{"version":"354f47aa8d895d523ebc47aea561b5fedb44590ac2f0eae94b56839a0f08056a","impliedFormat":1},{"version":"62b753ed351fba7e0f6b57103529ce90f2e11b949b8fc69c39464fe958535c25","impliedFormat":1},{"version":"514321f6616d04f0c879ac9f06374ed9cb8eac63e57147ac954e8c0e7440ce00","impliedFormat":1},{"version":"ce7b928daedd974205daf616493c6eb358069ed740ed9552c5f4e66da19fd4bf","impliedFormat":1},{"version":"b1aa0340d4248aba8e36e7d246b223e3ae89fb27f167f9e3c7b14838bb41b13f","impliedFormat":1},{"version":"620290e7cd91726a13ce06daf8437b37f4bf782c755674a41d881c2217a35830","impliedFormat":1},{"version":"e06d050ebf5ab7ae4506d7de03d369e5f2f7c96df0e4ba6aec7a6b2450c039d0","impliedFormat":1},{"version":"88c0699b282331433af615deb79fcd6f8e815e93bd40dd7200c1e3cdf052e5a0","impliedFormat":1},{"version":"cf8659543b380c9cf02c88e231eaad406f323f6b1d3eb877d4cad9ff0408974f","impliedFormat":1},{"version":"a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","impliedFormat":1},{"version":"84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","impliedFormat":1},{"version":"415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","impliedFormat":1},{"version":"901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","impliedFormat":1},{"version":"ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","impliedFormat":1},{"version":"b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","impliedFormat":1},{"version":"ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","impliedFormat":1},{"version":"068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","impliedFormat":1},{"version":"3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","impliedFormat":1},{"version":"fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","impliedFormat":1},{"version":"d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","impliedFormat":1},{"version":"3f6af667357384c1f582ef006906ba36668dd87abe832f4497fffb315c160be9","impliedFormat":1},{"version":"363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","impliedFormat":1},{"version":"c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","impliedFormat":1},{"version":"2f1a8ca9846d9ac5481544b5b53811efe2c44bba9195af584136fb34371d5e23","impliedFormat":1},{"version":"1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","impliedFormat":1},{"version":"ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","impliedFormat":1},{"version":"d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","impliedFormat":1},{"version":"4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","impliedFormat":1},{"version":"7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","impliedFormat":1},{"version":"ea2de1a0ec4c9b8828154a971bfe38c47df2f5e9ec511f1a66adce665b9f04b0","impliedFormat":1},{"version":"c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","impliedFormat":1},{"version":"4ef0a17c5bcae3d68227136b562a4d54a4db18cfa058354e52a9ac167d275bbb","impliedFormat":1},{"version":"a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","impliedFormat":1},{"version":"64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","impliedFormat":1},{"version":"c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","impliedFormat":1},{"version":"b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","impliedFormat":1},{"version":"434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","impliedFormat":1},{"version":"c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7","impliedFormat":1},{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","impliedFormat":1},{"version":"81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","impliedFormat":1},{"version":"4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","impliedFormat":1},{"version":"f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","impliedFormat":1},{"version":"1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","impliedFormat":1},{"version":"ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","impliedFormat":1},{"version":"ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","impliedFormat":1},{"version":"f7a8f4bc1e8e786c6115970b8f3ed4797be48108de00b3552bf590706d3a5e8a","impliedFormat":1},{"version":"ce096c727f1ae221bd35b46dd3e050bf3909674e6e9ec1518b3a5aa89ab2a497","impliedFormat":1},{"version":"1a8e6a4f31a5196144f35d0434e16369881d828c849d6a1c9290b6bde8807449","impliedFormat":1},{"version":"42a9ac86df0fa58634ea8a5f7f07b9b9c3243d82e306fb22d8a41639935a6c87","impliedFormat":1},{"version":"5766c26941ae00aa889335bcccc1ecb28271b774be92aede801354c9797074bb","impliedFormat":1},{"version":"3a19286bcc9303c9352c03d68bb4b63cecbf5c9b7848465847bb6c9ceafa1484","impliedFormat":1},{"version":"c573fef34c2e5cc5269fd9c95fe73a1eb9db17142f5d8f36ffe4a686378b8660","impliedFormat":1},{"version":"d97e30dd93590392fed422f2b27325d10ab007d034faaaf61e28e9ddc9d3825b","impliedFormat":1},{"version":"d1f8a829c5e90734bb47a1d1941b8819aeee6e81a2a772c3c0f70b30e3693fa9","impliedFormat":1},{"version":"be1dfacee25a14d79724ba21f1fde67f966b46e2128c68fed2e48c6e1e9822c5","impliedFormat":1},{"version":"19b3d0c212d241c237f79009b4cd0051e54971747fd89dc70a74f874d1192534","impliedFormat":1},{"version":"441751fb3deefe98952ba09b3c5a583c66aa2c9a1abe5e9dba6064a55f5a7678","impliedFormat":1},{"version":"c211816fd9af3b1541c812b859c769958d5e5b85b81da832eb2bcdf98342b054","impliedFormat":1},{"version":"7639642137f8329ef4a19410ce8d3e46910a76294df263f46b428fd61c79d033","impliedFormat":1},{"version":"8e69efd9afdfcd34d85adb6d8e71a5e13fea2a33c7019dd624cc7696772183a0","impliedFormat":1},{"version":"a7ebfe3e2c8f4fea5dac7ffbf6d00acee63c530de24d57cdeeed05530285ca26","impliedFormat":1},{"version":"82b4045609dc0918319f835de4f6cb6a931fd729602292921c443a732a6bb811","impliedFormat":1},{"version":"0fd70ca1eaef1e2dd6f48f16886df4838664821d992fd8076d07fc15e83c8498","impliedFormat":1},{"version":"ba30e6d2f1d20c707566cf485167331a10c539802a79040ced055b62a7aae53e","impliedFormat":1},{"version":"642eae3e9ec5997883f86dd7346d818f07d40fb83cc3530f0e52e232ffb4e631","impliedFormat":1},{"version":"29a6df727893a86807f4dc02116c31d9e6097139579ed6e8029b14c526cba027","impliedFormat":1},{"version":"537a2b61594512c5e75fad7e29d25c23922e27e5a1506eb4fce74fe858472a6e","impliedFormat":1},{"version":"311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","impliedFormat":1},{"version":"7c07838da165fd43759a54d2d490461315e977f9f37c046e0e357623c657fc42","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"115c8691bd8fac390f6f6eef5b356543d716da7cffa4c2f70f288d56c5b06aeb","impliedFormat":1},{"version":"e91516e66f9fbf39c978a4092c16ffda3bb0b32158fca6def75aae9fab358153","impliedFormat":1},{"version":"abd4563a6a7668fa6f8f5e5a425a0900b80fc2309fec5186e2cae67f3ce92663","impliedFormat":1},{"version":"cb48f3011e72efef9d5a5b312f4a956f699b8d423bf9f2772724cdded496bd50","impliedFormat":1},{"version":"9aed07904079877252e6c0aedf1d2cf1935ed91d4abc16f726c76b61ea453919","impliedFormat":1},{"version":"6621af294bd4af8f3f9dd9bd99bd83ed8d2facd16faa6690a5b02d305abd98ab","impliedFormat":1},{"version":"5eada4495ab95470990b51f467c78d47aecfccc42365df4b1e7e88a2952af1a3","impliedFormat":1},{"version":"5fc0957ee8e15821ddb30a76e74e7984953fc35611a57fd703e624bade5836b9","impliedFormat":1},{"version":"40e9c2028b34c6c1e3281818d062f7008705254ee992d9857d051c603391e0f4","impliedFormat":1},{"version":"4720efe0341867600b139bca9a8fa7858b56b3a13a4a665bd98c77052ca64ea4","impliedFormat":1},{"version":"566fc645642572ec1ae3981e3c0a7dc976636976bd7a1d09740c23e8521496e5","impliedFormat":1},{"version":"66182e2432a30468eb5e2225063c391262b6a6732928bbc8ee794642b041dd87","impliedFormat":1},{"version":"11792ab82e35e82f93690040fd634689cad71e98ab56e0e31c3758662fc85736","impliedFormat":1},{"version":"3957b1244f49991b89f12cc45942c24f9c5927dc72677b105bb896d316f0454e","impliedFormat":1},{"version":"6c53c05df974ece61aca769df915345dc6d5b7649a01dc715b7da1809ce00a77","impliedFormat":1},{"version":"18c505381728b8cc6ea6986728403c1969f0d81216ed04163a867780af89f839","impliedFormat":1},{"version":"d121a48de03095d7dd5cd09d39e1a1c4892b520dad4c1d9c339c5d5008cfb536","impliedFormat":1},{"version":"f6d55e607f55be35a3c481b7685461a9acc1e27b893839218eb9313f7e85278c","impliedFormat":1},{"version":"b394ea95c82281d184ea83e8511bd1a43f78d6908eb34b536446d3eb08f9d47f","impliedFormat":1},{"version":"41edf4071b119fdf28b46a3c28c0845f2598bb8b196e7e4c9e01415403fdaea5","impliedFormat":1},{"version":"2bdf3bcf1a9771a288a783d1e8ee5d1d3126c11ddde26ae44864ab432192a6f6","impliedFormat":1},{"version":"603bafdacee4c8850ef5820f8642a817a3f0db6f76dda0474bcf3d17c2e15398","impliedFormat":1},{"version":"a10c79ab97c8a4f6074203094dba87bc736ca574ec480be1df6ec2c82d774573","impliedFormat":1},{"version":"801f049a9e74e941e8ca8add60492aaf4ab717a166248d355ded5753d80f9a85","impliedFormat":1},{"version":"70bba0a9c9c2ad7a042e134a840c4d8462bf0ad98e41c50ca52725ae47265eb9","impliedFormat":1},{"version":"f4dc28fbbba727722cb1fd82f51a7b9540fbe410ed04ddf35cab191d6aa2ba10","impliedFormat":1},{"version":"1db9e7d40d7ffade5bd15ce84936997bb9d159d37668c9d8955993753bbdfb2c","impliedFormat":1},{"version":"047f85c429fbee7423e723a6232e527d69b65c3399880ed8ff0842e29c497c20","impliedFormat":1},{"version":"9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","impliedFormat":1},{"version":"526ee815290e47e75fd2105f83de0916689cc532a19c81620672342f6478095f","impliedFormat":1},{"version":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"8bfba49493f92a72cdffe5b9947c3f572c9301f4e95a471027d0022e8d9b5d97","impliedFormat":1},{"version":"fa90f0cf69cd9296a6c0c43419540ba8e734ab9bf98eff6576bb5f04ddfea175","impliedFormat":1},{"version":"b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","impliedFormat":1},{"version":"68adf02128cad117e068f53ab334cbc730bcfeb7d658d8ce8118da6770b7e622","impliedFormat":1},{"version":"54f0dd6c08d5c8c6aea538ccba54b95909d194f4e2204312b3974eebe6204a8b","impliedFormat":1},{"version":"2d10d8e7f884bbbbc1dc980464cd36346f2b2aa21bb2c049d21b381053bafbbf","impliedFormat":1},{"version":"7f1567b9dfb571a80556155a5bff1c946b23e74443466689bed24095604b3a9b","impliedFormat":1},{"version":"b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","impliedFormat":1},{"version":"51796c3726bf734b061fac41b479a660f9afccf50b8b493835e204723d23a84d","impliedFormat":1},{"version":"c2b694d903303007a430acf66980f3b503dbd4e50cf6c183af0daf39c8d79ee8","impliedFormat":1},{"version":"a945cfe6ca774e53111b0cfb6b767261352dc6e15d27641b61e5c634b4a729c3","impliedFormat":1},{"version":"3c10545e61e9428bebdc65fed8d11e09d203afb4745eea11b98be7b218a2aeb1","impliedFormat":1},{"version":"fde1236eef449f111d0eb306a5245dab335974dd0ccac39223ea200907c27a8b","impliedFormat":1},{"version":"c1a5f70e04c94e202ef756018ddacc22e752ee3e5eb401170a2dca2773877277","impliedFormat":1},{"version":"f4bedf06294a6a4d28179ee9689f2d8e00ad4d9806a99b234c2a58f1c9147acb","impliedFormat":1},{"version":"91d68d8136434dbe13c34fe6ef3fde75791f9be128ab6b4312d1699e1fcd9859","impliedFormat":1},{"version":"260c24d1b8fdb9284ffd93112fb4141e94970be4ff2ca23ca60b361dab39eee2","impliedFormat":1},{"version":"cb5327ac944956c162522b4388a74a4b3151e2ba3fd5b057ad13a452b2c30189","impliedFormat":1},{"version":"7bac1d3d9a1f0290c91e88426dab334d9d31a712647df5fb5666ad7acb3d53bd","impliedFormat":1},{"version":"41d461c745d59a6e125dbb554b814bc99a9f072325ffd3c8407809378995fdd4","impliedFormat":1},{"version":"33589aa637b92a02e6138fcaab28454fcf35a5e7d4cf91343c83342715f9b55a","impliedFormat":1},{"version":"ac13ba680450baa70ac9e9a2f02b50ae43437fd23d76bf9215a6a5b429455010","impliedFormat":1},{"version":"8b325ba54f25c33b38550f76a31afb82db9d7f4b1891276eeae5aba2f2d3bc30","impliedFormat":1},{"version":"eca427f98f87824d62688c987be1b6fb5dbd2c21a71fbb42702c7e365d0309bf","impliedFormat":1},{"version":"93c931504d284fb193a7cce460e4c2d30d4ed247e246e1f214a8064e95198ce8","impliedFormat":1},{"version":"ce972ae1cfa1741dfc7d5b8caeaabfb696023f45a80c0d71fe55494604cc78c8","impliedFormat":1},{"version":"6360869b4f8e9b942293072189349e2c1a44cc3cd6757e83cc62619e6abb01ad","impliedFormat":1},{"version":"f3ac122e178b71c8d2e74f85d0d0ead1ab592efd4ca989db632bb2f5ecbea484","impliedFormat":1},{"version":"2db9f3f74d99d1d437ca92760f510c76e9024d372506266d8443745eb77eff4a","impliedFormat":1},{"version":"e6bd80f63b2290bcea0bcd06002a19739050f188a8accebec706685cda627755","impliedFormat":1},{"version":"6717f2b01e15e479a01d76258afb0d5f8130fd5d6759a04cd60fde5587549efa","impliedFormat":1},{"version":"0e841b93051d30dc91ae7ecbddb1d89152875ac2e92a18f57d26a135466ba5a7","impliedFormat":1},{"version":"42afd9d91bce6d077990a4f3628bcb7f8fe1bc0397ae481bdf54d6fc7c5cd3a4","impliedFormat":1},{"version":"12f6e76f5766ffb9aaf71adbf0a46b8dca86c59982cbe16a2addb87b68c8b937","impliedFormat":1},{"version":"ec8bff9f60af63c0d12517026faff805a05ae930848edf9f35ef27cf8b0f8478","impliedFormat":1},{"version":"2b26174b7cae62f9d9843b5cab80a844fcf530b528348717180a2e60fcd8c53e","impliedFormat":1},{"version":"16189422d0a96941777ea137f472b05a8dce2c530b4e61970c9412e0a139f9b8","impliedFormat":1},{"version":"373f28376805407a378a80ff2b08c56fa0bf7ac76e5abdedb5a00a4aca2ba9f6","impliedFormat":1},{"version":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"8edadbdab1f9f41f86b9bf0151213fbc7778a337703888ebacf017e73738fa00","impliedFormat":1},{"version":"675d65b49d00d283578a569e662548c2a55a95d7c1a211f9e9a32c6e1398dce8","impliedFormat":1},{"version":"4d11636fad62a75861b44b117d7237d38d957ddd51e09f4021f8b86acc2349b7","impliedFormat":1},{"version":"dbc85ae54cb8da38556b3dc33522159c8a5558c79568edbe4977226764e51219","impliedFormat":1},{"version":"7bf23edcdb0ec0715b7f7b85695a1078a132067c495efa8f6cdcda9359659f9c","impliedFormat":1},{"version":"4ad28da36ad48edec414054e1daef40c1016357b188eca0f72977f30222d9c02","impliedFormat":1},{"version":"6c4032871e6cfcbf2356a398c14a23a54af756bf7a5aff43cddb96b09469248e","impliedFormat":1},{"version":"81f20249f433350a8e13cbb9206779e667f0d5e5ac4b8f014cdf6b6e42a136fc","impliedFormat":1},{"version":"c7185143683e9ba278420520af2e2a80dd911e88e5c08c56405b2a65996e2a1f","impliedFormat":1},{"version":"ca642739f49fb9d709f726a6447cefcaf21d8ccb16595724c8929b515a08ef53","impliedFormat":1},{"version":"42adbc164a978ef94024a312dd27e2415fcf034ca6e1ada520b40582704b3e47","impliedFormat":1},{"version":"4c3e6490ded76314f8115ca4657084c5bd53560db3b366e871c2e44b44437e4a","impliedFormat":1},{"version":"5c44dc0b569cde877bdd06ce1124acd6ae621d0a5dfc65a6668e13b85ca54d55","impliedFormat":1},{"version":"4bc6dbef10e6d46dad778f5fc190eef94e5568d612140b8791b00b01882ec1d6","impliedFormat":1},{"version":"3bb26409311deb6bb7a276fe8af90048fd1146f73881ee9826821df71d11980b","impliedFormat":1},{"version":"e463cc21447f0a1aeeeb793f51f4c165be1cec7583c15f68b8a1703c343a6cca","impliedFormat":1},{"version":"3ba99b530549ef5f440cab610ca72cd7bdc1aab48ba22d24bd00a931aedff21a","impliedFormat":1},{"version":"961b6be59c5412c31652e65cc3e0b0a0ea8a4266849d10c90ad1eca0a95cb581","impliedFormat":1},{"version":"edbc215ce53ffa2a13e0c216d589fa47b37379bf10ea386ef7ddcda4dc91a328","impliedFormat":1},{"version":"e135af5c48d2dfc0c658e06827798aae78a97933bbdbaf8e023ee003d47651b1","impliedFormat":1},{"version":"529e5b8f3b7ad6bbb679268c7c9f29dcc0670e511574197e9755fbd2d70e1c97","impliedFormat":1},{"version":"4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","impliedFormat":1},{"version":"e35526a0977b9cd80f799aef3314cb2bfe66aeb40879c888f7a993bd3437fc42","impliedFormat":1},{"version":"81d92e5c4d618ba0660121ed30c603e8111ad605e7562948f7430d87038daee0","impliedFormat":1},{"version":"36990d934030ce1060f203c4b45ee7a811aa11aaa4d075bb81c2748da8329607","impliedFormat":1},{"version":"0ae845a8508fbfe0344eb505ddb4a4e5a8759f5ea4608bfc5f3f1b9ea51d76b4","signature":"611c3555ebe13d9820f48a53bccaacf5a2e1e0df64d719cd9e2fba33f2791f8c","impliedFormat":1},{"version":"bd0b6d0720c8b9fb5983761df5b57d6dd6646baf9cc438985f1b53d395aad3d0","signature":"eaba02405aff070bc130d8ad89fed3fe6a7c58493f2792406d671283c42d070b","impliedFormat":1},{"version":"67543772f3c75dc5a2d827c954cf0fde958401e96a6e921fbf6079ed7f4f4daa","signature":"a154d3346d8bc2536064abd3c3dcd962ab394ca73cebfceb0a3723976416f049","impliedFormat":1},{"version":"04c72d6fa3275b08865357900ba7580a5c9e31692a12641a25665fed8411c8b8","impliedFormat":1},{"version":"fad2e326af305b648dd46cac96bf31c88f508823cfea877fae79a9b01dd4d524","impliedFormat":1},{"version":"45e0dd06a42ab62f879b1567438bce5b85eee9c6875685ca2c6ca10f978038b2","impliedFormat":1},{"version":"ad5976f5c289f6720287944a265db0761709be06d5331fc37a1b2999fa13bacc","impliedFormat":1},{"version":"15ffad7691bca48369580748c576e889f19700b8b3a1bfc6586beab673a87956","signature":"9d33b8675e7074e5fcdbde477a40a2ab0278bcef7fb64cc28aa75846d3402bdc","impliedFormat":1},{"version":"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","impliedFormat":1},{"version":"0771ddb474014581a882838fd20e25e829038bb53c127c5b339812f749f6aa3e","signature":"1f9165291e6b94fc61224a00ccf17997125f8148aa244fc533c58557e07641e4","impliedFormat":1},{"version":"d59857b5ae5e3a693c3a2966fe3799ca0ee3c9ff9f3b3e2706cc31bd9f3d4ec4","signature":"5f46441b319013cfcc9e00c60f9f96162b8b7391d4ccae9c511f752812ee3e3a","impliedFormat":1},{"version":"952a60f7c6c46b683f6e0804d1e8e46244e90a68cdaef3d426708e0c82edcd94","signature":"8b3603d15e3899df5abe14590f4549414118396c49c75e4cf6f0e944079ded78"},{"version":"d62c0b0d23609a485dff9b8ed8e9af9c56b8789dc70a07d4bdbb26f16420b249","impliedFormat":1},{"version":"a2609926cd0259b582f55812d4ea93ff0440e38dd015bdb95394b26ad3d34cd1","impliedFormat":1},{"version":"2bdaf407163ca9ca9bc3c1d3fb78ad26b6bd2f7d68b04810fc28072925a95e9b","impliedFormat":1},{"version":"95347f256453f88602fcfc792b0ccea75f330aa22150bd95a6a8bb034a20ba14","impliedFormat":1},{"version":"dd2505eec07d3d341be4322f9f0380b5196f2b163944016227bb599dd89136e7","impliedFormat":1},{"version":"f9dfcd54e603db0684207424124c340a7eb0e61807ece0cdb51a8801c47c9155","impliedFormat":1},{"version":"ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","impliedFormat":1},{"version":"970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","impliedFormat":1},{"version":"e81c6b5f3f287690f7400c7468dc2bf21e621902dc1b6f98236e38235c0dfc68","signature":"9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","impliedFormat":1},{"version":"e50222c22db171b6e6f102dad414ba90b1ad3802537779e838bed86ff506cb28","impliedFormat":1},{"version":"4c36f9d0ffb25cf61b696b2777ba06d553d1b0cfd12d9eed8a1e3b1a50beb2f7","impliedFormat":1},{"version":"dd478451ffa00f4352bffe4f55b4531c8dec0edafb5777272089e5127dca808c","impliedFormat":1},{"version":"aedddd59fc4889fcdeb54a3b2a4943736f282c00db826ff710acb6bc91873b0d","impliedFormat":1},{"version":"5d9a5cc1712870f91f66850e7056e0d03b4046de5558a00e7190b6a9c2f7d432","impliedFormat":1},{"version":"0daf877cd2dcb81c0e39a96ee20262dc07ecc6f68d65cdb9cc6e6cf2f31d29c5","impliedFormat":1},{"version":"6206a6984c6210c7e02e8cec6c2417f6d2458ec36ac97b80ce9f894933a08082","impliedFormat":1},{"version":"d686fcb07a661fef0866137e450a487e710c233cb24f04d11426228162595d7e","impliedFormat":1},{"version":"e21af678a334e57edb0948acafa5f8d029a86c515f74b35701de2b7f0734ed78","signature":"97f2cb77a51ab49d71bdaa169999f503dc91a1261817c15463528d6d7a2dd2f9","impliedFormat":1},{"version":"8e3f8a63b6af3fd917721cfe670eedf5aae7df605d0072c5997021eb6fbdae31","impliedFormat":1},{"version":"046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","impliedFormat":1},{"version":"26b82a7ff864d0e68bc4578771898b91feabcb39dd6371970fd012827bd684f1","signature":"60e6faa0a819d40da14f63177e8f2f7a2c75c4f5925b7ede9d8bc13487d6384a","impliedFormat":1},{"version":"e2264b7f593788fca68253d204722139971cefcc19f01a9540b40e3c6a824152","signature":"68169677a1fbd913f4421ffc3fcafbec03a6bf3ea250249a18fb415f8f4a1746","impliedFormat":1},{"version":"a6260e50e119a4ae143e080cb69501b76f70b55df4f40b3874ee785277003570","impliedFormat":1},{"version":"311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","impliedFormat":1},{"version":"c032a9b7dfc5f9b86ac5b1535fe72154dc48a7f89f76c5cb4e8a6ab4db203671","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"23fa431c1549a548df67056c34a9ea3653b50266d77653a406ff5a67a7f861aa","impliedFormat":1},{"version":"1b1fc8e3cac6cd35e6ecae8aa8bda1f7c402e7786ca262ea6294c907c5b00149","signature":"a3aef4923a8dde677e086f9a6c3f5272a7881517658ff401ec47931829da2075","impliedFormat":1},{"version":"403ba71e387291ed9129e24bc76c9fdef4d563d0208baff9ac4f673d6ec2170a","signature":"1d57041f2cc69ae090870690d2171110a9b672d2b2a2839ace0f59bbaa67cc56","impliedFormat":1},{"version":"60a0074289b6584a0d7003c2aa14d9ebd0027e423deb79e08031b7e708770c98","impliedFormat":1},{"version":"d62b7fb6c39357289ba064887935b0966cd99da5a3bb63afc1d6ea4f82ab23f1","impliedFormat":1},{"version":"7a8e7fc0c0b3c6f0344a6b54a56e928aba5b2bde679ca742acf67aeb67e6f9d2","impliedFormat":1},{"version":"189150e785626242df43edde2e537ae48b8d8ba0c93e78c2478c9ce738a14cfe","impliedFormat":1},{"version":"b377fa259d15c6e3c0fc2804530f1c7448906df2b6afdf6ddeff61a75016cb28","impliedFormat":1},{"version":"a26bb2e2693f921f4aa3f6e8c04a18d07c6ab6c3162c426299e0d0a904d76d82","impliedFormat":1},{"version":"42e7c31cdce8294ad4852d465b2dd91307efecfd7a9889f2a0aa49ffca73e83b","impliedFormat":1},{"version":"7922bdca92b1a6f586e9403b2b7972200aae00f926a300e79bf2d62eb410714f","impliedFormat":1},{"version":"d3abaca0cd59f25b4e056681217d1f8674612071706e6825517ec9e264063e55","impliedFormat":1},{"version":"76a7145b39ac6cc3633e2ccb545e9db3e5a02c7e0bceddbb5abbd3b2e1fba32e","impliedFormat":1},{"version":"a3cf3aa8ec934a46e5d10922af944c14e1b73acb81c4ba90348bee40a829b26c","impliedFormat":1},{"version":"8f95f6784090939eb0cb0c648a03bce2208e595730afc14be4969d90b334b541","impliedFormat":1},{"version":"535b6a88c08e138b1b72003f482bceaca78311cd19836bdde0a80a131f457f43","impliedFormat":1},{"version":"cf72ba3ad6ed1f342e8ddbdbfdf425238cbc7a75cc7a318fa994cb3866a68804","impliedFormat":1},{"version":"f213a7dafb0a946c1134a64151cbb7f2301d23f93920356d730cf0ed767e9985","impliedFormat":1},{"version":"c305868de2a4ea029bd4b9593ebb33b602b54cdbb3a09231486f611a414d0f5f","impliedFormat":1},{"version":"cf42fcfc0f9e976054d921a0f5bf898f9127751cf5dd9f1b4820069fd78f2280","impliedFormat":1},{"version":"e35526a0977b9cd80f799aef3314cb2bfe66aeb40879c888f7a993bd3437fc42","impliedFormat":1},{"version":"81d92e5c4d618ba0660121ed30c603e8111ad605e7562948f7430d87038daee0","impliedFormat":1},{"version":"757f7967151a9b1f043aba090f09c1bdb0abe54f229efd3b7a656eb6da616bf4","impliedFormat":1},{"version":"2da74b28ea53cb34b516fd6dbda3ca93495648cf431e59d24ba3ab5d7ec59ba4","impliedFormat":1},{"version":"928ebc4436abadcd3680338883b7e26189beb7532ae4b3d1c1727598607e53fa","impliedFormat":1},{"version":"2d232975df81628cb4d8a5236b8776976940cc4dd202698e498de5a4baeb7389","impliedFormat":1},{"version":"9bddd9fa92fbbb5bd3b7617b88c4aa038391aa29eca99baef820bf0ff422ee43","signature":"cc67a58590a00cf7dff0a5849c8e7e0439ec202f2462621f60b13fbed0546fc5","impliedFormat":1},{"version":"4c1b770da0116b19eb873aa7cd0bd242ce4b18e20ecde61e5c0bda5421f40707","signature":"3849e66e1f8ac2913e0619ef856a845e4c44f6b9e97c606e991247a9353bb0dd","impliedFormat":1},{"version":"64b05591ba7a6a2025c3ce04bd72b972a6200d4481feaae2e66056e0a1500b3a","signature":"526ee815290e47e75fd2105f83de0916689cc532a19c81620672342f6478095f","impliedFormat":1},{"version":"96def9cb00debb7554a8019ae45310f375a65820bd8efa8e497a96e3416a5677","signature":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"04c8589ba249eb9bc61b2232ab6c29216409852b4aecfb478cbf2a754871253a","signature":"8bfba49493f92a72cdffe5b9947c3f572c9301f4e95a471027d0022e8d9b5d97","impliedFormat":1},{"version":"956f962aca6becfca36766fe3af718b586829e1e4dd72f6b896057f75d4e9e83","impliedFormat":1},{"version":"9f7b583873c73cf01be845311d8b3e1715aecfa476a047d885804d837327d5db","impliedFormat":1},{"version":"f4de63eb261a0b27b5f66f08a4e5c292b67b0c1c0d25199bdd632f4c449b4806","impliedFormat":1},{"version":"f4a795af80885eba93957db860b4b82b4d23a76c5e122c2af5eeb9319094d9d1","impliedFormat":1},{"version":"3267bdd186e8d021bfa57a5314a256b9781e895bc025e426a2bdbe93b946cca0","impliedFormat":1},{"version":"31ed847fef6dc27c5224045deab8f99887ec76146cbc4f2ccb33f5b117fc9bf1","impliedFormat":1},{"version":"0df38983d84eccab44e2e6385bed5e1033b23228e484b80ff124d4049ca8e75a","impliedFormat":1},{"version":"7395857a8b73a1a5a14af625ec52c90f5b24bb0b163057d0f3e8a197ccc816ee","impliedFormat":1},{"version":"8b2e63aba58523a92dd15761096a03b5ebbd8983e2889b1f14265d9b2bb444b6","impliedFormat":1},{"version":"5f932457c501d03a68bee9ae0ab26ef9df2fa1f789a981483ec1f56c120ea5c7","impliedFormat":1},{"version":"4118ae023b5dd1af42aa6ccec246e5c0a7fc32e7459bda588da183d371d46281","impliedFormat":1},{"version":"c935d7a81d4a4409ba02812bd2b9e0176b74d361109d977b13bf6898488df6d9","impliedFormat":1},{"version":"ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","impliedFormat":1},{"version":"970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","impliedFormat":1},{"version":"6477c1bd38bbe6e8d74abebd01a073a7e45a89086a5a250e11725989a54a9a94","impliedFormat":1},{"version":"046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","impliedFormat":1},{"version":"52580471774bba3d4ccd41c1178e2c2884f1caa7257d4e86f760ce840d5083f6","signature":"12c618d15f731e0251af2dcd7b52bb12b0535769e27c9c099bcea9b5a451f3f4","impliedFormat":1},{"version":"2837ced1e5d4ef88b4e1688fa62bc93b4248d1825667c87a83adaa51bc810cbf","impliedFormat":1},{"version":"f61af6ed7df59c72b7e2fc7e25a4500f5e9beafad5be038d349c5348a0727ba5","impliedFormat":1},{"version":"ab1d998d1a0125aeb4f70beb593220427562543d33c704f7df9e5d8b0de76700","signature":"f4dfb302d3c378152e1a8c8d9879d7d69625333efccd3092eafc40837b67f9e4","impliedFormat":1},{"version":"bf7ccda18d9cb9ed3047d96a6542fee3c3bc4e7a7822af40332c5c2f6e07c2b7","impliedFormat":1},{"version":"7bc71d52df9d8e5cc55218d347a91b1758b38341f9cbbac0b80057aa9d93daa6","impliedFormat":1},{"version":"7a1f7b274cf8a66b83fcf42153bde6f25f4eb4d7696d4a6b17e4a8878d128306","impliedFormat":1},{"version":"553dd4fef7d2b88e899646b66b2035e119f61b092d668ae0595a32c234f9b8b5","impliedFormat":1},{"version":"6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","impliedFormat":1},{"version":"afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","impliedFormat":1},{"version":"d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","impliedFormat":1},{"version":"6215681982d007f5e9137ab0ca969c39048401e588bb0ad92018297c82551ea8","impliedFormat":1},{"version":"82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","impliedFormat":1},{"version":"cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","impliedFormat":1},{"version":"3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","impliedFormat":1},{"version":"f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","impliedFormat":1},{"version":"ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","impliedFormat":1},{"version":"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","impliedFormat":1},{"version":"dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","impliedFormat":1},{"version":"67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","impliedFormat":1},{"version":"1b831600aabe1c065830d303d087189e1ccfc93a0ef1882eb58a336ec1ce9f2f","impliedFormat":1},{"version":"75f191b59fe7ce72d1d7d11d0f329a193843f54af93182fc5a65c37d0a82c85a","impliedFormat":1},{"version":"cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","impliedFormat":1},{"version":"f6451dc56be14d37a8b88ea62a143ea398ab44558cd530fb2cdeeea42695c849","impliedFormat":1},{"version":"8ab77e5c32f1b6c6c1ee1b1b771c1a76a16be650559dc61320c8c82c99fc7cde","impliedFormat":1},{"version":"16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","impliedFormat":1},{"version":"ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","impliedFormat":1},{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true,"impliedFormat":1},{"version":"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","impliedFormat":1},{"version":"c269a12e83c5ffc0332b1f245008e4e621e483dd2f8b9b77fc6a664fcde4969d","impliedFormat":1},{"version":"aa8a056ee45ae741849d6e809ba85967b638070060e29c57d12d22b14baefeb6","impliedFormat":1},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true,"impliedFormat":1},{"version":"a97081289e7233ca2ef04a729036449fec4e88818fd7b7397930bd4d52294b18","impliedFormat":1},{"version":"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","impliedFormat":1},{"version":"0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","impliedFormat":1},{"version":"15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","impliedFormat":1},{"version":"963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","impliedFormat":1},{"version":"9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","impliedFormat":1},{"version":"c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","impliedFormat":1},{"version":"ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","impliedFormat":1},{"version":"ae8cd6af37275eac75f5369cdb5f01063bcf1f48d74cb434303ee50ec446acfe","impliedFormat":1},{"version":"2518830a2fda9c272ba48798d0e7b857037443b06594db8e42c87e86944ee9e4","impliedFormat":1},{"version":"95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","impliedFormat":1},{"version":"1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","impliedFormat":1},{"version":"bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","impliedFormat":1},{"version":"5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","impliedFormat":1},{"version":"99ab49d4732fdc98cf5c495925e65e796544cb4086fe42afc235dfc02bcf2351","impliedFormat":1},{"version":"af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","impliedFormat":1},{"version":"d393adc32e520d4274bb4c3dfdcdb342b806a230b66ef0f82b35bffbc4aa2590","impliedFormat":1},{"version":"c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","impliedFormat":1},{"version":"38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","impliedFormat":1},{"version":"3b6040253231d44e6778eb6861cc86c1758562e77783d21b7ecbc73322ded539","impliedFormat":1},{"version":"03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","impliedFormat":1},{"version":"318c82cc1e13da55e8c60d7e1bdc422a0679d675ad048b6d5022a47f57d23e3f","impliedFormat":1},{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac3cce682a1eab96841ce9942ace8dd5649d2951007096555f4950479e4b8d56","impliedFormat":1},{"version":"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","impliedFormat":1},{"version":"fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","impliedFormat":1},{"version":"d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","impliedFormat":1},{"version":"ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","impliedFormat":1},{"version":"9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","impliedFormat":1},{"version":"3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","impliedFormat":1},{"version":"3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","impliedFormat":1},{"version":"951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","impliedFormat":1},{"version":"a45efe8e9134ef64a5e3825944bc16fffaf130b82943844523d7a7f7c1fd91b2","impliedFormat":1},{"version":"969aa6509a994f4f3b09b99d5d29484d8d52a2522e133ef9b4e54af9a3e9feaf","impliedFormat":1},{"version":"f378e8538e407f997a0f88fcd1ecd93a096707cc909339ce4dba2e4ea03f1726","impliedFormat":1},{"version":"dcafd874e49d42fc215dcb4ef1e06511363c1f31979951081f3cd1908a05a636","impliedFormat":1},{"version":"fb73c98050a02b5849cc0fbb0d133ed55764b9c2a91f0ada2a25e74df68e6242","impliedFormat":1},{"version":"6002c44a8e8edbe4c79ce856c7bac3f8e69a2a45dc5bd6b229ca4ab323b924b3","impliedFormat":1},{"version":"b4d505a77e0829de5e5e23eaefb3d7989e0dbdfdb02ea69159df9f40017fb958","impliedFormat":1},{"version":"b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","impliedFormat":1},{"version":"f2242adef346a64818a1af914146f6f6046f16505e8a228c3bdb70185d4fdf4c","impliedFormat":1},{"version":"2f7508d8eeadcfde20b41ec13726c9ad26f04bbf830434e289c6010d5be28455","impliedFormat":1},{"version":"8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","impliedFormat":1},{"version":"9798f0d3693043da9dda9146b5e8622cd4476270e7aed8f3cb346b9b40a52103","impliedFormat":1},{"version":"fc7e8927b6fa6c81d68783afb314d01592c559e86bd36df334c37f40d0136acd","impliedFormat":1},{"version":"73f72caffdd55f189b5bf4e6b5ca273b4e26269d9aac859b9d30a5f799c095ad","impliedFormat":1},{"version":"d998e3e185cdf59dfc84043c41a42c02daaf3b7b21bee2db2d1f620a8e134f4c","impliedFormat":1},{"version":"06aa8858883e08f5136eb182d2f285ea615aeb464007f83c7a31ee1f8d9932b1","impliedFormat":1},{"version":"62d429aba0bbe459a04965d10c7637b74b319149f17874920a5ffb9fe3ba14d8","impliedFormat":1},{"version":"084a25e9ee73362fbb467873341b95721689513c14af6aa3067a1d95d6fafe08","impliedFormat":1},{"version":"4dbfeb147290c498e3aa56ea3198a6a109c5c0d9d7a4936a3138376302d89e7d","impliedFormat":1},{"version":"169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","impliedFormat":1},{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true,"impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","impliedFormat":1},{"version":"5009c081fd8ca3fcd6f3adcd071a1c79a933a400532b897822aad0943688a1f1","impliedFormat":1},{"version":"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","impliedFormat":1},{"version":"93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","impliedFormat":1},{"version":"c271193e426325d9acab2f99997bb9f5f2dff850ec8c7c011c5abafe5af83b5f","impliedFormat":1},{"version":"58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","impliedFormat":1},{"version":"a3e12bcf2d196656ccd5b5d5344182967a2bdde0f63c9b955c36169ed02c3555","impliedFormat":1},{"version":"a016d2f6c0a2c15069ec69661ad37c86a450deb629ce96a592f15f01d3a5746e","impliedFormat":1},{"version":"2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","impliedFormat":1},{"version":"2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","impliedFormat":1},{"version":"42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","impliedFormat":1},{"version":"d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","impliedFormat":1},{"version":"b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","impliedFormat":1},{"version":"7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","impliedFormat":1},{"version":"906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","impliedFormat":1},{"version":"5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","impliedFormat":1},{"version":"c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","impliedFormat":1},{"version":"e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","impliedFormat":1},{"version":"e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","impliedFormat":1},{"version":"9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","impliedFormat":1},{"version":"0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","impliedFormat":1},{"version":"71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","impliedFormat":1},{"version":"c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","impliedFormat":1},{"version":"2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","impliedFormat":1},{"version":"479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","impliedFormat":1},{"version":"ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","impliedFormat":1},{"version":"f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","impliedFormat":1},{"version":"86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","impliedFormat":1},{"version":"2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","impliedFormat":1},{"version":"a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","impliedFormat":1},{"version":"b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","impliedFormat":1},{"version":"61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","impliedFormat":1},{"version":"6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","impliedFormat":1},{"version":"c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","impliedFormat":1},{"version":"38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","impliedFormat":1},{"version":"d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","impliedFormat":1},{"version":"3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","impliedFormat":1},{"version":"b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","impliedFormat":1},{"version":"f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","impliedFormat":1},{"version":"843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","impliedFormat":1},{"version":"f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","impliedFormat":1},{"version":"6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","impliedFormat":1},{"version":"e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","impliedFormat":1},{"version":"a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","impliedFormat":1},{"version":"a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","impliedFormat":1},{"version":"da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","impliedFormat":1},{"version":"acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","impliedFormat":1},{"version":"6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","impliedFormat":1},{"version":"4fddd9f6929421ce580b4583defbb3f78f5a4a3642bea5ecd3209bf652d8b507","impliedFormat":1},{"version":"f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","impliedFormat":1},{"version":"82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","impliedFormat":1},{"version":"557e00bde9af85bcb3ab6b3a785904f028f9f1b65dba664f2fda44965acf8a78","impliedFormat":1},{"version":"397981908f102effb3cd483042076b593f3928264dbf06aec235a7c3e83da2b4","impliedFormat":1},{"version":"ad78491e2a3ae1e59680dbab88607dd670d06a91b1d6c451fa895ad390513e8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a9deb79dabc5153448e38589fbe38945fdad45f0f8442cd4d4e1da8bb879a76","affectsGlobalScope":true,"impliedFormat":1},{"version":"f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956","impliedFormat":1},{"version":"c9cc4c881c910ce378659524d985d2b72b79029b0c473df5d4d3557b4cf6010a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fae4b2bc906f3e6840725cc24affaa4e684e6c9cc20254242c5df4bede5b6f6","impliedFormat":1},{"version":"2dd1d4cea14cead7a7fc9eec8f40593089dff0de8c0199458446143c9b8c4ea9","impliedFormat":1},{"version":"c0288f54de6f544706a3150c8b579b1a975870695c4be866f727ece6a16f3976","impliedFormat":1},{"version":"ec2c7505ede4bc3ee37cfe431cfd87e545f55f27fe15b0809c1a411765145615","impliedFormat":1}],"options":{"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":100,"outDir":"./dist-cjs","removeComments":true,"rootDir":"./src","skipLibCheck":true,"strict":true,"target":8,"useUnknownInCatchVariables":false},"fileIdsList":[[69,74,122],[69,74,87,103,120,500],[69,74],[69,74,89,122,503],[69,74,80,122],[69,74,86,89,114,122,507,508,509],[69,74,122,518],[69,74,114,122,522],[69,74,89,122],[69,74,75,122],[69,74,511,512,526],[69,74,86,89,122,520,521],[69,74,504,521,522,529],[69,74,86,87,122,531],[69,74,86,89,91,94,103,114,122],[69,74,86,117,122,548,549,551],[69,74,550],[69,74,86,122],[69,74,553,555,556,557,558,559,560,561,562,563,564,565],[69,74,553,554,556,557,558,559,560,561,562,563,564,565],[69,74,554,555,556,557,558,559,560,561,562,563,564,565],[69,74,553,554,555,557,558,559,560,561,562,563,564,565],[69,74,553,554,555,556,558,559,560,561,562,563,564,565],[69,74,553,554,555,556,557,559,560,561,562,563,564,565],[69,74,553,554,555,556,557,558,560,561,562,563,564,565],[69,74,553,554,555,556,557,558,559,561,562,563,564,565],[69,74,553,554,555,556,557,558,559,560,562,563,564,565],[69,74,553,554,555,556,557,558,559,560,561,563,564,565],[69,74,553,554,555,556,557,558,559,560,561,562,564,565],[69,74,553,554,555,556,557,558,559,560,561,562,563,565],[69,74,553,554,555,556,557,558,559,560,561,562,563,564],[69,74,585],[69,74,570],[69,74,574,575,576],[69,74,573],[69,74,575],[69,74,552,571,572,577,580,582,583,584],[69,74,572,578,579,585],[69,74,578,581],[69,74,572,573,578,585],[69,74,572,585],[69,74,566,567,568,569],[69,74,89,114,122,591,592],[69,74,597],[69,74,86,87,122],[69,74,89,103,122],[69,74,600,639],[69,74,600,624,639],[69,74,639],[69,74,600],[69,74,600,625,639],[69,74,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638],[69,74,625,639],[69,74,87,530],[69,74,89,122,528],[69,74,641],[69,74,103,122],[69,74,86,89,91,103,111,114,120,122],[69,74,86,122,653],[69,74,537],[69,74,536,537],[69,74,536],[69,74,536,537,538,540,541,544,545,546,547],[69,74,537,541],[69,74,536,537,538,540,541,542,543],[69,74,536,541],[69,74,541,545],[69,74,537,538,539],[69,74,538],[69,74,536,537,541],[69,74,515],[69,74,512,513,514],[69,74,512,515],[69,74,89,94,111,114,117,511,513,515,516,517],[69,74,168,203],[69,74,168,202,341],[69,74,168,220,247,249,341],[69,74,250,251],[69,74,290],[69,74,168,252,290,300],[69,74,248,301,302,341,342,344,345],[69,74,249],[69,74,247,248],[69,74,247],[69,74,168,250,251,300],[69,74,168,250,251,341],[69,74,168,203,247,250,251,300,302,303,306,321,323,340],[69,74,168,193,203,247,300,302,341,349],[69,74,168,193,203,247,300,302,341,354,401],[69,74,168,203,302,341],[69,74,301],[69,74,479,480],[69,74,496],[69,74,168,366],[69,74,168,202,377],[69,74,168,220,247,368,377],[69,74,369,370,371,372],[69,74,168],[69,74,168,290,300,374],[69,74,367,373,375,376,377,378,379,383,384],[69,74,368],[69,74,247,367],[69,74,380,381,382],[69,74,168,377],[69,74,168,370,380],[69,74,168,371,380],[69,74,375],[69,74,168,369,370,371,372,377],[69,74,168,220,247,300,303,306,321,340,366,369,370,371,372,373,376],[50,69,74,196,201],[49,69,74],[69,74,168,184],[69,74,168,183],[69,74,183,184,185,194],[69,74,168,182],[69,74,168,193],[69,74,195],[69,74,197,198,199,200],[69,74,168,355],[69,74,355,356],[69,74,168,178,290,360,361],[69,74,362],[69,74,168,362],[69,74,168,357,360,363,365,391,399],[69,74,400],[69,74,168,178,290],[69,74,364],[69,74,168,178,290,386],[69,74,387,388,389,390],[69,74,168,388],[69,74,385],[69,74,168,290,358],[69,74,168,290],[69,74,358,359],[69,74,451],[69,74,304,305],[69,74,168,304],[69,74,444,447],[69,74,182],[69,74,445,446],[69,74,168,265,266],[69,74,260],[69,74,260,261,262,263,264],[69,74,253,254,255,256,257,258,259,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289],[69,74,265,266],[69,74,168,482],[69,74,168,422],[69,74,307,308,309,310],[69,74,168,309],[69,74,311,314,320],[69,74,312,313],[69,74,315],[69,74,168,317,318],[69,74,317,318,319],[69,74,316],[69,74,457,460,467,468,469,470,471],[69,74,168,454],[69,74,454,455,456],[69,74,458,459],[69,74,168,300],[69,74,462,463,464],[69,74,461,465,466],[69,74,168,392],[69,74,168,392,394],[69,74,392,393,394,395,396,397,398],[69,74,484,485,486],[69,74,322],[69,74,103,122,168],[69,74,424,425],[69,74,347,348],[69,74,488,489],[69,74,168,213,214],[69,74,215,216],[69,74,213,214,217,218,219],[69,74,168,331,333],[69,74,333,334,335,336,337,338,339],[69,74,168,335],[69,74,168,332],[69,74,413,414,415],[69,74,168,414],[69,74,168,169,179,180],[69,74,168,178],[69,74,181],[69,74,351,352,353],[69,74,89,91,122,168,300],[69,74,293],[69,74,294],[69,74,168,296],[69,74,168,291,292],[69,74,291,292,293,295,296,297,298,299],[69,74,170,171,172,173,174,175,176,177],[69,74,168,174],[69,74,186,187,188,189,190,191,192],[69,74,168,211],[69,74,168,220],[69,74,204],[69,74,168,230,231],[69,74,232],[69,74,168,204,212,221,222,223,224,225,226,227,228,229,233,234,235,236,237,238,239,240,241,242,243,244,245,246],[52,69,74],[51,69,74],[55,62,63,64,69,74],[62,65,69,74],[55,59,69,74],[55,65,69,74],[53,54,63,64,65,66,69,74],[69,74,103,122,124],[69,74,126],[60,61,62,69,74,128],[60,62,69,74],[69,74,130,132,133],[69,74,130,131],[69,74,135],[53,69,74],[56,69,74,137],[69,74,137],[69,74,137,138,139,140,141],[69,74,140],[57,69,74],[69,74,137,138,139],[59,60,62,69,74],[69,74,126,127],[69,74,143],[69,74,143,147],[69,74,143,144,147,148],[61,69,74,146],[69,74,123],[52,58,69,74],[57,59,69,74,89,91,122],[55,69,74],[55,69,74,151,152,153],[52,56,57,58,59,60,61,62,67,69,74,125,126,127,128,129,131,134,135,136,142,145,146,149,150,154,155,156,157,158,159,160,161,162,163,165,166,167],[53,56,57,61,69,74],[69,74,129],[69,74,145],[59,61,69,74,131],[59,60,69,74],[59,69,74,135],[61,69,74,126,127],[69,74,89,103,122,124,157],[60,69,74,128,162,163],[59,69,74,89,90,122,128,129,157,161,162,163,164],[69,74,128,129],[59,69,74],[69,74,432,433],[69,74,491],[69,74,428],[69,74,493],[69,74,168,247],[69,74,440],[69,74,407,408],[69,74,168,324],[69,74,168,326],[69,74,324],[69,74,324,325,326,327,328,329,330],[69,74,103],[69,74,205,206,207,208,209,210],[69,74,103,168],[69,74,435,436,437],[69,70,74],[69,73,74],[69,74,79,106],[69,74,75,86,87,94,103,114],[69,74,75,76,86,94],[69,74,77,115],[69,74,78,79,87,95],[69,74,79,103,111],[69,74,80,82,86,94],[69,74,81],[69,74,82,83],[69,74,86],[69,74,85,86],[69,73,74,86],[69,74,86,87,88,103,114],[69,74,86,87,88,103],[69,74,86,89,94,103,114],[69,74,86,87,89,90,94,103,111,114],[69,74,89,91,103,111,114],[69,74,86,92],[69,74,93,114,119],[69,74,82,86,94,103],[69,74,95],[69,74,96],[69,73,74,97],[69,74,98,113,119],[69,74,99],[69,74,100],[69,74,86,101],[69,74,101,102,115,117],[69,74,86,103,104,105],[69,74,103,105],[69,74,103,104],[69,74,106],[69,74,107],[69,74,86,109,110],[69,74,109,110],[69,74,79,94,103,111],[69,74,112],[74],[68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121],[69,74,94,113],[69,74,89,100,114],[69,74,79,115],[69,74,103,116],[69,74,117],[69,74,118],[69,74,79,86,88,97,103,114,117,119],[69,74,103,120],[69,74,168,406,410],[69,74,168,202,406,409,474],[69,74,168,247,406,412,416,419,474],[69,74,406,417,420],[69,74,290,321,406],[69,74,168,290,300,406,443],[69,74,406,411,449,450,474,475,476,477],[69,74,406,412],[69,74,247,406,411],[69,74,247,406],[69,74,168,202,247,300,406,411,412,417,418,420],[69,74,168,247,406,417,420,474],[69,74,168,247,300,303,306,321,323,340,406,410,417,420,442,450,452,453,472,473],[69,74,247,321,331,349,406,421,439,474,481,483,487,490,492,494],[69,74,406,474,495,497],[69,74,168,202,247,406,410,430,431,434,438,474],[69,74,182,202,247,321,331,340,354,401,406,421,423,426,427,429,439,441,474],[69,74,247,300,406,443,448,449],[69,74,168,252,290,655],[69,74,168,250,251,655],[69,74,168,203,247,250,251,302,303,306,321,323,340,655],[69,74,168,203,247,302,341,349,655,656],[69,74,168,203,247,302,341,354,401,655,656],[168,410],[168,202,474],[168,220,247,412,474],[417,420],[290],[168,290,443,655],[411,449,450,474,475,476,477],[412],[247,411],[247],[168,417,420,655],[168,417,420,474],[168,247,303,306,321,323,340,410,417,420,450,655],[168,193,247,300,349,410,450,474],[168,410,450,474],[168,193,247,300,354,401,410,450,474],[449]],"referencedMap":[[499,1],[501,2],[502,3],[504,4],[505,5],[506,3],[510,6],[519,7],[523,8],[503,9],[524,10],[525,3],[526,3],[527,11],[511,3],[522,12],[530,13],[532,14],[531,3],[508,3],[533,15],[534,3],[535,3],[550,16],[551,17],[512,3],[507,18],[552,3],[554,19],[555,20],[553,21],[556,22],[557,23],[558,24],[559,25],[560,26],[561,27],[562,28],[563,29],[564,30],[565,31],[586,32],[571,33],[577,34],[575,3],[574,35],[576,36],[585,37],[580,38],[582,39],[583,40],[584,41],[578,3],[579,41],[581,41],[573,41],[572,3],[567,3],[566,3],[569,33],[570,42],[568,33],[587,3],[528,3],[588,3],[589,3],[590,3],[592,3],[593,43],[594,3],[595,3],[596,3],[598,44],[521,3],[520,3],[500,45],[599,3],[509,46],[597,3],[624,47],[625,48],[600,49],[603,49],[622,47],[623,47],[613,47],[612,50],[610,47],[605,47],[618,47],[616,47],[620,47],[604,47],[617,47],[621,47],[606,47],[607,47],[619,47],[601,47],[608,47],[609,47],[611,47],[615,47],[626,51],[614,47],[602,47],[639,52],[638,3],[633,51],[635,53],[634,51],[627,51],[628,51],[630,51],[632,51],[636,53],[637,53],[629,53],[631,53],[640,54],[529,55],[642,56],[641,3],[643,3],[644,9],[645,57],[646,3],[549,3],[648,3],[647,3],[649,3],[650,3],[651,3],[652,58],[654,59],[653,3],[514,3],[591,46],[538,60],[547,61],[536,3],[537,62],[548,63],[543,64],[544,65],[542,66],[546,67],[540,68],[539,69],[545,70],[541,61],[516,71],[515,72],[513,73],[517,3],[518,74],[252,75],[203,76],[250,77],[344,78],[251,77],[343,79],[301,80],[346,81],[345,82],[249,83],[248,84],[405,85],[342,86],[341,87],[350,88],[402,89],[403,88],[404,90],[302,91],[479,79],[481,92],[480,79],[497,93],[496,79],[374,94],[366,95],[369,96],[379,97],[370,96],[371,96],[372,96],[373,98],[375,99],[385,100],[384,101],[368,102],[367,84],[383,103],[380,104],[381,105],[382,106],[376,107],[378,108],[377,109],[202,110],[49,3],[50,111],[185,112],[184,113],[195,114],[183,115],[194,116],[196,117],[197,3],[201,118],[198,3],[199,98],[200,98],[356,119],[355,79],[357,120],[362,121],[363,122],[361,123],[400,124],[401,125],[364,126],[365,127],[387,128],[391,129],[389,130],[386,131],[388,98],[390,130],[359,132],[358,133],[360,134],[303,98],[452,135],[451,98],[453,98],[304,98],[306,136],[305,137],[444,133],[448,138],[445,139],[447,140],[446,98],[253,98],[254,98],[255,98],[256,98],[257,98],[258,98],[259,98],[267,141],[268,98],[269,3],[270,98],[271,98],[272,98],[273,98],[274,98],[261,142],[262,98],[260,98],[265,143],[263,142],[264,98],[290,144],[275,98],[276,98],[277,98],[278,98],[279,3],[280,98],[281,98],[282,98],[283,98],[284,98],[285,98],[286,145],[287,98],[288,98],[266,98],[289,98],[482,3],[483,146],[422,3],[423,147],[311,148],[307,139],[308,139],[310,149],[309,98],[321,150],[312,139],[314,151],[313,98],[316,152],[315,3],[319,153],[320,154],[317,155],[318,155],[468,98],[472,156],[455,157],[456,157],[454,98],[457,158],[459,98],[458,98],[460,159],[469,98],[471,98],[470,160],[461,98],[462,160],[463,160],[465,161],[464,98],[467,162],[466,98],[398,3],[393,163],[395,164],[399,165],[396,9],[392,98],[394,98],[397,98],[484,98],[487,166],[485,98],[486,3],[322,98],[323,167],[424,168],[426,169],[425,98],[347,160],[349,170],[348,98],[427,98],[490,171],[488,3],[489,98],[473,98],[215,172],[217,173],[216,98],[218,172],[219,172],[220,174],[213,98],[214,3],[334,175],[335,115],[336,3],[340,176],[337,98],[338,98],[339,177],[333,178],[332,98],[413,98],[416,179],[414,98],[415,180],[181,181],[169,98],[179,182],[180,98],[182,183],[354,184],[351,185],[352,160],[353,98],[294,186],[295,187],[296,98],[297,188],[293,189],[291,98],[292,98],[300,190],[298,3],[299,98],[170,3],[171,3],[172,3],[173,3],[178,191],[174,98],[175,98],[176,192],[177,98],[192,98],[187,98],[188,98],[189,98],[193,193],[190,98],[191,98],[186,98],[204,98],[212,194],[221,195],[222,3],[223,196],[224,3],[225,3],[226,3],[227,3],[228,98],[229,3],[230,98],[232,197],[233,198],[231,98],[234,3],[235,3],[247,199],[236,3],[237,3],[238,98],[239,3],[240,3],[241,3],[242,3],[243,3],[244,3],[245,3],[246,3],[51,200],[52,201],[53,3],[54,3],[65,202],[66,203],[63,204],[64,205],[67,206],[125,207],[127,208],[129,209],[128,210],[130,3],[134,211],[132,212],[133,3],[126,3],[136,213],[56,214],[138,215],[139,216],[142,217],[141,218],[137,219],[140,220],[135,221],[143,222],[144,223],[148,224],[149,225],[147,226],[124,227],[59,228],[150,229],[151,230],[152,230],[55,3],[154,231],[153,230],[168,232],[57,3],[62,233],[155,234],[156,3],[60,3],[146,235],[157,236],[145,237],[158,238],[159,239],[160,207],[161,207],[162,240],[131,3],[164,241],[165,242],[123,3],[166,243],[163,3],[58,244],[61,221],[167,200],[431,98],[432,3],[434,245],[433,3],[491,3],[492,246],[428,3],[429,247],[494,248],[493,249],[441,250],[440,249],[407,98],[409,251],[408,98],[325,252],[329,3],[327,253],[330,3],[328,254],[331,255],[326,98],[324,3],[205,3],[206,168],[209,256],[211,257],[207,258],[208,57],[210,3],[435,3],[438,259],[436,3],[437,3],[70,260],[71,260],[73,261],[74,262],[75,263],[76,264],[77,265],[78,266],[79,267],[80,268],[81,269],[82,270],[83,270],[84,271],[85,272],[86,273],[87,274],[88,275],[72,3],[121,3],[89,276],[90,277],[91,278],[92,279],[93,280],[94,281],[95,282],[96,283],[97,284],[98,285],[99,286],[100,287],[101,288],[102,289],[103,290],[105,291],[104,292],[106,293],[107,294],[108,3],[109,295],[110,296],[111,297],[112,298],[69,299],[68,3],[122,300],[113,301],[114,302],[115,303],[116,304],[117,305],[118,306],[119,307],[120,308],[418,3],[406,3],[9,3],[10,3],[12,3],[11,3],[2,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[3,3],[4,3],[24,3],[21,3],[22,3],[23,3],[25,3],[26,3],[27,3],[5,3],[28,3],[29,3],[30,3],[31,3],[6,3],[35,3],[32,3],[33,3],[34,3],[36,3],[7,3],[37,3],[42,3],[43,3],[38,3],[39,3],[40,3],[41,3],[8,3],[47,3],[44,3],[45,3],[46,3],[1,3],[48,3],[421,3],[443,309],[410,310],[420,311],[476,312],[417,311],[430,313],[449,314],[478,315],[477,316],[412,317],[411,318],[419,319],[475,320],[474,321],[495,322],[498,323],[439,324],[442,325],[450,326]],"exportedModulesMap":[[499,1],[501,2],[502,3],[504,4],[505,5],[506,3],[510,6],[519,7],[523,8],[503,9],[524,10],[525,3],[526,3],[527,11],[511,3],[522,12],[530,13],[532,14],[531,3],[508,3],[533,15],[534,3],[535,3],[550,16],[551,17],[512,3],[507,18],[552,3],[554,19],[555,20],[553,21],[556,22],[557,23],[558,24],[559,25],[560,26],[561,27],[562,28],[563,29],[564,30],[565,31],[586,32],[571,33],[577,34],[575,3],[574,35],[576,36],[585,37],[580,38],[582,39],[583,40],[584,41],[578,3],[579,41],[581,41],[573,41],[572,3],[567,3],[566,3],[569,33],[570,42],[568,33],[587,3],[528,3],[588,3],[589,3],[590,3],[592,3],[593,43],[594,3],[595,3],[596,3],[598,44],[521,3],[520,3],[500,45],[599,3],[509,46],[597,3],[624,47],[625,48],[600,49],[603,49],[622,47],[623,47],[613,47],[612,50],[610,47],[605,47],[618,47],[616,47],[620,47],[604,47],[617,47],[621,47],[606,47],[607,47],[619,47],[601,47],[608,47],[609,47],[611,47],[615,47],[626,51],[614,47],[602,47],[639,52],[638,3],[633,51],[635,53],[634,51],[627,51],[628,51],[630,51],[632,51],[636,53],[637,53],[629,53],[631,53],[640,54],[529,55],[642,56],[641,3],[643,3],[644,9],[645,57],[646,3],[549,3],[648,3],[647,3],[649,3],[650,3],[651,3],[652,58],[654,59],[653,3],[514,3],[591,46],[538,60],[547,61],[536,3],[537,62],[548,63],[543,64],[544,65],[542,66],[546,67],[540,68],[539,69],[545,70],[541,61],[516,71],[515,72],[513,73],[517,3],[518,74],[252,75],[203,76],[250,77],[344,78],[251,77],[343,79],[301,327],[346,81],[345,82],[249,83],[248,84],[405,328],[342,86],[341,329],[350,330],[402,331],[403,330],[404,90],[302,91],[479,79],[481,92],[480,79],[497,93],[496,79],[374,94],[366,95],[369,96],[379,97],[370,96],[371,96],[372,96],[373,98],[375,99],[385,100],[384,101],[368,102],[367,84],[383,103],[380,104],[381,105],[382,106],[376,107],[378,108],[377,109],[202,110],[49,3],[50,111],[185,112],[184,113],[195,114],[183,115],[194,116],[196,117],[197,3],[201,118],[198,3],[199,98],[200,98],[356,119],[355,79],[357,120],[362,121],[363,122],[361,123],[400,124],[401,125],[364,126],[365,127],[387,128],[391,129],[389,130],[386,131],[388,98],[390,130],[359,132],[358,133],[360,134],[303,98],[452,135],[451,98],[453,98],[304,98],[306,136],[305,137],[444,133],[448,138],[445,139],[447,140],[446,98],[253,98],[254,98],[255,98],[256,98],[257,98],[258,98],[259,98],[267,141],[268,98],[269,3],[270,98],[271,98],[272,98],[273,98],[274,98],[261,142],[262,98],[260,98],[265,143],[263,142],[264,98],[290,144],[275,98],[276,98],[277,98],[278,98],[279,3],[280,98],[281,98],[282,98],[283,98],[284,98],[285,98],[286,145],[287,98],[288,98],[266,98],[289,98],[482,3],[483,146],[422,3],[423,147],[311,148],[307,139],[308,139],[310,149],[309,98],[321,150],[312,139],[314,151],[313,98],[316,152],[315,3],[319,153],[320,154],[317,155],[318,155],[468,98],[472,156],[455,157],[456,157],[454,98],[457,158],[459,98],[458,98],[460,159],[469,98],[471,98],[470,160],[461,98],[462,160],[463,160],[465,161],[464,98],[467,162],[466,98],[398,3],[393,163],[395,164],[399,165],[396,9],[392,98],[394,98],[397,98],[484,98],[487,166],[485,98],[486,3],[322,98],[323,167],[424,168],[426,169],[425,98],[347,160],[349,170],[348,98],[427,98],[490,171],[488,3],[489,98],[473,98],[215,172],[217,173],[216,98],[218,172],[219,172],[220,174],[213,98],[214,3],[334,175],[335,115],[336,3],[340,176],[337,98],[338,98],[339,177],[333,178],[332,98],[413,98],[416,179],[414,98],[415,180],[181,181],[169,98],[179,182],[180,98],[182,183],[354,184],[351,185],[352,160],[353,98],[294,186],[295,187],[296,98],[297,188],[293,189],[291,98],[292,98],[300,190],[298,3],[299,98],[170,3],[171,3],[172,3],[173,3],[178,191],[174,98],[175,98],[176,192],[177,98],[192,98],[187,98],[188,98],[189,98],[193,193],[190,98],[191,98],[186,98],[204,98],[212,194],[221,195],[222,3],[223,196],[224,3],[225,3],[226,3],[227,3],[228,98],[229,3],[230,98],[232,197],[233,198],[231,98],[234,3],[235,3],[247,199],[236,3],[237,3],[238,98],[239,3],[240,3],[241,3],[242,3],[243,3],[244,3],[245,3],[246,3],[51,200],[52,201],[53,3],[54,3],[65,202],[66,203],[63,204],[64,205],[67,206],[125,207],[127,208],[129,209],[128,210],[130,3],[134,211],[132,212],[133,3],[126,3],[136,213],[56,214],[138,215],[139,216],[142,217],[141,218],[137,219],[140,220],[135,221],[143,222],[144,223],[148,224],[149,225],[147,226],[124,227],[59,228],[150,229],[151,230],[152,230],[55,3],[154,231],[153,230],[168,232],[57,3],[62,233],[155,234],[156,3],[60,3],[146,235],[157,236],[145,237],[158,238],[159,239],[160,207],[161,207],[162,240],[131,3],[164,241],[165,242],[123,3],[166,243],[163,3],[58,244],[61,221],[167,200],[431,98],[432,3],[434,245],[433,3],[491,3],[492,246],[428,3],[429,247],[494,248],[493,249],[441,250],[440,249],[407,98],[409,251],[408,98],[325,252],[329,3],[327,253],[330,3],[328,254],[331,255],[326,98],[324,3],[205,3],[206,168],[209,256],[211,257],[207,258],[208,57],[210,3],[435,3],[438,259],[436,3],[437,3],[70,260],[71,260],[73,261],[74,262],[75,263],[76,264],[77,265],[78,266],[79,267],[80,268],[81,269],[82,270],[83,270],[84,271],[85,272],[86,273],[87,274],[88,275],[72,3],[121,3],[89,276],[90,277],[91,278],[92,279],[93,280],[94,281],[95,282],[96,283],[97,284],[98,285],[99,286],[100,287],[101,288],[102,289],[103,290],[105,291],[104,292],[106,293],[107,294],[108,3],[109,295],[110,296],[111,297],[112,298],[69,299],[68,3],[122,300],[113,301],[114,302],[115,303],[116,304],[117,305],[118,306],[119,307],[120,308],[418,3],[406,3],[9,3],[10,3],[12,3],[11,3],[2,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[3,3],[4,3],[24,3],[21,3],[22,3],[23,3],[25,3],[26,3],[27,3],[5,3],[28,3],[29,3],[30,3],[31,3],[6,3],[35,3],[32,3],[33,3],[34,3],[36,3],[7,3],[37,3],[42,3],[43,3],[38,3],[39,3],[40,3],[41,3],[8,3],[47,3],[44,3],[45,3],[46,3],[1,3],[48,3],[443,332],[410,333],[420,334],[476,335],[417,334],[430,336],[449,337],[478,338],[477,339],[412,340],[411,341],[419,342],[475,343],[474,344],[495,345],[498,345],[439,346],[442,347],[450,348]],"semanticDiagnosticsPerFile":[499,501,502,504,505,506,510,519,523,503,524,525,526,527,511,522,530,532,531,508,533,534,535,550,551,512,507,552,554,555,553,556,557,558,559,560,561,562,563,564,565,586,571,577,575,574,576,585,580,582,583,584,578,579,581,573,572,567,566,569,570,568,587,528,588,589,590,592,593,594,595,596,598,521,520,500,599,509,597,624,625,600,603,622,623,613,612,610,605,618,616,620,604,617,621,606,607,619,601,608,609,611,615,626,614,602,639,638,633,635,634,627,628,630,632,636,637,629,631,640,529,642,641,643,644,645,646,549,648,647,649,650,651,652,654,653,514,591,538,547,536,537,548,543,544,542,546,540,539,545,541,516,515,513,517,518,252,203,250,344,251,343,301,346,345,249,248,405,342,341,350,402,403,404,302,479,481,480,497,496,374,366,369,379,370,371,372,373,375,385,384,368,367,383,380,381,382,376,378,377,202,49,50,185,184,195,183,194,196,197,201,198,199,200,356,355,357,362,363,361,400,401,364,365,387,391,389,386,388,390,359,358,360,303,452,451,453,304,306,305,444,448,445,447,446,253,254,255,256,257,258,259,267,268,269,270,271,272,273,274,261,262,260,265,263,264,290,275,276,277,278,279,280,281,282,283,284,285,286,287,288,266,289,482,483,422,423,311,307,308,310,309,321,312,314,313,316,315,319,320,317,318,468,472,455,456,454,457,459,458,460,469,471,470,461,462,463,465,464,467,466,398,393,395,399,396,392,394,397,484,487,485,486,322,323,424,426,425,347,349,348,427,490,488,489,473,215,217,216,218,219,220,213,214,334,335,336,340,337,338,339,333,332,413,416,414,415,181,169,179,180,182,354,351,352,353,294,295,296,297,293,291,292,300,298,299,170,171,172,173,178,174,175,176,177,192,187,188,189,193,190,191,186,204,212,221,222,223,224,225,226,227,228,229,230,232,233,231,234,235,247,236,237,238,239,240,241,242,243,244,245,246,51,52,53,54,65,66,63,64,67,125,127,129,128,130,134,132,133,126,136,56,138,139,142,141,137,140,135,143,144,148,149,147,124,59,150,151,152,55,154,153,168,57,62,155,156,60,146,157,145,158,159,160,161,162,131,164,165,123,166,163,58,61,167,431,432,434,433,491,492,428,429,494,493,441,440,407,409,408,325,329,327,330,328,331,326,324,205,206,209,211,207,208,210,435,438,436,437,70,71,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,72,121,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,105,104,106,107,108,109,110,111,112,69,68,122,113,114,115,116,117,118,119,120,418,406,9,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,1,48,421,443,410,420,476,417,430,449,478,477,412,411,419,475,474,495,498,439,442,450]},"version":"4.9.5"} \ No newline at end of file +{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.es2021.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.es2021.promise.d.ts","./node_modules/typescript/lib/lib.es2021.string.d.ts","./node_modules/typescript/lib/lib.es2021.weakref.d.ts","./node_modules/typescript/lib/lib.es2021.intl.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/client/emitwarningifunsupportedversion.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts","./node_modules/@smithy/types/dist-types/abort-handler.d.ts","./node_modules/@smithy/types/dist-types/abort.d.ts","./node_modules/@smithy/types/dist-types/auth/auth.d.ts","./node_modules/@smithy/types/dist-types/auth/httpapikeyauth.d.ts","./node_modules/@smithy/types/dist-types/identity/identity.d.ts","./node_modules/@smithy/types/dist-types/endpoint.d.ts","./node_modules/@smithy/types/dist-types/logger.d.ts","./node_modules/@smithy/types/dist-types/uri.d.ts","./node_modules/@smithy/types/dist-types/http.d.ts","./node_modules/@smithy/types/dist-types/response.d.ts","./node_modules/@smithy/types/dist-types/util.d.ts","./node_modules/@smithy/types/dist-types/middleware.d.ts","./node_modules/@smithy/types/dist-types/auth/httpsigner.d.ts","./node_modules/@smithy/types/dist-types/auth/identityproviderconfig.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthscheme.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/types/dist-types/auth/index.d.ts","./node_modules/@types/node/ts5.6/globals.typedarray.d.ts","./node_modules/@types/node/ts5.6/buffer.buffer.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/dom-events.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/ts5.6/index.d.ts","./node_modules/@smithy/types/dist-types/transform/exact.d.ts","./node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts","./node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/crypto.d.ts","./node_modules/@smithy/types/dist-types/checksum.d.ts","./node_modules/@smithy/types/dist-types/command.d.ts","./node_modules/@smithy/types/dist-types/client.d.ts","./node_modules/@smithy/types/dist-types/connection/config.d.ts","./node_modules/@smithy/types/dist-types/transfer.d.ts","./node_modules/@smithy/types/dist-types/connection/manager.d.ts","./node_modules/@smithy/types/dist-types/connection/pool.d.ts","./node_modules/@smithy/types/dist-types/connection/index.d.ts","./node_modules/@smithy/types/dist-types/eventstream.d.ts","./node_modules/@smithy/types/dist-types/encode.d.ts","./node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","./node_modules/@smithy/types/dist-types/endpoints/endpointruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/errorruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/treeruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/rulesetobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/index.d.ts","./node_modules/@smithy/types/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultclientconfiguration.d.ts","./node_modules/@smithy/types/dist-types/shapes.d.ts","./node_modules/@smithy/types/dist-types/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/types/dist-types/extensions/index.d.ts","./node_modules/@smithy/types/dist-types/http/httphandlerinitialization.d.ts","./node_modules/@smithy/types/dist-types/identity/apikeyidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/index.d.ts","./node_modules/@smithy/types/dist-types/pagination.d.ts","./node_modules/@smithy/types/dist-types/profile.d.ts","./node_modules/@smithy/types/dist-types/serde.d.ts","./node_modules/@smithy/types/dist-types/signature.d.ts","./node_modules/@smithy/types/dist-types/stream.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","./node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","./node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","./node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","./node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts","./node_modules/@smithy/types/dist-types/waiter.d.ts","./node_modules/@smithy/types/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromenv.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/gethomedir.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getprofilename.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfilepath.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfromfile.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadsharedconfigfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadssosessiondata.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/parseknownfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromsharedconfigfiles.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromstatic.d.ts","./node_modules/@smithy/node-config-provider/dist-types/configloader.d.ts","./node_modules/@smithy/node-config-provider/dist-types/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4aconfig.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4signer.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4asigner.d.ts","./node_modules/@smithy/signature-v4/dist-types/signaturev4.d.ts","./node_modules/@smithy/signature-v4/dist-types/getcanonicalheaders.d.ts","./node_modules/@smithy/signature-v4/dist-types/getcanonicalquery.d.ts","./node_modules/@smithy/signature-v4/dist-types/getpayloadhash.d.ts","./node_modules/@smithy/signature-v4/dist-types/moveheaderstoquery.d.ts","./node_modules/@smithy/signature-v4/dist-types/preparerequest.d.ts","./node_modules/@smithy/signature-v4/dist-types/credentialderivation.d.ts","./node_modules/@smithy/signature-v4/dist-types/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4config.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/coercing-serializers.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsexpectunion.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parsejsonbody.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/parsexmlbody.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts","./node_modules/@aws-sdk/core/dist-types/index.d.ts","./dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/smithy-client/dist-types/client.d.ts","./node_modules/@smithy/util-stream/dist-types/blob/uint8arrayblobadapter.d.ts","./node_modules/@smithy/util-stream/dist-types/getawschunkedencodingstream.d.ts","./node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts","./node_modules/@smithy/util-stream/dist-types/splitstream.d.ts","./node_modules/@smithy/util-stream/dist-types/headstream.d.ts","./node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts","./node_modules/@smithy/util-stream/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/resolveendpointconfig.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getendpointfrominstructions.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toendpointv1.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/endpointmiddleware.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/getendpointplugin.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/command.d.ts","./node_modules/@smithy/smithy-client/dist-types/constants.d.ts","./node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts","./node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts","./node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts","./node_modules/@smithy/smithy-client/dist-types/emitwarningifunsupportedversion.d.ts","./node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts","./node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts","./node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts","./node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/nooplogger.d.ts","./node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts","./node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/quote-header.d.ts","./node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts","./node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-every.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-header.d.ts","./node_modules/@smithy/smithy-client/dist-types/index.d.ts","./dist-types/models/qdeveloperstreamingserviceexception.d.ts","./dist-types/models/models_0.d.ts","./dist-types/commands/generatecodefromcommandscommand.d.ts","./dist-types/commands/sendmessagecommand.d.ts","./dist-types/auth/httpauthextensionconfiguration.d.ts","./node_modules/@aws-sdk/types/dist-types/abort.d.ts","./node_modules/@aws-sdk/types/dist-types/auth.d.ts","./node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","./node_modules/@aws-sdk/types/dist-types/checksum.d.ts","./node_modules/@aws-sdk/types/dist-types/client.d.ts","./node_modules/@aws-sdk/types/dist-types/command.d.ts","./node_modules/@aws-sdk/types/dist-types/connection.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/identity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/anonymousidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/loginidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","./node_modules/@aws-sdk/types/dist-types/util.d.ts","./node_modules/@aws-sdk/types/dist-types/credentials.d.ts","./node_modules/@aws-sdk/types/dist-types/crypto.d.ts","./node_modules/@aws-sdk/types/dist-types/dns.d.ts","./node_modules/@aws-sdk/types/dist-types/encode.d.ts","./node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","./node_modules/@aws-sdk/types/dist-types/eventstream.d.ts","./node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/types/dist-types/http.d.ts","./node_modules/@aws-sdk/types/dist-types/logger.d.ts","./node_modules/@aws-sdk/types/dist-types/middleware.d.ts","./node_modules/@aws-sdk/types/dist-types/pagination.d.ts","./node_modules/@aws-sdk/types/dist-types/profile.d.ts","./node_modules/@aws-sdk/types/dist-types/request.d.ts","./node_modules/@aws-sdk/types/dist-types/response.d.ts","./node_modules/@aws-sdk/types/dist-types/retry.d.ts","./node_modules/@aws-sdk/types/dist-types/serde.d.ts","./node_modules/@aws-sdk/types/dist-types/shapes.d.ts","./node_modules/@aws-sdk/types/dist-types/signature.d.ts","./node_modules/@aws-sdk/types/dist-types/stream.d.ts","./node_modules/@aws-sdk/types/dist-types/token.d.ts","./node_modules/@aws-sdk/types/dist-types/transfer.d.ts","./node_modules/@aws-sdk/types/dist-types/uri.d.ts","./node_modules/@aws-sdk/types/dist-types/waiter.d.ts","./node_modules/@aws-sdk/types/dist-types/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/httprequest.d.ts","./node_modules/@smithy/protocol-http/dist-types/httpresponse.d.ts","./node_modules/@smithy/protocol-http/dist-types/httphandler.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/httpextensionconfiguration.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/field.d.ts","./node_modules/@smithy/protocol-http/dist-types/fields.d.ts","./node_modules/@smithy/protocol-http/dist-types/isvalidhostname.d.ts","./node_modules/@smithy/protocol-http/dist-types/types.d.ts","./node_modules/@smithy/protocol-http/dist-types/index.d.ts","./dist-types/extensionconfiguration.d.ts","./dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusedualstackendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusefipsendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolveendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolvecustomendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvarianttag.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvariant.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/partitionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/regionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/getregioninfo.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/eventstreamserdeconfig.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts","./node_modules/@smithy/util-retry/dist-types/types.d.ts","./node_modules/@smithy/util-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/configuredretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/defaultratelimiter.d.ts","./node_modules/@smithy/util-retry/dist-types/config.d.ts","./node_modules/@smithy/util-retry/dist-types/constants.d.ts","./node_modules/@smithy/util-retry/dist-types/index.d.ts","./node_modules/@smithy/middleware-retry/dist-types/types.d.ts","./node_modules/@smithy/middleware-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts","./node_modules/@smithy/middleware-retry/dist-types/delaydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/omitretryheadersmiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrymiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/index.d.ts","./dist-types/qdeveloperstreamingclient.d.ts","./dist-types/qdeveloperstreaming.d.ts","./dist-types/endpoints.d.ts","./dist-types/commands/index.d.ts","./dist-types/models/index.d.ts","./dist-types/index.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts","./dist-types/runtimeconfig.browser.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts","./node_modules/@smithy/node-http-handler/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/fromhttp/fromhttptypes.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/fromhttp/fromhttp.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromwebtoken.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromtokenfile.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveassumerolecredentials.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/fromini.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-process/dist-types/fromprocess.d.ts","./node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/ssoserviceexception.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/getrolecredentialscommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/listaccountrolescommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/listaccountscommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/logoutcommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointparameters.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/auth/httpauthextensionconfiguration.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/extensionconfiguration.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/ssoclient.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/sso.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/interfaces.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/listaccountrolespaginator.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/listaccountspaginator.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/loadsso.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/fromsso.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/isssoprofile.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/validatessoprofile.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/remoteprovider/remoteproviderinit.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/fromcontainermetadata.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/frominstancemetadata.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/remoteprovider/httprequest.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/utils/getinstancemetadataendpoint.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/config/endpoint.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-node/dist-types/defaultprovider.d.ts","./node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts","./dist-types/runtimeconfig.d.ts","./dist-types/runtimeconfig.native.d.ts","./dist-types/runtimeconfig.shared.d.ts","./dist-types/protocols/aws_json1_0.d.ts","./node_modules/tslib/tslib.d.ts","./node_modules/@smithy/util-middleware/dist-types/getsmithycontext.d.ts","./node_modules/@smithy/util-middleware/dist-types/normalizeprovider.d.ts","./node_modules/@smithy/util-middleware/dist-types/index.d.ts","./src/auth/httpauthschemeprovider.ts","./src/models/qdeveloperstreamingserviceexception.ts","./src/models/models_0.ts","./node_modules/@smithy/middleware-serde/dist-types/deserializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serdeplugin.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/index.d.ts","./src/commands/sendmessagecommand.ts","./node_modules/@types/uuid/index.d.ts","./src/protocols/aws_json1_0.ts","./src/commands/generatecodefromcommandscommand.ts","./package.json","./node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts","./node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts","./node_modules/@smithy/hash-node/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/index.d.ts","./src/endpoints.ts","./node_modules/@smithy/url-parser/dist-types/index.d.ts","./node_modules/@smithy/util-base64/dist-types/frombase64.d.ts","./node_modules/@smithy/util-base64/dist-types/tobase64.d.ts","./node_modules/@smithy/util-base64/dist-types/index.d.ts","./node_modules/@smithy/util-utf8/dist-types/fromutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/touint8array.d.ts","./node_modules/@smithy/util-utf8/dist-types/toutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/index.d.ts","./src/runtimeconfig.shared.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts","./src/runtimeconfig.ts","./src/auth/httpauthextensionconfiguration.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts","./src/extensionconfiguration.ts","./src/runtimeextensions.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/loggermiddleware.d.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpauthschememiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/gethttpauthschemeendpointrulesetplugin.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/gethttpauthschemeplugin.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/httpsigningmiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/gethttpsigningmiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/defaultidentityproviderconfig.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/httpapikeyauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/httpbearerauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/noauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/index.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeidentityprovider.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts","./node_modules/@smithy/core/dist-types/getsmithycontext.d.ts","./node_modules/@smithy/core/dist-types/normalizeprovider.d.ts","./node_modules/@smithy/core/dist-types/protocols/requestbuilder.d.ts","./node_modules/@smithy/core/dist-types/pagination/createpaginator.d.ts","./node_modules/@smithy/core/dist-types/index.d.ts","./node_modules/@smithy/middleware-content-length/dist-types/index.d.ts","./src/qdeveloperstreamingclient.ts","./src/qdeveloperstreaming.ts","./src/commands/index.ts","./src/models/index.ts","./src/index.ts","./node_modules/@aws-crypto/sha256-browser/build/main/crossplatformsha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/main/webcryptosha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/invalidfunction.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/invalidprovider.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts","./src/runtimeconfig.browser.ts","./node_modules/@aws-crypto/sha256-js/build/main/jssha256.d.ts","./node_modules/@aws-crypto/sha256-js/build/main/index.d.ts","./src/runtimeconfig.native.ts","../../../node_modules/@types/adm-zip/index.d.ts","../../../node_modules/@types/readdir-glob/index.d.ts","../../../node_modules/@types/archiver/index.d.ts","../../../node_modules/@types/async-lock/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/bytes/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/circular-dependency-plugin/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/cross-spawn/index.d.ts","../../../node_modules/@types/diff/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/glob/node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/parse5/dist/cjs/common/html.d.ts","../../../node_modules/parse5/dist/cjs/common/token.d.ts","../../../node_modules/parse5/dist/cjs/common/error-codes.d.ts","../../../node_modules/parse5/dist/cjs/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/dist/cjs/tokenizer/index.d.ts","../../../node_modules/parse5/dist/cjs/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/cjs/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/cjs/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/cjs/parser/index.d.ts","../../../node_modules/parse5/dist/cjs/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/cjs/serializer/index.d.ts","../../../node_modules/parse5/dist/cjs/common/foreign-content.d.ts","../../../node_modules/parse5/dist/cjs/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/linkify-it/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdurl/encode.d.ts","../../../node_modules/@types/mdurl/decode.d.ts","../../../node_modules/@types/mdurl/parse.d.ts","../../../node_modules/@types/mdurl/format.d.ts","../../../node_modules/@types/mdurl/index.d.ts","../../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../../node_modules/@types/markdown-it/lib/token.d.ts","../../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../../node_modules/@types/markdown-it/lib/index.d.ts","../../../node_modules/@types/markdown-it/index.d.ts","../../../node_modules/@types/mime-types/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/prismjs/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/proper-lockfile/index.d.ts","../../../node_modules/@types/readline-sync/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sinon/node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/stream-buffers/index.d.ts","../../../node_modules/@types/tcp-port-used/index.d.ts","../../../node_modules/@types/vscode/index.d.ts","../../../node_modules/@types/vscode-webview/index.d.ts","../../../node_modules/@types/webidl-conversions/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/whatwg-url/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/xml2js/lib/processors.d.ts","../../../node_modules/@types/xml2js/index.d.ts","../../../node_modules/@smithy/core/node_modules/@smithy/protocol-http/dist-types/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","impliedFormat":1},{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true,"impliedFormat":1},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"02ec1ffcc0823cb9c9ba420c619d3af2c726e3a674b66a91941c07a3e7f65dba","impliedFormat":1},{"version":"38f6da5b6f318c33e18dd7c983cab3fe52f510c9a2573948fb13f012e01b1ba6","impliedFormat":1},{"version":"b40885a4e39fb67eb251fb009bf990f3571ccf7279dccad26c2261b4e5c8ebcd","impliedFormat":1},{"version":"2d0e63718a9ab15554cca1ef458a269ff938aea2ad379990a018a49e27aadf40","impliedFormat":1},{"version":"530e5c7e4f74267b7800f1702cf0c576282296a960acbdb2960389b2b1d0875b","impliedFormat":1},{"version":"1c483cc60a58a0d4c9a068bdaa8d95933263e6017fbea33c9f99790cf870f0a8","impliedFormat":1},{"version":"07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","impliedFormat":1},{"version":"5d3e656baf210f702e4006949a640730d6aef8d6afc3de264877e0ff76335f39","impliedFormat":1},{"version":"4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","impliedFormat":1},{"version":"c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","impliedFormat":1},{"version":"570efec02480a95fa35e7c6dc3c00c59309d221e0698cefbc9e27a3c13d69c96","impliedFormat":1},{"version":"396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","impliedFormat":1},{"version":"b7b881ced4ed4dee13d6e0ccdb2296f66663ba6b1419767271090b3ff3478bb9","impliedFormat":1},{"version":"06289b9873760aac77aed4035ea6c60b1e0879b8afe47a4530bc8522b9b804b1","impliedFormat":1},{"version":"63c36aa73242aa745fae813c40585111ead225394b0a0ba985c2683baa6b0ef9","impliedFormat":1},{"version":"3e7ffc7dd797e5d44d387d0892bc288480493e73dcab9832812907d1389e4a98","impliedFormat":1},{"version":"db011ec9589fd51995cbd0765673838e38e6485a6559163cc53dcf508b480909","impliedFormat":1},{"version":"e1a4253f0cca15c14516f52a2ad36c3520b140b5dfb3b3880a368cd75d45d6d9","impliedFormat":1},{"version":"159af954f2633a12fdee68605009e7e5b150dbeb6d70c46672fd41059c154d53","impliedFormat":1},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true,"impliedFormat":1},{"version":"894dae169f8193e3f07c3fec14149a60592d1f13720907ffdf7b0c05cfb62c38","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e0d35597ff6c5142082e60814fa39c8a2077a58d8a6a262e619afb5f855f6ba","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"228318442187dee1f3b18047e6281d12d59f7b492d6243db4eb720d53e3c03f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"f51b4042a3ac86f1f707500a9768f88d0b0c1fc3f3e45a73333283dea720cdc6","impliedFormat":1},{"version":"a29bc8aa8cc100d0c09370c03508f1245853efe017bb98699d4c690868371fc7","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f95830ca11e2c7e82235b73dc149e68a0632b41e671724d12adc83a6750746d","impliedFormat":1},{"version":"7aa011cda7cf0b9e87c85d128b2eeac9930bda215b0fee265d8bf2cec039fb5f","impliedFormat":1},{"version":"92ec1aeca4e94bdab04083daa6039f807c0fce8f09bc42e8b24bf49fa5cdbbff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"25bfb291668b70290dd646f6e99e681ded0481bc0610d241a229cda07d7af425","impliedFormat":1},{"version":"6c39d4dbdb372b364442854e42d8c473e2ec67badb226745af17ed5ac41ce6f5","impliedFormat":1},{"version":"7693b90b3075deaccafd5efb467bf9f2b747a3075be888652ef73e64396d8628","impliedFormat":1},{"version":"bd01a987f0fcf2344a405e542ee681e420651eaff1222a5a6e0c02fda52343bc","impliedFormat":1},{"version":"693e50962e90a3548f41bff2c22676e3964212a836022d82e49eca0b20320a38","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"300b0c12998391154d7b9115a85554e91632a3d3e1b66038e98f2b9cb3c1061d","impliedFormat":1},{"version":"8d680d5d1a77028ca1708118b8c941edd90a6329f9dc0315ffc3a06b4820e937","affectsGlobalScope":true,"impliedFormat":1},{"version":"8bc550ee45988b123605e2cbba4dc8d3b4153c3d06f59074c7cda5bc3b2f2fd8","impliedFormat":1},{"version":"5293d799856f47259146ccf0be9a1cc0a4a5343696182d7206ed25ea67d67920","impliedFormat":1},{"version":"d7cdb379f1a8febb8ba181b2bba4c89b7f9189c68ce00292253d9f827eb0b2d3","impliedFormat":1},{"version":"fab49059d6c2026bdb2e53e4e5cde1a39da44e61daff1867c8b3b10b507bfe17","impliedFormat":1},{"version":"5a551275f85bcc4003e543a1951a5b2f682cfba9b2922f65ae0df40ab71724a5","impliedFormat":1},{"version":"22d1a3163b9a961dbe78b0aedbd7bcbc071ce1f31efb76eb013b0aee230fef0e","impliedFormat":1},{"version":"c31695696ade4514cfcbb22799997b690d3dca7fb72beab68fb2e73b6ef450dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"d99ad56d57f2c96daaf4475a8b64344b24dedafdb8f3c32d43552bcc72279a75","impliedFormat":1},{"version":"a101ef17aece908c1029a1bd3f97132794dcff21b4ca0b997d9a633f962c46aa","impliedFormat":1},{"version":"511575e18249b64b90d8f884fdb8a383c767d1a7efccd9d66a4e125a4dc5c462","impliedFormat":1},{"version":"6d8001f2c3b86c4f1de1d45ecb3f87f287ed7313d6999f8c8318cec4f50e6323","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d09f4b48899d342b5d6cd846f95f969a401933b0dcd375a8a7e45832328bb86","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c3d1222e6e3d8c35a4293d7a54d4142ebb8f7f70ec4111b8136df07fdc66169","impliedFormat":1},{"version":"70173c475c6e76ccebc37412b02b2e26f62bf45fc1534c3ebe6d7fa60fb88819","impliedFormat":1},{"version":"1c05d80325e7cb8ad9fe6f4f8cd1798ec87607fe523865b27cab9fc5b816f067","impliedFormat":1},{"version":"863bc4e31de6c75423bb02da16190d582b0a69b8964b61d45920e5b2cb3832dd","impliedFormat":1},{"version":"3c92f365d57fd49656e4907bf1d950d4a4060dde7db35effe2f6348e0e800b86","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"6e191fea1db6e9e4fa828259cf489e820ec9170effff57fb081a2f3295db4722","impliedFormat":1},{"version":"aed943465fbce1efe49ee16b5ea409050f15cd8eaf116f6fadb64ef0772e7d95","impliedFormat":1},{"version":"0435070b07e646b406b1c9b8b1b1878ea6917c32abc47e6435ec26d71212d513","impliedFormat":1},{"version":"f71188f97c9f7d309798ec02a56dd3bf50a4e4d079b3480f275ac13719953898","impliedFormat":1},{"version":"c4454589a0aa92c10d684c8c9584574bc404d1db556d72196cd31f8f7651af1a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b17790866e140a630fa8891d7105c728a1bd60f4e35822e4b345af166a4a728c","impliedFormat":1},{"version":"c50c75f4360f6fc06c4be29dafe28210e15c50cd6b04ad19c4808fa504efb51a","impliedFormat":1},{"version":"d4a1f5f7ee89b2afffd3c74282f8ee65b24266c92b7d40398c12a27054ed745c","impliedFormat":1},{"version":"900b5a9802192bc77eba35a5b87ce770df7b867a6d61772c554058c9ed635386","impliedFormat":1},{"version":"65278b3e3cb8e3f0b7bc712e86858ba7695501e76a84eedb730cc15b85d92b56","affectsGlobalScope":true,"impliedFormat":1},{"version":"f43fcf89d75f13d0908a77cd3fa32b9fd28c915deded9b2778b08f2e242d07a7","affectsGlobalScope":true,"impliedFormat":1},{"version":"9b6fc34aca8b0411b96ba35b2315017236a47709a1a98d5e16aed3b84037b9e8","impliedFormat":1},{"version":"aebf613f7831125038942eba891005fd25fa5cadcc3e3d13af4768dc7549161f","impliedFormat":1},{"version":"0faee6b555890a1cb106e2adc5d3ffd89545b1da894d474e9d436596d654998f","impliedFormat":1},{"version":"247e5c34784d185bc81442e8b1a371a36c4a5307a766a3725454c0a191b5cfad","impliedFormat":1},{"version":"1c382a6446d63340be549a616ff5142a91653cea45d6d137e25b929130a4f29a","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"20eb6689443f55ebd33372566b0afad619f1ba48fec4ffb4ab0c119e4fc52eea","impliedFormat":1},{"version":"a1b36a1f91a54daf2e89e12b834fa41fb7338bc044d1f08a80817efc93c99ee5","impliedFormat":1},{"version":"8bb4a5b632dd5a868f3271750895cb61b0e20cff82032d87e89288faee8dd6e2","impliedFormat":1},{"version":"0c1aabfd9fb1818afb2e798f91f669edafce59cd7e3423d25b1cfccfaaf2c403","impliedFormat":1},{"version":"017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","impliedFormat":1},{"version":"ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","impliedFormat":1},{"version":"9ae7df67c30dc5f52b7b21e8bb36fd9ff05e7ed10e514e2d9ed879b4547c4cd3","impliedFormat":1},{"version":"fd6a17c2d015cb2963d62db7566a43818424e8f32eb821fa9b8b142d4ab12664","impliedFormat":1},{"version":"4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","impliedFormat":1},{"version":"e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","impliedFormat":1},{"version":"d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","impliedFormat":1},{"version":"d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","impliedFormat":1},{"version":"5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","impliedFormat":1},{"version":"27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","impliedFormat":1},{"version":"eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","impliedFormat":1},{"version":"52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","impliedFormat":1},{"version":"5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","impliedFormat":1},{"version":"fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","impliedFormat":1},{"version":"d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","impliedFormat":1},{"version":"fc9bdd9b3d8fb59c913cb3b8dea0d79b38dfe9331ef07e1c6dc6bf363f061ad6","impliedFormat":1},{"version":"e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","impliedFormat":1},{"version":"0c3c4ce6a1884610c99306719f59174d81808c69393c30119f9c2aef0449a2cb","impliedFormat":1},{"version":"219a25474e58a8161b242776856ec5f6960839b63e74809445e51cadbfc18096","impliedFormat":1},{"version":"5a0d1534e9493ae44b08b3055172da38370e2afd2bc3d4bea11f7be78344036f","impliedFormat":1},{"version":"6309a45fc3c03d3c4d56228e995d51974f53009a842374695b34f3607877e5a3","impliedFormat":1},{"version":"bef94eba81ae2c09059c0d9abdb1ae1b7090314f70550f3c8cd5d7ead4a4f212","impliedFormat":1},{"version":"48b787ad458be9b524fa5fdfef34f68798074132d4b8cfe6a6fe9c2bf334c532","impliedFormat":1},{"version":"37280465f8f9b2ea21d490979952b18b7f4d1f0d8fab2d627618fb2cfa1828e3","impliedFormat":1},{"version":"c12f3ff5e221c1d3e4eaf47a372b538d8e79bd9a15266c2b049a597da0b86924","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f3f85dc43cb93c5a797f1ff0fa948d0e17843a443ae11a20cc032ccdf1b9997","impliedFormat":1},{"version":"581843e855d92557cbe9dfe242de4e53badae5e9096ca593b50788f7c89c37f2","impliedFormat":1},{"version":"869010bc679df668137cb3b78a3cb8196e97acf285208a57f6156ceac894a2f7","impliedFormat":1},{"version":"bcae62618c23047e36d373f0feac5b13f09689e4cd08e788af13271dbe73a139","impliedFormat":1},{"version":"29a99d2e57b3e08a997cbc2397bdb251441a545306a74b95ffedc5f03d9bc6b7","impliedFormat":1},{"version":"5ae003688265a1547bbcb344bf0e26cb994149ac2c032756718e9039302dfac8","impliedFormat":1},{"version":"09e811cc1088d9ea3a7ddd7290f6a13767f56c85daf8c3374a06a45a08d55647","impliedFormat":1},{"version":"a86053981218db1594bd4839bde0fb998e342ecf04967622495434a8f52a4041","impliedFormat":1},{"version":"5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","impliedFormat":1},{"version":"7b270dc53f35dd0b44bfa619ad4d351fffd512e14053c3688323ed007eda3f6d","impliedFormat":1},{"version":"6d4e928f232ade7221cffc6e4332ec935baa176415c9bf5d12111bb883a247d2","impliedFormat":1},{"version":"e86ad029224d4f2af3e188be8b5e9badf8c7083247572069bac7bd2193131fc7","impliedFormat":1},{"version":"057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","impliedFormat":1},{"version":"d94034601782f828aa556791279c86c37f09f7034a2ab873eefe136f77a6046b","impliedFormat":1},{"version":"105ae3dd61531488194f412386ba8c2b786f1389ac3415098cc47c712800da29","impliedFormat":1},{"version":"45851fbb6595233ecf6be213f74f00690c752782387796c66ea186750f831d06","impliedFormat":1},{"version":"4ee905052d0879e667444234d1462540107789cb1c80bd26e328574e4f3e4724","impliedFormat":1},{"version":"151659e152d71986b8943b9943cd7fbe27a65874655081602de7ea24a0f66e9b","impliedFormat":1},{"version":"3448e2fa1ae3a52d50e1e82e50b6ae5b8bd911004a8824b0c6b26c8cdcd15fec","impliedFormat":1},{"version":"c0c0b22cefd1896b92d805556fcabda18720d24981b8cb74e08ffea1f73f96c2","impliedFormat":1},{"version":"b97e6411a3ee83e6f77760f0400d117313a980d05ec89f1e1a7502229e36d060","impliedFormat":1},{"version":"270418f8a6639be745d14bfd085e62685f24eaa6d6482aa9803bae8b8b93919a","impliedFormat":1},{"version":"4cb33d05ff168c1ca836d6d438f93040972af43fc09774876c4add2ad96d125f","impliedFormat":1},{"version":"902d2b66388607197ec48798c94a6ffc657fe1cfbee15e49b6b3052de0e5b8fa","impliedFormat":1},{"version":"38104b9a37d0b9dc54be36ae43b1a32f9cfae34742743bfd7104cf1f39661225","impliedFormat":1},{"version":"47ff32ca9ab8474e89615b4bbe5f2264c2940fc12b86c4dc0a99659479517a6b","impliedFormat":1},{"version":"f892f85b4838f6a2ff1438d240dcf23a872d090794967c7f817a82ea8da1ad8e","impliedFormat":1},{"version":"cb498c53a9d35ac1cf9a3515f3835d48b4626a612cf7540c5bfb99542c9ab1a5","impliedFormat":1},{"version":"b86e64c48044bb73c6de7aa2cdf9295b2c104221e6a68b408225b283d1bcfda2","impliedFormat":1},{"version":"16173f5b3e68a373e7dfe6d00948549facc9947c9dbde813f1efe3a0f236ff6a","impliedFormat":1},{"version":"f457fc1b7583e1215393db13b95a186593660aad29706515ab7479869bc585e0","impliedFormat":1},{"version":"a11288edc8161f664148ea7d56101517e380335f5fa1a94408db86efce025bba","impliedFormat":1},{"version":"0e2a6b2eeadafbc7a27909527af46705d47e93c652d656f09cc3ef460774291b","impliedFormat":1},{"version":"d6d561bf4309a197e4b241fb0eacebf14c400661c4352676cd3c88c17e5ab8a2","impliedFormat":1},{"version":"ed012a19811c4010cb7d8920378f6dd50f22e1cf2842ecb44a157030667b165e","impliedFormat":1},{"version":"4085ac780790cc5787e375bd6c7dc149610665514e1d3d8fb65aec29efb691c9","impliedFormat":1},{"version":"7634eca84d60522b68ac679813fd9247a4260f7412890e924c7779758f8d6391","impliedFormat":1},{"version":"b4ff74f0589487410168be50e3231caf687c5e1302266709742382e8d004fe1e","impliedFormat":1},{"version":"406f227eebfe8be216d7a4b215ed09198b0c2f6599f2273b69ee5b75824c5435","impliedFormat":1},{"version":"e7cd1d6f8afb317dca8c5b6a60d5cd55aacf8d9ed8ae39f22e3104ed0c479552","impliedFormat":1},{"version":"75c9a36ada92da43627b5cf1142a6fe20f50ad00abacb90204b74b19775521c2","impliedFormat":1},{"version":"8a90f97fdb10d83c6842a699c3df474246755f4fbf3ee2d35e69d6599fe9092c","impliedFormat":1},{"version":"88aacf6e2493633490812c70595b517c8e4299f054d28a51687b10f0968276c3","impliedFormat":1},{"version":"f6cae2c0acda884c4b9dec4063d062252cf0625a04ebf711a84d7de576427c3e","impliedFormat":1},{"version":"946739ab9acb2fccd0b2e5a0d1ac4dfe69b9279f33a26e7f0a7a7ab24ee343fc","impliedFormat":1},{"version":"d037b771e89ef6dd81c71de92cc644d68b1b5d1ce25dbce9c2cfe407dd0b5796","impliedFormat":1},{"version":"25091d25f74760301f1e094456e2e6af52ceb6ef1ece48910463528e499992d8","impliedFormat":1},{"version":"853d02f4f46ca9700fefd0d45062f5b82c9335ba2224ca4d7bd34d6ae4fc4a7f","impliedFormat":1},{"version":"ab679e25dcb5d085ca42c33ffc8e2fc48411f81ad3108a3aa81eca79c104ef95","impliedFormat":1},{"version":"b901209745b3cef4b803e42731c40f5c2c2c7101bbd5f481c0fd1c43f9f440f3","impliedFormat":1},{"version":"cf6dc8f18bc5ee063dc1a37bccd3031dc0769f11622399018c375aacfcbda7c9","impliedFormat":1},{"version":"8ca2d01f5f3d4d4067aadea230570afa4c91e24e485fbe2e9d53ead3b33f80d0","impliedFormat":1},{"version":"9230a7b03ae3cce93e94a2cc844da1e5414d2be7505ecc82402094a132cfbbda","impliedFormat":1},{"version":"27350a2872f30b97e947f52ccf15654239eda7c9ff35135a1aa82cc37642fdeb","impliedFormat":1},{"version":"ed3e176bc769725ebc1d93f1d6890fc3d977b9155ae5d03be96ec2d49b303370","impliedFormat":1},{"version":"7933769d84f5ae16546aef06537ca578f1c8d7cca0708452a00613050ac1f265","impliedFormat":1},{"version":"d405963c5f69955e95c30ef121c7a3309f214f21ef09dceb5d7ac69557cbe0fa","impliedFormat":1},{"version":"29c7276f64f0de86eb981ddd4e5a8e7f832fc8d4e712c7e8e1beab6af8cc4147","impliedFormat":1},{"version":"6f11170f0056f1681101d9a1045af3c0d2ea489f14d1a0d4c0b2cb7860cfb8f7","impliedFormat":1},{"version":"fdd84224998f5f4d97017b829548f1fac4ac803025e16c27d4fc7f3426c6261e","impliedFormat":1},{"version":"1591996e71f1aab2e8726d7d04d59a3e8f5162578bee747e883932cfc0b57b2a","impliedFormat":1},{"version":"f8ce447bbda4f75da74cecd866cc1ff9bdde62189ac9d8dc14a16c48b3d702fa","impliedFormat":1},{"version":"da3f7f511c344fb56275cd954156a4d736c9f414f9b84bb0ee229ef583e38074","impliedFormat":1},{"version":"c7d30b164562b7ce99fcb53ab78f937cc845e003f6089d648351331921379994","impliedFormat":1},{"version":"fe2d1251f167d801a27f0dfb4e2c14f4f08bf2214d9784a1b8c310fdfdcdaaea","impliedFormat":1},{"version":"2a1182578228dc1faad14627859042d59ea5ab7e3ac69cb2a3453329aaaa3b83","impliedFormat":1},{"version":"dfa99386b9a1c1803eb20df3f6d3adc9e44effc84fa7c2ab6537ed1cb5cc8cfb","impliedFormat":1},{"version":"79b0d5635af72fb87a2a4b62334b0ab996ff7a1a14cfdb895702e74051917718","impliedFormat":1},{"version":"5f00b052713bfe8e9405df03a1bbe406006b30ec6b0c2ce57d207e70b48cf4e9","impliedFormat":1},{"version":"7abcae770f21794b5ffbc3186483c3dbcf8b0c8e37d3ef3ed6277ece5c5dd4be","impliedFormat":1},{"version":"3e642f39da9ad0a4cd16ccbd7f363b6b5ad5fa16a5c6d44753f98fc1e3be9d96","impliedFormat":1},{"version":"7f5a6eac3d3d334e2f2eba41f659e9618c06361958762869055e22219f341554","impliedFormat":1},{"version":"6f996f44113b76a9960d3fad280f4f671115c5e971356d1dbb4d1b000af8b3b3","impliedFormat":1},{"version":"67f2cd6e208e68fdfa366967d1949575df6ccf90c104fc9747b3f1bdb69ad55a","impliedFormat":1},{"version":"f99ab9dffe6281c9b6df9ae9d8584d18eabf2107572bbd8fa5c83c8afe531af8","impliedFormat":1},{"version":"4fc9939c86a7d80ab6a361264e5666336d37e080a00d831d9358ad83575267da","impliedFormat":1},{"version":"f4ba385eedea4d7be1feeeac05aaa05d6741d931251a85ab48e0610271d001ce","impliedFormat":1},{"version":"f5405fb679a467cb979f8744940b22b7bc3a0bcbe648c3910d98de3188d42a78","impliedFormat":1},{"version":"68969a0efd9030866f60c027aedbd600f66ea09e1c9290853cc24c2dcc92000f","impliedFormat":1},{"version":"fc79932b9aa710f025b89bf8d8329d99080286e5e079a7d5a529236e9f5dd69e","impliedFormat":1},{"version":"6646d9075e3e0eedb02c9d03bffef54c8bbeb601d27eed46f143aba435bac37d","impliedFormat":1},{"version":"0dec72b4c5c4bb149750fef4fc26bdae8f410de941ee766c953f5ac77381d690","impliedFormat":1},{"version":"8f2644578a3273f43fd700803b89b842d2cd09c1fba2421db45737357e50f5b1","impliedFormat":1},{"version":"639f94fe145a72ce520d3d7b9b3b6c9049624d90cbf85cff46fb47fb28d1d8fe","impliedFormat":1},{"version":"8327a51d574987a2b0f61ea40df4adddf959f67bc48c303d4b33d47ba3be114a","impliedFormat":1},{"version":"00e1da5fce4ae9975f7b3ca994dcb188cf4c21aee48643e1d6d4b44e72df21ee","impliedFormat":1},{"version":"991fd5ebf9f30ffa17cae6faeae6a838d3d91bdcdd419bce358dc99b8e5b0ad0","impliedFormat":1},{"version":"4d250e905299144850c6f8e74dad1ee892d847643bacf637e89adcce013f0700","impliedFormat":1},{"version":"51b4ab145645785c8ced29238192f870dbb98f1968a7c7ef2580cd40663b2940","impliedFormat":1},{"version":"589713fefe7282fd008a2672c5fbacc4a94f31138bae6a03db2c7b5453dc8788","impliedFormat":1},{"version":"26f7f55345682291a8280c99bb672e386722961063c890c77120aaca462ac2f9","impliedFormat":1},{"version":"786691c952fe3feac79aca8f0e7e580d95c19afc8a4c6f8765e99fb756d8d9d7","impliedFormat":1},{"version":"747d6d391f97a46f6880e10c8e4858bbd6568070a0f9af0ec74c26475e2c885f","impliedFormat":1},{"version":"354f47aa8d895d523ebc47aea561b5fedb44590ac2f0eae94b56839a0f08056a","impliedFormat":1},{"version":"62b753ed351fba7e0f6b57103529ce90f2e11b949b8fc69c39464fe958535c25","impliedFormat":1},{"version":"514321f6616d04f0c879ac9f06374ed9cb8eac63e57147ac954e8c0e7440ce00","impliedFormat":1},{"version":"ce7b928daedd974205daf616493c6eb358069ed740ed9552c5f4e66da19fd4bf","impliedFormat":1},{"version":"b1aa0340d4248aba8e36e7d246b223e3ae89fb27f167f9e3c7b14838bb41b13f","impliedFormat":1},{"version":"620290e7cd91726a13ce06daf8437b37f4bf782c755674a41d881c2217a35830","impliedFormat":1},{"version":"e06d050ebf5ab7ae4506d7de03d369e5f2f7c96df0e4ba6aec7a6b2450c039d0","impliedFormat":1},{"version":"88c0699b282331433af615deb79fcd6f8e815e93bd40dd7200c1e3cdf052e5a0","impliedFormat":1},{"version":"cf8659543b380c9cf02c88e231eaad406f323f6b1d3eb877d4cad9ff0408974f","impliedFormat":1},{"version":"a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","impliedFormat":1},{"version":"84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","impliedFormat":1},{"version":"415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","impliedFormat":1},{"version":"901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","impliedFormat":1},{"version":"ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","impliedFormat":1},{"version":"b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","impliedFormat":1},{"version":"ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","impliedFormat":1},{"version":"068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","impliedFormat":1},{"version":"3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","impliedFormat":1},{"version":"fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","impliedFormat":1},{"version":"d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","impliedFormat":1},{"version":"3f6af667357384c1f582ef006906ba36668dd87abe832f4497fffb315c160be9","impliedFormat":1},{"version":"363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","impliedFormat":1},{"version":"c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","impliedFormat":1},{"version":"2f1a8ca9846d9ac5481544b5b53811efe2c44bba9195af584136fb34371d5e23","impliedFormat":1},{"version":"1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","impliedFormat":1},{"version":"ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","impliedFormat":1},{"version":"d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","impliedFormat":1},{"version":"4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","impliedFormat":1},{"version":"7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","impliedFormat":1},{"version":"ea2de1a0ec4c9b8828154a971bfe38c47df2f5e9ec511f1a66adce665b9f04b0","impliedFormat":1},{"version":"c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","impliedFormat":1},{"version":"4ef0a17c5bcae3d68227136b562a4d54a4db18cfa058354e52a9ac167d275bbb","impliedFormat":1},{"version":"a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","impliedFormat":1},{"version":"64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","impliedFormat":1},{"version":"c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","impliedFormat":1},{"version":"b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","impliedFormat":1},{"version":"434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","impliedFormat":1},{"version":"c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7","impliedFormat":1},{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","impliedFormat":1},{"version":"81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","impliedFormat":1},{"version":"4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","impliedFormat":1},{"version":"f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","impliedFormat":1},{"version":"1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","impliedFormat":1},{"version":"ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","impliedFormat":1},{"version":"ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","impliedFormat":1},{"version":"f7a8f4bc1e8e786c6115970b8f3ed4797be48108de00b3552bf590706d3a5e8a","impliedFormat":1},{"version":"ce096c727f1ae221bd35b46dd3e050bf3909674e6e9ec1518b3a5aa89ab2a497","impliedFormat":1},{"version":"1a8e6a4f31a5196144f35d0434e16369881d828c849d6a1c9290b6bde8807449","impliedFormat":1},{"version":"42a9ac86df0fa58634ea8a5f7f07b9b9c3243d82e306fb22d8a41639935a6c87","impliedFormat":1},{"version":"5766c26941ae00aa889335bcccc1ecb28271b774be92aede801354c9797074bb","impliedFormat":1},{"version":"3a19286bcc9303c9352c03d68bb4b63cecbf5c9b7848465847bb6c9ceafa1484","impliedFormat":1},{"version":"c573fef34c2e5cc5269fd9c95fe73a1eb9db17142f5d8f36ffe4a686378b8660","impliedFormat":1},{"version":"d97e30dd93590392fed422f2b27325d10ab007d034faaaf61e28e9ddc9d3825b","impliedFormat":1},{"version":"d1f8a829c5e90734bb47a1d1941b8819aeee6e81a2a772c3c0f70b30e3693fa9","impliedFormat":1},{"version":"be1dfacee25a14d79724ba21f1fde67f966b46e2128c68fed2e48c6e1e9822c5","impliedFormat":1},{"version":"19b3d0c212d241c237f79009b4cd0051e54971747fd89dc70a74f874d1192534","impliedFormat":1},{"version":"441751fb3deefe98952ba09b3c5a583c66aa2c9a1abe5e9dba6064a55f5a7678","impliedFormat":1},{"version":"c211816fd9af3b1541c812b859c769958d5e5b85b81da832eb2bcdf98342b054","impliedFormat":1},{"version":"7639642137f8329ef4a19410ce8d3e46910a76294df263f46b428fd61c79d033","impliedFormat":1},{"version":"8e69efd9afdfcd34d85adb6d8e71a5e13fea2a33c7019dd624cc7696772183a0","impliedFormat":1},{"version":"a7ebfe3e2c8f4fea5dac7ffbf6d00acee63c530de24d57cdeeed05530285ca26","impliedFormat":1},{"version":"82b4045609dc0918319f835de4f6cb6a931fd729602292921c443a732a6bb811","impliedFormat":1},{"version":"0fd70ca1eaef1e2dd6f48f16886df4838664821d992fd8076d07fc15e83c8498","impliedFormat":1},{"version":"ba30e6d2f1d20c707566cf485167331a10c539802a79040ced055b62a7aae53e","impliedFormat":1},{"version":"642eae3e9ec5997883f86dd7346d818f07d40fb83cc3530f0e52e232ffb4e631","impliedFormat":1},{"version":"29a6df727893a86807f4dc02116c31d9e6097139579ed6e8029b14c526cba027","impliedFormat":1},{"version":"537a2b61594512c5e75fad7e29d25c23922e27e5a1506eb4fce74fe858472a6e","impliedFormat":1},{"version":"311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","impliedFormat":1},{"version":"7c07838da165fd43759a54d2d490461315e977f9f37c046e0e357623c657fc42","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"115c8691bd8fac390f6f6eef5b356543d716da7cffa4c2f70f288d56c5b06aeb","impliedFormat":1},{"version":"e91516e66f9fbf39c978a4092c16ffda3bb0b32158fca6def75aae9fab358153","impliedFormat":1},{"version":"abd4563a6a7668fa6f8f5e5a425a0900b80fc2309fec5186e2cae67f3ce92663","impliedFormat":1},{"version":"cb48f3011e72efef9d5a5b312f4a956f699b8d423bf9f2772724cdded496bd50","impliedFormat":1},{"version":"9aed07904079877252e6c0aedf1d2cf1935ed91d4abc16f726c76b61ea453919","impliedFormat":1},{"version":"6621af294bd4af8f3f9dd9bd99bd83ed8d2facd16faa6690a5b02d305abd98ab","impliedFormat":1},{"version":"5eada4495ab95470990b51f467c78d47aecfccc42365df4b1e7e88a2952af1a3","impliedFormat":1},{"version":"5fc0957ee8e15821ddb30a76e74e7984953fc35611a57fd703e624bade5836b9","impliedFormat":1},{"version":"40e9c2028b34c6c1e3281818d062f7008705254ee992d9857d051c603391e0f4","impliedFormat":1},{"version":"4720efe0341867600b139bca9a8fa7858b56b3a13a4a665bd98c77052ca64ea4","impliedFormat":1},{"version":"566fc645642572ec1ae3981e3c0a7dc976636976bd7a1d09740c23e8521496e5","impliedFormat":1},{"version":"66182e2432a30468eb5e2225063c391262b6a6732928bbc8ee794642b041dd87","impliedFormat":1},{"version":"11792ab82e35e82f93690040fd634689cad71e98ab56e0e31c3758662fc85736","impliedFormat":1},{"version":"3957b1244f49991b89f12cc45942c24f9c5927dc72677b105bb896d316f0454e","impliedFormat":1},{"version":"6c53c05df974ece61aca769df915345dc6d5b7649a01dc715b7da1809ce00a77","impliedFormat":1},{"version":"18c505381728b8cc6ea6986728403c1969f0d81216ed04163a867780af89f839","impliedFormat":1},{"version":"d121a48de03095d7dd5cd09d39e1a1c4892b520dad4c1d9c339c5d5008cfb536","impliedFormat":1},{"version":"f6d55e607f55be35a3c481b7685461a9acc1e27b893839218eb9313f7e85278c","impliedFormat":1},{"version":"b394ea95c82281d184ea83e8511bd1a43f78d6908eb34b536446d3eb08f9d47f","impliedFormat":1},{"version":"41edf4071b119fdf28b46a3c28c0845f2598bb8b196e7e4c9e01415403fdaea5","impliedFormat":1},{"version":"2bdf3bcf1a9771a288a783d1e8ee5d1d3126c11ddde26ae44864ab432192a6f6","impliedFormat":1},{"version":"603bafdacee4c8850ef5820f8642a817a3f0db6f76dda0474bcf3d17c2e15398","impliedFormat":1},{"version":"a10c79ab97c8a4f6074203094dba87bc736ca574ec480be1df6ec2c82d774573","impliedFormat":1},{"version":"801f049a9e74e941e8ca8add60492aaf4ab717a166248d355ded5753d80f9a85","impliedFormat":1},{"version":"70bba0a9c9c2ad7a042e134a840c4d8462bf0ad98e41c50ca52725ae47265eb9","impliedFormat":1},{"version":"f4dc28fbbba727722cb1fd82f51a7b9540fbe410ed04ddf35cab191d6aa2ba10","impliedFormat":1},{"version":"1db9e7d40d7ffade5bd15ce84936997bb9d159d37668c9d8955993753bbdfb2c","impliedFormat":1},{"version":"047f85c429fbee7423e723a6232e527d69b65c3399880ed8ff0842e29c497c20","impliedFormat":1},{"version":"9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","impliedFormat":1},{"version":"526ee815290e47e75fd2105f83de0916689cc532a19c81620672342f6478095f","impliedFormat":1},{"version":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"8bfba49493f92a72cdffe5b9947c3f572c9301f4e95a471027d0022e8d9b5d97","impliedFormat":1},{"version":"fa90f0cf69cd9296a6c0c43419540ba8e734ab9bf98eff6576bb5f04ddfea175","impliedFormat":1},{"version":"b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","impliedFormat":1},{"version":"68adf02128cad117e068f53ab334cbc730bcfeb7d658d8ce8118da6770b7e622","impliedFormat":1},{"version":"57148dc07df8d175350eb9576cba28cf1b2b7f8a97fc4fb4fcad25089bdd5272","impliedFormat":1},{"version":"2d10d8e7f884bbbbc1dc980464cd36346f2b2aa21bb2c049d21b381053bafbbf","impliedFormat":1},{"version":"7f1567b9dfb571a80556155a5bff1c946b23e74443466689bed24095604b3a9b","impliedFormat":1},{"version":"b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","impliedFormat":1},{"version":"51796c3726bf734b061fac41b479a660f9afccf50b8b493835e204723d23a84d","impliedFormat":1},{"version":"c2b694d903303007a430acf66980f3b503dbd4e50cf6c183af0daf39c8d79ee8","impliedFormat":1},{"version":"a945cfe6ca774e53111b0cfb6b767261352dc6e15d27641b61e5c634b4a729c3","impliedFormat":1},{"version":"3c10545e61e9428bebdc65fed8d11e09d203afb4745eea11b98be7b218a2aeb1","impliedFormat":1},{"version":"fde1236eef449f111d0eb306a5245dab335974dd0ccac39223ea200907c27a8b","impliedFormat":1},{"version":"c1a5f70e04c94e202ef756018ddacc22e752ee3e5eb401170a2dca2773877277","impliedFormat":1},{"version":"f4bedf06294a6a4d28179ee9689f2d8e00ad4d9806a99b234c2a58f1c9147acb","impliedFormat":1},{"version":"91d68d8136434dbe13c34fe6ef3fde75791f9be128ab6b4312d1699e1fcd9859","impliedFormat":1},{"version":"260c24d1b8fdb9284ffd93112fb4141e94970be4ff2ca23ca60b361dab39eee2","impliedFormat":1},{"version":"cb5327ac944956c162522b4388a74a4b3151e2ba3fd5b057ad13a452b2c30189","impliedFormat":1},{"version":"7bac1d3d9a1f0290c91e88426dab334d9d31a712647df5fb5666ad7acb3d53bd","impliedFormat":1},{"version":"41d461c745d59a6e125dbb554b814bc99a9f072325ffd3c8407809378995fdd4","impliedFormat":1},{"version":"33589aa637b92a02e6138fcaab28454fcf35a5e7d4cf91343c83342715f9b55a","impliedFormat":1},{"version":"ac13ba680450baa70ac9e9a2f02b50ae43437fd23d76bf9215a6a5b429455010","impliedFormat":1},{"version":"8b325ba54f25c33b38550f76a31afb82db9d7f4b1891276eeae5aba2f2d3bc30","impliedFormat":1},{"version":"eca427f98f87824d62688c987be1b6fb5dbd2c21a71fbb42702c7e365d0309bf","impliedFormat":1},{"version":"93c931504d284fb193a7cce460e4c2d30d4ed247e246e1f214a8064e95198ce8","impliedFormat":1},{"version":"ce972ae1cfa1741dfc7d5b8caeaabfb696023f45a80c0d71fe55494604cc78c8","impliedFormat":1},{"version":"6360869b4f8e9b942293072189349e2c1a44cc3cd6757e83cc62619e6abb01ad","impliedFormat":1},{"version":"f3ac122e178b71c8d2e74f85d0d0ead1ab592efd4ca989db632bb2f5ecbea484","impliedFormat":1},{"version":"2db9f3f74d99d1d437ca92760f510c76e9024d372506266d8443745eb77eff4a","impliedFormat":1},{"version":"e6bd80f63b2290bcea0bcd06002a19739050f188a8accebec706685cda627755","impliedFormat":1},{"version":"6717f2b01e15e479a01d76258afb0d5f8130fd5d6759a04cd60fde5587549efa","impliedFormat":1},{"version":"0e841b93051d30dc91ae7ecbddb1d89152875ac2e92a18f57d26a135466ba5a7","impliedFormat":1},{"version":"42afd9d91bce6d077990a4f3628bcb7f8fe1bc0397ae481bdf54d6fc7c5cd3a4","impliedFormat":1},{"version":"12f6e76f5766ffb9aaf71adbf0a46b8dca86c59982cbe16a2addb87b68c8b937","impliedFormat":1},{"version":"ec8bff9f60af63c0d12517026faff805a05ae930848edf9f35ef27cf8b0f8478","impliedFormat":1},{"version":"2b26174b7cae62f9d9843b5cab80a844fcf530b528348717180a2e60fcd8c53e","impliedFormat":1},{"version":"16189422d0a96941777ea137f472b05a8dce2c530b4e61970c9412e0a139f9b8","impliedFormat":1},{"version":"373f28376805407a378a80ff2b08c56fa0bf7ac76e5abdedb5a00a4aca2ba9f6","impliedFormat":1},{"version":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"8edadbdab1f9f41f86b9bf0151213fbc7778a337703888ebacf017e73738fa00","impliedFormat":1},{"version":"675d65b49d00d283578a569e662548c2a55a95d7c1a211f9e9a32c6e1398dce8","impliedFormat":1},{"version":"4d11636fad62a75861b44b117d7237d38d957ddd51e09f4021f8b86acc2349b7","impliedFormat":1},{"version":"dbc85ae54cb8da38556b3dc33522159c8a5558c79568edbe4977226764e51219","impliedFormat":1},{"version":"7bf23edcdb0ec0715b7f7b85695a1078a132067c495efa8f6cdcda9359659f9c","impliedFormat":1},{"version":"4ad28da36ad48edec414054e1daef40c1016357b188eca0f72977f30222d9c02","impliedFormat":1},{"version":"6c4032871e6cfcbf2356a398c14a23a54af756bf7a5aff43cddb96b09469248e","impliedFormat":1},{"version":"81f20249f433350a8e13cbb9206779e667f0d5e5ac4b8f014cdf6b6e42a136fc","impliedFormat":1},{"version":"c7185143683e9ba278420520af2e2a80dd911e88e5c08c56405b2a65996e2a1f","impliedFormat":1},{"version":"ca642739f49fb9d709f726a6447cefcaf21d8ccb16595724c8929b515a08ef53","impliedFormat":1},{"version":"42adbc164a978ef94024a312dd27e2415fcf034ca6e1ada520b40582704b3e47","impliedFormat":1},{"version":"4c3e6490ded76314f8115ca4657084c5bd53560db3b366e871c2e44b44437e4a","impliedFormat":1},{"version":"5c44dc0b569cde877bdd06ce1124acd6ae621d0a5dfc65a6668e13b85ca54d55","impliedFormat":1},{"version":"4bc6dbef10e6d46dad778f5fc190eef94e5568d612140b8791b00b01882ec1d6","impliedFormat":1},{"version":"3bb26409311deb6bb7a276fe8af90048fd1146f73881ee9826821df71d11980b","impliedFormat":1},{"version":"e463cc21447f0a1aeeeb793f51f4c165be1cec7583c15f68b8a1703c343a6cca","impliedFormat":1},{"version":"3ba99b530549ef5f440cab610ca72cd7bdc1aab48ba22d24bd00a931aedff21a","impliedFormat":1},{"version":"8f4a728c02701563b8b3c4ff7958bfef49dd9e03215db06d31ead9ccd5270242","impliedFormat":1},{"version":"168ed0c44fb93c128dd97ce63c8f5844c91285710f8424cc85cb804904410629","impliedFormat":1},{"version":"e135af5c48d2dfc0c658e06827798aae78a97933bbdbaf8e023ee003d47651b1","impliedFormat":1},{"version":"529e5b8f3b7ad6bbb679268c7c9f29dcc0670e511574197e9755fbd2d70e1c97","impliedFormat":1},{"version":"4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","impliedFormat":1},{"version":"e35526a0977b9cd80f799aef3314cb2bfe66aeb40879c888f7a993bd3437fc42","impliedFormat":1},{"version":"81d92e5c4d618ba0660121ed30c603e8111ad605e7562948f7430d87038daee0","impliedFormat":1},{"version":"36990d934030ce1060f203c4b45ee7a811aa11aaa4d075bb81c2748da8329607","impliedFormat":1},{"version":"0ae845a8508fbfe0344eb505ddb4a4e5a8759f5ea4608bfc5f3f1b9ea51d76b4","signature":"611c3555ebe13d9820f48a53bccaacf5a2e1e0df64d719cd9e2fba33f2791f8c","impliedFormat":1},{"version":"bd0b6d0720c8b9fb5983761df5b57d6dd6646baf9cc438985f1b53d395aad3d0","signature":"eaba02405aff070bc130d8ad89fed3fe6a7c58493f2792406d671283c42d070b","impliedFormat":1},{"version":"67543772f3c75dc5a2d827c954cf0fde958401e96a6e921fbf6079ed7f4f4daa","signature":"a154d3346d8bc2536064abd3c3dcd962ab394ca73cebfceb0a3723976416f049","impliedFormat":1},{"version":"04c72d6fa3275b08865357900ba7580a5c9e31692a12641a25665fed8411c8b8","impliedFormat":1},{"version":"fad2e326af305b648dd46cac96bf31c88f508823cfea877fae79a9b01dd4d524","impliedFormat":1},{"version":"45e0dd06a42ab62f879b1567438bce5b85eee9c6875685ca2c6ca10f978038b2","impliedFormat":1},{"version":"ad5976f5c289f6720287944a265db0761709be06d5331fc37a1b2999fa13bacc","impliedFormat":1},{"version":"15ffad7691bca48369580748c576e889f19700b8b3a1bfc6586beab673a87956","signature":"9d33b8675e7074e5fcdbde477a40a2ab0278bcef7fb64cc28aa75846d3402bdc","impliedFormat":1},{"version":"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","impliedFormat":1},{"version":"0771ddb474014581a882838fd20e25e829038bb53c127c5b339812f749f6aa3e","signature":"1f9165291e6b94fc61224a00ccf17997125f8148aa244fc533c58557e07641e4","impliedFormat":1},{"version":"d59857b5ae5e3a693c3a2966fe3799ca0ee3c9ff9f3b3e2706cc31bd9f3d4ec4","signature":"5f46441b319013cfcc9e00c60f9f96162b8b7391d4ccae9c511f752812ee3e3a","impliedFormat":1},{"version":"952a60f7c6c46b683f6e0804d1e8e46244e90a68cdaef3d426708e0c82edcd94","signature":"8b3603d15e3899df5abe14590f4549414118396c49c75e4cf6f0e944079ded78"},{"version":"d62c0b0d23609a485dff9b8ed8e9af9c56b8789dc70a07d4bdbb26f16420b249","impliedFormat":1},{"version":"a2609926cd0259b582f55812d4ea93ff0440e38dd015bdb95394b26ad3d34cd1","impliedFormat":1},{"version":"2bdaf407163ca9ca9bc3c1d3fb78ad26b6bd2f7d68b04810fc28072925a95e9b","impliedFormat":1},{"version":"95347f256453f88602fcfc792b0ccea75f330aa22150bd95a6a8bb034a20ba14","impliedFormat":1},{"version":"dd2505eec07d3d341be4322f9f0380b5196f2b163944016227bb599dd89136e7","impliedFormat":1},{"version":"f9dfcd54e603db0684207424124c340a7eb0e61807ece0cdb51a8801c47c9155","impliedFormat":1},{"version":"ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","impliedFormat":1},{"version":"970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","impliedFormat":1},{"version":"e81c6b5f3f287690f7400c7468dc2bf21e621902dc1b6f98236e38235c0dfc68","signature":"9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","impliedFormat":1},{"version":"e50222c22db171b6e6f102dad414ba90b1ad3802537779e838bed86ff506cb28","impliedFormat":1},{"version":"4c36f9d0ffb25cf61b696b2777ba06d553d1b0cfd12d9eed8a1e3b1a50beb2f7","impliedFormat":1},{"version":"dd478451ffa00f4352bffe4f55b4531c8dec0edafb5777272089e5127dca808c","impliedFormat":1},{"version":"aedddd59fc4889fcdeb54a3b2a4943736f282c00db826ff710acb6bc91873b0d","impliedFormat":1},{"version":"5d9a5cc1712870f91f66850e7056e0d03b4046de5558a00e7190b6a9c2f7d432","impliedFormat":1},{"version":"0daf877cd2dcb81c0e39a96ee20262dc07ecc6f68d65cdb9cc6e6cf2f31d29c5","impliedFormat":1},{"version":"6206a6984c6210c7e02e8cec6c2417f6d2458ec36ac97b80ce9f894933a08082","impliedFormat":1},{"version":"d686fcb07a661fef0866137e450a487e710c233cb24f04d11426228162595d7e","impliedFormat":1},{"version":"e21af678a334e57edb0948acafa5f8d029a86c515f74b35701de2b7f0734ed78","signature":"97f2cb77a51ab49d71bdaa169999f503dc91a1261817c15463528d6d7a2dd2f9","impliedFormat":1},{"version":"8e3f8a63b6af3fd917721cfe670eedf5aae7df605d0072c5997021eb6fbdae31","impliedFormat":1},{"version":"046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","impliedFormat":1},{"version":"26b82a7ff864d0e68bc4578771898b91feabcb39dd6371970fd012827bd684f1","signature":"60e6faa0a819d40da14f63177e8f2f7a2c75c4f5925b7ede9d8bc13487d6384a","impliedFormat":1},{"version":"e2264b7f593788fca68253d204722139971cefcc19f01a9540b40e3c6a824152","signature":"68169677a1fbd913f4421ffc3fcafbec03a6bf3ea250249a18fb415f8f4a1746","impliedFormat":1},{"version":"a6260e50e119a4ae143e080cb69501b76f70b55df4f40b3874ee785277003570","impliedFormat":1},{"version":"311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","impliedFormat":1},{"version":"c032a9b7dfc5f9b86ac5b1535fe72154dc48a7f89f76c5cb4e8a6ab4db203671","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"23fa431c1549a548df67056c34a9ea3653b50266d77653a406ff5a67a7f861aa","impliedFormat":1},{"version":"1b1fc8e3cac6cd35e6ecae8aa8bda1f7c402e7786ca262ea6294c907c5b00149","signature":"a3aef4923a8dde677e086f9a6c3f5272a7881517658ff401ec47931829da2075","impliedFormat":1},{"version":"403ba71e387291ed9129e24bc76c9fdef4d563d0208baff9ac4f673d6ec2170a","signature":"1d57041f2cc69ae090870690d2171110a9b672d2b2a2839ace0f59bbaa67cc56","impliedFormat":1},{"version":"60a0074289b6584a0d7003c2aa14d9ebd0027e423deb79e08031b7e708770c98","impliedFormat":1},{"version":"d62b7fb6c39357289ba064887935b0966cd99da5a3bb63afc1d6ea4f82ab23f1","impliedFormat":1},{"version":"7a8e7fc0c0b3c6f0344a6b54a56e928aba5b2bde679ca742acf67aeb67e6f9d2","impliedFormat":1},{"version":"189150e785626242df43edde2e537ae48b8d8ba0c93e78c2478c9ce738a14cfe","impliedFormat":1},{"version":"b377fa259d15c6e3c0fc2804530f1c7448906df2b6afdf6ddeff61a75016cb28","impliedFormat":1},{"version":"a26bb2e2693f921f4aa3f6e8c04a18d07c6ab6c3162c426299e0d0a904d76d82","impliedFormat":1},{"version":"42e7c31cdce8294ad4852d465b2dd91307efecfd7a9889f2a0aa49ffca73e83b","impliedFormat":1},{"version":"7922bdca92b1a6f586e9403b2b7972200aae00f926a300e79bf2d62eb410714f","impliedFormat":1},{"version":"d3abaca0cd59f25b4e056681217d1f8674612071706e6825517ec9e264063e55","impliedFormat":1},{"version":"76a7145b39ac6cc3633e2ccb545e9db3e5a02c7e0bceddbb5abbd3b2e1fba32e","impliedFormat":1},{"version":"a3cf3aa8ec934a46e5d10922af944c14e1b73acb81c4ba90348bee40a829b26c","impliedFormat":1},{"version":"8f95f6784090939eb0cb0c648a03bce2208e595730afc14be4969d90b334b541","impliedFormat":1},{"version":"535b6a88c08e138b1b72003f482bceaca78311cd19836bdde0a80a131f457f43","impliedFormat":1},{"version":"cf72ba3ad6ed1f342e8ddbdbfdf425238cbc7a75cc7a318fa994cb3866a68804","impliedFormat":1},{"version":"f213a7dafb0a946c1134a64151cbb7f2301d23f93920356d730cf0ed767e9985","impliedFormat":1},{"version":"c305868de2a4ea029bd4b9593ebb33b602b54cdbb3a09231486f611a414d0f5f","impliedFormat":1},{"version":"cf42fcfc0f9e976054d921a0f5bf898f9127751cf5dd9f1b4820069fd78f2280","impliedFormat":1},{"version":"e35526a0977b9cd80f799aef3314cb2bfe66aeb40879c888f7a993bd3437fc42","impliedFormat":1},{"version":"81d92e5c4d618ba0660121ed30c603e8111ad605e7562948f7430d87038daee0","impliedFormat":1},{"version":"757f7967151a9b1f043aba090f09c1bdb0abe54f229efd3b7a656eb6da616bf4","impliedFormat":1},{"version":"2da74b28ea53cb34b516fd6dbda3ca93495648cf431e59d24ba3ab5d7ec59ba4","impliedFormat":1},{"version":"928ebc4436abadcd3680338883b7e26189beb7532ae4b3d1c1727598607e53fa","impliedFormat":1},{"version":"2d232975df81628cb4d8a5236b8776976940cc4dd202698e498de5a4baeb7389","impliedFormat":1},{"version":"9bddd9fa92fbbb5bd3b7617b88c4aa038391aa29eca99baef820bf0ff422ee43","signature":"cc67a58590a00cf7dff0a5849c8e7e0439ec202f2462621f60b13fbed0546fc5","impliedFormat":1},{"version":"4c1b770da0116b19eb873aa7cd0bd242ce4b18e20ecde61e5c0bda5421f40707","signature":"3849e66e1f8ac2913e0619ef856a845e4c44f6b9e97c606e991247a9353bb0dd","impliedFormat":1},{"version":"64b05591ba7a6a2025c3ce04bd72b972a6200d4481feaae2e66056e0a1500b3a","signature":"526ee815290e47e75fd2105f83de0916689cc532a19c81620672342f6478095f","impliedFormat":1},{"version":"96def9cb00debb7554a8019ae45310f375a65820bd8efa8e497a96e3416a5677","signature":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"04c8589ba249eb9bc61b2232ab6c29216409852b4aecfb478cbf2a754871253a","signature":"8bfba49493f92a72cdffe5b9947c3f572c9301f4e95a471027d0022e8d9b5d97","impliedFormat":1},{"version":"956f962aca6becfca36766fe3af718b586829e1e4dd72f6b896057f75d4e9e83","impliedFormat":1},{"version":"9f7b583873c73cf01be845311d8b3e1715aecfa476a047d885804d837327d5db","impliedFormat":1},{"version":"f4de63eb261a0b27b5f66f08a4e5c292b67b0c1c0d25199bdd632f4c449b4806","impliedFormat":1},{"version":"f4a795af80885eba93957db860b4b82b4d23a76c5e122c2af5eeb9319094d9d1","impliedFormat":1},{"version":"3267bdd186e8d021bfa57a5314a256b9781e895bc025e426a2bdbe93b946cca0","impliedFormat":1},{"version":"31ed847fef6dc27c5224045deab8f99887ec76146cbc4f2ccb33f5b117fc9bf1","impliedFormat":1},{"version":"0df38983d84eccab44e2e6385bed5e1033b23228e484b80ff124d4049ca8e75a","impliedFormat":1},{"version":"7395857a8b73a1a5a14af625ec52c90f5b24bb0b163057d0f3e8a197ccc816ee","impliedFormat":1},{"version":"8b2e63aba58523a92dd15761096a03b5ebbd8983e2889b1f14265d9b2bb444b6","impliedFormat":1},{"version":"5f932457c501d03a68bee9ae0ab26ef9df2fa1f789a981483ec1f56c120ea5c7","impliedFormat":1},{"version":"4118ae023b5dd1af42aa6ccec246e5c0a7fc32e7459bda588da183d371d46281","impliedFormat":1},{"version":"c935d7a81d4a4409ba02812bd2b9e0176b74d361109d977b13bf6898488df6d9","impliedFormat":1},{"version":"ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","impliedFormat":1},{"version":"970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","impliedFormat":1},{"version":"6477c1bd38bbe6e8d74abebd01a073a7e45a89086a5a250e11725989a54a9a94","impliedFormat":1},{"version":"046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","impliedFormat":1},{"version":"52580471774bba3d4ccd41c1178e2c2884f1caa7257d4e86f760ce840d5083f6","signature":"12c618d15f731e0251af2dcd7b52bb12b0535769e27c9c099bcea9b5a451f3f4","impliedFormat":1},{"version":"2837ced1e5d4ef88b4e1688fa62bc93b4248d1825667c87a83adaa51bc810cbf","impliedFormat":1},{"version":"f61af6ed7df59c72b7e2fc7e25a4500f5e9beafad5be038d349c5348a0727ba5","impliedFormat":1},{"version":"ab1d998d1a0125aeb4f70beb593220427562543d33c704f7df9e5d8b0de76700","signature":"f4dfb302d3c378152e1a8c8d9879d7d69625333efccd3092eafc40837b67f9e4","impliedFormat":1},{"version":"bf7ccda18d9cb9ed3047d96a6542fee3c3bc4e7a7822af40332c5c2f6e07c2b7","impliedFormat":1},{"version":"7bc71d52df9d8e5cc55218d347a91b1758b38341f9cbbac0b80057aa9d93daa6","impliedFormat":1},{"version":"7a1f7b274cf8a66b83fcf42153bde6f25f4eb4d7696d4a6b17e4a8878d128306","impliedFormat":1},{"version":"553dd4fef7d2b88e899646b66b2035e119f61b092d668ae0595a32c234f9b8b5","impliedFormat":1},{"version":"6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","impliedFormat":1},{"version":"afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","impliedFormat":1},{"version":"d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","impliedFormat":1},{"version":"6215681982d007f5e9137ab0ca969c39048401e588bb0ad92018297c82551ea8","impliedFormat":1},{"version":"82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","impliedFormat":1},{"version":"cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","impliedFormat":1},{"version":"3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","impliedFormat":1},{"version":"f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","impliedFormat":1},{"version":"ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","impliedFormat":1},{"version":"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","impliedFormat":1},{"version":"dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","impliedFormat":1},{"version":"67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","impliedFormat":1},{"version":"1b831600aabe1c065830d303d087189e1ccfc93a0ef1882eb58a336ec1ce9f2f","impliedFormat":1},{"version":"75f191b59fe7ce72d1d7d11d0f329a193843f54af93182fc5a65c37d0a82c85a","impliedFormat":1},{"version":"cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","impliedFormat":1},{"version":"f6451dc56be14d37a8b88ea62a143ea398ab44558cd530fb2cdeeea42695c849","impliedFormat":1},{"version":"8ab77e5c32f1b6c6c1ee1b1b771c1a76a16be650559dc61320c8c82c99fc7cde","impliedFormat":1},{"version":"16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","impliedFormat":1},{"version":"ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","impliedFormat":1},{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true,"impliedFormat":1},{"version":"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","impliedFormat":1},{"version":"c269a12e83c5ffc0332b1f245008e4e621e483dd2f8b9b77fc6a664fcde4969d","impliedFormat":1},{"version":"aa8a056ee45ae741849d6e809ba85967b638070060e29c57d12d22b14baefeb6","impliedFormat":1},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true,"impliedFormat":1},{"version":"a97081289e7233ca2ef04a729036449fec4e88818fd7b7397930bd4d52294b18","impliedFormat":1},{"version":"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","impliedFormat":1},{"version":"0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","impliedFormat":1},{"version":"15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","impliedFormat":1},{"version":"963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","impliedFormat":1},{"version":"9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","impliedFormat":1},{"version":"c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","impliedFormat":1},{"version":"ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","impliedFormat":1},{"version":"ae8cd6af37275eac75f5369cdb5f01063bcf1f48d74cb434303ee50ec446acfe","impliedFormat":1},{"version":"2518830a2fda9c272ba48798d0e7b857037443b06594db8e42c87e86944ee9e4","impliedFormat":1},{"version":"95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","impliedFormat":1},{"version":"1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","impliedFormat":1},{"version":"bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","impliedFormat":1},{"version":"5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","impliedFormat":1},{"version":"99ab49d4732fdc98cf5c495925e65e796544cb4086fe42afc235dfc02bcf2351","impliedFormat":1},{"version":"af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","impliedFormat":1},{"version":"d393adc32e520d4274bb4c3dfdcdb342b806a230b66ef0f82b35bffbc4aa2590","impliedFormat":1},{"version":"c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","impliedFormat":1},{"version":"38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","impliedFormat":1},{"version":"3b6040253231d44e6778eb6861cc86c1758562e77783d21b7ecbc73322ded539","impliedFormat":1},{"version":"03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","impliedFormat":1},{"version":"318c82cc1e13da55e8c60d7e1bdc422a0679d675ad048b6d5022a47f57d23e3f","impliedFormat":1},{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac3cce682a1eab96841ce9942ace8dd5649d2951007096555f4950479e4b8d56","impliedFormat":1},{"version":"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","impliedFormat":1},{"version":"fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","impliedFormat":1},{"version":"d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","impliedFormat":1},{"version":"ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","impliedFormat":1},{"version":"9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","impliedFormat":1},{"version":"3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","impliedFormat":1},{"version":"3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","impliedFormat":1},{"version":"951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","impliedFormat":1},{"version":"a45efe8e9134ef64a5e3825944bc16fffaf130b82943844523d7a7f7c1fd91b2","impliedFormat":1},{"version":"969aa6509a994f4f3b09b99d5d29484d8d52a2522e133ef9b4e54af9a3e9feaf","impliedFormat":1},{"version":"f378e8538e407f997a0f88fcd1ecd93a096707cc909339ce4dba2e4ea03f1726","impliedFormat":1},{"version":"dcafd874e49d42fc215dcb4ef1e06511363c1f31979951081f3cd1908a05a636","impliedFormat":1},{"version":"fb73c98050a02b5849cc0fbb0d133ed55764b9c2a91f0ada2a25e74df68e6242","impliedFormat":1},{"version":"6002c44a8e8edbe4c79ce856c7bac3f8e69a2a45dc5bd6b229ca4ab323b924b3","impliedFormat":1},{"version":"b4d505a77e0829de5e5e23eaefb3d7989e0dbdfdb02ea69159df9f40017fb958","impliedFormat":1},{"version":"b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","impliedFormat":1},{"version":"f2242adef346a64818a1af914146f6f6046f16505e8a228c3bdb70185d4fdf4c","impliedFormat":1},{"version":"2f7508d8eeadcfde20b41ec13726c9ad26f04bbf830434e289c6010d5be28455","impliedFormat":1},{"version":"8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","impliedFormat":1},{"version":"9798f0d3693043da9dda9146b5e8622cd4476270e7aed8f3cb346b9b40a52103","impliedFormat":1},{"version":"fc7e8927b6fa6c81d68783afb314d01592c559e86bd36df334c37f40d0136acd","impliedFormat":1},{"version":"73f72caffdd55f189b5bf4e6b5ca273b4e26269d9aac859b9d30a5f799c095ad","impliedFormat":1},{"version":"d998e3e185cdf59dfc84043c41a42c02daaf3b7b21bee2db2d1f620a8e134f4c","impliedFormat":1},{"version":"06aa8858883e08f5136eb182d2f285ea615aeb464007f83c7a31ee1f8d9932b1","impliedFormat":1},{"version":"62d429aba0bbe459a04965d10c7637b74b319149f17874920a5ffb9fe3ba14d8","impliedFormat":1},{"version":"084a25e9ee73362fbb467873341b95721689513c14af6aa3067a1d95d6fafe08","impliedFormat":1},{"version":"4dbfeb147290c498e3aa56ea3198a6a109c5c0d9d7a4936a3138376302d89e7d","impliedFormat":1},{"version":"169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","impliedFormat":1},{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true,"impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","impliedFormat":1},{"version":"5009c081fd8ca3fcd6f3adcd071a1c79a933a400532b897822aad0943688a1f1","impliedFormat":1},{"version":"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","impliedFormat":1},{"version":"93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","impliedFormat":1},{"version":"c271193e426325d9acab2f99997bb9f5f2dff850ec8c7c011c5abafe5af83b5f","impliedFormat":1},{"version":"58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","impliedFormat":1},{"version":"a3e12bcf2d196656ccd5b5d5344182967a2bdde0f63c9b955c36169ed02c3555","impliedFormat":1},{"version":"a016d2f6c0a2c15069ec69661ad37c86a450deb629ce96a592f15f01d3a5746e","impliedFormat":1},{"version":"2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","impliedFormat":1},{"version":"2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","impliedFormat":1},{"version":"42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","impliedFormat":1},{"version":"d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","impliedFormat":1},{"version":"b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","impliedFormat":1},{"version":"7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","impliedFormat":1},{"version":"906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","impliedFormat":1},{"version":"5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","impliedFormat":1},{"version":"c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","impliedFormat":1},{"version":"e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","impliedFormat":1},{"version":"e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","impliedFormat":1},{"version":"9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","impliedFormat":1},{"version":"0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","impliedFormat":1},{"version":"71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","impliedFormat":1},{"version":"c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","impliedFormat":1},{"version":"2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","impliedFormat":1},{"version":"479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","impliedFormat":1},{"version":"ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","impliedFormat":1},{"version":"f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","impliedFormat":1},{"version":"86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","impliedFormat":1},{"version":"2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","impliedFormat":1},{"version":"a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","impliedFormat":1},{"version":"b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","impliedFormat":1},{"version":"61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","impliedFormat":1},{"version":"6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","impliedFormat":1},{"version":"c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","impliedFormat":1},{"version":"38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","impliedFormat":1},{"version":"d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","impliedFormat":1},{"version":"3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","impliedFormat":1},{"version":"b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","impliedFormat":1},{"version":"f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","impliedFormat":1},{"version":"843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","impliedFormat":1},{"version":"f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","impliedFormat":1},{"version":"6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","impliedFormat":1},{"version":"e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","impliedFormat":1},{"version":"a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","impliedFormat":1},{"version":"a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","impliedFormat":1},{"version":"da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","impliedFormat":1},{"version":"acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","impliedFormat":1},{"version":"6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","impliedFormat":1},{"version":"4fddd9f6929421ce580b4583defbb3f78f5a4a3642bea5ecd3209bf652d8b507","impliedFormat":1},{"version":"f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","impliedFormat":1},{"version":"82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","impliedFormat":1},{"version":"557e00bde9af85bcb3ab6b3a785904f028f9f1b65dba664f2fda44965acf8a78","impliedFormat":1},{"version":"397981908f102effb3cd483042076b593f3928264dbf06aec235a7c3e83da2b4","impliedFormat":1},{"version":"ad78491e2a3ae1e59680dbab88607dd670d06a91b1d6c451fa895ad390513e8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a9deb79dabc5153448e38589fbe38945fdad45f0f8442cd4d4e1da8bb879a76","affectsGlobalScope":true,"impliedFormat":1},{"version":"f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956","impliedFormat":1},{"version":"c9cc4c881c910ce378659524d985d2b72b79029b0c473df5d4d3557b4cf6010a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fae4b2bc906f3e6840725cc24affaa4e684e6c9cc20254242c5df4bede5b6f6","impliedFormat":1},{"version":"2dd1d4cea14cead7a7fc9eec8f40593089dff0de8c0199458446143c9b8c4ea9","impliedFormat":1},{"version":"c0288f54de6f544706a3150c8b579b1a975870695c4be866f727ece6a16f3976","impliedFormat":1},{"version":"ec2c7505ede4bc3ee37cfe431cfd87e545f55f27fe15b0809c1a411765145615","impliedFormat":1}],"options":{"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":100,"outDir":"./dist-cjs","removeComments":true,"rootDir":"./src","skipLibCheck":true,"strict":true,"target":8,"useUnknownInCatchVariables":false},"fileIdsList":[[69,74,122],[69,74,87,103,120,500],[69,74],[69,74,89,122,503],[69,74,80,122],[69,74,86,89,114,122,507,508,509],[69,74,122,518],[69,74,114,122,522],[69,74,89,122],[69,74,75,122],[69,74,511,512,526],[69,74,86,89,122,520,521],[69,74,504,521,522,529],[69,74,86,87,122,531],[69,74,86,89,91,94,103,114,122],[69,74,86,117,122,548,549,551],[69,74,550],[69,74,86,122],[69,74,553,555,556,557,558,559,560,561,562,563,564,565],[69,74,553,554,556,557,558,559,560,561,562,563,564,565],[69,74,554,555,556,557,558,559,560,561,562,563,564,565],[69,74,553,554,555,557,558,559,560,561,562,563,564,565],[69,74,553,554,555,556,558,559,560,561,562,563,564,565],[69,74,553,554,555,556,557,559,560,561,562,563,564,565],[69,74,553,554,555,556,557,558,560,561,562,563,564,565],[69,74,553,554,555,556,557,558,559,561,562,563,564,565],[69,74,553,554,555,556,557,558,559,560,562,563,564,565],[69,74,553,554,555,556,557,558,559,560,561,563,564,565],[69,74,553,554,555,556,557,558,559,560,561,562,564,565],[69,74,553,554,555,556,557,558,559,560,561,562,563,565],[69,74,553,554,555,556,557,558,559,560,561,562,563,564],[69,74,585],[69,74,570],[69,74,574,575,576],[69,74,573],[69,74,575],[69,74,552,571,572,577,580,582,583,584],[69,74,572,578,579,585],[69,74,578,581],[69,74,572,573,578,585],[69,74,572,585],[69,74,566,567,568,569],[69,74,89,114,122,591,592],[69,74,597],[69,74,86,87,122],[69,74,89,103,122],[69,74,600,639],[69,74,600,624,639],[69,74,639],[69,74,600],[69,74,600,625,639],[69,74,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638],[69,74,625,639],[69,74,87,530],[69,74,89,122,528],[69,74,641],[69,74,103,122],[69,74,86,89,91,103,111,114,120,122],[69,74,86,122,653],[69,74,537],[69,74,536,537],[69,74,536],[69,74,536,537,538,540,541,544,545,546,547],[69,74,537,541],[69,74,536,537,538,540,541,542,543],[69,74,536,541],[69,74,541,545],[69,74,537,538,539],[69,74,538],[69,74,536,537,541],[69,74,515],[69,74,512,513,514],[69,74,512,515],[69,74,89,94,111,114,117,511,513,515,516,517],[69,74,168,203],[69,74,168,202,341],[69,74,168,220,247,249,341],[69,74,250,251],[69,74,290],[69,74,168,252,290,300],[69,74,248,301,302,341,342,344,345],[69,74,249],[69,74,247,248],[69,74,247],[69,74,168,250,251,300],[69,74,168,250,251,341],[69,74,168,203,247,250,251,300,302,303,306,321,323,340],[69,74,168,193,203,247,300,302,341,349],[69,74,168,193,203,247,300,302,341,354,401],[69,74,168,203,302,341],[69,74,301],[69,74,479,480],[69,74,496],[69,74,168,366],[69,74,168,202,377],[69,74,168,220,247,368,377],[69,74,369,370,371,372],[69,74,168],[69,74,168,290,300,374],[69,74,367,373,375,376,377,378,379,383,384],[69,74,368],[69,74,247,367],[69,74,380,381,382],[69,74,168,377],[69,74,168,370,380],[69,74,168,371,380],[69,74,375],[69,74,168,369,370,371,372,377],[69,74,168,220,247,300,303,306,321,340,366,369,370,371,372,373,376],[50,69,74,196,201],[49,69,74],[69,74,168,184],[69,74,168,183],[69,74,183,184,185,194],[69,74,168,182],[69,74,168,193],[69,74,195],[69,74,197,198,199,200],[69,74,168,355],[69,74,355,356],[69,74,168,178,290,360,361],[69,74,362],[69,74,168,362],[69,74,168,357,360,363,365,391,399],[69,74,400],[69,74,168,178,290],[69,74,364],[69,74,168,178,290,386],[69,74,387,388,389,390],[69,74,168,388],[69,74,385],[69,74,168,290,358],[69,74,168,290],[69,74,358,359],[69,74,451],[69,74,304,305],[69,74,168,304],[69,74,444,447],[69,74,182],[69,74,445,446],[69,74,168,265,266],[69,74,260],[69,74,260,261,262,263,264],[69,74,253,254,255,256,257,258,259,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289],[69,74,265,266],[69,74,168,482],[69,74,168,422],[69,74,307,308,309,310],[69,74,168,309],[69,74,311,314,320],[69,74,312,313],[69,74,315],[69,74,168,317,318],[69,74,317,318,319],[69,74,316],[69,74,457,460,467,468,469,470,471],[69,74,168,454],[69,74,454,455,456],[69,74,458,459],[69,74,168,300],[69,74,462,463,464],[69,74,461,465,466],[69,74,168,392],[69,74,168,392,394],[69,74,392,393,394,395,396,397,398],[69,74,484,485,486],[69,74,322],[69,74,103,122,168],[69,74,424,425],[69,74,347,348],[69,74,488,489],[69,74,168,213,214],[69,74,215,216],[69,74,213,214,217,218,219],[69,74,168,331,333],[69,74,333,334,335,336,337,338,339],[69,74,168,335],[69,74,168,332],[69,74,413,414,415],[69,74,168,414],[69,74,168,169,179,180],[69,74,168,178],[69,74,181],[69,74,351,352,353],[69,74,89,91,122,168,300],[69,74,293],[69,74,294],[69,74,168,296],[69,74,168,291,292],[69,74,291,292,293,295,296,297,298,299],[69,74,170,171,172,173,174,175,176,177],[69,74,168,174],[69,74,186,187,188,189,190,191,192],[69,74,168,211],[69,74,168,220],[69,74,204],[69,74,168,230,231],[69,74,232],[69,74,168,204,212,221,222,223,224,225,226,227,228,229,233,234,235,236,237,238,239,240,241,242,243,244,245,246],[52,69,74],[51,69,74],[55,62,63,64,69,74],[62,65,69,74],[55,59,69,74],[55,65,69,74],[53,54,63,64,65,66,69,74],[69,74,103,122,124],[69,74,126],[60,61,62,69,74,128],[60,62,69,74],[69,74,130,132,133],[69,74,130,131],[69,74,135],[53,69,74],[56,69,74,137],[69,74,137],[69,74,137,138,139,140,141],[69,74,140],[57,69,74],[69,74,137,138,139],[59,60,62,69,74],[69,74,126,127],[69,74,143],[69,74,143,147],[69,74,143,144,147,148],[61,69,74,146],[69,74,123],[52,58,69,74],[57,59,69,74,89,91,122],[55,69,74],[55,69,74,151,152,153],[52,56,57,58,59,60,61,62,67,69,74,125,126,127,128,129,131,134,135,136,142,145,146,149,150,154,155,156,157,158,159,160,161,162,163,165,166,167],[53,56,57,61,69,74],[69,74,129],[69,74,145],[59,61,69,74,131],[59,60,69,74],[59,69,74,135],[61,69,74,126,127],[69,74,89,103,122,124,157],[60,69,74,128,162,163],[59,69,74,89,90,122,128,129,157,161,162,163,164],[69,74,128,129],[59,69,74],[69,74,432,433],[69,74,491],[69,74,428],[69,74,493],[69,74,168,247],[69,74,440],[69,74,407,408],[69,74,168,324],[69,74,168,326],[69,74,324],[69,74,324,325,326,327,328,329,330],[69,74,103],[69,74,205,206,207,208,209,210],[69,74,103,168],[69,74,435,436,437],[69,70,74],[69,73,74],[69,74,79,106],[69,74,75,86,87,94,103,114],[69,74,75,76,86,94],[69,74,77,115],[69,74,78,79,87,95],[69,74,79,103,111],[69,74,80,82,86,94],[69,74,81],[69,74,82,83],[69,74,86],[69,74,85,86],[69,73,74,86],[69,74,86,87,88,103,114],[69,74,86,87,88,103],[69,74,86,89,94,103,114],[69,74,86,87,89,90,94,103,111,114],[69,74,89,91,103,111,114],[69,74,86,92],[69,74,93,114,119],[69,74,82,86,94,103],[69,74,95],[69,74,96],[69,73,74,97],[69,74,98,113,119],[69,74,99],[69,74,100],[69,74,86,101],[69,74,101,102,115,117],[69,74,86,103,104,105],[69,74,103,105],[69,74,103,104],[69,74,106],[69,74,107],[69,74,86,109,110],[69,74,109,110],[69,74,79,94,103,111],[69,74,112],[74],[68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121],[69,74,94,113],[69,74,89,100,114],[69,74,79,115],[69,74,103,116],[69,74,117],[69,74,118],[69,74,79,86,88,97,103,114,117,119],[69,74,103,120],[69,74,168,406,410],[69,74,168,202,406,409,474],[69,74,168,247,406,412,416,419,474],[69,74,406,417,420],[69,74,290,321,406],[69,74,168,290,300,406,443],[69,74,406,411,449,450,474,475,476,477],[69,74,406,412],[69,74,247,406,411],[69,74,247,406],[69,74,168,202,247,300,406,411,412,417,418,420],[69,74,168,247,406,417,420,474],[69,74,168,247,300,303,306,321,323,340,406,410,417,420,442,450,452,453,472,473],[69,74,247,321,331,349,406,421,439,474,481,483,487,490,492,494],[69,74,406,474,495,497],[69,74,168,202,247,406,410,430,431,434,438,474],[69,74,182,202,247,321,331,340,354,401,406,421,423,426,427,429,439,441,474],[69,74,247,300,406,443,448,449],[69,74,168,252,290,655],[69,74,168,250,251,655],[69,74,168,203,247,250,251,302,303,306,321,323,340,655],[69,74,168,193,203,247,302,341,349,655],[69,74,168,193,203,247,302,341,354,401,655],[168,410],[168,202,474],[168,220,247,412,474],[417,420],[290],[168,290,443,655],[411,449,450,474,475,476,477],[412],[247,411],[247],[168,417,420,655],[168,417,420,474],[168,247,303,306,321,323,340,410,417,420,450,655],[168,193,247,300,349,410,450,474],[168,410,450,474],[168,193,247,300,354,401,410,450,474],[449]],"referencedMap":[[499,1],[501,2],[502,3],[504,4],[505,5],[506,3],[510,6],[519,7],[523,8],[503,9],[524,10],[525,3],[526,3],[527,11],[511,3],[522,12],[530,13],[532,14],[531,3],[508,3],[533,15],[534,3],[535,3],[550,16],[551,17],[512,3],[507,18],[552,3],[554,19],[555,20],[553,21],[556,22],[557,23],[558,24],[559,25],[560,26],[561,27],[562,28],[563,29],[564,30],[565,31],[586,32],[571,33],[577,34],[575,3],[574,35],[576,36],[585,37],[580,38],[582,39],[583,40],[584,41],[578,3],[579,41],[581,41],[573,41],[572,3],[567,3],[566,3],[569,33],[570,42],[568,33],[587,3],[528,3],[588,3],[589,3],[590,3],[592,3],[593,43],[594,3],[595,3],[596,3],[598,44],[521,3],[520,3],[500,45],[599,3],[509,46],[597,3],[624,47],[625,48],[600,49],[603,49],[622,47],[623,47],[613,47],[612,50],[610,47],[605,47],[618,47],[616,47],[620,47],[604,47],[617,47],[621,47],[606,47],[607,47],[619,47],[601,47],[608,47],[609,47],[611,47],[615,47],[626,51],[614,47],[602,47],[639,52],[638,3],[633,51],[635,53],[634,51],[627,51],[628,51],[630,51],[632,51],[636,53],[637,53],[629,53],[631,53],[640,54],[529,55],[642,56],[641,3],[643,3],[644,9],[645,57],[646,3],[549,3],[648,3],[647,3],[649,3],[650,3],[651,3],[652,58],[654,59],[653,3],[514,3],[591,46],[538,60],[547,61],[536,3],[537,62],[548,63],[543,64],[544,65],[542,66],[546,67],[540,68],[539,69],[545,70],[541,61],[516,71],[515,72],[513,73],[517,3],[518,74],[252,75],[203,76],[250,77],[344,78],[251,77],[343,79],[301,80],[346,81],[345,82],[249,83],[248,84],[405,85],[342,86],[341,87],[350,88],[402,89],[403,88],[404,90],[302,91],[479,79],[481,92],[480,79],[497,93],[496,79],[374,94],[366,95],[369,96],[379,97],[370,96],[371,96],[372,96],[373,98],[375,99],[385,100],[384,101],[368,102],[367,84],[383,103],[380,104],[381,105],[382,106],[376,107],[378,108],[377,109],[202,110],[49,3],[50,111],[185,112],[184,113],[195,114],[183,115],[194,116],[196,117],[197,3],[201,118],[198,3],[199,98],[200,98],[356,119],[355,79],[357,120],[362,121],[363,122],[361,123],[400,124],[401,125],[364,126],[365,127],[387,128],[391,129],[389,130],[386,131],[388,98],[390,130],[359,132],[358,133],[360,134],[303,98],[452,135],[451,98],[453,98],[304,98],[306,136],[305,137],[444,133],[448,138],[445,139],[447,140],[446,98],[253,98],[254,98],[255,98],[256,98],[257,98],[258,98],[259,98],[267,141],[268,98],[269,3],[270,98],[271,98],[272,98],[273,98],[274,98],[261,142],[262,98],[260,98],[265,143],[263,142],[264,98],[290,144],[275,98],[276,98],[277,98],[278,98],[279,3],[280,98],[281,98],[282,98],[283,98],[284,98],[285,98],[286,145],[287,98],[288,98],[266,98],[289,98],[482,3],[483,146],[422,3],[423,147],[311,148],[307,139],[308,139],[310,149],[309,98],[321,150],[312,139],[314,151],[313,98],[316,152],[315,3],[319,153],[320,154],[317,155],[318,155],[468,98],[472,156],[455,157],[456,157],[454,98],[457,158],[459,98],[458,98],[460,159],[469,98],[471,98],[470,160],[461,98],[462,160],[463,160],[465,161],[464,98],[467,162],[466,98],[398,3],[393,163],[395,164],[399,165],[396,9],[392,98],[394,98],[397,98],[484,98],[487,166],[485,98],[486,3],[322,98],[323,167],[424,168],[426,169],[425,98],[347,160],[349,170],[348,98],[427,98],[490,171],[488,3],[489,98],[473,98],[215,172],[217,173],[216,98],[218,172],[219,172],[220,174],[213,98],[214,3],[334,175],[335,115],[336,3],[340,176],[337,98],[338,98],[339,177],[333,178],[332,98],[413,98],[416,179],[414,98],[415,180],[181,181],[169,98],[179,182],[180,98],[182,183],[354,184],[351,185],[352,160],[353,98],[294,186],[295,187],[296,98],[297,188],[293,189],[291,98],[292,98],[300,190],[298,3],[299,98],[170,3],[171,3],[172,3],[173,3],[178,191],[174,98],[175,98],[176,192],[177,98],[192,98],[187,98],[188,98],[189,98],[193,193],[190,98],[191,98],[186,98],[204,98],[212,194],[221,195],[222,3],[223,196],[224,3],[225,3],[226,3],[227,3],[228,98],[229,3],[230,98],[232,197],[233,198],[231,98],[234,3],[235,3],[247,199],[236,3],[237,3],[238,98],[239,3],[240,3],[241,3],[242,3],[243,3],[244,3],[245,3],[246,3],[51,200],[52,201],[53,3],[54,3],[65,202],[66,203],[63,204],[64,205],[67,206],[125,207],[127,208],[129,209],[128,210],[130,3],[134,211],[132,212],[133,3],[126,3],[136,213],[56,214],[138,215],[139,216],[142,217],[141,218],[137,219],[140,220],[135,221],[143,222],[144,223],[148,224],[149,225],[147,226],[124,227],[59,228],[150,229],[151,230],[152,230],[55,3],[154,231],[153,230],[168,232],[57,3],[62,233],[155,234],[156,3],[60,3],[146,235],[157,236],[145,237],[158,238],[159,239],[160,207],[161,207],[162,240],[131,3],[164,241],[165,242],[123,3],[166,243],[163,3],[58,244],[61,221],[167,200],[431,98],[432,3],[434,245],[433,3],[491,3],[492,246],[428,3],[429,247],[494,248],[493,249],[441,250],[440,249],[407,98],[409,251],[408,98],[325,252],[329,3],[327,253],[330,3],[328,254],[331,255],[326,98],[324,3],[205,3],[206,168],[209,256],[211,257],[207,258],[208,57],[210,3],[435,3],[438,259],[436,3],[437,3],[70,260],[71,260],[73,261],[74,262],[75,263],[76,264],[77,265],[78,266],[79,267],[80,268],[81,269],[82,270],[83,270],[84,271],[85,272],[86,273],[87,274],[88,275],[72,3],[121,3],[89,276],[90,277],[91,278],[92,279],[93,280],[94,281],[95,282],[96,283],[97,284],[98,285],[99,286],[100,287],[101,288],[102,289],[103,290],[105,291],[104,292],[106,293],[107,294],[108,3],[109,295],[110,296],[111,297],[112,298],[69,299],[68,3],[122,300],[113,301],[114,302],[115,303],[116,304],[117,305],[118,306],[119,307],[120,308],[418,3],[406,3],[9,3],[10,3],[12,3],[11,3],[2,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[3,3],[4,3],[24,3],[21,3],[22,3],[23,3],[25,3],[26,3],[27,3],[5,3],[28,3],[29,3],[30,3],[31,3],[6,3],[35,3],[32,3],[33,3],[34,3],[36,3],[7,3],[37,3],[42,3],[43,3],[38,3],[39,3],[40,3],[41,3],[8,3],[47,3],[44,3],[45,3],[46,3],[1,3],[48,3],[421,3],[443,309],[410,310],[420,311],[476,312],[417,311],[430,313],[449,314],[478,315],[477,316],[412,317],[411,318],[419,319],[475,320],[474,321],[495,322],[498,323],[439,324],[442,325],[450,326]],"exportedModulesMap":[[499,1],[501,2],[502,3],[504,4],[505,5],[506,3],[510,6],[519,7],[523,8],[503,9],[524,10],[525,3],[526,3],[527,11],[511,3],[522,12],[530,13],[532,14],[531,3],[508,3],[533,15],[534,3],[535,3],[550,16],[551,17],[512,3],[507,18],[552,3],[554,19],[555,20],[553,21],[556,22],[557,23],[558,24],[559,25],[560,26],[561,27],[562,28],[563,29],[564,30],[565,31],[586,32],[571,33],[577,34],[575,3],[574,35],[576,36],[585,37],[580,38],[582,39],[583,40],[584,41],[578,3],[579,41],[581,41],[573,41],[572,3],[567,3],[566,3],[569,33],[570,42],[568,33],[587,3],[528,3],[588,3],[589,3],[590,3],[592,3],[593,43],[594,3],[595,3],[596,3],[598,44],[521,3],[520,3],[500,45],[599,3],[509,46],[597,3],[624,47],[625,48],[600,49],[603,49],[622,47],[623,47],[613,47],[612,50],[610,47],[605,47],[618,47],[616,47],[620,47],[604,47],[617,47],[621,47],[606,47],[607,47],[619,47],[601,47],[608,47],[609,47],[611,47],[615,47],[626,51],[614,47],[602,47],[639,52],[638,3],[633,51],[635,53],[634,51],[627,51],[628,51],[630,51],[632,51],[636,53],[637,53],[629,53],[631,53],[640,54],[529,55],[642,56],[641,3],[643,3],[644,9],[645,57],[646,3],[549,3],[648,3],[647,3],[649,3],[650,3],[651,3],[652,58],[654,59],[653,3],[514,3],[591,46],[538,60],[547,61],[536,3],[537,62],[548,63],[543,64],[544,65],[542,66],[546,67],[540,68],[539,69],[545,70],[541,61],[516,71],[515,72],[513,73],[517,3],[518,74],[252,75],[203,76],[250,77],[344,78],[251,77],[343,79],[301,327],[346,81],[345,82],[249,83],[248,84],[405,328],[342,86],[341,329],[350,330],[402,331],[403,330],[404,90],[302,91],[479,79],[481,92],[480,79],[497,93],[496,79],[374,94],[366,95],[369,96],[379,97],[370,96],[371,96],[372,96],[373,98],[375,99],[385,100],[384,101],[368,102],[367,84],[383,103],[380,104],[381,105],[382,106],[376,107],[378,108],[377,109],[202,110],[49,3],[50,111],[185,112],[184,113],[195,114],[183,115],[194,116],[196,117],[197,3],[201,118],[198,3],[199,98],[200,98],[356,119],[355,79],[357,120],[362,121],[363,122],[361,123],[400,124],[401,125],[364,126],[365,127],[387,128],[391,129],[389,130],[386,131],[388,98],[390,130],[359,132],[358,133],[360,134],[303,98],[452,135],[451,98],[453,98],[304,98],[306,136],[305,137],[444,133],[448,138],[445,139],[447,140],[446,98],[253,98],[254,98],[255,98],[256,98],[257,98],[258,98],[259,98],[267,141],[268,98],[269,3],[270,98],[271,98],[272,98],[273,98],[274,98],[261,142],[262,98],[260,98],[265,143],[263,142],[264,98],[290,144],[275,98],[276,98],[277,98],[278,98],[279,3],[280,98],[281,98],[282,98],[283,98],[284,98],[285,98],[286,145],[287,98],[288,98],[266,98],[289,98],[482,3],[483,146],[422,3],[423,147],[311,148],[307,139],[308,139],[310,149],[309,98],[321,150],[312,139],[314,151],[313,98],[316,152],[315,3],[319,153],[320,154],[317,155],[318,155],[468,98],[472,156],[455,157],[456,157],[454,98],[457,158],[459,98],[458,98],[460,159],[469,98],[471,98],[470,160],[461,98],[462,160],[463,160],[465,161],[464,98],[467,162],[466,98],[398,3],[393,163],[395,164],[399,165],[396,9],[392,98],[394,98],[397,98],[484,98],[487,166],[485,98],[486,3],[322,98],[323,167],[424,168],[426,169],[425,98],[347,160],[349,170],[348,98],[427,98],[490,171],[488,3],[489,98],[473,98],[215,172],[217,173],[216,98],[218,172],[219,172],[220,174],[213,98],[214,3],[334,175],[335,115],[336,3],[340,176],[337,98],[338,98],[339,177],[333,178],[332,98],[413,98],[416,179],[414,98],[415,180],[181,181],[169,98],[179,182],[180,98],[182,183],[354,184],[351,185],[352,160],[353,98],[294,186],[295,187],[296,98],[297,188],[293,189],[291,98],[292,98],[300,190],[298,3],[299,98],[170,3],[171,3],[172,3],[173,3],[178,191],[174,98],[175,98],[176,192],[177,98],[192,98],[187,98],[188,98],[189,98],[193,193],[190,98],[191,98],[186,98],[204,98],[212,194],[221,195],[222,3],[223,196],[224,3],[225,3],[226,3],[227,3],[228,98],[229,3],[230,98],[232,197],[233,198],[231,98],[234,3],[235,3],[247,199],[236,3],[237,3],[238,98],[239,3],[240,3],[241,3],[242,3],[243,3],[244,3],[245,3],[246,3],[51,200],[52,201],[53,3],[54,3],[65,202],[66,203],[63,204],[64,205],[67,206],[125,207],[127,208],[129,209],[128,210],[130,3],[134,211],[132,212],[133,3],[126,3],[136,213],[56,214],[138,215],[139,216],[142,217],[141,218],[137,219],[140,220],[135,221],[143,222],[144,223],[148,224],[149,225],[147,226],[124,227],[59,228],[150,229],[151,230],[152,230],[55,3],[154,231],[153,230],[168,232],[57,3],[62,233],[155,234],[156,3],[60,3],[146,235],[157,236],[145,237],[158,238],[159,239],[160,207],[161,207],[162,240],[131,3],[164,241],[165,242],[123,3],[166,243],[163,3],[58,244],[61,221],[167,200],[431,98],[432,3],[434,245],[433,3],[491,3],[492,246],[428,3],[429,247],[494,248],[493,249],[441,250],[440,249],[407,98],[409,251],[408,98],[325,252],[329,3],[327,253],[330,3],[328,254],[331,255],[326,98],[324,3],[205,3],[206,168],[209,256],[211,257],[207,258],[208,57],[210,3],[435,3],[438,259],[436,3],[437,3],[70,260],[71,260],[73,261],[74,262],[75,263],[76,264],[77,265],[78,266],[79,267],[80,268],[81,269],[82,270],[83,270],[84,271],[85,272],[86,273],[87,274],[88,275],[72,3],[121,3],[89,276],[90,277],[91,278],[92,279],[93,280],[94,281],[95,282],[96,283],[97,284],[98,285],[99,286],[100,287],[101,288],[102,289],[103,290],[105,291],[104,292],[106,293],[107,294],[108,3],[109,295],[110,296],[111,297],[112,298],[69,299],[68,3],[122,300],[113,301],[114,302],[115,303],[116,304],[117,305],[118,306],[119,307],[120,308],[418,3],[406,3],[9,3],[10,3],[12,3],[11,3],[2,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[3,3],[4,3],[24,3],[21,3],[22,3],[23,3],[25,3],[26,3],[27,3],[5,3],[28,3],[29,3],[30,3],[31,3],[6,3],[35,3],[32,3],[33,3],[34,3],[36,3],[7,3],[37,3],[42,3],[43,3],[38,3],[39,3],[40,3],[41,3],[8,3],[47,3],[44,3],[45,3],[46,3],[1,3],[48,3],[443,332],[410,333],[420,334],[476,335],[417,334],[430,336],[449,337],[478,338],[477,339],[412,340],[411,341],[419,342],[475,343],[474,344],[495,345],[498,345],[439,346],[442,347],[450,348]],"semanticDiagnosticsPerFile":[499,501,502,504,505,506,510,519,523,503,524,525,526,527,511,522,530,532,531,508,533,534,535,550,551,512,507,552,554,555,553,556,557,558,559,560,561,562,563,564,565,586,571,577,575,574,576,585,580,582,583,584,578,579,581,573,572,567,566,569,570,568,587,528,588,589,590,592,593,594,595,596,598,521,520,500,599,509,597,624,625,600,603,622,623,613,612,610,605,618,616,620,604,617,621,606,607,619,601,608,609,611,615,626,614,602,639,638,633,635,634,627,628,630,632,636,637,629,631,640,529,642,641,643,644,645,646,549,648,647,649,650,651,652,654,653,514,591,538,547,536,537,548,543,544,542,546,540,539,545,541,516,515,513,517,518,252,203,250,344,251,343,301,346,345,249,248,405,342,341,350,402,403,404,302,479,481,480,497,496,374,366,369,379,370,371,372,373,375,385,384,368,367,383,380,381,382,376,378,377,202,49,50,185,184,195,183,194,196,197,201,198,199,200,356,355,357,362,363,361,400,401,364,365,387,391,389,386,388,390,359,358,360,303,452,451,453,304,306,305,444,448,445,447,446,253,254,255,256,257,258,259,267,268,269,270,271,272,273,274,261,262,260,265,263,264,290,275,276,277,278,279,280,281,282,283,284,285,286,287,288,266,289,482,483,422,423,311,307,308,310,309,321,312,314,313,316,315,319,320,317,318,468,472,455,456,454,457,459,458,460,469,471,470,461,462,463,465,464,467,466,398,393,395,399,396,392,394,397,484,487,485,486,322,323,424,426,425,347,349,348,427,490,488,489,473,215,217,216,218,219,220,213,214,334,335,336,340,337,338,339,333,332,413,416,414,415,181,169,179,180,182,354,351,352,353,294,295,296,297,293,291,292,300,298,299,170,171,172,173,178,174,175,176,177,192,187,188,189,193,190,191,186,204,212,221,222,223,224,225,226,227,228,229,230,232,233,231,234,235,247,236,237,238,239,240,241,242,243,244,245,246,51,52,53,54,65,66,63,64,67,125,127,129,128,130,134,132,133,126,136,56,138,139,142,141,137,140,135,143,144,148,149,147,124,59,150,151,152,55,154,153,168,57,62,155,156,60,146,157,145,158,159,160,161,162,131,164,165,123,166,163,58,61,167,431,432,434,433,491,492,428,429,494,493,441,440,407,409,408,325,329,327,330,328,331,326,324,205,206,209,211,207,208,210,435,438,436,437,70,71,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,72,121,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,105,104,106,107,108,109,110,111,112,69,68,122,113,114,115,116,117,118,119,120,418,406,9,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,1,48,421,443,410,420,476,417,430,449,478,477,412,411,419,475,474,495,498,439,442,450]},"version":"4.9.5"} \ No newline at end of file diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.es.tsbuildinfo b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.es.tsbuildinfo index 2f3dcb0faf3..a3fb1426fde 100644 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.es.tsbuildinfo +++ b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.es.tsbuildinfo @@ -1 +1 @@ -{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/client/emitwarningifunsupportedversion.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts","./node_modules/@smithy/types/dist-types/abort-handler.d.ts","./node_modules/@smithy/types/dist-types/abort.d.ts","./node_modules/@smithy/types/dist-types/auth/auth.d.ts","./node_modules/@smithy/types/dist-types/auth/httpapikeyauth.d.ts","./node_modules/@smithy/types/dist-types/identity/identity.d.ts","./node_modules/@smithy/types/dist-types/endpoint.d.ts","./node_modules/@smithy/types/dist-types/logger.d.ts","./node_modules/@smithy/types/dist-types/uri.d.ts","./node_modules/@smithy/types/dist-types/http.d.ts","./node_modules/@smithy/types/dist-types/response.d.ts","./node_modules/@smithy/types/dist-types/util.d.ts","./node_modules/@smithy/types/dist-types/middleware.d.ts","./node_modules/@smithy/types/dist-types/auth/httpsigner.d.ts","./node_modules/@smithy/types/dist-types/auth/identityproviderconfig.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthscheme.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/types/dist-types/auth/index.d.ts","./node_modules/@types/node/ts5.6/globals.typedarray.d.ts","./node_modules/@types/node/ts5.6/buffer.buffer.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/dom-events.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/ts5.6/index.d.ts","./node_modules/@smithy/types/dist-types/transform/exact.d.ts","./node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts","./node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/crypto.d.ts","./node_modules/@smithy/types/dist-types/checksum.d.ts","./node_modules/@smithy/types/dist-types/command.d.ts","./node_modules/@smithy/types/dist-types/client.d.ts","./node_modules/@smithy/types/dist-types/connection/config.d.ts","./node_modules/@smithy/types/dist-types/transfer.d.ts","./node_modules/@smithy/types/dist-types/connection/manager.d.ts","./node_modules/@smithy/types/dist-types/connection/pool.d.ts","./node_modules/@smithy/types/dist-types/connection/index.d.ts","./node_modules/@smithy/types/dist-types/eventstream.d.ts","./node_modules/@smithy/types/dist-types/encode.d.ts","./node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","./node_modules/@smithy/types/dist-types/endpoints/endpointruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/errorruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/treeruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/rulesetobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/index.d.ts","./node_modules/@smithy/types/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultclientconfiguration.d.ts","./node_modules/@smithy/types/dist-types/shapes.d.ts","./node_modules/@smithy/types/dist-types/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/types/dist-types/extensions/index.d.ts","./node_modules/@smithy/types/dist-types/http/httphandlerinitialization.d.ts","./node_modules/@smithy/types/dist-types/identity/apikeyidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/index.d.ts","./node_modules/@smithy/types/dist-types/pagination.d.ts","./node_modules/@smithy/types/dist-types/profile.d.ts","./node_modules/@smithy/types/dist-types/serde.d.ts","./node_modules/@smithy/types/dist-types/signature.d.ts","./node_modules/@smithy/types/dist-types/stream.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","./node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","./node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","./node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","./node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts","./node_modules/@smithy/types/dist-types/waiter.d.ts","./node_modules/@smithy/types/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromenv.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/gethomedir.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getprofilename.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfilepath.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfromfile.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadsharedconfigfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadssosessiondata.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/parseknownfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromsharedconfigfiles.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromstatic.d.ts","./node_modules/@smithy/node-config-provider/dist-types/configloader.d.ts","./node_modules/@smithy/node-config-provider/dist-types/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4aconfig.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4signer.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4asigner.d.ts","./node_modules/@smithy/signature-v4/dist-types/signaturev4.d.ts","./node_modules/@smithy/signature-v4/dist-types/getcanonicalheaders.d.ts","./node_modules/@smithy/signature-v4/dist-types/getcanonicalquery.d.ts","./node_modules/@smithy/signature-v4/dist-types/getpayloadhash.d.ts","./node_modules/@smithy/signature-v4/dist-types/moveheaderstoquery.d.ts","./node_modules/@smithy/signature-v4/dist-types/preparerequest.d.ts","./node_modules/@smithy/signature-v4/dist-types/credentialderivation.d.ts","./node_modules/@smithy/signature-v4/dist-types/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4config.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/coercing-serializers.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsexpectunion.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parsejsonbody.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/parsexmlbody.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts","./node_modules/@aws-sdk/core/dist-types/index.d.ts","./dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/smithy-client/dist-types/client.d.ts","./node_modules/@smithy/util-stream/dist-types/blob/uint8arrayblobadapter.d.ts","./node_modules/@smithy/util-stream/dist-types/getawschunkedencodingstream.d.ts","./node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts","./node_modules/@smithy/util-stream/dist-types/splitstream.d.ts","./node_modules/@smithy/util-stream/dist-types/headstream.d.ts","./node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts","./node_modules/@smithy/util-stream/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/resolveendpointconfig.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getendpointfrominstructions.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toendpointv1.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/endpointmiddleware.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/getendpointplugin.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/command.d.ts","./node_modules/@smithy/smithy-client/dist-types/constants.d.ts","./node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts","./node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts","./node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts","./node_modules/@smithy/smithy-client/dist-types/emitwarningifunsupportedversion.d.ts","./node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts","./node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts","./node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts","./node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/nooplogger.d.ts","./node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts","./node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/quote-header.d.ts","./node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts","./node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-every.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-header.d.ts","./node_modules/@smithy/smithy-client/dist-types/index.d.ts","./dist-types/models/qdeveloperstreamingserviceexception.d.ts","./dist-types/models/models_0.d.ts","./dist-types/commands/generatecodefromcommandscommand.d.ts","./dist-types/commands/sendmessagecommand.d.ts","./dist-types/auth/httpauthextensionconfiguration.d.ts","./node_modules/@aws-sdk/types/dist-types/abort.d.ts","./node_modules/@aws-sdk/types/dist-types/auth.d.ts","./node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","./node_modules/@aws-sdk/types/dist-types/checksum.d.ts","./node_modules/@aws-sdk/types/dist-types/client.d.ts","./node_modules/@aws-sdk/types/dist-types/command.d.ts","./node_modules/@aws-sdk/types/dist-types/connection.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/identity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/anonymousidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/loginidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","./node_modules/@aws-sdk/types/dist-types/util.d.ts","./node_modules/@aws-sdk/types/dist-types/credentials.d.ts","./node_modules/@aws-sdk/types/dist-types/crypto.d.ts","./node_modules/@aws-sdk/types/dist-types/dns.d.ts","./node_modules/@aws-sdk/types/dist-types/encode.d.ts","./node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","./node_modules/@aws-sdk/types/dist-types/eventstream.d.ts","./node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/types/dist-types/http.d.ts","./node_modules/@aws-sdk/types/dist-types/logger.d.ts","./node_modules/@aws-sdk/types/dist-types/middleware.d.ts","./node_modules/@aws-sdk/types/dist-types/pagination.d.ts","./node_modules/@aws-sdk/types/dist-types/profile.d.ts","./node_modules/@aws-sdk/types/dist-types/request.d.ts","./node_modules/@aws-sdk/types/dist-types/response.d.ts","./node_modules/@aws-sdk/types/dist-types/retry.d.ts","./node_modules/@aws-sdk/types/dist-types/serde.d.ts","./node_modules/@aws-sdk/types/dist-types/shapes.d.ts","./node_modules/@aws-sdk/types/dist-types/signature.d.ts","./node_modules/@aws-sdk/types/dist-types/stream.d.ts","./node_modules/@aws-sdk/types/dist-types/token.d.ts","./node_modules/@aws-sdk/types/dist-types/transfer.d.ts","./node_modules/@aws-sdk/types/dist-types/uri.d.ts","./node_modules/@aws-sdk/types/dist-types/waiter.d.ts","./node_modules/@aws-sdk/types/dist-types/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/httprequest.d.ts","./node_modules/@smithy/protocol-http/dist-types/httpresponse.d.ts","./node_modules/@smithy/protocol-http/dist-types/httphandler.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/httpextensionconfiguration.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/field.d.ts","./node_modules/@smithy/protocol-http/dist-types/fields.d.ts","./node_modules/@smithy/protocol-http/dist-types/isvalidhostname.d.ts","./node_modules/@smithy/protocol-http/dist-types/types.d.ts","./node_modules/@smithy/protocol-http/dist-types/index.d.ts","./dist-types/extensionconfiguration.d.ts","./dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusedualstackendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusefipsendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolveendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolvecustomendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvarianttag.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvariant.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/partitionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/regionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/getregioninfo.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/eventstreamserdeconfig.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts","./node_modules/@smithy/util-retry/dist-types/types.d.ts","./node_modules/@smithy/util-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/configuredretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/defaultratelimiter.d.ts","./node_modules/@smithy/util-retry/dist-types/config.d.ts","./node_modules/@smithy/util-retry/dist-types/constants.d.ts","./node_modules/@smithy/util-retry/dist-types/index.d.ts","./node_modules/@smithy/middleware-retry/dist-types/types.d.ts","./node_modules/@smithy/middleware-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts","./node_modules/@smithy/middleware-retry/dist-types/delaydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/omitretryheadersmiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrymiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/index.d.ts","./dist-types/qdeveloperstreamingclient.d.ts","./dist-types/qdeveloperstreaming.d.ts","./dist-types/endpoints.d.ts","./dist-types/commands/index.d.ts","./dist-types/models/index.d.ts","./dist-types/index.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts","./dist-types/runtimeconfig.browser.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts","./node_modules/@smithy/node-http-handler/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/fromhttp/fromhttptypes.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/fromhttp/fromhttp.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromwebtoken.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromtokenfile.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveassumerolecredentials.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/fromini.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-process/dist-types/fromprocess.d.ts","./node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/ssoserviceexception.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/getrolecredentialscommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/listaccountrolescommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/listaccountscommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/logoutcommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointparameters.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/auth/httpauthextensionconfiguration.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/extensionconfiguration.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/ssoclient.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/sso.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/interfaces.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/listaccountrolespaginator.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/listaccountspaginator.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/loadsso.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/fromsso.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/isssoprofile.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/validatessoprofile.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/remoteprovider/remoteproviderinit.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/fromcontainermetadata.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/frominstancemetadata.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/remoteprovider/httprequest.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/utils/getinstancemetadataendpoint.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/config/endpoint.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-node/dist-types/defaultprovider.d.ts","./node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts","./dist-types/runtimeconfig.d.ts","./dist-types/runtimeconfig.native.d.ts","./dist-types/runtimeconfig.shared.d.ts","./dist-types/protocols/aws_json1_0.d.ts","./node_modules/tslib/tslib.d.ts","./node_modules/@smithy/util-middleware/dist-types/getsmithycontext.d.ts","./node_modules/@smithy/util-middleware/dist-types/normalizeprovider.d.ts","./node_modules/@smithy/util-middleware/dist-types/index.d.ts","./src/auth/httpauthschemeprovider.ts","./src/models/qdeveloperstreamingserviceexception.ts","./src/models/models_0.ts","./node_modules/@smithy/middleware-serde/dist-types/deserializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serdeplugin.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/index.d.ts","./src/commands/sendmessagecommand.ts","./node_modules/@types/uuid/index.d.ts","./src/protocols/aws_json1_0.ts","./src/commands/generatecodefromcommandscommand.ts","./package.json","./node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts","./node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts","./node_modules/@smithy/hash-node/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/index.d.ts","./src/endpoints.ts","./node_modules/@smithy/url-parser/dist-types/index.d.ts","./node_modules/@smithy/util-base64/dist-types/frombase64.d.ts","./node_modules/@smithy/util-base64/dist-types/tobase64.d.ts","./node_modules/@smithy/util-base64/dist-types/index.d.ts","./node_modules/@smithy/util-utf8/dist-types/fromutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/touint8array.d.ts","./node_modules/@smithy/util-utf8/dist-types/toutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/index.d.ts","./src/runtimeconfig.shared.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts","./src/runtimeconfig.ts","./src/auth/httpauthextensionconfiguration.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts","./src/extensionconfiguration.ts","./src/runtimeextensions.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/loggermiddleware.d.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpauthschememiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/gethttpauthschemeendpointrulesetplugin.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/gethttpauthschemeplugin.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/httpsigningmiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/gethttpsigningmiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/defaultidentityproviderconfig.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/httpapikeyauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/httpbearerauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/noauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/index.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeidentityprovider.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts","./node_modules/@smithy/core/dist-types/getsmithycontext.d.ts","./node_modules/@smithy/core/dist-types/normalizeprovider.d.ts","./node_modules/@smithy/core/dist-types/protocols/requestbuilder.d.ts","./node_modules/@smithy/core/dist-types/pagination/createpaginator.d.ts","./node_modules/@smithy/core/dist-types/index.d.ts","./node_modules/@smithy/middleware-content-length/dist-types/index.d.ts","./src/qdeveloperstreamingclient.ts","./src/qdeveloperstreaming.ts","./src/commands/index.ts","./src/models/index.ts","./src/index.ts","./node_modules/@aws-crypto/sha256-browser/build/main/crossplatformsha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/main/webcryptosha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/invalidfunction.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/invalidprovider.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts","./src/runtimeconfig.browser.ts","./node_modules/@aws-crypto/sha256-js/build/main/jssha256.d.ts","./node_modules/@aws-crypto/sha256-js/build/main/index.d.ts","./src/runtimeconfig.native.ts","../../../node_modules/@types/adm-zip/index.d.ts","../../../node_modules/@types/readdir-glob/index.d.ts","../../../node_modules/@types/archiver/index.d.ts","../../../node_modules/@types/async-lock/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/bytes/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/circular-dependency-plugin/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/cross-spawn/index.d.ts","../../../node_modules/@types/diff/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/glob/node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/parse5/dist/cjs/common/html.d.ts","../../../node_modules/parse5/dist/cjs/common/token.d.ts","../../../node_modules/parse5/dist/cjs/common/error-codes.d.ts","../../../node_modules/parse5/dist/cjs/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/dist/cjs/tokenizer/index.d.ts","../../../node_modules/parse5/dist/cjs/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/cjs/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/cjs/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/cjs/parser/index.d.ts","../../../node_modules/parse5/dist/cjs/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/cjs/serializer/index.d.ts","../../../node_modules/parse5/dist/cjs/common/foreign-content.d.ts","../../../node_modules/parse5/dist/cjs/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/linkify-it/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdurl/encode.d.ts","../../../node_modules/@types/mdurl/decode.d.ts","../../../node_modules/@types/mdurl/parse.d.ts","../../../node_modules/@types/mdurl/format.d.ts","../../../node_modules/@types/mdurl/index.d.ts","../../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../../node_modules/@types/markdown-it/lib/token.d.ts","../../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../../node_modules/@types/markdown-it/lib/index.d.ts","../../../node_modules/@types/markdown-it/index.d.ts","../../../node_modules/@types/mime-types/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/prismjs/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/proper-lockfile/index.d.ts","../../../node_modules/@types/readline-sync/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sinon/node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/stream-buffers/index.d.ts","../../../node_modules/@types/tcp-port-used/index.d.ts","../../../node_modules/@types/vscode/index.d.ts","../../../node_modules/@types/vscode-webview/index.d.ts","../../../node_modules/@types/webidl-conversions/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/whatwg-url/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/xml2js/lib/processors.d.ts","../../../node_modules/@types/xml2js/index.d.ts","../../../node_modules/@smithy/core/node_modules/@smithy/protocol-http/dist-types/index.d.ts","../../../node_modules/@smithy/signature-v4/dist-types/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"02ec1ffcc0823cb9c9ba420c619d3af2c726e3a674b66a91941c07a3e7f65dba","impliedFormat":1},{"version":"38f6da5b6f318c33e18dd7c983cab3fe52f510c9a2573948fb13f012e01b1ba6","impliedFormat":1},{"version":"b40885a4e39fb67eb251fb009bf990f3571ccf7279dccad26c2261b4e5c8ebcd","impliedFormat":1},{"version":"2d0e63718a9ab15554cca1ef458a269ff938aea2ad379990a018a49e27aadf40","impliedFormat":1},{"version":"530e5c7e4f74267b7800f1702cf0c576282296a960acbdb2960389b2b1d0875b","impliedFormat":1},{"version":"1c483cc60a58a0d4c9a068bdaa8d95933263e6017fbea33c9f99790cf870f0a8","impliedFormat":1},{"version":"07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","impliedFormat":1},{"version":"5d3e656baf210f702e4006949a640730d6aef8d6afc3de264877e0ff76335f39","impliedFormat":1},{"version":"4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","impliedFormat":1},{"version":"c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","impliedFormat":1},{"version":"570efec02480a95fa35e7c6dc3c00c59309d221e0698cefbc9e27a3c13d69c96","impliedFormat":1},{"version":"396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","impliedFormat":1},{"version":"b7b881ced4ed4dee13d6e0ccdb2296f66663ba6b1419767271090b3ff3478bb9","impliedFormat":1},{"version":"06289b9873760aac77aed4035ea6c60b1e0879b8afe47a4530bc8522b9b804b1","impliedFormat":1},{"version":"63c36aa73242aa745fae813c40585111ead225394b0a0ba985c2683baa6b0ef9","impliedFormat":1},{"version":"3e7ffc7dd797e5d44d387d0892bc288480493e73dcab9832812907d1389e4a98","impliedFormat":1},{"version":"db011ec9589fd51995cbd0765673838e38e6485a6559163cc53dcf508b480909","impliedFormat":1},{"version":"e1a4253f0cca15c14516f52a2ad36c3520b140b5dfb3b3880a368cd75d45d6d9","impliedFormat":1},{"version":"159af954f2633a12fdee68605009e7e5b150dbeb6d70c46672fd41059c154d53","impliedFormat":1},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true,"impliedFormat":1},{"version":"894dae169f8193e3f07c3fec14149a60592d1f13720907ffdf7b0c05cfb62c38","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e0d35597ff6c5142082e60814fa39c8a2077a58d8a6a262e619afb5f855f6ba","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"228318442187dee1f3b18047e6281d12d59f7b492d6243db4eb720d53e3c03f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"f51b4042a3ac86f1f707500a9768f88d0b0c1fc3f3e45a73333283dea720cdc6","impliedFormat":1},{"version":"a29bc8aa8cc100d0c09370c03508f1245853efe017bb98699d4c690868371fc7","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f95830ca11e2c7e82235b73dc149e68a0632b41e671724d12adc83a6750746d","impliedFormat":1},{"version":"7aa011cda7cf0b9e87c85d128b2eeac9930bda215b0fee265d8bf2cec039fb5f","impliedFormat":1},{"version":"92ec1aeca4e94bdab04083daa6039f807c0fce8f09bc42e8b24bf49fa5cdbbff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"25bfb291668b70290dd646f6e99e681ded0481bc0610d241a229cda07d7af425","impliedFormat":1},{"version":"6c39d4dbdb372b364442854e42d8c473e2ec67badb226745af17ed5ac41ce6f5","impliedFormat":1},{"version":"7693b90b3075deaccafd5efb467bf9f2b747a3075be888652ef73e64396d8628","impliedFormat":1},{"version":"bd01a987f0fcf2344a405e542ee681e420651eaff1222a5a6e0c02fda52343bc","impliedFormat":1},{"version":"693e50962e90a3548f41bff2c22676e3964212a836022d82e49eca0b20320a38","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"300b0c12998391154d7b9115a85554e91632a3d3e1b66038e98f2b9cb3c1061d","impliedFormat":1},{"version":"8d680d5d1a77028ca1708118b8c941edd90a6329f9dc0315ffc3a06b4820e937","affectsGlobalScope":true,"impliedFormat":1},{"version":"8bc550ee45988b123605e2cbba4dc8d3b4153c3d06f59074c7cda5bc3b2f2fd8","impliedFormat":1},{"version":"5293d799856f47259146ccf0be9a1cc0a4a5343696182d7206ed25ea67d67920","impliedFormat":1},{"version":"d7cdb379f1a8febb8ba181b2bba4c89b7f9189c68ce00292253d9f827eb0b2d3","impliedFormat":1},{"version":"fab49059d6c2026bdb2e53e4e5cde1a39da44e61daff1867c8b3b10b507bfe17","impliedFormat":1},{"version":"5a551275f85bcc4003e543a1951a5b2f682cfba9b2922f65ae0df40ab71724a5","impliedFormat":1},{"version":"22d1a3163b9a961dbe78b0aedbd7bcbc071ce1f31efb76eb013b0aee230fef0e","impliedFormat":1},{"version":"c31695696ade4514cfcbb22799997b690d3dca7fb72beab68fb2e73b6ef450dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"d99ad56d57f2c96daaf4475a8b64344b24dedafdb8f3c32d43552bcc72279a75","impliedFormat":1},{"version":"a101ef17aece908c1029a1bd3f97132794dcff21b4ca0b997d9a633f962c46aa","impliedFormat":1},{"version":"511575e18249b64b90d8f884fdb8a383c767d1a7efccd9d66a4e125a4dc5c462","impliedFormat":1},{"version":"6d8001f2c3b86c4f1de1d45ecb3f87f287ed7313d6999f8c8318cec4f50e6323","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d09f4b48899d342b5d6cd846f95f969a401933b0dcd375a8a7e45832328bb86","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c3d1222e6e3d8c35a4293d7a54d4142ebb8f7f70ec4111b8136df07fdc66169","impliedFormat":1},{"version":"70173c475c6e76ccebc37412b02b2e26f62bf45fc1534c3ebe6d7fa60fb88819","impliedFormat":1},{"version":"1c05d80325e7cb8ad9fe6f4f8cd1798ec87607fe523865b27cab9fc5b816f067","impliedFormat":1},{"version":"863bc4e31de6c75423bb02da16190d582b0a69b8964b61d45920e5b2cb3832dd","impliedFormat":1},{"version":"3c92f365d57fd49656e4907bf1d950d4a4060dde7db35effe2f6348e0e800b86","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"6e191fea1db6e9e4fa828259cf489e820ec9170effff57fb081a2f3295db4722","impliedFormat":1},{"version":"aed943465fbce1efe49ee16b5ea409050f15cd8eaf116f6fadb64ef0772e7d95","impliedFormat":1},{"version":"0435070b07e646b406b1c9b8b1b1878ea6917c32abc47e6435ec26d71212d513","impliedFormat":1},{"version":"f71188f97c9f7d309798ec02a56dd3bf50a4e4d079b3480f275ac13719953898","impliedFormat":1},{"version":"c4454589a0aa92c10d684c8c9584574bc404d1db556d72196cd31f8f7651af1a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b17790866e140a630fa8891d7105c728a1bd60f4e35822e4b345af166a4a728c","impliedFormat":1},{"version":"c50c75f4360f6fc06c4be29dafe28210e15c50cd6b04ad19c4808fa504efb51a","impliedFormat":1},{"version":"d4a1f5f7ee89b2afffd3c74282f8ee65b24266c92b7d40398c12a27054ed745c","impliedFormat":1},{"version":"900b5a9802192bc77eba35a5b87ce770df7b867a6d61772c554058c9ed635386","impliedFormat":1},{"version":"65278b3e3cb8e3f0b7bc712e86858ba7695501e76a84eedb730cc15b85d92b56","affectsGlobalScope":true,"impliedFormat":1},{"version":"f43fcf89d75f13d0908a77cd3fa32b9fd28c915deded9b2778b08f2e242d07a7","affectsGlobalScope":true,"impliedFormat":1},{"version":"9b6fc34aca8b0411b96ba35b2315017236a47709a1a98d5e16aed3b84037b9e8","impliedFormat":1},{"version":"aebf613f7831125038942eba891005fd25fa5cadcc3e3d13af4768dc7549161f","impliedFormat":1},{"version":"0faee6b555890a1cb106e2adc5d3ffd89545b1da894d474e9d436596d654998f","impliedFormat":1},{"version":"247e5c34784d185bc81442e8b1a371a36c4a5307a766a3725454c0a191b5cfad","impliedFormat":1},{"version":"1c382a6446d63340be549a616ff5142a91653cea45d6d137e25b929130a4f29a","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"20eb6689443f55ebd33372566b0afad619f1ba48fec4ffb4ab0c119e4fc52eea","impliedFormat":1},{"version":"a1b36a1f91a54daf2e89e12b834fa41fb7338bc044d1f08a80817efc93c99ee5","impliedFormat":1},{"version":"8bb4a5b632dd5a868f3271750895cb61b0e20cff82032d87e89288faee8dd6e2","impliedFormat":1},{"version":"0c1aabfd9fb1818afb2e798f91f669edafce59cd7e3423d25b1cfccfaaf2c403","impliedFormat":1},{"version":"017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","impliedFormat":1},{"version":"ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","impliedFormat":1},{"version":"9ae7df67c30dc5f52b7b21e8bb36fd9ff05e7ed10e514e2d9ed879b4547c4cd3","impliedFormat":1},{"version":"fd6a17c2d015cb2963d62db7566a43818424e8f32eb821fa9b8b142d4ab12664","impliedFormat":1},{"version":"4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","impliedFormat":1},{"version":"e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","impliedFormat":1},{"version":"d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","impliedFormat":1},{"version":"d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","impliedFormat":1},{"version":"5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","impliedFormat":1},{"version":"27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","impliedFormat":1},{"version":"eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","impliedFormat":1},{"version":"52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","impliedFormat":1},{"version":"5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","impliedFormat":1},{"version":"fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","impliedFormat":1},{"version":"d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","impliedFormat":1},{"version":"fc9bdd9b3d8fb59c913cb3b8dea0d79b38dfe9331ef07e1c6dc6bf363f061ad6","impliedFormat":1},{"version":"e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","impliedFormat":1},{"version":"0c3c4ce6a1884610c99306719f59174d81808c69393c30119f9c2aef0449a2cb","impliedFormat":1},{"version":"219a25474e58a8161b242776856ec5f6960839b63e74809445e51cadbfc18096","impliedFormat":1},{"version":"5a0d1534e9493ae44b08b3055172da38370e2afd2bc3d4bea11f7be78344036f","impliedFormat":1},{"version":"6309a45fc3c03d3c4d56228e995d51974f53009a842374695b34f3607877e5a3","impliedFormat":1},{"version":"bef94eba81ae2c09059c0d9abdb1ae1b7090314f70550f3c8cd5d7ead4a4f212","impliedFormat":1},{"version":"48b787ad458be9b524fa5fdfef34f68798074132d4b8cfe6a6fe9c2bf334c532","impliedFormat":1},{"version":"37280465f8f9b2ea21d490979952b18b7f4d1f0d8fab2d627618fb2cfa1828e3","impliedFormat":1},{"version":"c12f3ff5e221c1d3e4eaf47a372b538d8e79bd9a15266c2b049a597da0b86924","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f3f85dc43cb93c5a797f1ff0fa948d0e17843a443ae11a20cc032ccdf1b9997","impliedFormat":1},{"version":"581843e855d92557cbe9dfe242de4e53badae5e9096ca593b50788f7c89c37f2","impliedFormat":1},{"version":"869010bc679df668137cb3b78a3cb8196e97acf285208a57f6156ceac894a2f7","impliedFormat":1},{"version":"bcae62618c23047e36d373f0feac5b13f09689e4cd08e788af13271dbe73a139","impliedFormat":1},{"version":"29a99d2e57b3e08a997cbc2397bdb251441a545306a74b95ffedc5f03d9bc6b7","impliedFormat":1},{"version":"5ae003688265a1547bbcb344bf0e26cb994149ac2c032756718e9039302dfac8","impliedFormat":1},{"version":"09e811cc1088d9ea3a7ddd7290f6a13767f56c85daf8c3374a06a45a08d55647","impliedFormat":1},{"version":"a86053981218db1594bd4839bde0fb998e342ecf04967622495434a8f52a4041","impliedFormat":1},{"version":"5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","impliedFormat":1},{"version":"7b270dc53f35dd0b44bfa619ad4d351fffd512e14053c3688323ed007eda3f6d","impliedFormat":1},{"version":"6d4e928f232ade7221cffc6e4332ec935baa176415c9bf5d12111bb883a247d2","impliedFormat":1},{"version":"e86ad029224d4f2af3e188be8b5e9badf8c7083247572069bac7bd2193131fc7","impliedFormat":1},{"version":"057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","impliedFormat":1},{"version":"d94034601782f828aa556791279c86c37f09f7034a2ab873eefe136f77a6046b","impliedFormat":1},{"version":"105ae3dd61531488194f412386ba8c2b786f1389ac3415098cc47c712800da29","impliedFormat":1},{"version":"45851fbb6595233ecf6be213f74f00690c752782387796c66ea186750f831d06","impliedFormat":1},{"version":"4ee905052d0879e667444234d1462540107789cb1c80bd26e328574e4f3e4724","impliedFormat":1},{"version":"151659e152d71986b8943b9943cd7fbe27a65874655081602de7ea24a0f66e9b","impliedFormat":1},{"version":"3448e2fa1ae3a52d50e1e82e50b6ae5b8bd911004a8824b0c6b26c8cdcd15fec","impliedFormat":1},{"version":"c0c0b22cefd1896b92d805556fcabda18720d24981b8cb74e08ffea1f73f96c2","impliedFormat":1},{"version":"b97e6411a3ee83e6f77760f0400d117313a980d05ec89f1e1a7502229e36d060","impliedFormat":1},{"version":"270418f8a6639be745d14bfd085e62685f24eaa6d6482aa9803bae8b8b93919a","impliedFormat":1},{"version":"4cb33d05ff168c1ca836d6d438f93040972af43fc09774876c4add2ad96d125f","impliedFormat":1},{"version":"902d2b66388607197ec48798c94a6ffc657fe1cfbee15e49b6b3052de0e5b8fa","impliedFormat":1},{"version":"38104b9a37d0b9dc54be36ae43b1a32f9cfae34742743bfd7104cf1f39661225","impliedFormat":1},{"version":"47ff32ca9ab8474e89615b4bbe5f2264c2940fc12b86c4dc0a99659479517a6b","impliedFormat":1},{"version":"f892f85b4838f6a2ff1438d240dcf23a872d090794967c7f817a82ea8da1ad8e","impliedFormat":1},{"version":"cb498c53a9d35ac1cf9a3515f3835d48b4626a612cf7540c5bfb99542c9ab1a5","impliedFormat":1},{"version":"b86e64c48044bb73c6de7aa2cdf9295b2c104221e6a68b408225b283d1bcfda2","impliedFormat":1},{"version":"16173f5b3e68a373e7dfe6d00948549facc9947c9dbde813f1efe3a0f236ff6a","impliedFormat":1},{"version":"f457fc1b7583e1215393db13b95a186593660aad29706515ab7479869bc585e0","impliedFormat":1},{"version":"a11288edc8161f664148ea7d56101517e380335f5fa1a94408db86efce025bba","impliedFormat":1},{"version":"0e2a6b2eeadafbc7a27909527af46705d47e93c652d656f09cc3ef460774291b","impliedFormat":1},{"version":"d6d561bf4309a197e4b241fb0eacebf14c400661c4352676cd3c88c17e5ab8a2","impliedFormat":1},{"version":"ed012a19811c4010cb7d8920378f6dd50f22e1cf2842ecb44a157030667b165e","impliedFormat":1},{"version":"4085ac780790cc5787e375bd6c7dc149610665514e1d3d8fb65aec29efb691c9","impliedFormat":1},{"version":"7634eca84d60522b68ac679813fd9247a4260f7412890e924c7779758f8d6391","impliedFormat":1},{"version":"b4ff74f0589487410168be50e3231caf687c5e1302266709742382e8d004fe1e","impliedFormat":1},{"version":"406f227eebfe8be216d7a4b215ed09198b0c2f6599f2273b69ee5b75824c5435","impliedFormat":1},{"version":"e7cd1d6f8afb317dca8c5b6a60d5cd55aacf8d9ed8ae39f22e3104ed0c479552","impliedFormat":1},{"version":"75c9a36ada92da43627b5cf1142a6fe20f50ad00abacb90204b74b19775521c2","impliedFormat":1},{"version":"8a90f97fdb10d83c6842a699c3df474246755f4fbf3ee2d35e69d6599fe9092c","impliedFormat":1},{"version":"88aacf6e2493633490812c70595b517c8e4299f054d28a51687b10f0968276c3","impliedFormat":1},{"version":"f6cae2c0acda884c4b9dec4063d062252cf0625a04ebf711a84d7de576427c3e","impliedFormat":1},{"version":"946739ab9acb2fccd0b2e5a0d1ac4dfe69b9279f33a26e7f0a7a7ab24ee343fc","impliedFormat":1},{"version":"d037b771e89ef6dd81c71de92cc644d68b1b5d1ce25dbce9c2cfe407dd0b5796","impliedFormat":1},{"version":"25091d25f74760301f1e094456e2e6af52ceb6ef1ece48910463528e499992d8","impliedFormat":1},{"version":"853d02f4f46ca9700fefd0d45062f5b82c9335ba2224ca4d7bd34d6ae4fc4a7f","impliedFormat":1},{"version":"ab679e25dcb5d085ca42c33ffc8e2fc48411f81ad3108a3aa81eca79c104ef95","impliedFormat":1},{"version":"b901209745b3cef4b803e42731c40f5c2c2c7101bbd5f481c0fd1c43f9f440f3","impliedFormat":1},{"version":"cf6dc8f18bc5ee063dc1a37bccd3031dc0769f11622399018c375aacfcbda7c9","impliedFormat":1},{"version":"8ca2d01f5f3d4d4067aadea230570afa4c91e24e485fbe2e9d53ead3b33f80d0","impliedFormat":1},{"version":"9230a7b03ae3cce93e94a2cc844da1e5414d2be7505ecc82402094a132cfbbda","impliedFormat":1},{"version":"27350a2872f30b97e947f52ccf15654239eda7c9ff35135a1aa82cc37642fdeb","impliedFormat":1},{"version":"ed3e176bc769725ebc1d93f1d6890fc3d977b9155ae5d03be96ec2d49b303370","impliedFormat":1},{"version":"7933769d84f5ae16546aef06537ca578f1c8d7cca0708452a00613050ac1f265","impliedFormat":1},{"version":"d405963c5f69955e95c30ef121c7a3309f214f21ef09dceb5d7ac69557cbe0fa","impliedFormat":1},{"version":"29c7276f64f0de86eb981ddd4e5a8e7f832fc8d4e712c7e8e1beab6af8cc4147","impliedFormat":1},{"version":"6f11170f0056f1681101d9a1045af3c0d2ea489f14d1a0d4c0b2cb7860cfb8f7","impliedFormat":1},{"version":"fdd84224998f5f4d97017b829548f1fac4ac803025e16c27d4fc7f3426c6261e","impliedFormat":1},{"version":"1591996e71f1aab2e8726d7d04d59a3e8f5162578bee747e883932cfc0b57b2a","impliedFormat":1},{"version":"f8ce447bbda4f75da74cecd866cc1ff9bdde62189ac9d8dc14a16c48b3d702fa","impliedFormat":1},{"version":"da3f7f511c344fb56275cd954156a4d736c9f414f9b84bb0ee229ef583e38074","impliedFormat":1},{"version":"c7d30b164562b7ce99fcb53ab78f937cc845e003f6089d648351331921379994","impliedFormat":1},{"version":"fe2d1251f167d801a27f0dfb4e2c14f4f08bf2214d9784a1b8c310fdfdcdaaea","impliedFormat":1},{"version":"2a1182578228dc1faad14627859042d59ea5ab7e3ac69cb2a3453329aaaa3b83","impliedFormat":1},{"version":"dfa99386b9a1c1803eb20df3f6d3adc9e44effc84fa7c2ab6537ed1cb5cc8cfb","impliedFormat":1},{"version":"79b0d5635af72fb87a2a4b62334b0ab996ff7a1a14cfdb895702e74051917718","impliedFormat":1},{"version":"5f00b052713bfe8e9405df03a1bbe406006b30ec6b0c2ce57d207e70b48cf4e9","impliedFormat":1},{"version":"7abcae770f21794b5ffbc3186483c3dbcf8b0c8e37d3ef3ed6277ece5c5dd4be","impliedFormat":1},{"version":"3e642f39da9ad0a4cd16ccbd7f363b6b5ad5fa16a5c6d44753f98fc1e3be9d96","impliedFormat":1},{"version":"7f5a6eac3d3d334e2f2eba41f659e9618c06361958762869055e22219f341554","impliedFormat":1},{"version":"6f996f44113b76a9960d3fad280f4f671115c5e971356d1dbb4d1b000af8b3b3","impliedFormat":1},{"version":"67f2cd6e208e68fdfa366967d1949575df6ccf90c104fc9747b3f1bdb69ad55a","impliedFormat":1},{"version":"f99ab9dffe6281c9b6df9ae9d8584d18eabf2107572bbd8fa5c83c8afe531af8","impliedFormat":1},{"version":"4fc9939c86a7d80ab6a361264e5666336d37e080a00d831d9358ad83575267da","impliedFormat":1},{"version":"f4ba385eedea4d7be1feeeac05aaa05d6741d931251a85ab48e0610271d001ce","impliedFormat":1},{"version":"f5405fb679a467cb979f8744940b22b7bc3a0bcbe648c3910d98de3188d42a78","impliedFormat":1},{"version":"68969a0efd9030866f60c027aedbd600f66ea09e1c9290853cc24c2dcc92000f","impliedFormat":1},{"version":"fc79932b9aa710f025b89bf8d8329d99080286e5e079a7d5a529236e9f5dd69e","impliedFormat":1},{"version":"6646d9075e3e0eedb02c9d03bffef54c8bbeb601d27eed46f143aba435bac37d","impliedFormat":1},{"version":"0dec72b4c5c4bb149750fef4fc26bdae8f410de941ee766c953f5ac77381d690","impliedFormat":1},{"version":"8f2644578a3273f43fd700803b89b842d2cd09c1fba2421db45737357e50f5b1","impliedFormat":1},{"version":"639f94fe145a72ce520d3d7b9b3b6c9049624d90cbf85cff46fb47fb28d1d8fe","impliedFormat":1},{"version":"8327a51d574987a2b0f61ea40df4adddf959f67bc48c303d4b33d47ba3be114a","impliedFormat":1},{"version":"00e1da5fce4ae9975f7b3ca994dcb188cf4c21aee48643e1d6d4b44e72df21ee","impliedFormat":1},{"version":"991fd5ebf9f30ffa17cae6faeae6a838d3d91bdcdd419bce358dc99b8e5b0ad0","impliedFormat":1},{"version":"4d250e905299144850c6f8e74dad1ee892d847643bacf637e89adcce013f0700","impliedFormat":1},{"version":"51b4ab145645785c8ced29238192f870dbb98f1968a7c7ef2580cd40663b2940","impliedFormat":1},{"version":"589713fefe7282fd008a2672c5fbacc4a94f31138bae6a03db2c7b5453dc8788","impliedFormat":1},{"version":"26f7f55345682291a8280c99bb672e386722961063c890c77120aaca462ac2f9","impliedFormat":1},{"version":"786691c952fe3feac79aca8f0e7e580d95c19afc8a4c6f8765e99fb756d8d9d7","impliedFormat":1},{"version":"747d6d391f97a46f6880e10c8e4858bbd6568070a0f9af0ec74c26475e2c885f","impliedFormat":1},{"version":"354f47aa8d895d523ebc47aea561b5fedb44590ac2f0eae94b56839a0f08056a","impliedFormat":1},{"version":"62b753ed351fba7e0f6b57103529ce90f2e11b949b8fc69c39464fe958535c25","impliedFormat":1},{"version":"514321f6616d04f0c879ac9f06374ed9cb8eac63e57147ac954e8c0e7440ce00","impliedFormat":1},{"version":"ce7b928daedd974205daf616493c6eb358069ed740ed9552c5f4e66da19fd4bf","impliedFormat":1},{"version":"b1aa0340d4248aba8e36e7d246b223e3ae89fb27f167f9e3c7b14838bb41b13f","impliedFormat":1},{"version":"620290e7cd91726a13ce06daf8437b37f4bf782c755674a41d881c2217a35830","impliedFormat":1},{"version":"e06d050ebf5ab7ae4506d7de03d369e5f2f7c96df0e4ba6aec7a6b2450c039d0","impliedFormat":1},{"version":"88c0699b282331433af615deb79fcd6f8e815e93bd40dd7200c1e3cdf052e5a0","impliedFormat":1},{"version":"cf8659543b380c9cf02c88e231eaad406f323f6b1d3eb877d4cad9ff0408974f","impliedFormat":1},{"version":"a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","impliedFormat":1},{"version":"84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","impliedFormat":1},{"version":"415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","impliedFormat":1},{"version":"901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","impliedFormat":1},{"version":"ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","impliedFormat":1},{"version":"b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","impliedFormat":1},{"version":"ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","impliedFormat":1},{"version":"068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","impliedFormat":1},{"version":"3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","impliedFormat":1},{"version":"fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","impliedFormat":1},{"version":"d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","impliedFormat":1},{"version":"3f6af667357384c1f582ef006906ba36668dd87abe832f4497fffb315c160be9","impliedFormat":1},{"version":"363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","impliedFormat":1},{"version":"c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","impliedFormat":1},{"version":"2f1a8ca9846d9ac5481544b5b53811efe2c44bba9195af584136fb34371d5e23","impliedFormat":1},{"version":"1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","impliedFormat":1},{"version":"ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","impliedFormat":1},{"version":"d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","impliedFormat":1},{"version":"4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","impliedFormat":1},{"version":"7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","impliedFormat":1},{"version":"ea2de1a0ec4c9b8828154a971bfe38c47df2f5e9ec511f1a66adce665b9f04b0","impliedFormat":1},{"version":"c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","impliedFormat":1},{"version":"4ef0a17c5bcae3d68227136b562a4d54a4db18cfa058354e52a9ac167d275bbb","impliedFormat":1},{"version":"a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","impliedFormat":1},{"version":"64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","impliedFormat":1},{"version":"c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","impliedFormat":1},{"version":"b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","impliedFormat":1},{"version":"434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","impliedFormat":1},{"version":"c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7","impliedFormat":1},{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","impliedFormat":1},{"version":"81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","impliedFormat":1},{"version":"4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","impliedFormat":1},{"version":"f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","impliedFormat":1},{"version":"1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","impliedFormat":1},{"version":"ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","impliedFormat":1},{"version":"ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","impliedFormat":1},{"version":"f7a8f4bc1e8e786c6115970b8f3ed4797be48108de00b3552bf590706d3a5e8a","impliedFormat":1},{"version":"ce096c727f1ae221bd35b46dd3e050bf3909674e6e9ec1518b3a5aa89ab2a497","impliedFormat":1},{"version":"1a8e6a4f31a5196144f35d0434e16369881d828c849d6a1c9290b6bde8807449","impliedFormat":1},{"version":"42a9ac86df0fa58634ea8a5f7f07b9b9c3243d82e306fb22d8a41639935a6c87","impliedFormat":1},{"version":"5766c26941ae00aa889335bcccc1ecb28271b774be92aede801354c9797074bb","impliedFormat":1},{"version":"3a19286bcc9303c9352c03d68bb4b63cecbf5c9b7848465847bb6c9ceafa1484","impliedFormat":1},{"version":"c573fef34c2e5cc5269fd9c95fe73a1eb9db17142f5d8f36ffe4a686378b8660","impliedFormat":1},{"version":"d97e30dd93590392fed422f2b27325d10ab007d034faaaf61e28e9ddc9d3825b","impliedFormat":1},{"version":"d1f8a829c5e90734bb47a1d1941b8819aeee6e81a2a772c3c0f70b30e3693fa9","impliedFormat":1},{"version":"be1dfacee25a14d79724ba21f1fde67f966b46e2128c68fed2e48c6e1e9822c5","impliedFormat":1},{"version":"19b3d0c212d241c237f79009b4cd0051e54971747fd89dc70a74f874d1192534","impliedFormat":1},{"version":"441751fb3deefe98952ba09b3c5a583c66aa2c9a1abe5e9dba6064a55f5a7678","impliedFormat":1},{"version":"c211816fd9af3b1541c812b859c769958d5e5b85b81da832eb2bcdf98342b054","impliedFormat":1},{"version":"7639642137f8329ef4a19410ce8d3e46910a76294df263f46b428fd61c79d033","impliedFormat":1},{"version":"8e69efd9afdfcd34d85adb6d8e71a5e13fea2a33c7019dd624cc7696772183a0","impliedFormat":1},{"version":"a7ebfe3e2c8f4fea5dac7ffbf6d00acee63c530de24d57cdeeed05530285ca26","impliedFormat":1},{"version":"82b4045609dc0918319f835de4f6cb6a931fd729602292921c443a732a6bb811","impliedFormat":1},{"version":"0fd70ca1eaef1e2dd6f48f16886df4838664821d992fd8076d07fc15e83c8498","impliedFormat":1},{"version":"ba30e6d2f1d20c707566cf485167331a10c539802a79040ced055b62a7aae53e","impliedFormat":1},{"version":"642eae3e9ec5997883f86dd7346d818f07d40fb83cc3530f0e52e232ffb4e631","impliedFormat":1},{"version":"29a6df727893a86807f4dc02116c31d9e6097139579ed6e8029b14c526cba027","impliedFormat":1},{"version":"537a2b61594512c5e75fad7e29d25c23922e27e5a1506eb4fce74fe858472a6e","impliedFormat":1},{"version":"311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","impliedFormat":1},{"version":"7c07838da165fd43759a54d2d490461315e977f9f37c046e0e357623c657fc42","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"115c8691bd8fac390f6f6eef5b356543d716da7cffa4c2f70f288d56c5b06aeb","impliedFormat":1},{"version":"e91516e66f9fbf39c978a4092c16ffda3bb0b32158fca6def75aae9fab358153","impliedFormat":1},{"version":"abd4563a6a7668fa6f8f5e5a425a0900b80fc2309fec5186e2cae67f3ce92663","impliedFormat":1},{"version":"cb48f3011e72efef9d5a5b312f4a956f699b8d423bf9f2772724cdded496bd50","impliedFormat":1},{"version":"9aed07904079877252e6c0aedf1d2cf1935ed91d4abc16f726c76b61ea453919","impliedFormat":1},{"version":"6621af294bd4af8f3f9dd9bd99bd83ed8d2facd16faa6690a5b02d305abd98ab","impliedFormat":1},{"version":"5eada4495ab95470990b51f467c78d47aecfccc42365df4b1e7e88a2952af1a3","impliedFormat":1},{"version":"5fc0957ee8e15821ddb30a76e74e7984953fc35611a57fd703e624bade5836b9","impliedFormat":1},{"version":"40e9c2028b34c6c1e3281818d062f7008705254ee992d9857d051c603391e0f4","impliedFormat":1},{"version":"4720efe0341867600b139bca9a8fa7858b56b3a13a4a665bd98c77052ca64ea4","impliedFormat":1},{"version":"566fc645642572ec1ae3981e3c0a7dc976636976bd7a1d09740c23e8521496e5","impliedFormat":1},{"version":"66182e2432a30468eb5e2225063c391262b6a6732928bbc8ee794642b041dd87","impliedFormat":1},{"version":"11792ab82e35e82f93690040fd634689cad71e98ab56e0e31c3758662fc85736","impliedFormat":1},{"version":"3957b1244f49991b89f12cc45942c24f9c5927dc72677b105bb896d316f0454e","impliedFormat":1},{"version":"6c53c05df974ece61aca769df915345dc6d5b7649a01dc715b7da1809ce00a77","impliedFormat":1},{"version":"18c505381728b8cc6ea6986728403c1969f0d81216ed04163a867780af89f839","impliedFormat":1},{"version":"d121a48de03095d7dd5cd09d39e1a1c4892b520dad4c1d9c339c5d5008cfb536","impliedFormat":1},{"version":"f6d55e607f55be35a3c481b7685461a9acc1e27b893839218eb9313f7e85278c","impliedFormat":1},{"version":"b394ea95c82281d184ea83e8511bd1a43f78d6908eb34b536446d3eb08f9d47f","impliedFormat":1},{"version":"41edf4071b119fdf28b46a3c28c0845f2598bb8b196e7e4c9e01415403fdaea5","impliedFormat":1},{"version":"2bdf3bcf1a9771a288a783d1e8ee5d1d3126c11ddde26ae44864ab432192a6f6","impliedFormat":1},{"version":"603bafdacee4c8850ef5820f8642a817a3f0db6f76dda0474bcf3d17c2e15398","impliedFormat":1},{"version":"a10c79ab97c8a4f6074203094dba87bc736ca574ec480be1df6ec2c82d774573","impliedFormat":1},{"version":"801f049a9e74e941e8ca8add60492aaf4ab717a166248d355ded5753d80f9a85","impliedFormat":1},{"version":"70bba0a9c9c2ad7a042e134a840c4d8462bf0ad98e41c50ca52725ae47265eb9","impliedFormat":1},{"version":"f4dc28fbbba727722cb1fd82f51a7b9540fbe410ed04ddf35cab191d6aa2ba10","impliedFormat":1},{"version":"1db9e7d40d7ffade5bd15ce84936997bb9d159d37668c9d8955993753bbdfb2c","impliedFormat":1},{"version":"047f85c429fbee7423e723a6232e527d69b65c3399880ed8ff0842e29c497c20","impliedFormat":1},{"version":"9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","impliedFormat":1},{"version":"526ee815290e47e75fd2105f83de0916689cc532a19c81620672342f6478095f","impliedFormat":1},{"version":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"8bfba49493f92a72cdffe5b9947c3f572c9301f4e95a471027d0022e8d9b5d97","impliedFormat":1},{"version":"fa90f0cf69cd9296a6c0c43419540ba8e734ab9bf98eff6576bb5f04ddfea175","impliedFormat":1},{"version":"b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","impliedFormat":1},{"version":"68adf02128cad117e068f53ab334cbc730bcfeb7d658d8ce8118da6770b7e622","impliedFormat":1},{"version":"54f0dd6c08d5c8c6aea538ccba54b95909d194f4e2204312b3974eebe6204a8b","impliedFormat":1},{"version":"2d10d8e7f884bbbbc1dc980464cd36346f2b2aa21bb2c049d21b381053bafbbf","impliedFormat":1},{"version":"7f1567b9dfb571a80556155a5bff1c946b23e74443466689bed24095604b3a9b","impliedFormat":1},{"version":"b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","impliedFormat":1},{"version":"51796c3726bf734b061fac41b479a660f9afccf50b8b493835e204723d23a84d","impliedFormat":1},{"version":"c2b694d903303007a430acf66980f3b503dbd4e50cf6c183af0daf39c8d79ee8","impliedFormat":1},{"version":"a945cfe6ca774e53111b0cfb6b767261352dc6e15d27641b61e5c634b4a729c3","impliedFormat":1},{"version":"3c10545e61e9428bebdc65fed8d11e09d203afb4745eea11b98be7b218a2aeb1","impliedFormat":1},{"version":"fde1236eef449f111d0eb306a5245dab335974dd0ccac39223ea200907c27a8b","impliedFormat":1},{"version":"c1a5f70e04c94e202ef756018ddacc22e752ee3e5eb401170a2dca2773877277","impliedFormat":1},{"version":"f4bedf06294a6a4d28179ee9689f2d8e00ad4d9806a99b234c2a58f1c9147acb","impliedFormat":1},{"version":"91d68d8136434dbe13c34fe6ef3fde75791f9be128ab6b4312d1699e1fcd9859","impliedFormat":1},{"version":"260c24d1b8fdb9284ffd93112fb4141e94970be4ff2ca23ca60b361dab39eee2","impliedFormat":1},{"version":"cb5327ac944956c162522b4388a74a4b3151e2ba3fd5b057ad13a452b2c30189","impliedFormat":1},{"version":"7bac1d3d9a1f0290c91e88426dab334d9d31a712647df5fb5666ad7acb3d53bd","impliedFormat":1},{"version":"41d461c745d59a6e125dbb554b814bc99a9f072325ffd3c8407809378995fdd4","impliedFormat":1},{"version":"33589aa637b92a02e6138fcaab28454fcf35a5e7d4cf91343c83342715f9b55a","impliedFormat":1},{"version":"ac13ba680450baa70ac9e9a2f02b50ae43437fd23d76bf9215a6a5b429455010","impliedFormat":1},{"version":"8b325ba54f25c33b38550f76a31afb82db9d7f4b1891276eeae5aba2f2d3bc30","impliedFormat":1},{"version":"eca427f98f87824d62688c987be1b6fb5dbd2c21a71fbb42702c7e365d0309bf","impliedFormat":1},{"version":"93c931504d284fb193a7cce460e4c2d30d4ed247e246e1f214a8064e95198ce8","impliedFormat":1},{"version":"ce972ae1cfa1741dfc7d5b8caeaabfb696023f45a80c0d71fe55494604cc78c8","impliedFormat":1},{"version":"6360869b4f8e9b942293072189349e2c1a44cc3cd6757e83cc62619e6abb01ad","impliedFormat":1},{"version":"f3ac122e178b71c8d2e74f85d0d0ead1ab592efd4ca989db632bb2f5ecbea484","impliedFormat":1},{"version":"2db9f3f74d99d1d437ca92760f510c76e9024d372506266d8443745eb77eff4a","impliedFormat":1},{"version":"e6bd80f63b2290bcea0bcd06002a19739050f188a8accebec706685cda627755","impliedFormat":1},{"version":"6717f2b01e15e479a01d76258afb0d5f8130fd5d6759a04cd60fde5587549efa","impliedFormat":1},{"version":"0e841b93051d30dc91ae7ecbddb1d89152875ac2e92a18f57d26a135466ba5a7","impliedFormat":1},{"version":"42afd9d91bce6d077990a4f3628bcb7f8fe1bc0397ae481bdf54d6fc7c5cd3a4","impliedFormat":1},{"version":"12f6e76f5766ffb9aaf71adbf0a46b8dca86c59982cbe16a2addb87b68c8b937","impliedFormat":1},{"version":"ec8bff9f60af63c0d12517026faff805a05ae930848edf9f35ef27cf8b0f8478","impliedFormat":1},{"version":"2b26174b7cae62f9d9843b5cab80a844fcf530b528348717180a2e60fcd8c53e","impliedFormat":1},{"version":"16189422d0a96941777ea137f472b05a8dce2c530b4e61970c9412e0a139f9b8","impliedFormat":1},{"version":"373f28376805407a378a80ff2b08c56fa0bf7ac76e5abdedb5a00a4aca2ba9f6","impliedFormat":1},{"version":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"8edadbdab1f9f41f86b9bf0151213fbc7778a337703888ebacf017e73738fa00","impliedFormat":1},{"version":"675d65b49d00d283578a569e662548c2a55a95d7c1a211f9e9a32c6e1398dce8","impliedFormat":1},{"version":"4d11636fad62a75861b44b117d7237d38d957ddd51e09f4021f8b86acc2349b7","impliedFormat":1},{"version":"dbc85ae54cb8da38556b3dc33522159c8a5558c79568edbe4977226764e51219","impliedFormat":1},{"version":"7bf23edcdb0ec0715b7f7b85695a1078a132067c495efa8f6cdcda9359659f9c","impliedFormat":1},{"version":"4ad28da36ad48edec414054e1daef40c1016357b188eca0f72977f30222d9c02","impliedFormat":1},{"version":"6c4032871e6cfcbf2356a398c14a23a54af756bf7a5aff43cddb96b09469248e","impliedFormat":1},{"version":"81f20249f433350a8e13cbb9206779e667f0d5e5ac4b8f014cdf6b6e42a136fc","impliedFormat":1},{"version":"c7185143683e9ba278420520af2e2a80dd911e88e5c08c56405b2a65996e2a1f","impliedFormat":1},{"version":"ca642739f49fb9d709f726a6447cefcaf21d8ccb16595724c8929b515a08ef53","impliedFormat":1},{"version":"42adbc164a978ef94024a312dd27e2415fcf034ca6e1ada520b40582704b3e47","impliedFormat":1},{"version":"4c3e6490ded76314f8115ca4657084c5bd53560db3b366e871c2e44b44437e4a","impliedFormat":1},{"version":"5c44dc0b569cde877bdd06ce1124acd6ae621d0a5dfc65a6668e13b85ca54d55","impliedFormat":1},{"version":"4bc6dbef10e6d46dad778f5fc190eef94e5568d612140b8791b00b01882ec1d6","impliedFormat":1},{"version":"3bb26409311deb6bb7a276fe8af90048fd1146f73881ee9826821df71d11980b","impliedFormat":1},{"version":"e463cc21447f0a1aeeeb793f51f4c165be1cec7583c15f68b8a1703c343a6cca","impliedFormat":1},{"version":"3ba99b530549ef5f440cab610ca72cd7bdc1aab48ba22d24bd00a931aedff21a","impliedFormat":1},{"version":"961b6be59c5412c31652e65cc3e0b0a0ea8a4266849d10c90ad1eca0a95cb581","impliedFormat":1},{"version":"edbc215ce53ffa2a13e0c216d589fa47b37379bf10ea386ef7ddcda4dc91a328","impliedFormat":1},{"version":"e135af5c48d2dfc0c658e06827798aae78a97933bbdbaf8e023ee003d47651b1","impliedFormat":1},{"version":"529e5b8f3b7ad6bbb679268c7c9f29dcc0670e511574197e9755fbd2d70e1c97","impliedFormat":1},{"version":"4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","impliedFormat":1},{"version":"e35526a0977b9cd80f799aef3314cb2bfe66aeb40879c888f7a993bd3437fc42","impliedFormat":1},{"version":"81d92e5c4d618ba0660121ed30c603e8111ad605e7562948f7430d87038daee0","impliedFormat":1},{"version":"36990d934030ce1060f203c4b45ee7a811aa11aaa4d075bb81c2748da8329607","impliedFormat":1},{"version":"0ae845a8508fbfe0344eb505ddb4a4e5a8759f5ea4608bfc5f3f1b9ea51d76b4","signature":"611c3555ebe13d9820f48a53bccaacf5a2e1e0df64d719cd9e2fba33f2791f8c","impliedFormat":1},{"version":"bd0b6d0720c8b9fb5983761df5b57d6dd6646baf9cc438985f1b53d395aad3d0","signature":"eaba02405aff070bc130d8ad89fed3fe6a7c58493f2792406d671283c42d070b","impliedFormat":1},{"version":"67543772f3c75dc5a2d827c954cf0fde958401e96a6e921fbf6079ed7f4f4daa","signature":"a154d3346d8bc2536064abd3c3dcd962ab394ca73cebfceb0a3723976416f049","impliedFormat":1},{"version":"04c72d6fa3275b08865357900ba7580a5c9e31692a12641a25665fed8411c8b8","impliedFormat":1},{"version":"fad2e326af305b648dd46cac96bf31c88f508823cfea877fae79a9b01dd4d524","impliedFormat":1},{"version":"45e0dd06a42ab62f879b1567438bce5b85eee9c6875685ca2c6ca10f978038b2","impliedFormat":1},{"version":"ad5976f5c289f6720287944a265db0761709be06d5331fc37a1b2999fa13bacc","impliedFormat":1},{"version":"15ffad7691bca48369580748c576e889f19700b8b3a1bfc6586beab673a87956","signature":"9d33b8675e7074e5fcdbde477a40a2ab0278bcef7fb64cc28aa75846d3402bdc","impliedFormat":1},{"version":"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","impliedFormat":1},{"version":"0771ddb474014581a882838fd20e25e829038bb53c127c5b339812f749f6aa3e","signature":"1f9165291e6b94fc61224a00ccf17997125f8148aa244fc533c58557e07641e4","impliedFormat":1},{"version":"d59857b5ae5e3a693c3a2966fe3799ca0ee3c9ff9f3b3e2706cc31bd9f3d4ec4","signature":"5f46441b319013cfcc9e00c60f9f96162b8b7391d4ccae9c511f752812ee3e3a","impliedFormat":1},{"version":"952a60f7c6c46b683f6e0804d1e8e46244e90a68cdaef3d426708e0c82edcd94","signature":"8b3603d15e3899df5abe14590f4549414118396c49c75e4cf6f0e944079ded78"},{"version":"d62c0b0d23609a485dff9b8ed8e9af9c56b8789dc70a07d4bdbb26f16420b249","impliedFormat":1},{"version":"a2609926cd0259b582f55812d4ea93ff0440e38dd015bdb95394b26ad3d34cd1","impliedFormat":1},{"version":"2bdaf407163ca9ca9bc3c1d3fb78ad26b6bd2f7d68b04810fc28072925a95e9b","impliedFormat":1},{"version":"95347f256453f88602fcfc792b0ccea75f330aa22150bd95a6a8bb034a20ba14","impliedFormat":1},{"version":"dd2505eec07d3d341be4322f9f0380b5196f2b163944016227bb599dd89136e7","impliedFormat":1},{"version":"f9dfcd54e603db0684207424124c340a7eb0e61807ece0cdb51a8801c47c9155","impliedFormat":1},{"version":"ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","impliedFormat":1},{"version":"970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","impliedFormat":1},{"version":"e81c6b5f3f287690f7400c7468dc2bf21e621902dc1b6f98236e38235c0dfc68","signature":"9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","impliedFormat":1},{"version":"e50222c22db171b6e6f102dad414ba90b1ad3802537779e838bed86ff506cb28","impliedFormat":1},{"version":"4c36f9d0ffb25cf61b696b2777ba06d553d1b0cfd12d9eed8a1e3b1a50beb2f7","impliedFormat":1},{"version":"dd478451ffa00f4352bffe4f55b4531c8dec0edafb5777272089e5127dca808c","impliedFormat":1},{"version":"aedddd59fc4889fcdeb54a3b2a4943736f282c00db826ff710acb6bc91873b0d","impliedFormat":1},{"version":"5d9a5cc1712870f91f66850e7056e0d03b4046de5558a00e7190b6a9c2f7d432","impliedFormat":1},{"version":"0daf877cd2dcb81c0e39a96ee20262dc07ecc6f68d65cdb9cc6e6cf2f31d29c5","impliedFormat":1},{"version":"6206a6984c6210c7e02e8cec6c2417f6d2458ec36ac97b80ce9f894933a08082","impliedFormat":1},{"version":"d686fcb07a661fef0866137e450a487e710c233cb24f04d11426228162595d7e","impliedFormat":1},{"version":"e21af678a334e57edb0948acafa5f8d029a86c515f74b35701de2b7f0734ed78","signature":"97f2cb77a51ab49d71bdaa169999f503dc91a1261817c15463528d6d7a2dd2f9","impliedFormat":1},{"version":"8e3f8a63b6af3fd917721cfe670eedf5aae7df605d0072c5997021eb6fbdae31","impliedFormat":1},{"version":"046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","impliedFormat":1},{"version":"26b82a7ff864d0e68bc4578771898b91feabcb39dd6371970fd012827bd684f1","signature":"60e6faa0a819d40da14f63177e8f2f7a2c75c4f5925b7ede9d8bc13487d6384a","impliedFormat":1},{"version":"e2264b7f593788fca68253d204722139971cefcc19f01a9540b40e3c6a824152","signature":"68169677a1fbd913f4421ffc3fcafbec03a6bf3ea250249a18fb415f8f4a1746","impliedFormat":1},{"version":"a6260e50e119a4ae143e080cb69501b76f70b55df4f40b3874ee785277003570","impliedFormat":1},{"version":"311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","impliedFormat":1},{"version":"c032a9b7dfc5f9b86ac5b1535fe72154dc48a7f89f76c5cb4e8a6ab4db203671","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"23fa431c1549a548df67056c34a9ea3653b50266d77653a406ff5a67a7f861aa","impliedFormat":1},{"version":"1b1fc8e3cac6cd35e6ecae8aa8bda1f7c402e7786ca262ea6294c907c5b00149","signature":"a3aef4923a8dde677e086f9a6c3f5272a7881517658ff401ec47931829da2075","impliedFormat":1},{"version":"403ba71e387291ed9129e24bc76c9fdef4d563d0208baff9ac4f673d6ec2170a","signature":"1d57041f2cc69ae090870690d2171110a9b672d2b2a2839ace0f59bbaa67cc56","impliedFormat":1},{"version":"60a0074289b6584a0d7003c2aa14d9ebd0027e423deb79e08031b7e708770c98","impliedFormat":1},{"version":"d62b7fb6c39357289ba064887935b0966cd99da5a3bb63afc1d6ea4f82ab23f1","impliedFormat":1},{"version":"7a8e7fc0c0b3c6f0344a6b54a56e928aba5b2bde679ca742acf67aeb67e6f9d2","impliedFormat":1},{"version":"189150e785626242df43edde2e537ae48b8d8ba0c93e78c2478c9ce738a14cfe","impliedFormat":1},{"version":"b377fa259d15c6e3c0fc2804530f1c7448906df2b6afdf6ddeff61a75016cb28","impliedFormat":1},{"version":"a26bb2e2693f921f4aa3f6e8c04a18d07c6ab6c3162c426299e0d0a904d76d82","impliedFormat":1},{"version":"42e7c31cdce8294ad4852d465b2dd91307efecfd7a9889f2a0aa49ffca73e83b","impliedFormat":1},{"version":"7922bdca92b1a6f586e9403b2b7972200aae00f926a300e79bf2d62eb410714f","impliedFormat":1},{"version":"d3abaca0cd59f25b4e056681217d1f8674612071706e6825517ec9e264063e55","impliedFormat":1},{"version":"76a7145b39ac6cc3633e2ccb545e9db3e5a02c7e0bceddbb5abbd3b2e1fba32e","impliedFormat":1},{"version":"a3cf3aa8ec934a46e5d10922af944c14e1b73acb81c4ba90348bee40a829b26c","impliedFormat":1},{"version":"8f95f6784090939eb0cb0c648a03bce2208e595730afc14be4969d90b334b541","impliedFormat":1},{"version":"535b6a88c08e138b1b72003f482bceaca78311cd19836bdde0a80a131f457f43","impliedFormat":1},{"version":"cf72ba3ad6ed1f342e8ddbdbfdf425238cbc7a75cc7a318fa994cb3866a68804","impliedFormat":1},{"version":"f213a7dafb0a946c1134a64151cbb7f2301d23f93920356d730cf0ed767e9985","impliedFormat":1},{"version":"c305868de2a4ea029bd4b9593ebb33b602b54cdbb3a09231486f611a414d0f5f","impliedFormat":1},{"version":"cf42fcfc0f9e976054d921a0f5bf898f9127751cf5dd9f1b4820069fd78f2280","impliedFormat":1},{"version":"e35526a0977b9cd80f799aef3314cb2bfe66aeb40879c888f7a993bd3437fc42","impliedFormat":1},{"version":"81d92e5c4d618ba0660121ed30c603e8111ad605e7562948f7430d87038daee0","impliedFormat":1},{"version":"757f7967151a9b1f043aba090f09c1bdb0abe54f229efd3b7a656eb6da616bf4","impliedFormat":1},{"version":"2da74b28ea53cb34b516fd6dbda3ca93495648cf431e59d24ba3ab5d7ec59ba4","impliedFormat":1},{"version":"928ebc4436abadcd3680338883b7e26189beb7532ae4b3d1c1727598607e53fa","impliedFormat":1},{"version":"2d232975df81628cb4d8a5236b8776976940cc4dd202698e498de5a4baeb7389","impliedFormat":1},{"version":"9bddd9fa92fbbb5bd3b7617b88c4aa038391aa29eca99baef820bf0ff422ee43","signature":"cc67a58590a00cf7dff0a5849c8e7e0439ec202f2462621f60b13fbed0546fc5","impliedFormat":1},{"version":"4c1b770da0116b19eb873aa7cd0bd242ce4b18e20ecde61e5c0bda5421f40707","signature":"3849e66e1f8ac2913e0619ef856a845e4c44f6b9e97c606e991247a9353bb0dd","impliedFormat":1},{"version":"64b05591ba7a6a2025c3ce04bd72b972a6200d4481feaae2e66056e0a1500b3a","signature":"526ee815290e47e75fd2105f83de0916689cc532a19c81620672342f6478095f","impliedFormat":1},{"version":"96def9cb00debb7554a8019ae45310f375a65820bd8efa8e497a96e3416a5677","signature":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"04c8589ba249eb9bc61b2232ab6c29216409852b4aecfb478cbf2a754871253a","signature":"8bfba49493f92a72cdffe5b9947c3f572c9301f4e95a471027d0022e8d9b5d97","impliedFormat":1},{"version":"956f962aca6becfca36766fe3af718b586829e1e4dd72f6b896057f75d4e9e83","impliedFormat":1},{"version":"9f7b583873c73cf01be845311d8b3e1715aecfa476a047d885804d837327d5db","impliedFormat":1},{"version":"f4de63eb261a0b27b5f66f08a4e5c292b67b0c1c0d25199bdd632f4c449b4806","impliedFormat":1},{"version":"f4a795af80885eba93957db860b4b82b4d23a76c5e122c2af5eeb9319094d9d1","impliedFormat":1},{"version":"3267bdd186e8d021bfa57a5314a256b9781e895bc025e426a2bdbe93b946cca0","impliedFormat":1},{"version":"31ed847fef6dc27c5224045deab8f99887ec76146cbc4f2ccb33f5b117fc9bf1","impliedFormat":1},{"version":"0df38983d84eccab44e2e6385bed5e1033b23228e484b80ff124d4049ca8e75a","impliedFormat":1},{"version":"7395857a8b73a1a5a14af625ec52c90f5b24bb0b163057d0f3e8a197ccc816ee","impliedFormat":1},{"version":"8b2e63aba58523a92dd15761096a03b5ebbd8983e2889b1f14265d9b2bb444b6","impliedFormat":1},{"version":"5f932457c501d03a68bee9ae0ab26ef9df2fa1f789a981483ec1f56c120ea5c7","impliedFormat":1},{"version":"4118ae023b5dd1af42aa6ccec246e5c0a7fc32e7459bda588da183d371d46281","impliedFormat":1},{"version":"c935d7a81d4a4409ba02812bd2b9e0176b74d361109d977b13bf6898488df6d9","impliedFormat":1},{"version":"ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","impliedFormat":1},{"version":"970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","impliedFormat":1},{"version":"6477c1bd38bbe6e8d74abebd01a073a7e45a89086a5a250e11725989a54a9a94","impliedFormat":1},{"version":"046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","impliedFormat":1},{"version":"52580471774bba3d4ccd41c1178e2c2884f1caa7257d4e86f760ce840d5083f6","signature":"12c618d15f731e0251af2dcd7b52bb12b0535769e27c9c099bcea9b5a451f3f4","impliedFormat":1},{"version":"2837ced1e5d4ef88b4e1688fa62bc93b4248d1825667c87a83adaa51bc810cbf","impliedFormat":1},{"version":"f61af6ed7df59c72b7e2fc7e25a4500f5e9beafad5be038d349c5348a0727ba5","impliedFormat":1},{"version":"ab1d998d1a0125aeb4f70beb593220427562543d33c704f7df9e5d8b0de76700","signature":"f4dfb302d3c378152e1a8c8d9879d7d69625333efccd3092eafc40837b67f9e4","impliedFormat":1},{"version":"bf7ccda18d9cb9ed3047d96a6542fee3c3bc4e7a7822af40332c5c2f6e07c2b7","impliedFormat":1},{"version":"7bc71d52df9d8e5cc55218d347a91b1758b38341f9cbbac0b80057aa9d93daa6","impliedFormat":1},{"version":"7a1f7b274cf8a66b83fcf42153bde6f25f4eb4d7696d4a6b17e4a8878d128306","impliedFormat":1},{"version":"553dd4fef7d2b88e899646b66b2035e119f61b092d668ae0595a32c234f9b8b5","impliedFormat":1},{"version":"6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","impliedFormat":1},{"version":"afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","impliedFormat":1},{"version":"d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","impliedFormat":1},{"version":"6215681982d007f5e9137ab0ca969c39048401e588bb0ad92018297c82551ea8","impliedFormat":1},{"version":"82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","impliedFormat":1},{"version":"cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","impliedFormat":1},{"version":"3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","impliedFormat":1},{"version":"f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","impliedFormat":1},{"version":"ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","impliedFormat":1},{"version":"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","impliedFormat":1},{"version":"dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","impliedFormat":1},{"version":"67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","impliedFormat":1},{"version":"1b831600aabe1c065830d303d087189e1ccfc93a0ef1882eb58a336ec1ce9f2f","impliedFormat":1},{"version":"75f191b59fe7ce72d1d7d11d0f329a193843f54af93182fc5a65c37d0a82c85a","impliedFormat":1},{"version":"cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","impliedFormat":1},{"version":"f6451dc56be14d37a8b88ea62a143ea398ab44558cd530fb2cdeeea42695c849","impliedFormat":1},{"version":"8ab77e5c32f1b6c6c1ee1b1b771c1a76a16be650559dc61320c8c82c99fc7cde","impliedFormat":1},{"version":"16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","impliedFormat":1},{"version":"ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","impliedFormat":1},{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true,"impliedFormat":1},{"version":"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","impliedFormat":1},{"version":"c269a12e83c5ffc0332b1f245008e4e621e483dd2f8b9b77fc6a664fcde4969d","impliedFormat":1},{"version":"aa8a056ee45ae741849d6e809ba85967b638070060e29c57d12d22b14baefeb6","impliedFormat":1},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true,"impliedFormat":1},{"version":"a97081289e7233ca2ef04a729036449fec4e88818fd7b7397930bd4d52294b18","impliedFormat":1},{"version":"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","impliedFormat":1},{"version":"0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","impliedFormat":1},{"version":"15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","impliedFormat":1},{"version":"963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","impliedFormat":1},{"version":"9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","impliedFormat":1},{"version":"c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","impliedFormat":1},{"version":"ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","impliedFormat":1},{"version":"ae8cd6af37275eac75f5369cdb5f01063bcf1f48d74cb434303ee50ec446acfe","impliedFormat":1},{"version":"2518830a2fda9c272ba48798d0e7b857037443b06594db8e42c87e86944ee9e4","impliedFormat":1},{"version":"95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","impliedFormat":1},{"version":"1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","impliedFormat":1},{"version":"bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","impliedFormat":1},{"version":"5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","impliedFormat":1},{"version":"99ab49d4732fdc98cf5c495925e65e796544cb4086fe42afc235dfc02bcf2351","impliedFormat":1},{"version":"af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","impliedFormat":1},{"version":"d393adc32e520d4274bb4c3dfdcdb342b806a230b66ef0f82b35bffbc4aa2590","impliedFormat":1},{"version":"c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","impliedFormat":1},{"version":"38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","impliedFormat":1},{"version":"3b6040253231d44e6778eb6861cc86c1758562e77783d21b7ecbc73322ded539","impliedFormat":1},{"version":"03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","impliedFormat":1},{"version":"318c82cc1e13da55e8c60d7e1bdc422a0679d675ad048b6d5022a47f57d23e3f","impliedFormat":1},{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac3cce682a1eab96841ce9942ace8dd5649d2951007096555f4950479e4b8d56","impliedFormat":1},{"version":"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","impliedFormat":1},{"version":"fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","impliedFormat":1},{"version":"d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","impliedFormat":1},{"version":"ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","impliedFormat":1},{"version":"9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","impliedFormat":1},{"version":"3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","impliedFormat":1},{"version":"3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","impliedFormat":1},{"version":"951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","impliedFormat":1},{"version":"a45efe8e9134ef64a5e3825944bc16fffaf130b82943844523d7a7f7c1fd91b2","impliedFormat":1},{"version":"969aa6509a994f4f3b09b99d5d29484d8d52a2522e133ef9b4e54af9a3e9feaf","impliedFormat":1},{"version":"f378e8538e407f997a0f88fcd1ecd93a096707cc909339ce4dba2e4ea03f1726","impliedFormat":1},{"version":"dcafd874e49d42fc215dcb4ef1e06511363c1f31979951081f3cd1908a05a636","impliedFormat":1},{"version":"fb73c98050a02b5849cc0fbb0d133ed55764b9c2a91f0ada2a25e74df68e6242","impliedFormat":1},{"version":"6002c44a8e8edbe4c79ce856c7bac3f8e69a2a45dc5bd6b229ca4ab323b924b3","impliedFormat":1},{"version":"b4d505a77e0829de5e5e23eaefb3d7989e0dbdfdb02ea69159df9f40017fb958","impliedFormat":1},{"version":"b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","impliedFormat":1},{"version":"f2242adef346a64818a1af914146f6f6046f16505e8a228c3bdb70185d4fdf4c","impliedFormat":1},{"version":"2f7508d8eeadcfde20b41ec13726c9ad26f04bbf830434e289c6010d5be28455","impliedFormat":1},{"version":"8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","impliedFormat":1},{"version":"9798f0d3693043da9dda9146b5e8622cd4476270e7aed8f3cb346b9b40a52103","impliedFormat":1},{"version":"fc7e8927b6fa6c81d68783afb314d01592c559e86bd36df334c37f40d0136acd","impliedFormat":1},{"version":"73f72caffdd55f189b5bf4e6b5ca273b4e26269d9aac859b9d30a5f799c095ad","impliedFormat":1},{"version":"d998e3e185cdf59dfc84043c41a42c02daaf3b7b21bee2db2d1f620a8e134f4c","impliedFormat":1},{"version":"06aa8858883e08f5136eb182d2f285ea615aeb464007f83c7a31ee1f8d9932b1","impliedFormat":1},{"version":"62d429aba0bbe459a04965d10c7637b74b319149f17874920a5ffb9fe3ba14d8","impliedFormat":1},{"version":"084a25e9ee73362fbb467873341b95721689513c14af6aa3067a1d95d6fafe08","impliedFormat":1},{"version":"4dbfeb147290c498e3aa56ea3198a6a109c5c0d9d7a4936a3138376302d89e7d","impliedFormat":1},{"version":"169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","impliedFormat":1},{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true,"impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","impliedFormat":1},{"version":"5009c081fd8ca3fcd6f3adcd071a1c79a933a400532b897822aad0943688a1f1","impliedFormat":1},{"version":"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","impliedFormat":1},{"version":"93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","impliedFormat":1},{"version":"c271193e426325d9acab2f99997bb9f5f2dff850ec8c7c011c5abafe5af83b5f","impliedFormat":1},{"version":"58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","impliedFormat":1},{"version":"a3e12bcf2d196656ccd5b5d5344182967a2bdde0f63c9b955c36169ed02c3555","impliedFormat":1},{"version":"a016d2f6c0a2c15069ec69661ad37c86a450deb629ce96a592f15f01d3a5746e","impliedFormat":1},{"version":"2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","impliedFormat":1},{"version":"2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","impliedFormat":1},{"version":"42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","impliedFormat":1},{"version":"d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","impliedFormat":1},{"version":"b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","impliedFormat":1},{"version":"7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","impliedFormat":1},{"version":"906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","impliedFormat":1},{"version":"5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","impliedFormat":1},{"version":"c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","impliedFormat":1},{"version":"e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","impliedFormat":1},{"version":"e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","impliedFormat":1},{"version":"9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","impliedFormat":1},{"version":"0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","impliedFormat":1},{"version":"71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","impliedFormat":1},{"version":"c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","impliedFormat":1},{"version":"2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","impliedFormat":1},{"version":"479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","impliedFormat":1},{"version":"ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","impliedFormat":1},{"version":"f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","impliedFormat":1},{"version":"86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","impliedFormat":1},{"version":"2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","impliedFormat":1},{"version":"a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","impliedFormat":1},{"version":"b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","impliedFormat":1},{"version":"61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","impliedFormat":1},{"version":"6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","impliedFormat":1},{"version":"c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","impliedFormat":1},{"version":"38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","impliedFormat":1},{"version":"d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","impliedFormat":1},{"version":"3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","impliedFormat":1},{"version":"b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","impliedFormat":1},{"version":"f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","impliedFormat":1},{"version":"843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","impliedFormat":1},{"version":"f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","impliedFormat":1},{"version":"6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","impliedFormat":1},{"version":"e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","impliedFormat":1},{"version":"a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","impliedFormat":1},{"version":"a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","impliedFormat":1},{"version":"da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","impliedFormat":1},{"version":"acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","impliedFormat":1},{"version":"6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","impliedFormat":1},{"version":"4fddd9f6929421ce580b4583defbb3f78f5a4a3642bea5ecd3209bf652d8b507","impliedFormat":1},{"version":"f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","impliedFormat":1},{"version":"82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","impliedFormat":1},{"version":"557e00bde9af85bcb3ab6b3a785904f028f9f1b65dba664f2fda44965acf8a78","impliedFormat":1},{"version":"397981908f102effb3cd483042076b593f3928264dbf06aec235a7c3e83da2b4","impliedFormat":1},{"version":"ad78491e2a3ae1e59680dbab88607dd670d06a91b1d6c451fa895ad390513e8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a9deb79dabc5153448e38589fbe38945fdad45f0f8442cd4d4e1da8bb879a76","affectsGlobalScope":true,"impliedFormat":1},{"version":"f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956","impliedFormat":1},{"version":"c9cc4c881c910ce378659524d985d2b72b79029b0c473df5d4d3557b4cf6010a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fae4b2bc906f3e6840725cc24affaa4e684e6c9cc20254242c5df4bede5b6f6","impliedFormat":1},{"version":"2dd1d4cea14cead7a7fc9eec8f40593089dff0de8c0199458446143c9b8c4ea9","impliedFormat":1},{"version":"c0288f54de6f544706a3150c8b579b1a975870695c4be866f727ece6a16f3976","impliedFormat":1},{"version":"ec2c7505ede4bc3ee37cfe431cfd87e545f55f27fe15b0809c1a411765145615","impliedFormat":1}],"options":{"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":99,"outDir":"./dist-es","removeComments":true,"rootDir":"./src","skipLibCheck":true,"strict":true,"target":8,"useUnknownInCatchVariables":false},"fileIdsList":[[64,69,117],[64,69,82,98,115,495],[64,69],[64,69,84,117,498],[64,69,75,117],[64,69,81,84,109,117,502,503,504],[64,69,117,513],[64,69,109,117,517],[64,69,84,117],[64,69,70,117],[64,69,506,507,521],[64,69,81,84,117,515,516],[64,69,499,516,517,524],[64,69,81,82,117,526],[64,69,81,84,86,89,98,109,117],[64,69,81,112,117,543,544,546],[64,69,545],[64,69,81,117],[64,69,548,550,551,552,553,554,555,556,557,558,559,560],[64,69,548,549,551,552,553,554,555,556,557,558,559,560],[64,69,549,550,551,552,553,554,555,556,557,558,559,560],[64,69,548,549,550,552,553,554,555,556,557,558,559,560],[64,69,548,549,550,551,553,554,555,556,557,558,559,560],[64,69,548,549,550,551,552,554,555,556,557,558,559,560],[64,69,548,549,550,551,552,553,555,556,557,558,559,560],[64,69,548,549,550,551,552,553,554,556,557,558,559,560],[64,69,548,549,550,551,552,553,554,555,557,558,559,560],[64,69,548,549,550,551,552,553,554,555,556,558,559,560],[64,69,548,549,550,551,552,553,554,555,556,557,559,560],[64,69,548,549,550,551,552,553,554,555,556,557,558,560],[64,69,548,549,550,551,552,553,554,555,556,557,558,559],[64,69,580],[64,69,565],[64,69,569,570,571],[64,69,568],[64,69,570],[64,69,547,566,567,572,575,577,578,579],[64,69,567,573,574,580],[64,69,573,576],[64,69,567,568,573,580],[64,69,567,580],[64,69,561,562,563,564],[64,69,84,109,117,586,587],[64,69,592],[64,69,81,82,117],[64,69,84,98,117],[64,69,595,634],[64,69,595,619,634],[64,69,634],[64,69,595],[64,69,595,620,634],[64,69,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633],[64,69,620,634],[64,69,82,525],[64,69,84,117,523],[64,69,636],[64,69,98,117],[64,69,81,84,86,98,106,109,115,117],[64,69,81,117,648],[64,69,532],[64,69,531,532],[64,69,531],[64,69,531,532,533,535,536,539,540,541,542],[64,69,532,536],[64,69,531,532,533,535,536,537,538],[64,69,531,536],[64,69,536,540],[64,69,532,533,534],[64,69,533],[64,69,531,532,536],[64,69,510],[64,69,507,508,509],[64,69,507,510],[64,69,84,89,106,109,112,506,508,510,511,512],[64,69,163,198],[64,69,163,197,336],[64,69,163,215,242,244,336],[64,69,245,246],[64,69,285],[64,69,163,247,285,295],[64,69,243,296,297,336,337,339,340],[64,69,244],[64,69,242,243],[64,69,242],[64,69,163,245,246,295],[64,69,163,245,246,336],[64,69,163,198,242,245,246,295,297,298,301,316,318,335],[64,69,163,188,198,242,295,297,336,344],[64,69,163,188,198,242,295,297,336,349,396],[64,69,163,198,297,336],[64,69,296],[64,69,474,475],[64,69,491],[64,69,163,361],[64,69,163,197,372],[64,69,163,215,242,363,372],[64,69,364,365,366,367],[64,69,163],[64,69,163,285,295,369],[64,69,362,368,370,371,372,373,374,378,379],[64,69,363],[64,69,242,362],[64,69,375,376,377],[64,69,163,372],[64,69,163,365,375],[64,69,163,366,375],[64,69,370],[64,69,163,364,365,366,367,372],[64,69,163,215,242,295,298,301,316,335,361,364,365,366,367,368,371],[45,64,69,191,196],[44,64,69],[64,69,163,179],[64,69,163,178],[64,69,178,179,180,189],[64,69,163,177],[64,69,163,188],[64,69,190],[64,69,192,193,194,195],[64,69,163,350],[64,69,350,351],[64,69,163,173,285,355,356],[64,69,357],[64,69,163,357],[64,69,163,352,355,358,360,386,394],[64,69,395],[64,69,163,173,285],[64,69,359],[64,69,163,173,285,381],[64,69,382,383,384,385],[64,69,163,383],[64,69,380],[64,69,163,285,353],[64,69,163,285],[64,69,353,354],[64,69,446],[64,69,299,300],[64,69,163,299],[64,69,439,442],[64,69,177],[64,69,440,441],[64,69,163,260,261],[64,69,255],[64,69,255,256,257,258,259],[64,69,248,249,250,251,252,253,254,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284],[64,69,260,261],[64,69,163,477],[64,69,163,417],[64,69,302,303,304,305],[64,69,163,304],[64,69,306,309,315],[64,69,307,308],[64,69,310],[64,69,163,312,313],[64,69,312,313,314],[64,69,311],[64,69,452,455,462,463,464,465,466],[64,69,163,449],[64,69,449,450,451],[64,69,453,454],[64,69,163,295],[64,69,457,458,459],[64,69,456,460,461],[64,69,163,387],[64,69,163,387,389],[64,69,387,388,389,390,391,392,393],[64,69,479,480,481],[64,69,317],[64,69,98,117,163],[64,69,419,420],[64,69,342,343],[64,69,483,484],[64,69,163,208,209],[64,69,210,211],[64,69,208,209,212,213,214],[64,69,163,326,328],[64,69,328,329,330,331,332,333,334],[64,69,163,330],[64,69,163,327],[64,69,408,409,410],[64,69,163,409],[64,69,163,164,174,175],[64,69,163,173],[64,69,176],[64,69,346,347,348],[64,69,84,86,117,163,295],[64,69,288],[64,69,289],[64,69,163,291],[64,69,163,286,287],[64,69,286,287,288,290,291,292,293,294],[64,69,165,166,167,168,169,170,171,172],[64,69,163,169],[64,69,181,182,183,184,185,186,187],[64,69,163,206],[64,69,163,215],[64,69,199],[64,69,163,225,226],[64,69,227],[64,69,163,199,207,216,217,218,219,220,221,222,223,224,228,229,230,231,232,233,234,235,236,237,238,239,240,241],[47,64,69],[46,64,69],[50,57,58,59,64,69],[57,60,64,69],[50,54,64,69],[50,60,64,69],[48,49,58,59,60,61,64,69],[64,69,98,117,119],[64,69,121],[55,56,57,64,69,123],[55,57,64,69],[64,69,125,127,128],[64,69,125,126],[64,69,130],[48,64,69],[51,64,69,132],[64,69,132],[64,69,132,133,134,135,136],[64,69,135],[52,64,69],[64,69,132,133,134],[54,55,57,64,69],[64,69,121,122],[64,69,138],[64,69,138,142],[64,69,138,139,142,143],[56,64,69,141],[64,69,118],[47,53,64,69],[52,54,64,69,84,86,117],[50,64,69],[50,64,69,146,147,148],[47,51,52,53,54,55,56,57,62,64,69,120,121,122,123,124,126,129,130,131,137,140,141,144,145,149,150,151,152,153,154,155,156,157,158,160,161,162],[48,51,52,56,64,69],[64,69,124],[64,69,140],[54,56,64,69,126],[54,55,64,69],[54,64,69,130],[56,64,69,121,122],[64,69,84,98,117,119,152],[55,64,69,123,157,158],[54,64,69,84,85,117,123,124,152,156,157,158,159],[64,69,123,124],[54,64,69],[64,69,427,428],[64,69,486],[64,69,423],[64,69,488],[64,69,163,242],[64,69,435],[64,69,402,403],[64,69,163,319],[64,69,163,321],[64,69,319],[64,69,319,320,321,322,323,324,325],[64,69,98],[64,69,200,201,202,203,204,205],[64,69,98,163],[64,69,430,431,432],[64,65,69],[64,68,69],[64,69,74,101],[64,69,70,81,82,89,98,109],[64,69,70,71,81,89],[64,69,72,110],[64,69,73,74,82,90],[64,69,74,98,106],[64,69,75,77,81,89],[64,69,76],[64,69,77,78],[64,69,81],[64,69,80,81],[64,68,69,81],[64,69,81,82,83,98,109],[64,69,81,82,83,98],[64,69,81,84,89,98,109],[64,69,81,82,84,85,89,98,106,109],[64,69,84,86,98,106,109],[64,69,81,87],[64,69,88,109,114],[64,69,77,81,89,98],[64,69,90],[64,69,91],[64,68,69,92],[64,69,93,108,114],[64,69,94],[64,69,95],[64,69,81,96],[64,69,96,97,110,112],[64,69,81,98,99,100],[64,69,98,100],[64,69,98,99],[64,69,101],[64,69,102],[64,69,81,104,105],[64,69,104,105],[64,69,74,89,98,106],[64,69,107],[69],[63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116],[64,69,89,108],[64,69,84,95,109],[64,69,74,110],[64,69,98,111],[64,69,112],[64,69,113],[64,69,74,81,83,92,98,109,112,114],[64,69,98,115],[64,69,163,401,405],[64,69,163,197,401,404,469],[64,69,163,242,401,407,411,414,469],[64,69,401,412,415],[64,69,285,316,401],[64,69,163,285,295,401,438],[64,69,401,406,444,445,469,470,471,472],[64,69,401,407],[64,69,242,401,406],[64,69,242,401],[64,69,163,197,242,295,401,406,407,412,413,415],[64,69,163,242,401,412,415,469],[64,69,163,242,295,298,301,316,318,335,401,405,412,415,437,445,447,448,467,468],[64,69,242,316,326,344,401,416,434,469,476,478,482,485,487,489],[64,69,401,469,490,492],[64,69,163,197,242,401,405,425,426,429,433,469],[64,69,177,197,242,316,326,335,349,396,401,416,418,421,422,424,434,436,469],[64,69,242,295,401,438,443,444],[64,69,163,247,285,650],[64,69,163,245,246,650],[64,69,163,198,242,245,246,297,298,301,316,318,335,650],[64,69,163,198,242,297,336,344,650,651],[64,69,163,198,242,297,336,349,396,650,651],[163,405],[163,197,469],[163,215,242,407,469],[412,415],[285],[163,285,438,650],[406,444,445,469,470,471,472],[407],[242,406],[242],[163,412,415,650],[163,412,415,469],[163,242,298,301,316,318,335,405,412,415,445,650],[163,188,242,295,344,405,445,469],[163,405,445,469],[163,188,242,295,349,396,405,445,469],[444]],"referencedMap":[[494,1],[496,2],[497,3],[499,4],[500,5],[501,3],[505,6],[514,7],[518,8],[498,9],[519,10],[520,3],[521,3],[522,11],[506,3],[517,12],[525,13],[527,14],[526,3],[503,3],[528,15],[529,3],[530,3],[545,16],[546,17],[507,3],[502,18],[547,3],[549,19],[550,20],[548,21],[551,22],[552,23],[553,24],[554,25],[555,26],[556,27],[557,28],[558,29],[559,30],[560,31],[581,32],[566,33],[572,34],[570,3],[569,35],[571,36],[580,37],[575,38],[577,39],[578,40],[579,41],[573,3],[574,41],[576,41],[568,41],[567,3],[562,3],[561,3],[564,33],[565,42],[563,33],[582,3],[523,3],[583,3],[584,3],[585,3],[587,3],[588,43],[589,3],[590,3],[591,3],[593,44],[516,3],[515,3],[495,45],[594,3],[504,46],[592,3],[619,47],[620,48],[595,49],[598,49],[617,47],[618,47],[608,47],[607,50],[605,47],[600,47],[613,47],[611,47],[615,47],[599,47],[612,47],[616,47],[601,47],[602,47],[614,47],[596,47],[603,47],[604,47],[606,47],[610,47],[621,51],[609,47],[597,47],[634,52],[633,3],[628,51],[630,53],[629,51],[622,51],[623,51],[625,51],[627,51],[631,53],[632,53],[624,53],[626,53],[635,54],[524,55],[637,56],[636,3],[638,3],[639,9],[640,57],[641,3],[544,3],[643,3],[642,3],[644,3],[645,3],[646,3],[647,58],[649,59],[648,3],[509,3],[586,46],[533,60],[542,61],[531,3],[532,62],[543,63],[538,64],[539,65],[537,66],[541,67],[535,68],[534,69],[540,70],[536,61],[511,71],[510,72],[508,73],[512,3],[513,74],[247,75],[198,76],[245,77],[339,78],[246,77],[338,79],[296,80],[341,81],[340,82],[244,83],[243,84],[400,85],[337,86],[336,87],[345,88],[397,89],[398,88],[399,90],[297,91],[474,79],[476,92],[475,79],[492,93],[491,79],[369,94],[361,95],[364,96],[374,97],[365,96],[366,96],[367,96],[368,98],[370,99],[380,100],[379,101],[363,102],[362,84],[378,103],[375,104],[376,105],[377,106],[371,107],[373,108],[372,109],[197,110],[44,3],[45,111],[180,112],[179,113],[190,114],[178,115],[189,116],[191,117],[192,3],[196,118],[193,3],[194,98],[195,98],[351,119],[350,79],[352,120],[357,121],[358,122],[356,123],[395,124],[396,125],[359,126],[360,127],[382,128],[386,129],[384,130],[381,131],[383,98],[385,130],[354,132],[353,133],[355,134],[298,98],[447,135],[446,98],[448,98],[299,98],[301,136],[300,137],[439,133],[443,138],[440,139],[442,140],[441,98],[248,98],[249,98],[250,98],[251,98],[252,98],[253,98],[254,98],[262,141],[263,98],[264,3],[265,98],[266,98],[267,98],[268,98],[269,98],[256,142],[257,98],[255,98],[260,143],[258,142],[259,98],[285,144],[270,98],[271,98],[272,98],[273,98],[274,3],[275,98],[276,98],[277,98],[278,98],[279,98],[280,98],[281,145],[282,98],[283,98],[261,98],[284,98],[477,3],[478,146],[417,3],[418,147],[306,148],[302,139],[303,139],[305,149],[304,98],[316,150],[307,139],[309,151],[308,98],[311,152],[310,3],[314,153],[315,154],[312,155],[313,155],[463,98],[467,156],[450,157],[451,157],[449,98],[452,158],[454,98],[453,98],[455,159],[464,98],[466,98],[465,160],[456,98],[457,160],[458,160],[460,161],[459,98],[462,162],[461,98],[393,3],[388,163],[390,164],[394,165],[391,9],[387,98],[389,98],[392,98],[479,98],[482,166],[480,98],[481,3],[317,98],[318,167],[419,168],[421,169],[420,98],[342,160],[344,170],[343,98],[422,98],[485,171],[483,3],[484,98],[468,98],[210,172],[212,173],[211,98],[213,172],[214,172],[215,174],[208,98],[209,3],[329,175],[330,115],[331,3],[335,176],[332,98],[333,98],[334,177],[328,178],[327,98],[408,98],[411,179],[409,98],[410,180],[176,181],[164,98],[174,182],[175,98],[177,183],[349,184],[346,185],[347,160],[348,98],[289,186],[290,187],[291,98],[292,188],[288,189],[286,98],[287,98],[295,190],[293,3],[294,98],[165,3],[166,3],[167,3],[168,3],[173,191],[169,98],[170,98],[171,192],[172,98],[187,98],[182,98],[183,98],[184,98],[188,193],[185,98],[186,98],[181,98],[199,98],[207,194],[216,195],[217,3],[218,196],[219,3],[220,3],[221,3],[222,3],[223,98],[224,3],[225,98],[227,197],[228,198],[226,98],[229,3],[230,3],[242,199],[231,3],[232,3],[233,98],[234,3],[235,3],[236,3],[237,3],[238,3],[239,3],[240,3],[241,3],[46,200],[47,201],[48,3],[49,3],[60,202],[61,203],[58,204],[59,205],[62,206],[120,207],[122,208],[124,209],[123,210],[125,3],[129,211],[127,212],[128,3],[121,3],[131,213],[51,214],[133,215],[134,216],[137,217],[136,218],[132,219],[135,220],[130,221],[138,222],[139,223],[143,224],[144,225],[142,226],[119,227],[54,228],[145,229],[146,230],[147,230],[50,3],[149,231],[148,230],[163,232],[52,3],[57,233],[150,234],[151,3],[55,3],[141,235],[152,236],[140,237],[153,238],[154,239],[155,207],[156,207],[157,240],[126,3],[159,241],[160,242],[118,3],[161,243],[158,3],[53,244],[56,221],[162,200],[426,98],[427,3],[429,245],[428,3],[486,3],[487,246],[423,3],[424,247],[489,248],[488,249],[436,250],[435,249],[402,98],[404,251],[403,98],[320,252],[324,3],[322,253],[325,3],[323,254],[326,255],[321,98],[319,3],[200,3],[201,168],[204,256],[206,257],[202,258],[203,57],[205,3],[430,3],[433,259],[431,3],[432,3],[65,260],[66,260],[68,261],[69,262],[70,263],[71,264],[72,265],[73,266],[74,267],[75,268],[76,269],[77,270],[78,270],[79,271],[80,272],[81,273],[82,274],[83,275],[67,3],[116,3],[84,276],[85,277],[86,278],[87,279],[88,280],[89,281],[90,282],[91,283],[92,284],[93,285],[94,286],[95,287],[96,288],[97,289],[98,290],[100,291],[99,292],[101,293],[102,294],[103,3],[104,295],[105,296],[106,297],[107,298],[64,299],[63,3],[117,300],[108,301],[109,302],[110,303],[111,304],[112,305],[113,306],[114,307],[115,308],[413,3],[401,3],[8,3],[9,3],[11,3],[10,3],[2,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[3,3],[4,3],[23,3],[20,3],[21,3],[22,3],[24,3],[25,3],[26,3],[5,3],[27,3],[28,3],[29,3],[30,3],[6,3],[34,3],[31,3],[32,3],[33,3],[35,3],[7,3],[36,3],[41,3],[42,3],[37,3],[38,3],[39,3],[40,3],[1,3],[43,3],[416,3],[438,309],[405,310],[415,311],[471,312],[412,311],[425,313],[444,314],[473,315],[472,316],[407,317],[406,318],[414,319],[470,320],[469,321],[490,322],[493,323],[434,324],[437,325],[445,326]],"exportedModulesMap":[[494,1],[496,2],[497,3],[499,4],[500,5],[501,3],[505,6],[514,7],[518,8],[498,9],[519,10],[520,3],[521,3],[522,11],[506,3],[517,12],[525,13],[527,14],[526,3],[503,3],[528,15],[529,3],[530,3],[545,16],[546,17],[507,3],[502,18],[547,3],[549,19],[550,20],[548,21],[551,22],[552,23],[553,24],[554,25],[555,26],[556,27],[557,28],[558,29],[559,30],[560,31],[581,32],[566,33],[572,34],[570,3],[569,35],[571,36],[580,37],[575,38],[577,39],[578,40],[579,41],[573,3],[574,41],[576,41],[568,41],[567,3],[562,3],[561,3],[564,33],[565,42],[563,33],[582,3],[523,3],[583,3],[584,3],[585,3],[587,3],[588,43],[589,3],[590,3],[591,3],[593,44],[516,3],[515,3],[495,45],[594,3],[504,46],[592,3],[619,47],[620,48],[595,49],[598,49],[617,47],[618,47],[608,47],[607,50],[605,47],[600,47],[613,47],[611,47],[615,47],[599,47],[612,47],[616,47],[601,47],[602,47],[614,47],[596,47],[603,47],[604,47],[606,47],[610,47],[621,51],[609,47],[597,47],[634,52],[633,3],[628,51],[630,53],[629,51],[622,51],[623,51],[625,51],[627,51],[631,53],[632,53],[624,53],[626,53],[635,54],[524,55],[637,56],[636,3],[638,3],[639,9],[640,57],[641,3],[544,3],[643,3],[642,3],[644,3],[645,3],[646,3],[647,58],[649,59],[648,3],[509,3],[586,46],[533,60],[542,61],[531,3],[532,62],[543,63],[538,64],[539,65],[537,66],[541,67],[535,68],[534,69],[540,70],[536,61],[511,71],[510,72],[508,73],[512,3],[513,74],[247,75],[198,76],[245,77],[339,78],[246,77],[338,79],[296,327],[341,81],[340,82],[244,83],[243,84],[400,328],[337,86],[336,329],[345,330],[397,331],[398,330],[399,90],[297,91],[474,79],[476,92],[475,79],[492,93],[491,79],[369,94],[361,95],[364,96],[374,97],[365,96],[366,96],[367,96],[368,98],[370,99],[380,100],[379,101],[363,102],[362,84],[378,103],[375,104],[376,105],[377,106],[371,107],[373,108],[372,109],[197,110],[44,3],[45,111],[180,112],[179,113],[190,114],[178,115],[189,116],[191,117],[192,3],[196,118],[193,3],[194,98],[195,98],[351,119],[350,79],[352,120],[357,121],[358,122],[356,123],[395,124],[396,125],[359,126],[360,127],[382,128],[386,129],[384,130],[381,131],[383,98],[385,130],[354,132],[353,133],[355,134],[298,98],[447,135],[446,98],[448,98],[299,98],[301,136],[300,137],[439,133],[443,138],[440,139],[442,140],[441,98],[248,98],[249,98],[250,98],[251,98],[252,98],[253,98],[254,98],[262,141],[263,98],[264,3],[265,98],[266,98],[267,98],[268,98],[269,98],[256,142],[257,98],[255,98],[260,143],[258,142],[259,98],[285,144],[270,98],[271,98],[272,98],[273,98],[274,3],[275,98],[276,98],[277,98],[278,98],[279,98],[280,98],[281,145],[282,98],[283,98],[261,98],[284,98],[477,3],[478,146],[417,3],[418,147],[306,148],[302,139],[303,139],[305,149],[304,98],[316,150],[307,139],[309,151],[308,98],[311,152],[310,3],[314,153],[315,154],[312,155],[313,155],[463,98],[467,156],[450,157],[451,157],[449,98],[452,158],[454,98],[453,98],[455,159],[464,98],[466,98],[465,160],[456,98],[457,160],[458,160],[460,161],[459,98],[462,162],[461,98],[393,3],[388,163],[390,164],[394,165],[391,9],[387,98],[389,98],[392,98],[479,98],[482,166],[480,98],[481,3],[317,98],[318,167],[419,168],[421,169],[420,98],[342,160],[344,170],[343,98],[422,98],[485,171],[483,3],[484,98],[468,98],[210,172],[212,173],[211,98],[213,172],[214,172],[215,174],[208,98],[209,3],[329,175],[330,115],[331,3],[335,176],[332,98],[333,98],[334,177],[328,178],[327,98],[408,98],[411,179],[409,98],[410,180],[176,181],[164,98],[174,182],[175,98],[177,183],[349,184],[346,185],[347,160],[348,98],[289,186],[290,187],[291,98],[292,188],[288,189],[286,98],[287,98],[295,190],[293,3],[294,98],[165,3],[166,3],[167,3],[168,3],[173,191],[169,98],[170,98],[171,192],[172,98],[187,98],[182,98],[183,98],[184,98],[188,193],[185,98],[186,98],[181,98],[199,98],[207,194],[216,195],[217,3],[218,196],[219,3],[220,3],[221,3],[222,3],[223,98],[224,3],[225,98],[227,197],[228,198],[226,98],[229,3],[230,3],[242,199],[231,3],[232,3],[233,98],[234,3],[235,3],[236,3],[237,3],[238,3],[239,3],[240,3],[241,3],[46,200],[47,201],[48,3],[49,3],[60,202],[61,203],[58,204],[59,205],[62,206],[120,207],[122,208],[124,209],[123,210],[125,3],[129,211],[127,212],[128,3],[121,3],[131,213],[51,214],[133,215],[134,216],[137,217],[136,218],[132,219],[135,220],[130,221],[138,222],[139,223],[143,224],[144,225],[142,226],[119,227],[54,228],[145,229],[146,230],[147,230],[50,3],[149,231],[148,230],[163,232],[52,3],[57,233],[150,234],[151,3],[55,3],[141,235],[152,236],[140,237],[153,238],[154,239],[155,207],[156,207],[157,240],[126,3],[159,241],[160,242],[118,3],[161,243],[158,3],[53,244],[56,221],[162,200],[426,98],[427,3],[429,245],[428,3],[486,3],[487,246],[423,3],[424,247],[489,248],[488,249],[436,250],[435,249],[402,98],[404,251],[403,98],[320,252],[324,3],[322,253],[325,3],[323,254],[326,255],[321,98],[319,3],[200,3],[201,168],[204,256],[206,257],[202,258],[203,57],[205,3],[430,3],[433,259],[431,3],[432,3],[65,260],[66,260],[68,261],[69,262],[70,263],[71,264],[72,265],[73,266],[74,267],[75,268],[76,269],[77,270],[78,270],[79,271],[80,272],[81,273],[82,274],[83,275],[67,3],[116,3],[84,276],[85,277],[86,278],[87,279],[88,280],[89,281],[90,282],[91,283],[92,284],[93,285],[94,286],[95,287],[96,288],[97,289],[98,290],[100,291],[99,292],[101,293],[102,294],[103,3],[104,295],[105,296],[106,297],[107,298],[64,299],[63,3],[117,300],[108,301],[109,302],[110,303],[111,304],[112,305],[113,306],[114,307],[115,308],[413,3],[401,3],[8,3],[9,3],[11,3],[10,3],[2,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[3,3],[4,3],[23,3],[20,3],[21,3],[22,3],[24,3],[25,3],[26,3],[5,3],[27,3],[28,3],[29,3],[30,3],[6,3],[34,3],[31,3],[32,3],[33,3],[35,3],[7,3],[36,3],[41,3],[42,3],[37,3],[38,3],[39,3],[40,3],[1,3],[43,3],[438,332],[405,333],[415,334],[471,335],[412,334],[425,336],[444,337],[473,338],[472,339],[407,340],[406,341],[414,342],[470,343],[469,344],[490,345],[493,345],[434,346],[437,347],[445,348]],"semanticDiagnosticsPerFile":[494,496,497,499,500,501,505,514,518,498,519,520,521,522,506,517,525,527,526,503,528,529,530,545,546,507,502,547,549,550,548,551,552,553,554,555,556,557,558,559,560,581,566,572,570,569,571,580,575,577,578,579,573,574,576,568,567,562,561,564,565,563,582,523,583,584,585,587,588,589,590,591,593,516,515,495,594,504,592,619,620,595,598,617,618,608,607,605,600,613,611,615,599,612,616,601,602,614,596,603,604,606,610,621,609,597,634,633,628,630,629,622,623,625,627,631,632,624,626,635,524,637,636,638,639,640,641,544,643,642,644,645,646,647,649,648,509,586,533,542,531,532,543,538,539,537,541,535,534,540,536,511,510,508,512,513,247,198,245,339,246,338,296,341,340,244,243,400,337,336,345,397,398,399,297,474,476,475,492,491,369,361,364,374,365,366,367,368,370,380,379,363,362,378,375,376,377,371,373,372,197,44,45,180,179,190,178,189,191,192,196,193,194,195,351,350,352,357,358,356,395,396,359,360,382,386,384,381,383,385,354,353,355,298,447,446,448,299,301,300,439,443,440,442,441,248,249,250,251,252,253,254,262,263,264,265,266,267,268,269,256,257,255,260,258,259,285,270,271,272,273,274,275,276,277,278,279,280,281,282,283,261,284,477,478,417,418,306,302,303,305,304,316,307,309,308,311,310,314,315,312,313,463,467,450,451,449,452,454,453,455,464,466,465,456,457,458,460,459,462,461,393,388,390,394,391,387,389,392,479,482,480,481,317,318,419,421,420,342,344,343,422,485,483,484,468,210,212,211,213,214,215,208,209,329,330,331,335,332,333,334,328,327,408,411,409,410,176,164,174,175,177,349,346,347,348,289,290,291,292,288,286,287,295,293,294,165,166,167,168,173,169,170,171,172,187,182,183,184,188,185,186,181,199,207,216,217,218,219,220,221,222,223,224,225,227,228,226,229,230,242,231,232,233,234,235,236,237,238,239,240,241,46,47,48,49,60,61,58,59,62,120,122,124,123,125,129,127,128,121,131,51,133,134,137,136,132,135,130,138,139,143,144,142,119,54,145,146,147,50,149,148,163,52,57,150,151,55,141,152,140,153,154,155,156,157,126,159,160,118,161,158,53,56,162,426,427,429,428,486,487,423,424,489,488,436,435,402,404,403,320,324,322,325,323,326,321,319,200,201,204,206,202,203,205,430,433,431,432,65,66,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,67,116,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,99,101,102,103,104,105,106,107,64,63,117,108,109,110,111,112,113,114,115,413,401,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,416,438,405,415,471,412,425,444,473,472,407,406,414,470,469,490,493,434,437,445]},"version":"4.9.5"} \ No newline at end of file +{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/client/emitwarningifunsupportedversion.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts","./node_modules/@smithy/types/dist-types/abort-handler.d.ts","./node_modules/@smithy/types/dist-types/abort.d.ts","./node_modules/@smithy/types/dist-types/auth/auth.d.ts","./node_modules/@smithy/types/dist-types/auth/httpapikeyauth.d.ts","./node_modules/@smithy/types/dist-types/identity/identity.d.ts","./node_modules/@smithy/types/dist-types/endpoint.d.ts","./node_modules/@smithy/types/dist-types/logger.d.ts","./node_modules/@smithy/types/dist-types/uri.d.ts","./node_modules/@smithy/types/dist-types/http.d.ts","./node_modules/@smithy/types/dist-types/response.d.ts","./node_modules/@smithy/types/dist-types/util.d.ts","./node_modules/@smithy/types/dist-types/middleware.d.ts","./node_modules/@smithy/types/dist-types/auth/httpsigner.d.ts","./node_modules/@smithy/types/dist-types/auth/identityproviderconfig.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthscheme.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/types/dist-types/auth/index.d.ts","./node_modules/@types/node/ts5.6/globals.typedarray.d.ts","./node_modules/@types/node/ts5.6/buffer.buffer.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/dom-events.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/ts5.6/index.d.ts","./node_modules/@smithy/types/dist-types/transform/exact.d.ts","./node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts","./node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/crypto.d.ts","./node_modules/@smithy/types/dist-types/checksum.d.ts","./node_modules/@smithy/types/dist-types/command.d.ts","./node_modules/@smithy/types/dist-types/client.d.ts","./node_modules/@smithy/types/dist-types/connection/config.d.ts","./node_modules/@smithy/types/dist-types/transfer.d.ts","./node_modules/@smithy/types/dist-types/connection/manager.d.ts","./node_modules/@smithy/types/dist-types/connection/pool.d.ts","./node_modules/@smithy/types/dist-types/connection/index.d.ts","./node_modules/@smithy/types/dist-types/eventstream.d.ts","./node_modules/@smithy/types/dist-types/encode.d.ts","./node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","./node_modules/@smithy/types/dist-types/endpoints/endpointruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/errorruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/treeruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/rulesetobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/index.d.ts","./node_modules/@smithy/types/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultclientconfiguration.d.ts","./node_modules/@smithy/types/dist-types/shapes.d.ts","./node_modules/@smithy/types/dist-types/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/types/dist-types/extensions/index.d.ts","./node_modules/@smithy/types/dist-types/http/httphandlerinitialization.d.ts","./node_modules/@smithy/types/dist-types/identity/apikeyidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/index.d.ts","./node_modules/@smithy/types/dist-types/pagination.d.ts","./node_modules/@smithy/types/dist-types/profile.d.ts","./node_modules/@smithy/types/dist-types/serde.d.ts","./node_modules/@smithy/types/dist-types/signature.d.ts","./node_modules/@smithy/types/dist-types/stream.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","./node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","./node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","./node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","./node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts","./node_modules/@smithy/types/dist-types/waiter.d.ts","./node_modules/@smithy/types/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromenv.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/gethomedir.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getprofilename.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfilepath.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfromfile.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadsharedconfigfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadssosessiondata.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/parseknownfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromsharedconfigfiles.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromstatic.d.ts","./node_modules/@smithy/node-config-provider/dist-types/configloader.d.ts","./node_modules/@smithy/node-config-provider/dist-types/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4aconfig.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4signer.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4asigner.d.ts","./node_modules/@smithy/signature-v4/dist-types/signaturev4.d.ts","./node_modules/@smithy/signature-v4/dist-types/getcanonicalheaders.d.ts","./node_modules/@smithy/signature-v4/dist-types/getcanonicalquery.d.ts","./node_modules/@smithy/signature-v4/dist-types/getpayloadhash.d.ts","./node_modules/@smithy/signature-v4/dist-types/moveheaderstoquery.d.ts","./node_modules/@smithy/signature-v4/dist-types/preparerequest.d.ts","./node_modules/@smithy/signature-v4/dist-types/credentialderivation.d.ts","./node_modules/@smithy/signature-v4/dist-types/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4config.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/coercing-serializers.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsexpectunion.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parsejsonbody.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/parsexmlbody.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts","./node_modules/@aws-sdk/core/dist-types/index.d.ts","./dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/smithy-client/dist-types/client.d.ts","./node_modules/@smithy/util-stream/dist-types/blob/uint8arrayblobadapter.d.ts","./node_modules/@smithy/util-stream/dist-types/getawschunkedencodingstream.d.ts","./node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts","./node_modules/@smithy/util-stream/dist-types/splitstream.d.ts","./node_modules/@smithy/util-stream/dist-types/headstream.d.ts","./node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts","./node_modules/@smithy/util-stream/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/resolveendpointconfig.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getendpointfrominstructions.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toendpointv1.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/endpointmiddleware.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/getendpointplugin.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/command.d.ts","./node_modules/@smithy/smithy-client/dist-types/constants.d.ts","./node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts","./node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts","./node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts","./node_modules/@smithy/smithy-client/dist-types/emitwarningifunsupportedversion.d.ts","./node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts","./node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts","./node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts","./node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/nooplogger.d.ts","./node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts","./node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/quote-header.d.ts","./node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts","./node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-every.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-header.d.ts","./node_modules/@smithy/smithy-client/dist-types/index.d.ts","./dist-types/models/qdeveloperstreamingserviceexception.d.ts","./dist-types/models/models_0.d.ts","./dist-types/commands/generatecodefromcommandscommand.d.ts","./dist-types/commands/sendmessagecommand.d.ts","./dist-types/auth/httpauthextensionconfiguration.d.ts","./node_modules/@aws-sdk/types/dist-types/abort.d.ts","./node_modules/@aws-sdk/types/dist-types/auth.d.ts","./node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","./node_modules/@aws-sdk/types/dist-types/checksum.d.ts","./node_modules/@aws-sdk/types/dist-types/client.d.ts","./node_modules/@aws-sdk/types/dist-types/command.d.ts","./node_modules/@aws-sdk/types/dist-types/connection.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/identity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/anonymousidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/loginidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","./node_modules/@aws-sdk/types/dist-types/util.d.ts","./node_modules/@aws-sdk/types/dist-types/credentials.d.ts","./node_modules/@aws-sdk/types/dist-types/crypto.d.ts","./node_modules/@aws-sdk/types/dist-types/dns.d.ts","./node_modules/@aws-sdk/types/dist-types/encode.d.ts","./node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","./node_modules/@aws-sdk/types/dist-types/eventstream.d.ts","./node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/types/dist-types/http.d.ts","./node_modules/@aws-sdk/types/dist-types/logger.d.ts","./node_modules/@aws-sdk/types/dist-types/middleware.d.ts","./node_modules/@aws-sdk/types/dist-types/pagination.d.ts","./node_modules/@aws-sdk/types/dist-types/profile.d.ts","./node_modules/@aws-sdk/types/dist-types/request.d.ts","./node_modules/@aws-sdk/types/dist-types/response.d.ts","./node_modules/@aws-sdk/types/dist-types/retry.d.ts","./node_modules/@aws-sdk/types/dist-types/serde.d.ts","./node_modules/@aws-sdk/types/dist-types/shapes.d.ts","./node_modules/@aws-sdk/types/dist-types/signature.d.ts","./node_modules/@aws-sdk/types/dist-types/stream.d.ts","./node_modules/@aws-sdk/types/dist-types/token.d.ts","./node_modules/@aws-sdk/types/dist-types/transfer.d.ts","./node_modules/@aws-sdk/types/dist-types/uri.d.ts","./node_modules/@aws-sdk/types/dist-types/waiter.d.ts","./node_modules/@aws-sdk/types/dist-types/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/httprequest.d.ts","./node_modules/@smithy/protocol-http/dist-types/httpresponse.d.ts","./node_modules/@smithy/protocol-http/dist-types/httphandler.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/httpextensionconfiguration.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/field.d.ts","./node_modules/@smithy/protocol-http/dist-types/fields.d.ts","./node_modules/@smithy/protocol-http/dist-types/isvalidhostname.d.ts","./node_modules/@smithy/protocol-http/dist-types/types.d.ts","./node_modules/@smithy/protocol-http/dist-types/index.d.ts","./dist-types/extensionconfiguration.d.ts","./dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusedualstackendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusefipsendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolveendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolvecustomendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvarianttag.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvariant.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/partitionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/regionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/getregioninfo.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/eventstreamserdeconfig.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts","./node_modules/@smithy/util-retry/dist-types/types.d.ts","./node_modules/@smithy/util-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/configuredretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/defaultratelimiter.d.ts","./node_modules/@smithy/util-retry/dist-types/config.d.ts","./node_modules/@smithy/util-retry/dist-types/constants.d.ts","./node_modules/@smithy/util-retry/dist-types/index.d.ts","./node_modules/@smithy/middleware-retry/dist-types/types.d.ts","./node_modules/@smithy/middleware-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts","./node_modules/@smithy/middleware-retry/dist-types/delaydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/omitretryheadersmiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrymiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/index.d.ts","./dist-types/qdeveloperstreamingclient.d.ts","./dist-types/qdeveloperstreaming.d.ts","./dist-types/endpoints.d.ts","./dist-types/commands/index.d.ts","./dist-types/models/index.d.ts","./dist-types/index.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts","./dist-types/runtimeconfig.browser.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts","./node_modules/@smithy/node-http-handler/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/fromhttp/fromhttptypes.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/fromhttp/fromhttp.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromwebtoken.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromtokenfile.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveassumerolecredentials.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/fromini.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-process/dist-types/fromprocess.d.ts","./node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/ssoserviceexception.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/getrolecredentialscommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/listaccountrolescommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/listaccountscommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/logoutcommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointparameters.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/auth/httpauthextensionconfiguration.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/extensionconfiguration.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/ssoclient.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/sso.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/interfaces.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/listaccountrolespaginator.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/listaccountspaginator.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/loadsso.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/fromsso.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/isssoprofile.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/validatessoprofile.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/remoteprovider/remoteproviderinit.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/fromcontainermetadata.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/frominstancemetadata.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/remoteprovider/httprequest.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/utils/getinstancemetadataendpoint.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/config/endpoint.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-node/dist-types/defaultprovider.d.ts","./node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts","./dist-types/runtimeconfig.d.ts","./dist-types/runtimeconfig.native.d.ts","./dist-types/runtimeconfig.shared.d.ts","./dist-types/protocols/aws_json1_0.d.ts","./node_modules/tslib/tslib.d.ts","./node_modules/@smithy/util-middleware/dist-types/getsmithycontext.d.ts","./node_modules/@smithy/util-middleware/dist-types/normalizeprovider.d.ts","./node_modules/@smithy/util-middleware/dist-types/index.d.ts","./src/auth/httpauthschemeprovider.ts","./src/models/qdeveloperstreamingserviceexception.ts","./src/models/models_0.ts","./node_modules/@smithy/middleware-serde/dist-types/deserializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serdeplugin.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/index.d.ts","./src/commands/sendmessagecommand.ts","./node_modules/@types/uuid/index.d.ts","./src/protocols/aws_json1_0.ts","./src/commands/generatecodefromcommandscommand.ts","./package.json","./node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts","./node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts","./node_modules/@smithy/hash-node/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/index.d.ts","./src/endpoints.ts","./node_modules/@smithy/url-parser/dist-types/index.d.ts","./node_modules/@smithy/util-base64/dist-types/frombase64.d.ts","./node_modules/@smithy/util-base64/dist-types/tobase64.d.ts","./node_modules/@smithy/util-base64/dist-types/index.d.ts","./node_modules/@smithy/util-utf8/dist-types/fromutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/touint8array.d.ts","./node_modules/@smithy/util-utf8/dist-types/toutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/index.d.ts","./src/runtimeconfig.shared.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts","./src/runtimeconfig.ts","./src/auth/httpauthextensionconfiguration.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts","./src/extensionconfiguration.ts","./src/runtimeextensions.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/loggermiddleware.d.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpauthschememiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/gethttpauthschemeendpointrulesetplugin.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/gethttpauthschemeplugin.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/httpsigningmiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/gethttpsigningmiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/defaultidentityproviderconfig.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/httpapikeyauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/httpbearerauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/noauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/index.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeidentityprovider.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts","./node_modules/@smithy/core/dist-types/getsmithycontext.d.ts","./node_modules/@smithy/core/dist-types/normalizeprovider.d.ts","./node_modules/@smithy/core/dist-types/protocols/requestbuilder.d.ts","./node_modules/@smithy/core/dist-types/pagination/createpaginator.d.ts","./node_modules/@smithy/core/dist-types/index.d.ts","./node_modules/@smithy/middleware-content-length/dist-types/index.d.ts","./src/qdeveloperstreamingclient.ts","./src/qdeveloperstreaming.ts","./src/commands/index.ts","./src/models/index.ts","./src/index.ts","./node_modules/@aws-crypto/sha256-browser/build/main/crossplatformsha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/main/webcryptosha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/invalidfunction.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/invalidprovider.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts","./src/runtimeconfig.browser.ts","./node_modules/@aws-crypto/sha256-js/build/main/jssha256.d.ts","./node_modules/@aws-crypto/sha256-js/build/main/index.d.ts","./src/runtimeconfig.native.ts","../../../node_modules/@types/adm-zip/index.d.ts","../../../node_modules/@types/readdir-glob/index.d.ts","../../../node_modules/@types/archiver/index.d.ts","../../../node_modules/@types/async-lock/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/bytes/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/circular-dependency-plugin/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/cross-spawn/index.d.ts","../../../node_modules/@types/diff/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/glob/node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/parse5/dist/cjs/common/html.d.ts","../../../node_modules/parse5/dist/cjs/common/token.d.ts","../../../node_modules/parse5/dist/cjs/common/error-codes.d.ts","../../../node_modules/parse5/dist/cjs/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/dist/cjs/tokenizer/index.d.ts","../../../node_modules/parse5/dist/cjs/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/cjs/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/cjs/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/cjs/parser/index.d.ts","../../../node_modules/parse5/dist/cjs/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/cjs/serializer/index.d.ts","../../../node_modules/parse5/dist/cjs/common/foreign-content.d.ts","../../../node_modules/parse5/dist/cjs/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/linkify-it/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdurl/encode.d.ts","../../../node_modules/@types/mdurl/decode.d.ts","../../../node_modules/@types/mdurl/parse.d.ts","../../../node_modules/@types/mdurl/format.d.ts","../../../node_modules/@types/mdurl/index.d.ts","../../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../../node_modules/@types/markdown-it/lib/token.d.ts","../../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../../node_modules/@types/markdown-it/lib/index.d.ts","../../../node_modules/@types/markdown-it/index.d.ts","../../../node_modules/@types/mime-types/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/prismjs/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/proper-lockfile/index.d.ts","../../../node_modules/@types/readline-sync/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sinon/node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/stream-buffers/index.d.ts","../../../node_modules/@types/tcp-port-used/index.d.ts","../../../node_modules/@types/vscode/index.d.ts","../../../node_modules/@types/vscode-webview/index.d.ts","../../../node_modules/@types/webidl-conversions/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/whatwg-url/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/xml2js/lib/processors.d.ts","../../../node_modules/@types/xml2js/index.d.ts","../../../node_modules/@smithy/core/node_modules/@smithy/protocol-http/dist-types/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"02ec1ffcc0823cb9c9ba420c619d3af2c726e3a674b66a91941c07a3e7f65dba","impliedFormat":1},{"version":"38f6da5b6f318c33e18dd7c983cab3fe52f510c9a2573948fb13f012e01b1ba6","impliedFormat":1},{"version":"b40885a4e39fb67eb251fb009bf990f3571ccf7279dccad26c2261b4e5c8ebcd","impliedFormat":1},{"version":"2d0e63718a9ab15554cca1ef458a269ff938aea2ad379990a018a49e27aadf40","impliedFormat":1},{"version":"530e5c7e4f74267b7800f1702cf0c576282296a960acbdb2960389b2b1d0875b","impliedFormat":1},{"version":"1c483cc60a58a0d4c9a068bdaa8d95933263e6017fbea33c9f99790cf870f0a8","impliedFormat":1},{"version":"07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","impliedFormat":1},{"version":"5d3e656baf210f702e4006949a640730d6aef8d6afc3de264877e0ff76335f39","impliedFormat":1},{"version":"4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","impliedFormat":1},{"version":"c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","impliedFormat":1},{"version":"570efec02480a95fa35e7c6dc3c00c59309d221e0698cefbc9e27a3c13d69c96","impliedFormat":1},{"version":"396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","impliedFormat":1},{"version":"b7b881ced4ed4dee13d6e0ccdb2296f66663ba6b1419767271090b3ff3478bb9","impliedFormat":1},{"version":"06289b9873760aac77aed4035ea6c60b1e0879b8afe47a4530bc8522b9b804b1","impliedFormat":1},{"version":"63c36aa73242aa745fae813c40585111ead225394b0a0ba985c2683baa6b0ef9","impliedFormat":1},{"version":"3e7ffc7dd797e5d44d387d0892bc288480493e73dcab9832812907d1389e4a98","impliedFormat":1},{"version":"db011ec9589fd51995cbd0765673838e38e6485a6559163cc53dcf508b480909","impliedFormat":1},{"version":"e1a4253f0cca15c14516f52a2ad36c3520b140b5dfb3b3880a368cd75d45d6d9","impliedFormat":1},{"version":"159af954f2633a12fdee68605009e7e5b150dbeb6d70c46672fd41059c154d53","impliedFormat":1},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true,"impliedFormat":1},{"version":"894dae169f8193e3f07c3fec14149a60592d1f13720907ffdf7b0c05cfb62c38","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e0d35597ff6c5142082e60814fa39c8a2077a58d8a6a262e619afb5f855f6ba","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"228318442187dee1f3b18047e6281d12d59f7b492d6243db4eb720d53e3c03f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"f51b4042a3ac86f1f707500a9768f88d0b0c1fc3f3e45a73333283dea720cdc6","impliedFormat":1},{"version":"a29bc8aa8cc100d0c09370c03508f1245853efe017bb98699d4c690868371fc7","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f95830ca11e2c7e82235b73dc149e68a0632b41e671724d12adc83a6750746d","impliedFormat":1},{"version":"7aa011cda7cf0b9e87c85d128b2eeac9930bda215b0fee265d8bf2cec039fb5f","impliedFormat":1},{"version":"92ec1aeca4e94bdab04083daa6039f807c0fce8f09bc42e8b24bf49fa5cdbbff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"25bfb291668b70290dd646f6e99e681ded0481bc0610d241a229cda07d7af425","impliedFormat":1},{"version":"6c39d4dbdb372b364442854e42d8c473e2ec67badb226745af17ed5ac41ce6f5","impliedFormat":1},{"version":"7693b90b3075deaccafd5efb467bf9f2b747a3075be888652ef73e64396d8628","impliedFormat":1},{"version":"bd01a987f0fcf2344a405e542ee681e420651eaff1222a5a6e0c02fda52343bc","impliedFormat":1},{"version":"693e50962e90a3548f41bff2c22676e3964212a836022d82e49eca0b20320a38","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"300b0c12998391154d7b9115a85554e91632a3d3e1b66038e98f2b9cb3c1061d","impliedFormat":1},{"version":"8d680d5d1a77028ca1708118b8c941edd90a6329f9dc0315ffc3a06b4820e937","affectsGlobalScope":true,"impliedFormat":1},{"version":"8bc550ee45988b123605e2cbba4dc8d3b4153c3d06f59074c7cda5bc3b2f2fd8","impliedFormat":1},{"version":"5293d799856f47259146ccf0be9a1cc0a4a5343696182d7206ed25ea67d67920","impliedFormat":1},{"version":"d7cdb379f1a8febb8ba181b2bba4c89b7f9189c68ce00292253d9f827eb0b2d3","impliedFormat":1},{"version":"fab49059d6c2026bdb2e53e4e5cde1a39da44e61daff1867c8b3b10b507bfe17","impliedFormat":1},{"version":"5a551275f85bcc4003e543a1951a5b2f682cfba9b2922f65ae0df40ab71724a5","impliedFormat":1},{"version":"22d1a3163b9a961dbe78b0aedbd7bcbc071ce1f31efb76eb013b0aee230fef0e","impliedFormat":1},{"version":"c31695696ade4514cfcbb22799997b690d3dca7fb72beab68fb2e73b6ef450dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"d99ad56d57f2c96daaf4475a8b64344b24dedafdb8f3c32d43552bcc72279a75","impliedFormat":1},{"version":"a101ef17aece908c1029a1bd3f97132794dcff21b4ca0b997d9a633f962c46aa","impliedFormat":1},{"version":"511575e18249b64b90d8f884fdb8a383c767d1a7efccd9d66a4e125a4dc5c462","impliedFormat":1},{"version":"6d8001f2c3b86c4f1de1d45ecb3f87f287ed7313d6999f8c8318cec4f50e6323","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d09f4b48899d342b5d6cd846f95f969a401933b0dcd375a8a7e45832328bb86","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c3d1222e6e3d8c35a4293d7a54d4142ebb8f7f70ec4111b8136df07fdc66169","impliedFormat":1},{"version":"70173c475c6e76ccebc37412b02b2e26f62bf45fc1534c3ebe6d7fa60fb88819","impliedFormat":1},{"version":"1c05d80325e7cb8ad9fe6f4f8cd1798ec87607fe523865b27cab9fc5b816f067","impliedFormat":1},{"version":"863bc4e31de6c75423bb02da16190d582b0a69b8964b61d45920e5b2cb3832dd","impliedFormat":1},{"version":"3c92f365d57fd49656e4907bf1d950d4a4060dde7db35effe2f6348e0e800b86","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"6e191fea1db6e9e4fa828259cf489e820ec9170effff57fb081a2f3295db4722","impliedFormat":1},{"version":"aed943465fbce1efe49ee16b5ea409050f15cd8eaf116f6fadb64ef0772e7d95","impliedFormat":1},{"version":"0435070b07e646b406b1c9b8b1b1878ea6917c32abc47e6435ec26d71212d513","impliedFormat":1},{"version":"f71188f97c9f7d309798ec02a56dd3bf50a4e4d079b3480f275ac13719953898","impliedFormat":1},{"version":"c4454589a0aa92c10d684c8c9584574bc404d1db556d72196cd31f8f7651af1a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b17790866e140a630fa8891d7105c728a1bd60f4e35822e4b345af166a4a728c","impliedFormat":1},{"version":"c50c75f4360f6fc06c4be29dafe28210e15c50cd6b04ad19c4808fa504efb51a","impliedFormat":1},{"version":"d4a1f5f7ee89b2afffd3c74282f8ee65b24266c92b7d40398c12a27054ed745c","impliedFormat":1},{"version":"900b5a9802192bc77eba35a5b87ce770df7b867a6d61772c554058c9ed635386","impliedFormat":1},{"version":"65278b3e3cb8e3f0b7bc712e86858ba7695501e76a84eedb730cc15b85d92b56","affectsGlobalScope":true,"impliedFormat":1},{"version":"f43fcf89d75f13d0908a77cd3fa32b9fd28c915deded9b2778b08f2e242d07a7","affectsGlobalScope":true,"impliedFormat":1},{"version":"9b6fc34aca8b0411b96ba35b2315017236a47709a1a98d5e16aed3b84037b9e8","impliedFormat":1},{"version":"aebf613f7831125038942eba891005fd25fa5cadcc3e3d13af4768dc7549161f","impliedFormat":1},{"version":"0faee6b555890a1cb106e2adc5d3ffd89545b1da894d474e9d436596d654998f","impliedFormat":1},{"version":"247e5c34784d185bc81442e8b1a371a36c4a5307a766a3725454c0a191b5cfad","impliedFormat":1},{"version":"1c382a6446d63340be549a616ff5142a91653cea45d6d137e25b929130a4f29a","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"20eb6689443f55ebd33372566b0afad619f1ba48fec4ffb4ab0c119e4fc52eea","impliedFormat":1},{"version":"a1b36a1f91a54daf2e89e12b834fa41fb7338bc044d1f08a80817efc93c99ee5","impliedFormat":1},{"version":"8bb4a5b632dd5a868f3271750895cb61b0e20cff82032d87e89288faee8dd6e2","impliedFormat":1},{"version":"0c1aabfd9fb1818afb2e798f91f669edafce59cd7e3423d25b1cfccfaaf2c403","impliedFormat":1},{"version":"017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","impliedFormat":1},{"version":"ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","impliedFormat":1},{"version":"9ae7df67c30dc5f52b7b21e8bb36fd9ff05e7ed10e514e2d9ed879b4547c4cd3","impliedFormat":1},{"version":"fd6a17c2d015cb2963d62db7566a43818424e8f32eb821fa9b8b142d4ab12664","impliedFormat":1},{"version":"4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","impliedFormat":1},{"version":"e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","impliedFormat":1},{"version":"d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","impliedFormat":1},{"version":"d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","impliedFormat":1},{"version":"5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","impliedFormat":1},{"version":"27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","impliedFormat":1},{"version":"eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","impliedFormat":1},{"version":"52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","impliedFormat":1},{"version":"5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","impliedFormat":1},{"version":"fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","impliedFormat":1},{"version":"d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","impliedFormat":1},{"version":"fc9bdd9b3d8fb59c913cb3b8dea0d79b38dfe9331ef07e1c6dc6bf363f061ad6","impliedFormat":1},{"version":"e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","impliedFormat":1},{"version":"0c3c4ce6a1884610c99306719f59174d81808c69393c30119f9c2aef0449a2cb","impliedFormat":1},{"version":"219a25474e58a8161b242776856ec5f6960839b63e74809445e51cadbfc18096","impliedFormat":1},{"version":"5a0d1534e9493ae44b08b3055172da38370e2afd2bc3d4bea11f7be78344036f","impliedFormat":1},{"version":"6309a45fc3c03d3c4d56228e995d51974f53009a842374695b34f3607877e5a3","impliedFormat":1},{"version":"bef94eba81ae2c09059c0d9abdb1ae1b7090314f70550f3c8cd5d7ead4a4f212","impliedFormat":1},{"version":"48b787ad458be9b524fa5fdfef34f68798074132d4b8cfe6a6fe9c2bf334c532","impliedFormat":1},{"version":"37280465f8f9b2ea21d490979952b18b7f4d1f0d8fab2d627618fb2cfa1828e3","impliedFormat":1},{"version":"c12f3ff5e221c1d3e4eaf47a372b538d8e79bd9a15266c2b049a597da0b86924","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f3f85dc43cb93c5a797f1ff0fa948d0e17843a443ae11a20cc032ccdf1b9997","impliedFormat":1},{"version":"581843e855d92557cbe9dfe242de4e53badae5e9096ca593b50788f7c89c37f2","impliedFormat":1},{"version":"869010bc679df668137cb3b78a3cb8196e97acf285208a57f6156ceac894a2f7","impliedFormat":1},{"version":"bcae62618c23047e36d373f0feac5b13f09689e4cd08e788af13271dbe73a139","impliedFormat":1},{"version":"29a99d2e57b3e08a997cbc2397bdb251441a545306a74b95ffedc5f03d9bc6b7","impliedFormat":1},{"version":"5ae003688265a1547bbcb344bf0e26cb994149ac2c032756718e9039302dfac8","impliedFormat":1},{"version":"09e811cc1088d9ea3a7ddd7290f6a13767f56c85daf8c3374a06a45a08d55647","impliedFormat":1},{"version":"a86053981218db1594bd4839bde0fb998e342ecf04967622495434a8f52a4041","impliedFormat":1},{"version":"5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","impliedFormat":1},{"version":"7b270dc53f35dd0b44bfa619ad4d351fffd512e14053c3688323ed007eda3f6d","impliedFormat":1},{"version":"6d4e928f232ade7221cffc6e4332ec935baa176415c9bf5d12111bb883a247d2","impliedFormat":1},{"version":"e86ad029224d4f2af3e188be8b5e9badf8c7083247572069bac7bd2193131fc7","impliedFormat":1},{"version":"057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","impliedFormat":1},{"version":"d94034601782f828aa556791279c86c37f09f7034a2ab873eefe136f77a6046b","impliedFormat":1},{"version":"105ae3dd61531488194f412386ba8c2b786f1389ac3415098cc47c712800da29","impliedFormat":1},{"version":"45851fbb6595233ecf6be213f74f00690c752782387796c66ea186750f831d06","impliedFormat":1},{"version":"4ee905052d0879e667444234d1462540107789cb1c80bd26e328574e4f3e4724","impliedFormat":1},{"version":"151659e152d71986b8943b9943cd7fbe27a65874655081602de7ea24a0f66e9b","impliedFormat":1},{"version":"3448e2fa1ae3a52d50e1e82e50b6ae5b8bd911004a8824b0c6b26c8cdcd15fec","impliedFormat":1},{"version":"c0c0b22cefd1896b92d805556fcabda18720d24981b8cb74e08ffea1f73f96c2","impliedFormat":1},{"version":"b97e6411a3ee83e6f77760f0400d117313a980d05ec89f1e1a7502229e36d060","impliedFormat":1},{"version":"270418f8a6639be745d14bfd085e62685f24eaa6d6482aa9803bae8b8b93919a","impliedFormat":1},{"version":"4cb33d05ff168c1ca836d6d438f93040972af43fc09774876c4add2ad96d125f","impliedFormat":1},{"version":"902d2b66388607197ec48798c94a6ffc657fe1cfbee15e49b6b3052de0e5b8fa","impliedFormat":1},{"version":"38104b9a37d0b9dc54be36ae43b1a32f9cfae34742743bfd7104cf1f39661225","impliedFormat":1},{"version":"47ff32ca9ab8474e89615b4bbe5f2264c2940fc12b86c4dc0a99659479517a6b","impliedFormat":1},{"version":"f892f85b4838f6a2ff1438d240dcf23a872d090794967c7f817a82ea8da1ad8e","impliedFormat":1},{"version":"cb498c53a9d35ac1cf9a3515f3835d48b4626a612cf7540c5bfb99542c9ab1a5","impliedFormat":1},{"version":"b86e64c48044bb73c6de7aa2cdf9295b2c104221e6a68b408225b283d1bcfda2","impliedFormat":1},{"version":"16173f5b3e68a373e7dfe6d00948549facc9947c9dbde813f1efe3a0f236ff6a","impliedFormat":1},{"version":"f457fc1b7583e1215393db13b95a186593660aad29706515ab7479869bc585e0","impliedFormat":1},{"version":"a11288edc8161f664148ea7d56101517e380335f5fa1a94408db86efce025bba","impliedFormat":1},{"version":"0e2a6b2eeadafbc7a27909527af46705d47e93c652d656f09cc3ef460774291b","impliedFormat":1},{"version":"d6d561bf4309a197e4b241fb0eacebf14c400661c4352676cd3c88c17e5ab8a2","impliedFormat":1},{"version":"ed012a19811c4010cb7d8920378f6dd50f22e1cf2842ecb44a157030667b165e","impliedFormat":1},{"version":"4085ac780790cc5787e375bd6c7dc149610665514e1d3d8fb65aec29efb691c9","impliedFormat":1},{"version":"7634eca84d60522b68ac679813fd9247a4260f7412890e924c7779758f8d6391","impliedFormat":1},{"version":"b4ff74f0589487410168be50e3231caf687c5e1302266709742382e8d004fe1e","impliedFormat":1},{"version":"406f227eebfe8be216d7a4b215ed09198b0c2f6599f2273b69ee5b75824c5435","impliedFormat":1},{"version":"e7cd1d6f8afb317dca8c5b6a60d5cd55aacf8d9ed8ae39f22e3104ed0c479552","impliedFormat":1},{"version":"75c9a36ada92da43627b5cf1142a6fe20f50ad00abacb90204b74b19775521c2","impliedFormat":1},{"version":"8a90f97fdb10d83c6842a699c3df474246755f4fbf3ee2d35e69d6599fe9092c","impliedFormat":1},{"version":"88aacf6e2493633490812c70595b517c8e4299f054d28a51687b10f0968276c3","impliedFormat":1},{"version":"f6cae2c0acda884c4b9dec4063d062252cf0625a04ebf711a84d7de576427c3e","impliedFormat":1},{"version":"946739ab9acb2fccd0b2e5a0d1ac4dfe69b9279f33a26e7f0a7a7ab24ee343fc","impliedFormat":1},{"version":"d037b771e89ef6dd81c71de92cc644d68b1b5d1ce25dbce9c2cfe407dd0b5796","impliedFormat":1},{"version":"25091d25f74760301f1e094456e2e6af52ceb6ef1ece48910463528e499992d8","impliedFormat":1},{"version":"853d02f4f46ca9700fefd0d45062f5b82c9335ba2224ca4d7bd34d6ae4fc4a7f","impliedFormat":1},{"version":"ab679e25dcb5d085ca42c33ffc8e2fc48411f81ad3108a3aa81eca79c104ef95","impliedFormat":1},{"version":"b901209745b3cef4b803e42731c40f5c2c2c7101bbd5f481c0fd1c43f9f440f3","impliedFormat":1},{"version":"cf6dc8f18bc5ee063dc1a37bccd3031dc0769f11622399018c375aacfcbda7c9","impliedFormat":1},{"version":"8ca2d01f5f3d4d4067aadea230570afa4c91e24e485fbe2e9d53ead3b33f80d0","impliedFormat":1},{"version":"9230a7b03ae3cce93e94a2cc844da1e5414d2be7505ecc82402094a132cfbbda","impliedFormat":1},{"version":"27350a2872f30b97e947f52ccf15654239eda7c9ff35135a1aa82cc37642fdeb","impliedFormat":1},{"version":"ed3e176bc769725ebc1d93f1d6890fc3d977b9155ae5d03be96ec2d49b303370","impliedFormat":1},{"version":"7933769d84f5ae16546aef06537ca578f1c8d7cca0708452a00613050ac1f265","impliedFormat":1},{"version":"d405963c5f69955e95c30ef121c7a3309f214f21ef09dceb5d7ac69557cbe0fa","impliedFormat":1},{"version":"29c7276f64f0de86eb981ddd4e5a8e7f832fc8d4e712c7e8e1beab6af8cc4147","impliedFormat":1},{"version":"6f11170f0056f1681101d9a1045af3c0d2ea489f14d1a0d4c0b2cb7860cfb8f7","impliedFormat":1},{"version":"fdd84224998f5f4d97017b829548f1fac4ac803025e16c27d4fc7f3426c6261e","impliedFormat":1},{"version":"1591996e71f1aab2e8726d7d04d59a3e8f5162578bee747e883932cfc0b57b2a","impliedFormat":1},{"version":"f8ce447bbda4f75da74cecd866cc1ff9bdde62189ac9d8dc14a16c48b3d702fa","impliedFormat":1},{"version":"da3f7f511c344fb56275cd954156a4d736c9f414f9b84bb0ee229ef583e38074","impliedFormat":1},{"version":"c7d30b164562b7ce99fcb53ab78f937cc845e003f6089d648351331921379994","impliedFormat":1},{"version":"fe2d1251f167d801a27f0dfb4e2c14f4f08bf2214d9784a1b8c310fdfdcdaaea","impliedFormat":1},{"version":"2a1182578228dc1faad14627859042d59ea5ab7e3ac69cb2a3453329aaaa3b83","impliedFormat":1},{"version":"dfa99386b9a1c1803eb20df3f6d3adc9e44effc84fa7c2ab6537ed1cb5cc8cfb","impliedFormat":1},{"version":"79b0d5635af72fb87a2a4b62334b0ab996ff7a1a14cfdb895702e74051917718","impliedFormat":1},{"version":"5f00b052713bfe8e9405df03a1bbe406006b30ec6b0c2ce57d207e70b48cf4e9","impliedFormat":1},{"version":"7abcae770f21794b5ffbc3186483c3dbcf8b0c8e37d3ef3ed6277ece5c5dd4be","impliedFormat":1},{"version":"3e642f39da9ad0a4cd16ccbd7f363b6b5ad5fa16a5c6d44753f98fc1e3be9d96","impliedFormat":1},{"version":"7f5a6eac3d3d334e2f2eba41f659e9618c06361958762869055e22219f341554","impliedFormat":1},{"version":"6f996f44113b76a9960d3fad280f4f671115c5e971356d1dbb4d1b000af8b3b3","impliedFormat":1},{"version":"67f2cd6e208e68fdfa366967d1949575df6ccf90c104fc9747b3f1bdb69ad55a","impliedFormat":1},{"version":"f99ab9dffe6281c9b6df9ae9d8584d18eabf2107572bbd8fa5c83c8afe531af8","impliedFormat":1},{"version":"4fc9939c86a7d80ab6a361264e5666336d37e080a00d831d9358ad83575267da","impliedFormat":1},{"version":"f4ba385eedea4d7be1feeeac05aaa05d6741d931251a85ab48e0610271d001ce","impliedFormat":1},{"version":"f5405fb679a467cb979f8744940b22b7bc3a0bcbe648c3910d98de3188d42a78","impliedFormat":1},{"version":"68969a0efd9030866f60c027aedbd600f66ea09e1c9290853cc24c2dcc92000f","impliedFormat":1},{"version":"fc79932b9aa710f025b89bf8d8329d99080286e5e079a7d5a529236e9f5dd69e","impliedFormat":1},{"version":"6646d9075e3e0eedb02c9d03bffef54c8bbeb601d27eed46f143aba435bac37d","impliedFormat":1},{"version":"0dec72b4c5c4bb149750fef4fc26bdae8f410de941ee766c953f5ac77381d690","impliedFormat":1},{"version":"8f2644578a3273f43fd700803b89b842d2cd09c1fba2421db45737357e50f5b1","impliedFormat":1},{"version":"639f94fe145a72ce520d3d7b9b3b6c9049624d90cbf85cff46fb47fb28d1d8fe","impliedFormat":1},{"version":"8327a51d574987a2b0f61ea40df4adddf959f67bc48c303d4b33d47ba3be114a","impliedFormat":1},{"version":"00e1da5fce4ae9975f7b3ca994dcb188cf4c21aee48643e1d6d4b44e72df21ee","impliedFormat":1},{"version":"991fd5ebf9f30ffa17cae6faeae6a838d3d91bdcdd419bce358dc99b8e5b0ad0","impliedFormat":1},{"version":"4d250e905299144850c6f8e74dad1ee892d847643bacf637e89adcce013f0700","impliedFormat":1},{"version":"51b4ab145645785c8ced29238192f870dbb98f1968a7c7ef2580cd40663b2940","impliedFormat":1},{"version":"589713fefe7282fd008a2672c5fbacc4a94f31138bae6a03db2c7b5453dc8788","impliedFormat":1},{"version":"26f7f55345682291a8280c99bb672e386722961063c890c77120aaca462ac2f9","impliedFormat":1},{"version":"786691c952fe3feac79aca8f0e7e580d95c19afc8a4c6f8765e99fb756d8d9d7","impliedFormat":1},{"version":"747d6d391f97a46f6880e10c8e4858bbd6568070a0f9af0ec74c26475e2c885f","impliedFormat":1},{"version":"354f47aa8d895d523ebc47aea561b5fedb44590ac2f0eae94b56839a0f08056a","impliedFormat":1},{"version":"62b753ed351fba7e0f6b57103529ce90f2e11b949b8fc69c39464fe958535c25","impliedFormat":1},{"version":"514321f6616d04f0c879ac9f06374ed9cb8eac63e57147ac954e8c0e7440ce00","impliedFormat":1},{"version":"ce7b928daedd974205daf616493c6eb358069ed740ed9552c5f4e66da19fd4bf","impliedFormat":1},{"version":"b1aa0340d4248aba8e36e7d246b223e3ae89fb27f167f9e3c7b14838bb41b13f","impliedFormat":1},{"version":"620290e7cd91726a13ce06daf8437b37f4bf782c755674a41d881c2217a35830","impliedFormat":1},{"version":"e06d050ebf5ab7ae4506d7de03d369e5f2f7c96df0e4ba6aec7a6b2450c039d0","impliedFormat":1},{"version":"88c0699b282331433af615deb79fcd6f8e815e93bd40dd7200c1e3cdf052e5a0","impliedFormat":1},{"version":"cf8659543b380c9cf02c88e231eaad406f323f6b1d3eb877d4cad9ff0408974f","impliedFormat":1},{"version":"a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","impliedFormat":1},{"version":"84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","impliedFormat":1},{"version":"415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","impliedFormat":1},{"version":"901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","impliedFormat":1},{"version":"ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","impliedFormat":1},{"version":"b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","impliedFormat":1},{"version":"ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","impliedFormat":1},{"version":"068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","impliedFormat":1},{"version":"3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","impliedFormat":1},{"version":"fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","impliedFormat":1},{"version":"d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","impliedFormat":1},{"version":"3f6af667357384c1f582ef006906ba36668dd87abe832f4497fffb315c160be9","impliedFormat":1},{"version":"363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","impliedFormat":1},{"version":"c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","impliedFormat":1},{"version":"2f1a8ca9846d9ac5481544b5b53811efe2c44bba9195af584136fb34371d5e23","impliedFormat":1},{"version":"1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","impliedFormat":1},{"version":"ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","impliedFormat":1},{"version":"d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","impliedFormat":1},{"version":"4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","impliedFormat":1},{"version":"7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","impliedFormat":1},{"version":"ea2de1a0ec4c9b8828154a971bfe38c47df2f5e9ec511f1a66adce665b9f04b0","impliedFormat":1},{"version":"c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","impliedFormat":1},{"version":"4ef0a17c5bcae3d68227136b562a4d54a4db18cfa058354e52a9ac167d275bbb","impliedFormat":1},{"version":"a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","impliedFormat":1},{"version":"64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","impliedFormat":1},{"version":"c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","impliedFormat":1},{"version":"b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","impliedFormat":1},{"version":"434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","impliedFormat":1},{"version":"c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7","impliedFormat":1},{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","impliedFormat":1},{"version":"81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","impliedFormat":1},{"version":"4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","impliedFormat":1},{"version":"f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","impliedFormat":1},{"version":"1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","impliedFormat":1},{"version":"ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","impliedFormat":1},{"version":"ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","impliedFormat":1},{"version":"f7a8f4bc1e8e786c6115970b8f3ed4797be48108de00b3552bf590706d3a5e8a","impliedFormat":1},{"version":"ce096c727f1ae221bd35b46dd3e050bf3909674e6e9ec1518b3a5aa89ab2a497","impliedFormat":1},{"version":"1a8e6a4f31a5196144f35d0434e16369881d828c849d6a1c9290b6bde8807449","impliedFormat":1},{"version":"42a9ac86df0fa58634ea8a5f7f07b9b9c3243d82e306fb22d8a41639935a6c87","impliedFormat":1},{"version":"5766c26941ae00aa889335bcccc1ecb28271b774be92aede801354c9797074bb","impliedFormat":1},{"version":"3a19286bcc9303c9352c03d68bb4b63cecbf5c9b7848465847bb6c9ceafa1484","impliedFormat":1},{"version":"c573fef34c2e5cc5269fd9c95fe73a1eb9db17142f5d8f36ffe4a686378b8660","impliedFormat":1},{"version":"d97e30dd93590392fed422f2b27325d10ab007d034faaaf61e28e9ddc9d3825b","impliedFormat":1},{"version":"d1f8a829c5e90734bb47a1d1941b8819aeee6e81a2a772c3c0f70b30e3693fa9","impliedFormat":1},{"version":"be1dfacee25a14d79724ba21f1fde67f966b46e2128c68fed2e48c6e1e9822c5","impliedFormat":1},{"version":"19b3d0c212d241c237f79009b4cd0051e54971747fd89dc70a74f874d1192534","impliedFormat":1},{"version":"441751fb3deefe98952ba09b3c5a583c66aa2c9a1abe5e9dba6064a55f5a7678","impliedFormat":1},{"version":"c211816fd9af3b1541c812b859c769958d5e5b85b81da832eb2bcdf98342b054","impliedFormat":1},{"version":"7639642137f8329ef4a19410ce8d3e46910a76294df263f46b428fd61c79d033","impliedFormat":1},{"version":"8e69efd9afdfcd34d85adb6d8e71a5e13fea2a33c7019dd624cc7696772183a0","impliedFormat":1},{"version":"a7ebfe3e2c8f4fea5dac7ffbf6d00acee63c530de24d57cdeeed05530285ca26","impliedFormat":1},{"version":"82b4045609dc0918319f835de4f6cb6a931fd729602292921c443a732a6bb811","impliedFormat":1},{"version":"0fd70ca1eaef1e2dd6f48f16886df4838664821d992fd8076d07fc15e83c8498","impliedFormat":1},{"version":"ba30e6d2f1d20c707566cf485167331a10c539802a79040ced055b62a7aae53e","impliedFormat":1},{"version":"642eae3e9ec5997883f86dd7346d818f07d40fb83cc3530f0e52e232ffb4e631","impliedFormat":1},{"version":"29a6df727893a86807f4dc02116c31d9e6097139579ed6e8029b14c526cba027","impliedFormat":1},{"version":"537a2b61594512c5e75fad7e29d25c23922e27e5a1506eb4fce74fe858472a6e","impliedFormat":1},{"version":"311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","impliedFormat":1},{"version":"7c07838da165fd43759a54d2d490461315e977f9f37c046e0e357623c657fc42","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"115c8691bd8fac390f6f6eef5b356543d716da7cffa4c2f70f288d56c5b06aeb","impliedFormat":1},{"version":"e91516e66f9fbf39c978a4092c16ffda3bb0b32158fca6def75aae9fab358153","impliedFormat":1},{"version":"abd4563a6a7668fa6f8f5e5a425a0900b80fc2309fec5186e2cae67f3ce92663","impliedFormat":1},{"version":"cb48f3011e72efef9d5a5b312f4a956f699b8d423bf9f2772724cdded496bd50","impliedFormat":1},{"version":"9aed07904079877252e6c0aedf1d2cf1935ed91d4abc16f726c76b61ea453919","impliedFormat":1},{"version":"6621af294bd4af8f3f9dd9bd99bd83ed8d2facd16faa6690a5b02d305abd98ab","impliedFormat":1},{"version":"5eada4495ab95470990b51f467c78d47aecfccc42365df4b1e7e88a2952af1a3","impliedFormat":1},{"version":"5fc0957ee8e15821ddb30a76e74e7984953fc35611a57fd703e624bade5836b9","impliedFormat":1},{"version":"40e9c2028b34c6c1e3281818d062f7008705254ee992d9857d051c603391e0f4","impliedFormat":1},{"version":"4720efe0341867600b139bca9a8fa7858b56b3a13a4a665bd98c77052ca64ea4","impliedFormat":1},{"version":"566fc645642572ec1ae3981e3c0a7dc976636976bd7a1d09740c23e8521496e5","impliedFormat":1},{"version":"66182e2432a30468eb5e2225063c391262b6a6732928bbc8ee794642b041dd87","impliedFormat":1},{"version":"11792ab82e35e82f93690040fd634689cad71e98ab56e0e31c3758662fc85736","impliedFormat":1},{"version":"3957b1244f49991b89f12cc45942c24f9c5927dc72677b105bb896d316f0454e","impliedFormat":1},{"version":"6c53c05df974ece61aca769df915345dc6d5b7649a01dc715b7da1809ce00a77","impliedFormat":1},{"version":"18c505381728b8cc6ea6986728403c1969f0d81216ed04163a867780af89f839","impliedFormat":1},{"version":"d121a48de03095d7dd5cd09d39e1a1c4892b520dad4c1d9c339c5d5008cfb536","impliedFormat":1},{"version":"f6d55e607f55be35a3c481b7685461a9acc1e27b893839218eb9313f7e85278c","impliedFormat":1},{"version":"b394ea95c82281d184ea83e8511bd1a43f78d6908eb34b536446d3eb08f9d47f","impliedFormat":1},{"version":"41edf4071b119fdf28b46a3c28c0845f2598bb8b196e7e4c9e01415403fdaea5","impliedFormat":1},{"version":"2bdf3bcf1a9771a288a783d1e8ee5d1d3126c11ddde26ae44864ab432192a6f6","impliedFormat":1},{"version":"603bafdacee4c8850ef5820f8642a817a3f0db6f76dda0474bcf3d17c2e15398","impliedFormat":1},{"version":"a10c79ab97c8a4f6074203094dba87bc736ca574ec480be1df6ec2c82d774573","impliedFormat":1},{"version":"801f049a9e74e941e8ca8add60492aaf4ab717a166248d355ded5753d80f9a85","impliedFormat":1},{"version":"70bba0a9c9c2ad7a042e134a840c4d8462bf0ad98e41c50ca52725ae47265eb9","impliedFormat":1},{"version":"f4dc28fbbba727722cb1fd82f51a7b9540fbe410ed04ddf35cab191d6aa2ba10","impliedFormat":1},{"version":"1db9e7d40d7ffade5bd15ce84936997bb9d159d37668c9d8955993753bbdfb2c","impliedFormat":1},{"version":"047f85c429fbee7423e723a6232e527d69b65c3399880ed8ff0842e29c497c20","impliedFormat":1},{"version":"9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","impliedFormat":1},{"version":"526ee815290e47e75fd2105f83de0916689cc532a19c81620672342f6478095f","impliedFormat":1},{"version":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"8bfba49493f92a72cdffe5b9947c3f572c9301f4e95a471027d0022e8d9b5d97","impliedFormat":1},{"version":"fa90f0cf69cd9296a6c0c43419540ba8e734ab9bf98eff6576bb5f04ddfea175","impliedFormat":1},{"version":"b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","impliedFormat":1},{"version":"68adf02128cad117e068f53ab334cbc730bcfeb7d658d8ce8118da6770b7e622","impliedFormat":1},{"version":"57148dc07df8d175350eb9576cba28cf1b2b7f8a97fc4fb4fcad25089bdd5272","impliedFormat":1},{"version":"2d10d8e7f884bbbbc1dc980464cd36346f2b2aa21bb2c049d21b381053bafbbf","impliedFormat":1},{"version":"7f1567b9dfb571a80556155a5bff1c946b23e74443466689bed24095604b3a9b","impliedFormat":1},{"version":"b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","impliedFormat":1},{"version":"51796c3726bf734b061fac41b479a660f9afccf50b8b493835e204723d23a84d","impliedFormat":1},{"version":"c2b694d903303007a430acf66980f3b503dbd4e50cf6c183af0daf39c8d79ee8","impliedFormat":1},{"version":"a945cfe6ca774e53111b0cfb6b767261352dc6e15d27641b61e5c634b4a729c3","impliedFormat":1},{"version":"3c10545e61e9428bebdc65fed8d11e09d203afb4745eea11b98be7b218a2aeb1","impliedFormat":1},{"version":"fde1236eef449f111d0eb306a5245dab335974dd0ccac39223ea200907c27a8b","impliedFormat":1},{"version":"c1a5f70e04c94e202ef756018ddacc22e752ee3e5eb401170a2dca2773877277","impliedFormat":1},{"version":"f4bedf06294a6a4d28179ee9689f2d8e00ad4d9806a99b234c2a58f1c9147acb","impliedFormat":1},{"version":"91d68d8136434dbe13c34fe6ef3fde75791f9be128ab6b4312d1699e1fcd9859","impliedFormat":1},{"version":"260c24d1b8fdb9284ffd93112fb4141e94970be4ff2ca23ca60b361dab39eee2","impliedFormat":1},{"version":"cb5327ac944956c162522b4388a74a4b3151e2ba3fd5b057ad13a452b2c30189","impliedFormat":1},{"version":"7bac1d3d9a1f0290c91e88426dab334d9d31a712647df5fb5666ad7acb3d53bd","impliedFormat":1},{"version":"41d461c745d59a6e125dbb554b814bc99a9f072325ffd3c8407809378995fdd4","impliedFormat":1},{"version":"33589aa637b92a02e6138fcaab28454fcf35a5e7d4cf91343c83342715f9b55a","impliedFormat":1},{"version":"ac13ba680450baa70ac9e9a2f02b50ae43437fd23d76bf9215a6a5b429455010","impliedFormat":1},{"version":"8b325ba54f25c33b38550f76a31afb82db9d7f4b1891276eeae5aba2f2d3bc30","impliedFormat":1},{"version":"eca427f98f87824d62688c987be1b6fb5dbd2c21a71fbb42702c7e365d0309bf","impliedFormat":1},{"version":"93c931504d284fb193a7cce460e4c2d30d4ed247e246e1f214a8064e95198ce8","impliedFormat":1},{"version":"ce972ae1cfa1741dfc7d5b8caeaabfb696023f45a80c0d71fe55494604cc78c8","impliedFormat":1},{"version":"6360869b4f8e9b942293072189349e2c1a44cc3cd6757e83cc62619e6abb01ad","impliedFormat":1},{"version":"f3ac122e178b71c8d2e74f85d0d0ead1ab592efd4ca989db632bb2f5ecbea484","impliedFormat":1},{"version":"2db9f3f74d99d1d437ca92760f510c76e9024d372506266d8443745eb77eff4a","impliedFormat":1},{"version":"e6bd80f63b2290bcea0bcd06002a19739050f188a8accebec706685cda627755","impliedFormat":1},{"version":"6717f2b01e15e479a01d76258afb0d5f8130fd5d6759a04cd60fde5587549efa","impliedFormat":1},{"version":"0e841b93051d30dc91ae7ecbddb1d89152875ac2e92a18f57d26a135466ba5a7","impliedFormat":1},{"version":"42afd9d91bce6d077990a4f3628bcb7f8fe1bc0397ae481bdf54d6fc7c5cd3a4","impliedFormat":1},{"version":"12f6e76f5766ffb9aaf71adbf0a46b8dca86c59982cbe16a2addb87b68c8b937","impliedFormat":1},{"version":"ec8bff9f60af63c0d12517026faff805a05ae930848edf9f35ef27cf8b0f8478","impliedFormat":1},{"version":"2b26174b7cae62f9d9843b5cab80a844fcf530b528348717180a2e60fcd8c53e","impliedFormat":1},{"version":"16189422d0a96941777ea137f472b05a8dce2c530b4e61970c9412e0a139f9b8","impliedFormat":1},{"version":"373f28376805407a378a80ff2b08c56fa0bf7ac76e5abdedb5a00a4aca2ba9f6","impliedFormat":1},{"version":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"8edadbdab1f9f41f86b9bf0151213fbc7778a337703888ebacf017e73738fa00","impliedFormat":1},{"version":"675d65b49d00d283578a569e662548c2a55a95d7c1a211f9e9a32c6e1398dce8","impliedFormat":1},{"version":"4d11636fad62a75861b44b117d7237d38d957ddd51e09f4021f8b86acc2349b7","impliedFormat":1},{"version":"dbc85ae54cb8da38556b3dc33522159c8a5558c79568edbe4977226764e51219","impliedFormat":1},{"version":"7bf23edcdb0ec0715b7f7b85695a1078a132067c495efa8f6cdcda9359659f9c","impliedFormat":1},{"version":"4ad28da36ad48edec414054e1daef40c1016357b188eca0f72977f30222d9c02","impliedFormat":1},{"version":"6c4032871e6cfcbf2356a398c14a23a54af756bf7a5aff43cddb96b09469248e","impliedFormat":1},{"version":"81f20249f433350a8e13cbb9206779e667f0d5e5ac4b8f014cdf6b6e42a136fc","impliedFormat":1},{"version":"c7185143683e9ba278420520af2e2a80dd911e88e5c08c56405b2a65996e2a1f","impliedFormat":1},{"version":"ca642739f49fb9d709f726a6447cefcaf21d8ccb16595724c8929b515a08ef53","impliedFormat":1},{"version":"42adbc164a978ef94024a312dd27e2415fcf034ca6e1ada520b40582704b3e47","impliedFormat":1},{"version":"4c3e6490ded76314f8115ca4657084c5bd53560db3b366e871c2e44b44437e4a","impliedFormat":1},{"version":"5c44dc0b569cde877bdd06ce1124acd6ae621d0a5dfc65a6668e13b85ca54d55","impliedFormat":1},{"version":"4bc6dbef10e6d46dad778f5fc190eef94e5568d612140b8791b00b01882ec1d6","impliedFormat":1},{"version":"3bb26409311deb6bb7a276fe8af90048fd1146f73881ee9826821df71d11980b","impliedFormat":1},{"version":"e463cc21447f0a1aeeeb793f51f4c165be1cec7583c15f68b8a1703c343a6cca","impliedFormat":1},{"version":"3ba99b530549ef5f440cab610ca72cd7bdc1aab48ba22d24bd00a931aedff21a","impliedFormat":1},{"version":"8f4a728c02701563b8b3c4ff7958bfef49dd9e03215db06d31ead9ccd5270242","impliedFormat":1},{"version":"168ed0c44fb93c128dd97ce63c8f5844c91285710f8424cc85cb804904410629","impliedFormat":1},{"version":"e135af5c48d2dfc0c658e06827798aae78a97933bbdbaf8e023ee003d47651b1","impliedFormat":1},{"version":"529e5b8f3b7ad6bbb679268c7c9f29dcc0670e511574197e9755fbd2d70e1c97","impliedFormat":1},{"version":"4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","impliedFormat":1},{"version":"e35526a0977b9cd80f799aef3314cb2bfe66aeb40879c888f7a993bd3437fc42","impliedFormat":1},{"version":"81d92e5c4d618ba0660121ed30c603e8111ad605e7562948f7430d87038daee0","impliedFormat":1},{"version":"36990d934030ce1060f203c4b45ee7a811aa11aaa4d075bb81c2748da8329607","impliedFormat":1},{"version":"0ae845a8508fbfe0344eb505ddb4a4e5a8759f5ea4608bfc5f3f1b9ea51d76b4","signature":"611c3555ebe13d9820f48a53bccaacf5a2e1e0df64d719cd9e2fba33f2791f8c","impliedFormat":1},{"version":"bd0b6d0720c8b9fb5983761df5b57d6dd6646baf9cc438985f1b53d395aad3d0","signature":"eaba02405aff070bc130d8ad89fed3fe6a7c58493f2792406d671283c42d070b","impliedFormat":1},{"version":"67543772f3c75dc5a2d827c954cf0fde958401e96a6e921fbf6079ed7f4f4daa","signature":"a154d3346d8bc2536064abd3c3dcd962ab394ca73cebfceb0a3723976416f049","impliedFormat":1},{"version":"04c72d6fa3275b08865357900ba7580a5c9e31692a12641a25665fed8411c8b8","impliedFormat":1},{"version":"fad2e326af305b648dd46cac96bf31c88f508823cfea877fae79a9b01dd4d524","impliedFormat":1},{"version":"45e0dd06a42ab62f879b1567438bce5b85eee9c6875685ca2c6ca10f978038b2","impliedFormat":1},{"version":"ad5976f5c289f6720287944a265db0761709be06d5331fc37a1b2999fa13bacc","impliedFormat":1},{"version":"15ffad7691bca48369580748c576e889f19700b8b3a1bfc6586beab673a87956","signature":"9d33b8675e7074e5fcdbde477a40a2ab0278bcef7fb64cc28aa75846d3402bdc","impliedFormat":1},{"version":"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","impliedFormat":1},{"version":"0771ddb474014581a882838fd20e25e829038bb53c127c5b339812f749f6aa3e","signature":"1f9165291e6b94fc61224a00ccf17997125f8148aa244fc533c58557e07641e4","impliedFormat":1},{"version":"d59857b5ae5e3a693c3a2966fe3799ca0ee3c9ff9f3b3e2706cc31bd9f3d4ec4","signature":"5f46441b319013cfcc9e00c60f9f96162b8b7391d4ccae9c511f752812ee3e3a","impliedFormat":1},{"version":"952a60f7c6c46b683f6e0804d1e8e46244e90a68cdaef3d426708e0c82edcd94","signature":"8b3603d15e3899df5abe14590f4549414118396c49c75e4cf6f0e944079ded78"},{"version":"d62c0b0d23609a485dff9b8ed8e9af9c56b8789dc70a07d4bdbb26f16420b249","impliedFormat":1},{"version":"a2609926cd0259b582f55812d4ea93ff0440e38dd015bdb95394b26ad3d34cd1","impliedFormat":1},{"version":"2bdaf407163ca9ca9bc3c1d3fb78ad26b6bd2f7d68b04810fc28072925a95e9b","impliedFormat":1},{"version":"95347f256453f88602fcfc792b0ccea75f330aa22150bd95a6a8bb034a20ba14","impliedFormat":1},{"version":"dd2505eec07d3d341be4322f9f0380b5196f2b163944016227bb599dd89136e7","impliedFormat":1},{"version":"f9dfcd54e603db0684207424124c340a7eb0e61807ece0cdb51a8801c47c9155","impliedFormat":1},{"version":"ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","impliedFormat":1},{"version":"970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","impliedFormat":1},{"version":"e81c6b5f3f287690f7400c7468dc2bf21e621902dc1b6f98236e38235c0dfc68","signature":"9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","impliedFormat":1},{"version":"e50222c22db171b6e6f102dad414ba90b1ad3802537779e838bed86ff506cb28","impliedFormat":1},{"version":"4c36f9d0ffb25cf61b696b2777ba06d553d1b0cfd12d9eed8a1e3b1a50beb2f7","impliedFormat":1},{"version":"dd478451ffa00f4352bffe4f55b4531c8dec0edafb5777272089e5127dca808c","impliedFormat":1},{"version":"aedddd59fc4889fcdeb54a3b2a4943736f282c00db826ff710acb6bc91873b0d","impliedFormat":1},{"version":"5d9a5cc1712870f91f66850e7056e0d03b4046de5558a00e7190b6a9c2f7d432","impliedFormat":1},{"version":"0daf877cd2dcb81c0e39a96ee20262dc07ecc6f68d65cdb9cc6e6cf2f31d29c5","impliedFormat":1},{"version":"6206a6984c6210c7e02e8cec6c2417f6d2458ec36ac97b80ce9f894933a08082","impliedFormat":1},{"version":"d686fcb07a661fef0866137e450a487e710c233cb24f04d11426228162595d7e","impliedFormat":1},{"version":"e21af678a334e57edb0948acafa5f8d029a86c515f74b35701de2b7f0734ed78","signature":"97f2cb77a51ab49d71bdaa169999f503dc91a1261817c15463528d6d7a2dd2f9","impliedFormat":1},{"version":"8e3f8a63b6af3fd917721cfe670eedf5aae7df605d0072c5997021eb6fbdae31","impliedFormat":1},{"version":"046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","impliedFormat":1},{"version":"26b82a7ff864d0e68bc4578771898b91feabcb39dd6371970fd012827bd684f1","signature":"60e6faa0a819d40da14f63177e8f2f7a2c75c4f5925b7ede9d8bc13487d6384a","impliedFormat":1},{"version":"e2264b7f593788fca68253d204722139971cefcc19f01a9540b40e3c6a824152","signature":"68169677a1fbd913f4421ffc3fcafbec03a6bf3ea250249a18fb415f8f4a1746","impliedFormat":1},{"version":"a6260e50e119a4ae143e080cb69501b76f70b55df4f40b3874ee785277003570","impliedFormat":1},{"version":"311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","impliedFormat":1},{"version":"c032a9b7dfc5f9b86ac5b1535fe72154dc48a7f89f76c5cb4e8a6ab4db203671","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"23fa431c1549a548df67056c34a9ea3653b50266d77653a406ff5a67a7f861aa","impliedFormat":1},{"version":"1b1fc8e3cac6cd35e6ecae8aa8bda1f7c402e7786ca262ea6294c907c5b00149","signature":"a3aef4923a8dde677e086f9a6c3f5272a7881517658ff401ec47931829da2075","impliedFormat":1},{"version":"403ba71e387291ed9129e24bc76c9fdef4d563d0208baff9ac4f673d6ec2170a","signature":"1d57041f2cc69ae090870690d2171110a9b672d2b2a2839ace0f59bbaa67cc56","impliedFormat":1},{"version":"60a0074289b6584a0d7003c2aa14d9ebd0027e423deb79e08031b7e708770c98","impliedFormat":1},{"version":"d62b7fb6c39357289ba064887935b0966cd99da5a3bb63afc1d6ea4f82ab23f1","impliedFormat":1},{"version":"7a8e7fc0c0b3c6f0344a6b54a56e928aba5b2bde679ca742acf67aeb67e6f9d2","impliedFormat":1},{"version":"189150e785626242df43edde2e537ae48b8d8ba0c93e78c2478c9ce738a14cfe","impliedFormat":1},{"version":"b377fa259d15c6e3c0fc2804530f1c7448906df2b6afdf6ddeff61a75016cb28","impliedFormat":1},{"version":"a26bb2e2693f921f4aa3f6e8c04a18d07c6ab6c3162c426299e0d0a904d76d82","impliedFormat":1},{"version":"42e7c31cdce8294ad4852d465b2dd91307efecfd7a9889f2a0aa49ffca73e83b","impliedFormat":1},{"version":"7922bdca92b1a6f586e9403b2b7972200aae00f926a300e79bf2d62eb410714f","impliedFormat":1},{"version":"d3abaca0cd59f25b4e056681217d1f8674612071706e6825517ec9e264063e55","impliedFormat":1},{"version":"76a7145b39ac6cc3633e2ccb545e9db3e5a02c7e0bceddbb5abbd3b2e1fba32e","impliedFormat":1},{"version":"a3cf3aa8ec934a46e5d10922af944c14e1b73acb81c4ba90348bee40a829b26c","impliedFormat":1},{"version":"8f95f6784090939eb0cb0c648a03bce2208e595730afc14be4969d90b334b541","impliedFormat":1},{"version":"535b6a88c08e138b1b72003f482bceaca78311cd19836bdde0a80a131f457f43","impliedFormat":1},{"version":"cf72ba3ad6ed1f342e8ddbdbfdf425238cbc7a75cc7a318fa994cb3866a68804","impliedFormat":1},{"version":"f213a7dafb0a946c1134a64151cbb7f2301d23f93920356d730cf0ed767e9985","impliedFormat":1},{"version":"c305868de2a4ea029bd4b9593ebb33b602b54cdbb3a09231486f611a414d0f5f","impliedFormat":1},{"version":"cf42fcfc0f9e976054d921a0f5bf898f9127751cf5dd9f1b4820069fd78f2280","impliedFormat":1},{"version":"e35526a0977b9cd80f799aef3314cb2bfe66aeb40879c888f7a993bd3437fc42","impliedFormat":1},{"version":"81d92e5c4d618ba0660121ed30c603e8111ad605e7562948f7430d87038daee0","impliedFormat":1},{"version":"757f7967151a9b1f043aba090f09c1bdb0abe54f229efd3b7a656eb6da616bf4","impliedFormat":1},{"version":"2da74b28ea53cb34b516fd6dbda3ca93495648cf431e59d24ba3ab5d7ec59ba4","impliedFormat":1},{"version":"928ebc4436abadcd3680338883b7e26189beb7532ae4b3d1c1727598607e53fa","impliedFormat":1},{"version":"2d232975df81628cb4d8a5236b8776976940cc4dd202698e498de5a4baeb7389","impliedFormat":1},{"version":"9bddd9fa92fbbb5bd3b7617b88c4aa038391aa29eca99baef820bf0ff422ee43","signature":"cc67a58590a00cf7dff0a5849c8e7e0439ec202f2462621f60b13fbed0546fc5","impliedFormat":1},{"version":"4c1b770da0116b19eb873aa7cd0bd242ce4b18e20ecde61e5c0bda5421f40707","signature":"3849e66e1f8ac2913e0619ef856a845e4c44f6b9e97c606e991247a9353bb0dd","impliedFormat":1},{"version":"64b05591ba7a6a2025c3ce04bd72b972a6200d4481feaae2e66056e0a1500b3a","signature":"526ee815290e47e75fd2105f83de0916689cc532a19c81620672342f6478095f","impliedFormat":1},{"version":"96def9cb00debb7554a8019ae45310f375a65820bd8efa8e497a96e3416a5677","signature":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"04c8589ba249eb9bc61b2232ab6c29216409852b4aecfb478cbf2a754871253a","signature":"8bfba49493f92a72cdffe5b9947c3f572c9301f4e95a471027d0022e8d9b5d97","impliedFormat":1},{"version":"956f962aca6becfca36766fe3af718b586829e1e4dd72f6b896057f75d4e9e83","impliedFormat":1},{"version":"9f7b583873c73cf01be845311d8b3e1715aecfa476a047d885804d837327d5db","impliedFormat":1},{"version":"f4de63eb261a0b27b5f66f08a4e5c292b67b0c1c0d25199bdd632f4c449b4806","impliedFormat":1},{"version":"f4a795af80885eba93957db860b4b82b4d23a76c5e122c2af5eeb9319094d9d1","impliedFormat":1},{"version":"3267bdd186e8d021bfa57a5314a256b9781e895bc025e426a2bdbe93b946cca0","impliedFormat":1},{"version":"31ed847fef6dc27c5224045deab8f99887ec76146cbc4f2ccb33f5b117fc9bf1","impliedFormat":1},{"version":"0df38983d84eccab44e2e6385bed5e1033b23228e484b80ff124d4049ca8e75a","impliedFormat":1},{"version":"7395857a8b73a1a5a14af625ec52c90f5b24bb0b163057d0f3e8a197ccc816ee","impliedFormat":1},{"version":"8b2e63aba58523a92dd15761096a03b5ebbd8983e2889b1f14265d9b2bb444b6","impliedFormat":1},{"version":"5f932457c501d03a68bee9ae0ab26ef9df2fa1f789a981483ec1f56c120ea5c7","impliedFormat":1},{"version":"4118ae023b5dd1af42aa6ccec246e5c0a7fc32e7459bda588da183d371d46281","impliedFormat":1},{"version":"c935d7a81d4a4409ba02812bd2b9e0176b74d361109d977b13bf6898488df6d9","impliedFormat":1},{"version":"ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","impliedFormat":1},{"version":"970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","impliedFormat":1},{"version":"6477c1bd38bbe6e8d74abebd01a073a7e45a89086a5a250e11725989a54a9a94","impliedFormat":1},{"version":"046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","impliedFormat":1},{"version":"52580471774bba3d4ccd41c1178e2c2884f1caa7257d4e86f760ce840d5083f6","signature":"12c618d15f731e0251af2dcd7b52bb12b0535769e27c9c099bcea9b5a451f3f4","impliedFormat":1},{"version":"2837ced1e5d4ef88b4e1688fa62bc93b4248d1825667c87a83adaa51bc810cbf","impliedFormat":1},{"version":"f61af6ed7df59c72b7e2fc7e25a4500f5e9beafad5be038d349c5348a0727ba5","impliedFormat":1},{"version":"ab1d998d1a0125aeb4f70beb593220427562543d33c704f7df9e5d8b0de76700","signature":"f4dfb302d3c378152e1a8c8d9879d7d69625333efccd3092eafc40837b67f9e4","impliedFormat":1},{"version":"bf7ccda18d9cb9ed3047d96a6542fee3c3bc4e7a7822af40332c5c2f6e07c2b7","impliedFormat":1},{"version":"7bc71d52df9d8e5cc55218d347a91b1758b38341f9cbbac0b80057aa9d93daa6","impliedFormat":1},{"version":"7a1f7b274cf8a66b83fcf42153bde6f25f4eb4d7696d4a6b17e4a8878d128306","impliedFormat":1},{"version":"553dd4fef7d2b88e899646b66b2035e119f61b092d668ae0595a32c234f9b8b5","impliedFormat":1},{"version":"6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","impliedFormat":1},{"version":"afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","impliedFormat":1},{"version":"d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","impliedFormat":1},{"version":"6215681982d007f5e9137ab0ca969c39048401e588bb0ad92018297c82551ea8","impliedFormat":1},{"version":"82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","impliedFormat":1},{"version":"cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","impliedFormat":1},{"version":"3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","impliedFormat":1},{"version":"f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","impliedFormat":1},{"version":"ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","impliedFormat":1},{"version":"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","impliedFormat":1},{"version":"dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","impliedFormat":1},{"version":"67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","impliedFormat":1},{"version":"1b831600aabe1c065830d303d087189e1ccfc93a0ef1882eb58a336ec1ce9f2f","impliedFormat":1},{"version":"75f191b59fe7ce72d1d7d11d0f329a193843f54af93182fc5a65c37d0a82c85a","impliedFormat":1},{"version":"cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","impliedFormat":1},{"version":"f6451dc56be14d37a8b88ea62a143ea398ab44558cd530fb2cdeeea42695c849","impliedFormat":1},{"version":"8ab77e5c32f1b6c6c1ee1b1b771c1a76a16be650559dc61320c8c82c99fc7cde","impliedFormat":1},{"version":"16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","impliedFormat":1},{"version":"ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","impliedFormat":1},{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true,"impliedFormat":1},{"version":"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","impliedFormat":1},{"version":"c269a12e83c5ffc0332b1f245008e4e621e483dd2f8b9b77fc6a664fcde4969d","impliedFormat":1},{"version":"aa8a056ee45ae741849d6e809ba85967b638070060e29c57d12d22b14baefeb6","impliedFormat":1},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true,"impliedFormat":1},{"version":"a97081289e7233ca2ef04a729036449fec4e88818fd7b7397930bd4d52294b18","impliedFormat":1},{"version":"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","impliedFormat":1},{"version":"0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","impliedFormat":1},{"version":"15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","impliedFormat":1},{"version":"963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","impliedFormat":1},{"version":"9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","impliedFormat":1},{"version":"c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","impliedFormat":1},{"version":"ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","impliedFormat":1},{"version":"ae8cd6af37275eac75f5369cdb5f01063bcf1f48d74cb434303ee50ec446acfe","impliedFormat":1},{"version":"2518830a2fda9c272ba48798d0e7b857037443b06594db8e42c87e86944ee9e4","impliedFormat":1},{"version":"95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","impliedFormat":1},{"version":"1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","impliedFormat":1},{"version":"bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","impliedFormat":1},{"version":"5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","impliedFormat":1},{"version":"99ab49d4732fdc98cf5c495925e65e796544cb4086fe42afc235dfc02bcf2351","impliedFormat":1},{"version":"af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","impliedFormat":1},{"version":"d393adc32e520d4274bb4c3dfdcdb342b806a230b66ef0f82b35bffbc4aa2590","impliedFormat":1},{"version":"c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","impliedFormat":1},{"version":"38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","impliedFormat":1},{"version":"3b6040253231d44e6778eb6861cc86c1758562e77783d21b7ecbc73322ded539","impliedFormat":1},{"version":"03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","impliedFormat":1},{"version":"318c82cc1e13da55e8c60d7e1bdc422a0679d675ad048b6d5022a47f57d23e3f","impliedFormat":1},{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac3cce682a1eab96841ce9942ace8dd5649d2951007096555f4950479e4b8d56","impliedFormat":1},{"version":"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","impliedFormat":1},{"version":"fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","impliedFormat":1},{"version":"d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","impliedFormat":1},{"version":"ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","impliedFormat":1},{"version":"9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","impliedFormat":1},{"version":"3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","impliedFormat":1},{"version":"3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","impliedFormat":1},{"version":"951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","impliedFormat":1},{"version":"a45efe8e9134ef64a5e3825944bc16fffaf130b82943844523d7a7f7c1fd91b2","impliedFormat":1},{"version":"969aa6509a994f4f3b09b99d5d29484d8d52a2522e133ef9b4e54af9a3e9feaf","impliedFormat":1},{"version":"f378e8538e407f997a0f88fcd1ecd93a096707cc909339ce4dba2e4ea03f1726","impliedFormat":1},{"version":"dcafd874e49d42fc215dcb4ef1e06511363c1f31979951081f3cd1908a05a636","impliedFormat":1},{"version":"fb73c98050a02b5849cc0fbb0d133ed55764b9c2a91f0ada2a25e74df68e6242","impliedFormat":1},{"version":"6002c44a8e8edbe4c79ce856c7bac3f8e69a2a45dc5bd6b229ca4ab323b924b3","impliedFormat":1},{"version":"b4d505a77e0829de5e5e23eaefb3d7989e0dbdfdb02ea69159df9f40017fb958","impliedFormat":1},{"version":"b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","impliedFormat":1},{"version":"f2242adef346a64818a1af914146f6f6046f16505e8a228c3bdb70185d4fdf4c","impliedFormat":1},{"version":"2f7508d8eeadcfde20b41ec13726c9ad26f04bbf830434e289c6010d5be28455","impliedFormat":1},{"version":"8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","impliedFormat":1},{"version":"9798f0d3693043da9dda9146b5e8622cd4476270e7aed8f3cb346b9b40a52103","impliedFormat":1},{"version":"fc7e8927b6fa6c81d68783afb314d01592c559e86bd36df334c37f40d0136acd","impliedFormat":1},{"version":"73f72caffdd55f189b5bf4e6b5ca273b4e26269d9aac859b9d30a5f799c095ad","impliedFormat":1},{"version":"d998e3e185cdf59dfc84043c41a42c02daaf3b7b21bee2db2d1f620a8e134f4c","impliedFormat":1},{"version":"06aa8858883e08f5136eb182d2f285ea615aeb464007f83c7a31ee1f8d9932b1","impliedFormat":1},{"version":"62d429aba0bbe459a04965d10c7637b74b319149f17874920a5ffb9fe3ba14d8","impliedFormat":1},{"version":"084a25e9ee73362fbb467873341b95721689513c14af6aa3067a1d95d6fafe08","impliedFormat":1},{"version":"4dbfeb147290c498e3aa56ea3198a6a109c5c0d9d7a4936a3138376302d89e7d","impliedFormat":1},{"version":"169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","impliedFormat":1},{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true,"impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","impliedFormat":1},{"version":"5009c081fd8ca3fcd6f3adcd071a1c79a933a400532b897822aad0943688a1f1","impliedFormat":1},{"version":"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","impliedFormat":1},{"version":"93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","impliedFormat":1},{"version":"c271193e426325d9acab2f99997bb9f5f2dff850ec8c7c011c5abafe5af83b5f","impliedFormat":1},{"version":"58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","impliedFormat":1},{"version":"a3e12bcf2d196656ccd5b5d5344182967a2bdde0f63c9b955c36169ed02c3555","impliedFormat":1},{"version":"a016d2f6c0a2c15069ec69661ad37c86a450deb629ce96a592f15f01d3a5746e","impliedFormat":1},{"version":"2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","impliedFormat":1},{"version":"2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","impliedFormat":1},{"version":"42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","impliedFormat":1},{"version":"d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","impliedFormat":1},{"version":"b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","impliedFormat":1},{"version":"7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","impliedFormat":1},{"version":"906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","impliedFormat":1},{"version":"5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","impliedFormat":1},{"version":"c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","impliedFormat":1},{"version":"e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","impliedFormat":1},{"version":"e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","impliedFormat":1},{"version":"9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","impliedFormat":1},{"version":"0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","impliedFormat":1},{"version":"71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","impliedFormat":1},{"version":"c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","impliedFormat":1},{"version":"2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","impliedFormat":1},{"version":"479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","impliedFormat":1},{"version":"ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","impliedFormat":1},{"version":"f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","impliedFormat":1},{"version":"86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","impliedFormat":1},{"version":"2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","impliedFormat":1},{"version":"a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","impliedFormat":1},{"version":"b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","impliedFormat":1},{"version":"61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","impliedFormat":1},{"version":"6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","impliedFormat":1},{"version":"c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","impliedFormat":1},{"version":"38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","impliedFormat":1},{"version":"d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","impliedFormat":1},{"version":"3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","impliedFormat":1},{"version":"b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","impliedFormat":1},{"version":"f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","impliedFormat":1},{"version":"843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","impliedFormat":1},{"version":"f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","impliedFormat":1},{"version":"6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","impliedFormat":1},{"version":"e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","impliedFormat":1},{"version":"a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","impliedFormat":1},{"version":"a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","impliedFormat":1},{"version":"da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","impliedFormat":1},{"version":"acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","impliedFormat":1},{"version":"6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","impliedFormat":1},{"version":"4fddd9f6929421ce580b4583defbb3f78f5a4a3642bea5ecd3209bf652d8b507","impliedFormat":1},{"version":"f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","impliedFormat":1},{"version":"82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","impliedFormat":1},{"version":"557e00bde9af85bcb3ab6b3a785904f028f9f1b65dba664f2fda44965acf8a78","impliedFormat":1},{"version":"397981908f102effb3cd483042076b593f3928264dbf06aec235a7c3e83da2b4","impliedFormat":1},{"version":"ad78491e2a3ae1e59680dbab88607dd670d06a91b1d6c451fa895ad390513e8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a9deb79dabc5153448e38589fbe38945fdad45f0f8442cd4d4e1da8bb879a76","affectsGlobalScope":true,"impliedFormat":1},{"version":"f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956","impliedFormat":1},{"version":"c9cc4c881c910ce378659524d985d2b72b79029b0c473df5d4d3557b4cf6010a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fae4b2bc906f3e6840725cc24affaa4e684e6c9cc20254242c5df4bede5b6f6","impliedFormat":1},{"version":"2dd1d4cea14cead7a7fc9eec8f40593089dff0de8c0199458446143c9b8c4ea9","impliedFormat":1},{"version":"c0288f54de6f544706a3150c8b579b1a975870695c4be866f727ece6a16f3976","impliedFormat":1},{"version":"ec2c7505ede4bc3ee37cfe431cfd87e545f55f27fe15b0809c1a411765145615","impliedFormat":1}],"options":{"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":99,"outDir":"./dist-es","removeComments":true,"rootDir":"./src","skipLibCheck":true,"strict":true,"target":8,"useUnknownInCatchVariables":false},"fileIdsList":[[64,69,117],[64,69,82,98,115,495],[64,69],[64,69,84,117,498],[64,69,75,117],[64,69,81,84,109,117,502,503,504],[64,69,117,513],[64,69,109,117,517],[64,69,84,117],[64,69,70,117],[64,69,506,507,521],[64,69,81,84,117,515,516],[64,69,499,516,517,524],[64,69,81,82,117,526],[64,69,81,84,86,89,98,109,117],[64,69,81,112,117,543,544,546],[64,69,545],[64,69,81,117],[64,69,548,550,551,552,553,554,555,556,557,558,559,560],[64,69,548,549,551,552,553,554,555,556,557,558,559,560],[64,69,549,550,551,552,553,554,555,556,557,558,559,560],[64,69,548,549,550,552,553,554,555,556,557,558,559,560],[64,69,548,549,550,551,553,554,555,556,557,558,559,560],[64,69,548,549,550,551,552,554,555,556,557,558,559,560],[64,69,548,549,550,551,552,553,555,556,557,558,559,560],[64,69,548,549,550,551,552,553,554,556,557,558,559,560],[64,69,548,549,550,551,552,553,554,555,557,558,559,560],[64,69,548,549,550,551,552,553,554,555,556,558,559,560],[64,69,548,549,550,551,552,553,554,555,556,557,559,560],[64,69,548,549,550,551,552,553,554,555,556,557,558,560],[64,69,548,549,550,551,552,553,554,555,556,557,558,559],[64,69,580],[64,69,565],[64,69,569,570,571],[64,69,568],[64,69,570],[64,69,547,566,567,572,575,577,578,579],[64,69,567,573,574,580],[64,69,573,576],[64,69,567,568,573,580],[64,69,567,580],[64,69,561,562,563,564],[64,69,84,109,117,586,587],[64,69,592],[64,69,81,82,117],[64,69,84,98,117],[64,69,595,634],[64,69,595,619,634],[64,69,634],[64,69,595],[64,69,595,620,634],[64,69,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633],[64,69,620,634],[64,69,82,525],[64,69,84,117,523],[64,69,636],[64,69,98,117],[64,69,81,84,86,98,106,109,115,117],[64,69,81,117,648],[64,69,532],[64,69,531,532],[64,69,531],[64,69,531,532,533,535,536,539,540,541,542],[64,69,532,536],[64,69,531,532,533,535,536,537,538],[64,69,531,536],[64,69,536,540],[64,69,532,533,534],[64,69,533],[64,69,531,532,536],[64,69,510],[64,69,507,508,509],[64,69,507,510],[64,69,84,89,106,109,112,506,508,510,511,512],[64,69,163,198],[64,69,163,197,336],[64,69,163,215,242,244,336],[64,69,245,246],[64,69,285],[64,69,163,247,285,295],[64,69,243,296,297,336,337,339,340],[64,69,244],[64,69,242,243],[64,69,242],[64,69,163,245,246,295],[64,69,163,245,246,336],[64,69,163,198,242,245,246,295,297,298,301,316,318,335],[64,69,163,188,198,242,295,297,336,344],[64,69,163,188,198,242,295,297,336,349,396],[64,69,163,198,297,336],[64,69,296],[64,69,474,475],[64,69,491],[64,69,163,361],[64,69,163,197,372],[64,69,163,215,242,363,372],[64,69,364,365,366,367],[64,69,163],[64,69,163,285,295,369],[64,69,362,368,370,371,372,373,374,378,379],[64,69,363],[64,69,242,362],[64,69,375,376,377],[64,69,163,372],[64,69,163,365,375],[64,69,163,366,375],[64,69,370],[64,69,163,364,365,366,367,372],[64,69,163,215,242,295,298,301,316,335,361,364,365,366,367,368,371],[45,64,69,191,196],[44,64,69],[64,69,163,179],[64,69,163,178],[64,69,178,179,180,189],[64,69,163,177],[64,69,163,188],[64,69,190],[64,69,192,193,194,195],[64,69,163,350],[64,69,350,351],[64,69,163,173,285,355,356],[64,69,357],[64,69,163,357],[64,69,163,352,355,358,360,386,394],[64,69,395],[64,69,163,173,285],[64,69,359],[64,69,163,173,285,381],[64,69,382,383,384,385],[64,69,163,383],[64,69,380],[64,69,163,285,353],[64,69,163,285],[64,69,353,354],[64,69,446],[64,69,299,300],[64,69,163,299],[64,69,439,442],[64,69,177],[64,69,440,441],[64,69,163,260,261],[64,69,255],[64,69,255,256,257,258,259],[64,69,248,249,250,251,252,253,254,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284],[64,69,260,261],[64,69,163,477],[64,69,163,417],[64,69,302,303,304,305],[64,69,163,304],[64,69,306,309,315],[64,69,307,308],[64,69,310],[64,69,163,312,313],[64,69,312,313,314],[64,69,311],[64,69,452,455,462,463,464,465,466],[64,69,163,449],[64,69,449,450,451],[64,69,453,454],[64,69,163,295],[64,69,457,458,459],[64,69,456,460,461],[64,69,163,387],[64,69,163,387,389],[64,69,387,388,389,390,391,392,393],[64,69,479,480,481],[64,69,317],[64,69,98,117,163],[64,69,419,420],[64,69,342,343],[64,69,483,484],[64,69,163,208,209],[64,69,210,211],[64,69,208,209,212,213,214],[64,69,163,326,328],[64,69,328,329,330,331,332,333,334],[64,69,163,330],[64,69,163,327],[64,69,408,409,410],[64,69,163,409],[64,69,163,164,174,175],[64,69,163,173],[64,69,176],[64,69,346,347,348],[64,69,84,86,117,163,295],[64,69,288],[64,69,289],[64,69,163,291],[64,69,163,286,287],[64,69,286,287,288,290,291,292,293,294],[64,69,165,166,167,168,169,170,171,172],[64,69,163,169],[64,69,181,182,183,184,185,186,187],[64,69,163,206],[64,69,163,215],[64,69,199],[64,69,163,225,226],[64,69,227],[64,69,163,199,207,216,217,218,219,220,221,222,223,224,228,229,230,231,232,233,234,235,236,237,238,239,240,241],[47,64,69],[46,64,69],[50,57,58,59,64,69],[57,60,64,69],[50,54,64,69],[50,60,64,69],[48,49,58,59,60,61,64,69],[64,69,98,117,119],[64,69,121],[55,56,57,64,69,123],[55,57,64,69],[64,69,125,127,128],[64,69,125,126],[64,69,130],[48,64,69],[51,64,69,132],[64,69,132],[64,69,132,133,134,135,136],[64,69,135],[52,64,69],[64,69,132,133,134],[54,55,57,64,69],[64,69,121,122],[64,69,138],[64,69,138,142],[64,69,138,139,142,143],[56,64,69,141],[64,69,118],[47,53,64,69],[52,54,64,69,84,86,117],[50,64,69],[50,64,69,146,147,148],[47,51,52,53,54,55,56,57,62,64,69,120,121,122,123,124,126,129,130,131,137,140,141,144,145,149,150,151,152,153,154,155,156,157,158,160,161,162],[48,51,52,56,64,69],[64,69,124],[64,69,140],[54,56,64,69,126],[54,55,64,69],[54,64,69,130],[56,64,69,121,122],[64,69,84,98,117,119,152],[55,64,69,123,157,158],[54,64,69,84,85,117,123,124,152,156,157,158,159],[64,69,123,124],[54,64,69],[64,69,427,428],[64,69,486],[64,69,423],[64,69,488],[64,69,163,242],[64,69,435],[64,69,402,403],[64,69,163,319],[64,69,163,321],[64,69,319],[64,69,319,320,321,322,323,324,325],[64,69,98],[64,69,200,201,202,203,204,205],[64,69,98,163],[64,69,430,431,432],[64,65,69],[64,68,69],[64,69,74,101],[64,69,70,81,82,89,98,109],[64,69,70,71,81,89],[64,69,72,110],[64,69,73,74,82,90],[64,69,74,98,106],[64,69,75,77,81,89],[64,69,76],[64,69,77,78],[64,69,81],[64,69,80,81],[64,68,69,81],[64,69,81,82,83,98,109],[64,69,81,82,83,98],[64,69,81,84,89,98,109],[64,69,81,82,84,85,89,98,106,109],[64,69,84,86,98,106,109],[64,69,81,87],[64,69,88,109,114],[64,69,77,81,89,98],[64,69,90],[64,69,91],[64,68,69,92],[64,69,93,108,114],[64,69,94],[64,69,95],[64,69,81,96],[64,69,96,97,110,112],[64,69,81,98,99,100],[64,69,98,100],[64,69,98,99],[64,69,101],[64,69,102],[64,69,81,104,105],[64,69,104,105],[64,69,74,89,98,106],[64,69,107],[69],[63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116],[64,69,89,108],[64,69,84,95,109],[64,69,74,110],[64,69,98,111],[64,69,112],[64,69,113],[64,69,74,81,83,92,98,109,112,114],[64,69,98,115],[64,69,163,401,405],[64,69,163,197,401,404,469],[64,69,163,242,401,407,411,414,469],[64,69,401,412,415],[64,69,285,316,401],[64,69,163,285,295,401,438],[64,69,401,406,444,445,469,470,471,472],[64,69,401,407],[64,69,242,401,406],[64,69,242,401],[64,69,163,197,242,295,401,406,407,412,413,415],[64,69,163,242,401,412,415,469],[64,69,163,242,295,298,301,316,318,335,401,405,412,415,437,445,447,448,467,468],[64,69,242,316,326,344,401,416,434,469,476,478,482,485,487,489],[64,69,401,469,490,492],[64,69,163,197,242,401,405,425,426,429,433,469],[64,69,177,197,242,316,326,335,349,396,401,416,418,421,422,424,434,436,469],[64,69,242,295,401,438,443,444],[64,69,163,247,285,650],[64,69,163,245,246,650],[64,69,163,198,242,245,246,297,298,301,316,318,335,650],[64,69,163,188,198,242,297,336,344,650],[64,69,163,188,198,242,297,336,349,396,650],[163,405],[163,197,469],[163,215,242,407,469],[412,415],[285],[163,285,438,650],[406,444,445,469,470,471,472],[407],[242,406],[242],[163,412,415,650],[163,412,415,469],[163,242,298,301,316,318,335,405,412,415,445,650],[163,188,242,295,344,405,445,469],[163,405,445,469],[163,188,242,295,349,396,405,445,469],[444]],"referencedMap":[[494,1],[496,2],[497,3],[499,4],[500,5],[501,3],[505,6],[514,7],[518,8],[498,9],[519,10],[520,3],[521,3],[522,11],[506,3],[517,12],[525,13],[527,14],[526,3],[503,3],[528,15],[529,3],[530,3],[545,16],[546,17],[507,3],[502,18],[547,3],[549,19],[550,20],[548,21],[551,22],[552,23],[553,24],[554,25],[555,26],[556,27],[557,28],[558,29],[559,30],[560,31],[581,32],[566,33],[572,34],[570,3],[569,35],[571,36],[580,37],[575,38],[577,39],[578,40],[579,41],[573,3],[574,41],[576,41],[568,41],[567,3],[562,3],[561,3],[564,33],[565,42],[563,33],[582,3],[523,3],[583,3],[584,3],[585,3],[587,3],[588,43],[589,3],[590,3],[591,3],[593,44],[516,3],[515,3],[495,45],[594,3],[504,46],[592,3],[619,47],[620,48],[595,49],[598,49],[617,47],[618,47],[608,47],[607,50],[605,47],[600,47],[613,47],[611,47],[615,47],[599,47],[612,47],[616,47],[601,47],[602,47],[614,47],[596,47],[603,47],[604,47],[606,47],[610,47],[621,51],[609,47],[597,47],[634,52],[633,3],[628,51],[630,53],[629,51],[622,51],[623,51],[625,51],[627,51],[631,53],[632,53],[624,53],[626,53],[635,54],[524,55],[637,56],[636,3],[638,3],[639,9],[640,57],[641,3],[544,3],[643,3],[642,3],[644,3],[645,3],[646,3],[647,58],[649,59],[648,3],[509,3],[586,46],[533,60],[542,61],[531,3],[532,62],[543,63],[538,64],[539,65],[537,66],[541,67],[535,68],[534,69],[540,70],[536,61],[511,71],[510,72],[508,73],[512,3],[513,74],[247,75],[198,76],[245,77],[339,78],[246,77],[338,79],[296,80],[341,81],[340,82],[244,83],[243,84],[400,85],[337,86],[336,87],[345,88],[397,89],[398,88],[399,90],[297,91],[474,79],[476,92],[475,79],[492,93],[491,79],[369,94],[361,95],[364,96],[374,97],[365,96],[366,96],[367,96],[368,98],[370,99],[380,100],[379,101],[363,102],[362,84],[378,103],[375,104],[376,105],[377,106],[371,107],[373,108],[372,109],[197,110],[44,3],[45,111],[180,112],[179,113],[190,114],[178,115],[189,116],[191,117],[192,3],[196,118],[193,3],[194,98],[195,98],[351,119],[350,79],[352,120],[357,121],[358,122],[356,123],[395,124],[396,125],[359,126],[360,127],[382,128],[386,129],[384,130],[381,131],[383,98],[385,130],[354,132],[353,133],[355,134],[298,98],[447,135],[446,98],[448,98],[299,98],[301,136],[300,137],[439,133],[443,138],[440,139],[442,140],[441,98],[248,98],[249,98],[250,98],[251,98],[252,98],[253,98],[254,98],[262,141],[263,98],[264,3],[265,98],[266,98],[267,98],[268,98],[269,98],[256,142],[257,98],[255,98],[260,143],[258,142],[259,98],[285,144],[270,98],[271,98],[272,98],[273,98],[274,3],[275,98],[276,98],[277,98],[278,98],[279,98],[280,98],[281,145],[282,98],[283,98],[261,98],[284,98],[477,3],[478,146],[417,3],[418,147],[306,148],[302,139],[303,139],[305,149],[304,98],[316,150],[307,139],[309,151],[308,98],[311,152],[310,3],[314,153],[315,154],[312,155],[313,155],[463,98],[467,156],[450,157],[451,157],[449,98],[452,158],[454,98],[453,98],[455,159],[464,98],[466,98],[465,160],[456,98],[457,160],[458,160],[460,161],[459,98],[462,162],[461,98],[393,3],[388,163],[390,164],[394,165],[391,9],[387,98],[389,98],[392,98],[479,98],[482,166],[480,98],[481,3],[317,98],[318,167],[419,168],[421,169],[420,98],[342,160],[344,170],[343,98],[422,98],[485,171],[483,3],[484,98],[468,98],[210,172],[212,173],[211,98],[213,172],[214,172],[215,174],[208,98],[209,3],[329,175],[330,115],[331,3],[335,176],[332,98],[333,98],[334,177],[328,178],[327,98],[408,98],[411,179],[409,98],[410,180],[176,181],[164,98],[174,182],[175,98],[177,183],[349,184],[346,185],[347,160],[348,98],[289,186],[290,187],[291,98],[292,188],[288,189],[286,98],[287,98],[295,190],[293,3],[294,98],[165,3],[166,3],[167,3],[168,3],[173,191],[169,98],[170,98],[171,192],[172,98],[187,98],[182,98],[183,98],[184,98],[188,193],[185,98],[186,98],[181,98],[199,98],[207,194],[216,195],[217,3],[218,196],[219,3],[220,3],[221,3],[222,3],[223,98],[224,3],[225,98],[227,197],[228,198],[226,98],[229,3],[230,3],[242,199],[231,3],[232,3],[233,98],[234,3],[235,3],[236,3],[237,3],[238,3],[239,3],[240,3],[241,3],[46,200],[47,201],[48,3],[49,3],[60,202],[61,203],[58,204],[59,205],[62,206],[120,207],[122,208],[124,209],[123,210],[125,3],[129,211],[127,212],[128,3],[121,3],[131,213],[51,214],[133,215],[134,216],[137,217],[136,218],[132,219],[135,220],[130,221],[138,222],[139,223],[143,224],[144,225],[142,226],[119,227],[54,228],[145,229],[146,230],[147,230],[50,3],[149,231],[148,230],[163,232],[52,3],[57,233],[150,234],[151,3],[55,3],[141,235],[152,236],[140,237],[153,238],[154,239],[155,207],[156,207],[157,240],[126,3],[159,241],[160,242],[118,3],[161,243],[158,3],[53,244],[56,221],[162,200],[426,98],[427,3],[429,245],[428,3],[486,3],[487,246],[423,3],[424,247],[489,248],[488,249],[436,250],[435,249],[402,98],[404,251],[403,98],[320,252],[324,3],[322,253],[325,3],[323,254],[326,255],[321,98],[319,3],[200,3],[201,168],[204,256],[206,257],[202,258],[203,57],[205,3],[430,3],[433,259],[431,3],[432,3],[65,260],[66,260],[68,261],[69,262],[70,263],[71,264],[72,265],[73,266],[74,267],[75,268],[76,269],[77,270],[78,270],[79,271],[80,272],[81,273],[82,274],[83,275],[67,3],[116,3],[84,276],[85,277],[86,278],[87,279],[88,280],[89,281],[90,282],[91,283],[92,284],[93,285],[94,286],[95,287],[96,288],[97,289],[98,290],[100,291],[99,292],[101,293],[102,294],[103,3],[104,295],[105,296],[106,297],[107,298],[64,299],[63,3],[117,300],[108,301],[109,302],[110,303],[111,304],[112,305],[113,306],[114,307],[115,308],[413,3],[401,3],[8,3],[9,3],[11,3],[10,3],[2,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[3,3],[4,3],[23,3],[20,3],[21,3],[22,3],[24,3],[25,3],[26,3],[5,3],[27,3],[28,3],[29,3],[30,3],[6,3],[34,3],[31,3],[32,3],[33,3],[35,3],[7,3],[36,3],[41,3],[42,3],[37,3],[38,3],[39,3],[40,3],[1,3],[43,3],[416,3],[438,309],[405,310],[415,311],[471,312],[412,311],[425,313],[444,314],[473,315],[472,316],[407,317],[406,318],[414,319],[470,320],[469,321],[490,322],[493,323],[434,324],[437,325],[445,326]],"exportedModulesMap":[[494,1],[496,2],[497,3],[499,4],[500,5],[501,3],[505,6],[514,7],[518,8],[498,9],[519,10],[520,3],[521,3],[522,11],[506,3],[517,12],[525,13],[527,14],[526,3],[503,3],[528,15],[529,3],[530,3],[545,16],[546,17],[507,3],[502,18],[547,3],[549,19],[550,20],[548,21],[551,22],[552,23],[553,24],[554,25],[555,26],[556,27],[557,28],[558,29],[559,30],[560,31],[581,32],[566,33],[572,34],[570,3],[569,35],[571,36],[580,37],[575,38],[577,39],[578,40],[579,41],[573,3],[574,41],[576,41],[568,41],[567,3],[562,3],[561,3],[564,33],[565,42],[563,33],[582,3],[523,3],[583,3],[584,3],[585,3],[587,3],[588,43],[589,3],[590,3],[591,3],[593,44],[516,3],[515,3],[495,45],[594,3],[504,46],[592,3],[619,47],[620,48],[595,49],[598,49],[617,47],[618,47],[608,47],[607,50],[605,47],[600,47],[613,47],[611,47],[615,47],[599,47],[612,47],[616,47],[601,47],[602,47],[614,47],[596,47],[603,47],[604,47],[606,47],[610,47],[621,51],[609,47],[597,47],[634,52],[633,3],[628,51],[630,53],[629,51],[622,51],[623,51],[625,51],[627,51],[631,53],[632,53],[624,53],[626,53],[635,54],[524,55],[637,56],[636,3],[638,3],[639,9],[640,57],[641,3],[544,3],[643,3],[642,3],[644,3],[645,3],[646,3],[647,58],[649,59],[648,3],[509,3],[586,46],[533,60],[542,61],[531,3],[532,62],[543,63],[538,64],[539,65],[537,66],[541,67],[535,68],[534,69],[540,70],[536,61],[511,71],[510,72],[508,73],[512,3],[513,74],[247,75],[198,76],[245,77],[339,78],[246,77],[338,79],[296,327],[341,81],[340,82],[244,83],[243,84],[400,328],[337,86],[336,329],[345,330],[397,331],[398,330],[399,90],[297,91],[474,79],[476,92],[475,79],[492,93],[491,79],[369,94],[361,95],[364,96],[374,97],[365,96],[366,96],[367,96],[368,98],[370,99],[380,100],[379,101],[363,102],[362,84],[378,103],[375,104],[376,105],[377,106],[371,107],[373,108],[372,109],[197,110],[44,3],[45,111],[180,112],[179,113],[190,114],[178,115],[189,116],[191,117],[192,3],[196,118],[193,3],[194,98],[195,98],[351,119],[350,79],[352,120],[357,121],[358,122],[356,123],[395,124],[396,125],[359,126],[360,127],[382,128],[386,129],[384,130],[381,131],[383,98],[385,130],[354,132],[353,133],[355,134],[298,98],[447,135],[446,98],[448,98],[299,98],[301,136],[300,137],[439,133],[443,138],[440,139],[442,140],[441,98],[248,98],[249,98],[250,98],[251,98],[252,98],[253,98],[254,98],[262,141],[263,98],[264,3],[265,98],[266,98],[267,98],[268,98],[269,98],[256,142],[257,98],[255,98],[260,143],[258,142],[259,98],[285,144],[270,98],[271,98],[272,98],[273,98],[274,3],[275,98],[276,98],[277,98],[278,98],[279,98],[280,98],[281,145],[282,98],[283,98],[261,98],[284,98],[477,3],[478,146],[417,3],[418,147],[306,148],[302,139],[303,139],[305,149],[304,98],[316,150],[307,139],[309,151],[308,98],[311,152],[310,3],[314,153],[315,154],[312,155],[313,155],[463,98],[467,156],[450,157],[451,157],[449,98],[452,158],[454,98],[453,98],[455,159],[464,98],[466,98],[465,160],[456,98],[457,160],[458,160],[460,161],[459,98],[462,162],[461,98],[393,3],[388,163],[390,164],[394,165],[391,9],[387,98],[389,98],[392,98],[479,98],[482,166],[480,98],[481,3],[317,98],[318,167],[419,168],[421,169],[420,98],[342,160],[344,170],[343,98],[422,98],[485,171],[483,3],[484,98],[468,98],[210,172],[212,173],[211,98],[213,172],[214,172],[215,174],[208,98],[209,3],[329,175],[330,115],[331,3],[335,176],[332,98],[333,98],[334,177],[328,178],[327,98],[408,98],[411,179],[409,98],[410,180],[176,181],[164,98],[174,182],[175,98],[177,183],[349,184],[346,185],[347,160],[348,98],[289,186],[290,187],[291,98],[292,188],[288,189],[286,98],[287,98],[295,190],[293,3],[294,98],[165,3],[166,3],[167,3],[168,3],[173,191],[169,98],[170,98],[171,192],[172,98],[187,98],[182,98],[183,98],[184,98],[188,193],[185,98],[186,98],[181,98],[199,98],[207,194],[216,195],[217,3],[218,196],[219,3],[220,3],[221,3],[222,3],[223,98],[224,3],[225,98],[227,197],[228,198],[226,98],[229,3],[230,3],[242,199],[231,3],[232,3],[233,98],[234,3],[235,3],[236,3],[237,3],[238,3],[239,3],[240,3],[241,3],[46,200],[47,201],[48,3],[49,3],[60,202],[61,203],[58,204],[59,205],[62,206],[120,207],[122,208],[124,209],[123,210],[125,3],[129,211],[127,212],[128,3],[121,3],[131,213],[51,214],[133,215],[134,216],[137,217],[136,218],[132,219],[135,220],[130,221],[138,222],[139,223],[143,224],[144,225],[142,226],[119,227],[54,228],[145,229],[146,230],[147,230],[50,3],[149,231],[148,230],[163,232],[52,3],[57,233],[150,234],[151,3],[55,3],[141,235],[152,236],[140,237],[153,238],[154,239],[155,207],[156,207],[157,240],[126,3],[159,241],[160,242],[118,3],[161,243],[158,3],[53,244],[56,221],[162,200],[426,98],[427,3],[429,245],[428,3],[486,3],[487,246],[423,3],[424,247],[489,248],[488,249],[436,250],[435,249],[402,98],[404,251],[403,98],[320,252],[324,3],[322,253],[325,3],[323,254],[326,255],[321,98],[319,3],[200,3],[201,168],[204,256],[206,257],[202,258],[203,57],[205,3],[430,3],[433,259],[431,3],[432,3],[65,260],[66,260],[68,261],[69,262],[70,263],[71,264],[72,265],[73,266],[74,267],[75,268],[76,269],[77,270],[78,270],[79,271],[80,272],[81,273],[82,274],[83,275],[67,3],[116,3],[84,276],[85,277],[86,278],[87,279],[88,280],[89,281],[90,282],[91,283],[92,284],[93,285],[94,286],[95,287],[96,288],[97,289],[98,290],[100,291],[99,292],[101,293],[102,294],[103,3],[104,295],[105,296],[106,297],[107,298],[64,299],[63,3],[117,300],[108,301],[109,302],[110,303],[111,304],[112,305],[113,306],[114,307],[115,308],[413,3],[401,3],[8,3],[9,3],[11,3],[10,3],[2,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[3,3],[4,3],[23,3],[20,3],[21,3],[22,3],[24,3],[25,3],[26,3],[5,3],[27,3],[28,3],[29,3],[30,3],[6,3],[34,3],[31,3],[32,3],[33,3],[35,3],[7,3],[36,3],[41,3],[42,3],[37,3],[38,3],[39,3],[40,3],[1,3],[43,3],[438,332],[405,333],[415,334],[471,335],[412,334],[425,336],[444,337],[473,338],[472,339],[407,340],[406,341],[414,342],[470,343],[469,344],[490,345],[493,345],[434,346],[437,347],[445,348]],"semanticDiagnosticsPerFile":[494,496,497,499,500,501,505,514,518,498,519,520,521,522,506,517,525,527,526,503,528,529,530,545,546,507,502,547,549,550,548,551,552,553,554,555,556,557,558,559,560,581,566,572,570,569,571,580,575,577,578,579,573,574,576,568,567,562,561,564,565,563,582,523,583,584,585,587,588,589,590,591,593,516,515,495,594,504,592,619,620,595,598,617,618,608,607,605,600,613,611,615,599,612,616,601,602,614,596,603,604,606,610,621,609,597,634,633,628,630,629,622,623,625,627,631,632,624,626,635,524,637,636,638,639,640,641,544,643,642,644,645,646,647,649,648,509,586,533,542,531,532,543,538,539,537,541,535,534,540,536,511,510,508,512,513,247,198,245,339,246,338,296,341,340,244,243,400,337,336,345,397,398,399,297,474,476,475,492,491,369,361,364,374,365,366,367,368,370,380,379,363,362,378,375,376,377,371,373,372,197,44,45,180,179,190,178,189,191,192,196,193,194,195,351,350,352,357,358,356,395,396,359,360,382,386,384,381,383,385,354,353,355,298,447,446,448,299,301,300,439,443,440,442,441,248,249,250,251,252,253,254,262,263,264,265,266,267,268,269,256,257,255,260,258,259,285,270,271,272,273,274,275,276,277,278,279,280,281,282,283,261,284,477,478,417,418,306,302,303,305,304,316,307,309,308,311,310,314,315,312,313,463,467,450,451,449,452,454,453,455,464,466,465,456,457,458,460,459,462,461,393,388,390,394,391,387,389,392,479,482,480,481,317,318,419,421,420,342,344,343,422,485,483,484,468,210,212,211,213,214,215,208,209,329,330,331,335,332,333,334,328,327,408,411,409,410,176,164,174,175,177,349,346,347,348,289,290,291,292,288,286,287,295,293,294,165,166,167,168,173,169,170,171,172,187,182,183,184,188,185,186,181,199,207,216,217,218,219,220,221,222,223,224,225,227,228,226,229,230,242,231,232,233,234,235,236,237,238,239,240,241,46,47,48,49,60,61,58,59,62,120,122,124,123,125,129,127,128,121,131,51,133,134,137,136,132,135,130,138,139,143,144,142,119,54,145,146,147,50,149,148,163,52,57,150,151,55,141,152,140,153,154,155,156,157,126,159,160,118,161,158,53,56,162,426,427,429,428,486,487,423,424,489,488,436,435,402,404,403,320,324,322,325,323,326,321,319,200,201,204,206,202,203,205,430,433,431,432,65,66,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,67,116,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,99,101,102,103,104,105,106,107,64,63,117,108,109,110,111,112,113,114,115,413,401,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,416,438,405,415,471,412,425,444,473,472,407,406,414,470,469,490,493,434,437,445]},"version":"4.9.5"} \ No newline at end of file From e31a0dbac2e526ae1600f6f1218492afb8a228a2 Mon Sep 17 00:00:00 2001 From: Ahmed Ali Date: Wed, 23 Oct 2024 19:56:57 -0700 Subject: [PATCH 05/13] Show Q Icon in activity bar when toolkit is installed in SageMaker --- packages/amazonq/package.json | 4 ++-- packages/toolkit/package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/amazonq/package.json b/packages/amazonq/package.json index bd3de39b0aa..29f590e9119 100644 --- a/packages/amazonq/package.json +++ b/packages/amazonq/package.json @@ -196,13 +196,13 @@ "type": "webview", "id": "aws.amazonq.AmazonCommonAuth", "name": "%AWS.amazonq.login%", - "when": "!aws.isSageMaker && !aws.isWebExtHost && aws.amazonq.showLoginView" + "when": "!aws.isWebExtHost && aws.amazonq.showLoginView" }, { "type": "webview", "id": "aws.AmazonQChatView", "name": "%AWS.amazonq.chat%", - "when": "!aws.isSageMaker && !aws.isWebExtHost && !aws.amazonq.showLoginView" + "when": "!aws.isWebExtHost && !aws.amazonq.showLoginView" }, { "id": "aws.AmazonQNeverShowBadge", diff --git a/packages/toolkit/package.json b/packages/toolkit/package.json index 22218abe267..f0d6b6af7f3 100644 --- a/packages/toolkit/package.json +++ b/packages/toolkit/package.json @@ -709,7 +709,7 @@ { "id": "aws.amazonq.codewhisperer", "name": "%AWS.amazonq.codewhisperer.title%", - "when": "!isCloud9 && !aws.toolkit.amazonq.dismissed && !aws.explorer.showAuthView" + "when": "!isCloud9 && !isSageMaker && !aws.toolkit.amazonq.dismissed && !aws.explorer.showAuthView" }, { "id": "aws.explorer", From 4f30ed80cf76a600f4c488739e9ddaed768c7f61 Mon Sep 17 00:00:00 2001 From: Ahmed Ali Date: Thu, 24 Oct 2024 10:36:41 -0700 Subject: [PATCH 06/13] Allow SSO users to login and use pro tier --- packages/core/src/auth/activation.ts | 10 +++++++++- .../service/recommendationHandler.ts | 16 +++++++--------- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/packages/core/src/auth/activation.ts b/packages/core/src/auth/activation.ts index 4753043a0fc..48f3d483eca 100644 --- a/packages/core/src/auth/activation.ts +++ b/packages/core/src/auth/activation.ts @@ -3,6 +3,7 @@ * SPDX-License-Identifier: Apache-2.0 */ +import * as vscode from 'vscode' import { Auth } from './auth' import { LoginManager } from './deprecated/loginManager' import { fromString } from './providers/credentials' @@ -17,9 +18,16 @@ import { Ec2CredentialsProvider } from './providers/ec2CredentialsProvider' import { EcsCredentialsProvider } from './providers/ecsCredentialsProvider' import { EnvVarsCredentialsProvider } from './providers/envVarsCredentialsProvider' +interface SagemakerCookie { + authMode?: string +} + export async function initialize(loginManager: LoginManager): Promise { if (isAmazonQ() && isSageMaker()) { - initializeCredentialsProviderManager() + const result = (await vscode.commands.executeCommand('sagemaker.parseCookies')) as SagemakerCookie + if (result.authMode !== 'Sso') { + initializeCredentialsProviderManager() + } } Auth.instance.onDidChangeActiveConnection(async (conn) => { // This logic needs to be moved to `Auth.useConnection` to correctly record `passive` diff --git a/packages/core/src/codewhisperer/service/recommendationHandler.ts b/packages/core/src/codewhisperer/service/recommendationHandler.ts index 1fd46541c11..68a54add76d 100644 --- a/packages/core/src/codewhisperer/service/recommendationHandler.ts +++ b/packages/core/src/codewhisperer/service/recommendationHandler.ts @@ -14,7 +14,7 @@ import { AWSError } from 'aws-sdk' import { isAwsError } from '../../shared/errors' import { TelemetryHelper } from '../util/telemetryHelper' import { getLogger } from '../../shared/logger' -import { isCloud9, isSageMaker } from '../../shared/extensionUtilities' +import { isCloud9 } from '../../shared/extensionUtilities' import { hasVendedIamCredentials } from '../../auth/auth' import { asyncCallWithTimeout, @@ -157,9 +157,7 @@ export class RecommendationHandler { config: ConfigurationEntry, autoTriggerType?: CodewhispererAutomatedTriggerType, pagination: boolean = true, - page: number = 0, - isSM: boolean = isSageMaker(), - retry: boolean = false + page: number = 0 ): Promise { let invocationResult: 'Succeeded' | 'Failed' = 'Failed' let errorMessage: string | undefined = undefined @@ -186,7 +184,7 @@ export class RecommendationHandler { ).language session.taskType = await this.getTaskTypeFromEditorFileName(editor.document.fileName) - if (pagination && !isSM) { + if (pagination) { if (page === 0) { session.requestContext = await EditorContext.buildListRecommendationRequest( editor as vscode.TextEditor, @@ -240,8 +238,9 @@ export class RecommendationHandler { startTime = performance.now() this.lastInvocationTime = startTime const mappedReq = runtimeLanguageContext.mapToRuntimeLanguage(request) - const codewhispererPromise = - pagination && !isSM ? client.listRecommendations(mappedReq) : client.generateRecommendations(mappedReq) + const codewhispererPromise = pagination + ? client.listRecommendations(mappedReq) + : client.generateRecommendations(mappedReq) const resp = await this.getServerResponse(triggerType, config.isManualTriggerEnabled, codewhispererPromise) TelemetryHelper.instance.setSdkApiCallEndTime() latency = startTime !== 0 ? performance.now() - startTime : 0 @@ -333,8 +332,7 @@ export class RecommendationHandler { config, autoTriggerType, pagination, - page, - true + page ) } } From 835e57b4b91b161ca66fce5b1e93e193ab255df5 Mon Sep 17 00:00:00 2001 From: Ahmed Ali Date: Thu, 24 Oct 2024 11:06:07 -0700 Subject: [PATCH 07/13] Add changelog --- .../Feature-a007f02d-d737-4429-9b7d-245aa30d879c.json | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 packages/amazonq/.changes/next-release/Feature-a007f02d-d737-4429-9b7d-245aa30d879c.json diff --git a/packages/amazonq/.changes/next-release/Feature-a007f02d-d737-4429-9b7d-245aa30d879c.json b/packages/amazonq/.changes/next-release/Feature-a007f02d-d737-4429-9b7d-245aa30d879c.json new file mode 100644 index 00000000000..383689e932d --- /dev/null +++ b/packages/amazonq/.changes/next-release/Feature-a007f02d-d737-4429-9b7d-245aa30d879c.json @@ -0,0 +1,4 @@ +{ + "type": "Feature", + "description": "Enable Free Tier Chat for IAM users & Fix code completion for Sagemaker Pro Tier users" +} From 1bb97f3e733fa98a6fcc64d77e8338582958c1eb Mon Sep 17 00:00:00 2001 From: Ahmed Ali Date: Thu, 24 Oct 2024 12:03:36 -0700 Subject: [PATCH 08/13] Remove build artifacts from code change --- .../dist-cjs/QDeveloperStreaming.js | 15 - .../dist-cjs/QDeveloperStreamingClient.js | 48 - .../auth/httpAuthExtensionConfiguration.js | 43 - .../dist-cjs/auth/httpAuthSchemeProvider.js | 50 - .../GenerateCodeFromCommandsCommand.js | 26 - .../dist-cjs/commands/SendMessageCommand.js | 26 - .../dist-cjs/commands/index.js | 5 - .../dist-cjs/endpoints.js | 209 -- .../dist-cjs/extensionConfiguration.js | 2 - .../dist-cjs/index.js | 10 - .../QDeveloperStreamingServiceException.js | 12 - .../dist-cjs/models/index.js | 4 - .../dist-cjs/models/models_0.js | 858 ------ .../dist-cjs/protocols/Aws_json1_0.js | 397 --- .../dist-cjs/runtimeConfig.browser.js | 40 - .../dist-cjs/runtimeConfig.js | 46 - .../dist-cjs/runtimeConfig.native.js | 15 - .../dist-cjs/runtimeConfig.shared.js | 32 - .../dist-cjs/runtimeExtensions.js | 25 - .../dist-es/QDeveloperStreaming.js | 11 - .../dist-es/QDeveloperStreamingClient.js | 44 - .../auth/httpAuthExtensionConfiguration.js | 38 - .../dist-es/auth/httpAuthSchemeProvider.js | 44 - .../GenerateCodeFromCommandsCommand.js | 22 - .../dist-es/commands/SendMessageCommand.js | 22 - .../dist-es/commands/index.js | 2 - .../dist-es/endpoints.js | 205 -- .../dist-es/extensionConfiguration.js | 1 - .../dist-es/index.js | 5 - .../QDeveloperStreamingServiceException.js | 8 - .../dist-es/models/index.js | 1 - .../dist-es/models/models_0.js | 788 ------ .../dist-es/protocols/Aws_json1_0.js | 390 --- .../dist-es/runtimeConfig.browser.js | 35 - .../dist-es/runtimeConfig.js | 41 - .../dist-es/runtimeConfig.native.js | 11 - .../dist-es/runtimeConfig.shared.js | 28 - .../dist-es/runtimeExtensions.js | 21 - .../dist-types/QDeveloperStreaming.d.ts | 23 - .../dist-types/QDeveloperStreamingClient.d.ts | 178 -- .../auth/httpAuthExtensionConfiguration.d.ts | 29 - .../auth/httpAuthSchemeProvider.d.ts | 61 - .../GenerateCodeFromCommandsCommand.d.ts | 102 - .../commands/SendMessageCommand.d.ts | 622 ----- .../dist-types/commands/index.d.ts | 2 - .../dist-types/endpoints.d.ts | 2 - .../dist-types/extensionConfiguration.d.ts | 9 - .../dist-types/index.d.ts | 7 - .../QDeveloperStreamingServiceException.d.ts | 14 - .../dist-types/models/index.d.ts | 1 - .../dist-types/models/models_0.d.ts | 2422 ----------------- .../dist-types/protocols/Aws_json1_0.d.ts | 20 - .../dist-types/runtimeConfig.browser.d.ts | 45 - .../dist-types/runtimeConfig.d.ts | 45 - .../dist-types/runtimeConfig.native.d.ts | 44 - .../dist-types/runtimeConfig.shared.d.ts | 19 - .../dist-types/runtimeExtensions.d.ts | 17 - .../tsconfig.cjs.tsbuildinfo | 1 - .../tsconfig.es.tsbuildinfo | 1 - .../tsconfig.types.tsbuildinfo | 1 - .../dist-cjs/CodeWhispererStreaming.js | 19 - .../dist-cjs/CodeWhispererStreamingClient.js | 42 - .../commands/ConverseStreamCommand.js | 42 - .../commands/ExportResultArchiveCommand.js | 42 - .../GenerateAssistantResponseCommand.js | 42 - .../commands/GenerateTaskAssistPlanCommand.js | 42 - .../dist-cjs/commands/index.js | 7 - .../dist-cjs/endpoints.js | 205 -- .../dist-cjs/extensionConfiguration.js | 2 - .../codewhisperer-streaming/dist-cjs/index.js | 10 - .../CodeWhispererStreamingServiceException.js | 12 - .../dist-cjs/models/index.js | 4 - .../dist-cjs/models/models_0.js | 570 ---- .../dist-cjs/protocols/Aws_restJson1.js | 590 ---- .../dist-cjs/runtimeConfig.browser.js | 37 - .../dist-cjs/runtimeConfig.js | 41 - .../dist-cjs/runtimeConfig.native.js | 15 - .../dist-cjs/runtimeConfig.shared.js | 22 - .../dist-cjs/runtimeExtensions.js | 22 - .../dist-es/CodeWhispererStreaming.js | 15 - .../dist-es/CodeWhispererStreamingClient.js | 38 - .../dist-es/commands/ConverseStreamCommand.js | 38 - .../commands/ExportResultArchiveCommand.js | 38 - .../GenerateAssistantResponseCommand.js | 38 - .../commands/GenerateTaskAssistPlanCommand.js | 38 - .../dist-es/commands/index.js | 4 - .../dist-es/endpoints.js | 201 -- .../dist-es/extensionConfiguration.js | 1 - .../codewhisperer-streaming/dist-es/index.js | 5 - .../CodeWhispererStreamingServiceException.js | 8 - .../dist-es/models/index.js | 1 - .../dist-es/models/models_0.js | 523 ---- .../dist-es/protocols/Aws_restJson1.js | 579 ---- .../dist-es/runtimeConfig.browser.js | 32 - .../dist-es/runtimeConfig.js | 36 - .../dist-es/runtimeConfig.native.js | 11 - .../dist-es/runtimeConfig.shared.js | 18 - .../dist-es/runtimeExtensions.js | 18 - .../dist-types/CodeWhispererStreaming.d.ts | 37 - .../CodeWhispererStreamingClient.d.ts | 170 -- .../commands/ConverseStreamCommand.d.ts | 431 --- .../commands/ExportResultArchiveCommand.d.ts | 109 - .../GenerateAssistantResponseCommand.d.ts | 416 --- .../GenerateTaskAssistPlanCommand.d.ts | 428 --- .../dist-types/commands/index.d.ts | 4 - .../dist-types/endpoints.d.ts | 2 - .../dist-types/extensionConfiguration.d.ts | 8 - .../dist-types/index.d.ts | 5 - ...odeWhispererStreamingServiceException.d.ts | 13 - .../dist-types/models/index.d.ts | 1 - .../dist-types/models/models_0.d.ts | 1708 ------------ .../dist-types/protocols/Aws_restJson1.d.ts | 38 - .../dist-types/runtimeConfig.browser.d.ts | 39 - .../dist-types/runtimeConfig.d.ts | 39 - .../dist-types/runtimeConfig.native.d.ts | 38 - .../dist-types/runtimeConfig.shared.d.ts | 17 - .../dist-types/runtimeExtensions.d.ts | 17 - .../tsconfig.cjs.tsbuildinfo | 1 - .../tsconfig.es.tsbuildinfo | 1 - .../tsconfig.types.tsbuildinfo | 1 - 120 files changed, 14176 deletions(-) delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/QDeveloperStreaming.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/QDeveloperStreamingClient.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/auth/httpAuthExtensionConfiguration.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/auth/httpAuthSchemeProvider.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/GenerateCodeFromCommandsCommand.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/SendMessageCommand.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/index.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/endpoints.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/extensionConfiguration.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/index.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/QDeveloperStreamingServiceException.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/index.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/models_0.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/protocols/Aws_json1_0.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.browser.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.native.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.shared.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeExtensions.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/QDeveloperStreaming.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/QDeveloperStreamingClient.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/auth/httpAuthExtensionConfiguration.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/auth/httpAuthSchemeProvider.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/GenerateCodeFromCommandsCommand.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/SendMessageCommand.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/index.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/endpoints.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/extensionConfiguration.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/index.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/QDeveloperStreamingServiceException.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/index.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/models_0.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/protocols/Aws_json1_0.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.browser.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.native.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.shared.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeExtensions.js delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/QDeveloperStreaming.d.ts delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/QDeveloperStreamingClient.d.ts delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/auth/httpAuthExtensionConfiguration.d.ts delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/auth/httpAuthSchemeProvider.d.ts delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/GenerateCodeFromCommandsCommand.d.ts delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/SendMessageCommand.d.ts delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/index.d.ts delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/endpoints.d.ts delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/extensionConfiguration.d.ts delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/index.d.ts delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/QDeveloperStreamingServiceException.d.ts delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/index.d.ts delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/models_0.d.ts delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/protocols/Aws_json1_0.d.ts delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.browser.d.ts delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.d.ts delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.native.d.ts delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.shared.d.ts delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeExtensions.d.ts delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.cjs.tsbuildinfo delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.es.tsbuildinfo delete mode 100644 src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.types.tsbuildinfo delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreaming.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreamingClient.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/ConverseStreamCommand.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/ExportResultArchiveCommand.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateAssistantResponseCommand.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateTaskAssistPlanCommand.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/index.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/endpoints.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/extensionConfiguration.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/index.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/CodeWhispererStreamingServiceException.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/index.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/models_0.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/protocols/Aws_restJson1.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.browser.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.native.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.shared.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeExtensions.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreaming.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreamingClient.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/commands/ConverseStreamCommand.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/commands/ExportResultArchiveCommand.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/commands/GenerateAssistantResponseCommand.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/commands/GenerateTaskAssistPlanCommand.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/commands/index.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/endpoints.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/extensionConfiguration.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/index.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/models/CodeWhispererStreamingServiceException.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/models/index.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/models/models_0.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/protocols/Aws_restJson1.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.browser.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.native.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.shared.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeExtensions.js delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreaming.d.ts delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreamingClient.d.ts delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/commands/ConverseStreamCommand.d.ts delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/commands/ExportResultArchiveCommand.d.ts delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/commands/GenerateAssistantResponseCommand.d.ts delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/commands/GenerateTaskAssistPlanCommand.d.ts delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/commands/index.d.ts delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/endpoints.d.ts delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/extensionConfiguration.d.ts delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/index.d.ts delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/models/CodeWhispererStreamingServiceException.d.ts delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/models/index.d.ts delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/models/models_0.d.ts delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/protocols/Aws_restJson1.d.ts delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.browser.d.ts delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.d.ts delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.native.d.ts delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.shared.d.ts delete mode 100644 src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeExtensions.d.ts delete mode 100644 src.gen/@amzn/codewhisperer-streaming/tsconfig.cjs.tsbuildinfo delete mode 100644 src.gen/@amzn/codewhisperer-streaming/tsconfig.es.tsbuildinfo delete mode 100644 src.gen/@amzn/codewhisperer-streaming/tsconfig.types.tsbuildinfo diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/QDeveloperStreaming.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/QDeveloperStreaming.js deleted file mode 100644 index 65a1fce6c21..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/QDeveloperStreaming.js +++ /dev/null @@ -1,15 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.QDeveloperStreaming = void 0; -const QDeveloperStreamingClient_1 = require("./QDeveloperStreamingClient"); -const GenerateCodeFromCommandsCommand_1 = require("./commands/GenerateCodeFromCommandsCommand"); -const SendMessageCommand_1 = require("./commands/SendMessageCommand"); -const smithy_client_1 = require("@smithy/smithy-client"); -const commands = { - GenerateCodeFromCommandsCommand: GenerateCodeFromCommandsCommand_1.GenerateCodeFromCommandsCommand, - SendMessageCommand: SendMessageCommand_1.SendMessageCommand, -}; -class QDeveloperStreaming extends QDeveloperStreamingClient_1.QDeveloperStreamingClient { -} -exports.QDeveloperStreaming = QDeveloperStreaming; -(0, smithy_client_1.createAggregatedClient)(commands, QDeveloperStreaming); diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/QDeveloperStreamingClient.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/QDeveloperStreamingClient.js deleted file mode 100644 index 46515a3d99b..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/QDeveloperStreamingClient.js +++ /dev/null @@ -1,48 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.QDeveloperStreamingClient = exports.__Client = void 0; -const httpAuthSchemeProvider_1 = require("./auth/httpAuthSchemeProvider"); -const runtimeConfig_1 = require("./runtimeConfig"); -const runtimeExtensions_1 = require("./runtimeExtensions"); -const middleware_host_header_1 = require("@aws-sdk/middleware-host-header"); -const middleware_logger_1 = require("@aws-sdk/middleware-logger"); -const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection"); -const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent"); -const config_resolver_1 = require("@smithy/config-resolver"); -const core_1 = require("@smithy/core"); -const eventstream_serde_config_resolver_1 = require("@smithy/eventstream-serde-config-resolver"); -const middleware_content_length_1 = require("@smithy/middleware-content-length"); -const middleware_retry_1 = require("@smithy/middleware-retry"); -const smithy_client_1 = require("@smithy/smithy-client"); -Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } }); -class QDeveloperStreamingClient extends smithy_client_1.Client { - constructor(...[configuration]) { - let _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {}); - let _config_1 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_0); - let _config_2 = (0, middleware_retry_1.resolveRetryConfig)(_config_1); - let _config_3 = (0, config_resolver_1.resolveRegionConfig)(_config_2); - let _config_4 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_3); - let _config_5 = (0, config_resolver_1.resolveEndpointsConfig)(_config_4); - let _config_6 = (0, eventstream_serde_config_resolver_1.resolveEventStreamSerdeConfig)(_config_5); - let _config_7 = (0, httpAuthSchemeProvider_1.resolveHttpAuthSchemeConfig)(_config_6); - let _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []); - super(_config_8); - this.config = _config_8; - this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config)); - this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config)); - this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config)); - this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config)); - this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config)); - this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config)); - this.middlewareStack.use((0, core_1.getHttpAuthSchemePlugin)(this.config, { - httpAuthSchemeParametersProvider: httpAuthSchemeProvider_1.defaultQDeveloperStreamingHttpAuthSchemeParametersProvider, identityProviderConfigProvider: async (config) => new core_1.DefaultIdentityProviderConfig({ - "aws.auth#sigv4": config.credentials, - }), - })); - this.middlewareStack.use((0, core_1.getHttpSigningPlugin)(this.config)); - } - destroy() { - super.destroy(); - } -} -exports.QDeveloperStreamingClient = QDeveloperStreamingClient; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/auth/httpAuthExtensionConfiguration.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/auth/httpAuthExtensionConfiguration.js deleted file mode 100644 index 083620308bd..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/auth/httpAuthExtensionConfiguration.js +++ /dev/null @@ -1,43 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.resolveHttpAuthRuntimeConfig = exports.getHttpAuthExtensionConfiguration = void 0; -const getHttpAuthExtensionConfiguration = (runtimeConfig) => { - let _httpAuthSchemes = runtimeConfig.httpAuthSchemes; - let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider; - let _credentials = runtimeConfig.credentials; - return { - setHttpAuthScheme(httpAuthScheme) { - const index = _httpAuthSchemes.findIndex(scheme => scheme.schemeId === httpAuthScheme.schemeId); - if (index === -1) { - _httpAuthSchemes.push(httpAuthScheme); - } - else { - _httpAuthSchemes.splice(index, 1, httpAuthScheme); - } - }, - httpAuthSchemes() { - return _httpAuthSchemes; - }, - setHttpAuthSchemeProvider(httpAuthSchemeProvider) { - _httpAuthSchemeProvider = httpAuthSchemeProvider; - }, - httpAuthSchemeProvider() { - return _httpAuthSchemeProvider; - }, - setCredentials(credentials) { - _credentials = credentials; - }, - credentials() { - return _credentials; - }, - }; -}; -exports.getHttpAuthExtensionConfiguration = getHttpAuthExtensionConfiguration; -const resolveHttpAuthRuntimeConfig = (config) => { - return { - httpAuthSchemes: config.httpAuthSchemes(), - httpAuthSchemeProvider: config.httpAuthSchemeProvider(), - credentials: config.credentials(), - }; -}; -exports.resolveHttpAuthRuntimeConfig = resolveHttpAuthRuntimeConfig; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/auth/httpAuthSchemeProvider.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/auth/httpAuthSchemeProvider.js deleted file mode 100644 index e4376a73966..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/auth/httpAuthSchemeProvider.js +++ /dev/null @@ -1,50 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.resolveHttpAuthSchemeConfig = exports.defaultQDeveloperStreamingHttpAuthSchemeProvider = exports.defaultQDeveloperStreamingHttpAuthSchemeParametersProvider = void 0; -const core_1 = require("@aws-sdk/core"); -const util_middleware_1 = require("@smithy/util-middleware"); -const defaultQDeveloperStreamingHttpAuthSchemeParametersProvider = async (config, context, input) => { - return { - operation: (0, util_middleware_1.getSmithyContext)(context).operation, - region: await (0, util_middleware_1.normalizeProvider)(config.region)() || (() => { - throw new Error("expected `region` to be configured for `aws.auth#sigv4`"); - })(), - }; -}; -exports.defaultQDeveloperStreamingHttpAuthSchemeParametersProvider = defaultQDeveloperStreamingHttpAuthSchemeParametersProvider; -function createAwsAuthSigv4HttpAuthOption(authParameters) { - return { - schemeId: "aws.auth#sigv4", - signingProperties: { - name: "q", - region: authParameters.region, - }, - propertiesExtractor: (config, context) => ({ - signingProperties: { - config, - context, - }, - }), - }; -} -; -const defaultQDeveloperStreamingHttpAuthSchemeProvider = (authParameters) => { - const options = []; - switch (authParameters.operation) { - default: - { - options.push(createAwsAuthSigv4HttpAuthOption(authParameters)); - } - ; - } - ; - return options; -}; -exports.defaultQDeveloperStreamingHttpAuthSchemeProvider = defaultQDeveloperStreamingHttpAuthSchemeProvider; -const resolveHttpAuthSchemeConfig = (config) => { - const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config); - return { - ...config_0, - }; -}; -exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/GenerateCodeFromCommandsCommand.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/GenerateCodeFromCommandsCommand.js deleted file mode 100644 index 779ae02c1b5..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/GenerateCodeFromCommandsCommand.js +++ /dev/null @@ -1,26 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.GenerateCodeFromCommandsCommand = exports.$Command = void 0; -const models_0_1 = require("../models/models_0"); -const Aws_json1_0_1 = require("../protocols/Aws_json1_0"); -const middleware_serde_1 = require("@smithy/middleware-serde"); -const smithy_client_1 = require("@smithy/smithy-client"); -Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } }); -class GenerateCodeFromCommandsCommand extends smithy_client_1.Command.classBuilder() - .m(function (Command, cs, config, o) { - return [ - (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize), - ]; -}) - .s("AmazonQDeveloperStreamingService", "GenerateCodeFromCommands", { - eventStream: { - output: true, - }, -}) - .n("QDeveloperStreamingClient", "GenerateCodeFromCommandsCommand") - .f(models_0_1.GenerateCodeFromCommandsRequestFilterSensitiveLog, models_0_1.GenerateCodeFromCommandsResponseFilterSensitiveLog) - .ser(Aws_json1_0_1.se_GenerateCodeFromCommandsCommand) - .de(Aws_json1_0_1.de_GenerateCodeFromCommandsCommand) - .build() { -} -exports.GenerateCodeFromCommandsCommand = GenerateCodeFromCommandsCommand; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/SendMessageCommand.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/SendMessageCommand.js deleted file mode 100644 index 39c1bcacb14..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/SendMessageCommand.js +++ /dev/null @@ -1,26 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.SendMessageCommand = exports.$Command = void 0; -const models_0_1 = require("../models/models_0"); -const Aws_json1_0_1 = require("../protocols/Aws_json1_0"); -const middleware_serde_1 = require("@smithy/middleware-serde"); -const smithy_client_1 = require("@smithy/smithy-client"); -Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } }); -class SendMessageCommand extends smithy_client_1.Command.classBuilder() - .m(function (Command, cs, config, o) { - return [ - (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize), - ]; -}) - .s("AmazonQDeveloperStreamingService", "SendMessage", { - eventStream: { - output: true, - }, -}) - .n("QDeveloperStreamingClient", "SendMessageCommand") - .f(models_0_1.SendMessageRequestFilterSensitiveLog, models_0_1.SendMessageResponseFilterSensitiveLog) - .ser(Aws_json1_0_1.se_SendMessageCommand) - .de(Aws_json1_0_1.de_SendMessageCommand) - .build() { -} -exports.SendMessageCommand = SendMessageCommand; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/index.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/index.js deleted file mode 100644 index 44830bf35af..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/commands/index.js +++ /dev/null @@ -1,5 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const tslib_1 = require("tslib"); -tslib_1.__exportStar(require("./GenerateCodeFromCommandsCommand"), exports); -tslib_1.__exportStar(require("./SendMessageCommand"), exports); diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/endpoints.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/endpoints.js deleted file mode 100644 index bd80d56eb27..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/endpoints.js +++ /dev/null @@ -1,209 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.defaultRegionInfoProvider = void 0; -const config_resolver_1 = require("@smithy/config-resolver"); -const regionHash = {}; -const partitionHash = { - "aws": { - regions: [ - "af-south-1", - "ap-east-1", - "ap-northeast-1", - "ap-northeast-2", - "ap-northeast-3", - "ap-south-1", - "ap-south-2", - "ap-southeast-1", - "ap-southeast-2", - "ap-southeast-3", - "ap-southeast-4", - "ap-southeast-5", - "ca-central-1", - "ca-west-1", - "eu-central-1", - "eu-central-2", - "eu-north-1", - "eu-south-1", - "eu-south-2", - "eu-west-1", - "eu-west-2", - "eu-west-3", - "il-central-1", - "me-central-1", - "me-south-1", - "sa-east-1", - "us-east-1", - "us-east-2", - "us-west-1", - "us-west-2", - ], - regionRegex: "^(us|eu|ap|sa|ca|me|af|il|mx)\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazonqdeveloperstreamingservice.{region}.amazonaws.com", - "tags": [] - }, - { - "hostname": "amazonqdeveloperstreamingservice-fips.{region}.amazonaws.com", - "tags": [ - "fips" - ] - }, - { - "hostname": "amazonqdeveloperstreamingservice-fips.{region}.api.aws", - "tags": [ - "dualstack", - "fips" - ] - }, - { - "hostname": "amazonqdeveloperstreamingservice.{region}.api.aws", - "tags": [ - "dualstack" - ] - } - ], - }, - "aws-cn": { - regions: [ - "cn-north-1", - "cn-northwest-1", - ], - regionRegex: "^cn\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazonqdeveloperstreamingservice.{region}.amazonaws.com.cn", - "tags": [] - }, - { - "hostname": "amazonqdeveloperstreamingservice-fips.{region}.amazonaws.com.cn", - "tags": [ - "fips" - ] - }, - { - "hostname": "amazonqdeveloperstreamingservice-fips.{region}.api.amazonwebservices.com.cn", - "tags": [ - "dualstack", - "fips" - ] - }, - { - "hostname": "amazonqdeveloperstreamingservice.{region}.api.amazonwebservices.com.cn", - "tags": [ - "dualstack" - ] - } - ], - }, - "aws-iso": { - regions: [ - "us-iso-east-1", - "us-iso-west-1", - ], - regionRegex: "^us\\-iso\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazonqdeveloperstreamingservice.{region}.c2s.ic.gov", - "tags": [] - }, - { - "hostname": "amazonqdeveloperstreamingservice-fips.{region}.c2s.ic.gov", - "tags": [ - "fips" - ] - } - ], - }, - "aws-iso-b": { - regions: [ - "us-isob-east-1", - ], - regionRegex: "^us\\-isob\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazonqdeveloperstreamingservice.{region}.sc2s.sgov.gov", - "tags": [] - }, - { - "hostname": "amazonqdeveloperstreamingservice-fips.{region}.sc2s.sgov.gov", - "tags": [ - "fips" - ] - } - ], - }, - "aws-iso-e": { - regions: [ - "eu-isoe-west-1", - ], - regionRegex: "^eu\\-isoe\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazonqdeveloperstreamingservice.{region}.cloud.adc-e.uk", - "tags": [] - }, - { - "hostname": "amazonqdeveloperstreamingservice-fips.{region}.cloud.adc-e.uk", - "tags": [ - "fips" - ] - } - ], - }, - "aws-iso-f": { - regions: [], - regionRegex: "^us\\-isof\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazonqdeveloperstreamingservice.{region}.csp.hci.ic.gov", - "tags": [] - }, - { - "hostname": "amazonqdeveloperstreamingservice-fips.{region}.csp.hci.ic.gov", - "tags": [ - "fips" - ] - } - ], - }, - "aws-us-gov": { - regions: [ - "us-gov-east-1", - "us-gov-west-1", - ], - regionRegex: "^us\\-gov\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazonqdeveloperstreamingservice.{region}.amazonaws.com", - "tags": [] - }, - { - "hostname": "amazonqdeveloperstreamingservice-fips.{region}.amazonaws.com", - "tags": [ - "fips" - ] - }, - { - "hostname": "amazonqdeveloperstreamingservice-fips.{region}.api.aws", - "tags": [ - "dualstack", - "fips" - ] - }, - { - "hostname": "amazonqdeveloperstreamingservice.{region}.api.aws", - "tags": [ - "dualstack" - ] - } - ], - }, -}; -const defaultRegionInfoProvider = async (region, options) => (0, config_resolver_1.getRegionInfo)(region, { - ...options, - signingService: "q", - regionHash, - partitionHash, -}); -exports.defaultRegionInfoProvider = defaultRegionInfoProvider; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/extensionConfiguration.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/extensionConfiguration.js deleted file mode 100644 index c8ad2e549bd..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/extensionConfiguration.js +++ /dev/null @@ -1,2 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/index.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/index.js deleted file mode 100644 index 3f9f712f666..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/index.js +++ /dev/null @@ -1,10 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.QDeveloperStreamingServiceException = void 0; -const tslib_1 = require("tslib"); -tslib_1.__exportStar(require("./QDeveloperStreamingClient"), exports); -tslib_1.__exportStar(require("./QDeveloperStreaming"), exports); -tslib_1.__exportStar(require("./commands"), exports); -tslib_1.__exportStar(require("./models"), exports); -var QDeveloperStreamingServiceException_1 = require("./models/QDeveloperStreamingServiceException"); -Object.defineProperty(exports, "QDeveloperStreamingServiceException", { enumerable: true, get: function () { return QDeveloperStreamingServiceException_1.QDeveloperStreamingServiceException; } }); diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/QDeveloperStreamingServiceException.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/QDeveloperStreamingServiceException.js deleted file mode 100644 index 8a65cb391b7..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/QDeveloperStreamingServiceException.js +++ /dev/null @@ -1,12 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.QDeveloperStreamingServiceException = exports.__ServiceException = void 0; -const smithy_client_1 = require("@smithy/smithy-client"); -Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } }); -class QDeveloperStreamingServiceException extends smithy_client_1.ServiceException { - constructor(options) { - super(options); - Object.setPrototypeOf(this, QDeveloperStreamingServiceException.prototype); - } -} -exports.QDeveloperStreamingServiceException = QDeveloperStreamingServiceException; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/index.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/index.js deleted file mode 100644 index 8ced418bca0..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const tslib_1 = require("tslib"); -tslib_1.__exportStar(require("./models_0"), exports); diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/models_0.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/models_0.js deleted file mode 100644 index fb541400f60..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/models/models_0.js +++ /dev/null @@ -1,858 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.ProgressComponentFilterSensitiveLog = exports.StepFilterSensitiveLog = exports.StepState = exports.StepComponentFilterSensitiveLog = exports.InfrastructureUpdateFilterSensitiveLog = exports.InfrastructureUpdateTransitionFilterSensitiveLog = exports.AlertFilterSensitiveLog = exports.AlertType = exports.AlertComponentFilterSensitiveLog = exports.TextFilterSensitiveLog = exports.IntentsEventFilterSensitiveLog = exports.IntentDataType = exports.IntentType = exports.FollowupPromptEventFilterSensitiveLog = exports.CodeEventFilterSensitiveLog = exports.ChatMessageFilterSensitiveLog = exports.ChatMessage = exports.UserInputMessageFilterSensitiveLog = exports.UserInputMessageContextFilterSensitiveLog = exports.ShellStateFilterSensitiveLog = exports.ShellHistoryEntryFilterSensitiveLog = exports.GitStateFilterSensitiveLog = exports.EnvStateFilterSensitiveLog = exports.EnvironmentVariableFilterSensitiveLog = exports.EditorStateFilterSensitiveLog = exports.RelevantTextDocumentFilterSensitiveLog = exports.CursorState = exports.DiagnosticFilterSensitiveLog = exports.Diagnostic = exports.TextDocumentDiagnosticFilterSensitiveLog = exports.TextDocumentFilterSensitiveLog = exports.SymbolType = exports.RuntimeDiagnosticFilterSensitiveLog = exports.DiagnosticSeverity = exports.ConsoleStateFilterSensitiveLog = exports.ConflictException = exports.ConflictExceptionReason = exports.AssistantResponseMessageFilterSensitiveLog = exports.SupplementaryWebLinkFilterSensitiveLog = exports.FollowupPromptFilterSensitiveLog = exports.UserIntent = exports.AssistantResponseEventFilterSensitiveLog = exports.AppStudioStateFilterSensitiveLog = exports.ValidationException = exports.ValidationExceptionReason = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.AccessDeniedException = exports.AccessDeniedExceptionReason = void 0; -exports.GenerateCodeFromCommandsResponseFilterSensitiveLog = exports.GenerateCodeFromCommandsResponseStreamFilterSensitiveLog = exports.GenerateCodeFromCommandsResponseStream = exports.GenerateCodeFromCommandsRequestFilterSensitiveLog = exports.SendMessageResponseFilterSensitiveLog = exports.SendMessageRequestFilterSensitiveLog = exports.Origin = exports.ServiceQuotaExceededException = exports.OutputFormat = exports.DryRunOperationException = exports.ConversationStateFilterSensitiveLog = exports.CommandInputFilterSensitiveLog = exports.CommandInput = exports.ChatTriggerType = exports.ChatResponseStreamFilterSensitiveLog = exports.ChatResponseStream = exports.SupplementaryWebLinksEventFilterSensitiveLog = exports.InvalidStateReason = exports.InteractionComponentsEventFilterSensitiveLog = exports.InteractionComponentEntryFilterSensitiveLog = exports.InteractionComponentFilterSensitiveLog = exports.TaskDetailsFilterSensitiveLog = exports.TaskOverviewFilterSensitiveLog = exports.TaskComponentFilterSensitiveLog = exports.TaskActionFilterSensitiveLog = exports.TaskActionNoteFilterSensitiveLog = exports.TaskActionNoteType = exports.TaskActionConfirmationFilterSensitiveLog = exports.SectionFilterSensitiveLog = exports.SectionComponentFilterSensitiveLog = exports.SectionComponent = exports.ResourceListFilterSensitiveLog = exports.ActionFilterSensitiveLog = exports.Action = exports.WebLinkFilterSensitiveLog = exports.ModuleLinkFilterSensitiveLog = exports.ModuleLink = exports.CloudWatchTroubleshootingLinkFilterSensitiveLog = exports.ResourceFilterSensitiveLog = exports.ProgressFilterSensitiveLog = void 0; -const QDeveloperStreamingServiceException_1 = require("./QDeveloperStreamingServiceException"); -const smithy_client_1 = require("@smithy/smithy-client"); -exports.AccessDeniedExceptionReason = { - UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS: "UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS", -}; -class AccessDeniedException extends QDeveloperStreamingServiceException_1.QDeveloperStreamingServiceException { - constructor(opts) { - super({ - name: "AccessDeniedException", - $fault: "client", - ...opts - }); - this.name = "AccessDeniedException"; - this.$fault = "client"; - Object.setPrototypeOf(this, AccessDeniedException.prototype); - this.reason = opts.reason; - } -} -exports.AccessDeniedException = AccessDeniedException; -class InternalServerException extends QDeveloperStreamingServiceException_1.QDeveloperStreamingServiceException { - constructor(opts) { - super({ - name: "InternalServerException", - $fault: "server", - ...opts - }); - this.name = "InternalServerException"; - this.$fault = "server"; - this.$retryable = {}; - Object.setPrototypeOf(this, InternalServerException.prototype); - } -} -exports.InternalServerException = InternalServerException; -class ResourceNotFoundException extends QDeveloperStreamingServiceException_1.QDeveloperStreamingServiceException { - constructor(opts) { - super({ - name: "ResourceNotFoundException", - $fault: "client", - ...opts - }); - this.name = "ResourceNotFoundException"; - this.$fault = "client"; - Object.setPrototypeOf(this, ResourceNotFoundException.prototype); - } -} -exports.ResourceNotFoundException = ResourceNotFoundException; -class ThrottlingException extends QDeveloperStreamingServiceException_1.QDeveloperStreamingServiceException { - constructor(opts) { - super({ - name: "ThrottlingException", - $fault: "client", - ...opts - }); - this.name = "ThrottlingException"; - this.$fault = "client"; - this.$retryable = { - throttling: true, - }; - Object.setPrototypeOf(this, ThrottlingException.prototype); - } -} -exports.ThrottlingException = ThrottlingException; -exports.ValidationExceptionReason = { - CONTENT_LENGTH_EXCEEDS_THRESHOLD: "CONTENT_LENGTH_EXCEEDS_THRESHOLD", - INVALID_CONVERSATION_ID: "INVALID_CONVERSATION_ID", - INVALID_KMS_GRANT: "INVALID_KMS_GRANT", -}; -class ValidationException extends QDeveloperStreamingServiceException_1.QDeveloperStreamingServiceException { - constructor(opts) { - super({ - name: "ValidationException", - $fault: "client", - ...opts - }); - this.name = "ValidationException"; - this.$fault = "client"; - Object.setPrototypeOf(this, ValidationException.prototype); - this.reason = opts.reason; - } -} -exports.ValidationException = ValidationException; -const AppStudioStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.namespace && { namespace: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.propertyName && { propertyName: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.propertyValue && { propertyValue: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.propertyContext && { propertyContext: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.AppStudioStateFilterSensitiveLog = AppStudioStateFilterSensitiveLog; -const AssistantResponseEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.AssistantResponseEventFilterSensitiveLog = AssistantResponseEventFilterSensitiveLog; -exports.UserIntent = { - APPLY_COMMON_BEST_PRACTICES: "APPLY_COMMON_BEST_PRACTICES", - CITE_SOURCES: "CITE_SOURCES", - CODE_GENERATION: "CODE_GENERATION", - EXPLAIN_CODE_SELECTION: "EXPLAIN_CODE_SELECTION", - EXPLAIN_LINE_BY_LINE: "EXPLAIN_LINE_BY_LINE", - GENERATE_CLOUDFORMATION_TEMPLATE: "GENERATE_CLOUDFORMATION_TEMPLATE", - GENERATE_UNIT_TESTS: "GENERATE_UNIT_TESTS", - IMPROVE_CODE: "IMPROVE_CODE", - SHOW_EXAMPLES: "SHOW_EXAMPLES", - SUGGEST_ALTERNATE_IMPLEMENTATION: "SUGGEST_ALTERNATE_IMPLEMENTATION", -}; -const FollowupPromptFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.FollowupPromptFilterSensitiveLog = FollowupPromptFilterSensitiveLog; -const SupplementaryWebLinkFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.url && { url: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.title && { title: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.snippet && { snippet: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.SupplementaryWebLinkFilterSensitiveLog = SupplementaryWebLinkFilterSensitiveLog; -const AssistantResponseMessageFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.supplementaryWebLinks && { supplementaryWebLinks: obj.supplementaryWebLinks.map(item => (0, exports.SupplementaryWebLinkFilterSensitiveLog)(item)) - }), - ...(obj.followupPrompt && { followupPrompt: (0, exports.FollowupPromptFilterSensitiveLog)(obj.followupPrompt) - }), -}); -exports.AssistantResponseMessageFilterSensitiveLog = AssistantResponseMessageFilterSensitiveLog; -exports.ConflictExceptionReason = { - CUSTOMER_KMS_KEY_DISABLED: "CUSTOMER_KMS_KEY_DISABLED", - CUSTOMER_KMS_KEY_INVALID_KEY_POLICY: "CUSTOMER_KMS_KEY_INVALID_KEY_POLICY", - MISMATCHED_KMS_KEY: "MISMATCHED_KMS_KEY", -}; -class ConflictException extends QDeveloperStreamingServiceException_1.QDeveloperStreamingServiceException { - constructor(opts) { - super({ - name: "ConflictException", - $fault: "client", - ...opts - }); - this.name = "ConflictException"; - this.$fault = "client"; - Object.setPrototypeOf(this, ConflictException.prototype); - this.reason = opts.reason; - } -} -exports.ConflictException = ConflictException; -const ConsoleStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.consoleUrl && { consoleUrl: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.taskName && { taskName: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.ConsoleStateFilterSensitiveLog = ConsoleStateFilterSensitiveLog; -exports.DiagnosticSeverity = { - ERROR: "ERROR", - HINT: "HINT", - INFORMATION: "INFORMATION", - WARNING: "WARNING", -}; -const RuntimeDiagnosticFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.source && { source: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.message && { message: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.RuntimeDiagnosticFilterSensitiveLog = RuntimeDiagnosticFilterSensitiveLog; -exports.SymbolType = { - DECLARATION: "DECLARATION", - USAGE: "USAGE", -}; -const TextDocumentFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.relativeFilePath && { relativeFilePath: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.text && { text: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.TextDocumentFilterSensitiveLog = TextDocumentFilterSensitiveLog; -const TextDocumentDiagnosticFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.document && { document: (0, exports.TextDocumentFilterSensitiveLog)(obj.document) - }), - ...(obj.source && { source: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.message && { message: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.TextDocumentDiagnosticFilterSensitiveLog = TextDocumentDiagnosticFilterSensitiveLog; -var Diagnostic; -(function (Diagnostic) { - Diagnostic.visit = (value, visitor) => { - if (value.textDocumentDiagnostic !== undefined) - return visitor.textDocumentDiagnostic(value.textDocumentDiagnostic); - if (value.runtimeDiagnostic !== undefined) - return visitor.runtimeDiagnostic(value.runtimeDiagnostic); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(Diagnostic = exports.Diagnostic || (exports.Diagnostic = {})); -const DiagnosticFilterSensitiveLog = (obj) => { - if (obj.textDocumentDiagnostic !== undefined) - return { textDocumentDiagnostic: (0, exports.TextDocumentDiagnosticFilterSensitiveLog)(obj.textDocumentDiagnostic) - }; - if (obj.runtimeDiagnostic !== undefined) - return { runtimeDiagnostic: (0, exports.RuntimeDiagnosticFilterSensitiveLog)(obj.runtimeDiagnostic) - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -exports.DiagnosticFilterSensitiveLog = DiagnosticFilterSensitiveLog; -var CursorState; -(function (CursorState) { - CursorState.visit = (value, visitor) => { - if (value.position !== undefined) - return visitor.position(value.position); - if (value.range !== undefined) - return visitor.range(value.range); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(CursorState = exports.CursorState || (exports.CursorState = {})); -const RelevantTextDocumentFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.relativeFilePath && { relativeFilePath: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.text && { text: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.RelevantTextDocumentFilterSensitiveLog = RelevantTextDocumentFilterSensitiveLog; -const EditorStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.document && { document: (0, exports.TextDocumentFilterSensitiveLog)(obj.document) - }), - ...(obj.cursorState && { cursorState: obj.cursorState - }), - ...(obj.relevantDocuments && { relevantDocuments: obj.relevantDocuments.map(item => (0, exports.RelevantTextDocumentFilterSensitiveLog)(item)) - }), -}); -exports.EditorStateFilterSensitiveLog = EditorStateFilterSensitiveLog; -const EnvironmentVariableFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.key && { key: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.value && { value: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.EnvironmentVariableFilterSensitiveLog = EnvironmentVariableFilterSensitiveLog; -const EnvStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.currentWorkingDirectory && { currentWorkingDirectory: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.environmentVariables && { environmentVariables: obj.environmentVariables.map(item => (0, exports.EnvironmentVariableFilterSensitiveLog)(item)) - }), -}); -exports.EnvStateFilterSensitiveLog = EnvStateFilterSensitiveLog; -const GitStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.status && { status: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.GitStateFilterSensitiveLog = GitStateFilterSensitiveLog; -const ShellHistoryEntryFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.command && { command: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.directory && { directory: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.stdout && { stdout: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.stderr && { stderr: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.ShellHistoryEntryFilterSensitiveLog = ShellHistoryEntryFilterSensitiveLog; -const ShellStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.shellHistory && { shellHistory: obj.shellHistory.map(item => (0, exports.ShellHistoryEntryFilterSensitiveLog)(item)) - }), -}); -exports.ShellStateFilterSensitiveLog = ShellStateFilterSensitiveLog; -const UserInputMessageContextFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.editorState && { editorState: (0, exports.EditorStateFilterSensitiveLog)(obj.editorState) - }), - ...(obj.shellState && { shellState: (0, exports.ShellStateFilterSensitiveLog)(obj.shellState) - }), - ...(obj.gitState && { gitState: (0, exports.GitStateFilterSensitiveLog)(obj.gitState) - }), - ...(obj.envState && { envState: (0, exports.EnvStateFilterSensitiveLog)(obj.envState) - }), - ...(obj.appStudioContext && { appStudioContext: (0, exports.AppStudioStateFilterSensitiveLog)(obj.appStudioContext) - }), - ...(obj.diagnostic && { diagnostic: (0, exports.DiagnosticFilterSensitiveLog)(obj.diagnostic) - }), - ...(obj.consoleState && { consoleState: (0, exports.ConsoleStateFilterSensitiveLog)(obj.consoleState) - }), -}); -exports.UserInputMessageContextFilterSensitiveLog = UserInputMessageContextFilterSensitiveLog; -const UserInputMessageFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.userInputMessageContext && { userInputMessageContext: (0, exports.UserInputMessageContextFilterSensitiveLog)(obj.userInputMessageContext) - }), -}); -exports.UserInputMessageFilterSensitiveLog = UserInputMessageFilterSensitiveLog; -var ChatMessage; -(function (ChatMessage) { - ChatMessage.visit = (value, visitor) => { - if (value.userInputMessage !== undefined) - return visitor.userInputMessage(value.userInputMessage); - if (value.assistantResponseMessage !== undefined) - return visitor.assistantResponseMessage(value.assistantResponseMessage); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(ChatMessage = exports.ChatMessage || (exports.ChatMessage = {})); -const ChatMessageFilterSensitiveLog = (obj) => { - if (obj.userInputMessage !== undefined) - return { userInputMessage: (0, exports.UserInputMessageFilterSensitiveLog)(obj.userInputMessage) - }; - if (obj.assistantResponseMessage !== undefined) - return { assistantResponseMessage: (0, exports.AssistantResponseMessageFilterSensitiveLog)(obj.assistantResponseMessage) - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -exports.ChatMessageFilterSensitiveLog = ChatMessageFilterSensitiveLog; -const CodeEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.CodeEventFilterSensitiveLog = CodeEventFilterSensitiveLog; -const FollowupPromptEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.followupPrompt && { followupPrompt: (0, exports.FollowupPromptFilterSensitiveLog)(obj.followupPrompt) - }), -}); -exports.FollowupPromptEventFilterSensitiveLog = FollowupPromptEventFilterSensitiveLog; -exports.IntentType = { - GLUE_SENSEI: "GLUE_SENSEI", - RESOURCE_DATA: "RESOURCE_DATA", - SUPPORT: "SUPPORT", -}; -var IntentDataType; -(function (IntentDataType) { - IntentDataType.visit = (value, visitor) => { - if (value.string !== undefined) - return visitor.string(value.string); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(IntentDataType = exports.IntentDataType || (exports.IntentDataType = {})); -const IntentsEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.intents && { intents: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.IntentsEventFilterSensitiveLog = IntentsEventFilterSensitiveLog; -const TextFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.TextFilterSensitiveLog = TextFilterSensitiveLog; -const AlertComponentFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.text && { text: (0, exports.TextFilterSensitiveLog)(obj.text) - }), -}); -exports.AlertComponentFilterSensitiveLog = AlertComponentFilterSensitiveLog; -exports.AlertType = { - ERROR: "ERROR", - INFO: "INFO", - WARNING: "WARNING", -}; -const AlertFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: obj.content.map(item => (0, exports.AlertComponentFilterSensitiveLog)(item)) - }), -}); -exports.AlertFilterSensitiveLog = AlertFilterSensitiveLog; -const InfrastructureUpdateTransitionFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.currentState && { currentState: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.nextState && { nextState: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.InfrastructureUpdateTransitionFilterSensitiveLog = InfrastructureUpdateTransitionFilterSensitiveLog; -const InfrastructureUpdateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.transition && { transition: (0, exports.InfrastructureUpdateTransitionFilterSensitiveLog)(obj.transition) - }), -}); -exports.InfrastructureUpdateFilterSensitiveLog = InfrastructureUpdateFilterSensitiveLog; -const StepComponentFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.text && { text: (0, exports.TextFilterSensitiveLog)(obj.text) - }), -}); -exports.StepComponentFilterSensitiveLog = StepComponentFilterSensitiveLog; -exports.StepState = { - FAILED: "FAILED", - IN_PROGRESS: "IN_PROGRESS", - LOADING: "LOADING", - PAUSED: "PAUSED", - PENDING: "PENDING", - STOPPED: "STOPPED", - SUCCEEDED: "SUCCEEDED", -}; -const StepFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.label && { label: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.content && { content: obj.content.map(item => (0, exports.StepComponentFilterSensitiveLog)(item)) - }), -}); -exports.StepFilterSensitiveLog = StepFilterSensitiveLog; -const ProgressComponentFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.step && { step: (0, exports.StepFilterSensitiveLog)(obj.step) - }), -}); -exports.ProgressComponentFilterSensitiveLog = ProgressComponentFilterSensitiveLog; -const ProgressFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: obj.content.map(item => (0, exports.ProgressComponentFilterSensitiveLog)(item)) - }), -}); -exports.ProgressFilterSensitiveLog = ProgressFilterSensitiveLog; -const ResourceFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.title && { title: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.link && { link: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.type && { type: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.ARN && { ARN: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.resourceJsonString && { resourceJsonString: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.ResourceFilterSensitiveLog = ResourceFilterSensitiveLog; -const CloudWatchTroubleshootingLinkFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.label && { label: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.investigationPayload && { investigationPayload: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.defaultText && { defaultText: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.CloudWatchTroubleshootingLinkFilterSensitiveLog = CloudWatchTroubleshootingLinkFilterSensitiveLog; -var ModuleLink; -(function (ModuleLink) { - ModuleLink.visit = (value, visitor) => { - if (value.cloudWatchTroubleshootingLink !== undefined) - return visitor.cloudWatchTroubleshootingLink(value.cloudWatchTroubleshootingLink); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(ModuleLink = exports.ModuleLink || (exports.ModuleLink = {})); -const ModuleLinkFilterSensitiveLog = (obj) => { - if (obj.cloudWatchTroubleshootingLink !== undefined) - return { cloudWatchTroubleshootingLink: (0, exports.CloudWatchTroubleshootingLinkFilterSensitiveLog)(obj.cloudWatchTroubleshootingLink) - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -exports.ModuleLinkFilterSensitiveLog = ModuleLinkFilterSensitiveLog; -const WebLinkFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.label && { label: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.url && { url: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.WebLinkFilterSensitiveLog = WebLinkFilterSensitiveLog; -var Action; -(function (Action) { - Action.visit = (value, visitor) => { - if (value.webLink !== undefined) - return visitor.webLink(value.webLink); - if (value.moduleLink !== undefined) - return visitor.moduleLink(value.moduleLink); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(Action = exports.Action || (exports.Action = {})); -const ActionFilterSensitiveLog = (obj) => { - if (obj.webLink !== undefined) - return { webLink: (0, exports.WebLinkFilterSensitiveLog)(obj.webLink) - }; - if (obj.moduleLink !== undefined) - return { moduleLink: (0, exports.ModuleLinkFilterSensitiveLog)(obj.moduleLink) - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -exports.ActionFilterSensitiveLog = ActionFilterSensitiveLog; -const ResourceListFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.action && { action: (0, exports.ActionFilterSensitiveLog)(obj.action) - }), - ...(obj.items && { items: obj.items.map(item => (0, exports.ResourceFilterSensitiveLog)(item)) - }), -}); -exports.ResourceListFilterSensitiveLog = ResourceListFilterSensitiveLog; -var SectionComponent; -(function (SectionComponent) { - SectionComponent.visit = (value, visitor) => { - if (value.text !== undefined) - return visitor.text(value.text); - if (value.alert !== undefined) - return visitor.alert(value.alert); - if (value.resource !== undefined) - return visitor.resource(value.resource); - if (value.resourceList !== undefined) - return visitor.resourceList(value.resourceList); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(SectionComponent = exports.SectionComponent || (exports.SectionComponent = {})); -const SectionComponentFilterSensitiveLog = (obj) => { - if (obj.text !== undefined) - return { text: (0, exports.TextFilterSensitiveLog)(obj.text) - }; - if (obj.alert !== undefined) - return { alert: (0, exports.AlertFilterSensitiveLog)(obj.alert) - }; - if (obj.resource !== undefined) - return { resource: (0, exports.ResourceFilterSensitiveLog)(obj.resource) - }; - if (obj.resourceList !== undefined) - return { resourceList: (0, exports.ResourceListFilterSensitiveLog)(obj.resourceList) - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -exports.SectionComponentFilterSensitiveLog = SectionComponentFilterSensitiveLog; -const SectionFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.title && { title: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.content && { content: obj.content.map(item => (0, exports.SectionComponentFilterSensitiveLog)(item)) - }), -}); -exports.SectionFilterSensitiveLog = SectionFilterSensitiveLog; -const TaskActionConfirmationFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.TaskActionConfirmationFilterSensitiveLog = TaskActionConfirmationFilterSensitiveLog; -exports.TaskActionNoteType = { - INFO: "INFO", - WARNING: "WARNING", -}; -const TaskActionNoteFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.TaskActionNoteFilterSensitiveLog = TaskActionNoteFilterSensitiveLog; -const TaskActionFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.label && { label: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.note && { note: (0, exports.TaskActionNoteFilterSensitiveLog)(obj.note) - }), - ...(obj.payload && { payload: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.confirmation && { confirmation: (0, exports.TaskActionConfirmationFilterSensitiveLog)(obj.confirmation) - }), -}); -exports.TaskActionFilterSensitiveLog = TaskActionFilterSensitiveLog; -const TaskComponentFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.text && { text: (0, exports.TextFilterSensitiveLog)(obj.text) - }), - ...(obj.infrastructureUpdate && { infrastructureUpdate: (0, exports.InfrastructureUpdateFilterSensitiveLog)(obj.infrastructureUpdate) - }), - ...(obj.alert && { alert: (0, exports.AlertFilterSensitiveLog)(obj.alert) - }), - ...(obj.progress && { progress: (0, exports.ProgressFilterSensitiveLog)(obj.progress) - }), -}); -exports.TaskComponentFilterSensitiveLog = TaskComponentFilterSensitiveLog; -const TaskOverviewFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.label && { label: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.description && { description: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.TaskOverviewFilterSensitiveLog = TaskOverviewFilterSensitiveLog; -const TaskDetailsFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.overview && { overview: (0, exports.TaskOverviewFilterSensitiveLog)(obj.overview) - }), - ...(obj.content && { content: obj.content.map(item => (0, exports.TaskComponentFilterSensitiveLog)(item)) - }), - ...(obj.actions && { actions: obj.actions.map(item => (0, exports.TaskActionFilterSensitiveLog)(item)) - }), -}); -exports.TaskDetailsFilterSensitiveLog = TaskDetailsFilterSensitiveLog; -const InteractionComponentFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.text && { text: (0, exports.TextFilterSensitiveLog)(obj.text) - }), - ...(obj.alert && { alert: (0, exports.AlertFilterSensitiveLog)(obj.alert) - }), - ...(obj.infrastructureUpdate && { infrastructureUpdate: (0, exports.InfrastructureUpdateFilterSensitiveLog)(obj.infrastructureUpdate) - }), - ...(obj.progress && { progress: (0, exports.ProgressFilterSensitiveLog)(obj.progress) - }), - ...(obj.step && { step: (0, exports.StepFilterSensitiveLog)(obj.step) - }), - ...(obj.taskDetails && { taskDetails: (0, exports.TaskDetailsFilterSensitiveLog)(obj.taskDetails) - }), - ...(obj.section && { section: (0, exports.SectionFilterSensitiveLog)(obj.section) - }), - ...(obj.resource && { resource: (0, exports.ResourceFilterSensitiveLog)(obj.resource) - }), - ...(obj.resourceList && { resourceList: (0, exports.ResourceListFilterSensitiveLog)(obj.resourceList) - }), -}); -exports.InteractionComponentFilterSensitiveLog = InteractionComponentFilterSensitiveLog; -const InteractionComponentEntryFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.interactionComponent && { interactionComponent: (0, exports.InteractionComponentFilterSensitiveLog)(obj.interactionComponent) - }), -}); -exports.InteractionComponentEntryFilterSensitiveLog = InteractionComponentEntryFilterSensitiveLog; -const InteractionComponentsEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.interactionComponentEntries && { interactionComponentEntries: obj.interactionComponentEntries.map(item => (0, exports.InteractionComponentEntryFilterSensitiveLog)(item)) - }), -}); -exports.InteractionComponentsEventFilterSensitiveLog = InteractionComponentsEventFilterSensitiveLog; -exports.InvalidStateReason = { - INVALID_TASK_ASSIST_PLAN: "INVALID_TASK_ASSIST_PLAN", -}; -const SupplementaryWebLinksEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.supplementaryWebLinks && { supplementaryWebLinks: obj.supplementaryWebLinks.map(item => (0, exports.SupplementaryWebLinkFilterSensitiveLog)(item)) - }), -}); -exports.SupplementaryWebLinksEventFilterSensitiveLog = SupplementaryWebLinksEventFilterSensitiveLog; -var ChatResponseStream; -(function (ChatResponseStream) { - ChatResponseStream.visit = (value, visitor) => { - if (value.messageMetadataEvent !== undefined) - return visitor.messageMetadataEvent(value.messageMetadataEvent); - if (value.assistantResponseEvent !== undefined) - return visitor.assistantResponseEvent(value.assistantResponseEvent); - if (value.dryRunSucceedEvent !== undefined) - return visitor.dryRunSucceedEvent(value.dryRunSucceedEvent); - if (value.codeReferenceEvent !== undefined) - return visitor.codeReferenceEvent(value.codeReferenceEvent); - if (value.supplementaryWebLinksEvent !== undefined) - return visitor.supplementaryWebLinksEvent(value.supplementaryWebLinksEvent); - if (value.followupPromptEvent !== undefined) - return visitor.followupPromptEvent(value.followupPromptEvent); - if (value.codeEvent !== undefined) - return visitor.codeEvent(value.codeEvent); - if (value.intentsEvent !== undefined) - return visitor.intentsEvent(value.intentsEvent); - if (value.interactionComponentsEvent !== undefined) - return visitor.interactionComponentsEvent(value.interactionComponentsEvent); - if (value.invalidStateEvent !== undefined) - return visitor.invalidStateEvent(value.invalidStateEvent); - if (value.error !== undefined) - return visitor.error(value.error); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(ChatResponseStream = exports.ChatResponseStream || (exports.ChatResponseStream = {})); -const ChatResponseStreamFilterSensitiveLog = (obj) => { - if (obj.messageMetadataEvent !== undefined) - return { messageMetadataEvent: obj.messageMetadataEvent - }; - if (obj.assistantResponseEvent !== undefined) - return { assistantResponseEvent: (0, exports.AssistantResponseEventFilterSensitiveLog)(obj.assistantResponseEvent) - }; - if (obj.dryRunSucceedEvent !== undefined) - return { dryRunSucceedEvent: obj.dryRunSucceedEvent - }; - if (obj.codeReferenceEvent !== undefined) - return { codeReferenceEvent: obj.codeReferenceEvent - }; - if (obj.supplementaryWebLinksEvent !== undefined) - return { supplementaryWebLinksEvent: (0, exports.SupplementaryWebLinksEventFilterSensitiveLog)(obj.supplementaryWebLinksEvent) - }; - if (obj.followupPromptEvent !== undefined) - return { followupPromptEvent: (0, exports.FollowupPromptEventFilterSensitiveLog)(obj.followupPromptEvent) - }; - if (obj.codeEvent !== undefined) - return { codeEvent: (0, exports.CodeEventFilterSensitiveLog)(obj.codeEvent) - }; - if (obj.intentsEvent !== undefined) - return { intentsEvent: (0, exports.IntentsEventFilterSensitiveLog)(obj.intentsEvent) - }; - if (obj.interactionComponentsEvent !== undefined) - return { interactionComponentsEvent: (0, exports.InteractionComponentsEventFilterSensitiveLog)(obj.interactionComponentsEvent) - }; - if (obj.invalidStateEvent !== undefined) - return { invalidStateEvent: obj.invalidStateEvent - }; - if (obj.error !== undefined) - return { error: obj.error - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -exports.ChatResponseStreamFilterSensitiveLog = ChatResponseStreamFilterSensitiveLog; -exports.ChatTriggerType = { - DIAGNOSTIC: "DIAGNOSTIC", - INLINE_CHAT: "INLINE_CHAT", - MANUAL: "MANUAL", -}; -var CommandInput; -(function (CommandInput) { - CommandInput.visit = (value, visitor) => { - if (value.commandsList !== undefined) - return visitor.commandsList(value.commandsList); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(CommandInput = exports.CommandInput || (exports.CommandInput = {})); -const CommandInputFilterSensitiveLog = (obj) => { - if (obj.commandsList !== undefined) - return { commandsList: smithy_client_1.SENSITIVE_STRING - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -exports.CommandInputFilterSensitiveLog = CommandInputFilterSensitiveLog; -const ConversationStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.history && { history: obj.history.map(item => (0, exports.ChatMessageFilterSensitiveLog)(item)) - }), - ...(obj.currentMessage && { currentMessage: (0, exports.ChatMessageFilterSensitiveLog)(obj.currentMessage) - }), -}); -exports.ConversationStateFilterSensitiveLog = ConversationStateFilterSensitiveLog; -class DryRunOperationException extends QDeveloperStreamingServiceException_1.QDeveloperStreamingServiceException { - constructor(opts) { - super({ - name: "DryRunOperationException", - $fault: "client", - ...opts - }); - this.name = "DryRunOperationException"; - this.$fault = "client"; - Object.setPrototypeOf(this, DryRunOperationException.prototype); - this.responseCode = opts.responseCode; - } -} -exports.DryRunOperationException = DryRunOperationException; -exports.OutputFormat = { - JAVA_CDK: "java/cdk", - JSON_CFN: "json/cfn", - PYTHON_CDK: "python/cdk", - TYPESCRIPT_CDK: "typescript/cdk", - YAML_CFN: "yaml/cfn", -}; -class ServiceQuotaExceededException extends QDeveloperStreamingServiceException_1.QDeveloperStreamingServiceException { - constructor(opts) { - super({ - name: "ServiceQuotaExceededException", - $fault: "client", - ...opts - }); - this.name = "ServiceQuotaExceededException"; - this.$fault = "client"; - Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype); - } -} -exports.ServiceQuotaExceededException = ServiceQuotaExceededException; -exports.Origin = { - CHATBOT: "CHATBOT", - CONSOLE: "CONSOLE", - DOCUMENTATION: "DOCUMENTATION", - IDE: "IDE", - MARKETING: "MARKETING", - MD: "MD", - MOBILE: "MOBILE", - SERVICE_INTERNAL: "SERVICE_INTERNAL", - UNIFIED_SEARCH: "UNIFIED_SEARCH", - UNKNOWN: "UNKNOWN", -}; -const SendMessageRequestFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.conversationState && { conversationState: (0, exports.ConversationStateFilterSensitiveLog)(obj.conversationState) - }), -}); -exports.SendMessageRequestFilterSensitiveLog = SendMessageRequestFilterSensitiveLog; -const SendMessageResponseFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.sendMessageResponse && { sendMessageResponse: 'STREAMING_CONTENT' - }), -}); -exports.SendMessageResponseFilterSensitiveLog = SendMessageResponseFilterSensitiveLog; -const GenerateCodeFromCommandsRequestFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.commands && { commands: (0, exports.CommandInputFilterSensitiveLog)(obj.commands) - }), -}); -exports.GenerateCodeFromCommandsRequestFilterSensitiveLog = GenerateCodeFromCommandsRequestFilterSensitiveLog; -var GenerateCodeFromCommandsResponseStream; -(function (GenerateCodeFromCommandsResponseStream) { - GenerateCodeFromCommandsResponseStream.visit = (value, visitor) => { - if (value.codeEvent !== undefined) - return visitor.codeEvent(value.codeEvent); - if (value.Error !== undefined) - return visitor.Error(value.Error); - if (value.QuotaLevelExceededError !== undefined) - return visitor.QuotaLevelExceededError(value.QuotaLevelExceededError); - if (value.ValidationError !== undefined) - return visitor.ValidationError(value.ValidationError); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(GenerateCodeFromCommandsResponseStream = exports.GenerateCodeFromCommandsResponseStream || (exports.GenerateCodeFromCommandsResponseStream = {})); -const GenerateCodeFromCommandsResponseStreamFilterSensitiveLog = (obj) => { - if (obj.codeEvent !== undefined) - return { codeEvent: (0, exports.CodeEventFilterSensitiveLog)(obj.codeEvent) - }; - if (obj.Error !== undefined) - return { Error: obj.Error - }; - if (obj.QuotaLevelExceededError !== undefined) - return { QuotaLevelExceededError: obj.QuotaLevelExceededError - }; - if (obj.ValidationError !== undefined) - return { ValidationError: obj.ValidationError - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -exports.GenerateCodeFromCommandsResponseStreamFilterSensitiveLog = GenerateCodeFromCommandsResponseStreamFilterSensitiveLog; -const GenerateCodeFromCommandsResponseFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.generatedCodeFromCommandsResponse && { generatedCodeFromCommandsResponse: 'STREAMING_CONTENT' - }), -}); -exports.GenerateCodeFromCommandsResponseFilterSensitiveLog = GenerateCodeFromCommandsResponseFilterSensitiveLog; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/protocols/Aws_json1_0.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/protocols/Aws_json1_0.js deleted file mode 100644 index 126d24c5530..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/protocols/Aws_json1_0.js +++ /dev/null @@ -1,397 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.de_SendMessageCommand = exports.de_GenerateCodeFromCommandsCommand = exports.se_SendMessageCommand = exports.se_GenerateCodeFromCommandsCommand = void 0; -const QDeveloperStreamingServiceException_1 = require("../models/QDeveloperStreamingServiceException"); -const models_0_1 = require("../models/models_0"); -const core_1 = require("@aws-sdk/core"); -const protocol_http_1 = require("@smithy/protocol-http"); -const smithy_client_1 = require("@smithy/smithy-client"); -const se_GenerateCodeFromCommandsCommand = async (input, context) => { - const headers = sharedHeaders("GenerateCodeFromCommands"); - let body; - body = JSON.stringify((0, smithy_client_1._json)(input)); - return buildHttpRpcRequest(context, headers, "/", undefined, body); -}; -exports.se_GenerateCodeFromCommandsCommand = se_GenerateCodeFromCommandsCommand; -const se_SendMessageCommand = async (input, context) => { - const headers = sharedHeaders("SendMessage"); - let body; - body = JSON.stringify(se_SendMessageRequest(input, context)); - return buildHttpRpcRequest(context, headers, "/", undefined, body); -}; -exports.se_SendMessageCommand = se_SendMessageCommand; -const de_GenerateCodeFromCommandsCommand = async (output, context) => { - if (output.statusCode >= 300) { - return de_CommandError(output, context); - } - const contents = { generatedCodeFromCommandsResponse: de_GenerateCodeFromCommandsResponseStream(output.body, context) }; - const response = { - $metadata: deserializeMetadata(output), - ...contents, - }; - return response; -}; -exports.de_GenerateCodeFromCommandsCommand = de_GenerateCodeFromCommandsCommand; -const de_SendMessageCommand = async (output, context) => { - if (output.statusCode >= 300) { - return de_CommandError(output, context); - } - const contents = { sendMessageResponse: de_ChatResponseStream(output.body, context) }; - const response = { - $metadata: deserializeMetadata(output), - ...contents, - }; - return response; -}; -exports.de_SendMessageCommand = de_SendMessageCommand; -const de_CommandError = async (output, context) => { - const parsedOutput = { - ...output, - body: await (0, core_1.parseJsonErrorBody)(output.body, context) - }; - const errorCode = (0, core_1.loadRestJsonErrorCode)(output, parsedOutput.body); - switch (errorCode) { - case "AccessDeniedException": - case "com.amazon.aws.codewhisperer#AccessDeniedException": - throw await de_AccessDeniedExceptionRes(parsedOutput, context); - case "InternalServerException": - case "com.amazon.aws.codewhisperer#InternalServerException": - throw await de_InternalServerExceptionRes(parsedOutput, context); - case "ThrottlingException": - case "com.amazon.aws.codewhisperer#ThrottlingException": - throw await de_ThrottlingExceptionRes(parsedOutput, context); - case "ValidationException": - case "com.amazon.aws.codewhisperer#ValidationException": - throw await de_ValidationExceptionRes(parsedOutput, context); - case "ConflictException": - case "com.amazon.aws.codewhisperer#ConflictException": - throw await de_ConflictExceptionRes(parsedOutput, context); - case "DryRunOperationException": - case "com.amazon.aws.codewhisperer#DryRunOperationException": - throw await de_DryRunOperationExceptionRes(parsedOutput, context); - case "ResourceNotFoundException": - case "com.amazon.aws.codewhisperer#ResourceNotFoundException": - throw await de_ResourceNotFoundExceptionRes(parsedOutput, context); - case "ServiceQuotaExceededException": - case "com.amazon.aws.codewhisperer#ServiceQuotaExceededException": - throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context); - default: - const parsedBody = parsedOutput.body; - return throwDefaultError({ - output, - parsedBody, - errorCode - }); - } -}; -const de_AccessDeniedExceptionRes = async (parsedOutput, context) => { - const body = parsedOutput.body; - const deserialized = (0, smithy_client_1._json)(body); - const exception = new models_0_1.AccessDeniedException({ - $metadata: deserializeMetadata(parsedOutput), - ...deserialized - }); - return (0, smithy_client_1.decorateServiceException)(exception, body); -}; -const de_ConflictExceptionRes = async (parsedOutput, context) => { - const body = parsedOutput.body; - const deserialized = (0, smithy_client_1._json)(body); - const exception = new models_0_1.ConflictException({ - $metadata: deserializeMetadata(parsedOutput), - ...deserialized - }); - return (0, smithy_client_1.decorateServiceException)(exception, body); -}; -const de_DryRunOperationExceptionRes = async (parsedOutput, context) => { - const body = parsedOutput.body; - const deserialized = (0, smithy_client_1._json)(body); - const exception = new models_0_1.DryRunOperationException({ - $metadata: deserializeMetadata(parsedOutput), - ...deserialized - }); - return (0, smithy_client_1.decorateServiceException)(exception, body); -}; -const de_InternalServerExceptionRes = async (parsedOutput, context) => { - const body = parsedOutput.body; - const deserialized = (0, smithy_client_1._json)(body); - const exception = new models_0_1.InternalServerException({ - $metadata: deserializeMetadata(parsedOutput), - ...deserialized - }); - return (0, smithy_client_1.decorateServiceException)(exception, body); -}; -const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => { - const body = parsedOutput.body; - const deserialized = (0, smithy_client_1._json)(body); - const exception = new models_0_1.ResourceNotFoundException({ - $metadata: deserializeMetadata(parsedOutput), - ...deserialized - }); - return (0, smithy_client_1.decorateServiceException)(exception, body); -}; -const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => { - const body = parsedOutput.body; - const deserialized = (0, smithy_client_1._json)(body); - const exception = new models_0_1.ServiceQuotaExceededException({ - $metadata: deserializeMetadata(parsedOutput), - ...deserialized - }); - return (0, smithy_client_1.decorateServiceException)(exception, body); -}; -const de_ThrottlingExceptionRes = async (parsedOutput, context) => { - const body = parsedOutput.body; - const deserialized = (0, smithy_client_1._json)(body); - const exception = new models_0_1.ThrottlingException({ - $metadata: deserializeMetadata(parsedOutput), - ...deserialized - }); - return (0, smithy_client_1.decorateServiceException)(exception, body); -}; -const de_ValidationExceptionRes = async (parsedOutput, context) => { - const body = parsedOutput.body; - const deserialized = (0, smithy_client_1._json)(body); - const exception = new models_0_1.ValidationException({ - $metadata: deserializeMetadata(parsedOutput), - ...deserialized - }); - return (0, smithy_client_1.decorateServiceException)(exception, body); -}; -const de_ChatResponseStream = (output, context) => { - return context.eventStreamMarshaller.deserialize(output, async (event) => { - if (event["messageMetadataEvent"] != null) { - return { - messageMetadataEvent: await de_MessageMetadataEvent_event(event["messageMetadataEvent"], context), - }; - } - if (event["assistantResponseEvent"] != null) { - return { - assistantResponseEvent: await de_AssistantResponseEvent_event(event["assistantResponseEvent"], context), - }; - } - if (event["dryRunSucceedEvent"] != null) { - return { - dryRunSucceedEvent: await de_DryRunSucceedEvent_event(event["dryRunSucceedEvent"], context), - }; - } - if (event["codeReferenceEvent"] != null) { - return { - codeReferenceEvent: await de_CodeReferenceEvent_event(event["codeReferenceEvent"], context), - }; - } - if (event["supplementaryWebLinksEvent"] != null) { - return { - supplementaryWebLinksEvent: await de_SupplementaryWebLinksEvent_event(event["supplementaryWebLinksEvent"], context), - }; - } - if (event["followupPromptEvent"] != null) { - return { - followupPromptEvent: await de_FollowupPromptEvent_event(event["followupPromptEvent"], context), - }; - } - if (event["codeEvent"] != null) { - return { - codeEvent: await de_CodeEvent_event(event["codeEvent"], context), - }; - } - if (event["intentsEvent"] != null) { - return { - intentsEvent: await de_IntentsEvent_event(event["intentsEvent"], context), - }; - } - if (event["interactionComponentsEvent"] != null) { - return { - interactionComponentsEvent: await de_InteractionComponentsEvent_event(event["interactionComponentsEvent"], context), - }; - } - if (event["invalidStateEvent"] != null) { - return { - invalidStateEvent: await de_InvalidStateEvent_event(event["invalidStateEvent"], context), - }; - } - if (event["error"] != null) { - return { - error: await de_InternalServerException_event(event["error"], context), - }; - } - return { $unknown: output }; - }); -}; -const de_GenerateCodeFromCommandsResponseStream = (output, context) => { - return context.eventStreamMarshaller.deserialize(output, async (event) => { - if (event["codeEvent"] != null) { - return { - codeEvent: await de_CodeEvent_event(event["codeEvent"], context), - }; - } - if (event["Error"] != null) { - return { - Error: await de_InternalServerException_event(event["Error"], context), - }; - } - if (event["QuotaLevelExceededError"] != null) { - return { - QuotaLevelExceededError: await de_ServiceQuotaExceededException_event(event["QuotaLevelExceededError"], context), - }; - } - if (event["ValidationError"] != null) { - return { - ValidationError: await de_ValidationException_event(event["ValidationError"], context), - }; - } - return { $unknown: output }; - }); -}; -const de_AssistantResponseEvent_event = async (output, context) => { - const contents = {}; - const data = await (0, core_1.parseJsonBody)(output.body, context); - Object.assign(contents, (0, smithy_client_1._json)(data)); - return contents; -}; -const de_CodeEvent_event = async (output, context) => { - const contents = {}; - const data = await (0, core_1.parseJsonBody)(output.body, context); - Object.assign(contents, (0, smithy_client_1._json)(data)); - return contents; -}; -const de_CodeReferenceEvent_event = async (output, context) => { - const contents = {}; - const data = await (0, core_1.parseJsonBody)(output.body, context); - Object.assign(contents, (0, smithy_client_1._json)(data)); - return contents; -}; -const de_DryRunSucceedEvent_event = async (output, context) => { - const contents = {}; - const data = await (0, core_1.parseJsonBody)(output.body, context); - Object.assign(contents, (0, smithy_client_1._json)(data)); - return contents; -}; -const de_FollowupPromptEvent_event = async (output, context) => { - const contents = {}; - const data = await (0, core_1.parseJsonBody)(output.body, context); - Object.assign(contents, (0, smithy_client_1._json)(data)); - return contents; -}; -const de_IntentsEvent_event = async (output, context) => { - const contents = {}; - const data = await (0, core_1.parseJsonBody)(output.body, context); - Object.assign(contents, (0, smithy_client_1._json)(data)); - return contents; -}; -const de_InteractionComponentsEvent_event = async (output, context) => { - const contents = {}; - const data = await (0, core_1.parseJsonBody)(output.body, context); - Object.assign(contents, de_InteractionComponentsEvent(data, context)); - return contents; -}; -const de_InternalServerException_event = async (output, context) => { - const parsedOutput = { - ...output, - body: await (0, core_1.parseJsonBody)(output.body, context) - }; - return de_InternalServerExceptionRes(parsedOutput, context); -}; -const de_InvalidStateEvent_event = async (output, context) => { - const contents = {}; - const data = await (0, core_1.parseJsonBody)(output.body, context); - Object.assign(contents, (0, smithy_client_1._json)(data)); - return contents; -}; -const de_MessageMetadataEvent_event = async (output, context) => { - const contents = {}; - const data = await (0, core_1.parseJsonBody)(output.body, context); - Object.assign(contents, (0, smithy_client_1._json)(data)); - return contents; -}; -const de_ServiceQuotaExceededException_event = async (output, context) => { - const parsedOutput = { - ...output, - body: await (0, core_1.parseJsonBody)(output.body, context) - }; - return de_ServiceQuotaExceededExceptionRes(parsedOutput, context); -}; -const de_SupplementaryWebLinksEvent_event = async (output, context) => { - const contents = {}; - const data = await (0, core_1.parseJsonBody)(output.body, context); - Object.assign(contents, (0, smithy_client_1._json)(data)); - return contents; -}; -const de_ValidationException_event = async (output, context) => { - const parsedOutput = { - ...output, - body: await (0, core_1.parseJsonBody)(output.body, context) - }; - return de_ValidationExceptionRes(parsedOutput, context); -}; -const se_SendMessageRequest = (input, context) => { - return (0, smithy_client_1.take)(input, { - 'conversationState': smithy_client_1._json, - 'dryRun': [], - 'profileArn': [], - 'source': [], - }); -}; -const de_InteractionComponentEntry = (output, context) => { - return (0, smithy_client_1.take)(output, { - 'interactionComponent': (_) => de_InteractionComponent(_, context), - 'interactionComponentId': smithy_client_1.expectString, - }); -}; -const de_InteractionComponentEntryList = (output, context) => { - const retVal = (output || []).filter((e) => e != null).map((entry) => { - return de_InteractionComponentEntry(entry, context); - }); - return retVal; -}; -const de_InteractionComponentsEvent = (output, context) => { - return (0, smithy_client_1.take)(output, { - 'interactionComponentEntries': (_) => de_InteractionComponentEntryList(_, context), - }); -}; -const de_InteractionComponent = (output, context) => { - return (0, smithy_client_1.take)(output, { - 'alert': smithy_client_1._json, - 'infrastructureUpdate': smithy_client_1._json, - 'progress': smithy_client_1._json, - 'resource': smithy_client_1._json, - 'resourceList': smithy_client_1._json, - 'section': smithy_client_1._json, - 'step': smithy_client_1._json, - 'suggestions': smithy_client_1._json, - 'taskDetails': smithy_client_1._json, - 'taskReference': smithy_client_1._json, - 'text': smithy_client_1._json, - }); -}; -const deserializeMetadata = (output) => ({ - httpStatusCode: output.statusCode, - requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"], - extendedRequestId: output.headers["x-amz-id-2"], - cfId: output.headers["x-amz-cf-id"], -}); -const collectBodyString = (streamBody, context) => (0, smithy_client_1.collectBody)(streamBody, context).then(body => context.utf8Encoder(body)); -const throwDefaultError = (0, smithy_client_1.withBaseException)(QDeveloperStreamingServiceException_1.QDeveloperStreamingServiceException); -const buildHttpRpcRequest = async (context, headers, path, resolvedHostname, body) => { - const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); - const contents = { - protocol, - hostname, - port, - method: "POST", - path: basePath.endsWith("/") ? basePath.slice(0, -1) + path : basePath + path, - headers, - }; - if (resolvedHostname !== undefined) { - contents.hostname = resolvedHostname; - } - if (body !== undefined) { - contents.body = body; - } - return new protocol_http_1.HttpRequest(contents); -}; -function sharedHeaders(operation) { - return { - 'content-type': "application/x-amz-json-1.0", - 'x-amz-target': `AmazonQDeveloperStreamingService.${operation}`, - }; -} -; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.browser.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.browser.js deleted file mode 100644 index 8cbe11364e9..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.browser.js +++ /dev/null @@ -1,40 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.getRuntimeConfig = void 0; -const tslib_1 = require("tslib"); -const package_json_1 = tslib_1.__importDefault(require("../package.json")); -const sha256_browser_1 = require("@aws-crypto/sha256-browser"); -const util_user_agent_browser_1 = require("@aws-sdk/util-user-agent-browser"); -const config_resolver_1 = require("@smithy/config-resolver"); -const eventstream_serde_browser_1 = require("@smithy/eventstream-serde-browser"); -const fetch_http_handler_1 = require("@smithy/fetch-http-handler"); -const invalid_dependency_1 = require("@smithy/invalid-dependency"); -const util_body_length_browser_1 = require("@smithy/util-body-length-browser"); -const util_retry_1 = require("@smithy/util-retry"); -const runtimeConfig_shared_1 = require("./runtimeConfig.shared"); -const smithy_client_1 = require("@smithy/smithy-client"); -const util_defaults_mode_browser_1 = require("@smithy/util-defaults-mode-browser"); -const getRuntimeConfig = (config) => { - const defaultsMode = (0, util_defaults_mode_browser_1.resolveDefaultsModeConfig)(config); - const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode); - const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config); - return { - ...clientSharedValues, - ...config, - runtime: "browser", - defaultsMode, - bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_browser_1.calculateBodyLength, - credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))), - defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_browser_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }), - eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventstream_serde_browser_1.eventStreamSerdeProvider, - maxAttempts: config?.maxAttempts ?? util_retry_1.DEFAULT_MAX_ATTEMPTS, - region: config?.region ?? (0, invalid_dependency_1.invalidProvider)("Region is missing"), - requestHandler: fetch_http_handler_1.FetchHttpHandler.create(config?.requestHandler ?? defaultConfigProvider), - retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE), - sha256: config?.sha256 ?? sha256_browser_1.Sha256, - streamCollector: config?.streamCollector ?? fetch_http_handler_1.streamCollector, - useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(config_resolver_1.DEFAULT_USE_DUALSTACK_ENDPOINT)), - useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(config_resolver_1.DEFAULT_USE_FIPS_ENDPOINT)), - }; -}; -exports.getRuntimeConfig = getRuntimeConfig; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.js deleted file mode 100644 index f2074165824..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.js +++ /dev/null @@ -1,46 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.getRuntimeConfig = void 0; -const tslib_1 = require("tslib"); -const package_json_1 = tslib_1.__importDefault(require("../package.json")); -const core_1 = require("@aws-sdk/core"); -const credential_provider_node_1 = require("@aws-sdk/credential-provider-node"); -const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node"); -const config_resolver_1 = require("@smithy/config-resolver"); -const eventstream_serde_node_1 = require("@smithy/eventstream-serde-node"); -const hash_node_1 = require("@smithy/hash-node"); -const middleware_retry_1 = require("@smithy/middleware-retry"); -const node_config_provider_1 = require("@smithy/node-config-provider"); -const node_http_handler_1 = require("@smithy/node-http-handler"); -const util_body_length_node_1 = require("@smithy/util-body-length-node"); -const util_retry_1 = require("@smithy/util-retry"); -const runtimeConfig_shared_1 = require("./runtimeConfig.shared"); -const smithy_client_1 = require("@smithy/smithy-client"); -const util_defaults_mode_node_1 = require("@smithy/util-defaults-mode-node"); -const smithy_client_2 = require("@smithy/smithy-client"); -const getRuntimeConfig = (config) => { - (0, smithy_client_2.emitWarningIfUnsupportedVersion)(process.version); - const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config); - const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode); - const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config); - (0, core_1.emitWarningIfUnsupportedVersion)(process.version); - return { - ...clientSharedValues, - ...config, - runtime: "node", - defaultsMode, - bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength, - credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider, - defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }), - eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventstream_serde_node_1.eventStreamSerdeProvider, - maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS), - region: config?.region ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS), - requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider), - retryMode: config?.retryMode ?? (0, node_config_provider_1.loadConfig)({ ...middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS, default: async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE, }), - sha256: config?.sha256 ?? hash_node_1.Hash.bind(null, "sha256"), - streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector, - useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS), - useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS), - }; -}; -exports.getRuntimeConfig = getRuntimeConfig; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.native.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.native.js deleted file mode 100644 index 34c5f8ece1d..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.native.js +++ /dev/null @@ -1,15 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.getRuntimeConfig = void 0; -const sha256_js_1 = require("@aws-crypto/sha256-js"); -const runtimeConfig_browser_1 = require("./runtimeConfig.browser"); -const getRuntimeConfig = (config) => { - const browserDefaults = (0, runtimeConfig_browser_1.getRuntimeConfig)(config); - return { - ...browserDefaults, - ...config, - runtime: "react-native", - sha256: config?.sha256 ?? sha256_js_1.Sha256, - }; -}; -exports.getRuntimeConfig = getRuntimeConfig; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.shared.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.shared.js deleted file mode 100644 index b284b25782c..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeConfig.shared.js +++ /dev/null @@ -1,32 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.getRuntimeConfig = void 0; -const httpAuthSchemeProvider_1 = require("./auth/httpAuthSchemeProvider"); -const endpoints_1 = require("./endpoints"); -const core_1 = require("@aws-sdk/core"); -const smithy_client_1 = require("@smithy/smithy-client"); -const url_parser_1 = require("@smithy/url-parser"); -const util_base64_1 = require("@smithy/util-base64"); -const util_utf8_1 = require("@smithy/util-utf8"); -const getRuntimeConfig = (config) => { - return { - apiVersion: "2024-06-11", - base64Decoder: config?.base64Decoder ?? util_base64_1.fromBase64, - base64Encoder: config?.base64Encoder ?? util_base64_1.toBase64, - disableHostPrefix: config?.disableHostPrefix ?? false, - extensions: config?.extensions ?? [], - httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? httpAuthSchemeProvider_1.defaultQDeveloperStreamingHttpAuthSchemeProvider, - httpAuthSchemes: config?.httpAuthSchemes ?? [{ - schemeId: "aws.auth#sigv4", - identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), - signer: new core_1.AwsSdkSigV4Signer(), - }], - logger: config?.logger ?? new smithy_client_1.NoOpLogger(), - regionInfoProvider: config?.regionInfoProvider ?? endpoints_1.defaultRegionInfoProvider, - serviceId: config?.serviceId ?? "QDeveloperStreaming", - urlParser: config?.urlParser ?? url_parser_1.parseUrl, - utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8, - utf8Encoder: config?.utf8Encoder ?? util_utf8_1.toUtf8, - }; -}; -exports.getRuntimeConfig = getRuntimeConfig; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeExtensions.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeExtensions.js deleted file mode 100644 index 87d20a718b8..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-cjs/runtimeExtensions.js +++ /dev/null @@ -1,25 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.resolveRuntimeExtensions = void 0; -const httpAuthExtensionConfiguration_1 = require("./auth/httpAuthExtensionConfiguration"); -const region_config_resolver_1 = require("@aws-sdk/region-config-resolver"); -const protocol_http_1 = require("@smithy/protocol-http"); -const smithy_client_1 = require("@smithy/smithy-client"); -const asPartial = (t) => t; -const resolveRuntimeExtensions = (runtimeConfig, extensions) => { - const extensionConfiguration = { - ...asPartial((0, region_config_resolver_1.getAwsRegionExtensionConfiguration)(runtimeConfig)), - ...asPartial((0, smithy_client_1.getDefaultExtensionConfiguration)(runtimeConfig)), - ...asPartial((0, protocol_http_1.getHttpHandlerExtensionConfiguration)(runtimeConfig)), - ...asPartial((0, httpAuthExtensionConfiguration_1.getHttpAuthExtensionConfiguration)(runtimeConfig)), - }; - extensions.forEach(extension => extension.configure(extensionConfiguration)); - return { - ...runtimeConfig, - ...(0, region_config_resolver_1.resolveAwsRegionExtensionConfiguration)(extensionConfiguration), - ...(0, smithy_client_1.resolveDefaultRuntimeConfig)(extensionConfiguration), - ...(0, protocol_http_1.resolveHttpHandlerRuntimeConfig)(extensionConfiguration), - ...(0, httpAuthExtensionConfiguration_1.resolveHttpAuthRuntimeConfig)(extensionConfiguration), - }; -}; -exports.resolveRuntimeExtensions = resolveRuntimeExtensions; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/QDeveloperStreaming.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/QDeveloperStreaming.js deleted file mode 100644 index 95210469ddf..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/QDeveloperStreaming.js +++ /dev/null @@ -1,11 +0,0 @@ -import { QDeveloperStreamingClient, } from "./QDeveloperStreamingClient"; -import { GenerateCodeFromCommandsCommand, } from "./commands/GenerateCodeFromCommandsCommand"; -import { SendMessageCommand, } from "./commands/SendMessageCommand"; -import { createAggregatedClient } from "@smithy/smithy-client"; -const commands = { - GenerateCodeFromCommandsCommand, - SendMessageCommand, -}; -export class QDeveloperStreaming extends QDeveloperStreamingClient { -} -createAggregatedClient(commands, QDeveloperStreaming); diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/QDeveloperStreamingClient.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/QDeveloperStreamingClient.js deleted file mode 100644 index 4abd6c3cfdc..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/QDeveloperStreamingClient.js +++ /dev/null @@ -1,44 +0,0 @@ -import { defaultQDeveloperStreamingHttpAuthSchemeParametersProvider, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; -import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, } from "./runtimeExtensions"; -import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; -import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; -import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; -import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent"; -import { resolveEndpointsConfig, resolveRegionConfig, } from "@smithy/config-resolver"; -import { DefaultIdentityProviderConfig, getHttpAuthSchemePlugin, getHttpSigningPlugin, } from "@smithy/core"; -import { resolveEventStreamSerdeConfig, } from "@smithy/eventstream-serde-config-resolver"; -import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { getRetryPlugin, resolveRetryConfig, } from "@smithy/middleware-retry"; -import { Client as __Client, } from "@smithy/smithy-client"; -export { __Client }; -export class QDeveloperStreamingClient extends __Client { - constructor(...[configuration]) { - let _config_0 = __getRuntimeConfig(configuration || {}); - let _config_1 = resolveUserAgentConfig(_config_0); - let _config_2 = resolveRetryConfig(_config_1); - let _config_3 = resolveRegionConfig(_config_2); - let _config_4 = resolveHostHeaderConfig(_config_3); - let _config_5 = resolveEndpointsConfig(_config_4); - let _config_6 = resolveEventStreamSerdeConfig(_config_5); - let _config_7 = resolveHttpAuthSchemeConfig(_config_6); - let _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []); - super(_config_8); - this.config = _config_8; - this.middlewareStack.use(getUserAgentPlugin(this.config)); - this.middlewareStack.use(getRetryPlugin(this.config)); - this.middlewareStack.use(getContentLengthPlugin(this.config)); - this.middlewareStack.use(getHostHeaderPlugin(this.config)); - this.middlewareStack.use(getLoggerPlugin(this.config)); - this.middlewareStack.use(getRecursionDetectionPlugin(this.config)); - this.middlewareStack.use(getHttpAuthSchemePlugin(this.config, { - httpAuthSchemeParametersProvider: defaultQDeveloperStreamingHttpAuthSchemeParametersProvider, identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({ - "aws.auth#sigv4": config.credentials, - }), - })); - this.middlewareStack.use(getHttpSigningPlugin(this.config)); - } - destroy() { - super.destroy(); - } -} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/auth/httpAuthExtensionConfiguration.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/auth/httpAuthExtensionConfiguration.js deleted file mode 100644 index 83a878ed765..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/auth/httpAuthExtensionConfiguration.js +++ /dev/null @@ -1,38 +0,0 @@ -export const getHttpAuthExtensionConfiguration = (runtimeConfig) => { - let _httpAuthSchemes = runtimeConfig.httpAuthSchemes; - let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider; - let _credentials = runtimeConfig.credentials; - return { - setHttpAuthScheme(httpAuthScheme) { - const index = _httpAuthSchemes.findIndex(scheme => scheme.schemeId === httpAuthScheme.schemeId); - if (index === -1) { - _httpAuthSchemes.push(httpAuthScheme); - } - else { - _httpAuthSchemes.splice(index, 1, httpAuthScheme); - } - }, - httpAuthSchemes() { - return _httpAuthSchemes; - }, - setHttpAuthSchemeProvider(httpAuthSchemeProvider) { - _httpAuthSchemeProvider = httpAuthSchemeProvider; - }, - httpAuthSchemeProvider() { - return _httpAuthSchemeProvider; - }, - setCredentials(credentials) { - _credentials = credentials; - }, - credentials() { - return _credentials; - }, - }; -}; -export const resolveHttpAuthRuntimeConfig = (config) => { - return { - httpAuthSchemes: config.httpAuthSchemes(), - httpAuthSchemeProvider: config.httpAuthSchemeProvider(), - credentials: config.credentials(), - }; -}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/auth/httpAuthSchemeProvider.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/auth/httpAuthSchemeProvider.js deleted file mode 100644 index 4a7055f0889..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/auth/httpAuthSchemeProvider.js +++ /dev/null @@ -1,44 +0,0 @@ -import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { getSmithyContext, normalizeProvider, } from "@smithy/util-middleware"; -export const defaultQDeveloperStreamingHttpAuthSchemeParametersProvider = async (config, context, input) => { - return { - operation: getSmithyContext(context).operation, - region: await normalizeProvider(config.region)() || (() => { - throw new Error("expected `region` to be configured for `aws.auth#sigv4`"); - })(), - }; -}; -function createAwsAuthSigv4HttpAuthOption(authParameters) { - return { - schemeId: "aws.auth#sigv4", - signingProperties: { - name: "q", - region: authParameters.region, - }, - propertiesExtractor: (config, context) => ({ - signingProperties: { - config, - context, - }, - }), - }; -} -; -export const defaultQDeveloperStreamingHttpAuthSchemeProvider = (authParameters) => { - const options = []; - switch (authParameters.operation) { - default: - { - options.push(createAwsAuthSigv4HttpAuthOption(authParameters)); - } - ; - } - ; - return options; -}; -export const resolveHttpAuthSchemeConfig = (config) => { - const config_0 = resolveAwsSdkSigV4Config(config); - return { - ...config_0, - }; -}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/GenerateCodeFromCommandsCommand.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/GenerateCodeFromCommandsCommand.js deleted file mode 100644 index ab3820127ce..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/GenerateCodeFromCommandsCommand.js +++ /dev/null @@ -1,22 +0,0 @@ -import { GenerateCodeFromCommandsRequestFilterSensitiveLog, GenerateCodeFromCommandsResponseFilterSensitiveLog, } from "../models/models_0"; -import { de_GenerateCodeFromCommandsCommand, se_GenerateCodeFromCommandsCommand, } from "../protocols/Aws_json1_0"; -import { getSerdePlugin } from "@smithy/middleware-serde"; -import { Command as $Command } from "@smithy/smithy-client"; -export { $Command }; -export class GenerateCodeFromCommandsCommand extends $Command.classBuilder() - .m(function (Command, cs, config, o) { - return [ - getSerdePlugin(config, this.serialize, this.deserialize), - ]; -}) - .s("AmazonQDeveloperStreamingService", "GenerateCodeFromCommands", { - eventStream: { - output: true, - }, -}) - .n("QDeveloperStreamingClient", "GenerateCodeFromCommandsCommand") - .f(GenerateCodeFromCommandsRequestFilterSensitiveLog, GenerateCodeFromCommandsResponseFilterSensitiveLog) - .ser(se_GenerateCodeFromCommandsCommand) - .de(de_GenerateCodeFromCommandsCommand) - .build() { -} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/SendMessageCommand.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/SendMessageCommand.js deleted file mode 100644 index 0c8a1a62107..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/SendMessageCommand.js +++ /dev/null @@ -1,22 +0,0 @@ -import { SendMessageRequestFilterSensitiveLog, SendMessageResponseFilterSensitiveLog, } from "../models/models_0"; -import { de_SendMessageCommand, se_SendMessageCommand, } from "../protocols/Aws_json1_0"; -import { getSerdePlugin } from "@smithy/middleware-serde"; -import { Command as $Command } from "@smithy/smithy-client"; -export { $Command }; -export class SendMessageCommand extends $Command.classBuilder() - .m(function (Command, cs, config, o) { - return [ - getSerdePlugin(config, this.serialize, this.deserialize), - ]; -}) - .s("AmazonQDeveloperStreamingService", "SendMessage", { - eventStream: { - output: true, - }, -}) - .n("QDeveloperStreamingClient", "SendMessageCommand") - .f(SendMessageRequestFilterSensitiveLog, SendMessageResponseFilterSensitiveLog) - .ser(se_SendMessageCommand) - .de(de_SendMessageCommand) - .build() { -} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/index.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/index.js deleted file mode 100644 index daae8549029..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/commands/index.js +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./GenerateCodeFromCommandsCommand"; -export * from "./SendMessageCommand"; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/endpoints.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/endpoints.js deleted file mode 100644 index e11356f0b77..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/endpoints.js +++ /dev/null @@ -1,205 +0,0 @@ -import { getRegionInfo, } from "@smithy/config-resolver"; -const regionHash = {}; -const partitionHash = { - "aws": { - regions: [ - "af-south-1", - "ap-east-1", - "ap-northeast-1", - "ap-northeast-2", - "ap-northeast-3", - "ap-south-1", - "ap-south-2", - "ap-southeast-1", - "ap-southeast-2", - "ap-southeast-3", - "ap-southeast-4", - "ap-southeast-5", - "ca-central-1", - "ca-west-1", - "eu-central-1", - "eu-central-2", - "eu-north-1", - "eu-south-1", - "eu-south-2", - "eu-west-1", - "eu-west-2", - "eu-west-3", - "il-central-1", - "me-central-1", - "me-south-1", - "sa-east-1", - "us-east-1", - "us-east-2", - "us-west-1", - "us-west-2", - ], - regionRegex: "^(us|eu|ap|sa|ca|me|af|il|mx)\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazonqdeveloperstreamingservice.{region}.amazonaws.com", - "tags": [] - }, - { - "hostname": "amazonqdeveloperstreamingservice-fips.{region}.amazonaws.com", - "tags": [ - "fips" - ] - }, - { - "hostname": "amazonqdeveloperstreamingservice-fips.{region}.api.aws", - "tags": [ - "dualstack", - "fips" - ] - }, - { - "hostname": "amazonqdeveloperstreamingservice.{region}.api.aws", - "tags": [ - "dualstack" - ] - } - ], - }, - "aws-cn": { - regions: [ - "cn-north-1", - "cn-northwest-1", - ], - regionRegex: "^cn\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazonqdeveloperstreamingservice.{region}.amazonaws.com.cn", - "tags": [] - }, - { - "hostname": "amazonqdeveloperstreamingservice-fips.{region}.amazonaws.com.cn", - "tags": [ - "fips" - ] - }, - { - "hostname": "amazonqdeveloperstreamingservice-fips.{region}.api.amazonwebservices.com.cn", - "tags": [ - "dualstack", - "fips" - ] - }, - { - "hostname": "amazonqdeveloperstreamingservice.{region}.api.amazonwebservices.com.cn", - "tags": [ - "dualstack" - ] - } - ], - }, - "aws-iso": { - regions: [ - "us-iso-east-1", - "us-iso-west-1", - ], - regionRegex: "^us\\-iso\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazonqdeveloperstreamingservice.{region}.c2s.ic.gov", - "tags": [] - }, - { - "hostname": "amazonqdeveloperstreamingservice-fips.{region}.c2s.ic.gov", - "tags": [ - "fips" - ] - } - ], - }, - "aws-iso-b": { - regions: [ - "us-isob-east-1", - ], - regionRegex: "^us\\-isob\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazonqdeveloperstreamingservice.{region}.sc2s.sgov.gov", - "tags": [] - }, - { - "hostname": "amazonqdeveloperstreamingservice-fips.{region}.sc2s.sgov.gov", - "tags": [ - "fips" - ] - } - ], - }, - "aws-iso-e": { - regions: [ - "eu-isoe-west-1", - ], - regionRegex: "^eu\\-isoe\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazonqdeveloperstreamingservice.{region}.cloud.adc-e.uk", - "tags": [] - }, - { - "hostname": "amazonqdeveloperstreamingservice-fips.{region}.cloud.adc-e.uk", - "tags": [ - "fips" - ] - } - ], - }, - "aws-iso-f": { - regions: [], - regionRegex: "^us\\-isof\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazonqdeveloperstreamingservice.{region}.csp.hci.ic.gov", - "tags": [] - }, - { - "hostname": "amazonqdeveloperstreamingservice-fips.{region}.csp.hci.ic.gov", - "tags": [ - "fips" - ] - } - ], - }, - "aws-us-gov": { - regions: [ - "us-gov-east-1", - "us-gov-west-1", - ], - regionRegex: "^us\\-gov\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazonqdeveloperstreamingservice.{region}.amazonaws.com", - "tags": [] - }, - { - "hostname": "amazonqdeveloperstreamingservice-fips.{region}.amazonaws.com", - "tags": [ - "fips" - ] - }, - { - "hostname": "amazonqdeveloperstreamingservice-fips.{region}.api.aws", - "tags": [ - "dualstack", - "fips" - ] - }, - { - "hostname": "amazonqdeveloperstreamingservice.{region}.api.aws", - "tags": [ - "dualstack" - ] - } - ], - }, -}; -export const defaultRegionInfoProvider = async (region, options) => getRegionInfo(region, { - ...options, - signingService: "q", - regionHash, - partitionHash, -}); diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/extensionConfiguration.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/extensionConfiguration.js deleted file mode 100644 index cb0ff5c3b54..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/extensionConfiguration.js +++ /dev/null @@ -1 +0,0 @@ -export {}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/index.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/index.js deleted file mode 100644 index 07ff397e5d0..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/index.js +++ /dev/null @@ -1,5 +0,0 @@ -export * from "./QDeveloperStreamingClient"; -export * from "./QDeveloperStreaming"; -export * from "./commands"; -export * from "./models"; -export { QDeveloperStreamingServiceException } from "./models/QDeveloperStreamingServiceException"; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/QDeveloperStreamingServiceException.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/QDeveloperStreamingServiceException.js deleted file mode 100644 index 37ee4ee2bbf..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/QDeveloperStreamingServiceException.js +++ /dev/null @@ -1,8 +0,0 @@ -import { ServiceException as __ServiceException, } from "@smithy/smithy-client"; -export { __ServiceException }; -export class QDeveloperStreamingServiceException extends __ServiceException { - constructor(options) { - super(options); - Object.setPrototypeOf(this, QDeveloperStreamingServiceException.prototype); - } -} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/index.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/index.js deleted file mode 100644 index 09c5d6e09b8..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/index.js +++ /dev/null @@ -1 +0,0 @@ -export * from "./models_0"; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/models_0.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/models_0.js deleted file mode 100644 index 4df61947612..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/models/models_0.js +++ /dev/null @@ -1,788 +0,0 @@ -import { QDeveloperStreamingServiceException as __BaseException } from "./QDeveloperStreamingServiceException"; -import { SENSITIVE_STRING, } from "@smithy/smithy-client"; -export const AccessDeniedExceptionReason = { - UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS: "UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS", -}; -export class AccessDeniedException extends __BaseException { - constructor(opts) { - super({ - name: "AccessDeniedException", - $fault: "client", - ...opts - }); - this.name = "AccessDeniedException"; - this.$fault = "client"; - Object.setPrototypeOf(this, AccessDeniedException.prototype); - this.reason = opts.reason; - } -} -export class InternalServerException extends __BaseException { - constructor(opts) { - super({ - name: "InternalServerException", - $fault: "server", - ...opts - }); - this.name = "InternalServerException"; - this.$fault = "server"; - this.$retryable = {}; - Object.setPrototypeOf(this, InternalServerException.prototype); - } -} -export class ResourceNotFoundException extends __BaseException { - constructor(opts) { - super({ - name: "ResourceNotFoundException", - $fault: "client", - ...opts - }); - this.name = "ResourceNotFoundException"; - this.$fault = "client"; - Object.setPrototypeOf(this, ResourceNotFoundException.prototype); - } -} -export class ThrottlingException extends __BaseException { - constructor(opts) { - super({ - name: "ThrottlingException", - $fault: "client", - ...opts - }); - this.name = "ThrottlingException"; - this.$fault = "client"; - this.$retryable = { - throttling: true, - }; - Object.setPrototypeOf(this, ThrottlingException.prototype); - } -} -export const ValidationExceptionReason = { - CONTENT_LENGTH_EXCEEDS_THRESHOLD: "CONTENT_LENGTH_EXCEEDS_THRESHOLD", - INVALID_CONVERSATION_ID: "INVALID_CONVERSATION_ID", - INVALID_KMS_GRANT: "INVALID_KMS_GRANT", -}; -export class ValidationException extends __BaseException { - constructor(opts) { - super({ - name: "ValidationException", - $fault: "client", - ...opts - }); - this.name = "ValidationException"; - this.$fault = "client"; - Object.setPrototypeOf(this, ValidationException.prototype); - this.reason = opts.reason; - } -} -export const AppStudioStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.namespace && { namespace: SENSITIVE_STRING - }), - ...(obj.propertyName && { propertyName: SENSITIVE_STRING - }), - ...(obj.propertyValue && { propertyValue: SENSITIVE_STRING - }), - ...(obj.propertyContext && { propertyContext: SENSITIVE_STRING - }), -}); -export const AssistantResponseEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: SENSITIVE_STRING - }), -}); -export const UserIntent = { - APPLY_COMMON_BEST_PRACTICES: "APPLY_COMMON_BEST_PRACTICES", - CITE_SOURCES: "CITE_SOURCES", - CODE_GENERATION: "CODE_GENERATION", - EXPLAIN_CODE_SELECTION: "EXPLAIN_CODE_SELECTION", - EXPLAIN_LINE_BY_LINE: "EXPLAIN_LINE_BY_LINE", - GENERATE_CLOUDFORMATION_TEMPLATE: "GENERATE_CLOUDFORMATION_TEMPLATE", - GENERATE_UNIT_TESTS: "GENERATE_UNIT_TESTS", - IMPROVE_CODE: "IMPROVE_CODE", - SHOW_EXAMPLES: "SHOW_EXAMPLES", - SUGGEST_ALTERNATE_IMPLEMENTATION: "SUGGEST_ALTERNATE_IMPLEMENTATION", -}; -export const FollowupPromptFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: SENSITIVE_STRING - }), -}); -export const SupplementaryWebLinkFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.url && { url: SENSITIVE_STRING - }), - ...(obj.title && { title: SENSITIVE_STRING - }), - ...(obj.snippet && { snippet: SENSITIVE_STRING - }), -}); -export const AssistantResponseMessageFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: SENSITIVE_STRING - }), - ...(obj.supplementaryWebLinks && { supplementaryWebLinks: obj.supplementaryWebLinks.map(item => SupplementaryWebLinkFilterSensitiveLog(item)) - }), - ...(obj.followupPrompt && { followupPrompt: FollowupPromptFilterSensitiveLog(obj.followupPrompt) - }), -}); -export const ConflictExceptionReason = { - CUSTOMER_KMS_KEY_DISABLED: "CUSTOMER_KMS_KEY_DISABLED", - CUSTOMER_KMS_KEY_INVALID_KEY_POLICY: "CUSTOMER_KMS_KEY_INVALID_KEY_POLICY", - MISMATCHED_KMS_KEY: "MISMATCHED_KMS_KEY", -}; -export class ConflictException extends __BaseException { - constructor(opts) { - super({ - name: "ConflictException", - $fault: "client", - ...opts - }); - this.name = "ConflictException"; - this.$fault = "client"; - Object.setPrototypeOf(this, ConflictException.prototype); - this.reason = opts.reason; - } -} -export const ConsoleStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.consoleUrl && { consoleUrl: SENSITIVE_STRING - }), - ...(obj.taskName && { taskName: SENSITIVE_STRING - }), -}); -export const DiagnosticSeverity = { - ERROR: "ERROR", - HINT: "HINT", - INFORMATION: "INFORMATION", - WARNING: "WARNING", -}; -export const RuntimeDiagnosticFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.source && { source: SENSITIVE_STRING - }), - ...(obj.message && { message: SENSITIVE_STRING - }), -}); -export const SymbolType = { - DECLARATION: "DECLARATION", - USAGE: "USAGE", -}; -export const TextDocumentFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.relativeFilePath && { relativeFilePath: SENSITIVE_STRING - }), - ...(obj.text && { text: SENSITIVE_STRING - }), -}); -export const TextDocumentDiagnosticFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.document && { document: TextDocumentFilterSensitiveLog(obj.document) - }), - ...(obj.source && { source: SENSITIVE_STRING - }), - ...(obj.message && { message: SENSITIVE_STRING - }), -}); -export var Diagnostic; -(function (Diagnostic) { - Diagnostic.visit = (value, visitor) => { - if (value.textDocumentDiagnostic !== undefined) - return visitor.textDocumentDiagnostic(value.textDocumentDiagnostic); - if (value.runtimeDiagnostic !== undefined) - return visitor.runtimeDiagnostic(value.runtimeDiagnostic); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(Diagnostic || (Diagnostic = {})); -export const DiagnosticFilterSensitiveLog = (obj) => { - if (obj.textDocumentDiagnostic !== undefined) - return { textDocumentDiagnostic: TextDocumentDiagnosticFilterSensitiveLog(obj.textDocumentDiagnostic) - }; - if (obj.runtimeDiagnostic !== undefined) - return { runtimeDiagnostic: RuntimeDiagnosticFilterSensitiveLog(obj.runtimeDiagnostic) - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -export var CursorState; -(function (CursorState) { - CursorState.visit = (value, visitor) => { - if (value.position !== undefined) - return visitor.position(value.position); - if (value.range !== undefined) - return visitor.range(value.range); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(CursorState || (CursorState = {})); -export const RelevantTextDocumentFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.relativeFilePath && { relativeFilePath: SENSITIVE_STRING - }), - ...(obj.text && { text: SENSITIVE_STRING - }), -}); -export const EditorStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.document && { document: TextDocumentFilterSensitiveLog(obj.document) - }), - ...(obj.cursorState && { cursorState: obj.cursorState - }), - ...(obj.relevantDocuments && { relevantDocuments: obj.relevantDocuments.map(item => RelevantTextDocumentFilterSensitiveLog(item)) - }), -}); -export const EnvironmentVariableFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.key && { key: SENSITIVE_STRING - }), - ...(obj.value && { value: SENSITIVE_STRING - }), -}); -export const EnvStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.currentWorkingDirectory && { currentWorkingDirectory: SENSITIVE_STRING - }), - ...(obj.environmentVariables && { environmentVariables: obj.environmentVariables.map(item => EnvironmentVariableFilterSensitiveLog(item)) - }), -}); -export const GitStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.status && { status: SENSITIVE_STRING - }), -}); -export const ShellHistoryEntryFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.command && { command: SENSITIVE_STRING - }), - ...(obj.directory && { directory: SENSITIVE_STRING - }), - ...(obj.stdout && { stdout: SENSITIVE_STRING - }), - ...(obj.stderr && { stderr: SENSITIVE_STRING - }), -}); -export const ShellStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.shellHistory && { shellHistory: obj.shellHistory.map(item => ShellHistoryEntryFilterSensitiveLog(item)) - }), -}); -export const UserInputMessageContextFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.editorState && { editorState: EditorStateFilterSensitiveLog(obj.editorState) - }), - ...(obj.shellState && { shellState: ShellStateFilterSensitiveLog(obj.shellState) - }), - ...(obj.gitState && { gitState: GitStateFilterSensitiveLog(obj.gitState) - }), - ...(obj.envState && { envState: EnvStateFilterSensitiveLog(obj.envState) - }), - ...(obj.appStudioContext && { appStudioContext: AppStudioStateFilterSensitiveLog(obj.appStudioContext) - }), - ...(obj.diagnostic && { diagnostic: DiagnosticFilterSensitiveLog(obj.diagnostic) - }), - ...(obj.consoleState && { consoleState: ConsoleStateFilterSensitiveLog(obj.consoleState) - }), -}); -export const UserInputMessageFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: SENSITIVE_STRING - }), - ...(obj.userInputMessageContext && { userInputMessageContext: UserInputMessageContextFilterSensitiveLog(obj.userInputMessageContext) - }), -}); -export var ChatMessage; -(function (ChatMessage) { - ChatMessage.visit = (value, visitor) => { - if (value.userInputMessage !== undefined) - return visitor.userInputMessage(value.userInputMessage); - if (value.assistantResponseMessage !== undefined) - return visitor.assistantResponseMessage(value.assistantResponseMessage); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(ChatMessage || (ChatMessage = {})); -export const ChatMessageFilterSensitiveLog = (obj) => { - if (obj.userInputMessage !== undefined) - return { userInputMessage: UserInputMessageFilterSensitiveLog(obj.userInputMessage) - }; - if (obj.assistantResponseMessage !== undefined) - return { assistantResponseMessage: AssistantResponseMessageFilterSensitiveLog(obj.assistantResponseMessage) - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -export const CodeEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: SENSITIVE_STRING - }), -}); -export const FollowupPromptEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.followupPrompt && { followupPrompt: FollowupPromptFilterSensitiveLog(obj.followupPrompt) - }), -}); -export const IntentType = { - GLUE_SENSEI: "GLUE_SENSEI", - RESOURCE_DATA: "RESOURCE_DATA", - SUPPORT: "SUPPORT", -}; -export var IntentDataType; -(function (IntentDataType) { - IntentDataType.visit = (value, visitor) => { - if (value.string !== undefined) - return visitor.string(value.string); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(IntentDataType || (IntentDataType = {})); -export const IntentsEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.intents && { intents: SENSITIVE_STRING - }), -}); -export const TextFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: SENSITIVE_STRING - }), -}); -export const AlertComponentFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.text && { text: TextFilterSensitiveLog(obj.text) - }), -}); -export const AlertType = { - ERROR: "ERROR", - INFO: "INFO", - WARNING: "WARNING", -}; -export const AlertFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: obj.content.map(item => AlertComponentFilterSensitiveLog(item)) - }), -}); -export const InfrastructureUpdateTransitionFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.currentState && { currentState: SENSITIVE_STRING - }), - ...(obj.nextState && { nextState: SENSITIVE_STRING - }), -}); -export const InfrastructureUpdateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.transition && { transition: InfrastructureUpdateTransitionFilterSensitiveLog(obj.transition) - }), -}); -export const StepComponentFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.text && { text: TextFilterSensitiveLog(obj.text) - }), -}); -export const StepState = { - FAILED: "FAILED", - IN_PROGRESS: "IN_PROGRESS", - LOADING: "LOADING", - PAUSED: "PAUSED", - PENDING: "PENDING", - STOPPED: "STOPPED", - SUCCEEDED: "SUCCEEDED", -}; -export const StepFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.label && { label: SENSITIVE_STRING - }), - ...(obj.content && { content: obj.content.map(item => StepComponentFilterSensitiveLog(item)) - }), -}); -export const ProgressComponentFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.step && { step: StepFilterSensitiveLog(obj.step) - }), -}); -export const ProgressFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: obj.content.map(item => ProgressComponentFilterSensitiveLog(item)) - }), -}); -export const ResourceFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.title && { title: SENSITIVE_STRING - }), - ...(obj.link && { link: SENSITIVE_STRING - }), - ...(obj.description && { description: SENSITIVE_STRING - }), - ...(obj.type && { type: SENSITIVE_STRING - }), - ...(obj.ARN && { ARN: SENSITIVE_STRING - }), - ...(obj.resourceJsonString && { resourceJsonString: SENSITIVE_STRING - }), -}); -export const CloudWatchTroubleshootingLinkFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.label && { label: SENSITIVE_STRING - }), - ...(obj.investigationPayload && { investigationPayload: SENSITIVE_STRING - }), - ...(obj.defaultText && { defaultText: SENSITIVE_STRING - }), -}); -export var ModuleLink; -(function (ModuleLink) { - ModuleLink.visit = (value, visitor) => { - if (value.cloudWatchTroubleshootingLink !== undefined) - return visitor.cloudWatchTroubleshootingLink(value.cloudWatchTroubleshootingLink); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(ModuleLink || (ModuleLink = {})); -export const ModuleLinkFilterSensitiveLog = (obj) => { - if (obj.cloudWatchTroubleshootingLink !== undefined) - return { cloudWatchTroubleshootingLink: CloudWatchTroubleshootingLinkFilterSensitiveLog(obj.cloudWatchTroubleshootingLink) - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -export const WebLinkFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.label && { label: SENSITIVE_STRING - }), - ...(obj.url && { url: SENSITIVE_STRING - }), -}); -export var Action; -(function (Action) { - Action.visit = (value, visitor) => { - if (value.webLink !== undefined) - return visitor.webLink(value.webLink); - if (value.moduleLink !== undefined) - return visitor.moduleLink(value.moduleLink); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(Action || (Action = {})); -export const ActionFilterSensitiveLog = (obj) => { - if (obj.webLink !== undefined) - return { webLink: WebLinkFilterSensitiveLog(obj.webLink) - }; - if (obj.moduleLink !== undefined) - return { moduleLink: ModuleLinkFilterSensitiveLog(obj.moduleLink) - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -export const ResourceListFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.action && { action: ActionFilterSensitiveLog(obj.action) - }), - ...(obj.items && { items: obj.items.map(item => ResourceFilterSensitiveLog(item)) - }), -}); -export var SectionComponent; -(function (SectionComponent) { - SectionComponent.visit = (value, visitor) => { - if (value.text !== undefined) - return visitor.text(value.text); - if (value.alert !== undefined) - return visitor.alert(value.alert); - if (value.resource !== undefined) - return visitor.resource(value.resource); - if (value.resourceList !== undefined) - return visitor.resourceList(value.resourceList); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(SectionComponent || (SectionComponent = {})); -export const SectionComponentFilterSensitiveLog = (obj) => { - if (obj.text !== undefined) - return { text: TextFilterSensitiveLog(obj.text) - }; - if (obj.alert !== undefined) - return { alert: AlertFilterSensitiveLog(obj.alert) - }; - if (obj.resource !== undefined) - return { resource: ResourceFilterSensitiveLog(obj.resource) - }; - if (obj.resourceList !== undefined) - return { resourceList: ResourceListFilterSensitiveLog(obj.resourceList) - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -export const SectionFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.title && { title: SENSITIVE_STRING - }), - ...(obj.content && { content: obj.content.map(item => SectionComponentFilterSensitiveLog(item)) - }), -}); -export const TaskActionConfirmationFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: SENSITIVE_STRING - }), -}); -export const TaskActionNoteType = { - INFO: "INFO", - WARNING: "WARNING", -}; -export const TaskActionNoteFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: SENSITIVE_STRING - }), -}); -export const TaskActionFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.label && { label: SENSITIVE_STRING - }), - ...(obj.note && { note: TaskActionNoteFilterSensitiveLog(obj.note) - }), - ...(obj.payload && { payload: SENSITIVE_STRING - }), - ...(obj.confirmation && { confirmation: TaskActionConfirmationFilterSensitiveLog(obj.confirmation) - }), -}); -export const TaskComponentFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.text && { text: TextFilterSensitiveLog(obj.text) - }), - ...(obj.infrastructureUpdate && { infrastructureUpdate: InfrastructureUpdateFilterSensitiveLog(obj.infrastructureUpdate) - }), - ...(obj.alert && { alert: AlertFilterSensitiveLog(obj.alert) - }), - ...(obj.progress && { progress: ProgressFilterSensitiveLog(obj.progress) - }), -}); -export const TaskOverviewFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.label && { label: SENSITIVE_STRING - }), - ...(obj.description && { description: SENSITIVE_STRING - }), -}); -export const TaskDetailsFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.overview && { overview: TaskOverviewFilterSensitiveLog(obj.overview) - }), - ...(obj.content && { content: obj.content.map(item => TaskComponentFilterSensitiveLog(item)) - }), - ...(obj.actions && { actions: obj.actions.map(item => TaskActionFilterSensitiveLog(item)) - }), -}); -export const InteractionComponentFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.text && { text: TextFilterSensitiveLog(obj.text) - }), - ...(obj.alert && { alert: AlertFilterSensitiveLog(obj.alert) - }), - ...(obj.infrastructureUpdate && { infrastructureUpdate: InfrastructureUpdateFilterSensitiveLog(obj.infrastructureUpdate) - }), - ...(obj.progress && { progress: ProgressFilterSensitiveLog(obj.progress) - }), - ...(obj.step && { step: StepFilterSensitiveLog(obj.step) - }), - ...(obj.taskDetails && { taskDetails: TaskDetailsFilterSensitiveLog(obj.taskDetails) - }), - ...(obj.section && { section: SectionFilterSensitiveLog(obj.section) - }), - ...(obj.resource && { resource: ResourceFilterSensitiveLog(obj.resource) - }), - ...(obj.resourceList && { resourceList: ResourceListFilterSensitiveLog(obj.resourceList) - }), -}); -export const InteractionComponentEntryFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.interactionComponent && { interactionComponent: InteractionComponentFilterSensitiveLog(obj.interactionComponent) - }), -}); -export const InteractionComponentsEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.interactionComponentEntries && { interactionComponentEntries: obj.interactionComponentEntries.map(item => InteractionComponentEntryFilterSensitiveLog(item)) - }), -}); -export const InvalidStateReason = { - INVALID_TASK_ASSIST_PLAN: "INVALID_TASK_ASSIST_PLAN", -}; -export const SupplementaryWebLinksEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.supplementaryWebLinks && { supplementaryWebLinks: obj.supplementaryWebLinks.map(item => SupplementaryWebLinkFilterSensitiveLog(item)) - }), -}); -export var ChatResponseStream; -(function (ChatResponseStream) { - ChatResponseStream.visit = (value, visitor) => { - if (value.messageMetadataEvent !== undefined) - return visitor.messageMetadataEvent(value.messageMetadataEvent); - if (value.assistantResponseEvent !== undefined) - return visitor.assistantResponseEvent(value.assistantResponseEvent); - if (value.dryRunSucceedEvent !== undefined) - return visitor.dryRunSucceedEvent(value.dryRunSucceedEvent); - if (value.codeReferenceEvent !== undefined) - return visitor.codeReferenceEvent(value.codeReferenceEvent); - if (value.supplementaryWebLinksEvent !== undefined) - return visitor.supplementaryWebLinksEvent(value.supplementaryWebLinksEvent); - if (value.followupPromptEvent !== undefined) - return visitor.followupPromptEvent(value.followupPromptEvent); - if (value.codeEvent !== undefined) - return visitor.codeEvent(value.codeEvent); - if (value.intentsEvent !== undefined) - return visitor.intentsEvent(value.intentsEvent); - if (value.interactionComponentsEvent !== undefined) - return visitor.interactionComponentsEvent(value.interactionComponentsEvent); - if (value.invalidStateEvent !== undefined) - return visitor.invalidStateEvent(value.invalidStateEvent); - if (value.error !== undefined) - return visitor.error(value.error); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(ChatResponseStream || (ChatResponseStream = {})); -export const ChatResponseStreamFilterSensitiveLog = (obj) => { - if (obj.messageMetadataEvent !== undefined) - return { messageMetadataEvent: obj.messageMetadataEvent - }; - if (obj.assistantResponseEvent !== undefined) - return { assistantResponseEvent: AssistantResponseEventFilterSensitiveLog(obj.assistantResponseEvent) - }; - if (obj.dryRunSucceedEvent !== undefined) - return { dryRunSucceedEvent: obj.dryRunSucceedEvent - }; - if (obj.codeReferenceEvent !== undefined) - return { codeReferenceEvent: obj.codeReferenceEvent - }; - if (obj.supplementaryWebLinksEvent !== undefined) - return { supplementaryWebLinksEvent: SupplementaryWebLinksEventFilterSensitiveLog(obj.supplementaryWebLinksEvent) - }; - if (obj.followupPromptEvent !== undefined) - return { followupPromptEvent: FollowupPromptEventFilterSensitiveLog(obj.followupPromptEvent) - }; - if (obj.codeEvent !== undefined) - return { codeEvent: CodeEventFilterSensitiveLog(obj.codeEvent) - }; - if (obj.intentsEvent !== undefined) - return { intentsEvent: IntentsEventFilterSensitiveLog(obj.intentsEvent) - }; - if (obj.interactionComponentsEvent !== undefined) - return { interactionComponentsEvent: InteractionComponentsEventFilterSensitiveLog(obj.interactionComponentsEvent) - }; - if (obj.invalidStateEvent !== undefined) - return { invalidStateEvent: obj.invalidStateEvent - }; - if (obj.error !== undefined) - return { error: obj.error - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -export const ChatTriggerType = { - DIAGNOSTIC: "DIAGNOSTIC", - INLINE_CHAT: "INLINE_CHAT", - MANUAL: "MANUAL", -}; -export var CommandInput; -(function (CommandInput) { - CommandInput.visit = (value, visitor) => { - if (value.commandsList !== undefined) - return visitor.commandsList(value.commandsList); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(CommandInput || (CommandInput = {})); -export const CommandInputFilterSensitiveLog = (obj) => { - if (obj.commandsList !== undefined) - return { commandsList: SENSITIVE_STRING - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -export const ConversationStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.history && { history: obj.history.map(item => ChatMessageFilterSensitiveLog(item)) - }), - ...(obj.currentMessage && { currentMessage: ChatMessageFilterSensitiveLog(obj.currentMessage) - }), -}); -export class DryRunOperationException extends __BaseException { - constructor(opts) { - super({ - name: "DryRunOperationException", - $fault: "client", - ...opts - }); - this.name = "DryRunOperationException"; - this.$fault = "client"; - Object.setPrototypeOf(this, DryRunOperationException.prototype); - this.responseCode = opts.responseCode; - } -} -export const OutputFormat = { - JAVA_CDK: "java/cdk", - JSON_CFN: "json/cfn", - PYTHON_CDK: "python/cdk", - TYPESCRIPT_CDK: "typescript/cdk", - YAML_CFN: "yaml/cfn", -}; -export class ServiceQuotaExceededException extends __BaseException { - constructor(opts) { - super({ - name: "ServiceQuotaExceededException", - $fault: "client", - ...opts - }); - this.name = "ServiceQuotaExceededException"; - this.$fault = "client"; - Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype); - } -} -export const Origin = { - CHATBOT: "CHATBOT", - CONSOLE: "CONSOLE", - DOCUMENTATION: "DOCUMENTATION", - IDE: "IDE", - MARKETING: "MARKETING", - MD: "MD", - MOBILE: "MOBILE", - SERVICE_INTERNAL: "SERVICE_INTERNAL", - UNIFIED_SEARCH: "UNIFIED_SEARCH", - UNKNOWN: "UNKNOWN", -}; -export const SendMessageRequestFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.conversationState && { conversationState: ConversationStateFilterSensitiveLog(obj.conversationState) - }), -}); -export const SendMessageResponseFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.sendMessageResponse && { sendMessageResponse: 'STREAMING_CONTENT' - }), -}); -export const GenerateCodeFromCommandsRequestFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.commands && { commands: CommandInputFilterSensitiveLog(obj.commands) - }), -}); -export var GenerateCodeFromCommandsResponseStream; -(function (GenerateCodeFromCommandsResponseStream) { - GenerateCodeFromCommandsResponseStream.visit = (value, visitor) => { - if (value.codeEvent !== undefined) - return visitor.codeEvent(value.codeEvent); - if (value.Error !== undefined) - return visitor.Error(value.Error); - if (value.QuotaLevelExceededError !== undefined) - return visitor.QuotaLevelExceededError(value.QuotaLevelExceededError); - if (value.ValidationError !== undefined) - return visitor.ValidationError(value.ValidationError); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(GenerateCodeFromCommandsResponseStream || (GenerateCodeFromCommandsResponseStream = {})); -export const GenerateCodeFromCommandsResponseStreamFilterSensitiveLog = (obj) => { - if (obj.codeEvent !== undefined) - return { codeEvent: CodeEventFilterSensitiveLog(obj.codeEvent) - }; - if (obj.Error !== undefined) - return { Error: obj.Error - }; - if (obj.QuotaLevelExceededError !== undefined) - return { QuotaLevelExceededError: obj.QuotaLevelExceededError - }; - if (obj.ValidationError !== undefined) - return { ValidationError: obj.ValidationError - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -export const GenerateCodeFromCommandsResponseFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.generatedCodeFromCommandsResponse && { generatedCodeFromCommandsResponse: 'STREAMING_CONTENT' - }), -}); diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/protocols/Aws_json1_0.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/protocols/Aws_json1_0.js deleted file mode 100644 index f9c727f8652..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/protocols/Aws_json1_0.js +++ /dev/null @@ -1,390 +0,0 @@ -import { QDeveloperStreamingServiceException as __BaseException } from "../models/QDeveloperStreamingServiceException"; -import { AccessDeniedException, ConflictException, DryRunOperationException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/models_0"; -import { loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody, } from "@aws-sdk/core"; -import { HttpRequest as __HttpRequest, } from "@smithy/protocol-http"; -import { decorateServiceException as __decorateServiceException, expectString as __expectString, _json, collectBody, take, withBaseException, } from "@smithy/smithy-client"; -export const se_GenerateCodeFromCommandsCommand = async (input, context) => { - const headers = sharedHeaders("GenerateCodeFromCommands"); - let body; - body = JSON.stringify(_json(input)); - return buildHttpRpcRequest(context, headers, "/", undefined, body); -}; -export const se_SendMessageCommand = async (input, context) => { - const headers = sharedHeaders("SendMessage"); - let body; - body = JSON.stringify(se_SendMessageRequest(input, context)); - return buildHttpRpcRequest(context, headers, "/", undefined, body); -}; -export const de_GenerateCodeFromCommandsCommand = async (output, context) => { - if (output.statusCode >= 300) { - return de_CommandError(output, context); - } - const contents = { generatedCodeFromCommandsResponse: de_GenerateCodeFromCommandsResponseStream(output.body, context) }; - const response = { - $metadata: deserializeMetadata(output), - ...contents, - }; - return response; -}; -export const de_SendMessageCommand = async (output, context) => { - if (output.statusCode >= 300) { - return de_CommandError(output, context); - } - const contents = { sendMessageResponse: de_ChatResponseStream(output.body, context) }; - const response = { - $metadata: deserializeMetadata(output), - ...contents, - }; - return response; -}; -const de_CommandError = async (output, context) => { - const parsedOutput = { - ...output, - body: await parseErrorBody(output.body, context) - }; - const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); - switch (errorCode) { - case "AccessDeniedException": - case "com.amazon.aws.codewhisperer#AccessDeniedException": - throw await de_AccessDeniedExceptionRes(parsedOutput, context); - case "InternalServerException": - case "com.amazon.aws.codewhisperer#InternalServerException": - throw await de_InternalServerExceptionRes(parsedOutput, context); - case "ThrottlingException": - case "com.amazon.aws.codewhisperer#ThrottlingException": - throw await de_ThrottlingExceptionRes(parsedOutput, context); - case "ValidationException": - case "com.amazon.aws.codewhisperer#ValidationException": - throw await de_ValidationExceptionRes(parsedOutput, context); - case "ConflictException": - case "com.amazon.aws.codewhisperer#ConflictException": - throw await de_ConflictExceptionRes(parsedOutput, context); - case "DryRunOperationException": - case "com.amazon.aws.codewhisperer#DryRunOperationException": - throw await de_DryRunOperationExceptionRes(parsedOutput, context); - case "ResourceNotFoundException": - case "com.amazon.aws.codewhisperer#ResourceNotFoundException": - throw await de_ResourceNotFoundExceptionRes(parsedOutput, context); - case "ServiceQuotaExceededException": - case "com.amazon.aws.codewhisperer#ServiceQuotaExceededException": - throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context); - default: - const parsedBody = parsedOutput.body; - return throwDefaultError({ - output, - parsedBody, - errorCode - }); - } -}; -const de_AccessDeniedExceptionRes = async (parsedOutput, context) => { - const body = parsedOutput.body; - const deserialized = _json(body); - const exception = new AccessDeniedException({ - $metadata: deserializeMetadata(parsedOutput), - ...deserialized - }); - return __decorateServiceException(exception, body); -}; -const de_ConflictExceptionRes = async (parsedOutput, context) => { - const body = parsedOutput.body; - const deserialized = _json(body); - const exception = new ConflictException({ - $metadata: deserializeMetadata(parsedOutput), - ...deserialized - }); - return __decorateServiceException(exception, body); -}; -const de_DryRunOperationExceptionRes = async (parsedOutput, context) => { - const body = parsedOutput.body; - const deserialized = _json(body); - const exception = new DryRunOperationException({ - $metadata: deserializeMetadata(parsedOutput), - ...deserialized - }); - return __decorateServiceException(exception, body); -}; -const de_InternalServerExceptionRes = async (parsedOutput, context) => { - const body = parsedOutput.body; - const deserialized = _json(body); - const exception = new InternalServerException({ - $metadata: deserializeMetadata(parsedOutput), - ...deserialized - }); - return __decorateServiceException(exception, body); -}; -const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => { - const body = parsedOutput.body; - const deserialized = _json(body); - const exception = new ResourceNotFoundException({ - $metadata: deserializeMetadata(parsedOutput), - ...deserialized - }); - return __decorateServiceException(exception, body); -}; -const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => { - const body = parsedOutput.body; - const deserialized = _json(body); - const exception = new ServiceQuotaExceededException({ - $metadata: deserializeMetadata(parsedOutput), - ...deserialized - }); - return __decorateServiceException(exception, body); -}; -const de_ThrottlingExceptionRes = async (parsedOutput, context) => { - const body = parsedOutput.body; - const deserialized = _json(body); - const exception = new ThrottlingException({ - $metadata: deserializeMetadata(parsedOutput), - ...deserialized - }); - return __decorateServiceException(exception, body); -}; -const de_ValidationExceptionRes = async (parsedOutput, context) => { - const body = parsedOutput.body; - const deserialized = _json(body); - const exception = new ValidationException({ - $metadata: deserializeMetadata(parsedOutput), - ...deserialized - }); - return __decorateServiceException(exception, body); -}; -const de_ChatResponseStream = (output, context) => { - return context.eventStreamMarshaller.deserialize(output, async (event) => { - if (event["messageMetadataEvent"] != null) { - return { - messageMetadataEvent: await de_MessageMetadataEvent_event(event["messageMetadataEvent"], context), - }; - } - if (event["assistantResponseEvent"] != null) { - return { - assistantResponseEvent: await de_AssistantResponseEvent_event(event["assistantResponseEvent"], context), - }; - } - if (event["dryRunSucceedEvent"] != null) { - return { - dryRunSucceedEvent: await de_DryRunSucceedEvent_event(event["dryRunSucceedEvent"], context), - }; - } - if (event["codeReferenceEvent"] != null) { - return { - codeReferenceEvent: await de_CodeReferenceEvent_event(event["codeReferenceEvent"], context), - }; - } - if (event["supplementaryWebLinksEvent"] != null) { - return { - supplementaryWebLinksEvent: await de_SupplementaryWebLinksEvent_event(event["supplementaryWebLinksEvent"], context), - }; - } - if (event["followupPromptEvent"] != null) { - return { - followupPromptEvent: await de_FollowupPromptEvent_event(event["followupPromptEvent"], context), - }; - } - if (event["codeEvent"] != null) { - return { - codeEvent: await de_CodeEvent_event(event["codeEvent"], context), - }; - } - if (event["intentsEvent"] != null) { - return { - intentsEvent: await de_IntentsEvent_event(event["intentsEvent"], context), - }; - } - if (event["interactionComponentsEvent"] != null) { - return { - interactionComponentsEvent: await de_InteractionComponentsEvent_event(event["interactionComponentsEvent"], context), - }; - } - if (event["invalidStateEvent"] != null) { - return { - invalidStateEvent: await de_InvalidStateEvent_event(event["invalidStateEvent"], context), - }; - } - if (event["error"] != null) { - return { - error: await de_InternalServerException_event(event["error"], context), - }; - } - return { $unknown: output }; - }); -}; -const de_GenerateCodeFromCommandsResponseStream = (output, context) => { - return context.eventStreamMarshaller.deserialize(output, async (event) => { - if (event["codeEvent"] != null) { - return { - codeEvent: await de_CodeEvent_event(event["codeEvent"], context), - }; - } - if (event["Error"] != null) { - return { - Error: await de_InternalServerException_event(event["Error"], context), - }; - } - if (event["QuotaLevelExceededError"] != null) { - return { - QuotaLevelExceededError: await de_ServiceQuotaExceededException_event(event["QuotaLevelExceededError"], context), - }; - } - if (event["ValidationError"] != null) { - return { - ValidationError: await de_ValidationException_event(event["ValidationError"], context), - }; - } - return { $unknown: output }; - }); -}; -const de_AssistantResponseEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, _json(data)); - return contents; -}; -const de_CodeEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, _json(data)); - return contents; -}; -const de_CodeReferenceEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, _json(data)); - return contents; -}; -const de_DryRunSucceedEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, _json(data)); - return contents; -}; -const de_FollowupPromptEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, _json(data)); - return contents; -}; -const de_IntentsEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, _json(data)); - return contents; -}; -const de_InteractionComponentsEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, de_InteractionComponentsEvent(data, context)); - return contents; -}; -const de_InternalServerException_event = async (output, context) => { - const parsedOutput = { - ...output, - body: await parseBody(output.body, context) - }; - return de_InternalServerExceptionRes(parsedOutput, context); -}; -const de_InvalidStateEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, _json(data)); - return contents; -}; -const de_MessageMetadataEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, _json(data)); - return contents; -}; -const de_ServiceQuotaExceededException_event = async (output, context) => { - const parsedOutput = { - ...output, - body: await parseBody(output.body, context) - }; - return de_ServiceQuotaExceededExceptionRes(parsedOutput, context); -}; -const de_SupplementaryWebLinksEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, _json(data)); - return contents; -}; -const de_ValidationException_event = async (output, context) => { - const parsedOutput = { - ...output, - body: await parseBody(output.body, context) - }; - return de_ValidationExceptionRes(parsedOutput, context); -}; -const se_SendMessageRequest = (input, context) => { - return take(input, { - 'conversationState': _json, - 'dryRun': [], - 'profileArn': [], - 'source': [], - }); -}; -const de_InteractionComponentEntry = (output, context) => { - return take(output, { - 'interactionComponent': (_) => de_InteractionComponent(_, context), - 'interactionComponentId': __expectString, - }); -}; -const de_InteractionComponentEntryList = (output, context) => { - const retVal = (output || []).filter((e) => e != null).map((entry) => { - return de_InteractionComponentEntry(entry, context); - }); - return retVal; -}; -const de_InteractionComponentsEvent = (output, context) => { - return take(output, { - 'interactionComponentEntries': (_) => de_InteractionComponentEntryList(_, context), - }); -}; -const de_InteractionComponent = (output, context) => { - return take(output, { - 'alert': _json, - 'infrastructureUpdate': _json, - 'progress': _json, - 'resource': _json, - 'resourceList': _json, - 'section': _json, - 'step': _json, - 'suggestions': _json, - 'taskDetails': _json, - 'taskReference': _json, - 'text': _json, - }); -}; -const deserializeMetadata = (output) => ({ - httpStatusCode: output.statusCode, - requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"], - extendedRequestId: output.headers["x-amz-id-2"], - cfId: output.headers["x-amz-cf-id"], -}); -const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then(body => context.utf8Encoder(body)); -const throwDefaultError = withBaseException(__BaseException); -const buildHttpRpcRequest = async (context, headers, path, resolvedHostname, body) => { - const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); - const contents = { - protocol, - hostname, - port, - method: "POST", - path: basePath.endsWith("/") ? basePath.slice(0, -1) + path : basePath + path, - headers, - }; - if (resolvedHostname !== undefined) { - contents.hostname = resolvedHostname; - } - if (body !== undefined) { - contents.body = body; - } - return new __HttpRequest(contents); -}; -function sharedHeaders(operation) { - return { - 'content-type': "application/x-amz-json-1.0", - 'x-amz-target': `AmazonQDeveloperStreamingService.${operation}`, - }; -} -; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.browser.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.browser.js deleted file mode 100644 index 33ea4549e8a..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.browser.js +++ /dev/null @@ -1,35 +0,0 @@ -import packageInfo from "../package.json"; -import { Sha256 } from "@aws-crypto/sha256-browser"; -import { defaultUserAgent } from "@aws-sdk/util-user-agent-browser"; -import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, } from "@smithy/config-resolver"; -import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-browser"; -import { FetchHttpHandler as RequestHandler, streamCollector, } from "@smithy/fetch-http-handler"; -import { invalidProvider } from "@smithy/invalid-dependency"; -import { calculateBodyLength } from "@smithy/util-body-length-browser"; -import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE, } from "@smithy/util-retry"; -import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; -export const getRuntimeConfig = (config) => { - const defaultsMode = resolveDefaultsModeConfig(config); - const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode); - const clientSharedValues = getSharedRuntimeConfig(config); - return { - ...clientSharedValues, - ...config, - runtime: "browser", - defaultsMode, - bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength, - credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))), - defaultUserAgentProvider: config?.defaultUserAgentProvider ?? defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), - eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventStreamSerdeProvider, - maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS, - region: config?.region ?? invalidProvider("Region is missing"), - requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider), - retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE), - sha256: config?.sha256 ?? Sha256, - streamCollector: config?.streamCollector ?? streamCollector, - useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)), - useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)), - }; -}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.js deleted file mode 100644 index 6767f5f4773..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.js +++ /dev/null @@ -1,41 +0,0 @@ -import packageInfo from "../package.json"; -import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core"; -import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node"; -import { defaultUserAgent } from "@aws-sdk/util-user-agent-node"; -import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver"; -import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-node"; -import { Hash } from "@smithy/hash-node"; -import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@smithy/middleware-retry"; -import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; -import { NodeHttpHandler as RequestHandler, streamCollector, } from "@smithy/node-http-handler"; -import { calculateBodyLength } from "@smithy/util-body-length-node"; -import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; -export const getRuntimeConfig = (config) => { - emitWarningIfUnsupportedVersion(process.version); - const defaultsMode = resolveDefaultsModeConfig(config); - const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode); - const clientSharedValues = getSharedRuntimeConfig(config); - awsCheckVersion(process.version); - return { - ...clientSharedValues, - ...config, - runtime: "node", - defaultsMode, - bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength, - credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider, - defaultUserAgentProvider: config?.defaultUserAgentProvider ?? defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), - eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventStreamSerdeProvider, - maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS), - region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS), - requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider), - retryMode: config?.retryMode ?? loadNodeConfig({ ...NODE_RETRY_MODE_CONFIG_OPTIONS, default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE, }), - sha256: config?.sha256 ?? Hash.bind(null, "sha256"), - streamCollector: config?.streamCollector ?? streamCollector, - useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS), - useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS), - }; -}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.native.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.native.js deleted file mode 100644 index 0b546952826..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.native.js +++ /dev/null @@ -1,11 +0,0 @@ -import { Sha256 } from "@aws-crypto/sha256-js"; -import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -export const getRuntimeConfig = (config) => { - const browserDefaults = getBrowserRuntimeConfig(config); - return { - ...browserDefaults, - ...config, - runtime: "react-native", - sha256: config?.sha256 ?? Sha256, - }; -}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.shared.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.shared.js deleted file mode 100644 index a5e4f1401b8..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeConfig.shared.js +++ /dev/null @@ -1,28 +0,0 @@ -import { defaultQDeveloperStreamingHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { defaultRegionInfoProvider } from "./endpoints"; -import { AwsSdkSigV4Signer } from "@aws-sdk/core"; -import { NoOpLogger } from "@smithy/smithy-client"; -import { parseUrl } from "@smithy/url-parser"; -import { fromBase64, toBase64, } from "@smithy/util-base64"; -import { fromUtf8, toUtf8, } from "@smithy/util-utf8"; -export const getRuntimeConfig = (config) => { - return { - apiVersion: "2024-06-11", - base64Decoder: config?.base64Decoder ?? fromBase64, - base64Encoder: config?.base64Encoder ?? toBase64, - disableHostPrefix: config?.disableHostPrefix ?? false, - extensions: config?.extensions ?? [], - httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultQDeveloperStreamingHttpAuthSchemeProvider, - httpAuthSchemes: config?.httpAuthSchemes ?? [{ - schemeId: "aws.auth#sigv4", - identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"), - signer: new AwsSdkSigV4Signer(), - }], - logger: config?.logger ?? new NoOpLogger(), - regionInfoProvider: config?.regionInfoProvider ?? defaultRegionInfoProvider, - serviceId: config?.serviceId ?? "QDeveloperStreaming", - urlParser: config?.urlParser ?? parseUrl, - utf8Decoder: config?.utf8Decoder ?? fromUtf8, - utf8Encoder: config?.utf8Encoder ?? toUtf8, - }; -}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeExtensions.js b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeExtensions.js deleted file mode 100644 index 750ec6de711..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-es/runtimeExtensions.js +++ /dev/null @@ -1,21 +0,0 @@ -import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig, } from "./auth/httpAuthExtensionConfiguration"; -import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, } from "@aws-sdk/region-config-resolver"; -import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, } from "@smithy/protocol-http"; -import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, } from "@smithy/smithy-client"; -const asPartial = (t) => t; -export const resolveRuntimeExtensions = (runtimeConfig, extensions) => { - const extensionConfiguration = { - ...asPartial(getAwsRegionExtensionConfiguration(runtimeConfig)), - ...asPartial(getDefaultExtensionConfiguration(runtimeConfig)), - ...asPartial(getHttpHandlerExtensionConfiguration(runtimeConfig)), - ...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig)), - }; - extensions.forEach(extension => extension.configure(extensionConfiguration)); - return { - ...runtimeConfig, - ...resolveAwsRegionExtensionConfiguration(extensionConfiguration), - ...resolveDefaultRuntimeConfig(extensionConfiguration), - ...resolveHttpHandlerRuntimeConfig(extensionConfiguration), - ...resolveHttpAuthRuntimeConfig(extensionConfiguration), - }; -}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/QDeveloperStreaming.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/QDeveloperStreaming.d.ts deleted file mode 100644 index 34b559bd414..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/QDeveloperStreaming.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { QDeveloperStreamingClient } from "./QDeveloperStreamingClient"; -import { GenerateCodeFromCommandsCommandInput, GenerateCodeFromCommandsCommandOutput } from "./commands/GenerateCodeFromCommandsCommand"; -import { SendMessageCommandInput, SendMessageCommandOutput } from "./commands/SendMessageCommand"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -export interface QDeveloperStreaming { - /** - * @see {@link GenerateCodeFromCommandsCommand} - */ - generateCodeFromCommands(args: GenerateCodeFromCommandsCommandInput, options?: __HttpHandlerOptions): Promise; - generateCodeFromCommands(args: GenerateCodeFromCommandsCommandInput, cb: (err: any, data?: GenerateCodeFromCommandsCommandOutput) => void): void; - generateCodeFromCommands(args: GenerateCodeFromCommandsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GenerateCodeFromCommandsCommandOutput) => void): void; - /** - * @see {@link SendMessageCommand} - */ - sendMessage(args: SendMessageCommandInput, options?: __HttpHandlerOptions): Promise; - sendMessage(args: SendMessageCommandInput, cb: (err: any, data?: SendMessageCommandOutput) => void): void; - sendMessage(args: SendMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendMessageCommandOutput) => void): void; -} -/** - * @public - */ -export declare class QDeveloperStreaming extends QDeveloperStreamingClient implements QDeveloperStreaming { -} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/QDeveloperStreamingClient.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/QDeveloperStreamingClient.d.ts deleted file mode 100644 index d619e84378c..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/QDeveloperStreamingClient.d.ts +++ /dev/null @@ -1,178 +0,0 @@ -import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider"; -import { GenerateCodeFromCommandsCommandInput, GenerateCodeFromCommandsCommandOutput } from "./commands/GenerateCodeFromCommandsCommand"; -import { SendMessageCommandInput, SendMessageCommandOutput } from "./commands/SendMessageCommand"; -import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; -import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header"; -import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent"; -import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@smithy/config-resolver"; -import { EventStreamSerdeInputConfig, EventStreamSerdeResolvedConfig } from "@smithy/eventstream-serde-config-resolver"; -import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; -import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client"; -import { AwsCredentialIdentityProvider, Provider, RegionInfoProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, EventStreamSerdeProvider as __EventStreamSerdeProvider, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types"; -export { __Client }; -/** - * @public - */ -export type ServiceInputTypes = GenerateCodeFromCommandsCommandInput | SendMessageCommandInput; -/** - * @public - */ -export type ServiceOutputTypes = GenerateCodeFromCommandsCommandOutput | SendMessageCommandOutput; -/** - * @public - */ -export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> { - /** - * The HTTP handler to use or its constructor options. Fetch in browser and Https in Nodejs. - */ - requestHandler?: __HttpHandlerUserInput; - /** - * A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface - * that computes the SHA-256 HMAC or checksum of a string or binary buffer. - * @internal - */ - sha256?: __ChecksumConstructor | __HashConstructor; - /** - * The function that will be used to convert strings into HTTP endpoints. - * @internal - */ - urlParser?: __UrlParser; - /** - * A function that can calculate the length of a request body. - * @internal - */ - bodyLengthChecker?: __BodyLengthCalculator; - /** - * A function that converts a stream into an array of bytes. - * @internal - */ - streamCollector?: __StreamCollector; - /** - * The function that will be used to convert a base64-encoded string to a byte array. - * @internal - */ - base64Decoder?: __Decoder; - /** - * The function that will be used to convert binary data to a base64-encoded string. - * @internal - */ - base64Encoder?: __Encoder; - /** - * The function that will be used to convert a UTF8-encoded string to a byte array. - * @internal - */ - utf8Decoder?: __Decoder; - /** - * The function that will be used to convert binary data to a UTF-8 encoded string. - * @internal - */ - utf8Encoder?: __Encoder; - /** - * The runtime environment. - * @internal - */ - runtime?: string; - /** - * Disable dynamically changing the endpoint of the client based on the hostPrefix - * trait of an operation. - */ - disableHostPrefix?: boolean; - /** - * Unique service identifier. - * @internal - */ - serviceId?: string; - /** - * Enables IPv6/IPv4 dualstack endpoint. - */ - useDualstackEndpoint?: boolean | __Provider; - /** - * Enables FIPS compatible endpoints. - */ - useFipsEndpoint?: boolean | __Provider; - /** - * The AWS region to which this client will send requests - */ - region?: string | __Provider; - /** - * Fetch related hostname, signing name or signing region with given region. - * @internal - */ - regionInfoProvider?: RegionInfoProvider; - /** - * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header - * @internal - */ - defaultUserAgentProvider?: Provider<__UserAgent>; - /** - * Default credentials provider; Not available in browser runtime. - * @deprecated - * @internal - */ - credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider; - /** - * Value for how many times a request will be made at most in case of retry. - */ - maxAttempts?: number | __Provider; - /** - * Specifies which retry algorithm to use. - * @see https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-util-retry/Enum/RETRY_MODES/ - * - */ - retryMode?: string | __Provider; - /** - * Optional logger for logging debug/info/warn/error. - */ - logger?: __Logger; - /** - * Optional extensions - */ - extensions?: RuntimeExtension[]; - /** - * The function that provides necessary utilities for generating and parsing event stream - */ - eventStreamSerdeProvider?: __EventStreamSerdeProvider; - /** - * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK. - */ - defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>; -} -/** - * @public - */ -export type QDeveloperStreamingClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointsInputConfig & EventStreamSerdeInputConfig & HttpAuthSchemeInputConfig; -/** - * @public - * - * The configuration interface of QDeveloperStreamingClient class constructor that set the region, credentials and other options. - */ -export interface QDeveloperStreamingClientConfig extends QDeveloperStreamingClientConfigType { -} -/** - * @public - */ -export type QDeveloperStreamingClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointsResolvedConfig & EventStreamSerdeResolvedConfig & HttpAuthSchemeResolvedConfig; -/** - * @public - * - * The resolved configuration interface of QDeveloperStreamingClient class. This is resolved and normalized from the {@link QDeveloperStreamingClientConfig | constructor configuration interface}. - */ -export interface QDeveloperStreamingClientResolvedConfig extends QDeveloperStreamingClientResolvedConfigType { -} -/** - * @public - */ -export declare class QDeveloperStreamingClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, QDeveloperStreamingClientResolvedConfig> { - /** - * The resolved configuration of QDeveloperStreamingClient class. This is resolved and normalized from the {@link QDeveloperStreamingClientConfig | constructor configuration interface}. - */ - readonly config: QDeveloperStreamingClientResolvedConfig; - constructor(...[configuration]: __CheckOptionalClientConfig); - /** - * Destroy underlying resources, like sockets. It's usually not necessary to do this. - * However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed. - * Otherwise, sockets might stay open for quite a long time before the server terminates them. - */ - destroy(): void; -} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/auth/httpAuthExtensionConfiguration.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/auth/httpAuthExtensionConfiguration.d.ts deleted file mode 100644 index b714c522a97..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/auth/httpAuthExtensionConfiguration.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { QDeveloperStreamingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; -/** - * @internal - */ -export interface HttpAuthExtensionConfiguration { - setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void; - httpAuthSchemes(): HttpAuthScheme[]; - setHttpAuthSchemeProvider(httpAuthSchemeProvider: QDeveloperStreamingHttpAuthSchemeProvider): void; - httpAuthSchemeProvider(): QDeveloperStreamingHttpAuthSchemeProvider; - setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void; - credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined; -} -/** - * @internal - */ -export type HttpAuthRuntimeConfig = Partial<{ - httpAuthSchemes: HttpAuthScheme[]; - httpAuthSchemeProvider: QDeveloperStreamingHttpAuthSchemeProvider; - credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider; -}>; -/** - * @internal - */ -export declare const getHttpAuthExtensionConfiguration: (runtimeConfig: HttpAuthRuntimeConfig) => HttpAuthExtensionConfiguration; -/** - * @internal - */ -export declare const resolveHttpAuthRuntimeConfig: (config: HttpAuthExtensionConfiguration) => HttpAuthRuntimeConfig; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/auth/httpAuthSchemeProvider.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/auth/httpAuthSchemeProvider.d.ts deleted file mode 100644 index 71923485aee..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/auth/httpAuthSchemeProvider.d.ts +++ /dev/null @@ -1,61 +0,0 @@ -import { QDeveloperStreamingClientResolvedConfig } from "../QDeveloperStreamingClient"; -import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core"; -import { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider } from "@smithy/types"; -/** - * @internal - */ -export interface QDeveloperStreamingHttpAuthSchemeParameters extends HttpAuthSchemeParameters { - region?: string; -} -/** - * @internal - */ -export interface QDeveloperStreamingHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider { -} -/** - * @internal - */ -export declare const defaultQDeveloperStreamingHttpAuthSchemeParametersProvider: (config: QDeveloperStreamingClientResolvedConfig, context: HandlerExecutionContext, input: object) => Promise; -/** - * @internal - */ -export interface QDeveloperStreamingHttpAuthSchemeProvider extends HttpAuthSchemeProvider { -} -/** - * @internal - */ -export declare const defaultQDeveloperStreamingHttpAuthSchemeProvider: QDeveloperStreamingHttpAuthSchemeProvider; -/** - * @internal - */ -export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig { - /** - * Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme. - * @internal - */ - httpAuthSchemes?: HttpAuthScheme[]; - /** - * Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use. - * @internal - */ - httpAuthSchemeProvider?: QDeveloperStreamingHttpAuthSchemeProvider; -} -/** - * @internal - */ -export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig { - /** - * Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme. - * @internal - */ - readonly httpAuthSchemes: HttpAuthScheme[]; - /** - * Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use. - * @internal - */ - readonly httpAuthSchemeProvider: QDeveloperStreamingHttpAuthSchemeProvider; -} -/** - * @internal - */ -export declare const resolveHttpAuthSchemeConfig: (config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved) => T & HttpAuthSchemeResolvedConfig; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/GenerateCodeFromCommandsCommand.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/GenerateCodeFromCommandsCommand.d.ts deleted file mode 100644 index 52ec52d0587..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/GenerateCodeFromCommandsCommand.d.ts +++ /dev/null @@ -1,102 +0,0 @@ -import { QDeveloperStreamingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QDeveloperStreamingClient"; -import { GenerateCodeFromCommandsRequest, GenerateCodeFromCommandsResponse } from "../models/models_0"; -import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; -/** - * @public - */ -export type { __MetadataBearer }; -export { $Command }; -/** - * @public - * - * The input for {@link GenerateCodeFromCommandsCommand}. - */ -export interface GenerateCodeFromCommandsCommandInput extends GenerateCodeFromCommandsRequest { -} -/** - * @public - * - * The output of {@link GenerateCodeFromCommandsCommand}. - */ -export interface GenerateCodeFromCommandsCommandOutput extends GenerateCodeFromCommandsResponse, __MetadataBearer { -} -declare const GenerateCodeFromCommandsCommand_base: { - new (input: GenerateCodeFromCommandsCommandInput): import("@smithy/smithy-client").CommandImpl; - new (__0_0: GenerateCodeFromCommandsCommandInput): import("@smithy/smithy-client").CommandImpl; - getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; -}; -/** - * API to generate infrastructure as code from cli commands. - * @example - * Use a bare-bones client and the command you need to make an API call. - * ```javascript - * import { QDeveloperStreamingClient, GenerateCodeFromCommandsCommand } from "@amzn/amazon-q-developer-streaming-client"; // ES Modules import - * // const { QDeveloperStreamingClient, GenerateCodeFromCommandsCommand } = require("@amzn/amazon-q-developer-streaming-client"); // CommonJS import - * const client = new QDeveloperStreamingClient(config); - * const input = { // GenerateCodeFromCommandsRequest - * outputFormat: "typescript/cdk" || "java/cdk" || "python/cdk" || "yaml/cfn" || "json/cfn", // required - * commands: { // CommandInput Union: only one key present - * commandsList: [ // CliCommandsList - * "STRING_VALUE", - * ], - * }, - * }; - * const command = new GenerateCodeFromCommandsCommand(input); - * const response = await client.send(command); - * // { // GenerateCodeFromCommandsResponse - * // generatedCodeFromCommandsResponse: { // GenerateCodeFromCommandsResponseStream Union: only one key present - * // codeEvent: { // CodeEvent - * // content: "STRING_VALUE", // required - * // }, - * // Error: { // InternalServerException - * // message: "STRING_VALUE", // required - * // }, - * // QuotaLevelExceededError: { // ServiceQuotaExceededException - * // message: "STRING_VALUE", // required - * // }, - * // ValidationError: { // ValidationException - * // message: "STRING_VALUE", // required - * // reason: "INVALID_CONVERSATION_ID" || "CONTENT_LENGTH_EXCEEDS_THRESHOLD" || "INVALID_KMS_GRANT", - * // }, - * // }, - * // }; - * - * ``` - * - * @param GenerateCodeFromCommandsCommandInput - {@link GenerateCodeFromCommandsCommandInput} - * @returns {@link GenerateCodeFromCommandsCommandOutput} - * @see {@link GenerateCodeFromCommandsCommandInput} for command's `input` shape. - * @see {@link GenerateCodeFromCommandsCommandOutput} for command's `response` shape. - * @see {@link QDeveloperStreamingClientResolvedConfig | config} for QDeveloperStreamingClient's `config` shape. - * - * @throws {@link InternalServerException} (server fault) - * This exception is thrown when an unexpected error occurred during the processing of a request. - * - * @throws {@link ThrottlingException} (client fault) - * This exception is thrown when request was denied due to request throttling. - * - * @throws {@link ValidationException} (client fault) - * This exception is thrown when the input fails to satisfy the constraints specified by the service. - * - * @throws {@link AccessDeniedException} (client fault) - * This exception is thrown when the user does not have sufficient access to perform this action. - * - * @throws {@link QDeveloperStreamingServiceException} - *

Base exception class for all service exceptions from QDeveloperStreaming service.

- * - * @public - */ -export declare class GenerateCodeFromCommandsCommand extends GenerateCodeFromCommandsCommand_base { - /** @internal type navigation helper, not in runtime. */ - protected static __types: { - api: { - input: GenerateCodeFromCommandsRequest; - output: GenerateCodeFromCommandsResponse; - }; - sdk: { - input: GenerateCodeFromCommandsCommandInput; - output: GenerateCodeFromCommandsCommandOutput; - }; - }; -} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/SendMessageCommand.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/SendMessageCommand.d.ts deleted file mode 100644 index e83cc4ca40a..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/SendMessageCommand.d.ts +++ /dev/null @@ -1,622 +0,0 @@ -import { QDeveloperStreamingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QDeveloperStreamingClient"; -import { SendMessageRequest, SendMessageResponse } from "../models/models_0"; -import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; -/** - * @public - */ -export type { __MetadataBearer }; -export { $Command }; -/** - * @public - * - * The input for {@link SendMessageCommand}. - */ -export interface SendMessageCommandInput extends SendMessageRequest { -} -/** - * @public - * - * The output of {@link SendMessageCommand}. - */ -export interface SendMessageCommandOutput extends SendMessageResponse, __MetadataBearer { -} -declare const SendMessageCommand_base: { - new (input: SendMessageCommandInput): import("@smithy/smithy-client").CommandImpl; - new (__0_0: SendMessageCommandInput): import("@smithy/smithy-client").CommandImpl; - getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; -}; -/** - * @public - * - * @example - * Use a bare-bones client and the command you need to make an API call. - * ```javascript - * import { QDeveloperStreamingClient, SendMessageCommand } from "@amzn/amazon-q-developer-streaming-client"; // ES Modules import - * // const { QDeveloperStreamingClient, SendMessageCommand } = require("@amzn/amazon-q-developer-streaming-client"); // CommonJS import - * const client = new QDeveloperStreamingClient(config); - * const input = { // SendMessageRequest - * conversationState: { // ConversationState - * conversationId: "STRING_VALUE", - * history: [ // ChatHistory - * { // ChatMessage Union: only one key present - * userInputMessage: { // UserInputMessage - * content: "STRING_VALUE", // required - * userInputMessageContext: { // UserInputMessageContext - * editorState: { // EditorState - * document: { // TextDocument - * relativeFilePath: "STRING_VALUE", // required - * programmingLanguage: { // ProgrammingLanguage - * languageName: "STRING_VALUE", // required - * }, - * text: "STRING_VALUE", - * documentSymbols: [ // DocumentSymbols - * { // DocumentSymbol - * name: "STRING_VALUE", // required - * type: "DECLARATION" || "USAGE", // required - * source: "STRING_VALUE", - * }, - * ], - * }, - * cursorState: { // CursorState Union: only one key present - * position: { // Position - * line: Number("int"), // required - * character: Number("int"), // required - * }, - * range: { // Range - * start: { - * line: Number("int"), // required - * character: Number("int"), // required - * }, - * end: { - * line: Number("int"), // required - * character: Number("int"), // required - * }, - * }, - * }, - * relevantDocuments: [ // RelevantDocumentList - * { // RelevantTextDocument - * relativeFilePath: "STRING_VALUE", // required - * programmingLanguage: { - * languageName: "STRING_VALUE", // required - * }, - * text: "STRING_VALUE", - * documentSymbols: [ - * { - * name: "STRING_VALUE", // required - * type: "DECLARATION" || "USAGE", // required - * source: "STRING_VALUE", - * }, - * ], - * }, - * ], - * useRelevantDocuments: true || false, - * }, - * shellState: { // ShellState - * shellName: "STRING_VALUE", // required - * shellHistory: [ // ShellHistory - * { // ShellHistoryEntry - * command: "STRING_VALUE", // required - * directory: "STRING_VALUE", - * exitCode: Number("int"), - * stdout: "STRING_VALUE", - * stderr: "STRING_VALUE", - * }, - * ], - * }, - * gitState: { // GitState - * status: "STRING_VALUE", - * }, - * envState: { // EnvState - * operatingSystem: "STRING_VALUE", - * currentWorkingDirectory: "STRING_VALUE", - * environmentVariables: [ // EnvironmentVariables - * { // EnvironmentVariable - * key: "STRING_VALUE", - * value: "STRING_VALUE", - * }, - * ], - * }, - * appStudioContext: { // AppStudioState - * namespace: "STRING_VALUE", // required - * propertyName: "STRING_VALUE", // required - * propertyValue: "STRING_VALUE", - * propertyContext: "STRING_VALUE", // required - * }, - * diagnostic: { // Diagnostic Union: only one key present - * textDocumentDiagnostic: { // TextDocumentDiagnostic - * document: { - * relativeFilePath: "STRING_VALUE", // required - * programmingLanguage: { - * languageName: "STRING_VALUE", // required - * }, - * text: "STRING_VALUE", - * documentSymbols: [ - * { - * name: "STRING_VALUE", // required - * type: "DECLARATION" || "USAGE", // required - * source: "STRING_VALUE", - * }, - * ], - * }, - * range: { - * start: { - * line: Number("int"), // required - * character: Number("int"), // required - * }, - * end: { - * line: Number("int"), // required - * character: Number("int"), // required - * }, - * }, - * source: "STRING_VALUE", // required - * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required - * message: "STRING_VALUE", // required - * }, - * runtimeDiagnostic: { // RuntimeDiagnostic - * source: "STRING_VALUE", // required - * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required - * message: "STRING_VALUE", // required - * }, - * }, - * consoleState: { // ConsoleState - * region: "STRING_VALUE", - * consoleUrl: "STRING_VALUE", - * serviceId: "STRING_VALUE", - * serviceConsolePage: "STRING_VALUE", - * serviceSubconsolePage: "STRING_VALUE", - * taskName: "STRING_VALUE", - * }, - * userSettings: { // UserSettings - * hasConsentedToCrossRegionCalls: true || false, - * }, - * }, - * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS" || "CODE_GENERATION", - * }, - * assistantResponseMessage: { // AssistantResponseMessage - * messageId: "STRING_VALUE", - * content: "STRING_VALUE", // required - * supplementaryWebLinks: [ // SupplementaryWebLinks - * { // SupplementaryWebLink - * url: "STRING_VALUE", // required - * title: "STRING_VALUE", // required - * snippet: "STRING_VALUE", - * }, - * ], - * references: [ // References - * { // Reference - * licenseName: "STRING_VALUE", - * repository: "STRING_VALUE", - * url: "STRING_VALUE", - * recommendationContentSpan: { // Span - * start: Number("int"), - * end: Number("int"), - * }, - * }, - * ], - * followupPrompt: { // FollowupPrompt - * content: "STRING_VALUE", // required - * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS" || "CODE_GENERATION", - * }, - * }, - * }, - * ], - * currentMessage: {// Union: only one key present - * userInputMessage: { - * content: "STRING_VALUE", // required - * userInputMessageContext: { - * editorState: { - * document: "", - * cursorState: {// Union: only one key present - * position: "", - * range: { - * start: "", // required - * end: "", // required - * }, - * }, - * relevantDocuments: [ - * { - * relativeFilePath: "STRING_VALUE", // required - * programmingLanguage: { - * languageName: "STRING_VALUE", // required - * }, - * text: "STRING_VALUE", - * documentSymbols: [ - * { - * name: "STRING_VALUE", // required - * type: "DECLARATION" || "USAGE", // required - * source: "STRING_VALUE", - * }, - * ], - * }, - * ], - * useRelevantDocuments: true || false, - * }, - * shellState: { - * shellName: "STRING_VALUE", // required - * shellHistory: [ - * { - * command: "STRING_VALUE", // required - * directory: "STRING_VALUE", - * exitCode: Number("int"), - * stdout: "STRING_VALUE", - * stderr: "STRING_VALUE", - * }, - * ], - * }, - * gitState: { - * status: "STRING_VALUE", - * }, - * envState: { - * operatingSystem: "STRING_VALUE", - * currentWorkingDirectory: "STRING_VALUE", - * environmentVariables: [ - * { - * key: "STRING_VALUE", - * value: "STRING_VALUE", - * }, - * ], - * }, - * appStudioContext: { - * namespace: "STRING_VALUE", // required - * propertyName: "STRING_VALUE", // required - * propertyValue: "STRING_VALUE", - * propertyContext: "STRING_VALUE", // required - * }, - * diagnostic: {// Union: only one key present - * textDocumentDiagnostic: { - * document: "", // required - * range: { - * start: "", // required - * end: "", // required - * }, - * source: "STRING_VALUE", // required - * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required - * message: "STRING_VALUE", // required - * }, - * runtimeDiagnostic: { - * source: "STRING_VALUE", // required - * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required - * message: "STRING_VALUE", // required - * }, - * }, - * consoleState: { - * region: "STRING_VALUE", - * consoleUrl: "STRING_VALUE", - * serviceId: "STRING_VALUE", - * serviceConsolePage: "STRING_VALUE", - * serviceSubconsolePage: "STRING_VALUE", - * taskName: "STRING_VALUE", - * }, - * userSettings: { - * hasConsentedToCrossRegionCalls: true || false, - * }, - * }, - * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS" || "CODE_GENERATION", - * }, - * assistantResponseMessage: { - * messageId: "STRING_VALUE", - * content: "STRING_VALUE", // required - * supplementaryWebLinks: [ - * { - * url: "STRING_VALUE", // required - * title: "STRING_VALUE", // required - * snippet: "STRING_VALUE", - * }, - * ], - * references: [ - * { - * licenseName: "STRING_VALUE", - * repository: "STRING_VALUE", - * url: "STRING_VALUE", - * recommendationContentSpan: { - * start: Number("int"), - * end: Number("int"), - * }, - * }, - * ], - * followupPrompt: { - * content: "STRING_VALUE", // required - * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS" || "CODE_GENERATION", - * }, - * }, - * }, - * chatTriggerType: "MANUAL" || "DIAGNOSTIC" || "INLINE_CHAT", // required - * customizationArn: "STRING_VALUE", - * }, - * profileArn: "STRING_VALUE", - * source: "STRING_VALUE", - * dryRun: true || false, - * }; - * const command = new SendMessageCommand(input); - * const response = await client.send(command); - * // { // SendMessageResponse - * // sendMessageResponse: { // ChatResponseStream Union: only one key present - * // messageMetadataEvent: { // MessageMetadataEvent - * // conversationId: "STRING_VALUE", - * // utteranceId: "STRING_VALUE", - * // }, - * // assistantResponseEvent: { // AssistantResponseEvent - * // content: "STRING_VALUE", // required - * // }, - * // dryRunSucceedEvent: {}, - * // codeReferenceEvent: { // CodeReferenceEvent - * // references: [ // References - * // { // Reference - * // licenseName: "STRING_VALUE", - * // repository: "STRING_VALUE", - * // url: "STRING_VALUE", - * // recommendationContentSpan: { // Span - * // start: Number("int"), - * // end: Number("int"), - * // }, - * // }, - * // ], - * // }, - * // supplementaryWebLinksEvent: { // SupplementaryWebLinksEvent - * // supplementaryWebLinks: [ // SupplementaryWebLinks - * // { // SupplementaryWebLink - * // url: "STRING_VALUE", // required - * // title: "STRING_VALUE", // required - * // snippet: "STRING_VALUE", - * // }, - * // ], - * // }, - * // followupPromptEvent: { // FollowupPromptEvent - * // followupPrompt: { // FollowupPrompt - * // content: "STRING_VALUE", // required - * // userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS" || "CODE_GENERATION", - * // }, - * // }, - * // codeEvent: { // CodeEvent - * // content: "STRING_VALUE", // required - * // }, - * // intentsEvent: { // IntentsEvent - * // intents: { // IntentMap - * // "": { // IntentData - * // "": { // IntentDataType Union: only one key present - * // string: "STRING_VALUE", - * // }, - * // }, - * // }, - * // }, - * // interactionComponentsEvent: { // InteractionComponentsEvent - * // interactionComponentEntries: [ // InteractionComponentEntryList // required - * // { // InteractionComponentEntry - * // interactionComponentId: "STRING_VALUE", - * // interactionComponent: { // InteractionComponent - * // text: { // Text - * // content: "STRING_VALUE", // required - * // }, - * // alert: { // Alert - * // type: "INFO" || "ERROR" || "WARNING", // required - * // content: [ // AlertComponentList // required - * // { // AlertComponent - * // text: { - * // content: "STRING_VALUE", // required - * // }, - * // }, - * // ], - * // }, - * // infrastructureUpdate: { // InfrastructureUpdate - * // transition: { // InfrastructureUpdateTransition - * // currentState: "STRING_VALUE", // required - * // nextState: "STRING_VALUE", // required - * // }, - * // }, - * // progress: { // Progress - * // content: [ // ProgressComponentList // required - * // { // ProgressComponent - * // step: { // Step - * // id: Number("int"), // required - * // state: "FAILED" || "SUCCEEDED" || "STOPPED" || "PENDING" || "IN_PROGRESS" || "LOADING" || "PAUSED", // required - * // label: "STRING_VALUE", // required - * // content: [ // StepComponentList - * // { // StepComponent - * // text: "", - * // }, - * // ], - * // }, - * // }, - * // ], - * // }, - * // step: { - * // id: Number("int"), // required - * // state: "FAILED" || "SUCCEEDED" || "STOPPED" || "PENDING" || "IN_PROGRESS" || "LOADING" || "PAUSED", // required - * // label: "STRING_VALUE", // required - * // content: [ - * // { - * // text: "", - * // }, - * // ], - * // }, - * // taskDetails: { // TaskDetails - * // overview: { // TaskOverview - * // label: "STRING_VALUE", // required - * // description: "STRING_VALUE", // required - * // }, - * // content: [ // TaskComponentList // required - * // { // TaskComponent - * // text: "", - * // infrastructureUpdate: { - * // transition: { - * // currentState: "STRING_VALUE", // required - * // nextState: "STRING_VALUE", // required - * // }, - * // }, - * // alert: { - * // type: "INFO" || "ERROR" || "WARNING", // required - * // content: [ // required - * // { - * // text: "", - * // }, - * // ], - * // }, - * // progress: { - * // content: [ // required - * // { - * // step: "", - * // }, - * // ], - * // }, - * // }, - * // ], - * // actions: [ // TaskActionList - * // { // TaskAction - * // label: "STRING_VALUE", // required - * // note: { // TaskActionNote - * // content: "STRING_VALUE", // required - * // type: "INFO" || "WARNING", - * // }, - * // primary: true || false, - * // disabled: true || false, - * // payload: { // TaskActionPayload // required - * // "": "STRING_VALUE", - * // }, - * // confirmation: { // TaskActionConfirmation - * // content: "STRING_VALUE", - * // }, - * // }, - * // ], - * // }, - * // taskReference: { // TaskReference - * // taskId: "STRING_VALUE", // required - * // }, - * // suggestions: { // Suggestions - * // items: [ // SuggestionList // required - * // { // Suggestion - * // value: "STRING_VALUE", // required - * // }, - * // ], - * // }, - * // section: { // Section - * // title: "STRING_VALUE", // required - * // content: [ // SectionComponentList // required - * // { // SectionComponent Union: only one key present - * // text: "", - * // alert: { - * // type: "INFO" || "ERROR" || "WARNING", // required - * // content: [ // required - * // { - * // text: "", - * // }, - * // ], - * // }, - * // resource: { // Resource - * // title: "STRING_VALUE", // required - * // link: "STRING_VALUE", // required - * // description: "STRING_VALUE", // required - * // type: "STRING_VALUE", // required - * // ARN: "STRING_VALUE", // required - * // resourceJsonString: "STRING_VALUE", // required - * // }, - * // resourceList: { // ResourceList - * // action: { // Action Union: only one key present - * // webLink: { // WebLink - * // label: "STRING_VALUE", // required - * // url: "STRING_VALUE", // required - * // }, - * // moduleLink: { // ModuleLink Union: only one key present - * // cloudWatchTroubleshootingLink: { // CloudWatchTroubleshootingLink - * // label: "STRING_VALUE", // required - * // investigationPayload: "STRING_VALUE", // required - * // defaultText: "STRING_VALUE", - * // }, - * // }, - * // }, - * // items: [ // Resources // required - * // { - * // title: "STRING_VALUE", // required - * // link: "STRING_VALUE", // required - * // description: "STRING_VALUE", // required - * // type: "STRING_VALUE", // required - * // ARN: "STRING_VALUE", // required - * // resourceJsonString: "STRING_VALUE", // required - * // }, - * // ], - * // }, - * // }, - * // ], - * // }, - * // resource: "", - * // resourceList: { - * // action: {// Union: only one key present - * // webLink: { - * // label: "STRING_VALUE", // required - * // url: "STRING_VALUE", // required - * // }, - * // moduleLink: {// Union: only one key present - * // cloudWatchTroubleshootingLink: { - * // label: "STRING_VALUE", // required - * // investigationPayload: "STRING_VALUE", // required - * // defaultText: "STRING_VALUE", - * // }, - * // }, - * // }, - * // items: [ // required - * // "", - * // ], - * // }, - * // }, - * // }, - * // ], - * // }, - * // invalidStateEvent: { // InvalidStateEvent - * // reason: "INVALID_TASK_ASSIST_PLAN", // required - * // message: "STRING_VALUE", // required - * // }, - * // error: { // InternalServerException - * // message: "STRING_VALUE", // required - * // }, - * // }, - * // }; - * - * ``` - * - * @param SendMessageCommandInput - {@link SendMessageCommandInput} - * @returns {@link SendMessageCommandOutput} - * @see {@link SendMessageCommandInput} for command's `input` shape. - * @see {@link SendMessageCommandOutput} for command's `response` shape. - * @see {@link QDeveloperStreamingClientResolvedConfig | config} for QDeveloperStreamingClient's `config` shape. - * - * @throws {@link InternalServerException} (server fault) - * This exception is thrown when an unexpected error occurred during the processing of a request. - * - * @throws {@link ServiceQuotaExceededException} (client fault) - * This exception is thrown when request was denied due to caller exceeding their usage limits - * - * @throws {@link DryRunOperationException} (client fault) - * This exception is translated to a 204 as it succeeded the IAM Auth. - * - * @throws {@link ThrottlingException} (client fault) - * This exception is thrown when request was denied due to request throttling. - * - * @throws {@link ValidationException} (client fault) - * This exception is thrown when the input fails to satisfy the constraints specified by the service. - * - * @throws {@link ConflictException} (client fault) - * This exception is thrown when the action to perform could not be completed because the resource is in a conflicting state. - * - * @throws {@link ResourceNotFoundException} (client fault) - * This exception is thrown when describing a resource that does not exist. - * - * @throws {@link AccessDeniedException} (client fault) - * This exception is thrown when the user does not have sufficient access to perform this action. - * - * @throws {@link QDeveloperStreamingServiceException} - *

Base exception class for all service exceptions from QDeveloperStreaming service.

- * - */ -export declare class SendMessageCommand extends SendMessageCommand_base { - /** @internal type navigation helper, not in runtime. */ - protected static __types: { - api: { - input: SendMessageRequest; - output: SendMessageResponse; - }; - sdk: { - input: SendMessageCommandInput; - output: SendMessageCommandOutput; - }; - }; -} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/index.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/index.d.ts deleted file mode 100644 index daae8549029..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/commands/index.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from "./GenerateCodeFromCommandsCommand"; -export * from "./SendMessageCommand"; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/endpoints.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/endpoints.d.ts deleted file mode 100644 index 4605191af31..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/endpoints.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -import { RegionInfoProvider } from "@aws-sdk/types"; -export declare const defaultRegionInfoProvider: RegionInfoProvider; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/extensionConfiguration.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/extensionConfiguration.d.ts deleted file mode 100644 index 3b9ea18cfd5..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/extensionConfiguration.d.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; -/** - * @internal - */ -export interface QDeveloperStreamingExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration, HttpAuthExtensionConfiguration { -} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/index.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/index.d.ts deleted file mode 100644 index 35429f10bc1..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/index.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -export * from "./QDeveloperStreamingClient"; -export * from "./QDeveloperStreaming"; -export type { RuntimeExtension } from "./runtimeExtensions"; -export type { QDeveloperStreamingExtensionConfiguration } from "./extensionConfiguration"; -export * from "./commands"; -export * from "./models"; -export { QDeveloperStreamingServiceException } from "./models/QDeveloperStreamingServiceException"; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/QDeveloperStreamingServiceException.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/QDeveloperStreamingServiceException.d.ts deleted file mode 100644 index e765fa8f1b1..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/QDeveloperStreamingServiceException.d.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client"; -export type { __ServiceExceptionOptions }; -export { __ServiceException }; -/** - * @public - * - * Base exception class for all service exceptions from QDeveloperStreaming service. - */ -export declare class QDeveloperStreamingServiceException extends __ServiceException { - /** - * @internal - */ - constructor(options: __ServiceExceptionOptions); -} diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/index.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/index.d.ts deleted file mode 100644 index 09c5d6e09b8..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/index.d.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./models_0"; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/models_0.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/models_0.d.ts deleted file mode 100644 index 130fd93d169..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/models/models_0.d.ts +++ /dev/null @@ -1,2422 +0,0 @@ -import { QDeveloperStreamingServiceException as __BaseException } from "./QDeveloperStreamingServiceException"; -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; -/** - * @public - * @enum - */ -export declare const AccessDeniedExceptionReason: { - readonly UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS: "UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS"; -}; -/** - * @public - */ -export type AccessDeniedExceptionReason = typeof AccessDeniedExceptionReason[keyof typeof AccessDeniedExceptionReason]; -/** - * This exception is thrown when the user does not have sufficient access to perform this action. - * @public - */ -export declare class AccessDeniedException extends __BaseException { - readonly name: "AccessDeniedException"; - readonly $fault: "client"; - /** - * Reason for AccessDeniedException - * @public - */ - reason?: AccessDeniedExceptionReason; - /** - * @internal - */ - constructor(opts: __ExceptionOptionType); -} -/** - * This exception is thrown when an unexpected error occurred during the processing of a request. - * @public - */ -export declare class InternalServerException extends __BaseException { - readonly name: "InternalServerException"; - readonly $fault: "server"; - $retryable: {}; - /** - * @internal - */ - constructor(opts: __ExceptionOptionType); -} -/** - * This exception is thrown when describing a resource that does not exist. - * @public - */ -export declare class ResourceNotFoundException extends __BaseException { - readonly name: "ResourceNotFoundException"; - readonly $fault: "client"; - /** - * @internal - */ - constructor(opts: __ExceptionOptionType); -} -/** - * This exception is thrown when request was denied due to request throttling. - * @public - */ -export declare class ThrottlingException extends __BaseException { - readonly name: "ThrottlingException"; - readonly $fault: "client"; - $retryable: { - throttling: boolean; - }; - /** - * @internal - */ - constructor(opts: __ExceptionOptionType); -} -/** - * @public - * @enum - */ -export declare const ValidationExceptionReason: { - readonly CONTENT_LENGTH_EXCEEDS_THRESHOLD: "CONTENT_LENGTH_EXCEEDS_THRESHOLD"; - readonly INVALID_CONVERSATION_ID: "INVALID_CONVERSATION_ID"; - readonly INVALID_KMS_GRANT: "INVALID_KMS_GRANT"; -}; -/** - * @public - */ -export type ValidationExceptionReason = typeof ValidationExceptionReason[keyof typeof ValidationExceptionReason]; -/** - * This exception is thrown when the input fails to satisfy the constraints specified by the service. - * @public - */ -export declare class ValidationException extends __BaseException { - readonly name: "ValidationException"; - readonly $fault: "client"; - /** - * Reason for ValidationException - * @public - */ - reason?: ValidationExceptionReason; - /** - * @internal - */ - constructor(opts: __ExceptionOptionType); -} -/** - * Description of a user's context when they are calling Q Chat from AppStudio - * @public - */ -export interface AppStudioState { - /** - * The namespace of the context. Examples: 'ui.Button', 'ui.Table.DataSource', 'ui.Table.RowActions.Button', 'logic.invokeAWS', 'logic.JavaScript' - * @public - */ - namespace: string | undefined; - /** - * The name of the property. Examples: 'visibility', 'disability', 'value', 'code' - * @public - */ - propertyName: string | undefined; - /** - * The value of the property. - * @public - */ - propertyValue?: string; - /** - * Context about how the property is used - * @public - */ - propertyContext: string | undefined; -} -/** - * @internal - */ -export declare const AppStudioStateFilterSensitiveLog: (obj: AppStudioState) => any; -/** - * Streaming Response Event for Assistant Markdown text message. - * @public - */ -export interface AssistantResponseEvent { - /** - * The content of the text message in markdown format. - * @public - */ - content: string | undefined; -} -/** - * @internal - */ -export declare const AssistantResponseEventFilterSensitiveLog: (obj: AssistantResponseEvent) => any; -/** - * @public - * @enum - */ -export declare const UserIntent: { - /** - * Apply Common Best Practices - */ - readonly APPLY_COMMON_BEST_PRACTICES: "APPLY_COMMON_BEST_PRACTICES"; - /** - * Cite Sources - */ - readonly CITE_SOURCES: "CITE_SOURCES"; - /** - * generate code - */ - readonly CODE_GENERATION: "CODE_GENERATION"; - /** - * Explain Code Selection - */ - readonly EXPLAIN_CODE_SELECTION: "EXPLAIN_CODE_SELECTION"; - /** - * Explain Code Line By Line - */ - readonly EXPLAIN_LINE_BY_LINE: "EXPLAIN_LINE_BY_LINE"; - /** - * Generate CloudFormation Template - */ - readonly GENERATE_CLOUDFORMATION_TEMPLATE: "GENERATE_CLOUDFORMATION_TEMPLATE"; - /** - * Generate Unit Tests - */ - readonly GENERATE_UNIT_TESTS: "GENERATE_UNIT_TESTS"; - /** - * Improve Code - */ - readonly IMPROVE_CODE: "IMPROVE_CODE"; - /** - * Show More Examples - */ - readonly SHOW_EXAMPLES: "SHOW_EXAMPLES"; - /** - * Suggest Alternative Implementation - */ - readonly SUGGEST_ALTERNATE_IMPLEMENTATION: "SUGGEST_ALTERNATE_IMPLEMENTATION"; -}; -/** - * @public - */ -export type UserIntent = typeof UserIntent[keyof typeof UserIntent]; -/** - * Followup Prompt for the Assistant Response - * @public - */ -export interface FollowupPrompt { - /** - * The content of the text message in markdown format. - * @public - */ - content: string | undefined; - /** - * User Intent - * @public - */ - userIntent?: UserIntent; -} -/** - * @internal - */ -export declare const FollowupPromptFilterSensitiveLog: (obj: FollowupPrompt) => any; -/** - * Represents span in a text - * @public - */ -export interface Span { - start?: number; - end?: number; -} -/** - * Code Reference / Repository details - * @public - */ -export interface Reference { - /** - * License name - * @public - */ - licenseName?: string; - /** - * Code Repsitory for the associated reference - * @public - */ - repository?: string; - /** - * Respository URL - * @public - */ - url?: string; - /** - * Span / Range for the Reference - * @public - */ - recommendationContentSpan?: Span; -} -/** - * Represents an additional reference link retured with the Chat message - * @public - */ -export interface SupplementaryWebLink { - /** - * URL of the web reference link - * @public - */ - url: string | undefined; - /** - * Title of the web reference link - * @public - */ - title: string | undefined; - /** - * Relevant text snippet from the link - * @public - */ - snippet?: string; -} -/** - * @internal - */ -export declare const SupplementaryWebLinkFilterSensitiveLog: (obj: SupplementaryWebLink) => any; -/** - * Markdown text message. - * @public - */ -export interface AssistantResponseMessage { - /** - * Unique identifier for the chat message - * @public - */ - messageId?: string; - /** - * The content of the text message in markdown format. - * @public - */ - content: string | undefined; - /** - * Web References - * @public - */ - supplementaryWebLinks?: (SupplementaryWebLink)[]; - /** - * Code References - * @public - */ - references?: (Reference)[]; - /** - * Followup Prompt - * @public - */ - followupPrompt?: FollowupPrompt; -} -/** - * @internal - */ -export declare const AssistantResponseMessageFilterSensitiveLog: (obj: AssistantResponseMessage) => any; -/** - * @public - * @enum - */ -export declare const ConflictExceptionReason: { - readonly CUSTOMER_KMS_KEY_DISABLED: "CUSTOMER_KMS_KEY_DISABLED"; - readonly CUSTOMER_KMS_KEY_INVALID_KEY_POLICY: "CUSTOMER_KMS_KEY_INVALID_KEY_POLICY"; - readonly MISMATCHED_KMS_KEY: "MISMATCHED_KMS_KEY"; -}; -/** - * @public - */ -export type ConflictExceptionReason = typeof ConflictExceptionReason[keyof typeof ConflictExceptionReason]; -/** - * This exception is thrown when the action to perform could not be completed because the resource is in a conflicting state. - * @public - */ -export declare class ConflictException extends __BaseException { - readonly name: "ConflictException"; - readonly $fault: "client"; - /** - * Reason for ConflictException - * @public - */ - reason?: ConflictExceptionReason; - /** - * @internal - */ - constructor(opts: __ExceptionOptionType); -} -/** - * Programming Languages supported by CodeWhisperer - * @public - */ -export interface ProgrammingLanguage { - languageName: string | undefined; -} -/** - * Information about the state of the AWS management console page from which the user is calling - * @public - */ -export interface ConsoleState { - region?: string; - consoleUrl?: string; - serviceId?: string; - serviceConsolePage?: string; - serviceSubconsolePage?: string; - taskName?: string; -} -/** - * @internal - */ -export declare const ConsoleStateFilterSensitiveLog: (obj: ConsoleState) => any; -/** - * @public - * @enum - */ -export declare const DiagnosticSeverity: { - readonly ERROR: "ERROR"; - readonly HINT: "HINT"; - readonly INFORMATION: "INFORMATION"; - readonly WARNING: "WARNING"; -}; -/** - * @public - */ -export type DiagnosticSeverity = typeof DiagnosticSeverity[keyof typeof DiagnosticSeverity]; -/** - * Structure to represent metadata about a Runtime Diagnostics - * @public - */ -export interface RuntimeDiagnostic { - /** - * A human-readable string describing the source of the diagnostic - * @public - */ - source: string | undefined; - /** - * Diagnostic Error type - * @public - */ - severity: DiagnosticSeverity | undefined; - /** - * The diagnostic's message. - * @public - */ - message: string | undefined; -} -/** - * @internal - */ -export declare const RuntimeDiagnosticFilterSensitiveLog: (obj: RuntimeDiagnostic) => any; -/** - * @public - * @enum - */ -export declare const SymbolType: { - readonly DECLARATION: "DECLARATION"; - readonly USAGE: "USAGE"; -}; -/** - * @public - */ -export type SymbolType = typeof SymbolType[keyof typeof SymbolType]; -/** - * @public - */ -export interface DocumentSymbol { - /** - * Name of the Document Symbol - * @public - */ - name: string | undefined; - /** - * Symbol type - DECLARATION / USAGE - * @public - */ - type: SymbolType | undefined; - /** - * Symbol package / source for FullyQualified names - * @public - */ - source?: string; -} -/** - * Represents a Text Document / File - * @public - */ -export interface TextDocument { - /** - * Filepath relative to the root of the workspace - * @public - */ - relativeFilePath: string | undefined; - /** - * The text document's language identifier. - * @public - */ - programmingLanguage?: ProgrammingLanguage; - /** - * Content of the text document - * @public - */ - text?: string; - /** - * DocumentSymbols parsed from a text document - * @public - */ - documentSymbols?: (DocumentSymbol)[]; -} -/** - * @internal - */ -export declare const TextDocumentFilterSensitiveLog: (obj: TextDocument) => any; -/** - * Indicates Cursor postion in a Text Document - * @public - */ -export interface Position { - /** - * Line position in a document. - * @public - */ - line: number | undefined; - /** - * Character offset on a line in a document (zero-based) - * @public - */ - character: number | undefined; -} -/** - * Indicates Range / Span in a Text Document - * @public - */ -export interface Range { - /** - * The range's start position. - * @public - */ - start: Position | undefined; - /** - * The range's end position. - * @public - */ - end: Position | undefined; -} -/** - * Structure to represent metadata about a TextDocument Diagnostic - * @public - */ -export interface TextDocumentDiagnostic { - /** - * Represents a Text Document associated with Diagnostic - * @public - */ - document: TextDocument | undefined; - /** - * The range at which the message applies. - * @public - */ - range: Range | undefined; - /** - * A human-readable string describing the source of the diagnostic - * @public - */ - source: string | undefined; - /** - * Diagnostic Error type - * @public - */ - severity: DiagnosticSeverity | undefined; - /** - * The diagnostic's message. - * @public - */ - message: string | undefined; -} -/** - * @internal - */ -export declare const TextDocumentDiagnosticFilterSensitiveLog: (obj: TextDocumentDiagnostic) => any; -/** - * Represents a Diagnostic message - * @public - */ -export type Diagnostic = Diagnostic.RuntimeDiagnosticMember | Diagnostic.TextDocumentDiagnosticMember | Diagnostic.$UnknownMember; -/** - * @public - */ -export declare namespace Diagnostic { - /** - * Diagnostics originating from a TextDocument - * @public - */ - interface TextDocumentDiagnosticMember { - textDocumentDiagnostic: TextDocumentDiagnostic; - runtimeDiagnostic?: never; - $unknown?: never; - } - /** - * Diagnostics originating from a Runtime - * @public - */ - interface RuntimeDiagnosticMember { - textDocumentDiagnostic?: never; - runtimeDiagnostic: RuntimeDiagnostic; - $unknown?: never; - } - /** - * @public - */ - interface $UnknownMember { - textDocumentDiagnostic?: never; - runtimeDiagnostic?: never; - $unknown: [string, any]; - } - interface Visitor { - textDocumentDiagnostic: (value: TextDocumentDiagnostic) => T; - runtimeDiagnostic: (value: RuntimeDiagnostic) => T; - _: (name: string, value: any) => T; - } - const visit: (value: Diagnostic, visitor: Visitor) => T; -} -/** - * @internal - */ -export declare const DiagnosticFilterSensitiveLog: (obj: Diagnostic) => any; -/** - * Represents the state of the Cursor in an Editor - * @public - */ -export type CursorState = CursorState.PositionMember | CursorState.RangeMember | CursorState.$UnknownMember; -/** - * @public - */ -export declare namespace CursorState { - /** - * Represents a cursor position in a Text Document - * @public - */ - interface PositionMember { - position: Position; - range?: never; - $unknown?: never; - } - /** - * Represents a text selection in a Text Document - * @public - */ - interface RangeMember { - position?: never; - range: Range; - $unknown?: never; - } - /** - * @public - */ - interface $UnknownMember { - position?: never; - range?: never; - $unknown: [string, any]; - } - interface Visitor { - position: (value: Position) => T; - range: (value: Range) => T; - _: (name: string, value: any) => T; - } - const visit: (value: CursorState, visitor: Visitor) => T; -} -/** - * Represents an IDE retrieved relevant Text Document / File - * @public - */ -export interface RelevantTextDocument { - /** - * Filepath relative to the root of the workspace - * @public - */ - relativeFilePath: string | undefined; - /** - * The text document's language identifier. - * @public - */ - programmingLanguage?: ProgrammingLanguage; - /** - * Content of the text document - * @public - */ - text?: string; - /** - * DocumentSymbols parsed from a text document - * @public - */ - documentSymbols?: (DocumentSymbol)[]; -} -/** - * @internal - */ -export declare const RelevantTextDocumentFilterSensitiveLog: (obj: RelevantTextDocument) => any; -/** - * Represents the state of an Editor - * @public - */ -export interface EditorState { - /** - * Represents currently edited file - * @public - */ - document?: TextDocument; - /** - * Position of the cursor - * @public - */ - cursorState?: CursorState; - /** - * Represents IDE provided relevant files - * @public - */ - relevantDocuments?: (RelevantTextDocument)[]; - /** - * Whether service should use relevant document in prompt - * @public - */ - useRelevantDocuments?: boolean; -} -/** - * @internal - */ -export declare const EditorStateFilterSensitiveLog: (obj: EditorState) => any; -/** - * An environment variable - * @public - */ -export interface EnvironmentVariable { - /** - * The key of an environment variable - * @public - */ - key?: string; - /** - * The value of an environment variable - * @public - */ - value?: string; -} -/** - * @internal - */ -export declare const EnvironmentVariableFilterSensitiveLog: (obj: EnvironmentVariable) => any; -/** - * State related to the user's environment - * @public - */ -export interface EnvState { - /** - * The name of the operating system in use - * @public - */ - operatingSystem?: string; - /** - * The current working directory of the environment - * @public - */ - currentWorkingDirectory?: string; - /** - * The environment variables set in the current environment - * @public - */ - environmentVariables?: (EnvironmentVariable)[]; -} -/** - * @internal - */ -export declare const EnvStateFilterSensitiveLog: (obj: EnvState) => any; -/** - * State related to the Git VSC - * @public - */ -export interface GitState { - /** - * The output of the command `git status --porcelain=v1 -b` - * @public - */ - status?: string; -} -/** - * @internal - */ -export declare const GitStateFilterSensitiveLog: (obj: GitState) => any; -/** - * An single entry in the shell history - * @public - */ -export interface ShellHistoryEntry { - /** - * The shell command that was run - * @public - */ - command: string | undefined; - /** - * The directory the command was ran in - * @public - */ - directory?: string; - /** - * The exit code of the command after it finished - * @public - */ - exitCode?: number; - /** - * The stdout from the command - * @public - */ - stdout?: string; - /** - * The stderr from the command - * @public - */ - stderr?: string; -} -/** - * @internal - */ -export declare const ShellHistoryEntryFilterSensitiveLog: (obj: ShellHistoryEntry) => any; -/** - * Represents the state of a shell - * @public - */ -export interface ShellState { - /** - * The name of the current shell - * @public - */ - shellName: string | undefined; - /** - * The history previous shell commands for the current shell - * @public - */ - shellHistory?: (ShellHistoryEntry)[]; -} -/** - * @internal - */ -export declare const ShellStateFilterSensitiveLog: (obj: ShellState) => any; -/** - * Settings information passed by the Q widget - * @public - */ -export interface UserSettings { - hasConsentedToCrossRegionCalls?: boolean; -} -/** - * Additional Chat message context associated with the Chat Message - * @public - */ -export interface UserInputMessageContext { - /** - * Editor state chat message context. - * @public - */ - editorState?: EditorState; - /** - * Shell state chat message context. - * @public - */ - shellState?: ShellState; - /** - * Git state chat message context. - * @public - */ - gitState?: GitState; - /** - * Environment state chat message context. - * @public - */ - envState?: EnvState; - /** - * The state of a user's AppStudio UI when sending a message. - * @public - */ - appStudioContext?: AppStudioState; - /** - * Diagnostic chat message context. - * @public - */ - diagnostic?: Diagnostic; - /** - * Contextual information about the environment from which the user is calling. - * @public - */ - consoleState?: ConsoleState; - /** - * Settings information, e.g., whether the user has enabled cross-region API calls. - * @public - */ - userSettings?: UserSettings; -} -/** - * @internal - */ -export declare const UserInputMessageContextFilterSensitiveLog: (obj: UserInputMessageContext) => any; -/** - * Structure to represent a chat input message from User - * @public - */ -export interface UserInputMessage { - /** - * The content of the chat message. - * @public - */ - content: string | undefined; - /** - * Chat message context associated with the Chat Message - * @public - */ - userInputMessageContext?: UserInputMessageContext; - /** - * User Intent - * @public - */ - userIntent?: UserIntent; -} -/** - * @internal - */ -export declare const UserInputMessageFilterSensitiveLog: (obj: UserInputMessage) => any; -/** - * @public - */ -export type ChatMessage = ChatMessage.AssistantResponseMessageMember | ChatMessage.UserInputMessageMember | ChatMessage.$UnknownMember; -/** - * @public - */ -export declare namespace ChatMessage { - /** - * Structure to represent a chat input message from User - * @public - */ - interface UserInputMessageMember { - userInputMessage: UserInputMessage; - assistantResponseMessage?: never; - $unknown?: never; - } - /** - * Markdown text message. - * @public - */ - interface AssistantResponseMessageMember { - userInputMessage?: never; - assistantResponseMessage: AssistantResponseMessage; - $unknown?: never; - } - /** - * @public - */ - interface $UnknownMember { - userInputMessage?: never; - assistantResponseMessage?: never; - $unknown: [string, any]; - } - interface Visitor { - userInputMessage: (value: UserInputMessage) => T; - assistantResponseMessage: (value: AssistantResponseMessage) => T; - _: (name: string, value: any) => T; - } - const visit: (value: ChatMessage, visitor: Visitor) => T; -} -/** - * @internal - */ -export declare const ChatMessageFilterSensitiveLog: (obj: ChatMessage) => any; -/** - * Streaming response event for generated code text. - * @public - */ -export interface CodeEvent { - /** - * Generated code snippet. - * @public - */ - content: string | undefined; -} -/** - * @internal - */ -export declare const CodeEventFilterSensitiveLog: (obj: CodeEvent) => any; -/** - * Streaming Response Event for CodeReferences - * @public - */ -export interface CodeReferenceEvent { - /** - * Code References for Assistant Response Message - * @public - */ - references?: (Reference)[]; -} -/** - * Streaming Response Event when DryRun is succeessful - * @public - */ -export interface DryRunSucceedEvent { -} -/** - * Streaming Response Event for Followup Prompt. - * @public - */ -export interface FollowupPromptEvent { - /** - * Followup Prompt for the Assistant Response - * @public - */ - followupPrompt?: FollowupPrompt; -} -/** - * @internal - */ -export declare const FollowupPromptEventFilterSensitiveLog: (obj: FollowupPromptEvent) => any; -/** - * @public - * @enum - */ -export declare const IntentType: { - readonly GLUE_SENSEI: "GLUE_SENSEI"; - readonly RESOURCE_DATA: "RESOURCE_DATA"; - readonly SUPPORT: "SUPPORT"; -}; -/** - * @public - */ -export type IntentType = typeof IntentType[keyof typeof IntentType]; -/** - * @public - */ -export type IntentDataType = IntentDataType.StringMember | IntentDataType.$UnknownMember; -/** - * @public - */ -export declare namespace IntentDataType { - interface StringMember { - string: string; - $unknown?: never; - } - /** - * @public - */ - interface $UnknownMember { - string?: never; - $unknown: [string, any]; - } - interface Visitor { - string: (value: string) => T; - _: (name: string, value: any) => T; - } - const visit: (value: IntentDataType, visitor: Visitor) => T; -} -/** - * Streaming Response Event for Intents - * @public - */ -export interface IntentsEvent { - /** - * A map of Intent objects - * @public - */ - intents?: Partial>>; -} -/** - * @internal - */ -export declare const IntentsEventFilterSensitiveLog: (obj: IntentsEvent) => any; -/** - * Structure representing a simple text component with sensitive content, which can include Markdown formatting. - * @public - */ -export interface Text { - /** - * Contains text content that may include sensitive information and can support Markdown formatting. - * @public - */ - content: string | undefined; -} -/** - * @internal - */ -export declare const TextFilterSensitiveLog: (obj: Text) => any; -/** - * @public - */ -export interface AlertComponent { - /** - * Structure representing a simple text component with sensitive content, which can include Markdown formatting. - * @public - */ - text?: Text; -} -/** - * @internal - */ -export declare const AlertComponentFilterSensitiveLog: (obj: AlertComponent) => any; -/** - * @public - * @enum - */ -export declare const AlertType: { - /** - * Alert indicating an error or failure that requires attention. - */ - readonly ERROR: "ERROR"; - /** - * Informational alert providing general information. - */ - readonly INFO: "INFO"; - /** - * Alert indicating a warning or potential issue that should be noted. - */ - readonly WARNING: "WARNING"; -}; -/** - * @public - */ -export type AlertType = typeof AlertType[keyof typeof AlertType]; -/** - * Structure representing an alert with a type and content. - * @public - */ -export interface Alert { - /** - * Enum defining types of alerts that can be issued. - * @public - */ - type: AlertType | undefined; - /** - * Contains the content of the alert, which may include sensitive information. - * @public - */ - content: (AlertComponent)[] | undefined; -} -/** - * @internal - */ -export declare const AlertFilterSensitiveLog: (obj: Alert) => any; -/** - * Structure describing a transition between two states in an infrastructure update. - * @public - */ -export interface InfrastructureUpdateTransition { - /** - * The current state of the infrastructure before the update. - * @public - */ - currentState: string | undefined; - /** - * The next state of the infrastructure following the update. - * @public - */ - nextState: string | undefined; -} -/** - * @internal - */ -export declare const InfrastructureUpdateTransitionFilterSensitiveLog: (obj: InfrastructureUpdateTransition) => any; -/** - * Structure representing different types of infrastructure updates. - * @public - */ -export interface InfrastructureUpdate { - /** - * Structure describing a transition between two states in an infrastructure update. - * @public - */ - transition?: InfrastructureUpdateTransition; -} -/** - * @internal - */ -export declare const InfrastructureUpdateFilterSensitiveLog: (obj: InfrastructureUpdate) => any; -/** - * @public - */ -export interface StepComponent { - /** - * Structure representing a simple text component with sensitive content, which can include Markdown formatting. - * @public - */ - text?: Text; -} -/** - * @internal - */ -export declare const StepComponentFilterSensitiveLog: (obj: StepComponent) => any; -/** - * @public - * @enum - */ -export declare const StepState: { - /** - * Indicates a failure or issue that needs to be addressed. - */ - readonly FAILED: "FAILED"; - /** - * Indicates that the step is currently being processed. This is a non-terminal state, meaning the process is active and ongoing. - */ - readonly IN_PROGRESS: "IN_PROGRESS"; - /** - * Indicates that the step is being loaded or initialized. This is a non-terminal state, meaning the process is in the setup phase. - */ - readonly LOADING: "LOADING"; - /** - * Indicates that the step is temporarily halted but can resume. This is a non-terminal state, representing a temporary pause. - */ - readonly PAUSED: "PAUSED"; - /** - * Indicates that the step is waiting for some condition or input. This is a non-terminal state, meaning the process is paused but not complete. - */ - readonly PENDING: "PENDING"; - /** - * Indicates that the step was stopped, either intentionally or unintentionally. - */ - readonly STOPPED: "STOPPED"; - /** - * Indicates successful completion of the step. - */ - readonly SUCCEEDED: "SUCCEEDED"; -}; -/** - * @public - */ -export type StepState = typeof StepState[keyof typeof StepState]; -/** - * Structure representing an individual step in a process. - * @public - */ -export interface Step { - /** - * A unique identifier for the step. It must be a non-negative integer to ensure each step is distinct. - * @public - */ - id: number | undefined; - /** - * Enum representing all possible step states, combining terminal and non-terminal states. - * @public - */ - state: StepState | undefined; - /** - * A label for the step, providing a concise description. - * @public - */ - label: string | undefined; - /** - * Optional content providing additional details about the step. - * @public - */ - content?: (StepComponent)[]; -} -/** - * @internal - */ -export declare const StepFilterSensitiveLog: (obj: Step) => any; -/** - * @public - */ -export interface ProgressComponent { - /** - * Structure representing an individual step in a process. - * @public - */ - step?: Step; -} -/** - * @internal - */ -export declare const ProgressComponentFilterSensitiveLog: (obj: ProgressComponent) => any; -/** - * Structure representing a collection of steps in a process. - * @public - */ -export interface Progress { - /** - * A collection of steps that make up a process. Each step is detailed using the Step structure. - * @public - */ - content: (ProgressComponent)[] | undefined; -} -/** - * @internal - */ -export declare const ProgressFilterSensitiveLog: (obj: Progress) => any; -/** - * Structure representing a resource item - * @public - */ -export interface Resource { - /** - * Card title. - * @public - */ - title: string | undefined; - /** - * Link for the resource item - * @public - */ - link: string | undefined; - /** - * Short text about that resource for example Region: us-east-1 - * @public - */ - description: string | undefined; - /** - * Resource type e.g AWS EC2 - * @public - */ - type: string | undefined; - /** - * Amazon resource number e.g arn:aws:aec:..... - * @public - */ - ARN: string | undefined; - /** - * A stringified object - * @public - */ - resourceJsonString: string | undefined; -} -/** - * @internal - */ -export declare const ResourceFilterSensitiveLog: (obj: Resource) => any; -/** - * For CloudWatch Troubleshooting Link Module - * @public - */ -export interface CloudWatchTroubleshootingLink { - /** - * A label for the link. - * @public - */ - label: string | undefined; - /** - * Stringified JSON payload. See spec here https://code.amazon.com/packages/CloudWatchOdysseyModel/blobs/50c0832f0e393e4ab68827eb4f04d832366821c1/--/model/events.smithy#L28 . - * @public - */ - investigationPayload: string | undefined; - /** - * Fallback string, if target channel does not support the CloudWatchTroubleshootingLink. - * @public - */ - defaultText?: string; -} -/** - * @internal - */ -export declare const CloudWatchTroubleshootingLinkFilterSensitiveLog: (obj: CloudWatchTroubleshootingLink) => any; -/** - * @public - */ -export type ModuleLink = ModuleLink.CloudWatchTroubleshootingLinkMember | ModuleLink.$UnknownMember; -/** - * @public - */ -export declare namespace ModuleLink { - /** - * For CloudWatch Troubleshooting Link Module - * @public - */ - interface CloudWatchTroubleshootingLinkMember { - cloudWatchTroubleshootingLink: CloudWatchTroubleshootingLink; - $unknown?: never; - } - /** - * @public - */ - interface $UnknownMember { - cloudWatchTroubleshootingLink?: never; - $unknown: [string, any]; - } - interface Visitor { - cloudWatchTroubleshootingLink: (value: CloudWatchTroubleshootingLink) => T; - _: (name: string, value: any) => T; - } - const visit: (value: ModuleLink, visitor: Visitor) => T; -} -/** - * @internal - */ -export declare const ModuleLinkFilterSensitiveLog: (obj: ModuleLink) => any; -/** - * @public - */ -export interface WebLink { - /** - * A label for the link - * @public - */ - label: string | undefined; - /** - * URL of the Weblink - * @public - */ - url: string | undefined; -} -/** - * @internal - */ -export declare const WebLinkFilterSensitiveLog: (obj: WebLink) => any; -/** - * @public - */ -export type Action = Action.ModuleLinkMember | Action.WebLinkMember | Action.$UnknownMember; -/** - * @public - */ -export declare namespace Action { - interface WebLinkMember { - webLink: WebLink; - moduleLink?: never; - $unknown?: never; - } - interface ModuleLinkMember { - webLink?: never; - moduleLink: ModuleLink; - $unknown?: never; - } - /** - * @public - */ - interface $UnknownMember { - webLink?: never; - moduleLink?: never; - $unknown: [string, any]; - } - interface Visitor { - webLink: (value: WebLink) => T; - moduleLink: (value: ModuleLink) => T; - _: (name: string, value: any) => T; - } - const visit: (value: Action, visitor: Visitor) => T; -} -/** - * @internal - */ -export declare const ActionFilterSensitiveLog: (obj: Action) => any; -/** - * Structure representing a list of Items - * @public - */ -export interface ResourceList { - /** - * Action associated with the list - * @public - */ - action?: Action; - /** - * List of resources - * @public - */ - items: (Resource)[] | undefined; -} -/** - * @internal - */ -export declare const ResourceListFilterSensitiveLog: (obj: ResourceList) => any; -/** - * @public - */ -export type SectionComponent = SectionComponent.AlertMember | SectionComponent.ResourceMember | SectionComponent.ResourceListMember | SectionComponent.TextMember | SectionComponent.$UnknownMember; -/** - * @public - */ -export declare namespace SectionComponent { - /** - * Structure representing a simple text component with sensitive content, which can include Markdown formatting. - * @public - */ - interface TextMember { - text: Text; - alert?: never; - resource?: never; - resourceList?: never; - $unknown?: never; - } - /** - * Structure representing an alert with a type and content. - * @public - */ - interface AlertMember { - text?: never; - alert: Alert; - resource?: never; - resourceList?: never; - $unknown?: never; - } - /** - * Structure representing a resource item - * @public - */ - interface ResourceMember { - text?: never; - alert?: never; - resource: Resource; - resourceList?: never; - $unknown?: never; - } - /** - * Structure representing a list of Items - * @public - */ - interface ResourceListMember { - text?: never; - alert?: never; - resource?: never; - resourceList: ResourceList; - $unknown?: never; - } - /** - * @public - */ - interface $UnknownMember { - text?: never; - alert?: never; - resource?: never; - resourceList?: never; - $unknown: [string, any]; - } - interface Visitor { - text: (value: Text) => T; - alert: (value: Alert) => T; - resource: (value: Resource) => T; - resourceList: (value: ResourceList) => T; - _: (name: string, value: any) => T; - } - const visit: (value: SectionComponent, visitor: Visitor) => T; -} -/** - * @internal - */ -export declare const SectionComponentFilterSensitiveLog: (obj: SectionComponent) => any; -/** - * Structure representing a collapsable section - * @public - */ -export interface Section { - /** - * Contains text content that may include sensitive information and can support Markdown formatting. - * @public - */ - title: string | undefined; - /** - * Contains a list of interaction components e.g Text, Alert ,List ...etc - * @public - */ - content: (SectionComponent)[] | undefined; -} -/** - * @internal - */ -export declare const SectionFilterSensitiveLog: (obj: Section) => any; -/** - * Structure representing a suggestion for follow-ups. - * @public - */ -export interface Suggestion { - value: string | undefined; -} -/** - * Structure containing a list of suggestions. - * @public - */ -export interface Suggestions { - items: (Suggestion)[] | undefined; -} -/** - * Structure representing a confirmation message related to a task action. - * @public - */ -export interface TaskActionConfirmation { - /** - * Confirmation message related to the action note, which may include sensitive information. - * @public - */ - content?: string; -} -/** - * @internal - */ -export declare const TaskActionConfirmationFilterSensitiveLog: (obj: TaskActionConfirmation) => any; -/** - * @public - * @enum - */ -export declare const TaskActionNoteType: { - /** - * Information note providing general details. - */ - readonly INFO: "INFO"; - /** - * Warning note indicating a potential issue. - */ - readonly WARNING: "WARNING"; -}; -/** - * @public - */ -export type TaskActionNoteType = typeof TaskActionNoteType[keyof typeof TaskActionNoteType]; -/** - * Structure representing a note associated with a task action. - * @public - */ -export interface TaskActionNote { - /** - * Content of the note, which may include sensitive information. - * @public - */ - content: string | undefined; - /** - * Enum defining the types of notes that can be associated with a task action. - * @public - */ - type?: TaskActionNoteType; -} -/** - * @internal - */ -export declare const TaskActionNoteFilterSensitiveLog: (obj: TaskActionNote) => any; -/** - * Structure representing an action associated with a task. - * @public - */ -export interface TaskAction { - /** - * A label for the action. - * @public - */ - label: string | undefined; - /** - * Structure representing a note associated with a task action. - * @public - */ - note?: TaskActionNote; - /** - * Indicates whether the action is primary or not. - * @public - */ - primary?: boolean; - /** - * Indicates whether the action is disabled or not. - * @public - */ - disabled?: boolean; - /** - * Map representing key-value pairs for the payload of a task action. - * @public - */ - payload: Record | undefined; - /** - * Structure representing a confirmation message related to a task action. - * @public - */ - confirmation?: TaskActionConfirmation; -} -/** - * @internal - */ -export declare const TaskActionFilterSensitiveLog: (obj: TaskAction) => any; -/** - * Structure representing different types of components that can be part of a task. - * @public - */ -export interface TaskComponent { - /** - * Structure representing a simple text component with sensitive content, which can include Markdown formatting. - * @public - */ - text?: Text; - /** - * Structure representing different types of infrastructure updates. - * @public - */ - infrastructureUpdate?: InfrastructureUpdate; - /** - * Structure representing an alert with a type and content. - * @public - */ - alert?: Alert; - /** - * Structure representing a collection of steps in a process. - * @public - */ - progress?: Progress; -} -/** - * @internal - */ -export declare const TaskComponentFilterSensitiveLog: (obj: TaskComponent) => any; -/** - * Structure representing an overview of a task, including a label and description. - * @public - */ -export interface TaskOverview { - /** - * A label for the task overview. - * @public - */ - label: string | undefined; - /** - * Text description providing details about the task. This field may include sensitive information and supports Markdown formatting. - * @public - */ - description: string | undefined; -} -/** - * @internal - */ -export declare const TaskOverviewFilterSensitiveLog: (obj: TaskOverview) => any; -/** - * Structure containing details about a task. - * @public - */ -export interface TaskDetails { - /** - * Structure representing an overview of a task, including a label and description. - * @public - */ - overview: TaskOverview | undefined; - /** - * Lists the components that can be used to form the task's content. - * @public - */ - content: (TaskComponent)[] | undefined; - /** - * Optional list of actions associated with the task. - * @public - */ - actions?: (TaskAction)[]; -} -/** - * @internal - */ -export declare const TaskDetailsFilterSensitiveLog: (obj: TaskDetails) => any; -/** - * Structure representing a reference to a task. - * @public - */ -export interface TaskReference { - /** - * Unique identifier for the task. - * @public - */ - taskId: string | undefined; -} -/** - * Structure representing different types of interaction components. - * @public - */ -export interface InteractionComponent { - /** - * Structure representing a simple text component with sensitive content, which can include Markdown formatting. - * @public - */ - text?: Text; - /** - * Structure representing an alert with a type and content. - * @public - */ - alert?: Alert; - /** - * Structure representing different types of infrastructure updates. - * @public - */ - infrastructureUpdate?: InfrastructureUpdate; - /** - * Structure representing a collection of steps in a process. - * @public - */ - progress?: Progress; - /** - * Structure representing an individual step in a process. - * @public - */ - step?: Step; - /** - * Structure containing details about a task. - * @public - */ - taskDetails?: TaskDetails; - /** - * Structure representing a reference to a task. - * @public - */ - taskReference?: TaskReference; - /** - * Structure containing a list of suggestions. - * @public - */ - suggestions?: Suggestions; - /** - * Structure representing a collapsable section - * @public - */ - section?: Section; - /** - * Structure representing a resource item - * @public - */ - resource?: Resource; - /** - * Structure representing a list of Items - * @public - */ - resourceList?: ResourceList; -} -/** - * @internal - */ -export declare const InteractionComponentFilterSensitiveLog: (obj: InteractionComponent) => any; -/** - * Interaction component with an identifier - * @public - */ -export interface InteractionComponentEntry { - /** - * Identifier that can uniquely identify the interaction component within - * stream response. This field is optional. - * @public - */ - interactionComponentId?: string; - /** - * Interaction component - * @public - */ - interactionComponent: InteractionComponent | undefined; -} -/** - * @internal - */ -export declare const InteractionComponentEntryFilterSensitiveLog: (obj: InteractionComponentEntry) => any; -/** - * Streaming Event for interaction components list - * @public - */ -export interface InteractionComponentsEvent { - /** - * List of identifiable interaction components - * @public - */ - interactionComponentEntries: (InteractionComponentEntry)[] | undefined; -} -/** - * @internal - */ -export declare const InteractionComponentsEventFilterSensitiveLog: (obj: InteractionComponentsEvent) => any; -/** - * @public - * @enum - */ -export declare const InvalidStateReason: { - readonly INVALID_TASK_ASSIST_PLAN: "INVALID_TASK_ASSIST_PLAN"; -}; -/** - * @public - */ -export type InvalidStateReason = typeof InvalidStateReason[keyof typeof InvalidStateReason]; -/** - * Streaming Response Event when an Invalid State is reached - * @public - */ -export interface InvalidStateEvent { - /** - * Reasons for Invalid State Event - * @public - */ - reason: InvalidStateReason | undefined; - message: string | undefined; -} -/** - * Streaming Response Event for AssistantResponse Metadata - * @public - */ -export interface MessageMetadataEvent { - /** - * Unique identifier for the conversation - * @public - */ - conversationId?: string; - /** - * Unique identifier for the utterance - * @public - */ - utteranceId?: string; -} -/** - * Streaming Response Event for SupplementaryWebLinks - * @public - */ -export interface SupplementaryWebLinksEvent { - /** - * Web References for Assistant Response Message - * @public - */ - supplementaryWebLinks?: (SupplementaryWebLink)[]; -} -/** - * @internal - */ -export declare const SupplementaryWebLinksEventFilterSensitiveLog: (obj: SupplementaryWebLinksEvent) => any; -/** - * Streaming events from UniDirectional Streaming Conversational APIs. - * @public - */ -export type ChatResponseStream = ChatResponseStream.AssistantResponseEventMember | ChatResponseStream.CodeEventMember | ChatResponseStream.CodeReferenceEventMember | ChatResponseStream.DryRunSucceedEventMember | ChatResponseStream.ErrorMember | ChatResponseStream.FollowupPromptEventMember | ChatResponseStream.IntentsEventMember | ChatResponseStream.InteractionComponentsEventMember | ChatResponseStream.InvalidStateEventMember | ChatResponseStream.MessageMetadataEventMember | ChatResponseStream.SupplementaryWebLinksEventMember | ChatResponseStream.$UnknownMember; -/** - * @public - */ -export declare namespace ChatResponseStream { - /** - * Message Metadata event - * @public - */ - interface MessageMetadataEventMember { - messageMetadataEvent: MessageMetadataEvent; - assistantResponseEvent?: never; - dryRunSucceedEvent?: never; - codeReferenceEvent?: never; - supplementaryWebLinksEvent?: never; - followupPromptEvent?: never; - codeEvent?: never; - intentsEvent?: never; - interactionComponentsEvent?: never; - invalidStateEvent?: never; - error?: never; - $unknown?: never; - } - /** - * Assistant response event - Text / Code snippet - * @public - */ - interface AssistantResponseEventMember { - messageMetadataEvent?: never; - assistantResponseEvent: AssistantResponseEvent; - dryRunSucceedEvent?: never; - codeReferenceEvent?: never; - supplementaryWebLinksEvent?: never; - followupPromptEvent?: never; - codeEvent?: never; - intentsEvent?: never; - interactionComponentsEvent?: never; - invalidStateEvent?: never; - error?: never; - $unknown?: never; - } - /** - * DryRun Succeed Event - * @public - */ - interface DryRunSucceedEventMember { - messageMetadataEvent?: never; - assistantResponseEvent?: never; - dryRunSucceedEvent: DryRunSucceedEvent; - codeReferenceEvent?: never; - supplementaryWebLinksEvent?: never; - followupPromptEvent?: never; - codeEvent?: never; - intentsEvent?: never; - interactionComponentsEvent?: never; - invalidStateEvent?: never; - error?: never; - $unknown?: never; - } - /** - * Code References event - * @public - */ - interface CodeReferenceEventMember { - messageMetadataEvent?: never; - assistantResponseEvent?: never; - dryRunSucceedEvent?: never; - codeReferenceEvent: CodeReferenceEvent; - supplementaryWebLinksEvent?: never; - followupPromptEvent?: never; - codeEvent?: never; - intentsEvent?: never; - interactionComponentsEvent?: never; - invalidStateEvent?: never; - error?: never; - $unknown?: never; - } - /** - * Web Reference links event - * @public - */ - interface SupplementaryWebLinksEventMember { - messageMetadataEvent?: never; - assistantResponseEvent?: never; - dryRunSucceedEvent?: never; - codeReferenceEvent?: never; - supplementaryWebLinksEvent: SupplementaryWebLinksEvent; - followupPromptEvent?: never; - codeEvent?: never; - intentsEvent?: never; - interactionComponentsEvent?: never; - invalidStateEvent?: never; - error?: never; - $unknown?: never; - } - /** - * Followup prompt event - * @public - */ - interface FollowupPromptEventMember { - messageMetadataEvent?: never; - assistantResponseEvent?: never; - dryRunSucceedEvent?: never; - codeReferenceEvent?: never; - supplementaryWebLinksEvent?: never; - followupPromptEvent: FollowupPromptEvent; - codeEvent?: never; - intentsEvent?: never; - interactionComponentsEvent?: never; - invalidStateEvent?: never; - error?: never; - $unknown?: never; - } - /** - * Code Generated event - * @public - */ - interface CodeEventMember { - messageMetadataEvent?: never; - assistantResponseEvent?: never; - dryRunSucceedEvent?: never; - codeReferenceEvent?: never; - supplementaryWebLinksEvent?: never; - followupPromptEvent?: never; - codeEvent: CodeEvent; - intentsEvent?: never; - interactionComponentsEvent?: never; - invalidStateEvent?: never; - error?: never; - $unknown?: never; - } - /** - * Intents event - * @public - */ - interface IntentsEventMember { - messageMetadataEvent?: never; - assistantResponseEvent?: never; - dryRunSucceedEvent?: never; - codeReferenceEvent?: never; - supplementaryWebLinksEvent?: never; - followupPromptEvent?: never; - codeEvent?: never; - intentsEvent: IntentsEvent; - interactionComponentsEvent?: never; - invalidStateEvent?: never; - error?: never; - $unknown?: never; - } - /** - * Interactions components event - * @public - */ - interface InteractionComponentsEventMember { - messageMetadataEvent?: never; - assistantResponseEvent?: never; - dryRunSucceedEvent?: never; - codeReferenceEvent?: never; - supplementaryWebLinksEvent?: never; - followupPromptEvent?: never; - codeEvent?: never; - intentsEvent?: never; - interactionComponentsEvent: InteractionComponentsEvent; - invalidStateEvent?: never; - error?: never; - $unknown?: never; - } - /** - * Invalid State event - * @public - */ - interface InvalidStateEventMember { - messageMetadataEvent?: never; - assistantResponseEvent?: never; - dryRunSucceedEvent?: never; - codeReferenceEvent?: never; - supplementaryWebLinksEvent?: never; - followupPromptEvent?: never; - codeEvent?: never; - intentsEvent?: never; - interactionComponentsEvent?: never; - invalidStateEvent: InvalidStateEvent; - error?: never; - $unknown?: never; - } - /** - * Internal Server Exception - * @public - */ - interface ErrorMember { - messageMetadataEvent?: never; - assistantResponseEvent?: never; - dryRunSucceedEvent?: never; - codeReferenceEvent?: never; - supplementaryWebLinksEvent?: never; - followupPromptEvent?: never; - codeEvent?: never; - intentsEvent?: never; - interactionComponentsEvent?: never; - invalidStateEvent?: never; - error: InternalServerException; - $unknown?: never; - } - /** - * @public - */ - interface $UnknownMember { - messageMetadataEvent?: never; - assistantResponseEvent?: never; - dryRunSucceedEvent?: never; - codeReferenceEvent?: never; - supplementaryWebLinksEvent?: never; - followupPromptEvent?: never; - codeEvent?: never; - intentsEvent?: never; - interactionComponentsEvent?: never; - invalidStateEvent?: never; - error?: never; - $unknown: [string, any]; - } - interface Visitor { - messageMetadataEvent: (value: MessageMetadataEvent) => T; - assistantResponseEvent: (value: AssistantResponseEvent) => T; - dryRunSucceedEvent: (value: DryRunSucceedEvent) => T; - codeReferenceEvent: (value: CodeReferenceEvent) => T; - supplementaryWebLinksEvent: (value: SupplementaryWebLinksEvent) => T; - followupPromptEvent: (value: FollowupPromptEvent) => T; - codeEvent: (value: CodeEvent) => T; - intentsEvent: (value: IntentsEvent) => T; - interactionComponentsEvent: (value: InteractionComponentsEvent) => T; - invalidStateEvent: (value: InvalidStateEvent) => T; - error: (value: InternalServerException) => T; - _: (name: string, value: any) => T; - } - const visit: (value: ChatResponseStream, visitor: Visitor) => T; -} -/** - * @internal - */ -export declare const ChatResponseStreamFilterSensitiveLog: (obj: ChatResponseStream) => any; -/** - * @public - * @enum - */ -export declare const ChatTriggerType: { - /** - * Indicates the Chat was triggered in response to a IDE diagnostic - */ - readonly DIAGNOSTIC: "DIAGNOSTIC"; - /** - * Indicates the Chat was triggered in response to an inline chat event - */ - readonly INLINE_CHAT: "INLINE_CHAT"; - /** - * Indicates the Chat was triggered due to an explicit chat request by an end-user - */ - readonly MANUAL: "MANUAL"; -}; -/** - * @public - */ -export type ChatTriggerType = typeof ChatTriggerType[keyof typeof ChatTriggerType]; -/** - * CommandInput can be extended to either a list of strings or a single string. - * @public - */ -export type CommandInput = CommandInput.CommandsListMember | CommandInput.$UnknownMember; -/** - * @public - */ -export declare namespace CommandInput { - /** - * The list of context items used to generate output. - * @public - */ - interface CommandsListMember { - commandsList: (string)[]; - $unknown?: never; - } - /** - * @public - */ - interface $UnknownMember { - commandsList?: never; - $unknown: [string, any]; - } - interface Visitor { - commandsList: (value: (string)[]) => T; - _: (name: string, value: any) => T; - } - const visit: (value: CommandInput, visitor: Visitor) => T; -} -/** - * @internal - */ -export declare const CommandInputFilterSensitiveLog: (obj: CommandInput) => any; -/** - * Structure to represent the current state of a chat conversation. - * @public - */ -export interface ConversationState { - /** - * Unique identifier for the chat conversation stream - * @public - */ - conversationId?: string; - /** - * Holds the history of chat messages. - * @public - */ - history?: (ChatMessage)[]; - /** - * Holds the current message being processed or displayed. - * @public - */ - currentMessage: ChatMessage | undefined; - /** - * Trigger Reason for Chat - * @public - */ - chatTriggerType: ChatTriggerType | undefined; - customizationArn?: string; -} -/** - * @internal - */ -export declare const ConversationStateFilterSensitiveLog: (obj: ConversationState) => any; -/** - * This exception is translated to a 204 as it succeeded the IAM Auth. - * @public - */ -export declare class DryRunOperationException extends __BaseException { - readonly name: "DryRunOperationException"; - readonly $fault: "client"; - responseCode?: number; - /** - * @internal - */ - constructor(opts: __ExceptionOptionType); -} -/** - * @public - * @enum - */ -export declare const OutputFormat: { - readonly JAVA_CDK: "java/cdk"; - readonly JSON_CFN: "json/cfn"; - readonly PYTHON_CDK: "python/cdk"; - readonly TYPESCRIPT_CDK: "typescript/cdk"; - readonly YAML_CFN: "yaml/cfn"; -}; -/** - * @public - */ -export type OutputFormat = typeof OutputFormat[keyof typeof OutputFormat]; -/** - * This exception is thrown when request was denied due to caller exceeding their usage limits - * @public - */ -export declare class ServiceQuotaExceededException extends __BaseException { - readonly name: "ServiceQuotaExceededException"; - readonly $fault: "client"; - /** - * @internal - */ - constructor(opts: __ExceptionOptionType); -} -/** - * @public - * @enum - */ -export declare const Origin: { - /** - * AWS Chatbot - */ - readonly CHATBOT: "CHATBOT"; - /** - * AWS Management Console (https://.console.aws.amazon.com) - */ - readonly CONSOLE: "CONSOLE"; - /** - * AWS Documentation Website (https://docs.aws.amazon.com) - */ - readonly DOCUMENTATION: "DOCUMENTATION"; - /** - * Any IDE caller. - */ - readonly IDE: "IDE"; - /** - * AWS Marketing Website (https://aws.amazon.com) - */ - readonly MARKETING: "MARKETING"; - /** - * MD. - */ - readonly MD: "MD"; - /** - * AWS Mobile Application (ACMA) - */ - readonly MOBILE: "MOBILE"; - /** - * Internal Service Traffic (Integ Tests, Canaries, etc.). This is the default when no Origin header present in request. - */ - readonly SERVICE_INTERNAL: "SERVICE_INTERNAL"; - /** - * Unified Search in AWS Management Console (https://.console.aws.amazon.com) - */ - readonly UNIFIED_SEARCH: "UNIFIED_SEARCH"; - /** - * Origin header is not set. - */ - readonly UNKNOWN: "UNKNOWN"; -}; -/** - * @public - */ -export type Origin = typeof Origin[keyof typeof Origin]; -/** - * Structure to represent a SendMessage request. - * @public - */ -export interface SendMessageRequest { - /** - * Structure to represent the current state of a chat conversation. - * @public - */ - conversationState: ConversationState | undefined; - profileArn?: string; - /** - * The origin of the caller - * @public - */ - source?: Origin; - dryRun?: boolean; -} -/** - * @internal - */ -export declare const SendMessageRequestFilterSensitiveLog: (obj: SendMessageRequest) => any; -/** - * Structure to represent a SendMessage response. - * @public - */ -export interface SendMessageResponse { - /** - * Streaming events from UniDirectional Streaming Conversational APIs. - * @public - */ - sendMessageResponse: AsyncIterable | undefined; -} -/** - * @internal - */ -export declare const SendMessageResponseFilterSensitiveLog: (obj: SendMessageResponse) => any; -/** - * @public - */ -export interface GenerateCodeFromCommandsRequest { - /** - * Format of the output - language/format eg. typescript/cdk - * @public - */ - outputFormat: OutputFormat | undefined; - /** - * CommandInput can be extended to either a list of strings or a single string. - * @public - */ - commands: CommandInput | undefined; -} -/** - * @internal - */ -export declare const GenerateCodeFromCommandsRequestFilterSensitiveLog: (obj: GenerateCodeFromCommandsRequest) => any; -/** - * Streaming events from UniDirectional streaming infrastructure code generation APIs. - * @public - */ -export type GenerateCodeFromCommandsResponseStream = GenerateCodeFromCommandsResponseStream.ErrorMember | GenerateCodeFromCommandsResponseStream.QuotaLevelExceededErrorMember | GenerateCodeFromCommandsResponseStream.ValidationErrorMember | GenerateCodeFromCommandsResponseStream.CodeEventMember | GenerateCodeFromCommandsResponseStream.$UnknownMember; -/** - * @public - */ -export declare namespace GenerateCodeFromCommandsResponseStream { - /** - * Generated code snippet - * @public - */ - interface CodeEventMember { - codeEvent: CodeEvent; - Error?: never; - QuotaLevelExceededError?: never; - ValidationError?: never; - $unknown?: never; - } - /** - * Internal Server Exception - * @public - */ - interface ErrorMember { - codeEvent?: never; - Error: InternalServerException; - QuotaLevelExceededError?: never; - ValidationError?: never; - $unknown?: never; - } - /** - * Exceptions for quota level exceeded errors - * @public - */ - interface QuotaLevelExceededErrorMember { - codeEvent?: never; - Error?: never; - QuotaLevelExceededError: ServiceQuotaExceededException; - ValidationError?: never; - $unknown?: never; - } - /** - * Validation errors in the ConsoleToCodeService - * @public - */ - interface ValidationErrorMember { - codeEvent?: never; - Error?: never; - QuotaLevelExceededError?: never; - ValidationError: ValidationException; - $unknown?: never; - } - /** - * @public - */ - interface $UnknownMember { - codeEvent?: never; - Error?: never; - QuotaLevelExceededError?: never; - ValidationError?: never; - $unknown: [string, any]; - } - interface Visitor { - codeEvent: (value: CodeEvent) => T; - Error: (value: InternalServerException) => T; - QuotaLevelExceededError: (value: ServiceQuotaExceededException) => T; - ValidationError: (value: ValidationException) => T; - _: (name: string, value: any) => T; - } - const visit: (value: GenerateCodeFromCommandsResponseStream, visitor: Visitor) => T; -} -/** - * @internal - */ -export declare const GenerateCodeFromCommandsResponseStreamFilterSensitiveLog: (obj: GenerateCodeFromCommandsResponseStream) => any; -/** - * Structure to represent generated code response. - * @public - */ -export interface GenerateCodeFromCommandsResponse { - /** - * Streaming events from UniDirectional streaming infrastructure code generation APIs. - * @public - */ - generatedCodeFromCommandsResponse: AsyncIterable | undefined; -} -/** - * @internal - */ -export declare const GenerateCodeFromCommandsResponseFilterSensitiveLog: (obj: GenerateCodeFromCommandsResponse) => any; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/protocols/Aws_json1_0.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/protocols/Aws_json1_0.d.ts deleted file mode 100644 index 8507423a857..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/protocols/Aws_json1_0.d.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { GenerateCodeFromCommandsCommandInput, GenerateCodeFromCommandsCommandOutput } from "../commands/GenerateCodeFromCommandsCommand"; -import { SendMessageCommandInput, SendMessageCommandOutput } from "../commands/SendMessageCommand"; -import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http"; -import { EventStreamSerdeContext as __EventStreamSerdeContext, SerdeContext as __SerdeContext } from "@smithy/types"; -/** - * serializeAws_json1_0GenerateCodeFromCommandsCommand - */ -export declare const se_GenerateCodeFromCommandsCommand: (input: GenerateCodeFromCommandsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>; -/** - * serializeAws_json1_0SendMessageCommand - */ -export declare const se_SendMessageCommand: (input: SendMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>; -/** - * deserializeAws_json1_0GenerateCodeFromCommandsCommand - */ -export declare const de_GenerateCodeFromCommandsCommand: (output: __HttpResponse, context: __SerdeContext & __EventStreamSerdeContext) => Promise; -/** - * deserializeAws_json1_0SendMessageCommand - */ -export declare const de_SendMessageCommand: (output: __HttpResponse, context: __SerdeContext & __EventStreamSerdeContext) => Promise; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.browser.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.browser.d.ts deleted file mode 100644 index ef3b9b0342b..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.browser.d.ts +++ /dev/null @@ -1,45 +0,0 @@ -import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler"; -import { QDeveloperStreamingClientConfig } from "./QDeveloperStreamingClient"; -/** - * @internal - */ -export declare const getRuntimeConfig: (config: QDeveloperStreamingClientConfig) => { - runtime: string; - defaultsMode: import("@smithy/types").Provider; - bodyLengthChecker: import("@smithy/types").BodyLengthCalculator; - credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider; - defaultUserAgentProvider: import("@smithy/types").Provider; - eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider; - maxAttempts: number | import("@smithy/types").Provider; - region: string | import("@smithy/types").Provider; - requestHandler: import("@smithy/protocol-http").HttpHandler | RequestHandler; - retryMode: string | import("@smithy/types").Provider; - sha256: import("@smithy/types").HashConstructor; - streamCollector: import("@smithy/types").StreamCollector; - useDualstackEndpoint: boolean | import("@smithy/types").Provider; - useFipsEndpoint: boolean | import("@smithy/types").Provider; - apiVersion: string; - cacheMiddleware?: boolean | undefined; - urlParser: import("@smithy/types").UrlParser; - base64Decoder: import("@smithy/types").Decoder; - base64Encoder: (_input: string | Uint8Array) => string; - utf8Decoder: import("@smithy/types").Decoder; - utf8Encoder: (input: string | Uint8Array) => string; - disableHostPrefix: boolean; - serviceId: string; - regionInfoProvider: import("@smithy/types").RegionInfoProvider; - logger: import("@smithy/types").Logger; - extensions: import("./runtimeExtensions").RuntimeExtension[]; - customUserAgent?: string | import("@smithy/types").UserAgent | undefined; - retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined; - endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider | undefined; - tls?: boolean | undefined; - httpAuthSchemes: import("@smithy/types").HttpAuthScheme[]; - httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").QDeveloperStreamingHttpAuthSchemeProvider; - credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined; - signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise) | undefined; - signingEscapePath?: boolean | undefined; - systemClockOffset?: number | undefined; - signingRegion?: string | undefined; - signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined; -}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.d.ts deleted file mode 100644 index fda90f053d8..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.d.ts +++ /dev/null @@ -1,45 +0,0 @@ -import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler"; -import { QDeveloperStreamingClientConfig } from "./QDeveloperStreamingClient"; -/** - * @internal - */ -export declare const getRuntimeConfig: (config: QDeveloperStreamingClientConfig) => { - runtime: string; - defaultsMode: import("@smithy/types").Provider; - bodyLengthChecker: import("@smithy/types").BodyLengthCalculator; - credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider; - defaultUserAgentProvider: import("@smithy/types").Provider; - eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider; - maxAttempts: number | import("@smithy/types").Provider; - region: string | import("@smithy/types").Provider; - requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler; - retryMode: string | import("@smithy/types").Provider; - sha256: import("@smithy/types").HashConstructor; - streamCollector: import("@smithy/types").StreamCollector; - useDualstackEndpoint: boolean | import("@smithy/types").Provider; - useFipsEndpoint: boolean | import("@smithy/types").Provider; - apiVersion: string; - cacheMiddleware?: boolean | undefined; - urlParser: import("@smithy/types").UrlParser; - base64Decoder: import("@smithy/types").Decoder; - base64Encoder: (_input: string | Uint8Array) => string; - utf8Decoder: import("@smithy/types").Decoder; - utf8Encoder: (input: string | Uint8Array) => string; - disableHostPrefix: boolean; - serviceId: string; - regionInfoProvider: import("@smithy/types").RegionInfoProvider; - logger: import("@smithy/types").Logger; - extensions: import("./runtimeExtensions").RuntimeExtension[]; - customUserAgent?: string | import("@smithy/types").UserAgent | undefined; - retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined; - endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider | undefined; - tls?: boolean | undefined; - httpAuthSchemes: import("@smithy/types").HttpAuthScheme[]; - httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").QDeveloperStreamingHttpAuthSchemeProvider; - credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined; - signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise) | undefined; - signingEscapePath?: boolean | undefined; - systemClockOffset?: number | undefined; - signingRegion?: string | undefined; - signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined; -}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.native.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.native.d.ts deleted file mode 100644 index 14b97c82895..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.native.d.ts +++ /dev/null @@ -1,44 +0,0 @@ -import { QDeveloperStreamingClientConfig } from "./QDeveloperStreamingClient"; -/** - * @internal - */ -export declare const getRuntimeConfig: (config: QDeveloperStreamingClientConfig) => { - runtime: string; - sha256: import("@smithy/types").HashConstructor; - requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record | import("@smithy/protocol-http").HttpHandler | import("@smithy/fetch-http-handler").FetchHttpHandler; - apiVersion: string; - cacheMiddleware?: boolean | undefined; - urlParser: import("@smithy/types").UrlParser; - bodyLengthChecker: import("@smithy/types").BodyLengthCalculator; - streamCollector: import("@smithy/types").StreamCollector; - base64Decoder: import("@smithy/types").Decoder; - base64Encoder: (_input: string | Uint8Array) => string; - utf8Decoder: import("@smithy/types").Decoder; - utf8Encoder: (input: string | Uint8Array) => string; - disableHostPrefix: boolean; - serviceId: string; - useDualstackEndpoint: boolean | import("@smithy/types").Provider; - useFipsEndpoint: boolean | import("@smithy/types").Provider; - region: string | import("@smithy/types").Provider; - regionInfoProvider: import("@smithy/types").RegionInfoProvider; - defaultUserAgentProvider: import("@smithy/types").Provider; - credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider; - maxAttempts: number | import("@smithy/types").Provider; - retryMode: string | import("@smithy/types").Provider; - logger: import("@smithy/types").Logger; - extensions: import("./runtimeExtensions").RuntimeExtension[]; - eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider; - defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider; - customUserAgent?: string | import("@smithy/types").UserAgent | undefined; - retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined; - endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider | undefined; - tls?: boolean | undefined; - httpAuthSchemes: import("@smithy/types").HttpAuthScheme[]; - httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").QDeveloperStreamingHttpAuthSchemeProvider; - credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined; - signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise) | undefined; - signingEscapePath?: boolean | undefined; - systemClockOffset?: number | undefined; - signingRegion?: string | undefined; - signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined; -}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.shared.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.shared.d.ts deleted file mode 100644 index 43b4153a5f8..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeConfig.shared.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { QDeveloperStreamingClientConfig } from "./QDeveloperStreamingClient"; -/** - * @internal - */ -export declare const getRuntimeConfig: (config: QDeveloperStreamingClientConfig) => { - apiVersion: string; - base64Decoder: import("@smithy/types").Decoder; - base64Encoder: (_input: string | Uint8Array) => string; - disableHostPrefix: boolean; - extensions: import("./runtimeExtensions").RuntimeExtension[]; - httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").QDeveloperStreamingHttpAuthSchemeProvider; - httpAuthSchemes: import("@smithy/types").HttpAuthScheme[]; - logger: import("@smithy/types").Logger; - regionInfoProvider: import("@smithy/types").RegionInfoProvider; - serviceId: string; - urlParser: import("@smithy/types").UrlParser; - utf8Decoder: import("@smithy/types").Decoder; - utf8Encoder: (input: string | Uint8Array) => string; -}; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeExtensions.d.ts b/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeExtensions.d.ts deleted file mode 100644 index 3fbb918fdcc..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/dist-types/runtimeExtensions.d.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { QDeveloperStreamingExtensionConfiguration } from "./extensionConfiguration"; -/** - * @public - */ -export interface RuntimeExtension { - configure(extensionConfiguration: QDeveloperStreamingExtensionConfiguration): void; -} -/** - * @public - */ -export interface RuntimeExtensionsConfig { - extensions: RuntimeExtension[]; -} -/** - * @internal - */ -export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any; diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.cjs.tsbuildinfo b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.cjs.tsbuildinfo deleted file mode 100644 index 00767843f3d..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.cjs.tsbuildinfo +++ /dev/null @@ -1 +0,0 @@ -{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.es2021.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.es2021.promise.d.ts","./node_modules/typescript/lib/lib.es2021.string.d.ts","./node_modules/typescript/lib/lib.es2021.weakref.d.ts","./node_modules/typescript/lib/lib.es2021.intl.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/client/emitwarningifunsupportedversion.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts","./node_modules/@smithy/types/dist-types/abort-handler.d.ts","./node_modules/@smithy/types/dist-types/abort.d.ts","./node_modules/@smithy/types/dist-types/auth/auth.d.ts","./node_modules/@smithy/types/dist-types/auth/httpapikeyauth.d.ts","./node_modules/@smithy/types/dist-types/identity/identity.d.ts","./node_modules/@smithy/types/dist-types/endpoint.d.ts","./node_modules/@smithy/types/dist-types/logger.d.ts","./node_modules/@smithy/types/dist-types/uri.d.ts","./node_modules/@smithy/types/dist-types/http.d.ts","./node_modules/@smithy/types/dist-types/response.d.ts","./node_modules/@smithy/types/dist-types/util.d.ts","./node_modules/@smithy/types/dist-types/middleware.d.ts","./node_modules/@smithy/types/dist-types/auth/httpsigner.d.ts","./node_modules/@smithy/types/dist-types/auth/identityproviderconfig.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthscheme.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/types/dist-types/auth/index.d.ts","./node_modules/@types/node/ts5.6/globals.typedarray.d.ts","./node_modules/@types/node/ts5.6/buffer.buffer.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/dom-events.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/ts5.6/index.d.ts","./node_modules/@smithy/types/dist-types/transform/exact.d.ts","./node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts","./node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/crypto.d.ts","./node_modules/@smithy/types/dist-types/checksum.d.ts","./node_modules/@smithy/types/dist-types/command.d.ts","./node_modules/@smithy/types/dist-types/client.d.ts","./node_modules/@smithy/types/dist-types/connection/config.d.ts","./node_modules/@smithy/types/dist-types/transfer.d.ts","./node_modules/@smithy/types/dist-types/connection/manager.d.ts","./node_modules/@smithy/types/dist-types/connection/pool.d.ts","./node_modules/@smithy/types/dist-types/connection/index.d.ts","./node_modules/@smithy/types/dist-types/eventstream.d.ts","./node_modules/@smithy/types/dist-types/encode.d.ts","./node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","./node_modules/@smithy/types/dist-types/endpoints/endpointruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/errorruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/treeruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/rulesetobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/index.d.ts","./node_modules/@smithy/types/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultclientconfiguration.d.ts","./node_modules/@smithy/types/dist-types/shapes.d.ts","./node_modules/@smithy/types/dist-types/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/types/dist-types/extensions/index.d.ts","./node_modules/@smithy/types/dist-types/http/httphandlerinitialization.d.ts","./node_modules/@smithy/types/dist-types/identity/apikeyidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/index.d.ts","./node_modules/@smithy/types/dist-types/pagination.d.ts","./node_modules/@smithy/types/dist-types/profile.d.ts","./node_modules/@smithy/types/dist-types/serde.d.ts","./node_modules/@smithy/types/dist-types/signature.d.ts","./node_modules/@smithy/types/dist-types/stream.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","./node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","./node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","./node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","./node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts","./node_modules/@smithy/types/dist-types/waiter.d.ts","./node_modules/@smithy/types/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromenv.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/gethomedir.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getprofilename.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfilepath.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfromfile.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadsharedconfigfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadssosessiondata.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/parseknownfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromsharedconfigfiles.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromstatic.d.ts","./node_modules/@smithy/node-config-provider/dist-types/configloader.d.ts","./node_modules/@smithy/node-config-provider/dist-types/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4aconfig.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4signer.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4asigner.d.ts","./node_modules/@smithy/signature-v4/dist-types/signaturev4.d.ts","./node_modules/@smithy/signature-v4/dist-types/getcanonicalheaders.d.ts","./node_modules/@smithy/signature-v4/dist-types/getcanonicalquery.d.ts","./node_modules/@smithy/signature-v4/dist-types/getpayloadhash.d.ts","./node_modules/@smithy/signature-v4/dist-types/moveheaderstoquery.d.ts","./node_modules/@smithy/signature-v4/dist-types/preparerequest.d.ts","./node_modules/@smithy/signature-v4/dist-types/credentialderivation.d.ts","./node_modules/@smithy/signature-v4/dist-types/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4config.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/coercing-serializers.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsexpectunion.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parsejsonbody.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/parsexmlbody.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts","./node_modules/@aws-sdk/core/dist-types/index.d.ts","./dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/smithy-client/dist-types/client.d.ts","./node_modules/@smithy/util-stream/dist-types/blob/uint8arrayblobadapter.d.ts","./node_modules/@smithy/util-stream/dist-types/getawschunkedencodingstream.d.ts","./node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts","./node_modules/@smithy/util-stream/dist-types/splitstream.d.ts","./node_modules/@smithy/util-stream/dist-types/headstream.d.ts","./node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts","./node_modules/@smithy/util-stream/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/resolveendpointconfig.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getendpointfrominstructions.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toendpointv1.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/endpointmiddleware.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/getendpointplugin.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/command.d.ts","./node_modules/@smithy/smithy-client/dist-types/constants.d.ts","./node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts","./node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts","./node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts","./node_modules/@smithy/smithy-client/dist-types/emitwarningifunsupportedversion.d.ts","./node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts","./node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts","./node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts","./node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/nooplogger.d.ts","./node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts","./node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/quote-header.d.ts","./node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts","./node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-every.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-header.d.ts","./node_modules/@smithy/smithy-client/dist-types/index.d.ts","./dist-types/models/qdeveloperstreamingserviceexception.d.ts","./dist-types/models/models_0.d.ts","./dist-types/commands/generatecodefromcommandscommand.d.ts","./dist-types/commands/sendmessagecommand.d.ts","./dist-types/auth/httpauthextensionconfiguration.d.ts","./node_modules/@aws-sdk/types/dist-types/abort.d.ts","./node_modules/@aws-sdk/types/dist-types/auth.d.ts","./node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","./node_modules/@aws-sdk/types/dist-types/checksum.d.ts","./node_modules/@aws-sdk/types/dist-types/client.d.ts","./node_modules/@aws-sdk/types/dist-types/command.d.ts","./node_modules/@aws-sdk/types/dist-types/connection.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/identity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/anonymousidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/loginidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","./node_modules/@aws-sdk/types/dist-types/util.d.ts","./node_modules/@aws-sdk/types/dist-types/credentials.d.ts","./node_modules/@aws-sdk/types/dist-types/crypto.d.ts","./node_modules/@aws-sdk/types/dist-types/dns.d.ts","./node_modules/@aws-sdk/types/dist-types/encode.d.ts","./node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","./node_modules/@aws-sdk/types/dist-types/eventstream.d.ts","./node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/types/dist-types/http.d.ts","./node_modules/@aws-sdk/types/dist-types/logger.d.ts","./node_modules/@aws-sdk/types/dist-types/middleware.d.ts","./node_modules/@aws-sdk/types/dist-types/pagination.d.ts","./node_modules/@aws-sdk/types/dist-types/profile.d.ts","./node_modules/@aws-sdk/types/dist-types/request.d.ts","./node_modules/@aws-sdk/types/dist-types/response.d.ts","./node_modules/@aws-sdk/types/dist-types/retry.d.ts","./node_modules/@aws-sdk/types/dist-types/serde.d.ts","./node_modules/@aws-sdk/types/dist-types/shapes.d.ts","./node_modules/@aws-sdk/types/dist-types/signature.d.ts","./node_modules/@aws-sdk/types/dist-types/stream.d.ts","./node_modules/@aws-sdk/types/dist-types/token.d.ts","./node_modules/@aws-sdk/types/dist-types/transfer.d.ts","./node_modules/@aws-sdk/types/dist-types/uri.d.ts","./node_modules/@aws-sdk/types/dist-types/waiter.d.ts","./node_modules/@aws-sdk/types/dist-types/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/httprequest.d.ts","./node_modules/@smithy/protocol-http/dist-types/httpresponse.d.ts","./node_modules/@smithy/protocol-http/dist-types/httphandler.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/httpextensionconfiguration.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/field.d.ts","./node_modules/@smithy/protocol-http/dist-types/fields.d.ts","./node_modules/@smithy/protocol-http/dist-types/isvalidhostname.d.ts","./node_modules/@smithy/protocol-http/dist-types/types.d.ts","./node_modules/@smithy/protocol-http/dist-types/index.d.ts","./dist-types/extensionconfiguration.d.ts","./dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusedualstackendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusefipsendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolveendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolvecustomendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvarianttag.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvariant.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/partitionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/regionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/getregioninfo.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/eventstreamserdeconfig.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts","./node_modules/@smithy/util-retry/dist-types/types.d.ts","./node_modules/@smithy/util-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/configuredretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/defaultratelimiter.d.ts","./node_modules/@smithy/util-retry/dist-types/config.d.ts","./node_modules/@smithy/util-retry/dist-types/constants.d.ts","./node_modules/@smithy/util-retry/dist-types/index.d.ts","./node_modules/@smithy/middleware-retry/dist-types/types.d.ts","./node_modules/@smithy/middleware-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts","./node_modules/@smithy/middleware-retry/dist-types/delaydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/omitretryheadersmiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrymiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/index.d.ts","./dist-types/qdeveloperstreamingclient.d.ts","./dist-types/qdeveloperstreaming.d.ts","./dist-types/endpoints.d.ts","./dist-types/commands/index.d.ts","./dist-types/models/index.d.ts","./dist-types/index.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts","./dist-types/runtimeconfig.browser.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts","./node_modules/@smithy/node-http-handler/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/fromhttp/fromhttptypes.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/fromhttp/fromhttp.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromwebtoken.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromtokenfile.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveassumerolecredentials.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/fromini.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-process/dist-types/fromprocess.d.ts","./node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/ssoserviceexception.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/getrolecredentialscommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/listaccountrolescommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/listaccountscommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/logoutcommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointparameters.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/auth/httpauthextensionconfiguration.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/extensionconfiguration.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/ssoclient.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/sso.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/interfaces.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/listaccountrolespaginator.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/listaccountspaginator.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/loadsso.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/fromsso.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/isssoprofile.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/validatessoprofile.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/remoteprovider/remoteproviderinit.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/fromcontainermetadata.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/frominstancemetadata.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/remoteprovider/httprequest.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/utils/getinstancemetadataendpoint.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/config/endpoint.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-node/dist-types/defaultprovider.d.ts","./node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts","./dist-types/runtimeconfig.d.ts","./dist-types/runtimeconfig.native.d.ts","./dist-types/runtimeconfig.shared.d.ts","./dist-types/protocols/aws_json1_0.d.ts","./node_modules/tslib/tslib.d.ts","./node_modules/@smithy/util-middleware/dist-types/getsmithycontext.d.ts","./node_modules/@smithy/util-middleware/dist-types/normalizeprovider.d.ts","./node_modules/@smithy/util-middleware/dist-types/index.d.ts","./src/auth/httpauthschemeprovider.ts","./src/models/qdeveloperstreamingserviceexception.ts","./src/models/models_0.ts","./node_modules/@smithy/middleware-serde/dist-types/deserializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serdeplugin.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/index.d.ts","./src/commands/sendmessagecommand.ts","./node_modules/@types/uuid/index.d.ts","./src/protocols/aws_json1_0.ts","./src/commands/generatecodefromcommandscommand.ts","./package.json","./node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts","./node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts","./node_modules/@smithy/hash-node/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/index.d.ts","./src/endpoints.ts","./node_modules/@smithy/url-parser/dist-types/index.d.ts","./node_modules/@smithy/util-base64/dist-types/frombase64.d.ts","./node_modules/@smithy/util-base64/dist-types/tobase64.d.ts","./node_modules/@smithy/util-base64/dist-types/index.d.ts","./node_modules/@smithy/util-utf8/dist-types/fromutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/touint8array.d.ts","./node_modules/@smithy/util-utf8/dist-types/toutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/index.d.ts","./src/runtimeconfig.shared.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts","./src/runtimeconfig.ts","./src/auth/httpauthextensionconfiguration.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts","./src/extensionconfiguration.ts","./src/runtimeextensions.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/loggermiddleware.d.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpauthschememiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/gethttpauthschemeendpointrulesetplugin.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/gethttpauthschemeplugin.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/httpsigningmiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/gethttpsigningmiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/defaultidentityproviderconfig.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/httpapikeyauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/httpbearerauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/noauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/index.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeidentityprovider.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts","./node_modules/@smithy/core/dist-types/getsmithycontext.d.ts","./node_modules/@smithy/core/dist-types/normalizeprovider.d.ts","./node_modules/@smithy/core/dist-types/protocols/requestbuilder.d.ts","./node_modules/@smithy/core/dist-types/pagination/createpaginator.d.ts","./node_modules/@smithy/core/dist-types/index.d.ts","./node_modules/@smithy/middleware-content-length/dist-types/index.d.ts","./src/qdeveloperstreamingclient.ts","./src/qdeveloperstreaming.ts","./src/commands/index.ts","./src/models/index.ts","./src/index.ts","./node_modules/@aws-crypto/sha256-browser/build/main/crossplatformsha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/main/webcryptosha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/invalidfunction.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/invalidprovider.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts","./src/runtimeconfig.browser.ts","./node_modules/@aws-crypto/sha256-js/build/main/jssha256.d.ts","./node_modules/@aws-crypto/sha256-js/build/main/index.d.ts","./src/runtimeconfig.native.ts","../../../node_modules/@types/adm-zip/index.d.ts","../../../node_modules/@types/readdir-glob/index.d.ts","../../../node_modules/@types/archiver/index.d.ts","../../../node_modules/@types/async-lock/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/bytes/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/circular-dependency-plugin/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/cross-spawn/index.d.ts","../../../node_modules/@types/diff/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/glob/node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/parse5/dist/cjs/common/html.d.ts","../../../node_modules/parse5/dist/cjs/common/token.d.ts","../../../node_modules/parse5/dist/cjs/common/error-codes.d.ts","../../../node_modules/parse5/dist/cjs/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/dist/cjs/tokenizer/index.d.ts","../../../node_modules/parse5/dist/cjs/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/cjs/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/cjs/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/cjs/parser/index.d.ts","../../../node_modules/parse5/dist/cjs/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/cjs/serializer/index.d.ts","../../../node_modules/parse5/dist/cjs/common/foreign-content.d.ts","../../../node_modules/parse5/dist/cjs/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/linkify-it/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdurl/encode.d.ts","../../../node_modules/@types/mdurl/decode.d.ts","../../../node_modules/@types/mdurl/parse.d.ts","../../../node_modules/@types/mdurl/format.d.ts","../../../node_modules/@types/mdurl/index.d.ts","../../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../../node_modules/@types/markdown-it/lib/token.d.ts","../../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../../node_modules/@types/markdown-it/lib/index.d.ts","../../../node_modules/@types/markdown-it/index.d.ts","../../../node_modules/@types/mime-types/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/prismjs/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/proper-lockfile/index.d.ts","../../../node_modules/@types/readline-sync/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sinon/node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/stream-buffers/index.d.ts","../../../node_modules/@types/tcp-port-used/index.d.ts","../../../node_modules/@types/vscode/index.d.ts","../../../node_modules/@types/vscode-webview/index.d.ts","../../../node_modules/@types/webidl-conversions/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/whatwg-url/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/xml2js/lib/processors.d.ts","../../../node_modules/@types/xml2js/index.d.ts","../../../node_modules/@smithy/core/node_modules/@smithy/protocol-http/dist-types/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","impliedFormat":1},{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true,"impliedFormat":1},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"02ec1ffcc0823cb9c9ba420c619d3af2c726e3a674b66a91941c07a3e7f65dba","impliedFormat":1},{"version":"38f6da5b6f318c33e18dd7c983cab3fe52f510c9a2573948fb13f012e01b1ba6","impliedFormat":1},{"version":"b40885a4e39fb67eb251fb009bf990f3571ccf7279dccad26c2261b4e5c8ebcd","impliedFormat":1},{"version":"2d0e63718a9ab15554cca1ef458a269ff938aea2ad379990a018a49e27aadf40","impliedFormat":1},{"version":"530e5c7e4f74267b7800f1702cf0c576282296a960acbdb2960389b2b1d0875b","impliedFormat":1},{"version":"1c483cc60a58a0d4c9a068bdaa8d95933263e6017fbea33c9f99790cf870f0a8","impliedFormat":1},{"version":"07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","impliedFormat":1},{"version":"5d3e656baf210f702e4006949a640730d6aef8d6afc3de264877e0ff76335f39","impliedFormat":1},{"version":"4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","impliedFormat":1},{"version":"c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","impliedFormat":1},{"version":"570efec02480a95fa35e7c6dc3c00c59309d221e0698cefbc9e27a3c13d69c96","impliedFormat":1},{"version":"396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","impliedFormat":1},{"version":"b7b881ced4ed4dee13d6e0ccdb2296f66663ba6b1419767271090b3ff3478bb9","impliedFormat":1},{"version":"06289b9873760aac77aed4035ea6c60b1e0879b8afe47a4530bc8522b9b804b1","impliedFormat":1},{"version":"63c36aa73242aa745fae813c40585111ead225394b0a0ba985c2683baa6b0ef9","impliedFormat":1},{"version":"3e7ffc7dd797e5d44d387d0892bc288480493e73dcab9832812907d1389e4a98","impliedFormat":1},{"version":"db011ec9589fd51995cbd0765673838e38e6485a6559163cc53dcf508b480909","impliedFormat":1},{"version":"e1a4253f0cca15c14516f52a2ad36c3520b140b5dfb3b3880a368cd75d45d6d9","impliedFormat":1},{"version":"159af954f2633a12fdee68605009e7e5b150dbeb6d70c46672fd41059c154d53","impliedFormat":1},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true,"impliedFormat":1},{"version":"894dae169f8193e3f07c3fec14149a60592d1f13720907ffdf7b0c05cfb62c38","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e0d35597ff6c5142082e60814fa39c8a2077a58d8a6a262e619afb5f855f6ba","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"228318442187dee1f3b18047e6281d12d59f7b492d6243db4eb720d53e3c03f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"f51b4042a3ac86f1f707500a9768f88d0b0c1fc3f3e45a73333283dea720cdc6","impliedFormat":1},{"version":"a29bc8aa8cc100d0c09370c03508f1245853efe017bb98699d4c690868371fc7","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f95830ca11e2c7e82235b73dc149e68a0632b41e671724d12adc83a6750746d","impliedFormat":1},{"version":"7aa011cda7cf0b9e87c85d128b2eeac9930bda215b0fee265d8bf2cec039fb5f","impliedFormat":1},{"version":"92ec1aeca4e94bdab04083daa6039f807c0fce8f09bc42e8b24bf49fa5cdbbff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"25bfb291668b70290dd646f6e99e681ded0481bc0610d241a229cda07d7af425","impliedFormat":1},{"version":"6c39d4dbdb372b364442854e42d8c473e2ec67badb226745af17ed5ac41ce6f5","impliedFormat":1},{"version":"7693b90b3075deaccafd5efb467bf9f2b747a3075be888652ef73e64396d8628","impliedFormat":1},{"version":"bd01a987f0fcf2344a405e542ee681e420651eaff1222a5a6e0c02fda52343bc","impliedFormat":1},{"version":"693e50962e90a3548f41bff2c22676e3964212a836022d82e49eca0b20320a38","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"300b0c12998391154d7b9115a85554e91632a3d3e1b66038e98f2b9cb3c1061d","impliedFormat":1},{"version":"8d680d5d1a77028ca1708118b8c941edd90a6329f9dc0315ffc3a06b4820e937","affectsGlobalScope":true,"impliedFormat":1},{"version":"8bc550ee45988b123605e2cbba4dc8d3b4153c3d06f59074c7cda5bc3b2f2fd8","impliedFormat":1},{"version":"5293d799856f47259146ccf0be9a1cc0a4a5343696182d7206ed25ea67d67920","impliedFormat":1},{"version":"d7cdb379f1a8febb8ba181b2bba4c89b7f9189c68ce00292253d9f827eb0b2d3","impliedFormat":1},{"version":"fab49059d6c2026bdb2e53e4e5cde1a39da44e61daff1867c8b3b10b507bfe17","impliedFormat":1},{"version":"5a551275f85bcc4003e543a1951a5b2f682cfba9b2922f65ae0df40ab71724a5","impliedFormat":1},{"version":"22d1a3163b9a961dbe78b0aedbd7bcbc071ce1f31efb76eb013b0aee230fef0e","impliedFormat":1},{"version":"c31695696ade4514cfcbb22799997b690d3dca7fb72beab68fb2e73b6ef450dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"d99ad56d57f2c96daaf4475a8b64344b24dedafdb8f3c32d43552bcc72279a75","impliedFormat":1},{"version":"a101ef17aece908c1029a1bd3f97132794dcff21b4ca0b997d9a633f962c46aa","impliedFormat":1},{"version":"511575e18249b64b90d8f884fdb8a383c767d1a7efccd9d66a4e125a4dc5c462","impliedFormat":1},{"version":"6d8001f2c3b86c4f1de1d45ecb3f87f287ed7313d6999f8c8318cec4f50e6323","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d09f4b48899d342b5d6cd846f95f969a401933b0dcd375a8a7e45832328bb86","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c3d1222e6e3d8c35a4293d7a54d4142ebb8f7f70ec4111b8136df07fdc66169","impliedFormat":1},{"version":"70173c475c6e76ccebc37412b02b2e26f62bf45fc1534c3ebe6d7fa60fb88819","impliedFormat":1},{"version":"1c05d80325e7cb8ad9fe6f4f8cd1798ec87607fe523865b27cab9fc5b816f067","impliedFormat":1},{"version":"863bc4e31de6c75423bb02da16190d582b0a69b8964b61d45920e5b2cb3832dd","impliedFormat":1},{"version":"3c92f365d57fd49656e4907bf1d950d4a4060dde7db35effe2f6348e0e800b86","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"6e191fea1db6e9e4fa828259cf489e820ec9170effff57fb081a2f3295db4722","impliedFormat":1},{"version":"aed943465fbce1efe49ee16b5ea409050f15cd8eaf116f6fadb64ef0772e7d95","impliedFormat":1},{"version":"0435070b07e646b406b1c9b8b1b1878ea6917c32abc47e6435ec26d71212d513","impliedFormat":1},{"version":"f71188f97c9f7d309798ec02a56dd3bf50a4e4d079b3480f275ac13719953898","impliedFormat":1},{"version":"c4454589a0aa92c10d684c8c9584574bc404d1db556d72196cd31f8f7651af1a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b17790866e140a630fa8891d7105c728a1bd60f4e35822e4b345af166a4a728c","impliedFormat":1},{"version":"c50c75f4360f6fc06c4be29dafe28210e15c50cd6b04ad19c4808fa504efb51a","impliedFormat":1},{"version":"d4a1f5f7ee89b2afffd3c74282f8ee65b24266c92b7d40398c12a27054ed745c","impliedFormat":1},{"version":"900b5a9802192bc77eba35a5b87ce770df7b867a6d61772c554058c9ed635386","impliedFormat":1},{"version":"65278b3e3cb8e3f0b7bc712e86858ba7695501e76a84eedb730cc15b85d92b56","affectsGlobalScope":true,"impliedFormat":1},{"version":"f43fcf89d75f13d0908a77cd3fa32b9fd28c915deded9b2778b08f2e242d07a7","affectsGlobalScope":true,"impliedFormat":1},{"version":"9b6fc34aca8b0411b96ba35b2315017236a47709a1a98d5e16aed3b84037b9e8","impliedFormat":1},{"version":"aebf613f7831125038942eba891005fd25fa5cadcc3e3d13af4768dc7549161f","impliedFormat":1},{"version":"0faee6b555890a1cb106e2adc5d3ffd89545b1da894d474e9d436596d654998f","impliedFormat":1},{"version":"247e5c34784d185bc81442e8b1a371a36c4a5307a766a3725454c0a191b5cfad","impliedFormat":1},{"version":"1c382a6446d63340be549a616ff5142a91653cea45d6d137e25b929130a4f29a","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"20eb6689443f55ebd33372566b0afad619f1ba48fec4ffb4ab0c119e4fc52eea","impliedFormat":1},{"version":"a1b36a1f91a54daf2e89e12b834fa41fb7338bc044d1f08a80817efc93c99ee5","impliedFormat":1},{"version":"8bb4a5b632dd5a868f3271750895cb61b0e20cff82032d87e89288faee8dd6e2","impliedFormat":1},{"version":"0c1aabfd9fb1818afb2e798f91f669edafce59cd7e3423d25b1cfccfaaf2c403","impliedFormat":1},{"version":"017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","impliedFormat":1},{"version":"ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","impliedFormat":1},{"version":"9ae7df67c30dc5f52b7b21e8bb36fd9ff05e7ed10e514e2d9ed879b4547c4cd3","impliedFormat":1},{"version":"fd6a17c2d015cb2963d62db7566a43818424e8f32eb821fa9b8b142d4ab12664","impliedFormat":1},{"version":"4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","impliedFormat":1},{"version":"e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","impliedFormat":1},{"version":"d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","impliedFormat":1},{"version":"d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","impliedFormat":1},{"version":"5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","impliedFormat":1},{"version":"27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","impliedFormat":1},{"version":"eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","impliedFormat":1},{"version":"52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","impliedFormat":1},{"version":"5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","impliedFormat":1},{"version":"fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","impliedFormat":1},{"version":"d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","impliedFormat":1},{"version":"fc9bdd9b3d8fb59c913cb3b8dea0d79b38dfe9331ef07e1c6dc6bf363f061ad6","impliedFormat":1},{"version":"e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","impliedFormat":1},{"version":"0c3c4ce6a1884610c99306719f59174d81808c69393c30119f9c2aef0449a2cb","impliedFormat":1},{"version":"219a25474e58a8161b242776856ec5f6960839b63e74809445e51cadbfc18096","impliedFormat":1},{"version":"5a0d1534e9493ae44b08b3055172da38370e2afd2bc3d4bea11f7be78344036f","impliedFormat":1},{"version":"6309a45fc3c03d3c4d56228e995d51974f53009a842374695b34f3607877e5a3","impliedFormat":1},{"version":"bef94eba81ae2c09059c0d9abdb1ae1b7090314f70550f3c8cd5d7ead4a4f212","impliedFormat":1},{"version":"48b787ad458be9b524fa5fdfef34f68798074132d4b8cfe6a6fe9c2bf334c532","impliedFormat":1},{"version":"37280465f8f9b2ea21d490979952b18b7f4d1f0d8fab2d627618fb2cfa1828e3","impliedFormat":1},{"version":"c12f3ff5e221c1d3e4eaf47a372b538d8e79bd9a15266c2b049a597da0b86924","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f3f85dc43cb93c5a797f1ff0fa948d0e17843a443ae11a20cc032ccdf1b9997","impliedFormat":1},{"version":"581843e855d92557cbe9dfe242de4e53badae5e9096ca593b50788f7c89c37f2","impliedFormat":1},{"version":"869010bc679df668137cb3b78a3cb8196e97acf285208a57f6156ceac894a2f7","impliedFormat":1},{"version":"bcae62618c23047e36d373f0feac5b13f09689e4cd08e788af13271dbe73a139","impliedFormat":1},{"version":"29a99d2e57b3e08a997cbc2397bdb251441a545306a74b95ffedc5f03d9bc6b7","impliedFormat":1},{"version":"5ae003688265a1547bbcb344bf0e26cb994149ac2c032756718e9039302dfac8","impliedFormat":1},{"version":"09e811cc1088d9ea3a7ddd7290f6a13767f56c85daf8c3374a06a45a08d55647","impliedFormat":1},{"version":"a86053981218db1594bd4839bde0fb998e342ecf04967622495434a8f52a4041","impliedFormat":1},{"version":"5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","impliedFormat":1},{"version":"7b270dc53f35dd0b44bfa619ad4d351fffd512e14053c3688323ed007eda3f6d","impliedFormat":1},{"version":"6d4e928f232ade7221cffc6e4332ec935baa176415c9bf5d12111bb883a247d2","impliedFormat":1},{"version":"e86ad029224d4f2af3e188be8b5e9badf8c7083247572069bac7bd2193131fc7","impliedFormat":1},{"version":"057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","impliedFormat":1},{"version":"d94034601782f828aa556791279c86c37f09f7034a2ab873eefe136f77a6046b","impliedFormat":1},{"version":"105ae3dd61531488194f412386ba8c2b786f1389ac3415098cc47c712800da29","impliedFormat":1},{"version":"45851fbb6595233ecf6be213f74f00690c752782387796c66ea186750f831d06","impliedFormat":1},{"version":"4ee905052d0879e667444234d1462540107789cb1c80bd26e328574e4f3e4724","impliedFormat":1},{"version":"151659e152d71986b8943b9943cd7fbe27a65874655081602de7ea24a0f66e9b","impliedFormat":1},{"version":"3448e2fa1ae3a52d50e1e82e50b6ae5b8bd911004a8824b0c6b26c8cdcd15fec","impliedFormat":1},{"version":"c0c0b22cefd1896b92d805556fcabda18720d24981b8cb74e08ffea1f73f96c2","impliedFormat":1},{"version":"b97e6411a3ee83e6f77760f0400d117313a980d05ec89f1e1a7502229e36d060","impliedFormat":1},{"version":"270418f8a6639be745d14bfd085e62685f24eaa6d6482aa9803bae8b8b93919a","impliedFormat":1},{"version":"4cb33d05ff168c1ca836d6d438f93040972af43fc09774876c4add2ad96d125f","impliedFormat":1},{"version":"902d2b66388607197ec48798c94a6ffc657fe1cfbee15e49b6b3052de0e5b8fa","impliedFormat":1},{"version":"38104b9a37d0b9dc54be36ae43b1a32f9cfae34742743bfd7104cf1f39661225","impliedFormat":1},{"version":"47ff32ca9ab8474e89615b4bbe5f2264c2940fc12b86c4dc0a99659479517a6b","impliedFormat":1},{"version":"f892f85b4838f6a2ff1438d240dcf23a872d090794967c7f817a82ea8da1ad8e","impliedFormat":1},{"version":"cb498c53a9d35ac1cf9a3515f3835d48b4626a612cf7540c5bfb99542c9ab1a5","impliedFormat":1},{"version":"b86e64c48044bb73c6de7aa2cdf9295b2c104221e6a68b408225b283d1bcfda2","impliedFormat":1},{"version":"16173f5b3e68a373e7dfe6d00948549facc9947c9dbde813f1efe3a0f236ff6a","impliedFormat":1},{"version":"f457fc1b7583e1215393db13b95a186593660aad29706515ab7479869bc585e0","impliedFormat":1},{"version":"a11288edc8161f664148ea7d56101517e380335f5fa1a94408db86efce025bba","impliedFormat":1},{"version":"0e2a6b2eeadafbc7a27909527af46705d47e93c652d656f09cc3ef460774291b","impliedFormat":1},{"version":"d6d561bf4309a197e4b241fb0eacebf14c400661c4352676cd3c88c17e5ab8a2","impliedFormat":1},{"version":"ed012a19811c4010cb7d8920378f6dd50f22e1cf2842ecb44a157030667b165e","impliedFormat":1},{"version":"4085ac780790cc5787e375bd6c7dc149610665514e1d3d8fb65aec29efb691c9","impliedFormat":1},{"version":"7634eca84d60522b68ac679813fd9247a4260f7412890e924c7779758f8d6391","impliedFormat":1},{"version":"b4ff74f0589487410168be50e3231caf687c5e1302266709742382e8d004fe1e","impliedFormat":1},{"version":"406f227eebfe8be216d7a4b215ed09198b0c2f6599f2273b69ee5b75824c5435","impliedFormat":1},{"version":"e7cd1d6f8afb317dca8c5b6a60d5cd55aacf8d9ed8ae39f22e3104ed0c479552","impliedFormat":1},{"version":"75c9a36ada92da43627b5cf1142a6fe20f50ad00abacb90204b74b19775521c2","impliedFormat":1},{"version":"8a90f97fdb10d83c6842a699c3df474246755f4fbf3ee2d35e69d6599fe9092c","impliedFormat":1},{"version":"88aacf6e2493633490812c70595b517c8e4299f054d28a51687b10f0968276c3","impliedFormat":1},{"version":"f6cae2c0acda884c4b9dec4063d062252cf0625a04ebf711a84d7de576427c3e","impliedFormat":1},{"version":"946739ab9acb2fccd0b2e5a0d1ac4dfe69b9279f33a26e7f0a7a7ab24ee343fc","impliedFormat":1},{"version":"d037b771e89ef6dd81c71de92cc644d68b1b5d1ce25dbce9c2cfe407dd0b5796","impliedFormat":1},{"version":"25091d25f74760301f1e094456e2e6af52ceb6ef1ece48910463528e499992d8","impliedFormat":1},{"version":"853d02f4f46ca9700fefd0d45062f5b82c9335ba2224ca4d7bd34d6ae4fc4a7f","impliedFormat":1},{"version":"ab679e25dcb5d085ca42c33ffc8e2fc48411f81ad3108a3aa81eca79c104ef95","impliedFormat":1},{"version":"b901209745b3cef4b803e42731c40f5c2c2c7101bbd5f481c0fd1c43f9f440f3","impliedFormat":1},{"version":"cf6dc8f18bc5ee063dc1a37bccd3031dc0769f11622399018c375aacfcbda7c9","impliedFormat":1},{"version":"8ca2d01f5f3d4d4067aadea230570afa4c91e24e485fbe2e9d53ead3b33f80d0","impliedFormat":1},{"version":"9230a7b03ae3cce93e94a2cc844da1e5414d2be7505ecc82402094a132cfbbda","impliedFormat":1},{"version":"27350a2872f30b97e947f52ccf15654239eda7c9ff35135a1aa82cc37642fdeb","impliedFormat":1},{"version":"ed3e176bc769725ebc1d93f1d6890fc3d977b9155ae5d03be96ec2d49b303370","impliedFormat":1},{"version":"7933769d84f5ae16546aef06537ca578f1c8d7cca0708452a00613050ac1f265","impliedFormat":1},{"version":"d405963c5f69955e95c30ef121c7a3309f214f21ef09dceb5d7ac69557cbe0fa","impliedFormat":1},{"version":"29c7276f64f0de86eb981ddd4e5a8e7f832fc8d4e712c7e8e1beab6af8cc4147","impliedFormat":1},{"version":"6f11170f0056f1681101d9a1045af3c0d2ea489f14d1a0d4c0b2cb7860cfb8f7","impliedFormat":1},{"version":"fdd84224998f5f4d97017b829548f1fac4ac803025e16c27d4fc7f3426c6261e","impliedFormat":1},{"version":"1591996e71f1aab2e8726d7d04d59a3e8f5162578bee747e883932cfc0b57b2a","impliedFormat":1},{"version":"f8ce447bbda4f75da74cecd866cc1ff9bdde62189ac9d8dc14a16c48b3d702fa","impliedFormat":1},{"version":"da3f7f511c344fb56275cd954156a4d736c9f414f9b84bb0ee229ef583e38074","impliedFormat":1},{"version":"c7d30b164562b7ce99fcb53ab78f937cc845e003f6089d648351331921379994","impliedFormat":1},{"version":"fe2d1251f167d801a27f0dfb4e2c14f4f08bf2214d9784a1b8c310fdfdcdaaea","impliedFormat":1},{"version":"2a1182578228dc1faad14627859042d59ea5ab7e3ac69cb2a3453329aaaa3b83","impliedFormat":1},{"version":"dfa99386b9a1c1803eb20df3f6d3adc9e44effc84fa7c2ab6537ed1cb5cc8cfb","impliedFormat":1},{"version":"79b0d5635af72fb87a2a4b62334b0ab996ff7a1a14cfdb895702e74051917718","impliedFormat":1},{"version":"5f00b052713bfe8e9405df03a1bbe406006b30ec6b0c2ce57d207e70b48cf4e9","impliedFormat":1},{"version":"7abcae770f21794b5ffbc3186483c3dbcf8b0c8e37d3ef3ed6277ece5c5dd4be","impliedFormat":1},{"version":"3e642f39da9ad0a4cd16ccbd7f363b6b5ad5fa16a5c6d44753f98fc1e3be9d96","impliedFormat":1},{"version":"7f5a6eac3d3d334e2f2eba41f659e9618c06361958762869055e22219f341554","impliedFormat":1},{"version":"6f996f44113b76a9960d3fad280f4f671115c5e971356d1dbb4d1b000af8b3b3","impliedFormat":1},{"version":"67f2cd6e208e68fdfa366967d1949575df6ccf90c104fc9747b3f1bdb69ad55a","impliedFormat":1},{"version":"f99ab9dffe6281c9b6df9ae9d8584d18eabf2107572bbd8fa5c83c8afe531af8","impliedFormat":1},{"version":"4fc9939c86a7d80ab6a361264e5666336d37e080a00d831d9358ad83575267da","impliedFormat":1},{"version":"f4ba385eedea4d7be1feeeac05aaa05d6741d931251a85ab48e0610271d001ce","impliedFormat":1},{"version":"f5405fb679a467cb979f8744940b22b7bc3a0bcbe648c3910d98de3188d42a78","impliedFormat":1},{"version":"68969a0efd9030866f60c027aedbd600f66ea09e1c9290853cc24c2dcc92000f","impliedFormat":1},{"version":"fc79932b9aa710f025b89bf8d8329d99080286e5e079a7d5a529236e9f5dd69e","impliedFormat":1},{"version":"6646d9075e3e0eedb02c9d03bffef54c8bbeb601d27eed46f143aba435bac37d","impliedFormat":1},{"version":"0dec72b4c5c4bb149750fef4fc26bdae8f410de941ee766c953f5ac77381d690","impliedFormat":1},{"version":"8f2644578a3273f43fd700803b89b842d2cd09c1fba2421db45737357e50f5b1","impliedFormat":1},{"version":"639f94fe145a72ce520d3d7b9b3b6c9049624d90cbf85cff46fb47fb28d1d8fe","impliedFormat":1},{"version":"8327a51d574987a2b0f61ea40df4adddf959f67bc48c303d4b33d47ba3be114a","impliedFormat":1},{"version":"00e1da5fce4ae9975f7b3ca994dcb188cf4c21aee48643e1d6d4b44e72df21ee","impliedFormat":1},{"version":"991fd5ebf9f30ffa17cae6faeae6a838d3d91bdcdd419bce358dc99b8e5b0ad0","impliedFormat":1},{"version":"4d250e905299144850c6f8e74dad1ee892d847643bacf637e89adcce013f0700","impliedFormat":1},{"version":"51b4ab145645785c8ced29238192f870dbb98f1968a7c7ef2580cd40663b2940","impliedFormat":1},{"version":"589713fefe7282fd008a2672c5fbacc4a94f31138bae6a03db2c7b5453dc8788","impliedFormat":1},{"version":"26f7f55345682291a8280c99bb672e386722961063c890c77120aaca462ac2f9","impliedFormat":1},{"version":"786691c952fe3feac79aca8f0e7e580d95c19afc8a4c6f8765e99fb756d8d9d7","impliedFormat":1},{"version":"747d6d391f97a46f6880e10c8e4858bbd6568070a0f9af0ec74c26475e2c885f","impliedFormat":1},{"version":"354f47aa8d895d523ebc47aea561b5fedb44590ac2f0eae94b56839a0f08056a","impliedFormat":1},{"version":"62b753ed351fba7e0f6b57103529ce90f2e11b949b8fc69c39464fe958535c25","impliedFormat":1},{"version":"514321f6616d04f0c879ac9f06374ed9cb8eac63e57147ac954e8c0e7440ce00","impliedFormat":1},{"version":"ce7b928daedd974205daf616493c6eb358069ed740ed9552c5f4e66da19fd4bf","impliedFormat":1},{"version":"b1aa0340d4248aba8e36e7d246b223e3ae89fb27f167f9e3c7b14838bb41b13f","impliedFormat":1},{"version":"620290e7cd91726a13ce06daf8437b37f4bf782c755674a41d881c2217a35830","impliedFormat":1},{"version":"e06d050ebf5ab7ae4506d7de03d369e5f2f7c96df0e4ba6aec7a6b2450c039d0","impliedFormat":1},{"version":"88c0699b282331433af615deb79fcd6f8e815e93bd40dd7200c1e3cdf052e5a0","impliedFormat":1},{"version":"cf8659543b380c9cf02c88e231eaad406f323f6b1d3eb877d4cad9ff0408974f","impliedFormat":1},{"version":"a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","impliedFormat":1},{"version":"84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","impliedFormat":1},{"version":"415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","impliedFormat":1},{"version":"901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","impliedFormat":1},{"version":"ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","impliedFormat":1},{"version":"b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","impliedFormat":1},{"version":"ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","impliedFormat":1},{"version":"068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","impliedFormat":1},{"version":"3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","impliedFormat":1},{"version":"fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","impliedFormat":1},{"version":"d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","impliedFormat":1},{"version":"3f6af667357384c1f582ef006906ba36668dd87abe832f4497fffb315c160be9","impliedFormat":1},{"version":"363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","impliedFormat":1},{"version":"c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","impliedFormat":1},{"version":"2f1a8ca9846d9ac5481544b5b53811efe2c44bba9195af584136fb34371d5e23","impliedFormat":1},{"version":"1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","impliedFormat":1},{"version":"ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","impliedFormat":1},{"version":"d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","impliedFormat":1},{"version":"4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","impliedFormat":1},{"version":"7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","impliedFormat":1},{"version":"ea2de1a0ec4c9b8828154a971bfe38c47df2f5e9ec511f1a66adce665b9f04b0","impliedFormat":1},{"version":"c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","impliedFormat":1},{"version":"4ef0a17c5bcae3d68227136b562a4d54a4db18cfa058354e52a9ac167d275bbb","impliedFormat":1},{"version":"a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","impliedFormat":1},{"version":"64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","impliedFormat":1},{"version":"c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","impliedFormat":1},{"version":"b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","impliedFormat":1},{"version":"434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","impliedFormat":1},{"version":"c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7","impliedFormat":1},{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","impliedFormat":1},{"version":"81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","impliedFormat":1},{"version":"4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","impliedFormat":1},{"version":"f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","impliedFormat":1},{"version":"1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","impliedFormat":1},{"version":"ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","impliedFormat":1},{"version":"ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","impliedFormat":1},{"version":"f7a8f4bc1e8e786c6115970b8f3ed4797be48108de00b3552bf590706d3a5e8a","impliedFormat":1},{"version":"ce096c727f1ae221bd35b46dd3e050bf3909674e6e9ec1518b3a5aa89ab2a497","impliedFormat":1},{"version":"1a8e6a4f31a5196144f35d0434e16369881d828c849d6a1c9290b6bde8807449","impliedFormat":1},{"version":"42a9ac86df0fa58634ea8a5f7f07b9b9c3243d82e306fb22d8a41639935a6c87","impliedFormat":1},{"version":"5766c26941ae00aa889335bcccc1ecb28271b774be92aede801354c9797074bb","impliedFormat":1},{"version":"3a19286bcc9303c9352c03d68bb4b63cecbf5c9b7848465847bb6c9ceafa1484","impliedFormat":1},{"version":"c573fef34c2e5cc5269fd9c95fe73a1eb9db17142f5d8f36ffe4a686378b8660","impliedFormat":1},{"version":"d97e30dd93590392fed422f2b27325d10ab007d034faaaf61e28e9ddc9d3825b","impliedFormat":1},{"version":"d1f8a829c5e90734bb47a1d1941b8819aeee6e81a2a772c3c0f70b30e3693fa9","impliedFormat":1},{"version":"be1dfacee25a14d79724ba21f1fde67f966b46e2128c68fed2e48c6e1e9822c5","impliedFormat":1},{"version":"19b3d0c212d241c237f79009b4cd0051e54971747fd89dc70a74f874d1192534","impliedFormat":1},{"version":"441751fb3deefe98952ba09b3c5a583c66aa2c9a1abe5e9dba6064a55f5a7678","impliedFormat":1},{"version":"c211816fd9af3b1541c812b859c769958d5e5b85b81da832eb2bcdf98342b054","impliedFormat":1},{"version":"7639642137f8329ef4a19410ce8d3e46910a76294df263f46b428fd61c79d033","impliedFormat":1},{"version":"8e69efd9afdfcd34d85adb6d8e71a5e13fea2a33c7019dd624cc7696772183a0","impliedFormat":1},{"version":"a7ebfe3e2c8f4fea5dac7ffbf6d00acee63c530de24d57cdeeed05530285ca26","impliedFormat":1},{"version":"82b4045609dc0918319f835de4f6cb6a931fd729602292921c443a732a6bb811","impliedFormat":1},{"version":"0fd70ca1eaef1e2dd6f48f16886df4838664821d992fd8076d07fc15e83c8498","impliedFormat":1},{"version":"ba30e6d2f1d20c707566cf485167331a10c539802a79040ced055b62a7aae53e","impliedFormat":1},{"version":"642eae3e9ec5997883f86dd7346d818f07d40fb83cc3530f0e52e232ffb4e631","impliedFormat":1},{"version":"29a6df727893a86807f4dc02116c31d9e6097139579ed6e8029b14c526cba027","impliedFormat":1},{"version":"537a2b61594512c5e75fad7e29d25c23922e27e5a1506eb4fce74fe858472a6e","impliedFormat":1},{"version":"311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","impliedFormat":1},{"version":"7c07838da165fd43759a54d2d490461315e977f9f37c046e0e357623c657fc42","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"115c8691bd8fac390f6f6eef5b356543d716da7cffa4c2f70f288d56c5b06aeb","impliedFormat":1},{"version":"e91516e66f9fbf39c978a4092c16ffda3bb0b32158fca6def75aae9fab358153","impliedFormat":1},{"version":"abd4563a6a7668fa6f8f5e5a425a0900b80fc2309fec5186e2cae67f3ce92663","impliedFormat":1},{"version":"cb48f3011e72efef9d5a5b312f4a956f699b8d423bf9f2772724cdded496bd50","impliedFormat":1},{"version":"9aed07904079877252e6c0aedf1d2cf1935ed91d4abc16f726c76b61ea453919","impliedFormat":1},{"version":"6621af294bd4af8f3f9dd9bd99bd83ed8d2facd16faa6690a5b02d305abd98ab","impliedFormat":1},{"version":"5eada4495ab95470990b51f467c78d47aecfccc42365df4b1e7e88a2952af1a3","impliedFormat":1},{"version":"5fc0957ee8e15821ddb30a76e74e7984953fc35611a57fd703e624bade5836b9","impliedFormat":1},{"version":"40e9c2028b34c6c1e3281818d062f7008705254ee992d9857d051c603391e0f4","impliedFormat":1},{"version":"4720efe0341867600b139bca9a8fa7858b56b3a13a4a665bd98c77052ca64ea4","impliedFormat":1},{"version":"566fc645642572ec1ae3981e3c0a7dc976636976bd7a1d09740c23e8521496e5","impliedFormat":1},{"version":"66182e2432a30468eb5e2225063c391262b6a6732928bbc8ee794642b041dd87","impliedFormat":1},{"version":"11792ab82e35e82f93690040fd634689cad71e98ab56e0e31c3758662fc85736","impliedFormat":1},{"version":"3957b1244f49991b89f12cc45942c24f9c5927dc72677b105bb896d316f0454e","impliedFormat":1},{"version":"6c53c05df974ece61aca769df915345dc6d5b7649a01dc715b7da1809ce00a77","impliedFormat":1},{"version":"18c505381728b8cc6ea6986728403c1969f0d81216ed04163a867780af89f839","impliedFormat":1},{"version":"d121a48de03095d7dd5cd09d39e1a1c4892b520dad4c1d9c339c5d5008cfb536","impliedFormat":1},{"version":"f6d55e607f55be35a3c481b7685461a9acc1e27b893839218eb9313f7e85278c","impliedFormat":1},{"version":"b394ea95c82281d184ea83e8511bd1a43f78d6908eb34b536446d3eb08f9d47f","impliedFormat":1},{"version":"41edf4071b119fdf28b46a3c28c0845f2598bb8b196e7e4c9e01415403fdaea5","impliedFormat":1},{"version":"2bdf3bcf1a9771a288a783d1e8ee5d1d3126c11ddde26ae44864ab432192a6f6","impliedFormat":1},{"version":"603bafdacee4c8850ef5820f8642a817a3f0db6f76dda0474bcf3d17c2e15398","impliedFormat":1},{"version":"a10c79ab97c8a4f6074203094dba87bc736ca574ec480be1df6ec2c82d774573","impliedFormat":1},{"version":"801f049a9e74e941e8ca8add60492aaf4ab717a166248d355ded5753d80f9a85","impliedFormat":1},{"version":"70bba0a9c9c2ad7a042e134a840c4d8462bf0ad98e41c50ca52725ae47265eb9","impliedFormat":1},{"version":"f4dc28fbbba727722cb1fd82f51a7b9540fbe410ed04ddf35cab191d6aa2ba10","impliedFormat":1},{"version":"1db9e7d40d7ffade5bd15ce84936997bb9d159d37668c9d8955993753bbdfb2c","impliedFormat":1},{"version":"047f85c429fbee7423e723a6232e527d69b65c3399880ed8ff0842e29c497c20","impliedFormat":1},{"version":"9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","impliedFormat":1},{"version":"526ee815290e47e75fd2105f83de0916689cc532a19c81620672342f6478095f","impliedFormat":1},{"version":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"8bfba49493f92a72cdffe5b9947c3f572c9301f4e95a471027d0022e8d9b5d97","impliedFormat":1},{"version":"fa90f0cf69cd9296a6c0c43419540ba8e734ab9bf98eff6576bb5f04ddfea175","impliedFormat":1},{"version":"b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","impliedFormat":1},{"version":"68adf02128cad117e068f53ab334cbc730bcfeb7d658d8ce8118da6770b7e622","impliedFormat":1},{"version":"57148dc07df8d175350eb9576cba28cf1b2b7f8a97fc4fb4fcad25089bdd5272","impliedFormat":1},{"version":"2d10d8e7f884bbbbc1dc980464cd36346f2b2aa21bb2c049d21b381053bafbbf","impliedFormat":1},{"version":"7f1567b9dfb571a80556155a5bff1c946b23e74443466689bed24095604b3a9b","impliedFormat":1},{"version":"b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","impliedFormat":1},{"version":"51796c3726bf734b061fac41b479a660f9afccf50b8b493835e204723d23a84d","impliedFormat":1},{"version":"c2b694d903303007a430acf66980f3b503dbd4e50cf6c183af0daf39c8d79ee8","impliedFormat":1},{"version":"a945cfe6ca774e53111b0cfb6b767261352dc6e15d27641b61e5c634b4a729c3","impliedFormat":1},{"version":"3c10545e61e9428bebdc65fed8d11e09d203afb4745eea11b98be7b218a2aeb1","impliedFormat":1},{"version":"fde1236eef449f111d0eb306a5245dab335974dd0ccac39223ea200907c27a8b","impliedFormat":1},{"version":"c1a5f70e04c94e202ef756018ddacc22e752ee3e5eb401170a2dca2773877277","impliedFormat":1},{"version":"f4bedf06294a6a4d28179ee9689f2d8e00ad4d9806a99b234c2a58f1c9147acb","impliedFormat":1},{"version":"91d68d8136434dbe13c34fe6ef3fde75791f9be128ab6b4312d1699e1fcd9859","impliedFormat":1},{"version":"260c24d1b8fdb9284ffd93112fb4141e94970be4ff2ca23ca60b361dab39eee2","impliedFormat":1},{"version":"cb5327ac944956c162522b4388a74a4b3151e2ba3fd5b057ad13a452b2c30189","impliedFormat":1},{"version":"7bac1d3d9a1f0290c91e88426dab334d9d31a712647df5fb5666ad7acb3d53bd","impliedFormat":1},{"version":"41d461c745d59a6e125dbb554b814bc99a9f072325ffd3c8407809378995fdd4","impliedFormat":1},{"version":"33589aa637b92a02e6138fcaab28454fcf35a5e7d4cf91343c83342715f9b55a","impliedFormat":1},{"version":"ac13ba680450baa70ac9e9a2f02b50ae43437fd23d76bf9215a6a5b429455010","impliedFormat":1},{"version":"8b325ba54f25c33b38550f76a31afb82db9d7f4b1891276eeae5aba2f2d3bc30","impliedFormat":1},{"version":"eca427f98f87824d62688c987be1b6fb5dbd2c21a71fbb42702c7e365d0309bf","impliedFormat":1},{"version":"93c931504d284fb193a7cce460e4c2d30d4ed247e246e1f214a8064e95198ce8","impliedFormat":1},{"version":"ce972ae1cfa1741dfc7d5b8caeaabfb696023f45a80c0d71fe55494604cc78c8","impliedFormat":1},{"version":"6360869b4f8e9b942293072189349e2c1a44cc3cd6757e83cc62619e6abb01ad","impliedFormat":1},{"version":"f3ac122e178b71c8d2e74f85d0d0ead1ab592efd4ca989db632bb2f5ecbea484","impliedFormat":1},{"version":"2db9f3f74d99d1d437ca92760f510c76e9024d372506266d8443745eb77eff4a","impliedFormat":1},{"version":"e6bd80f63b2290bcea0bcd06002a19739050f188a8accebec706685cda627755","impliedFormat":1},{"version":"6717f2b01e15e479a01d76258afb0d5f8130fd5d6759a04cd60fde5587549efa","impliedFormat":1},{"version":"0e841b93051d30dc91ae7ecbddb1d89152875ac2e92a18f57d26a135466ba5a7","impliedFormat":1},{"version":"42afd9d91bce6d077990a4f3628bcb7f8fe1bc0397ae481bdf54d6fc7c5cd3a4","impliedFormat":1},{"version":"12f6e76f5766ffb9aaf71adbf0a46b8dca86c59982cbe16a2addb87b68c8b937","impliedFormat":1},{"version":"ec8bff9f60af63c0d12517026faff805a05ae930848edf9f35ef27cf8b0f8478","impliedFormat":1},{"version":"2b26174b7cae62f9d9843b5cab80a844fcf530b528348717180a2e60fcd8c53e","impliedFormat":1},{"version":"16189422d0a96941777ea137f472b05a8dce2c530b4e61970c9412e0a139f9b8","impliedFormat":1},{"version":"373f28376805407a378a80ff2b08c56fa0bf7ac76e5abdedb5a00a4aca2ba9f6","impliedFormat":1},{"version":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"8edadbdab1f9f41f86b9bf0151213fbc7778a337703888ebacf017e73738fa00","impliedFormat":1},{"version":"675d65b49d00d283578a569e662548c2a55a95d7c1a211f9e9a32c6e1398dce8","impliedFormat":1},{"version":"4d11636fad62a75861b44b117d7237d38d957ddd51e09f4021f8b86acc2349b7","impliedFormat":1},{"version":"dbc85ae54cb8da38556b3dc33522159c8a5558c79568edbe4977226764e51219","impliedFormat":1},{"version":"7bf23edcdb0ec0715b7f7b85695a1078a132067c495efa8f6cdcda9359659f9c","impliedFormat":1},{"version":"4ad28da36ad48edec414054e1daef40c1016357b188eca0f72977f30222d9c02","impliedFormat":1},{"version":"6c4032871e6cfcbf2356a398c14a23a54af756bf7a5aff43cddb96b09469248e","impliedFormat":1},{"version":"81f20249f433350a8e13cbb9206779e667f0d5e5ac4b8f014cdf6b6e42a136fc","impliedFormat":1},{"version":"c7185143683e9ba278420520af2e2a80dd911e88e5c08c56405b2a65996e2a1f","impliedFormat":1},{"version":"ca642739f49fb9d709f726a6447cefcaf21d8ccb16595724c8929b515a08ef53","impliedFormat":1},{"version":"42adbc164a978ef94024a312dd27e2415fcf034ca6e1ada520b40582704b3e47","impliedFormat":1},{"version":"4c3e6490ded76314f8115ca4657084c5bd53560db3b366e871c2e44b44437e4a","impliedFormat":1},{"version":"5c44dc0b569cde877bdd06ce1124acd6ae621d0a5dfc65a6668e13b85ca54d55","impliedFormat":1},{"version":"4bc6dbef10e6d46dad778f5fc190eef94e5568d612140b8791b00b01882ec1d6","impliedFormat":1},{"version":"3bb26409311deb6bb7a276fe8af90048fd1146f73881ee9826821df71d11980b","impliedFormat":1},{"version":"e463cc21447f0a1aeeeb793f51f4c165be1cec7583c15f68b8a1703c343a6cca","impliedFormat":1},{"version":"3ba99b530549ef5f440cab610ca72cd7bdc1aab48ba22d24bd00a931aedff21a","impliedFormat":1},{"version":"8f4a728c02701563b8b3c4ff7958bfef49dd9e03215db06d31ead9ccd5270242","impliedFormat":1},{"version":"168ed0c44fb93c128dd97ce63c8f5844c91285710f8424cc85cb804904410629","impliedFormat":1},{"version":"e135af5c48d2dfc0c658e06827798aae78a97933bbdbaf8e023ee003d47651b1","impliedFormat":1},{"version":"529e5b8f3b7ad6bbb679268c7c9f29dcc0670e511574197e9755fbd2d70e1c97","impliedFormat":1},{"version":"4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","impliedFormat":1},{"version":"e35526a0977b9cd80f799aef3314cb2bfe66aeb40879c888f7a993bd3437fc42","impliedFormat":1},{"version":"81d92e5c4d618ba0660121ed30c603e8111ad605e7562948f7430d87038daee0","impliedFormat":1},{"version":"36990d934030ce1060f203c4b45ee7a811aa11aaa4d075bb81c2748da8329607","impliedFormat":1},{"version":"0ae845a8508fbfe0344eb505ddb4a4e5a8759f5ea4608bfc5f3f1b9ea51d76b4","signature":"611c3555ebe13d9820f48a53bccaacf5a2e1e0df64d719cd9e2fba33f2791f8c","impliedFormat":1},{"version":"bd0b6d0720c8b9fb5983761df5b57d6dd6646baf9cc438985f1b53d395aad3d0","signature":"eaba02405aff070bc130d8ad89fed3fe6a7c58493f2792406d671283c42d070b","impliedFormat":1},{"version":"67543772f3c75dc5a2d827c954cf0fde958401e96a6e921fbf6079ed7f4f4daa","signature":"a154d3346d8bc2536064abd3c3dcd962ab394ca73cebfceb0a3723976416f049","impliedFormat":1},{"version":"04c72d6fa3275b08865357900ba7580a5c9e31692a12641a25665fed8411c8b8","impliedFormat":1},{"version":"fad2e326af305b648dd46cac96bf31c88f508823cfea877fae79a9b01dd4d524","impliedFormat":1},{"version":"45e0dd06a42ab62f879b1567438bce5b85eee9c6875685ca2c6ca10f978038b2","impliedFormat":1},{"version":"ad5976f5c289f6720287944a265db0761709be06d5331fc37a1b2999fa13bacc","impliedFormat":1},{"version":"15ffad7691bca48369580748c576e889f19700b8b3a1bfc6586beab673a87956","signature":"9d33b8675e7074e5fcdbde477a40a2ab0278bcef7fb64cc28aa75846d3402bdc","impliedFormat":1},{"version":"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","impliedFormat":1},{"version":"0771ddb474014581a882838fd20e25e829038bb53c127c5b339812f749f6aa3e","signature":"1f9165291e6b94fc61224a00ccf17997125f8148aa244fc533c58557e07641e4","impliedFormat":1},{"version":"d59857b5ae5e3a693c3a2966fe3799ca0ee3c9ff9f3b3e2706cc31bd9f3d4ec4","signature":"5f46441b319013cfcc9e00c60f9f96162b8b7391d4ccae9c511f752812ee3e3a","impliedFormat":1},{"version":"952a60f7c6c46b683f6e0804d1e8e46244e90a68cdaef3d426708e0c82edcd94","signature":"8b3603d15e3899df5abe14590f4549414118396c49c75e4cf6f0e944079ded78"},{"version":"d62c0b0d23609a485dff9b8ed8e9af9c56b8789dc70a07d4bdbb26f16420b249","impliedFormat":1},{"version":"a2609926cd0259b582f55812d4ea93ff0440e38dd015bdb95394b26ad3d34cd1","impliedFormat":1},{"version":"2bdaf407163ca9ca9bc3c1d3fb78ad26b6bd2f7d68b04810fc28072925a95e9b","impliedFormat":1},{"version":"95347f256453f88602fcfc792b0ccea75f330aa22150bd95a6a8bb034a20ba14","impliedFormat":1},{"version":"dd2505eec07d3d341be4322f9f0380b5196f2b163944016227bb599dd89136e7","impliedFormat":1},{"version":"f9dfcd54e603db0684207424124c340a7eb0e61807ece0cdb51a8801c47c9155","impliedFormat":1},{"version":"ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","impliedFormat":1},{"version":"970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","impliedFormat":1},{"version":"e81c6b5f3f287690f7400c7468dc2bf21e621902dc1b6f98236e38235c0dfc68","signature":"9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","impliedFormat":1},{"version":"e50222c22db171b6e6f102dad414ba90b1ad3802537779e838bed86ff506cb28","impliedFormat":1},{"version":"4c36f9d0ffb25cf61b696b2777ba06d553d1b0cfd12d9eed8a1e3b1a50beb2f7","impliedFormat":1},{"version":"dd478451ffa00f4352bffe4f55b4531c8dec0edafb5777272089e5127dca808c","impliedFormat":1},{"version":"aedddd59fc4889fcdeb54a3b2a4943736f282c00db826ff710acb6bc91873b0d","impliedFormat":1},{"version":"5d9a5cc1712870f91f66850e7056e0d03b4046de5558a00e7190b6a9c2f7d432","impliedFormat":1},{"version":"0daf877cd2dcb81c0e39a96ee20262dc07ecc6f68d65cdb9cc6e6cf2f31d29c5","impliedFormat":1},{"version":"6206a6984c6210c7e02e8cec6c2417f6d2458ec36ac97b80ce9f894933a08082","impliedFormat":1},{"version":"d686fcb07a661fef0866137e450a487e710c233cb24f04d11426228162595d7e","impliedFormat":1},{"version":"e21af678a334e57edb0948acafa5f8d029a86c515f74b35701de2b7f0734ed78","signature":"97f2cb77a51ab49d71bdaa169999f503dc91a1261817c15463528d6d7a2dd2f9","impliedFormat":1},{"version":"8e3f8a63b6af3fd917721cfe670eedf5aae7df605d0072c5997021eb6fbdae31","impliedFormat":1},{"version":"046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","impliedFormat":1},{"version":"26b82a7ff864d0e68bc4578771898b91feabcb39dd6371970fd012827bd684f1","signature":"60e6faa0a819d40da14f63177e8f2f7a2c75c4f5925b7ede9d8bc13487d6384a","impliedFormat":1},{"version":"e2264b7f593788fca68253d204722139971cefcc19f01a9540b40e3c6a824152","signature":"68169677a1fbd913f4421ffc3fcafbec03a6bf3ea250249a18fb415f8f4a1746","impliedFormat":1},{"version":"a6260e50e119a4ae143e080cb69501b76f70b55df4f40b3874ee785277003570","impliedFormat":1},{"version":"311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","impliedFormat":1},{"version":"c032a9b7dfc5f9b86ac5b1535fe72154dc48a7f89f76c5cb4e8a6ab4db203671","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"23fa431c1549a548df67056c34a9ea3653b50266d77653a406ff5a67a7f861aa","impliedFormat":1},{"version":"1b1fc8e3cac6cd35e6ecae8aa8bda1f7c402e7786ca262ea6294c907c5b00149","signature":"a3aef4923a8dde677e086f9a6c3f5272a7881517658ff401ec47931829da2075","impliedFormat":1},{"version":"403ba71e387291ed9129e24bc76c9fdef4d563d0208baff9ac4f673d6ec2170a","signature":"1d57041f2cc69ae090870690d2171110a9b672d2b2a2839ace0f59bbaa67cc56","impliedFormat":1},{"version":"60a0074289b6584a0d7003c2aa14d9ebd0027e423deb79e08031b7e708770c98","impliedFormat":1},{"version":"d62b7fb6c39357289ba064887935b0966cd99da5a3bb63afc1d6ea4f82ab23f1","impliedFormat":1},{"version":"7a8e7fc0c0b3c6f0344a6b54a56e928aba5b2bde679ca742acf67aeb67e6f9d2","impliedFormat":1},{"version":"189150e785626242df43edde2e537ae48b8d8ba0c93e78c2478c9ce738a14cfe","impliedFormat":1},{"version":"b377fa259d15c6e3c0fc2804530f1c7448906df2b6afdf6ddeff61a75016cb28","impliedFormat":1},{"version":"a26bb2e2693f921f4aa3f6e8c04a18d07c6ab6c3162c426299e0d0a904d76d82","impliedFormat":1},{"version":"42e7c31cdce8294ad4852d465b2dd91307efecfd7a9889f2a0aa49ffca73e83b","impliedFormat":1},{"version":"7922bdca92b1a6f586e9403b2b7972200aae00f926a300e79bf2d62eb410714f","impliedFormat":1},{"version":"d3abaca0cd59f25b4e056681217d1f8674612071706e6825517ec9e264063e55","impliedFormat":1},{"version":"76a7145b39ac6cc3633e2ccb545e9db3e5a02c7e0bceddbb5abbd3b2e1fba32e","impliedFormat":1},{"version":"a3cf3aa8ec934a46e5d10922af944c14e1b73acb81c4ba90348bee40a829b26c","impliedFormat":1},{"version":"8f95f6784090939eb0cb0c648a03bce2208e595730afc14be4969d90b334b541","impliedFormat":1},{"version":"535b6a88c08e138b1b72003f482bceaca78311cd19836bdde0a80a131f457f43","impliedFormat":1},{"version":"cf72ba3ad6ed1f342e8ddbdbfdf425238cbc7a75cc7a318fa994cb3866a68804","impliedFormat":1},{"version":"f213a7dafb0a946c1134a64151cbb7f2301d23f93920356d730cf0ed767e9985","impliedFormat":1},{"version":"c305868de2a4ea029bd4b9593ebb33b602b54cdbb3a09231486f611a414d0f5f","impliedFormat":1},{"version":"cf42fcfc0f9e976054d921a0f5bf898f9127751cf5dd9f1b4820069fd78f2280","impliedFormat":1},{"version":"e35526a0977b9cd80f799aef3314cb2bfe66aeb40879c888f7a993bd3437fc42","impliedFormat":1},{"version":"81d92e5c4d618ba0660121ed30c603e8111ad605e7562948f7430d87038daee0","impliedFormat":1},{"version":"757f7967151a9b1f043aba090f09c1bdb0abe54f229efd3b7a656eb6da616bf4","impliedFormat":1},{"version":"2da74b28ea53cb34b516fd6dbda3ca93495648cf431e59d24ba3ab5d7ec59ba4","impliedFormat":1},{"version":"928ebc4436abadcd3680338883b7e26189beb7532ae4b3d1c1727598607e53fa","impliedFormat":1},{"version":"2d232975df81628cb4d8a5236b8776976940cc4dd202698e498de5a4baeb7389","impliedFormat":1},{"version":"9bddd9fa92fbbb5bd3b7617b88c4aa038391aa29eca99baef820bf0ff422ee43","signature":"cc67a58590a00cf7dff0a5849c8e7e0439ec202f2462621f60b13fbed0546fc5","impliedFormat":1},{"version":"4c1b770da0116b19eb873aa7cd0bd242ce4b18e20ecde61e5c0bda5421f40707","signature":"3849e66e1f8ac2913e0619ef856a845e4c44f6b9e97c606e991247a9353bb0dd","impliedFormat":1},{"version":"64b05591ba7a6a2025c3ce04bd72b972a6200d4481feaae2e66056e0a1500b3a","signature":"526ee815290e47e75fd2105f83de0916689cc532a19c81620672342f6478095f","impliedFormat":1},{"version":"96def9cb00debb7554a8019ae45310f375a65820bd8efa8e497a96e3416a5677","signature":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"04c8589ba249eb9bc61b2232ab6c29216409852b4aecfb478cbf2a754871253a","signature":"8bfba49493f92a72cdffe5b9947c3f572c9301f4e95a471027d0022e8d9b5d97","impliedFormat":1},{"version":"956f962aca6becfca36766fe3af718b586829e1e4dd72f6b896057f75d4e9e83","impliedFormat":1},{"version":"9f7b583873c73cf01be845311d8b3e1715aecfa476a047d885804d837327d5db","impliedFormat":1},{"version":"f4de63eb261a0b27b5f66f08a4e5c292b67b0c1c0d25199bdd632f4c449b4806","impliedFormat":1},{"version":"f4a795af80885eba93957db860b4b82b4d23a76c5e122c2af5eeb9319094d9d1","impliedFormat":1},{"version":"3267bdd186e8d021bfa57a5314a256b9781e895bc025e426a2bdbe93b946cca0","impliedFormat":1},{"version":"31ed847fef6dc27c5224045deab8f99887ec76146cbc4f2ccb33f5b117fc9bf1","impliedFormat":1},{"version":"0df38983d84eccab44e2e6385bed5e1033b23228e484b80ff124d4049ca8e75a","impliedFormat":1},{"version":"7395857a8b73a1a5a14af625ec52c90f5b24bb0b163057d0f3e8a197ccc816ee","impliedFormat":1},{"version":"8b2e63aba58523a92dd15761096a03b5ebbd8983e2889b1f14265d9b2bb444b6","impliedFormat":1},{"version":"5f932457c501d03a68bee9ae0ab26ef9df2fa1f789a981483ec1f56c120ea5c7","impliedFormat":1},{"version":"4118ae023b5dd1af42aa6ccec246e5c0a7fc32e7459bda588da183d371d46281","impliedFormat":1},{"version":"c935d7a81d4a4409ba02812bd2b9e0176b74d361109d977b13bf6898488df6d9","impliedFormat":1},{"version":"ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","impliedFormat":1},{"version":"970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","impliedFormat":1},{"version":"6477c1bd38bbe6e8d74abebd01a073a7e45a89086a5a250e11725989a54a9a94","impliedFormat":1},{"version":"046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","impliedFormat":1},{"version":"52580471774bba3d4ccd41c1178e2c2884f1caa7257d4e86f760ce840d5083f6","signature":"12c618d15f731e0251af2dcd7b52bb12b0535769e27c9c099bcea9b5a451f3f4","impliedFormat":1},{"version":"2837ced1e5d4ef88b4e1688fa62bc93b4248d1825667c87a83adaa51bc810cbf","impliedFormat":1},{"version":"f61af6ed7df59c72b7e2fc7e25a4500f5e9beafad5be038d349c5348a0727ba5","impliedFormat":1},{"version":"ab1d998d1a0125aeb4f70beb593220427562543d33c704f7df9e5d8b0de76700","signature":"f4dfb302d3c378152e1a8c8d9879d7d69625333efccd3092eafc40837b67f9e4","impliedFormat":1},{"version":"bf7ccda18d9cb9ed3047d96a6542fee3c3bc4e7a7822af40332c5c2f6e07c2b7","impliedFormat":1},{"version":"7bc71d52df9d8e5cc55218d347a91b1758b38341f9cbbac0b80057aa9d93daa6","impliedFormat":1},{"version":"7a1f7b274cf8a66b83fcf42153bde6f25f4eb4d7696d4a6b17e4a8878d128306","impliedFormat":1},{"version":"553dd4fef7d2b88e899646b66b2035e119f61b092d668ae0595a32c234f9b8b5","impliedFormat":1},{"version":"6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","impliedFormat":1},{"version":"afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","impliedFormat":1},{"version":"d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","impliedFormat":1},{"version":"6215681982d007f5e9137ab0ca969c39048401e588bb0ad92018297c82551ea8","impliedFormat":1},{"version":"82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","impliedFormat":1},{"version":"cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","impliedFormat":1},{"version":"3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","impliedFormat":1},{"version":"f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","impliedFormat":1},{"version":"ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","impliedFormat":1},{"version":"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","impliedFormat":1},{"version":"dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","impliedFormat":1},{"version":"67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","impliedFormat":1},{"version":"1b831600aabe1c065830d303d087189e1ccfc93a0ef1882eb58a336ec1ce9f2f","impliedFormat":1},{"version":"75f191b59fe7ce72d1d7d11d0f329a193843f54af93182fc5a65c37d0a82c85a","impliedFormat":1},{"version":"cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","impliedFormat":1},{"version":"f6451dc56be14d37a8b88ea62a143ea398ab44558cd530fb2cdeeea42695c849","impliedFormat":1},{"version":"8ab77e5c32f1b6c6c1ee1b1b771c1a76a16be650559dc61320c8c82c99fc7cde","impliedFormat":1},{"version":"16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","impliedFormat":1},{"version":"ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","impliedFormat":1},{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true,"impliedFormat":1},{"version":"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","impliedFormat":1},{"version":"c269a12e83c5ffc0332b1f245008e4e621e483dd2f8b9b77fc6a664fcde4969d","impliedFormat":1},{"version":"aa8a056ee45ae741849d6e809ba85967b638070060e29c57d12d22b14baefeb6","impliedFormat":1},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true,"impliedFormat":1},{"version":"a97081289e7233ca2ef04a729036449fec4e88818fd7b7397930bd4d52294b18","impliedFormat":1},{"version":"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","impliedFormat":1},{"version":"0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","impliedFormat":1},{"version":"15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","impliedFormat":1},{"version":"963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","impliedFormat":1},{"version":"9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","impliedFormat":1},{"version":"c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","impliedFormat":1},{"version":"ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","impliedFormat":1},{"version":"ae8cd6af37275eac75f5369cdb5f01063bcf1f48d74cb434303ee50ec446acfe","impliedFormat":1},{"version":"2518830a2fda9c272ba48798d0e7b857037443b06594db8e42c87e86944ee9e4","impliedFormat":1},{"version":"95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","impliedFormat":1},{"version":"1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","impliedFormat":1},{"version":"bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","impliedFormat":1},{"version":"5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","impliedFormat":1},{"version":"99ab49d4732fdc98cf5c495925e65e796544cb4086fe42afc235dfc02bcf2351","impliedFormat":1},{"version":"af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","impliedFormat":1},{"version":"d393adc32e520d4274bb4c3dfdcdb342b806a230b66ef0f82b35bffbc4aa2590","impliedFormat":1},{"version":"c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","impliedFormat":1},{"version":"38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","impliedFormat":1},{"version":"3b6040253231d44e6778eb6861cc86c1758562e77783d21b7ecbc73322ded539","impliedFormat":1},{"version":"03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","impliedFormat":1},{"version":"318c82cc1e13da55e8c60d7e1bdc422a0679d675ad048b6d5022a47f57d23e3f","impliedFormat":1},{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac3cce682a1eab96841ce9942ace8dd5649d2951007096555f4950479e4b8d56","impliedFormat":1},{"version":"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","impliedFormat":1},{"version":"fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","impliedFormat":1},{"version":"d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","impliedFormat":1},{"version":"ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","impliedFormat":1},{"version":"9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","impliedFormat":1},{"version":"3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","impliedFormat":1},{"version":"3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","impliedFormat":1},{"version":"951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","impliedFormat":1},{"version":"a45efe8e9134ef64a5e3825944bc16fffaf130b82943844523d7a7f7c1fd91b2","impliedFormat":1},{"version":"969aa6509a994f4f3b09b99d5d29484d8d52a2522e133ef9b4e54af9a3e9feaf","impliedFormat":1},{"version":"f378e8538e407f997a0f88fcd1ecd93a096707cc909339ce4dba2e4ea03f1726","impliedFormat":1},{"version":"dcafd874e49d42fc215dcb4ef1e06511363c1f31979951081f3cd1908a05a636","impliedFormat":1},{"version":"fb73c98050a02b5849cc0fbb0d133ed55764b9c2a91f0ada2a25e74df68e6242","impliedFormat":1},{"version":"6002c44a8e8edbe4c79ce856c7bac3f8e69a2a45dc5bd6b229ca4ab323b924b3","impliedFormat":1},{"version":"b4d505a77e0829de5e5e23eaefb3d7989e0dbdfdb02ea69159df9f40017fb958","impliedFormat":1},{"version":"b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","impliedFormat":1},{"version":"f2242adef346a64818a1af914146f6f6046f16505e8a228c3bdb70185d4fdf4c","impliedFormat":1},{"version":"2f7508d8eeadcfde20b41ec13726c9ad26f04bbf830434e289c6010d5be28455","impliedFormat":1},{"version":"8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","impliedFormat":1},{"version":"9798f0d3693043da9dda9146b5e8622cd4476270e7aed8f3cb346b9b40a52103","impliedFormat":1},{"version":"fc7e8927b6fa6c81d68783afb314d01592c559e86bd36df334c37f40d0136acd","impliedFormat":1},{"version":"73f72caffdd55f189b5bf4e6b5ca273b4e26269d9aac859b9d30a5f799c095ad","impliedFormat":1},{"version":"d998e3e185cdf59dfc84043c41a42c02daaf3b7b21bee2db2d1f620a8e134f4c","impliedFormat":1},{"version":"06aa8858883e08f5136eb182d2f285ea615aeb464007f83c7a31ee1f8d9932b1","impliedFormat":1},{"version":"62d429aba0bbe459a04965d10c7637b74b319149f17874920a5ffb9fe3ba14d8","impliedFormat":1},{"version":"084a25e9ee73362fbb467873341b95721689513c14af6aa3067a1d95d6fafe08","impliedFormat":1},{"version":"4dbfeb147290c498e3aa56ea3198a6a109c5c0d9d7a4936a3138376302d89e7d","impliedFormat":1},{"version":"169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","impliedFormat":1},{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true,"impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","impliedFormat":1},{"version":"5009c081fd8ca3fcd6f3adcd071a1c79a933a400532b897822aad0943688a1f1","impliedFormat":1},{"version":"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","impliedFormat":1},{"version":"93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","impliedFormat":1},{"version":"c271193e426325d9acab2f99997bb9f5f2dff850ec8c7c011c5abafe5af83b5f","impliedFormat":1},{"version":"58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","impliedFormat":1},{"version":"a3e12bcf2d196656ccd5b5d5344182967a2bdde0f63c9b955c36169ed02c3555","impliedFormat":1},{"version":"a016d2f6c0a2c15069ec69661ad37c86a450deb629ce96a592f15f01d3a5746e","impliedFormat":1},{"version":"2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","impliedFormat":1},{"version":"2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","impliedFormat":1},{"version":"42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","impliedFormat":1},{"version":"d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","impliedFormat":1},{"version":"b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","impliedFormat":1},{"version":"7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","impliedFormat":1},{"version":"906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","impliedFormat":1},{"version":"5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","impliedFormat":1},{"version":"c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","impliedFormat":1},{"version":"e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","impliedFormat":1},{"version":"e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","impliedFormat":1},{"version":"9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","impliedFormat":1},{"version":"0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","impliedFormat":1},{"version":"71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","impliedFormat":1},{"version":"c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","impliedFormat":1},{"version":"2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","impliedFormat":1},{"version":"479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","impliedFormat":1},{"version":"ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","impliedFormat":1},{"version":"f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","impliedFormat":1},{"version":"86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","impliedFormat":1},{"version":"2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","impliedFormat":1},{"version":"a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","impliedFormat":1},{"version":"b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","impliedFormat":1},{"version":"61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","impliedFormat":1},{"version":"6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","impliedFormat":1},{"version":"c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","impliedFormat":1},{"version":"38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","impliedFormat":1},{"version":"d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","impliedFormat":1},{"version":"3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","impliedFormat":1},{"version":"b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","impliedFormat":1},{"version":"f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","impliedFormat":1},{"version":"843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","impliedFormat":1},{"version":"f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","impliedFormat":1},{"version":"6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","impliedFormat":1},{"version":"e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","impliedFormat":1},{"version":"a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","impliedFormat":1},{"version":"a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","impliedFormat":1},{"version":"da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","impliedFormat":1},{"version":"acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","impliedFormat":1},{"version":"6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","impliedFormat":1},{"version":"4fddd9f6929421ce580b4583defbb3f78f5a4a3642bea5ecd3209bf652d8b507","impliedFormat":1},{"version":"f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","impliedFormat":1},{"version":"82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","impliedFormat":1},{"version":"557e00bde9af85bcb3ab6b3a785904f028f9f1b65dba664f2fda44965acf8a78","impliedFormat":1},{"version":"397981908f102effb3cd483042076b593f3928264dbf06aec235a7c3e83da2b4","impliedFormat":1},{"version":"ad78491e2a3ae1e59680dbab88607dd670d06a91b1d6c451fa895ad390513e8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a9deb79dabc5153448e38589fbe38945fdad45f0f8442cd4d4e1da8bb879a76","affectsGlobalScope":true,"impliedFormat":1},{"version":"f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956","impliedFormat":1},{"version":"c9cc4c881c910ce378659524d985d2b72b79029b0c473df5d4d3557b4cf6010a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fae4b2bc906f3e6840725cc24affaa4e684e6c9cc20254242c5df4bede5b6f6","impliedFormat":1},{"version":"2dd1d4cea14cead7a7fc9eec8f40593089dff0de8c0199458446143c9b8c4ea9","impliedFormat":1},{"version":"c0288f54de6f544706a3150c8b579b1a975870695c4be866f727ece6a16f3976","impliedFormat":1},{"version":"ec2c7505ede4bc3ee37cfe431cfd87e545f55f27fe15b0809c1a411765145615","impliedFormat":1}],"options":{"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":100,"outDir":"./dist-cjs","removeComments":true,"rootDir":"./src","skipLibCheck":true,"strict":true,"target":8,"useUnknownInCatchVariables":false},"fileIdsList":[[69,74,122],[69,74,87,103,120,500],[69,74],[69,74,89,122,503],[69,74,80,122],[69,74,86,89,114,122,507,508,509],[69,74,122,518],[69,74,114,122,522],[69,74,89,122],[69,74,75,122],[69,74,511,512,526],[69,74,86,89,122,520,521],[69,74,504,521,522,529],[69,74,86,87,122,531],[69,74,86,89,91,94,103,114,122],[69,74,86,117,122,548,549,551],[69,74,550],[69,74,86,122],[69,74,553,555,556,557,558,559,560,561,562,563,564,565],[69,74,553,554,556,557,558,559,560,561,562,563,564,565],[69,74,554,555,556,557,558,559,560,561,562,563,564,565],[69,74,553,554,555,557,558,559,560,561,562,563,564,565],[69,74,553,554,555,556,558,559,560,561,562,563,564,565],[69,74,553,554,555,556,557,559,560,561,562,563,564,565],[69,74,553,554,555,556,557,558,560,561,562,563,564,565],[69,74,553,554,555,556,557,558,559,561,562,563,564,565],[69,74,553,554,555,556,557,558,559,560,562,563,564,565],[69,74,553,554,555,556,557,558,559,560,561,563,564,565],[69,74,553,554,555,556,557,558,559,560,561,562,564,565],[69,74,553,554,555,556,557,558,559,560,561,562,563,565],[69,74,553,554,555,556,557,558,559,560,561,562,563,564],[69,74,585],[69,74,570],[69,74,574,575,576],[69,74,573],[69,74,575],[69,74,552,571,572,577,580,582,583,584],[69,74,572,578,579,585],[69,74,578,581],[69,74,572,573,578,585],[69,74,572,585],[69,74,566,567,568,569],[69,74,89,114,122,591,592],[69,74,597],[69,74,86,87,122],[69,74,89,103,122],[69,74,600,639],[69,74,600,624,639],[69,74,639],[69,74,600],[69,74,600,625,639],[69,74,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638],[69,74,625,639],[69,74,87,530],[69,74,89,122,528],[69,74,641],[69,74,103,122],[69,74,86,89,91,103,111,114,120,122],[69,74,86,122,653],[69,74,537],[69,74,536,537],[69,74,536],[69,74,536,537,538,540,541,544,545,546,547],[69,74,537,541],[69,74,536,537,538,540,541,542,543],[69,74,536,541],[69,74,541,545],[69,74,537,538,539],[69,74,538],[69,74,536,537,541],[69,74,515],[69,74,512,513,514],[69,74,512,515],[69,74,89,94,111,114,117,511,513,515,516,517],[69,74,168,203],[69,74,168,202,341],[69,74,168,220,247,249,341],[69,74,250,251],[69,74,290],[69,74,168,252,290,300],[69,74,248,301,302,341,342,344,345],[69,74,249],[69,74,247,248],[69,74,247],[69,74,168,250,251,300],[69,74,168,250,251,341],[69,74,168,203,247,250,251,300,302,303,306,321,323,340],[69,74,168,193,203,247,300,302,341,349],[69,74,168,193,203,247,300,302,341,354,401],[69,74,168,203,302,341],[69,74,301],[69,74,479,480],[69,74,496],[69,74,168,366],[69,74,168,202,377],[69,74,168,220,247,368,377],[69,74,369,370,371,372],[69,74,168],[69,74,168,290,300,374],[69,74,367,373,375,376,377,378,379,383,384],[69,74,368],[69,74,247,367],[69,74,380,381,382],[69,74,168,377],[69,74,168,370,380],[69,74,168,371,380],[69,74,375],[69,74,168,369,370,371,372,377],[69,74,168,220,247,300,303,306,321,340,366,369,370,371,372,373,376],[50,69,74,196,201],[49,69,74],[69,74,168,184],[69,74,168,183],[69,74,183,184,185,194],[69,74,168,182],[69,74,168,193],[69,74,195],[69,74,197,198,199,200],[69,74,168,355],[69,74,355,356],[69,74,168,178,290,360,361],[69,74,362],[69,74,168,362],[69,74,168,357,360,363,365,391,399],[69,74,400],[69,74,168,178,290],[69,74,364],[69,74,168,178,290,386],[69,74,387,388,389,390],[69,74,168,388],[69,74,385],[69,74,168,290,358],[69,74,168,290],[69,74,358,359],[69,74,451],[69,74,304,305],[69,74,168,304],[69,74,444,447],[69,74,182],[69,74,445,446],[69,74,168,265,266],[69,74,260],[69,74,260,261,262,263,264],[69,74,253,254,255,256,257,258,259,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289],[69,74,265,266],[69,74,168,482],[69,74,168,422],[69,74,307,308,309,310],[69,74,168,309],[69,74,311,314,320],[69,74,312,313],[69,74,315],[69,74,168,317,318],[69,74,317,318,319],[69,74,316],[69,74,457,460,467,468,469,470,471],[69,74,168,454],[69,74,454,455,456],[69,74,458,459],[69,74,168,300],[69,74,462,463,464],[69,74,461,465,466],[69,74,168,392],[69,74,168,392,394],[69,74,392,393,394,395,396,397,398],[69,74,484,485,486],[69,74,322],[69,74,103,122,168],[69,74,424,425],[69,74,347,348],[69,74,488,489],[69,74,168,213,214],[69,74,215,216],[69,74,213,214,217,218,219],[69,74,168,331,333],[69,74,333,334,335,336,337,338,339],[69,74,168,335],[69,74,168,332],[69,74,413,414,415],[69,74,168,414],[69,74,168,169,179,180],[69,74,168,178],[69,74,181],[69,74,351,352,353],[69,74,89,91,122,168,300],[69,74,293],[69,74,294],[69,74,168,296],[69,74,168,291,292],[69,74,291,292,293,295,296,297,298,299],[69,74,170,171,172,173,174,175,176,177],[69,74,168,174],[69,74,186,187,188,189,190,191,192],[69,74,168,211],[69,74,168,220],[69,74,204],[69,74,168,230,231],[69,74,232],[69,74,168,204,212,221,222,223,224,225,226,227,228,229,233,234,235,236,237,238,239,240,241,242,243,244,245,246],[52,69,74],[51,69,74],[55,62,63,64,69,74],[62,65,69,74],[55,59,69,74],[55,65,69,74],[53,54,63,64,65,66,69,74],[69,74,103,122,124],[69,74,126],[60,61,62,69,74,128],[60,62,69,74],[69,74,130,132,133],[69,74,130,131],[69,74,135],[53,69,74],[56,69,74,137],[69,74,137],[69,74,137,138,139,140,141],[69,74,140],[57,69,74],[69,74,137,138,139],[59,60,62,69,74],[69,74,126,127],[69,74,143],[69,74,143,147],[69,74,143,144,147,148],[61,69,74,146],[69,74,123],[52,58,69,74],[57,59,69,74,89,91,122],[55,69,74],[55,69,74,151,152,153],[52,56,57,58,59,60,61,62,67,69,74,125,126,127,128,129,131,134,135,136,142,145,146,149,150,154,155,156,157,158,159,160,161,162,163,165,166,167],[53,56,57,61,69,74],[69,74,129],[69,74,145],[59,61,69,74,131],[59,60,69,74],[59,69,74,135],[61,69,74,126,127],[69,74,89,103,122,124,157],[60,69,74,128,162,163],[59,69,74,89,90,122,128,129,157,161,162,163,164],[69,74,128,129],[59,69,74],[69,74,432,433],[69,74,491],[69,74,428],[69,74,493],[69,74,168,247],[69,74,440],[69,74,407,408],[69,74,168,324],[69,74,168,326],[69,74,324],[69,74,324,325,326,327,328,329,330],[69,74,103],[69,74,205,206,207,208,209,210],[69,74,103,168],[69,74,435,436,437],[69,70,74],[69,73,74],[69,74,79,106],[69,74,75,86,87,94,103,114],[69,74,75,76,86,94],[69,74,77,115],[69,74,78,79,87,95],[69,74,79,103,111],[69,74,80,82,86,94],[69,74,81],[69,74,82,83],[69,74,86],[69,74,85,86],[69,73,74,86],[69,74,86,87,88,103,114],[69,74,86,87,88,103],[69,74,86,89,94,103,114],[69,74,86,87,89,90,94,103,111,114],[69,74,89,91,103,111,114],[69,74,86,92],[69,74,93,114,119],[69,74,82,86,94,103],[69,74,95],[69,74,96],[69,73,74,97],[69,74,98,113,119],[69,74,99],[69,74,100],[69,74,86,101],[69,74,101,102,115,117],[69,74,86,103,104,105],[69,74,103,105],[69,74,103,104],[69,74,106],[69,74,107],[69,74,86,109,110],[69,74,109,110],[69,74,79,94,103,111],[69,74,112],[74],[68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121],[69,74,94,113],[69,74,89,100,114],[69,74,79,115],[69,74,103,116],[69,74,117],[69,74,118],[69,74,79,86,88,97,103,114,117,119],[69,74,103,120],[69,74,168,406,410],[69,74,168,202,406,409,474],[69,74,168,247,406,412,416,419,474],[69,74,406,417,420],[69,74,290,321,406],[69,74,168,290,300,406,443],[69,74,406,411,449,450,474,475,476,477],[69,74,406,412],[69,74,247,406,411],[69,74,247,406],[69,74,168,202,247,300,406,411,412,417,418,420],[69,74,168,247,406,417,420,474],[69,74,168,247,300,303,306,321,323,340,406,410,417,420,442,450,452,453,472,473],[69,74,247,321,331,349,406,421,439,474,481,483,487,490,492,494],[69,74,406,474,495,497],[69,74,168,202,247,406,410,430,431,434,438,474],[69,74,182,202,247,321,331,340,354,401,406,421,423,426,427,429,439,441,474],[69,74,247,300,406,443,448,449],[69,74,168,252,290,655],[69,74,168,250,251,655],[69,74,168,203,247,250,251,302,303,306,321,323,340,655],[69,74,168,193,203,247,302,341,349,655],[69,74,168,193,203,247,302,341,354,401,655],[168,410],[168,202,474],[168,220,247,412,474],[417,420],[290],[168,290,443,655],[411,449,450,474,475,476,477],[412],[247,411],[247],[168,417,420,655],[168,417,420,474],[168,247,303,306,321,323,340,410,417,420,450,655],[168,193,247,300,349,410,450,474],[168,410,450,474],[168,193,247,300,354,401,410,450,474],[449]],"referencedMap":[[499,1],[501,2],[502,3],[504,4],[505,5],[506,3],[510,6],[519,7],[523,8],[503,9],[524,10],[525,3],[526,3],[527,11],[511,3],[522,12],[530,13],[532,14],[531,3],[508,3],[533,15],[534,3],[535,3],[550,16],[551,17],[512,3],[507,18],[552,3],[554,19],[555,20],[553,21],[556,22],[557,23],[558,24],[559,25],[560,26],[561,27],[562,28],[563,29],[564,30],[565,31],[586,32],[571,33],[577,34],[575,3],[574,35],[576,36],[585,37],[580,38],[582,39],[583,40],[584,41],[578,3],[579,41],[581,41],[573,41],[572,3],[567,3],[566,3],[569,33],[570,42],[568,33],[587,3],[528,3],[588,3],[589,3],[590,3],[592,3],[593,43],[594,3],[595,3],[596,3],[598,44],[521,3],[520,3],[500,45],[599,3],[509,46],[597,3],[624,47],[625,48],[600,49],[603,49],[622,47],[623,47],[613,47],[612,50],[610,47],[605,47],[618,47],[616,47],[620,47],[604,47],[617,47],[621,47],[606,47],[607,47],[619,47],[601,47],[608,47],[609,47],[611,47],[615,47],[626,51],[614,47],[602,47],[639,52],[638,3],[633,51],[635,53],[634,51],[627,51],[628,51],[630,51],[632,51],[636,53],[637,53],[629,53],[631,53],[640,54],[529,55],[642,56],[641,3],[643,3],[644,9],[645,57],[646,3],[549,3],[648,3],[647,3],[649,3],[650,3],[651,3],[652,58],[654,59],[653,3],[514,3],[591,46],[538,60],[547,61],[536,3],[537,62],[548,63],[543,64],[544,65],[542,66],[546,67],[540,68],[539,69],[545,70],[541,61],[516,71],[515,72],[513,73],[517,3],[518,74],[252,75],[203,76],[250,77],[344,78],[251,77],[343,79],[301,80],[346,81],[345,82],[249,83],[248,84],[405,85],[342,86],[341,87],[350,88],[402,89],[403,88],[404,90],[302,91],[479,79],[481,92],[480,79],[497,93],[496,79],[374,94],[366,95],[369,96],[379,97],[370,96],[371,96],[372,96],[373,98],[375,99],[385,100],[384,101],[368,102],[367,84],[383,103],[380,104],[381,105],[382,106],[376,107],[378,108],[377,109],[202,110],[49,3],[50,111],[185,112],[184,113],[195,114],[183,115],[194,116],[196,117],[197,3],[201,118],[198,3],[199,98],[200,98],[356,119],[355,79],[357,120],[362,121],[363,122],[361,123],[400,124],[401,125],[364,126],[365,127],[387,128],[391,129],[389,130],[386,131],[388,98],[390,130],[359,132],[358,133],[360,134],[303,98],[452,135],[451,98],[453,98],[304,98],[306,136],[305,137],[444,133],[448,138],[445,139],[447,140],[446,98],[253,98],[254,98],[255,98],[256,98],[257,98],[258,98],[259,98],[267,141],[268,98],[269,3],[270,98],[271,98],[272,98],[273,98],[274,98],[261,142],[262,98],[260,98],[265,143],[263,142],[264,98],[290,144],[275,98],[276,98],[277,98],[278,98],[279,3],[280,98],[281,98],[282,98],[283,98],[284,98],[285,98],[286,145],[287,98],[288,98],[266,98],[289,98],[482,3],[483,146],[422,3],[423,147],[311,148],[307,139],[308,139],[310,149],[309,98],[321,150],[312,139],[314,151],[313,98],[316,152],[315,3],[319,153],[320,154],[317,155],[318,155],[468,98],[472,156],[455,157],[456,157],[454,98],[457,158],[459,98],[458,98],[460,159],[469,98],[471,98],[470,160],[461,98],[462,160],[463,160],[465,161],[464,98],[467,162],[466,98],[398,3],[393,163],[395,164],[399,165],[396,9],[392,98],[394,98],[397,98],[484,98],[487,166],[485,98],[486,3],[322,98],[323,167],[424,168],[426,169],[425,98],[347,160],[349,170],[348,98],[427,98],[490,171],[488,3],[489,98],[473,98],[215,172],[217,173],[216,98],[218,172],[219,172],[220,174],[213,98],[214,3],[334,175],[335,115],[336,3],[340,176],[337,98],[338,98],[339,177],[333,178],[332,98],[413,98],[416,179],[414,98],[415,180],[181,181],[169,98],[179,182],[180,98],[182,183],[354,184],[351,185],[352,160],[353,98],[294,186],[295,187],[296,98],[297,188],[293,189],[291,98],[292,98],[300,190],[298,3],[299,98],[170,3],[171,3],[172,3],[173,3],[178,191],[174,98],[175,98],[176,192],[177,98],[192,98],[187,98],[188,98],[189,98],[193,193],[190,98],[191,98],[186,98],[204,98],[212,194],[221,195],[222,3],[223,196],[224,3],[225,3],[226,3],[227,3],[228,98],[229,3],[230,98],[232,197],[233,198],[231,98],[234,3],[235,3],[247,199],[236,3],[237,3],[238,98],[239,3],[240,3],[241,3],[242,3],[243,3],[244,3],[245,3],[246,3],[51,200],[52,201],[53,3],[54,3],[65,202],[66,203],[63,204],[64,205],[67,206],[125,207],[127,208],[129,209],[128,210],[130,3],[134,211],[132,212],[133,3],[126,3],[136,213],[56,214],[138,215],[139,216],[142,217],[141,218],[137,219],[140,220],[135,221],[143,222],[144,223],[148,224],[149,225],[147,226],[124,227],[59,228],[150,229],[151,230],[152,230],[55,3],[154,231],[153,230],[168,232],[57,3],[62,233],[155,234],[156,3],[60,3],[146,235],[157,236],[145,237],[158,238],[159,239],[160,207],[161,207],[162,240],[131,3],[164,241],[165,242],[123,3],[166,243],[163,3],[58,244],[61,221],[167,200],[431,98],[432,3],[434,245],[433,3],[491,3],[492,246],[428,3],[429,247],[494,248],[493,249],[441,250],[440,249],[407,98],[409,251],[408,98],[325,252],[329,3],[327,253],[330,3],[328,254],[331,255],[326,98],[324,3],[205,3],[206,168],[209,256],[211,257],[207,258],[208,57],[210,3],[435,3],[438,259],[436,3],[437,3],[70,260],[71,260],[73,261],[74,262],[75,263],[76,264],[77,265],[78,266],[79,267],[80,268],[81,269],[82,270],[83,270],[84,271],[85,272],[86,273],[87,274],[88,275],[72,3],[121,3],[89,276],[90,277],[91,278],[92,279],[93,280],[94,281],[95,282],[96,283],[97,284],[98,285],[99,286],[100,287],[101,288],[102,289],[103,290],[105,291],[104,292],[106,293],[107,294],[108,3],[109,295],[110,296],[111,297],[112,298],[69,299],[68,3],[122,300],[113,301],[114,302],[115,303],[116,304],[117,305],[118,306],[119,307],[120,308],[418,3],[406,3],[9,3],[10,3],[12,3],[11,3],[2,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[3,3],[4,3],[24,3],[21,3],[22,3],[23,3],[25,3],[26,3],[27,3],[5,3],[28,3],[29,3],[30,3],[31,3],[6,3],[35,3],[32,3],[33,3],[34,3],[36,3],[7,3],[37,3],[42,3],[43,3],[38,3],[39,3],[40,3],[41,3],[8,3],[47,3],[44,3],[45,3],[46,3],[1,3],[48,3],[421,3],[443,309],[410,310],[420,311],[476,312],[417,311],[430,313],[449,314],[478,315],[477,316],[412,317],[411,318],[419,319],[475,320],[474,321],[495,322],[498,323],[439,324],[442,325],[450,326]],"exportedModulesMap":[[499,1],[501,2],[502,3],[504,4],[505,5],[506,3],[510,6],[519,7],[523,8],[503,9],[524,10],[525,3],[526,3],[527,11],[511,3],[522,12],[530,13],[532,14],[531,3],[508,3],[533,15],[534,3],[535,3],[550,16],[551,17],[512,3],[507,18],[552,3],[554,19],[555,20],[553,21],[556,22],[557,23],[558,24],[559,25],[560,26],[561,27],[562,28],[563,29],[564,30],[565,31],[586,32],[571,33],[577,34],[575,3],[574,35],[576,36],[585,37],[580,38],[582,39],[583,40],[584,41],[578,3],[579,41],[581,41],[573,41],[572,3],[567,3],[566,3],[569,33],[570,42],[568,33],[587,3],[528,3],[588,3],[589,3],[590,3],[592,3],[593,43],[594,3],[595,3],[596,3],[598,44],[521,3],[520,3],[500,45],[599,3],[509,46],[597,3],[624,47],[625,48],[600,49],[603,49],[622,47],[623,47],[613,47],[612,50],[610,47],[605,47],[618,47],[616,47],[620,47],[604,47],[617,47],[621,47],[606,47],[607,47],[619,47],[601,47],[608,47],[609,47],[611,47],[615,47],[626,51],[614,47],[602,47],[639,52],[638,3],[633,51],[635,53],[634,51],[627,51],[628,51],[630,51],[632,51],[636,53],[637,53],[629,53],[631,53],[640,54],[529,55],[642,56],[641,3],[643,3],[644,9],[645,57],[646,3],[549,3],[648,3],[647,3],[649,3],[650,3],[651,3],[652,58],[654,59],[653,3],[514,3],[591,46],[538,60],[547,61],[536,3],[537,62],[548,63],[543,64],[544,65],[542,66],[546,67],[540,68],[539,69],[545,70],[541,61],[516,71],[515,72],[513,73],[517,3],[518,74],[252,75],[203,76],[250,77],[344,78],[251,77],[343,79],[301,327],[346,81],[345,82],[249,83],[248,84],[405,328],[342,86],[341,329],[350,330],[402,331],[403,330],[404,90],[302,91],[479,79],[481,92],[480,79],[497,93],[496,79],[374,94],[366,95],[369,96],[379,97],[370,96],[371,96],[372,96],[373,98],[375,99],[385,100],[384,101],[368,102],[367,84],[383,103],[380,104],[381,105],[382,106],[376,107],[378,108],[377,109],[202,110],[49,3],[50,111],[185,112],[184,113],[195,114],[183,115],[194,116],[196,117],[197,3],[201,118],[198,3],[199,98],[200,98],[356,119],[355,79],[357,120],[362,121],[363,122],[361,123],[400,124],[401,125],[364,126],[365,127],[387,128],[391,129],[389,130],[386,131],[388,98],[390,130],[359,132],[358,133],[360,134],[303,98],[452,135],[451,98],[453,98],[304,98],[306,136],[305,137],[444,133],[448,138],[445,139],[447,140],[446,98],[253,98],[254,98],[255,98],[256,98],[257,98],[258,98],[259,98],[267,141],[268,98],[269,3],[270,98],[271,98],[272,98],[273,98],[274,98],[261,142],[262,98],[260,98],[265,143],[263,142],[264,98],[290,144],[275,98],[276,98],[277,98],[278,98],[279,3],[280,98],[281,98],[282,98],[283,98],[284,98],[285,98],[286,145],[287,98],[288,98],[266,98],[289,98],[482,3],[483,146],[422,3],[423,147],[311,148],[307,139],[308,139],[310,149],[309,98],[321,150],[312,139],[314,151],[313,98],[316,152],[315,3],[319,153],[320,154],[317,155],[318,155],[468,98],[472,156],[455,157],[456,157],[454,98],[457,158],[459,98],[458,98],[460,159],[469,98],[471,98],[470,160],[461,98],[462,160],[463,160],[465,161],[464,98],[467,162],[466,98],[398,3],[393,163],[395,164],[399,165],[396,9],[392,98],[394,98],[397,98],[484,98],[487,166],[485,98],[486,3],[322,98],[323,167],[424,168],[426,169],[425,98],[347,160],[349,170],[348,98],[427,98],[490,171],[488,3],[489,98],[473,98],[215,172],[217,173],[216,98],[218,172],[219,172],[220,174],[213,98],[214,3],[334,175],[335,115],[336,3],[340,176],[337,98],[338,98],[339,177],[333,178],[332,98],[413,98],[416,179],[414,98],[415,180],[181,181],[169,98],[179,182],[180,98],[182,183],[354,184],[351,185],[352,160],[353,98],[294,186],[295,187],[296,98],[297,188],[293,189],[291,98],[292,98],[300,190],[298,3],[299,98],[170,3],[171,3],[172,3],[173,3],[178,191],[174,98],[175,98],[176,192],[177,98],[192,98],[187,98],[188,98],[189,98],[193,193],[190,98],[191,98],[186,98],[204,98],[212,194],[221,195],[222,3],[223,196],[224,3],[225,3],[226,3],[227,3],[228,98],[229,3],[230,98],[232,197],[233,198],[231,98],[234,3],[235,3],[247,199],[236,3],[237,3],[238,98],[239,3],[240,3],[241,3],[242,3],[243,3],[244,3],[245,3],[246,3],[51,200],[52,201],[53,3],[54,3],[65,202],[66,203],[63,204],[64,205],[67,206],[125,207],[127,208],[129,209],[128,210],[130,3],[134,211],[132,212],[133,3],[126,3],[136,213],[56,214],[138,215],[139,216],[142,217],[141,218],[137,219],[140,220],[135,221],[143,222],[144,223],[148,224],[149,225],[147,226],[124,227],[59,228],[150,229],[151,230],[152,230],[55,3],[154,231],[153,230],[168,232],[57,3],[62,233],[155,234],[156,3],[60,3],[146,235],[157,236],[145,237],[158,238],[159,239],[160,207],[161,207],[162,240],[131,3],[164,241],[165,242],[123,3],[166,243],[163,3],[58,244],[61,221],[167,200],[431,98],[432,3],[434,245],[433,3],[491,3],[492,246],[428,3],[429,247],[494,248],[493,249],[441,250],[440,249],[407,98],[409,251],[408,98],[325,252],[329,3],[327,253],[330,3],[328,254],[331,255],[326,98],[324,3],[205,3],[206,168],[209,256],[211,257],[207,258],[208,57],[210,3],[435,3],[438,259],[436,3],[437,3],[70,260],[71,260],[73,261],[74,262],[75,263],[76,264],[77,265],[78,266],[79,267],[80,268],[81,269],[82,270],[83,270],[84,271],[85,272],[86,273],[87,274],[88,275],[72,3],[121,3],[89,276],[90,277],[91,278],[92,279],[93,280],[94,281],[95,282],[96,283],[97,284],[98,285],[99,286],[100,287],[101,288],[102,289],[103,290],[105,291],[104,292],[106,293],[107,294],[108,3],[109,295],[110,296],[111,297],[112,298],[69,299],[68,3],[122,300],[113,301],[114,302],[115,303],[116,304],[117,305],[118,306],[119,307],[120,308],[418,3],[406,3],[9,3],[10,3],[12,3],[11,3],[2,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[3,3],[4,3],[24,3],[21,3],[22,3],[23,3],[25,3],[26,3],[27,3],[5,3],[28,3],[29,3],[30,3],[31,3],[6,3],[35,3],[32,3],[33,3],[34,3],[36,3],[7,3],[37,3],[42,3],[43,3],[38,3],[39,3],[40,3],[41,3],[8,3],[47,3],[44,3],[45,3],[46,3],[1,3],[48,3],[443,332],[410,333],[420,334],[476,335],[417,334],[430,336],[449,337],[478,338],[477,339],[412,340],[411,341],[419,342],[475,343],[474,344],[495,345],[498,345],[439,346],[442,347],[450,348]],"semanticDiagnosticsPerFile":[499,501,502,504,505,506,510,519,523,503,524,525,526,527,511,522,530,532,531,508,533,534,535,550,551,512,507,552,554,555,553,556,557,558,559,560,561,562,563,564,565,586,571,577,575,574,576,585,580,582,583,584,578,579,581,573,572,567,566,569,570,568,587,528,588,589,590,592,593,594,595,596,598,521,520,500,599,509,597,624,625,600,603,622,623,613,612,610,605,618,616,620,604,617,621,606,607,619,601,608,609,611,615,626,614,602,639,638,633,635,634,627,628,630,632,636,637,629,631,640,529,642,641,643,644,645,646,549,648,647,649,650,651,652,654,653,514,591,538,547,536,537,548,543,544,542,546,540,539,545,541,516,515,513,517,518,252,203,250,344,251,343,301,346,345,249,248,405,342,341,350,402,403,404,302,479,481,480,497,496,374,366,369,379,370,371,372,373,375,385,384,368,367,383,380,381,382,376,378,377,202,49,50,185,184,195,183,194,196,197,201,198,199,200,356,355,357,362,363,361,400,401,364,365,387,391,389,386,388,390,359,358,360,303,452,451,453,304,306,305,444,448,445,447,446,253,254,255,256,257,258,259,267,268,269,270,271,272,273,274,261,262,260,265,263,264,290,275,276,277,278,279,280,281,282,283,284,285,286,287,288,266,289,482,483,422,423,311,307,308,310,309,321,312,314,313,316,315,319,320,317,318,468,472,455,456,454,457,459,458,460,469,471,470,461,462,463,465,464,467,466,398,393,395,399,396,392,394,397,484,487,485,486,322,323,424,426,425,347,349,348,427,490,488,489,473,215,217,216,218,219,220,213,214,334,335,336,340,337,338,339,333,332,413,416,414,415,181,169,179,180,182,354,351,352,353,294,295,296,297,293,291,292,300,298,299,170,171,172,173,178,174,175,176,177,192,187,188,189,193,190,191,186,204,212,221,222,223,224,225,226,227,228,229,230,232,233,231,234,235,247,236,237,238,239,240,241,242,243,244,245,246,51,52,53,54,65,66,63,64,67,125,127,129,128,130,134,132,133,126,136,56,138,139,142,141,137,140,135,143,144,148,149,147,124,59,150,151,152,55,154,153,168,57,62,155,156,60,146,157,145,158,159,160,161,162,131,164,165,123,166,163,58,61,167,431,432,434,433,491,492,428,429,494,493,441,440,407,409,408,325,329,327,330,328,331,326,324,205,206,209,211,207,208,210,435,438,436,437,70,71,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,72,121,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,105,104,106,107,108,109,110,111,112,69,68,122,113,114,115,116,117,118,119,120,418,406,9,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,1,48,421,443,410,420,476,417,430,449,478,477,412,411,419,475,474,495,498,439,442,450]},"version":"4.9.5"} \ No newline at end of file diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.es.tsbuildinfo b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.es.tsbuildinfo deleted file mode 100644 index a3fb1426fde..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.es.tsbuildinfo +++ /dev/null @@ -1 +0,0 @@ -{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/client/emitwarningifunsupportedversion.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts","./node_modules/@smithy/types/dist-types/abort-handler.d.ts","./node_modules/@smithy/types/dist-types/abort.d.ts","./node_modules/@smithy/types/dist-types/auth/auth.d.ts","./node_modules/@smithy/types/dist-types/auth/httpapikeyauth.d.ts","./node_modules/@smithy/types/dist-types/identity/identity.d.ts","./node_modules/@smithy/types/dist-types/endpoint.d.ts","./node_modules/@smithy/types/dist-types/logger.d.ts","./node_modules/@smithy/types/dist-types/uri.d.ts","./node_modules/@smithy/types/dist-types/http.d.ts","./node_modules/@smithy/types/dist-types/response.d.ts","./node_modules/@smithy/types/dist-types/util.d.ts","./node_modules/@smithy/types/dist-types/middleware.d.ts","./node_modules/@smithy/types/dist-types/auth/httpsigner.d.ts","./node_modules/@smithy/types/dist-types/auth/identityproviderconfig.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthscheme.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/types/dist-types/auth/index.d.ts","./node_modules/@types/node/ts5.6/globals.typedarray.d.ts","./node_modules/@types/node/ts5.6/buffer.buffer.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/dom-events.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/ts5.6/index.d.ts","./node_modules/@smithy/types/dist-types/transform/exact.d.ts","./node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts","./node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/crypto.d.ts","./node_modules/@smithy/types/dist-types/checksum.d.ts","./node_modules/@smithy/types/dist-types/command.d.ts","./node_modules/@smithy/types/dist-types/client.d.ts","./node_modules/@smithy/types/dist-types/connection/config.d.ts","./node_modules/@smithy/types/dist-types/transfer.d.ts","./node_modules/@smithy/types/dist-types/connection/manager.d.ts","./node_modules/@smithy/types/dist-types/connection/pool.d.ts","./node_modules/@smithy/types/dist-types/connection/index.d.ts","./node_modules/@smithy/types/dist-types/eventstream.d.ts","./node_modules/@smithy/types/dist-types/encode.d.ts","./node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","./node_modules/@smithy/types/dist-types/endpoints/endpointruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/errorruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/treeruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/rulesetobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/index.d.ts","./node_modules/@smithy/types/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultclientconfiguration.d.ts","./node_modules/@smithy/types/dist-types/shapes.d.ts","./node_modules/@smithy/types/dist-types/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/types/dist-types/extensions/index.d.ts","./node_modules/@smithy/types/dist-types/http/httphandlerinitialization.d.ts","./node_modules/@smithy/types/dist-types/identity/apikeyidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/index.d.ts","./node_modules/@smithy/types/dist-types/pagination.d.ts","./node_modules/@smithy/types/dist-types/profile.d.ts","./node_modules/@smithy/types/dist-types/serde.d.ts","./node_modules/@smithy/types/dist-types/signature.d.ts","./node_modules/@smithy/types/dist-types/stream.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","./node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","./node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","./node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","./node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts","./node_modules/@smithy/types/dist-types/waiter.d.ts","./node_modules/@smithy/types/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromenv.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/gethomedir.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getprofilename.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfilepath.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfromfile.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadsharedconfigfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadssosessiondata.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/parseknownfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromsharedconfigfiles.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromstatic.d.ts","./node_modules/@smithy/node-config-provider/dist-types/configloader.d.ts","./node_modules/@smithy/node-config-provider/dist-types/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4aconfig.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4signer.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4asigner.d.ts","./node_modules/@smithy/signature-v4/dist-types/signaturev4.d.ts","./node_modules/@smithy/signature-v4/dist-types/getcanonicalheaders.d.ts","./node_modules/@smithy/signature-v4/dist-types/getcanonicalquery.d.ts","./node_modules/@smithy/signature-v4/dist-types/getpayloadhash.d.ts","./node_modules/@smithy/signature-v4/dist-types/moveheaderstoquery.d.ts","./node_modules/@smithy/signature-v4/dist-types/preparerequest.d.ts","./node_modules/@smithy/signature-v4/dist-types/credentialderivation.d.ts","./node_modules/@smithy/signature-v4/dist-types/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4config.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/coercing-serializers.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsexpectunion.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parsejsonbody.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/parsexmlbody.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts","./node_modules/@aws-sdk/core/dist-types/index.d.ts","./dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/smithy-client/dist-types/client.d.ts","./node_modules/@smithy/util-stream/dist-types/blob/uint8arrayblobadapter.d.ts","./node_modules/@smithy/util-stream/dist-types/getawschunkedencodingstream.d.ts","./node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts","./node_modules/@smithy/util-stream/dist-types/splitstream.d.ts","./node_modules/@smithy/util-stream/dist-types/headstream.d.ts","./node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts","./node_modules/@smithy/util-stream/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/resolveendpointconfig.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getendpointfrominstructions.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toendpointv1.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/endpointmiddleware.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/getendpointplugin.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/command.d.ts","./node_modules/@smithy/smithy-client/dist-types/constants.d.ts","./node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts","./node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts","./node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts","./node_modules/@smithy/smithy-client/dist-types/emitwarningifunsupportedversion.d.ts","./node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts","./node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts","./node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts","./node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/nooplogger.d.ts","./node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts","./node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/quote-header.d.ts","./node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts","./node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-every.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-header.d.ts","./node_modules/@smithy/smithy-client/dist-types/index.d.ts","./dist-types/models/qdeveloperstreamingserviceexception.d.ts","./dist-types/models/models_0.d.ts","./dist-types/commands/generatecodefromcommandscommand.d.ts","./dist-types/commands/sendmessagecommand.d.ts","./dist-types/auth/httpauthextensionconfiguration.d.ts","./node_modules/@aws-sdk/types/dist-types/abort.d.ts","./node_modules/@aws-sdk/types/dist-types/auth.d.ts","./node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","./node_modules/@aws-sdk/types/dist-types/checksum.d.ts","./node_modules/@aws-sdk/types/dist-types/client.d.ts","./node_modules/@aws-sdk/types/dist-types/command.d.ts","./node_modules/@aws-sdk/types/dist-types/connection.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/identity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/anonymousidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/loginidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","./node_modules/@aws-sdk/types/dist-types/util.d.ts","./node_modules/@aws-sdk/types/dist-types/credentials.d.ts","./node_modules/@aws-sdk/types/dist-types/crypto.d.ts","./node_modules/@aws-sdk/types/dist-types/dns.d.ts","./node_modules/@aws-sdk/types/dist-types/encode.d.ts","./node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","./node_modules/@aws-sdk/types/dist-types/eventstream.d.ts","./node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/types/dist-types/http.d.ts","./node_modules/@aws-sdk/types/dist-types/logger.d.ts","./node_modules/@aws-sdk/types/dist-types/middleware.d.ts","./node_modules/@aws-sdk/types/dist-types/pagination.d.ts","./node_modules/@aws-sdk/types/dist-types/profile.d.ts","./node_modules/@aws-sdk/types/dist-types/request.d.ts","./node_modules/@aws-sdk/types/dist-types/response.d.ts","./node_modules/@aws-sdk/types/dist-types/retry.d.ts","./node_modules/@aws-sdk/types/dist-types/serde.d.ts","./node_modules/@aws-sdk/types/dist-types/shapes.d.ts","./node_modules/@aws-sdk/types/dist-types/signature.d.ts","./node_modules/@aws-sdk/types/dist-types/stream.d.ts","./node_modules/@aws-sdk/types/dist-types/token.d.ts","./node_modules/@aws-sdk/types/dist-types/transfer.d.ts","./node_modules/@aws-sdk/types/dist-types/uri.d.ts","./node_modules/@aws-sdk/types/dist-types/waiter.d.ts","./node_modules/@aws-sdk/types/dist-types/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/httprequest.d.ts","./node_modules/@smithy/protocol-http/dist-types/httpresponse.d.ts","./node_modules/@smithy/protocol-http/dist-types/httphandler.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/httpextensionconfiguration.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/field.d.ts","./node_modules/@smithy/protocol-http/dist-types/fields.d.ts","./node_modules/@smithy/protocol-http/dist-types/isvalidhostname.d.ts","./node_modules/@smithy/protocol-http/dist-types/types.d.ts","./node_modules/@smithy/protocol-http/dist-types/index.d.ts","./dist-types/extensionconfiguration.d.ts","./dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusedualstackendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusefipsendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolveendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolvecustomendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvarianttag.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvariant.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/partitionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/regionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/getregioninfo.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/eventstreamserdeconfig.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts","./node_modules/@smithy/util-retry/dist-types/types.d.ts","./node_modules/@smithy/util-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/configuredretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/defaultratelimiter.d.ts","./node_modules/@smithy/util-retry/dist-types/config.d.ts","./node_modules/@smithy/util-retry/dist-types/constants.d.ts","./node_modules/@smithy/util-retry/dist-types/index.d.ts","./node_modules/@smithy/middleware-retry/dist-types/types.d.ts","./node_modules/@smithy/middleware-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts","./node_modules/@smithy/middleware-retry/dist-types/delaydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/omitretryheadersmiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrymiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/index.d.ts","./dist-types/qdeveloperstreamingclient.d.ts","./dist-types/qdeveloperstreaming.d.ts","./dist-types/endpoints.d.ts","./dist-types/commands/index.d.ts","./dist-types/models/index.d.ts","./dist-types/index.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts","./dist-types/runtimeconfig.browser.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts","./node_modules/@smithy/node-http-handler/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/fromhttp/fromhttptypes.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/fromhttp/fromhttp.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromwebtoken.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromtokenfile.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveassumerolecredentials.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/fromini.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-process/dist-types/fromprocess.d.ts","./node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/ssoserviceexception.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/getrolecredentialscommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/listaccountrolescommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/listaccountscommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/logoutcommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointparameters.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/auth/httpauthextensionconfiguration.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/extensionconfiguration.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/ssoclient.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/sso.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/interfaces.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/listaccountrolespaginator.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/listaccountspaginator.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/loadsso.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/fromsso.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/isssoprofile.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/validatessoprofile.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/remoteprovider/remoteproviderinit.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/fromcontainermetadata.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/frominstancemetadata.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/remoteprovider/httprequest.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/utils/getinstancemetadataendpoint.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/config/endpoint.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-node/dist-types/defaultprovider.d.ts","./node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts","./dist-types/runtimeconfig.d.ts","./dist-types/runtimeconfig.native.d.ts","./dist-types/runtimeconfig.shared.d.ts","./dist-types/protocols/aws_json1_0.d.ts","./node_modules/tslib/tslib.d.ts","./node_modules/@smithy/util-middleware/dist-types/getsmithycontext.d.ts","./node_modules/@smithy/util-middleware/dist-types/normalizeprovider.d.ts","./node_modules/@smithy/util-middleware/dist-types/index.d.ts","./src/auth/httpauthschemeprovider.ts","./src/models/qdeveloperstreamingserviceexception.ts","./src/models/models_0.ts","./node_modules/@smithy/middleware-serde/dist-types/deserializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serdeplugin.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/index.d.ts","./src/commands/sendmessagecommand.ts","./node_modules/@types/uuid/index.d.ts","./src/protocols/aws_json1_0.ts","./src/commands/generatecodefromcommandscommand.ts","./package.json","./node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts","./node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts","./node_modules/@smithy/hash-node/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/index.d.ts","./src/endpoints.ts","./node_modules/@smithy/url-parser/dist-types/index.d.ts","./node_modules/@smithy/util-base64/dist-types/frombase64.d.ts","./node_modules/@smithy/util-base64/dist-types/tobase64.d.ts","./node_modules/@smithy/util-base64/dist-types/index.d.ts","./node_modules/@smithy/util-utf8/dist-types/fromutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/touint8array.d.ts","./node_modules/@smithy/util-utf8/dist-types/toutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/index.d.ts","./src/runtimeconfig.shared.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts","./src/runtimeconfig.ts","./src/auth/httpauthextensionconfiguration.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts","./src/extensionconfiguration.ts","./src/runtimeextensions.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/loggermiddleware.d.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpauthschememiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/gethttpauthschemeendpointrulesetplugin.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/gethttpauthschemeplugin.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/httpsigningmiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/gethttpsigningmiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/defaultidentityproviderconfig.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/httpapikeyauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/httpbearerauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/noauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/index.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeidentityprovider.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts","./node_modules/@smithy/core/dist-types/getsmithycontext.d.ts","./node_modules/@smithy/core/dist-types/normalizeprovider.d.ts","./node_modules/@smithy/core/dist-types/protocols/requestbuilder.d.ts","./node_modules/@smithy/core/dist-types/pagination/createpaginator.d.ts","./node_modules/@smithy/core/dist-types/index.d.ts","./node_modules/@smithy/middleware-content-length/dist-types/index.d.ts","./src/qdeveloperstreamingclient.ts","./src/qdeveloperstreaming.ts","./src/commands/index.ts","./src/models/index.ts","./src/index.ts","./node_modules/@aws-crypto/sha256-browser/build/main/crossplatformsha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/main/webcryptosha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/invalidfunction.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/invalidprovider.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts","./src/runtimeconfig.browser.ts","./node_modules/@aws-crypto/sha256-js/build/main/jssha256.d.ts","./node_modules/@aws-crypto/sha256-js/build/main/index.d.ts","./src/runtimeconfig.native.ts","../../../node_modules/@types/adm-zip/index.d.ts","../../../node_modules/@types/readdir-glob/index.d.ts","../../../node_modules/@types/archiver/index.d.ts","../../../node_modules/@types/async-lock/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/bytes/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/circular-dependency-plugin/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/cross-spawn/index.d.ts","../../../node_modules/@types/diff/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/glob/node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/parse5/dist/cjs/common/html.d.ts","../../../node_modules/parse5/dist/cjs/common/token.d.ts","../../../node_modules/parse5/dist/cjs/common/error-codes.d.ts","../../../node_modules/parse5/dist/cjs/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/dist/cjs/tokenizer/index.d.ts","../../../node_modules/parse5/dist/cjs/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/cjs/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/cjs/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/cjs/parser/index.d.ts","../../../node_modules/parse5/dist/cjs/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/cjs/serializer/index.d.ts","../../../node_modules/parse5/dist/cjs/common/foreign-content.d.ts","../../../node_modules/parse5/dist/cjs/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/linkify-it/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdurl/encode.d.ts","../../../node_modules/@types/mdurl/decode.d.ts","../../../node_modules/@types/mdurl/parse.d.ts","../../../node_modules/@types/mdurl/format.d.ts","../../../node_modules/@types/mdurl/index.d.ts","../../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../../node_modules/@types/markdown-it/lib/token.d.ts","../../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../../node_modules/@types/markdown-it/lib/index.d.ts","../../../node_modules/@types/markdown-it/index.d.ts","../../../node_modules/@types/mime-types/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/prismjs/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/proper-lockfile/index.d.ts","../../../node_modules/@types/readline-sync/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sinon/node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/stream-buffers/index.d.ts","../../../node_modules/@types/tcp-port-used/index.d.ts","../../../node_modules/@types/vscode/index.d.ts","../../../node_modules/@types/vscode-webview/index.d.ts","../../../node_modules/@types/webidl-conversions/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/whatwg-url/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/xml2js/lib/processors.d.ts","../../../node_modules/@types/xml2js/index.d.ts","../../../node_modules/@smithy/core/node_modules/@smithy/protocol-http/dist-types/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"02ec1ffcc0823cb9c9ba420c619d3af2c726e3a674b66a91941c07a3e7f65dba","impliedFormat":1},{"version":"38f6da5b6f318c33e18dd7c983cab3fe52f510c9a2573948fb13f012e01b1ba6","impliedFormat":1},{"version":"b40885a4e39fb67eb251fb009bf990f3571ccf7279dccad26c2261b4e5c8ebcd","impliedFormat":1},{"version":"2d0e63718a9ab15554cca1ef458a269ff938aea2ad379990a018a49e27aadf40","impliedFormat":1},{"version":"530e5c7e4f74267b7800f1702cf0c576282296a960acbdb2960389b2b1d0875b","impliedFormat":1},{"version":"1c483cc60a58a0d4c9a068bdaa8d95933263e6017fbea33c9f99790cf870f0a8","impliedFormat":1},{"version":"07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","impliedFormat":1},{"version":"5d3e656baf210f702e4006949a640730d6aef8d6afc3de264877e0ff76335f39","impliedFormat":1},{"version":"4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","impliedFormat":1},{"version":"c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","impliedFormat":1},{"version":"570efec02480a95fa35e7c6dc3c00c59309d221e0698cefbc9e27a3c13d69c96","impliedFormat":1},{"version":"396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","impliedFormat":1},{"version":"b7b881ced4ed4dee13d6e0ccdb2296f66663ba6b1419767271090b3ff3478bb9","impliedFormat":1},{"version":"06289b9873760aac77aed4035ea6c60b1e0879b8afe47a4530bc8522b9b804b1","impliedFormat":1},{"version":"63c36aa73242aa745fae813c40585111ead225394b0a0ba985c2683baa6b0ef9","impliedFormat":1},{"version":"3e7ffc7dd797e5d44d387d0892bc288480493e73dcab9832812907d1389e4a98","impliedFormat":1},{"version":"db011ec9589fd51995cbd0765673838e38e6485a6559163cc53dcf508b480909","impliedFormat":1},{"version":"e1a4253f0cca15c14516f52a2ad36c3520b140b5dfb3b3880a368cd75d45d6d9","impliedFormat":1},{"version":"159af954f2633a12fdee68605009e7e5b150dbeb6d70c46672fd41059c154d53","impliedFormat":1},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true,"impliedFormat":1},{"version":"894dae169f8193e3f07c3fec14149a60592d1f13720907ffdf7b0c05cfb62c38","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e0d35597ff6c5142082e60814fa39c8a2077a58d8a6a262e619afb5f855f6ba","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"228318442187dee1f3b18047e6281d12d59f7b492d6243db4eb720d53e3c03f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"f51b4042a3ac86f1f707500a9768f88d0b0c1fc3f3e45a73333283dea720cdc6","impliedFormat":1},{"version":"a29bc8aa8cc100d0c09370c03508f1245853efe017bb98699d4c690868371fc7","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f95830ca11e2c7e82235b73dc149e68a0632b41e671724d12adc83a6750746d","impliedFormat":1},{"version":"7aa011cda7cf0b9e87c85d128b2eeac9930bda215b0fee265d8bf2cec039fb5f","impliedFormat":1},{"version":"92ec1aeca4e94bdab04083daa6039f807c0fce8f09bc42e8b24bf49fa5cdbbff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"25bfb291668b70290dd646f6e99e681ded0481bc0610d241a229cda07d7af425","impliedFormat":1},{"version":"6c39d4dbdb372b364442854e42d8c473e2ec67badb226745af17ed5ac41ce6f5","impliedFormat":1},{"version":"7693b90b3075deaccafd5efb467bf9f2b747a3075be888652ef73e64396d8628","impliedFormat":1},{"version":"bd01a987f0fcf2344a405e542ee681e420651eaff1222a5a6e0c02fda52343bc","impliedFormat":1},{"version":"693e50962e90a3548f41bff2c22676e3964212a836022d82e49eca0b20320a38","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"300b0c12998391154d7b9115a85554e91632a3d3e1b66038e98f2b9cb3c1061d","impliedFormat":1},{"version":"8d680d5d1a77028ca1708118b8c941edd90a6329f9dc0315ffc3a06b4820e937","affectsGlobalScope":true,"impliedFormat":1},{"version":"8bc550ee45988b123605e2cbba4dc8d3b4153c3d06f59074c7cda5bc3b2f2fd8","impliedFormat":1},{"version":"5293d799856f47259146ccf0be9a1cc0a4a5343696182d7206ed25ea67d67920","impliedFormat":1},{"version":"d7cdb379f1a8febb8ba181b2bba4c89b7f9189c68ce00292253d9f827eb0b2d3","impliedFormat":1},{"version":"fab49059d6c2026bdb2e53e4e5cde1a39da44e61daff1867c8b3b10b507bfe17","impliedFormat":1},{"version":"5a551275f85bcc4003e543a1951a5b2f682cfba9b2922f65ae0df40ab71724a5","impliedFormat":1},{"version":"22d1a3163b9a961dbe78b0aedbd7bcbc071ce1f31efb76eb013b0aee230fef0e","impliedFormat":1},{"version":"c31695696ade4514cfcbb22799997b690d3dca7fb72beab68fb2e73b6ef450dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"d99ad56d57f2c96daaf4475a8b64344b24dedafdb8f3c32d43552bcc72279a75","impliedFormat":1},{"version":"a101ef17aece908c1029a1bd3f97132794dcff21b4ca0b997d9a633f962c46aa","impliedFormat":1},{"version":"511575e18249b64b90d8f884fdb8a383c767d1a7efccd9d66a4e125a4dc5c462","impliedFormat":1},{"version":"6d8001f2c3b86c4f1de1d45ecb3f87f287ed7313d6999f8c8318cec4f50e6323","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d09f4b48899d342b5d6cd846f95f969a401933b0dcd375a8a7e45832328bb86","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c3d1222e6e3d8c35a4293d7a54d4142ebb8f7f70ec4111b8136df07fdc66169","impliedFormat":1},{"version":"70173c475c6e76ccebc37412b02b2e26f62bf45fc1534c3ebe6d7fa60fb88819","impliedFormat":1},{"version":"1c05d80325e7cb8ad9fe6f4f8cd1798ec87607fe523865b27cab9fc5b816f067","impliedFormat":1},{"version":"863bc4e31de6c75423bb02da16190d582b0a69b8964b61d45920e5b2cb3832dd","impliedFormat":1},{"version":"3c92f365d57fd49656e4907bf1d950d4a4060dde7db35effe2f6348e0e800b86","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"6e191fea1db6e9e4fa828259cf489e820ec9170effff57fb081a2f3295db4722","impliedFormat":1},{"version":"aed943465fbce1efe49ee16b5ea409050f15cd8eaf116f6fadb64ef0772e7d95","impliedFormat":1},{"version":"0435070b07e646b406b1c9b8b1b1878ea6917c32abc47e6435ec26d71212d513","impliedFormat":1},{"version":"f71188f97c9f7d309798ec02a56dd3bf50a4e4d079b3480f275ac13719953898","impliedFormat":1},{"version":"c4454589a0aa92c10d684c8c9584574bc404d1db556d72196cd31f8f7651af1a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b17790866e140a630fa8891d7105c728a1bd60f4e35822e4b345af166a4a728c","impliedFormat":1},{"version":"c50c75f4360f6fc06c4be29dafe28210e15c50cd6b04ad19c4808fa504efb51a","impliedFormat":1},{"version":"d4a1f5f7ee89b2afffd3c74282f8ee65b24266c92b7d40398c12a27054ed745c","impliedFormat":1},{"version":"900b5a9802192bc77eba35a5b87ce770df7b867a6d61772c554058c9ed635386","impliedFormat":1},{"version":"65278b3e3cb8e3f0b7bc712e86858ba7695501e76a84eedb730cc15b85d92b56","affectsGlobalScope":true,"impliedFormat":1},{"version":"f43fcf89d75f13d0908a77cd3fa32b9fd28c915deded9b2778b08f2e242d07a7","affectsGlobalScope":true,"impliedFormat":1},{"version":"9b6fc34aca8b0411b96ba35b2315017236a47709a1a98d5e16aed3b84037b9e8","impliedFormat":1},{"version":"aebf613f7831125038942eba891005fd25fa5cadcc3e3d13af4768dc7549161f","impliedFormat":1},{"version":"0faee6b555890a1cb106e2adc5d3ffd89545b1da894d474e9d436596d654998f","impliedFormat":1},{"version":"247e5c34784d185bc81442e8b1a371a36c4a5307a766a3725454c0a191b5cfad","impliedFormat":1},{"version":"1c382a6446d63340be549a616ff5142a91653cea45d6d137e25b929130a4f29a","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"20eb6689443f55ebd33372566b0afad619f1ba48fec4ffb4ab0c119e4fc52eea","impliedFormat":1},{"version":"a1b36a1f91a54daf2e89e12b834fa41fb7338bc044d1f08a80817efc93c99ee5","impliedFormat":1},{"version":"8bb4a5b632dd5a868f3271750895cb61b0e20cff82032d87e89288faee8dd6e2","impliedFormat":1},{"version":"0c1aabfd9fb1818afb2e798f91f669edafce59cd7e3423d25b1cfccfaaf2c403","impliedFormat":1},{"version":"017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","impliedFormat":1},{"version":"ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","impliedFormat":1},{"version":"9ae7df67c30dc5f52b7b21e8bb36fd9ff05e7ed10e514e2d9ed879b4547c4cd3","impliedFormat":1},{"version":"fd6a17c2d015cb2963d62db7566a43818424e8f32eb821fa9b8b142d4ab12664","impliedFormat":1},{"version":"4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","impliedFormat":1},{"version":"e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","impliedFormat":1},{"version":"d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","impliedFormat":1},{"version":"d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","impliedFormat":1},{"version":"5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","impliedFormat":1},{"version":"27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","impliedFormat":1},{"version":"eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","impliedFormat":1},{"version":"52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","impliedFormat":1},{"version":"5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","impliedFormat":1},{"version":"fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","impliedFormat":1},{"version":"d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","impliedFormat":1},{"version":"fc9bdd9b3d8fb59c913cb3b8dea0d79b38dfe9331ef07e1c6dc6bf363f061ad6","impliedFormat":1},{"version":"e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","impliedFormat":1},{"version":"0c3c4ce6a1884610c99306719f59174d81808c69393c30119f9c2aef0449a2cb","impliedFormat":1},{"version":"219a25474e58a8161b242776856ec5f6960839b63e74809445e51cadbfc18096","impliedFormat":1},{"version":"5a0d1534e9493ae44b08b3055172da38370e2afd2bc3d4bea11f7be78344036f","impliedFormat":1},{"version":"6309a45fc3c03d3c4d56228e995d51974f53009a842374695b34f3607877e5a3","impliedFormat":1},{"version":"bef94eba81ae2c09059c0d9abdb1ae1b7090314f70550f3c8cd5d7ead4a4f212","impliedFormat":1},{"version":"48b787ad458be9b524fa5fdfef34f68798074132d4b8cfe6a6fe9c2bf334c532","impliedFormat":1},{"version":"37280465f8f9b2ea21d490979952b18b7f4d1f0d8fab2d627618fb2cfa1828e3","impliedFormat":1},{"version":"c12f3ff5e221c1d3e4eaf47a372b538d8e79bd9a15266c2b049a597da0b86924","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f3f85dc43cb93c5a797f1ff0fa948d0e17843a443ae11a20cc032ccdf1b9997","impliedFormat":1},{"version":"581843e855d92557cbe9dfe242de4e53badae5e9096ca593b50788f7c89c37f2","impliedFormat":1},{"version":"869010bc679df668137cb3b78a3cb8196e97acf285208a57f6156ceac894a2f7","impliedFormat":1},{"version":"bcae62618c23047e36d373f0feac5b13f09689e4cd08e788af13271dbe73a139","impliedFormat":1},{"version":"29a99d2e57b3e08a997cbc2397bdb251441a545306a74b95ffedc5f03d9bc6b7","impliedFormat":1},{"version":"5ae003688265a1547bbcb344bf0e26cb994149ac2c032756718e9039302dfac8","impliedFormat":1},{"version":"09e811cc1088d9ea3a7ddd7290f6a13767f56c85daf8c3374a06a45a08d55647","impliedFormat":1},{"version":"a86053981218db1594bd4839bde0fb998e342ecf04967622495434a8f52a4041","impliedFormat":1},{"version":"5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","impliedFormat":1},{"version":"7b270dc53f35dd0b44bfa619ad4d351fffd512e14053c3688323ed007eda3f6d","impliedFormat":1},{"version":"6d4e928f232ade7221cffc6e4332ec935baa176415c9bf5d12111bb883a247d2","impliedFormat":1},{"version":"e86ad029224d4f2af3e188be8b5e9badf8c7083247572069bac7bd2193131fc7","impliedFormat":1},{"version":"057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","impliedFormat":1},{"version":"d94034601782f828aa556791279c86c37f09f7034a2ab873eefe136f77a6046b","impliedFormat":1},{"version":"105ae3dd61531488194f412386ba8c2b786f1389ac3415098cc47c712800da29","impliedFormat":1},{"version":"45851fbb6595233ecf6be213f74f00690c752782387796c66ea186750f831d06","impliedFormat":1},{"version":"4ee905052d0879e667444234d1462540107789cb1c80bd26e328574e4f3e4724","impliedFormat":1},{"version":"151659e152d71986b8943b9943cd7fbe27a65874655081602de7ea24a0f66e9b","impliedFormat":1},{"version":"3448e2fa1ae3a52d50e1e82e50b6ae5b8bd911004a8824b0c6b26c8cdcd15fec","impliedFormat":1},{"version":"c0c0b22cefd1896b92d805556fcabda18720d24981b8cb74e08ffea1f73f96c2","impliedFormat":1},{"version":"b97e6411a3ee83e6f77760f0400d117313a980d05ec89f1e1a7502229e36d060","impliedFormat":1},{"version":"270418f8a6639be745d14bfd085e62685f24eaa6d6482aa9803bae8b8b93919a","impliedFormat":1},{"version":"4cb33d05ff168c1ca836d6d438f93040972af43fc09774876c4add2ad96d125f","impliedFormat":1},{"version":"902d2b66388607197ec48798c94a6ffc657fe1cfbee15e49b6b3052de0e5b8fa","impliedFormat":1},{"version":"38104b9a37d0b9dc54be36ae43b1a32f9cfae34742743bfd7104cf1f39661225","impliedFormat":1},{"version":"47ff32ca9ab8474e89615b4bbe5f2264c2940fc12b86c4dc0a99659479517a6b","impliedFormat":1},{"version":"f892f85b4838f6a2ff1438d240dcf23a872d090794967c7f817a82ea8da1ad8e","impliedFormat":1},{"version":"cb498c53a9d35ac1cf9a3515f3835d48b4626a612cf7540c5bfb99542c9ab1a5","impliedFormat":1},{"version":"b86e64c48044bb73c6de7aa2cdf9295b2c104221e6a68b408225b283d1bcfda2","impliedFormat":1},{"version":"16173f5b3e68a373e7dfe6d00948549facc9947c9dbde813f1efe3a0f236ff6a","impliedFormat":1},{"version":"f457fc1b7583e1215393db13b95a186593660aad29706515ab7479869bc585e0","impliedFormat":1},{"version":"a11288edc8161f664148ea7d56101517e380335f5fa1a94408db86efce025bba","impliedFormat":1},{"version":"0e2a6b2eeadafbc7a27909527af46705d47e93c652d656f09cc3ef460774291b","impliedFormat":1},{"version":"d6d561bf4309a197e4b241fb0eacebf14c400661c4352676cd3c88c17e5ab8a2","impliedFormat":1},{"version":"ed012a19811c4010cb7d8920378f6dd50f22e1cf2842ecb44a157030667b165e","impliedFormat":1},{"version":"4085ac780790cc5787e375bd6c7dc149610665514e1d3d8fb65aec29efb691c9","impliedFormat":1},{"version":"7634eca84d60522b68ac679813fd9247a4260f7412890e924c7779758f8d6391","impliedFormat":1},{"version":"b4ff74f0589487410168be50e3231caf687c5e1302266709742382e8d004fe1e","impliedFormat":1},{"version":"406f227eebfe8be216d7a4b215ed09198b0c2f6599f2273b69ee5b75824c5435","impliedFormat":1},{"version":"e7cd1d6f8afb317dca8c5b6a60d5cd55aacf8d9ed8ae39f22e3104ed0c479552","impliedFormat":1},{"version":"75c9a36ada92da43627b5cf1142a6fe20f50ad00abacb90204b74b19775521c2","impliedFormat":1},{"version":"8a90f97fdb10d83c6842a699c3df474246755f4fbf3ee2d35e69d6599fe9092c","impliedFormat":1},{"version":"88aacf6e2493633490812c70595b517c8e4299f054d28a51687b10f0968276c3","impliedFormat":1},{"version":"f6cae2c0acda884c4b9dec4063d062252cf0625a04ebf711a84d7de576427c3e","impliedFormat":1},{"version":"946739ab9acb2fccd0b2e5a0d1ac4dfe69b9279f33a26e7f0a7a7ab24ee343fc","impliedFormat":1},{"version":"d037b771e89ef6dd81c71de92cc644d68b1b5d1ce25dbce9c2cfe407dd0b5796","impliedFormat":1},{"version":"25091d25f74760301f1e094456e2e6af52ceb6ef1ece48910463528e499992d8","impliedFormat":1},{"version":"853d02f4f46ca9700fefd0d45062f5b82c9335ba2224ca4d7bd34d6ae4fc4a7f","impliedFormat":1},{"version":"ab679e25dcb5d085ca42c33ffc8e2fc48411f81ad3108a3aa81eca79c104ef95","impliedFormat":1},{"version":"b901209745b3cef4b803e42731c40f5c2c2c7101bbd5f481c0fd1c43f9f440f3","impliedFormat":1},{"version":"cf6dc8f18bc5ee063dc1a37bccd3031dc0769f11622399018c375aacfcbda7c9","impliedFormat":1},{"version":"8ca2d01f5f3d4d4067aadea230570afa4c91e24e485fbe2e9d53ead3b33f80d0","impliedFormat":1},{"version":"9230a7b03ae3cce93e94a2cc844da1e5414d2be7505ecc82402094a132cfbbda","impliedFormat":1},{"version":"27350a2872f30b97e947f52ccf15654239eda7c9ff35135a1aa82cc37642fdeb","impliedFormat":1},{"version":"ed3e176bc769725ebc1d93f1d6890fc3d977b9155ae5d03be96ec2d49b303370","impliedFormat":1},{"version":"7933769d84f5ae16546aef06537ca578f1c8d7cca0708452a00613050ac1f265","impliedFormat":1},{"version":"d405963c5f69955e95c30ef121c7a3309f214f21ef09dceb5d7ac69557cbe0fa","impliedFormat":1},{"version":"29c7276f64f0de86eb981ddd4e5a8e7f832fc8d4e712c7e8e1beab6af8cc4147","impliedFormat":1},{"version":"6f11170f0056f1681101d9a1045af3c0d2ea489f14d1a0d4c0b2cb7860cfb8f7","impliedFormat":1},{"version":"fdd84224998f5f4d97017b829548f1fac4ac803025e16c27d4fc7f3426c6261e","impliedFormat":1},{"version":"1591996e71f1aab2e8726d7d04d59a3e8f5162578bee747e883932cfc0b57b2a","impliedFormat":1},{"version":"f8ce447bbda4f75da74cecd866cc1ff9bdde62189ac9d8dc14a16c48b3d702fa","impliedFormat":1},{"version":"da3f7f511c344fb56275cd954156a4d736c9f414f9b84bb0ee229ef583e38074","impliedFormat":1},{"version":"c7d30b164562b7ce99fcb53ab78f937cc845e003f6089d648351331921379994","impliedFormat":1},{"version":"fe2d1251f167d801a27f0dfb4e2c14f4f08bf2214d9784a1b8c310fdfdcdaaea","impliedFormat":1},{"version":"2a1182578228dc1faad14627859042d59ea5ab7e3ac69cb2a3453329aaaa3b83","impliedFormat":1},{"version":"dfa99386b9a1c1803eb20df3f6d3adc9e44effc84fa7c2ab6537ed1cb5cc8cfb","impliedFormat":1},{"version":"79b0d5635af72fb87a2a4b62334b0ab996ff7a1a14cfdb895702e74051917718","impliedFormat":1},{"version":"5f00b052713bfe8e9405df03a1bbe406006b30ec6b0c2ce57d207e70b48cf4e9","impliedFormat":1},{"version":"7abcae770f21794b5ffbc3186483c3dbcf8b0c8e37d3ef3ed6277ece5c5dd4be","impliedFormat":1},{"version":"3e642f39da9ad0a4cd16ccbd7f363b6b5ad5fa16a5c6d44753f98fc1e3be9d96","impliedFormat":1},{"version":"7f5a6eac3d3d334e2f2eba41f659e9618c06361958762869055e22219f341554","impliedFormat":1},{"version":"6f996f44113b76a9960d3fad280f4f671115c5e971356d1dbb4d1b000af8b3b3","impliedFormat":1},{"version":"67f2cd6e208e68fdfa366967d1949575df6ccf90c104fc9747b3f1bdb69ad55a","impliedFormat":1},{"version":"f99ab9dffe6281c9b6df9ae9d8584d18eabf2107572bbd8fa5c83c8afe531af8","impliedFormat":1},{"version":"4fc9939c86a7d80ab6a361264e5666336d37e080a00d831d9358ad83575267da","impliedFormat":1},{"version":"f4ba385eedea4d7be1feeeac05aaa05d6741d931251a85ab48e0610271d001ce","impliedFormat":1},{"version":"f5405fb679a467cb979f8744940b22b7bc3a0bcbe648c3910d98de3188d42a78","impliedFormat":1},{"version":"68969a0efd9030866f60c027aedbd600f66ea09e1c9290853cc24c2dcc92000f","impliedFormat":1},{"version":"fc79932b9aa710f025b89bf8d8329d99080286e5e079a7d5a529236e9f5dd69e","impliedFormat":1},{"version":"6646d9075e3e0eedb02c9d03bffef54c8bbeb601d27eed46f143aba435bac37d","impliedFormat":1},{"version":"0dec72b4c5c4bb149750fef4fc26bdae8f410de941ee766c953f5ac77381d690","impliedFormat":1},{"version":"8f2644578a3273f43fd700803b89b842d2cd09c1fba2421db45737357e50f5b1","impliedFormat":1},{"version":"639f94fe145a72ce520d3d7b9b3b6c9049624d90cbf85cff46fb47fb28d1d8fe","impliedFormat":1},{"version":"8327a51d574987a2b0f61ea40df4adddf959f67bc48c303d4b33d47ba3be114a","impliedFormat":1},{"version":"00e1da5fce4ae9975f7b3ca994dcb188cf4c21aee48643e1d6d4b44e72df21ee","impliedFormat":1},{"version":"991fd5ebf9f30ffa17cae6faeae6a838d3d91bdcdd419bce358dc99b8e5b0ad0","impliedFormat":1},{"version":"4d250e905299144850c6f8e74dad1ee892d847643bacf637e89adcce013f0700","impliedFormat":1},{"version":"51b4ab145645785c8ced29238192f870dbb98f1968a7c7ef2580cd40663b2940","impliedFormat":1},{"version":"589713fefe7282fd008a2672c5fbacc4a94f31138bae6a03db2c7b5453dc8788","impliedFormat":1},{"version":"26f7f55345682291a8280c99bb672e386722961063c890c77120aaca462ac2f9","impliedFormat":1},{"version":"786691c952fe3feac79aca8f0e7e580d95c19afc8a4c6f8765e99fb756d8d9d7","impliedFormat":1},{"version":"747d6d391f97a46f6880e10c8e4858bbd6568070a0f9af0ec74c26475e2c885f","impliedFormat":1},{"version":"354f47aa8d895d523ebc47aea561b5fedb44590ac2f0eae94b56839a0f08056a","impliedFormat":1},{"version":"62b753ed351fba7e0f6b57103529ce90f2e11b949b8fc69c39464fe958535c25","impliedFormat":1},{"version":"514321f6616d04f0c879ac9f06374ed9cb8eac63e57147ac954e8c0e7440ce00","impliedFormat":1},{"version":"ce7b928daedd974205daf616493c6eb358069ed740ed9552c5f4e66da19fd4bf","impliedFormat":1},{"version":"b1aa0340d4248aba8e36e7d246b223e3ae89fb27f167f9e3c7b14838bb41b13f","impliedFormat":1},{"version":"620290e7cd91726a13ce06daf8437b37f4bf782c755674a41d881c2217a35830","impliedFormat":1},{"version":"e06d050ebf5ab7ae4506d7de03d369e5f2f7c96df0e4ba6aec7a6b2450c039d0","impliedFormat":1},{"version":"88c0699b282331433af615deb79fcd6f8e815e93bd40dd7200c1e3cdf052e5a0","impliedFormat":1},{"version":"cf8659543b380c9cf02c88e231eaad406f323f6b1d3eb877d4cad9ff0408974f","impliedFormat":1},{"version":"a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","impliedFormat":1},{"version":"84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","impliedFormat":1},{"version":"415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","impliedFormat":1},{"version":"901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","impliedFormat":1},{"version":"ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","impliedFormat":1},{"version":"b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","impliedFormat":1},{"version":"ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","impliedFormat":1},{"version":"068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","impliedFormat":1},{"version":"3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","impliedFormat":1},{"version":"fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","impliedFormat":1},{"version":"d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","impliedFormat":1},{"version":"3f6af667357384c1f582ef006906ba36668dd87abe832f4497fffb315c160be9","impliedFormat":1},{"version":"363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","impliedFormat":1},{"version":"c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","impliedFormat":1},{"version":"2f1a8ca9846d9ac5481544b5b53811efe2c44bba9195af584136fb34371d5e23","impliedFormat":1},{"version":"1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","impliedFormat":1},{"version":"ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","impliedFormat":1},{"version":"d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","impliedFormat":1},{"version":"4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","impliedFormat":1},{"version":"7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","impliedFormat":1},{"version":"ea2de1a0ec4c9b8828154a971bfe38c47df2f5e9ec511f1a66adce665b9f04b0","impliedFormat":1},{"version":"c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","impliedFormat":1},{"version":"4ef0a17c5bcae3d68227136b562a4d54a4db18cfa058354e52a9ac167d275bbb","impliedFormat":1},{"version":"a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","impliedFormat":1},{"version":"64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","impliedFormat":1},{"version":"c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","impliedFormat":1},{"version":"b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","impliedFormat":1},{"version":"434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","impliedFormat":1},{"version":"c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7","impliedFormat":1},{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","impliedFormat":1},{"version":"81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","impliedFormat":1},{"version":"4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","impliedFormat":1},{"version":"f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","impliedFormat":1},{"version":"1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","impliedFormat":1},{"version":"ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","impliedFormat":1},{"version":"ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","impliedFormat":1},{"version":"f7a8f4bc1e8e786c6115970b8f3ed4797be48108de00b3552bf590706d3a5e8a","impliedFormat":1},{"version":"ce096c727f1ae221bd35b46dd3e050bf3909674e6e9ec1518b3a5aa89ab2a497","impliedFormat":1},{"version":"1a8e6a4f31a5196144f35d0434e16369881d828c849d6a1c9290b6bde8807449","impliedFormat":1},{"version":"42a9ac86df0fa58634ea8a5f7f07b9b9c3243d82e306fb22d8a41639935a6c87","impliedFormat":1},{"version":"5766c26941ae00aa889335bcccc1ecb28271b774be92aede801354c9797074bb","impliedFormat":1},{"version":"3a19286bcc9303c9352c03d68bb4b63cecbf5c9b7848465847bb6c9ceafa1484","impliedFormat":1},{"version":"c573fef34c2e5cc5269fd9c95fe73a1eb9db17142f5d8f36ffe4a686378b8660","impliedFormat":1},{"version":"d97e30dd93590392fed422f2b27325d10ab007d034faaaf61e28e9ddc9d3825b","impliedFormat":1},{"version":"d1f8a829c5e90734bb47a1d1941b8819aeee6e81a2a772c3c0f70b30e3693fa9","impliedFormat":1},{"version":"be1dfacee25a14d79724ba21f1fde67f966b46e2128c68fed2e48c6e1e9822c5","impliedFormat":1},{"version":"19b3d0c212d241c237f79009b4cd0051e54971747fd89dc70a74f874d1192534","impliedFormat":1},{"version":"441751fb3deefe98952ba09b3c5a583c66aa2c9a1abe5e9dba6064a55f5a7678","impliedFormat":1},{"version":"c211816fd9af3b1541c812b859c769958d5e5b85b81da832eb2bcdf98342b054","impliedFormat":1},{"version":"7639642137f8329ef4a19410ce8d3e46910a76294df263f46b428fd61c79d033","impliedFormat":1},{"version":"8e69efd9afdfcd34d85adb6d8e71a5e13fea2a33c7019dd624cc7696772183a0","impliedFormat":1},{"version":"a7ebfe3e2c8f4fea5dac7ffbf6d00acee63c530de24d57cdeeed05530285ca26","impliedFormat":1},{"version":"82b4045609dc0918319f835de4f6cb6a931fd729602292921c443a732a6bb811","impliedFormat":1},{"version":"0fd70ca1eaef1e2dd6f48f16886df4838664821d992fd8076d07fc15e83c8498","impliedFormat":1},{"version":"ba30e6d2f1d20c707566cf485167331a10c539802a79040ced055b62a7aae53e","impliedFormat":1},{"version":"642eae3e9ec5997883f86dd7346d818f07d40fb83cc3530f0e52e232ffb4e631","impliedFormat":1},{"version":"29a6df727893a86807f4dc02116c31d9e6097139579ed6e8029b14c526cba027","impliedFormat":1},{"version":"537a2b61594512c5e75fad7e29d25c23922e27e5a1506eb4fce74fe858472a6e","impliedFormat":1},{"version":"311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","impliedFormat":1},{"version":"7c07838da165fd43759a54d2d490461315e977f9f37c046e0e357623c657fc42","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"115c8691bd8fac390f6f6eef5b356543d716da7cffa4c2f70f288d56c5b06aeb","impliedFormat":1},{"version":"e91516e66f9fbf39c978a4092c16ffda3bb0b32158fca6def75aae9fab358153","impliedFormat":1},{"version":"abd4563a6a7668fa6f8f5e5a425a0900b80fc2309fec5186e2cae67f3ce92663","impliedFormat":1},{"version":"cb48f3011e72efef9d5a5b312f4a956f699b8d423bf9f2772724cdded496bd50","impliedFormat":1},{"version":"9aed07904079877252e6c0aedf1d2cf1935ed91d4abc16f726c76b61ea453919","impliedFormat":1},{"version":"6621af294bd4af8f3f9dd9bd99bd83ed8d2facd16faa6690a5b02d305abd98ab","impliedFormat":1},{"version":"5eada4495ab95470990b51f467c78d47aecfccc42365df4b1e7e88a2952af1a3","impliedFormat":1},{"version":"5fc0957ee8e15821ddb30a76e74e7984953fc35611a57fd703e624bade5836b9","impliedFormat":1},{"version":"40e9c2028b34c6c1e3281818d062f7008705254ee992d9857d051c603391e0f4","impliedFormat":1},{"version":"4720efe0341867600b139bca9a8fa7858b56b3a13a4a665bd98c77052ca64ea4","impliedFormat":1},{"version":"566fc645642572ec1ae3981e3c0a7dc976636976bd7a1d09740c23e8521496e5","impliedFormat":1},{"version":"66182e2432a30468eb5e2225063c391262b6a6732928bbc8ee794642b041dd87","impliedFormat":1},{"version":"11792ab82e35e82f93690040fd634689cad71e98ab56e0e31c3758662fc85736","impliedFormat":1},{"version":"3957b1244f49991b89f12cc45942c24f9c5927dc72677b105bb896d316f0454e","impliedFormat":1},{"version":"6c53c05df974ece61aca769df915345dc6d5b7649a01dc715b7da1809ce00a77","impliedFormat":1},{"version":"18c505381728b8cc6ea6986728403c1969f0d81216ed04163a867780af89f839","impliedFormat":1},{"version":"d121a48de03095d7dd5cd09d39e1a1c4892b520dad4c1d9c339c5d5008cfb536","impliedFormat":1},{"version":"f6d55e607f55be35a3c481b7685461a9acc1e27b893839218eb9313f7e85278c","impliedFormat":1},{"version":"b394ea95c82281d184ea83e8511bd1a43f78d6908eb34b536446d3eb08f9d47f","impliedFormat":1},{"version":"41edf4071b119fdf28b46a3c28c0845f2598bb8b196e7e4c9e01415403fdaea5","impliedFormat":1},{"version":"2bdf3bcf1a9771a288a783d1e8ee5d1d3126c11ddde26ae44864ab432192a6f6","impliedFormat":1},{"version":"603bafdacee4c8850ef5820f8642a817a3f0db6f76dda0474bcf3d17c2e15398","impliedFormat":1},{"version":"a10c79ab97c8a4f6074203094dba87bc736ca574ec480be1df6ec2c82d774573","impliedFormat":1},{"version":"801f049a9e74e941e8ca8add60492aaf4ab717a166248d355ded5753d80f9a85","impliedFormat":1},{"version":"70bba0a9c9c2ad7a042e134a840c4d8462bf0ad98e41c50ca52725ae47265eb9","impliedFormat":1},{"version":"f4dc28fbbba727722cb1fd82f51a7b9540fbe410ed04ddf35cab191d6aa2ba10","impliedFormat":1},{"version":"1db9e7d40d7ffade5bd15ce84936997bb9d159d37668c9d8955993753bbdfb2c","impliedFormat":1},{"version":"047f85c429fbee7423e723a6232e527d69b65c3399880ed8ff0842e29c497c20","impliedFormat":1},{"version":"9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","impliedFormat":1},{"version":"526ee815290e47e75fd2105f83de0916689cc532a19c81620672342f6478095f","impliedFormat":1},{"version":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"8bfba49493f92a72cdffe5b9947c3f572c9301f4e95a471027d0022e8d9b5d97","impliedFormat":1},{"version":"fa90f0cf69cd9296a6c0c43419540ba8e734ab9bf98eff6576bb5f04ddfea175","impliedFormat":1},{"version":"b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","impliedFormat":1},{"version":"68adf02128cad117e068f53ab334cbc730bcfeb7d658d8ce8118da6770b7e622","impliedFormat":1},{"version":"57148dc07df8d175350eb9576cba28cf1b2b7f8a97fc4fb4fcad25089bdd5272","impliedFormat":1},{"version":"2d10d8e7f884bbbbc1dc980464cd36346f2b2aa21bb2c049d21b381053bafbbf","impliedFormat":1},{"version":"7f1567b9dfb571a80556155a5bff1c946b23e74443466689bed24095604b3a9b","impliedFormat":1},{"version":"b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","impliedFormat":1},{"version":"51796c3726bf734b061fac41b479a660f9afccf50b8b493835e204723d23a84d","impliedFormat":1},{"version":"c2b694d903303007a430acf66980f3b503dbd4e50cf6c183af0daf39c8d79ee8","impliedFormat":1},{"version":"a945cfe6ca774e53111b0cfb6b767261352dc6e15d27641b61e5c634b4a729c3","impliedFormat":1},{"version":"3c10545e61e9428bebdc65fed8d11e09d203afb4745eea11b98be7b218a2aeb1","impliedFormat":1},{"version":"fde1236eef449f111d0eb306a5245dab335974dd0ccac39223ea200907c27a8b","impliedFormat":1},{"version":"c1a5f70e04c94e202ef756018ddacc22e752ee3e5eb401170a2dca2773877277","impliedFormat":1},{"version":"f4bedf06294a6a4d28179ee9689f2d8e00ad4d9806a99b234c2a58f1c9147acb","impliedFormat":1},{"version":"91d68d8136434dbe13c34fe6ef3fde75791f9be128ab6b4312d1699e1fcd9859","impliedFormat":1},{"version":"260c24d1b8fdb9284ffd93112fb4141e94970be4ff2ca23ca60b361dab39eee2","impliedFormat":1},{"version":"cb5327ac944956c162522b4388a74a4b3151e2ba3fd5b057ad13a452b2c30189","impliedFormat":1},{"version":"7bac1d3d9a1f0290c91e88426dab334d9d31a712647df5fb5666ad7acb3d53bd","impliedFormat":1},{"version":"41d461c745d59a6e125dbb554b814bc99a9f072325ffd3c8407809378995fdd4","impliedFormat":1},{"version":"33589aa637b92a02e6138fcaab28454fcf35a5e7d4cf91343c83342715f9b55a","impliedFormat":1},{"version":"ac13ba680450baa70ac9e9a2f02b50ae43437fd23d76bf9215a6a5b429455010","impliedFormat":1},{"version":"8b325ba54f25c33b38550f76a31afb82db9d7f4b1891276eeae5aba2f2d3bc30","impliedFormat":1},{"version":"eca427f98f87824d62688c987be1b6fb5dbd2c21a71fbb42702c7e365d0309bf","impliedFormat":1},{"version":"93c931504d284fb193a7cce460e4c2d30d4ed247e246e1f214a8064e95198ce8","impliedFormat":1},{"version":"ce972ae1cfa1741dfc7d5b8caeaabfb696023f45a80c0d71fe55494604cc78c8","impliedFormat":1},{"version":"6360869b4f8e9b942293072189349e2c1a44cc3cd6757e83cc62619e6abb01ad","impliedFormat":1},{"version":"f3ac122e178b71c8d2e74f85d0d0ead1ab592efd4ca989db632bb2f5ecbea484","impliedFormat":1},{"version":"2db9f3f74d99d1d437ca92760f510c76e9024d372506266d8443745eb77eff4a","impliedFormat":1},{"version":"e6bd80f63b2290bcea0bcd06002a19739050f188a8accebec706685cda627755","impliedFormat":1},{"version":"6717f2b01e15e479a01d76258afb0d5f8130fd5d6759a04cd60fde5587549efa","impliedFormat":1},{"version":"0e841b93051d30dc91ae7ecbddb1d89152875ac2e92a18f57d26a135466ba5a7","impliedFormat":1},{"version":"42afd9d91bce6d077990a4f3628bcb7f8fe1bc0397ae481bdf54d6fc7c5cd3a4","impliedFormat":1},{"version":"12f6e76f5766ffb9aaf71adbf0a46b8dca86c59982cbe16a2addb87b68c8b937","impliedFormat":1},{"version":"ec8bff9f60af63c0d12517026faff805a05ae930848edf9f35ef27cf8b0f8478","impliedFormat":1},{"version":"2b26174b7cae62f9d9843b5cab80a844fcf530b528348717180a2e60fcd8c53e","impliedFormat":1},{"version":"16189422d0a96941777ea137f472b05a8dce2c530b4e61970c9412e0a139f9b8","impliedFormat":1},{"version":"373f28376805407a378a80ff2b08c56fa0bf7ac76e5abdedb5a00a4aca2ba9f6","impliedFormat":1},{"version":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"8edadbdab1f9f41f86b9bf0151213fbc7778a337703888ebacf017e73738fa00","impliedFormat":1},{"version":"675d65b49d00d283578a569e662548c2a55a95d7c1a211f9e9a32c6e1398dce8","impliedFormat":1},{"version":"4d11636fad62a75861b44b117d7237d38d957ddd51e09f4021f8b86acc2349b7","impliedFormat":1},{"version":"dbc85ae54cb8da38556b3dc33522159c8a5558c79568edbe4977226764e51219","impliedFormat":1},{"version":"7bf23edcdb0ec0715b7f7b85695a1078a132067c495efa8f6cdcda9359659f9c","impliedFormat":1},{"version":"4ad28da36ad48edec414054e1daef40c1016357b188eca0f72977f30222d9c02","impliedFormat":1},{"version":"6c4032871e6cfcbf2356a398c14a23a54af756bf7a5aff43cddb96b09469248e","impliedFormat":1},{"version":"81f20249f433350a8e13cbb9206779e667f0d5e5ac4b8f014cdf6b6e42a136fc","impliedFormat":1},{"version":"c7185143683e9ba278420520af2e2a80dd911e88e5c08c56405b2a65996e2a1f","impliedFormat":1},{"version":"ca642739f49fb9d709f726a6447cefcaf21d8ccb16595724c8929b515a08ef53","impliedFormat":1},{"version":"42adbc164a978ef94024a312dd27e2415fcf034ca6e1ada520b40582704b3e47","impliedFormat":1},{"version":"4c3e6490ded76314f8115ca4657084c5bd53560db3b366e871c2e44b44437e4a","impliedFormat":1},{"version":"5c44dc0b569cde877bdd06ce1124acd6ae621d0a5dfc65a6668e13b85ca54d55","impliedFormat":1},{"version":"4bc6dbef10e6d46dad778f5fc190eef94e5568d612140b8791b00b01882ec1d6","impliedFormat":1},{"version":"3bb26409311deb6bb7a276fe8af90048fd1146f73881ee9826821df71d11980b","impliedFormat":1},{"version":"e463cc21447f0a1aeeeb793f51f4c165be1cec7583c15f68b8a1703c343a6cca","impliedFormat":1},{"version":"3ba99b530549ef5f440cab610ca72cd7bdc1aab48ba22d24bd00a931aedff21a","impliedFormat":1},{"version":"8f4a728c02701563b8b3c4ff7958bfef49dd9e03215db06d31ead9ccd5270242","impliedFormat":1},{"version":"168ed0c44fb93c128dd97ce63c8f5844c91285710f8424cc85cb804904410629","impliedFormat":1},{"version":"e135af5c48d2dfc0c658e06827798aae78a97933bbdbaf8e023ee003d47651b1","impliedFormat":1},{"version":"529e5b8f3b7ad6bbb679268c7c9f29dcc0670e511574197e9755fbd2d70e1c97","impliedFormat":1},{"version":"4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","impliedFormat":1},{"version":"e35526a0977b9cd80f799aef3314cb2bfe66aeb40879c888f7a993bd3437fc42","impliedFormat":1},{"version":"81d92e5c4d618ba0660121ed30c603e8111ad605e7562948f7430d87038daee0","impliedFormat":1},{"version":"36990d934030ce1060f203c4b45ee7a811aa11aaa4d075bb81c2748da8329607","impliedFormat":1},{"version":"0ae845a8508fbfe0344eb505ddb4a4e5a8759f5ea4608bfc5f3f1b9ea51d76b4","signature":"611c3555ebe13d9820f48a53bccaacf5a2e1e0df64d719cd9e2fba33f2791f8c","impliedFormat":1},{"version":"bd0b6d0720c8b9fb5983761df5b57d6dd6646baf9cc438985f1b53d395aad3d0","signature":"eaba02405aff070bc130d8ad89fed3fe6a7c58493f2792406d671283c42d070b","impliedFormat":1},{"version":"67543772f3c75dc5a2d827c954cf0fde958401e96a6e921fbf6079ed7f4f4daa","signature":"a154d3346d8bc2536064abd3c3dcd962ab394ca73cebfceb0a3723976416f049","impliedFormat":1},{"version":"04c72d6fa3275b08865357900ba7580a5c9e31692a12641a25665fed8411c8b8","impliedFormat":1},{"version":"fad2e326af305b648dd46cac96bf31c88f508823cfea877fae79a9b01dd4d524","impliedFormat":1},{"version":"45e0dd06a42ab62f879b1567438bce5b85eee9c6875685ca2c6ca10f978038b2","impliedFormat":1},{"version":"ad5976f5c289f6720287944a265db0761709be06d5331fc37a1b2999fa13bacc","impliedFormat":1},{"version":"15ffad7691bca48369580748c576e889f19700b8b3a1bfc6586beab673a87956","signature":"9d33b8675e7074e5fcdbde477a40a2ab0278bcef7fb64cc28aa75846d3402bdc","impliedFormat":1},{"version":"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","impliedFormat":1},{"version":"0771ddb474014581a882838fd20e25e829038bb53c127c5b339812f749f6aa3e","signature":"1f9165291e6b94fc61224a00ccf17997125f8148aa244fc533c58557e07641e4","impliedFormat":1},{"version":"d59857b5ae5e3a693c3a2966fe3799ca0ee3c9ff9f3b3e2706cc31bd9f3d4ec4","signature":"5f46441b319013cfcc9e00c60f9f96162b8b7391d4ccae9c511f752812ee3e3a","impliedFormat":1},{"version":"952a60f7c6c46b683f6e0804d1e8e46244e90a68cdaef3d426708e0c82edcd94","signature":"8b3603d15e3899df5abe14590f4549414118396c49c75e4cf6f0e944079ded78"},{"version":"d62c0b0d23609a485dff9b8ed8e9af9c56b8789dc70a07d4bdbb26f16420b249","impliedFormat":1},{"version":"a2609926cd0259b582f55812d4ea93ff0440e38dd015bdb95394b26ad3d34cd1","impliedFormat":1},{"version":"2bdaf407163ca9ca9bc3c1d3fb78ad26b6bd2f7d68b04810fc28072925a95e9b","impliedFormat":1},{"version":"95347f256453f88602fcfc792b0ccea75f330aa22150bd95a6a8bb034a20ba14","impliedFormat":1},{"version":"dd2505eec07d3d341be4322f9f0380b5196f2b163944016227bb599dd89136e7","impliedFormat":1},{"version":"f9dfcd54e603db0684207424124c340a7eb0e61807ece0cdb51a8801c47c9155","impliedFormat":1},{"version":"ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","impliedFormat":1},{"version":"970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","impliedFormat":1},{"version":"e81c6b5f3f287690f7400c7468dc2bf21e621902dc1b6f98236e38235c0dfc68","signature":"9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","impliedFormat":1},{"version":"e50222c22db171b6e6f102dad414ba90b1ad3802537779e838bed86ff506cb28","impliedFormat":1},{"version":"4c36f9d0ffb25cf61b696b2777ba06d553d1b0cfd12d9eed8a1e3b1a50beb2f7","impliedFormat":1},{"version":"dd478451ffa00f4352bffe4f55b4531c8dec0edafb5777272089e5127dca808c","impliedFormat":1},{"version":"aedddd59fc4889fcdeb54a3b2a4943736f282c00db826ff710acb6bc91873b0d","impliedFormat":1},{"version":"5d9a5cc1712870f91f66850e7056e0d03b4046de5558a00e7190b6a9c2f7d432","impliedFormat":1},{"version":"0daf877cd2dcb81c0e39a96ee20262dc07ecc6f68d65cdb9cc6e6cf2f31d29c5","impliedFormat":1},{"version":"6206a6984c6210c7e02e8cec6c2417f6d2458ec36ac97b80ce9f894933a08082","impliedFormat":1},{"version":"d686fcb07a661fef0866137e450a487e710c233cb24f04d11426228162595d7e","impliedFormat":1},{"version":"e21af678a334e57edb0948acafa5f8d029a86c515f74b35701de2b7f0734ed78","signature":"97f2cb77a51ab49d71bdaa169999f503dc91a1261817c15463528d6d7a2dd2f9","impliedFormat":1},{"version":"8e3f8a63b6af3fd917721cfe670eedf5aae7df605d0072c5997021eb6fbdae31","impliedFormat":1},{"version":"046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","impliedFormat":1},{"version":"26b82a7ff864d0e68bc4578771898b91feabcb39dd6371970fd012827bd684f1","signature":"60e6faa0a819d40da14f63177e8f2f7a2c75c4f5925b7ede9d8bc13487d6384a","impliedFormat":1},{"version":"e2264b7f593788fca68253d204722139971cefcc19f01a9540b40e3c6a824152","signature":"68169677a1fbd913f4421ffc3fcafbec03a6bf3ea250249a18fb415f8f4a1746","impliedFormat":1},{"version":"a6260e50e119a4ae143e080cb69501b76f70b55df4f40b3874ee785277003570","impliedFormat":1},{"version":"311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","impliedFormat":1},{"version":"c032a9b7dfc5f9b86ac5b1535fe72154dc48a7f89f76c5cb4e8a6ab4db203671","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"23fa431c1549a548df67056c34a9ea3653b50266d77653a406ff5a67a7f861aa","impliedFormat":1},{"version":"1b1fc8e3cac6cd35e6ecae8aa8bda1f7c402e7786ca262ea6294c907c5b00149","signature":"a3aef4923a8dde677e086f9a6c3f5272a7881517658ff401ec47931829da2075","impliedFormat":1},{"version":"403ba71e387291ed9129e24bc76c9fdef4d563d0208baff9ac4f673d6ec2170a","signature":"1d57041f2cc69ae090870690d2171110a9b672d2b2a2839ace0f59bbaa67cc56","impliedFormat":1},{"version":"60a0074289b6584a0d7003c2aa14d9ebd0027e423deb79e08031b7e708770c98","impliedFormat":1},{"version":"d62b7fb6c39357289ba064887935b0966cd99da5a3bb63afc1d6ea4f82ab23f1","impliedFormat":1},{"version":"7a8e7fc0c0b3c6f0344a6b54a56e928aba5b2bde679ca742acf67aeb67e6f9d2","impliedFormat":1},{"version":"189150e785626242df43edde2e537ae48b8d8ba0c93e78c2478c9ce738a14cfe","impliedFormat":1},{"version":"b377fa259d15c6e3c0fc2804530f1c7448906df2b6afdf6ddeff61a75016cb28","impliedFormat":1},{"version":"a26bb2e2693f921f4aa3f6e8c04a18d07c6ab6c3162c426299e0d0a904d76d82","impliedFormat":1},{"version":"42e7c31cdce8294ad4852d465b2dd91307efecfd7a9889f2a0aa49ffca73e83b","impliedFormat":1},{"version":"7922bdca92b1a6f586e9403b2b7972200aae00f926a300e79bf2d62eb410714f","impliedFormat":1},{"version":"d3abaca0cd59f25b4e056681217d1f8674612071706e6825517ec9e264063e55","impliedFormat":1},{"version":"76a7145b39ac6cc3633e2ccb545e9db3e5a02c7e0bceddbb5abbd3b2e1fba32e","impliedFormat":1},{"version":"a3cf3aa8ec934a46e5d10922af944c14e1b73acb81c4ba90348bee40a829b26c","impliedFormat":1},{"version":"8f95f6784090939eb0cb0c648a03bce2208e595730afc14be4969d90b334b541","impliedFormat":1},{"version":"535b6a88c08e138b1b72003f482bceaca78311cd19836bdde0a80a131f457f43","impliedFormat":1},{"version":"cf72ba3ad6ed1f342e8ddbdbfdf425238cbc7a75cc7a318fa994cb3866a68804","impliedFormat":1},{"version":"f213a7dafb0a946c1134a64151cbb7f2301d23f93920356d730cf0ed767e9985","impliedFormat":1},{"version":"c305868de2a4ea029bd4b9593ebb33b602b54cdbb3a09231486f611a414d0f5f","impliedFormat":1},{"version":"cf42fcfc0f9e976054d921a0f5bf898f9127751cf5dd9f1b4820069fd78f2280","impliedFormat":1},{"version":"e35526a0977b9cd80f799aef3314cb2bfe66aeb40879c888f7a993bd3437fc42","impliedFormat":1},{"version":"81d92e5c4d618ba0660121ed30c603e8111ad605e7562948f7430d87038daee0","impliedFormat":1},{"version":"757f7967151a9b1f043aba090f09c1bdb0abe54f229efd3b7a656eb6da616bf4","impliedFormat":1},{"version":"2da74b28ea53cb34b516fd6dbda3ca93495648cf431e59d24ba3ab5d7ec59ba4","impliedFormat":1},{"version":"928ebc4436abadcd3680338883b7e26189beb7532ae4b3d1c1727598607e53fa","impliedFormat":1},{"version":"2d232975df81628cb4d8a5236b8776976940cc4dd202698e498de5a4baeb7389","impliedFormat":1},{"version":"9bddd9fa92fbbb5bd3b7617b88c4aa038391aa29eca99baef820bf0ff422ee43","signature":"cc67a58590a00cf7dff0a5849c8e7e0439ec202f2462621f60b13fbed0546fc5","impliedFormat":1},{"version":"4c1b770da0116b19eb873aa7cd0bd242ce4b18e20ecde61e5c0bda5421f40707","signature":"3849e66e1f8ac2913e0619ef856a845e4c44f6b9e97c606e991247a9353bb0dd","impliedFormat":1},{"version":"64b05591ba7a6a2025c3ce04bd72b972a6200d4481feaae2e66056e0a1500b3a","signature":"526ee815290e47e75fd2105f83de0916689cc532a19c81620672342f6478095f","impliedFormat":1},{"version":"96def9cb00debb7554a8019ae45310f375a65820bd8efa8e497a96e3416a5677","signature":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"04c8589ba249eb9bc61b2232ab6c29216409852b4aecfb478cbf2a754871253a","signature":"8bfba49493f92a72cdffe5b9947c3f572c9301f4e95a471027d0022e8d9b5d97","impliedFormat":1},{"version":"956f962aca6becfca36766fe3af718b586829e1e4dd72f6b896057f75d4e9e83","impliedFormat":1},{"version":"9f7b583873c73cf01be845311d8b3e1715aecfa476a047d885804d837327d5db","impliedFormat":1},{"version":"f4de63eb261a0b27b5f66f08a4e5c292b67b0c1c0d25199bdd632f4c449b4806","impliedFormat":1},{"version":"f4a795af80885eba93957db860b4b82b4d23a76c5e122c2af5eeb9319094d9d1","impliedFormat":1},{"version":"3267bdd186e8d021bfa57a5314a256b9781e895bc025e426a2bdbe93b946cca0","impliedFormat":1},{"version":"31ed847fef6dc27c5224045deab8f99887ec76146cbc4f2ccb33f5b117fc9bf1","impliedFormat":1},{"version":"0df38983d84eccab44e2e6385bed5e1033b23228e484b80ff124d4049ca8e75a","impliedFormat":1},{"version":"7395857a8b73a1a5a14af625ec52c90f5b24bb0b163057d0f3e8a197ccc816ee","impliedFormat":1},{"version":"8b2e63aba58523a92dd15761096a03b5ebbd8983e2889b1f14265d9b2bb444b6","impliedFormat":1},{"version":"5f932457c501d03a68bee9ae0ab26ef9df2fa1f789a981483ec1f56c120ea5c7","impliedFormat":1},{"version":"4118ae023b5dd1af42aa6ccec246e5c0a7fc32e7459bda588da183d371d46281","impliedFormat":1},{"version":"c935d7a81d4a4409ba02812bd2b9e0176b74d361109d977b13bf6898488df6d9","impliedFormat":1},{"version":"ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","impliedFormat":1},{"version":"970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","impliedFormat":1},{"version":"6477c1bd38bbe6e8d74abebd01a073a7e45a89086a5a250e11725989a54a9a94","impliedFormat":1},{"version":"046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","impliedFormat":1},{"version":"52580471774bba3d4ccd41c1178e2c2884f1caa7257d4e86f760ce840d5083f6","signature":"12c618d15f731e0251af2dcd7b52bb12b0535769e27c9c099bcea9b5a451f3f4","impliedFormat":1},{"version":"2837ced1e5d4ef88b4e1688fa62bc93b4248d1825667c87a83adaa51bc810cbf","impliedFormat":1},{"version":"f61af6ed7df59c72b7e2fc7e25a4500f5e9beafad5be038d349c5348a0727ba5","impliedFormat":1},{"version":"ab1d998d1a0125aeb4f70beb593220427562543d33c704f7df9e5d8b0de76700","signature":"f4dfb302d3c378152e1a8c8d9879d7d69625333efccd3092eafc40837b67f9e4","impliedFormat":1},{"version":"bf7ccda18d9cb9ed3047d96a6542fee3c3bc4e7a7822af40332c5c2f6e07c2b7","impliedFormat":1},{"version":"7bc71d52df9d8e5cc55218d347a91b1758b38341f9cbbac0b80057aa9d93daa6","impliedFormat":1},{"version":"7a1f7b274cf8a66b83fcf42153bde6f25f4eb4d7696d4a6b17e4a8878d128306","impliedFormat":1},{"version":"553dd4fef7d2b88e899646b66b2035e119f61b092d668ae0595a32c234f9b8b5","impliedFormat":1},{"version":"6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","impliedFormat":1},{"version":"afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","impliedFormat":1},{"version":"d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","impliedFormat":1},{"version":"6215681982d007f5e9137ab0ca969c39048401e588bb0ad92018297c82551ea8","impliedFormat":1},{"version":"82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","impliedFormat":1},{"version":"cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","impliedFormat":1},{"version":"3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","impliedFormat":1},{"version":"f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","impliedFormat":1},{"version":"ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","impliedFormat":1},{"version":"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","impliedFormat":1},{"version":"dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","impliedFormat":1},{"version":"67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","impliedFormat":1},{"version":"1b831600aabe1c065830d303d087189e1ccfc93a0ef1882eb58a336ec1ce9f2f","impliedFormat":1},{"version":"75f191b59fe7ce72d1d7d11d0f329a193843f54af93182fc5a65c37d0a82c85a","impliedFormat":1},{"version":"cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","impliedFormat":1},{"version":"f6451dc56be14d37a8b88ea62a143ea398ab44558cd530fb2cdeeea42695c849","impliedFormat":1},{"version":"8ab77e5c32f1b6c6c1ee1b1b771c1a76a16be650559dc61320c8c82c99fc7cde","impliedFormat":1},{"version":"16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","impliedFormat":1},{"version":"ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","impliedFormat":1},{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true,"impliedFormat":1},{"version":"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","impliedFormat":1},{"version":"c269a12e83c5ffc0332b1f245008e4e621e483dd2f8b9b77fc6a664fcde4969d","impliedFormat":1},{"version":"aa8a056ee45ae741849d6e809ba85967b638070060e29c57d12d22b14baefeb6","impliedFormat":1},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true,"impliedFormat":1},{"version":"a97081289e7233ca2ef04a729036449fec4e88818fd7b7397930bd4d52294b18","impliedFormat":1},{"version":"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","impliedFormat":1},{"version":"0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","impliedFormat":1},{"version":"15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","impliedFormat":1},{"version":"963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","impliedFormat":1},{"version":"9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","impliedFormat":1},{"version":"c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","impliedFormat":1},{"version":"ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","impliedFormat":1},{"version":"ae8cd6af37275eac75f5369cdb5f01063bcf1f48d74cb434303ee50ec446acfe","impliedFormat":1},{"version":"2518830a2fda9c272ba48798d0e7b857037443b06594db8e42c87e86944ee9e4","impliedFormat":1},{"version":"95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","impliedFormat":1},{"version":"1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","impliedFormat":1},{"version":"bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","impliedFormat":1},{"version":"5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","impliedFormat":1},{"version":"99ab49d4732fdc98cf5c495925e65e796544cb4086fe42afc235dfc02bcf2351","impliedFormat":1},{"version":"af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","impliedFormat":1},{"version":"d393adc32e520d4274bb4c3dfdcdb342b806a230b66ef0f82b35bffbc4aa2590","impliedFormat":1},{"version":"c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","impliedFormat":1},{"version":"38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","impliedFormat":1},{"version":"3b6040253231d44e6778eb6861cc86c1758562e77783d21b7ecbc73322ded539","impliedFormat":1},{"version":"03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","impliedFormat":1},{"version":"318c82cc1e13da55e8c60d7e1bdc422a0679d675ad048b6d5022a47f57d23e3f","impliedFormat":1},{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac3cce682a1eab96841ce9942ace8dd5649d2951007096555f4950479e4b8d56","impliedFormat":1},{"version":"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","impliedFormat":1},{"version":"fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","impliedFormat":1},{"version":"d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","impliedFormat":1},{"version":"ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","impliedFormat":1},{"version":"9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","impliedFormat":1},{"version":"3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","impliedFormat":1},{"version":"3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","impliedFormat":1},{"version":"951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","impliedFormat":1},{"version":"a45efe8e9134ef64a5e3825944bc16fffaf130b82943844523d7a7f7c1fd91b2","impliedFormat":1},{"version":"969aa6509a994f4f3b09b99d5d29484d8d52a2522e133ef9b4e54af9a3e9feaf","impliedFormat":1},{"version":"f378e8538e407f997a0f88fcd1ecd93a096707cc909339ce4dba2e4ea03f1726","impliedFormat":1},{"version":"dcafd874e49d42fc215dcb4ef1e06511363c1f31979951081f3cd1908a05a636","impliedFormat":1},{"version":"fb73c98050a02b5849cc0fbb0d133ed55764b9c2a91f0ada2a25e74df68e6242","impliedFormat":1},{"version":"6002c44a8e8edbe4c79ce856c7bac3f8e69a2a45dc5bd6b229ca4ab323b924b3","impliedFormat":1},{"version":"b4d505a77e0829de5e5e23eaefb3d7989e0dbdfdb02ea69159df9f40017fb958","impliedFormat":1},{"version":"b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","impliedFormat":1},{"version":"f2242adef346a64818a1af914146f6f6046f16505e8a228c3bdb70185d4fdf4c","impliedFormat":1},{"version":"2f7508d8eeadcfde20b41ec13726c9ad26f04bbf830434e289c6010d5be28455","impliedFormat":1},{"version":"8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","impliedFormat":1},{"version":"9798f0d3693043da9dda9146b5e8622cd4476270e7aed8f3cb346b9b40a52103","impliedFormat":1},{"version":"fc7e8927b6fa6c81d68783afb314d01592c559e86bd36df334c37f40d0136acd","impliedFormat":1},{"version":"73f72caffdd55f189b5bf4e6b5ca273b4e26269d9aac859b9d30a5f799c095ad","impliedFormat":1},{"version":"d998e3e185cdf59dfc84043c41a42c02daaf3b7b21bee2db2d1f620a8e134f4c","impliedFormat":1},{"version":"06aa8858883e08f5136eb182d2f285ea615aeb464007f83c7a31ee1f8d9932b1","impliedFormat":1},{"version":"62d429aba0bbe459a04965d10c7637b74b319149f17874920a5ffb9fe3ba14d8","impliedFormat":1},{"version":"084a25e9ee73362fbb467873341b95721689513c14af6aa3067a1d95d6fafe08","impliedFormat":1},{"version":"4dbfeb147290c498e3aa56ea3198a6a109c5c0d9d7a4936a3138376302d89e7d","impliedFormat":1},{"version":"169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","impliedFormat":1},{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true,"impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","impliedFormat":1},{"version":"5009c081fd8ca3fcd6f3adcd071a1c79a933a400532b897822aad0943688a1f1","impliedFormat":1},{"version":"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","impliedFormat":1},{"version":"93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","impliedFormat":1},{"version":"c271193e426325d9acab2f99997bb9f5f2dff850ec8c7c011c5abafe5af83b5f","impliedFormat":1},{"version":"58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","impliedFormat":1},{"version":"a3e12bcf2d196656ccd5b5d5344182967a2bdde0f63c9b955c36169ed02c3555","impliedFormat":1},{"version":"a016d2f6c0a2c15069ec69661ad37c86a450deb629ce96a592f15f01d3a5746e","impliedFormat":1},{"version":"2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","impliedFormat":1},{"version":"2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","impliedFormat":1},{"version":"42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","impliedFormat":1},{"version":"d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","impliedFormat":1},{"version":"b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","impliedFormat":1},{"version":"7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","impliedFormat":1},{"version":"906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","impliedFormat":1},{"version":"5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","impliedFormat":1},{"version":"c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","impliedFormat":1},{"version":"e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","impliedFormat":1},{"version":"e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","impliedFormat":1},{"version":"9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","impliedFormat":1},{"version":"0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","impliedFormat":1},{"version":"71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","impliedFormat":1},{"version":"c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","impliedFormat":1},{"version":"2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","impliedFormat":1},{"version":"479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","impliedFormat":1},{"version":"ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","impliedFormat":1},{"version":"f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","impliedFormat":1},{"version":"86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","impliedFormat":1},{"version":"2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","impliedFormat":1},{"version":"a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","impliedFormat":1},{"version":"b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","impliedFormat":1},{"version":"61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","impliedFormat":1},{"version":"6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","impliedFormat":1},{"version":"c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","impliedFormat":1},{"version":"38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","impliedFormat":1},{"version":"d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","impliedFormat":1},{"version":"3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","impliedFormat":1},{"version":"b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","impliedFormat":1},{"version":"f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","impliedFormat":1},{"version":"843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","impliedFormat":1},{"version":"f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","impliedFormat":1},{"version":"6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","impliedFormat":1},{"version":"e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","impliedFormat":1},{"version":"a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","impliedFormat":1},{"version":"a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","impliedFormat":1},{"version":"da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","impliedFormat":1},{"version":"acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","impliedFormat":1},{"version":"6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","impliedFormat":1},{"version":"4fddd9f6929421ce580b4583defbb3f78f5a4a3642bea5ecd3209bf652d8b507","impliedFormat":1},{"version":"f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","impliedFormat":1},{"version":"82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","impliedFormat":1},{"version":"557e00bde9af85bcb3ab6b3a785904f028f9f1b65dba664f2fda44965acf8a78","impliedFormat":1},{"version":"397981908f102effb3cd483042076b593f3928264dbf06aec235a7c3e83da2b4","impliedFormat":1},{"version":"ad78491e2a3ae1e59680dbab88607dd670d06a91b1d6c451fa895ad390513e8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a9deb79dabc5153448e38589fbe38945fdad45f0f8442cd4d4e1da8bb879a76","affectsGlobalScope":true,"impliedFormat":1},{"version":"f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956","impliedFormat":1},{"version":"c9cc4c881c910ce378659524d985d2b72b79029b0c473df5d4d3557b4cf6010a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fae4b2bc906f3e6840725cc24affaa4e684e6c9cc20254242c5df4bede5b6f6","impliedFormat":1},{"version":"2dd1d4cea14cead7a7fc9eec8f40593089dff0de8c0199458446143c9b8c4ea9","impliedFormat":1},{"version":"c0288f54de6f544706a3150c8b579b1a975870695c4be866f727ece6a16f3976","impliedFormat":1},{"version":"ec2c7505ede4bc3ee37cfe431cfd87e545f55f27fe15b0809c1a411765145615","impliedFormat":1}],"options":{"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":99,"outDir":"./dist-es","removeComments":true,"rootDir":"./src","skipLibCheck":true,"strict":true,"target":8,"useUnknownInCatchVariables":false},"fileIdsList":[[64,69,117],[64,69,82,98,115,495],[64,69],[64,69,84,117,498],[64,69,75,117],[64,69,81,84,109,117,502,503,504],[64,69,117,513],[64,69,109,117,517],[64,69,84,117],[64,69,70,117],[64,69,506,507,521],[64,69,81,84,117,515,516],[64,69,499,516,517,524],[64,69,81,82,117,526],[64,69,81,84,86,89,98,109,117],[64,69,81,112,117,543,544,546],[64,69,545],[64,69,81,117],[64,69,548,550,551,552,553,554,555,556,557,558,559,560],[64,69,548,549,551,552,553,554,555,556,557,558,559,560],[64,69,549,550,551,552,553,554,555,556,557,558,559,560],[64,69,548,549,550,552,553,554,555,556,557,558,559,560],[64,69,548,549,550,551,553,554,555,556,557,558,559,560],[64,69,548,549,550,551,552,554,555,556,557,558,559,560],[64,69,548,549,550,551,552,553,555,556,557,558,559,560],[64,69,548,549,550,551,552,553,554,556,557,558,559,560],[64,69,548,549,550,551,552,553,554,555,557,558,559,560],[64,69,548,549,550,551,552,553,554,555,556,558,559,560],[64,69,548,549,550,551,552,553,554,555,556,557,559,560],[64,69,548,549,550,551,552,553,554,555,556,557,558,560],[64,69,548,549,550,551,552,553,554,555,556,557,558,559],[64,69,580],[64,69,565],[64,69,569,570,571],[64,69,568],[64,69,570],[64,69,547,566,567,572,575,577,578,579],[64,69,567,573,574,580],[64,69,573,576],[64,69,567,568,573,580],[64,69,567,580],[64,69,561,562,563,564],[64,69,84,109,117,586,587],[64,69,592],[64,69,81,82,117],[64,69,84,98,117],[64,69,595,634],[64,69,595,619,634],[64,69,634],[64,69,595],[64,69,595,620,634],[64,69,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633],[64,69,620,634],[64,69,82,525],[64,69,84,117,523],[64,69,636],[64,69,98,117],[64,69,81,84,86,98,106,109,115,117],[64,69,81,117,648],[64,69,532],[64,69,531,532],[64,69,531],[64,69,531,532,533,535,536,539,540,541,542],[64,69,532,536],[64,69,531,532,533,535,536,537,538],[64,69,531,536],[64,69,536,540],[64,69,532,533,534],[64,69,533],[64,69,531,532,536],[64,69,510],[64,69,507,508,509],[64,69,507,510],[64,69,84,89,106,109,112,506,508,510,511,512],[64,69,163,198],[64,69,163,197,336],[64,69,163,215,242,244,336],[64,69,245,246],[64,69,285],[64,69,163,247,285,295],[64,69,243,296,297,336,337,339,340],[64,69,244],[64,69,242,243],[64,69,242],[64,69,163,245,246,295],[64,69,163,245,246,336],[64,69,163,198,242,245,246,295,297,298,301,316,318,335],[64,69,163,188,198,242,295,297,336,344],[64,69,163,188,198,242,295,297,336,349,396],[64,69,163,198,297,336],[64,69,296],[64,69,474,475],[64,69,491],[64,69,163,361],[64,69,163,197,372],[64,69,163,215,242,363,372],[64,69,364,365,366,367],[64,69,163],[64,69,163,285,295,369],[64,69,362,368,370,371,372,373,374,378,379],[64,69,363],[64,69,242,362],[64,69,375,376,377],[64,69,163,372],[64,69,163,365,375],[64,69,163,366,375],[64,69,370],[64,69,163,364,365,366,367,372],[64,69,163,215,242,295,298,301,316,335,361,364,365,366,367,368,371],[45,64,69,191,196],[44,64,69],[64,69,163,179],[64,69,163,178],[64,69,178,179,180,189],[64,69,163,177],[64,69,163,188],[64,69,190],[64,69,192,193,194,195],[64,69,163,350],[64,69,350,351],[64,69,163,173,285,355,356],[64,69,357],[64,69,163,357],[64,69,163,352,355,358,360,386,394],[64,69,395],[64,69,163,173,285],[64,69,359],[64,69,163,173,285,381],[64,69,382,383,384,385],[64,69,163,383],[64,69,380],[64,69,163,285,353],[64,69,163,285],[64,69,353,354],[64,69,446],[64,69,299,300],[64,69,163,299],[64,69,439,442],[64,69,177],[64,69,440,441],[64,69,163,260,261],[64,69,255],[64,69,255,256,257,258,259],[64,69,248,249,250,251,252,253,254,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284],[64,69,260,261],[64,69,163,477],[64,69,163,417],[64,69,302,303,304,305],[64,69,163,304],[64,69,306,309,315],[64,69,307,308],[64,69,310],[64,69,163,312,313],[64,69,312,313,314],[64,69,311],[64,69,452,455,462,463,464,465,466],[64,69,163,449],[64,69,449,450,451],[64,69,453,454],[64,69,163,295],[64,69,457,458,459],[64,69,456,460,461],[64,69,163,387],[64,69,163,387,389],[64,69,387,388,389,390,391,392,393],[64,69,479,480,481],[64,69,317],[64,69,98,117,163],[64,69,419,420],[64,69,342,343],[64,69,483,484],[64,69,163,208,209],[64,69,210,211],[64,69,208,209,212,213,214],[64,69,163,326,328],[64,69,328,329,330,331,332,333,334],[64,69,163,330],[64,69,163,327],[64,69,408,409,410],[64,69,163,409],[64,69,163,164,174,175],[64,69,163,173],[64,69,176],[64,69,346,347,348],[64,69,84,86,117,163,295],[64,69,288],[64,69,289],[64,69,163,291],[64,69,163,286,287],[64,69,286,287,288,290,291,292,293,294],[64,69,165,166,167,168,169,170,171,172],[64,69,163,169],[64,69,181,182,183,184,185,186,187],[64,69,163,206],[64,69,163,215],[64,69,199],[64,69,163,225,226],[64,69,227],[64,69,163,199,207,216,217,218,219,220,221,222,223,224,228,229,230,231,232,233,234,235,236,237,238,239,240,241],[47,64,69],[46,64,69],[50,57,58,59,64,69],[57,60,64,69],[50,54,64,69],[50,60,64,69],[48,49,58,59,60,61,64,69],[64,69,98,117,119],[64,69,121],[55,56,57,64,69,123],[55,57,64,69],[64,69,125,127,128],[64,69,125,126],[64,69,130],[48,64,69],[51,64,69,132],[64,69,132],[64,69,132,133,134,135,136],[64,69,135],[52,64,69],[64,69,132,133,134],[54,55,57,64,69],[64,69,121,122],[64,69,138],[64,69,138,142],[64,69,138,139,142,143],[56,64,69,141],[64,69,118],[47,53,64,69],[52,54,64,69,84,86,117],[50,64,69],[50,64,69,146,147,148],[47,51,52,53,54,55,56,57,62,64,69,120,121,122,123,124,126,129,130,131,137,140,141,144,145,149,150,151,152,153,154,155,156,157,158,160,161,162],[48,51,52,56,64,69],[64,69,124],[64,69,140],[54,56,64,69,126],[54,55,64,69],[54,64,69,130],[56,64,69,121,122],[64,69,84,98,117,119,152],[55,64,69,123,157,158],[54,64,69,84,85,117,123,124,152,156,157,158,159],[64,69,123,124],[54,64,69],[64,69,427,428],[64,69,486],[64,69,423],[64,69,488],[64,69,163,242],[64,69,435],[64,69,402,403],[64,69,163,319],[64,69,163,321],[64,69,319],[64,69,319,320,321,322,323,324,325],[64,69,98],[64,69,200,201,202,203,204,205],[64,69,98,163],[64,69,430,431,432],[64,65,69],[64,68,69],[64,69,74,101],[64,69,70,81,82,89,98,109],[64,69,70,71,81,89],[64,69,72,110],[64,69,73,74,82,90],[64,69,74,98,106],[64,69,75,77,81,89],[64,69,76],[64,69,77,78],[64,69,81],[64,69,80,81],[64,68,69,81],[64,69,81,82,83,98,109],[64,69,81,82,83,98],[64,69,81,84,89,98,109],[64,69,81,82,84,85,89,98,106,109],[64,69,84,86,98,106,109],[64,69,81,87],[64,69,88,109,114],[64,69,77,81,89,98],[64,69,90],[64,69,91],[64,68,69,92],[64,69,93,108,114],[64,69,94],[64,69,95],[64,69,81,96],[64,69,96,97,110,112],[64,69,81,98,99,100],[64,69,98,100],[64,69,98,99],[64,69,101],[64,69,102],[64,69,81,104,105],[64,69,104,105],[64,69,74,89,98,106],[64,69,107],[69],[63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116],[64,69,89,108],[64,69,84,95,109],[64,69,74,110],[64,69,98,111],[64,69,112],[64,69,113],[64,69,74,81,83,92,98,109,112,114],[64,69,98,115],[64,69,163,401,405],[64,69,163,197,401,404,469],[64,69,163,242,401,407,411,414,469],[64,69,401,412,415],[64,69,285,316,401],[64,69,163,285,295,401,438],[64,69,401,406,444,445,469,470,471,472],[64,69,401,407],[64,69,242,401,406],[64,69,242,401],[64,69,163,197,242,295,401,406,407,412,413,415],[64,69,163,242,401,412,415,469],[64,69,163,242,295,298,301,316,318,335,401,405,412,415,437,445,447,448,467,468],[64,69,242,316,326,344,401,416,434,469,476,478,482,485,487,489],[64,69,401,469,490,492],[64,69,163,197,242,401,405,425,426,429,433,469],[64,69,177,197,242,316,326,335,349,396,401,416,418,421,422,424,434,436,469],[64,69,242,295,401,438,443,444],[64,69,163,247,285,650],[64,69,163,245,246,650],[64,69,163,198,242,245,246,297,298,301,316,318,335,650],[64,69,163,188,198,242,297,336,344,650],[64,69,163,188,198,242,297,336,349,396,650],[163,405],[163,197,469],[163,215,242,407,469],[412,415],[285],[163,285,438,650],[406,444,445,469,470,471,472],[407],[242,406],[242],[163,412,415,650],[163,412,415,469],[163,242,298,301,316,318,335,405,412,415,445,650],[163,188,242,295,344,405,445,469],[163,405,445,469],[163,188,242,295,349,396,405,445,469],[444]],"referencedMap":[[494,1],[496,2],[497,3],[499,4],[500,5],[501,3],[505,6],[514,7],[518,8],[498,9],[519,10],[520,3],[521,3],[522,11],[506,3],[517,12],[525,13],[527,14],[526,3],[503,3],[528,15],[529,3],[530,3],[545,16],[546,17],[507,3],[502,18],[547,3],[549,19],[550,20],[548,21],[551,22],[552,23],[553,24],[554,25],[555,26],[556,27],[557,28],[558,29],[559,30],[560,31],[581,32],[566,33],[572,34],[570,3],[569,35],[571,36],[580,37],[575,38],[577,39],[578,40],[579,41],[573,3],[574,41],[576,41],[568,41],[567,3],[562,3],[561,3],[564,33],[565,42],[563,33],[582,3],[523,3],[583,3],[584,3],[585,3],[587,3],[588,43],[589,3],[590,3],[591,3],[593,44],[516,3],[515,3],[495,45],[594,3],[504,46],[592,3],[619,47],[620,48],[595,49],[598,49],[617,47],[618,47],[608,47],[607,50],[605,47],[600,47],[613,47],[611,47],[615,47],[599,47],[612,47],[616,47],[601,47],[602,47],[614,47],[596,47],[603,47],[604,47],[606,47],[610,47],[621,51],[609,47],[597,47],[634,52],[633,3],[628,51],[630,53],[629,51],[622,51],[623,51],[625,51],[627,51],[631,53],[632,53],[624,53],[626,53],[635,54],[524,55],[637,56],[636,3],[638,3],[639,9],[640,57],[641,3],[544,3],[643,3],[642,3],[644,3],[645,3],[646,3],[647,58],[649,59],[648,3],[509,3],[586,46],[533,60],[542,61],[531,3],[532,62],[543,63],[538,64],[539,65],[537,66],[541,67],[535,68],[534,69],[540,70],[536,61],[511,71],[510,72],[508,73],[512,3],[513,74],[247,75],[198,76],[245,77],[339,78],[246,77],[338,79],[296,80],[341,81],[340,82],[244,83],[243,84],[400,85],[337,86],[336,87],[345,88],[397,89],[398,88],[399,90],[297,91],[474,79],[476,92],[475,79],[492,93],[491,79],[369,94],[361,95],[364,96],[374,97],[365,96],[366,96],[367,96],[368,98],[370,99],[380,100],[379,101],[363,102],[362,84],[378,103],[375,104],[376,105],[377,106],[371,107],[373,108],[372,109],[197,110],[44,3],[45,111],[180,112],[179,113],[190,114],[178,115],[189,116],[191,117],[192,3],[196,118],[193,3],[194,98],[195,98],[351,119],[350,79],[352,120],[357,121],[358,122],[356,123],[395,124],[396,125],[359,126],[360,127],[382,128],[386,129],[384,130],[381,131],[383,98],[385,130],[354,132],[353,133],[355,134],[298,98],[447,135],[446,98],[448,98],[299,98],[301,136],[300,137],[439,133],[443,138],[440,139],[442,140],[441,98],[248,98],[249,98],[250,98],[251,98],[252,98],[253,98],[254,98],[262,141],[263,98],[264,3],[265,98],[266,98],[267,98],[268,98],[269,98],[256,142],[257,98],[255,98],[260,143],[258,142],[259,98],[285,144],[270,98],[271,98],[272,98],[273,98],[274,3],[275,98],[276,98],[277,98],[278,98],[279,98],[280,98],[281,145],[282,98],[283,98],[261,98],[284,98],[477,3],[478,146],[417,3],[418,147],[306,148],[302,139],[303,139],[305,149],[304,98],[316,150],[307,139],[309,151],[308,98],[311,152],[310,3],[314,153],[315,154],[312,155],[313,155],[463,98],[467,156],[450,157],[451,157],[449,98],[452,158],[454,98],[453,98],[455,159],[464,98],[466,98],[465,160],[456,98],[457,160],[458,160],[460,161],[459,98],[462,162],[461,98],[393,3],[388,163],[390,164],[394,165],[391,9],[387,98],[389,98],[392,98],[479,98],[482,166],[480,98],[481,3],[317,98],[318,167],[419,168],[421,169],[420,98],[342,160],[344,170],[343,98],[422,98],[485,171],[483,3],[484,98],[468,98],[210,172],[212,173],[211,98],[213,172],[214,172],[215,174],[208,98],[209,3],[329,175],[330,115],[331,3],[335,176],[332,98],[333,98],[334,177],[328,178],[327,98],[408,98],[411,179],[409,98],[410,180],[176,181],[164,98],[174,182],[175,98],[177,183],[349,184],[346,185],[347,160],[348,98],[289,186],[290,187],[291,98],[292,188],[288,189],[286,98],[287,98],[295,190],[293,3],[294,98],[165,3],[166,3],[167,3],[168,3],[173,191],[169,98],[170,98],[171,192],[172,98],[187,98],[182,98],[183,98],[184,98],[188,193],[185,98],[186,98],[181,98],[199,98],[207,194],[216,195],[217,3],[218,196],[219,3],[220,3],[221,3],[222,3],[223,98],[224,3],[225,98],[227,197],[228,198],[226,98],[229,3],[230,3],[242,199],[231,3],[232,3],[233,98],[234,3],[235,3],[236,3],[237,3],[238,3],[239,3],[240,3],[241,3],[46,200],[47,201],[48,3],[49,3],[60,202],[61,203],[58,204],[59,205],[62,206],[120,207],[122,208],[124,209],[123,210],[125,3],[129,211],[127,212],[128,3],[121,3],[131,213],[51,214],[133,215],[134,216],[137,217],[136,218],[132,219],[135,220],[130,221],[138,222],[139,223],[143,224],[144,225],[142,226],[119,227],[54,228],[145,229],[146,230],[147,230],[50,3],[149,231],[148,230],[163,232],[52,3],[57,233],[150,234],[151,3],[55,3],[141,235],[152,236],[140,237],[153,238],[154,239],[155,207],[156,207],[157,240],[126,3],[159,241],[160,242],[118,3],[161,243],[158,3],[53,244],[56,221],[162,200],[426,98],[427,3],[429,245],[428,3],[486,3],[487,246],[423,3],[424,247],[489,248],[488,249],[436,250],[435,249],[402,98],[404,251],[403,98],[320,252],[324,3],[322,253],[325,3],[323,254],[326,255],[321,98],[319,3],[200,3],[201,168],[204,256],[206,257],[202,258],[203,57],[205,3],[430,3],[433,259],[431,3],[432,3],[65,260],[66,260],[68,261],[69,262],[70,263],[71,264],[72,265],[73,266],[74,267],[75,268],[76,269],[77,270],[78,270],[79,271],[80,272],[81,273],[82,274],[83,275],[67,3],[116,3],[84,276],[85,277],[86,278],[87,279],[88,280],[89,281],[90,282],[91,283],[92,284],[93,285],[94,286],[95,287],[96,288],[97,289],[98,290],[100,291],[99,292],[101,293],[102,294],[103,3],[104,295],[105,296],[106,297],[107,298],[64,299],[63,3],[117,300],[108,301],[109,302],[110,303],[111,304],[112,305],[113,306],[114,307],[115,308],[413,3],[401,3],[8,3],[9,3],[11,3],[10,3],[2,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[3,3],[4,3],[23,3],[20,3],[21,3],[22,3],[24,3],[25,3],[26,3],[5,3],[27,3],[28,3],[29,3],[30,3],[6,3],[34,3],[31,3],[32,3],[33,3],[35,3],[7,3],[36,3],[41,3],[42,3],[37,3],[38,3],[39,3],[40,3],[1,3],[43,3],[416,3],[438,309],[405,310],[415,311],[471,312],[412,311],[425,313],[444,314],[473,315],[472,316],[407,317],[406,318],[414,319],[470,320],[469,321],[490,322],[493,323],[434,324],[437,325],[445,326]],"exportedModulesMap":[[494,1],[496,2],[497,3],[499,4],[500,5],[501,3],[505,6],[514,7],[518,8],[498,9],[519,10],[520,3],[521,3],[522,11],[506,3],[517,12],[525,13],[527,14],[526,3],[503,3],[528,15],[529,3],[530,3],[545,16],[546,17],[507,3],[502,18],[547,3],[549,19],[550,20],[548,21],[551,22],[552,23],[553,24],[554,25],[555,26],[556,27],[557,28],[558,29],[559,30],[560,31],[581,32],[566,33],[572,34],[570,3],[569,35],[571,36],[580,37],[575,38],[577,39],[578,40],[579,41],[573,3],[574,41],[576,41],[568,41],[567,3],[562,3],[561,3],[564,33],[565,42],[563,33],[582,3],[523,3],[583,3],[584,3],[585,3],[587,3],[588,43],[589,3],[590,3],[591,3],[593,44],[516,3],[515,3],[495,45],[594,3],[504,46],[592,3],[619,47],[620,48],[595,49],[598,49],[617,47],[618,47],[608,47],[607,50],[605,47],[600,47],[613,47],[611,47],[615,47],[599,47],[612,47],[616,47],[601,47],[602,47],[614,47],[596,47],[603,47],[604,47],[606,47],[610,47],[621,51],[609,47],[597,47],[634,52],[633,3],[628,51],[630,53],[629,51],[622,51],[623,51],[625,51],[627,51],[631,53],[632,53],[624,53],[626,53],[635,54],[524,55],[637,56],[636,3],[638,3],[639,9],[640,57],[641,3],[544,3],[643,3],[642,3],[644,3],[645,3],[646,3],[647,58],[649,59],[648,3],[509,3],[586,46],[533,60],[542,61],[531,3],[532,62],[543,63],[538,64],[539,65],[537,66],[541,67],[535,68],[534,69],[540,70],[536,61],[511,71],[510,72],[508,73],[512,3],[513,74],[247,75],[198,76],[245,77],[339,78],[246,77],[338,79],[296,327],[341,81],[340,82],[244,83],[243,84],[400,328],[337,86],[336,329],[345,330],[397,331],[398,330],[399,90],[297,91],[474,79],[476,92],[475,79],[492,93],[491,79],[369,94],[361,95],[364,96],[374,97],[365,96],[366,96],[367,96],[368,98],[370,99],[380,100],[379,101],[363,102],[362,84],[378,103],[375,104],[376,105],[377,106],[371,107],[373,108],[372,109],[197,110],[44,3],[45,111],[180,112],[179,113],[190,114],[178,115],[189,116],[191,117],[192,3],[196,118],[193,3],[194,98],[195,98],[351,119],[350,79],[352,120],[357,121],[358,122],[356,123],[395,124],[396,125],[359,126],[360,127],[382,128],[386,129],[384,130],[381,131],[383,98],[385,130],[354,132],[353,133],[355,134],[298,98],[447,135],[446,98],[448,98],[299,98],[301,136],[300,137],[439,133],[443,138],[440,139],[442,140],[441,98],[248,98],[249,98],[250,98],[251,98],[252,98],[253,98],[254,98],[262,141],[263,98],[264,3],[265,98],[266,98],[267,98],[268,98],[269,98],[256,142],[257,98],[255,98],[260,143],[258,142],[259,98],[285,144],[270,98],[271,98],[272,98],[273,98],[274,3],[275,98],[276,98],[277,98],[278,98],[279,98],[280,98],[281,145],[282,98],[283,98],[261,98],[284,98],[477,3],[478,146],[417,3],[418,147],[306,148],[302,139],[303,139],[305,149],[304,98],[316,150],[307,139],[309,151],[308,98],[311,152],[310,3],[314,153],[315,154],[312,155],[313,155],[463,98],[467,156],[450,157],[451,157],[449,98],[452,158],[454,98],[453,98],[455,159],[464,98],[466,98],[465,160],[456,98],[457,160],[458,160],[460,161],[459,98],[462,162],[461,98],[393,3],[388,163],[390,164],[394,165],[391,9],[387,98],[389,98],[392,98],[479,98],[482,166],[480,98],[481,3],[317,98],[318,167],[419,168],[421,169],[420,98],[342,160],[344,170],[343,98],[422,98],[485,171],[483,3],[484,98],[468,98],[210,172],[212,173],[211,98],[213,172],[214,172],[215,174],[208,98],[209,3],[329,175],[330,115],[331,3],[335,176],[332,98],[333,98],[334,177],[328,178],[327,98],[408,98],[411,179],[409,98],[410,180],[176,181],[164,98],[174,182],[175,98],[177,183],[349,184],[346,185],[347,160],[348,98],[289,186],[290,187],[291,98],[292,188],[288,189],[286,98],[287,98],[295,190],[293,3],[294,98],[165,3],[166,3],[167,3],[168,3],[173,191],[169,98],[170,98],[171,192],[172,98],[187,98],[182,98],[183,98],[184,98],[188,193],[185,98],[186,98],[181,98],[199,98],[207,194],[216,195],[217,3],[218,196],[219,3],[220,3],[221,3],[222,3],[223,98],[224,3],[225,98],[227,197],[228,198],[226,98],[229,3],[230,3],[242,199],[231,3],[232,3],[233,98],[234,3],[235,3],[236,3],[237,3],[238,3],[239,3],[240,3],[241,3],[46,200],[47,201],[48,3],[49,3],[60,202],[61,203],[58,204],[59,205],[62,206],[120,207],[122,208],[124,209],[123,210],[125,3],[129,211],[127,212],[128,3],[121,3],[131,213],[51,214],[133,215],[134,216],[137,217],[136,218],[132,219],[135,220],[130,221],[138,222],[139,223],[143,224],[144,225],[142,226],[119,227],[54,228],[145,229],[146,230],[147,230],[50,3],[149,231],[148,230],[163,232],[52,3],[57,233],[150,234],[151,3],[55,3],[141,235],[152,236],[140,237],[153,238],[154,239],[155,207],[156,207],[157,240],[126,3],[159,241],[160,242],[118,3],[161,243],[158,3],[53,244],[56,221],[162,200],[426,98],[427,3],[429,245],[428,3],[486,3],[487,246],[423,3],[424,247],[489,248],[488,249],[436,250],[435,249],[402,98],[404,251],[403,98],[320,252],[324,3],[322,253],[325,3],[323,254],[326,255],[321,98],[319,3],[200,3],[201,168],[204,256],[206,257],[202,258],[203,57],[205,3],[430,3],[433,259],[431,3],[432,3],[65,260],[66,260],[68,261],[69,262],[70,263],[71,264],[72,265],[73,266],[74,267],[75,268],[76,269],[77,270],[78,270],[79,271],[80,272],[81,273],[82,274],[83,275],[67,3],[116,3],[84,276],[85,277],[86,278],[87,279],[88,280],[89,281],[90,282],[91,283],[92,284],[93,285],[94,286],[95,287],[96,288],[97,289],[98,290],[100,291],[99,292],[101,293],[102,294],[103,3],[104,295],[105,296],[106,297],[107,298],[64,299],[63,3],[117,300],[108,301],[109,302],[110,303],[111,304],[112,305],[113,306],[114,307],[115,308],[413,3],[401,3],[8,3],[9,3],[11,3],[10,3],[2,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[3,3],[4,3],[23,3],[20,3],[21,3],[22,3],[24,3],[25,3],[26,3],[5,3],[27,3],[28,3],[29,3],[30,3],[6,3],[34,3],[31,3],[32,3],[33,3],[35,3],[7,3],[36,3],[41,3],[42,3],[37,3],[38,3],[39,3],[40,3],[1,3],[43,3],[438,332],[405,333],[415,334],[471,335],[412,334],[425,336],[444,337],[473,338],[472,339],[407,340],[406,341],[414,342],[470,343],[469,344],[490,345],[493,345],[434,346],[437,347],[445,348]],"semanticDiagnosticsPerFile":[494,496,497,499,500,501,505,514,518,498,519,520,521,522,506,517,525,527,526,503,528,529,530,545,546,507,502,547,549,550,548,551,552,553,554,555,556,557,558,559,560,581,566,572,570,569,571,580,575,577,578,579,573,574,576,568,567,562,561,564,565,563,582,523,583,584,585,587,588,589,590,591,593,516,515,495,594,504,592,619,620,595,598,617,618,608,607,605,600,613,611,615,599,612,616,601,602,614,596,603,604,606,610,621,609,597,634,633,628,630,629,622,623,625,627,631,632,624,626,635,524,637,636,638,639,640,641,544,643,642,644,645,646,647,649,648,509,586,533,542,531,532,543,538,539,537,541,535,534,540,536,511,510,508,512,513,247,198,245,339,246,338,296,341,340,244,243,400,337,336,345,397,398,399,297,474,476,475,492,491,369,361,364,374,365,366,367,368,370,380,379,363,362,378,375,376,377,371,373,372,197,44,45,180,179,190,178,189,191,192,196,193,194,195,351,350,352,357,358,356,395,396,359,360,382,386,384,381,383,385,354,353,355,298,447,446,448,299,301,300,439,443,440,442,441,248,249,250,251,252,253,254,262,263,264,265,266,267,268,269,256,257,255,260,258,259,285,270,271,272,273,274,275,276,277,278,279,280,281,282,283,261,284,477,478,417,418,306,302,303,305,304,316,307,309,308,311,310,314,315,312,313,463,467,450,451,449,452,454,453,455,464,466,465,456,457,458,460,459,462,461,393,388,390,394,391,387,389,392,479,482,480,481,317,318,419,421,420,342,344,343,422,485,483,484,468,210,212,211,213,214,215,208,209,329,330,331,335,332,333,334,328,327,408,411,409,410,176,164,174,175,177,349,346,347,348,289,290,291,292,288,286,287,295,293,294,165,166,167,168,173,169,170,171,172,187,182,183,184,188,185,186,181,199,207,216,217,218,219,220,221,222,223,224,225,227,228,226,229,230,242,231,232,233,234,235,236,237,238,239,240,241,46,47,48,49,60,61,58,59,62,120,122,124,123,125,129,127,128,121,131,51,133,134,137,136,132,135,130,138,139,143,144,142,119,54,145,146,147,50,149,148,163,52,57,150,151,55,141,152,140,153,154,155,156,157,126,159,160,118,161,158,53,56,162,426,427,429,428,486,487,423,424,489,488,436,435,402,404,403,320,324,322,325,323,326,321,319,200,201,204,206,202,203,205,430,433,431,432,65,66,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,67,116,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,99,101,102,103,104,105,106,107,64,63,117,108,109,110,111,112,113,114,115,413,401,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,416,438,405,415,471,412,425,444,473,472,407,406,414,470,469,490,493,434,437,445]},"version":"4.9.5"} \ No newline at end of file diff --git a/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.types.tsbuildinfo b/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.types.tsbuildinfo deleted file mode 100644 index 0d59cba3412..00000000000 --- a/src.gen/@amzn/amazon-q-developer-streaming-client/tsconfig.types.tsbuildinfo +++ /dev/null @@ -1 +0,0 @@ -{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.es2021.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.es2021.promise.d.ts","./node_modules/typescript/lib/lib.es2021.string.d.ts","./node_modules/typescript/lib/lib.es2021.weakref.d.ts","./node_modules/typescript/lib/lib.es2021.intl.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/tslib/tslib.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/client/emitwarningifunsupportedversion.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts","./node_modules/@smithy/types/dist-types/abort-handler.d.ts","./node_modules/@smithy/types/dist-types/abort.d.ts","./node_modules/@smithy/types/dist-types/auth/auth.d.ts","./node_modules/@smithy/types/dist-types/auth/httpapikeyauth.d.ts","./node_modules/@smithy/types/dist-types/identity/identity.d.ts","./node_modules/@smithy/types/dist-types/endpoint.d.ts","./node_modules/@smithy/types/dist-types/logger.d.ts","./node_modules/@smithy/types/dist-types/uri.d.ts","./node_modules/@smithy/types/dist-types/http.d.ts","./node_modules/@smithy/types/dist-types/response.d.ts","./node_modules/@smithy/types/dist-types/util.d.ts","./node_modules/@smithy/types/dist-types/middleware.d.ts","./node_modules/@smithy/types/dist-types/auth/httpsigner.d.ts","./node_modules/@smithy/types/dist-types/auth/identityproviderconfig.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthscheme.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/types/dist-types/auth/index.d.ts","./node_modules/@types/node/ts5.6/globals.typedarray.d.ts","./node_modules/@types/node/ts5.6/buffer.buffer.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/dom-events.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/ts5.6/index.d.ts","./node_modules/@smithy/types/dist-types/transform/exact.d.ts","./node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts","./node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/crypto.d.ts","./node_modules/@smithy/types/dist-types/checksum.d.ts","./node_modules/@smithy/types/dist-types/command.d.ts","./node_modules/@smithy/types/dist-types/client.d.ts","./node_modules/@smithy/types/dist-types/connection/config.d.ts","./node_modules/@smithy/types/dist-types/transfer.d.ts","./node_modules/@smithy/types/dist-types/connection/manager.d.ts","./node_modules/@smithy/types/dist-types/connection/pool.d.ts","./node_modules/@smithy/types/dist-types/connection/index.d.ts","./node_modules/@smithy/types/dist-types/eventstream.d.ts","./node_modules/@smithy/types/dist-types/encode.d.ts","./node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","./node_modules/@smithy/types/dist-types/endpoints/endpointruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/errorruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/treeruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/rulesetobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/index.d.ts","./node_modules/@smithy/types/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultclientconfiguration.d.ts","./node_modules/@smithy/types/dist-types/shapes.d.ts","./node_modules/@smithy/types/dist-types/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/types/dist-types/extensions/index.d.ts","./node_modules/@smithy/types/dist-types/http/httphandlerinitialization.d.ts","./node_modules/@smithy/types/dist-types/identity/apikeyidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/index.d.ts","./node_modules/@smithy/types/dist-types/pagination.d.ts","./node_modules/@smithy/types/dist-types/profile.d.ts","./node_modules/@smithy/types/dist-types/serde.d.ts","./node_modules/@smithy/types/dist-types/signature.d.ts","./node_modules/@smithy/types/dist-types/stream.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","./node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","./node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","./node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","./node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts","./node_modules/@smithy/types/dist-types/waiter.d.ts","./node_modules/@smithy/types/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromenv.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/gethomedir.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getprofilename.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfilepath.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfromfile.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadsharedconfigfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadssosessiondata.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/parseknownfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromsharedconfigfiles.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromstatic.d.ts","./node_modules/@smithy/node-config-provider/dist-types/configloader.d.ts","./node_modules/@smithy/node-config-provider/dist-types/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4aconfig.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4signer.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/awssdksigv4asigner.d.ts","./node_modules/@smithy/signature-v4/dist-types/signaturev4.d.ts","./node_modules/@smithy/signature-v4/dist-types/getcanonicalheaders.d.ts","./node_modules/@smithy/signature-v4/dist-types/getcanonicalquery.d.ts","./node_modules/@smithy/signature-v4/dist-types/getpayloadhash.d.ts","./node_modules/@smithy/signature-v4/dist-types/moveheaderstoquery.d.ts","./node_modules/@smithy/signature-v4/dist-types/preparerequest.d.ts","./node_modules/@smithy/signature-v4/dist-types/credentialderivation.d.ts","./node_modules/@smithy/signature-v4/dist-types/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/resolveawssdksigv4config.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/aws_sdk/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/httpauthschemes/index.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/coercing-serializers.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsexpectunion.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parsejsonbody.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/parsexmlbody.d.ts","./node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts","./node_modules/@aws-sdk/core/dist-types/index.d.ts","./node_modules/@smithy/util-middleware/dist-types/getsmithycontext.d.ts","./node_modules/@smithy/util-middleware/dist-types/normalizeprovider.d.ts","./node_modules/@smithy/util-middleware/dist-types/index.d.ts","./src/auth/httpauthschemeprovider.ts","./node_modules/@smithy/smithy-client/dist-types/client.d.ts","./node_modules/@smithy/util-stream/dist-types/blob/uint8arrayblobadapter.d.ts","./node_modules/@smithy/util-stream/dist-types/getawschunkedencodingstream.d.ts","./node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts","./node_modules/@smithy/util-stream/dist-types/splitstream.d.ts","./node_modules/@smithy/util-stream/dist-types/headstream.d.ts","./node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts","./node_modules/@smithy/util-stream/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/resolveendpointconfig.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getendpointfrominstructions.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toendpointv1.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/endpointmiddleware.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/getendpointplugin.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/command.d.ts","./node_modules/@smithy/smithy-client/dist-types/constants.d.ts","./node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts","./node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts","./node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts","./node_modules/@smithy/smithy-client/dist-types/emitwarningifunsupportedversion.d.ts","./node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts","./node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts","./node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts","./node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/nooplogger.d.ts","./node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts","./node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/quote-header.d.ts","./node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts","./node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-every.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-header.d.ts","./node_modules/@smithy/smithy-client/dist-types/index.d.ts","./src/models/qdeveloperstreamingserviceexception.ts","./src/models/models_0.ts","./node_modules/@smithy/middleware-serde/dist-types/deserializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serdeplugin.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/index.d.ts","./src/commands/sendmessagecommand.ts","./node_modules/@smithy/protocol-http/dist-types/httprequest.d.ts","./node_modules/@smithy/protocol-http/dist-types/httpresponse.d.ts","./node_modules/@smithy/protocol-http/dist-types/httphandler.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/httpextensionconfiguration.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/field.d.ts","./node_modules/@smithy/protocol-http/dist-types/fields.d.ts","./node_modules/@smithy/protocol-http/dist-types/isvalidhostname.d.ts","./node_modules/@smithy/protocol-http/dist-types/types.d.ts","./node_modules/@smithy/protocol-http/dist-types/index.d.ts","./node_modules/@types/uuid/index.d.ts","./src/protocols/aws_json1_0.ts","./src/commands/generatecodefromcommandscommand.ts","./package.json","./node_modules/@aws-sdk/types/dist-types/abort.d.ts","./node_modules/@aws-sdk/types/dist-types/auth.d.ts","./node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","./node_modules/@aws-sdk/types/dist-types/checksum.d.ts","./node_modules/@aws-sdk/types/dist-types/client.d.ts","./node_modules/@aws-sdk/types/dist-types/command.d.ts","./node_modules/@aws-sdk/types/dist-types/connection.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/identity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/anonymousidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/loginidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","./node_modules/@aws-sdk/types/dist-types/util.d.ts","./node_modules/@aws-sdk/types/dist-types/credentials.d.ts","./node_modules/@aws-sdk/types/dist-types/crypto.d.ts","./node_modules/@aws-sdk/types/dist-types/dns.d.ts","./node_modules/@aws-sdk/types/dist-types/encode.d.ts","./node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","./node_modules/@aws-sdk/types/dist-types/eventstream.d.ts","./node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/types/dist-types/http.d.ts","./node_modules/@aws-sdk/types/dist-types/logger.d.ts","./node_modules/@aws-sdk/types/dist-types/middleware.d.ts","./node_modules/@aws-sdk/types/dist-types/pagination.d.ts","./node_modules/@aws-sdk/types/dist-types/profile.d.ts","./node_modules/@aws-sdk/types/dist-types/request.d.ts","./node_modules/@aws-sdk/types/dist-types/response.d.ts","./node_modules/@aws-sdk/types/dist-types/retry.d.ts","./node_modules/@aws-sdk/types/dist-types/serde.d.ts","./node_modules/@aws-sdk/types/dist-types/shapes.d.ts","./node_modules/@aws-sdk/types/dist-types/signature.d.ts","./node_modules/@aws-sdk/types/dist-types/stream.d.ts","./node_modules/@aws-sdk/types/dist-types/token.d.ts","./node_modules/@aws-sdk/types/dist-types/transfer.d.ts","./node_modules/@aws-sdk/types/dist-types/uri.d.ts","./node_modules/@aws-sdk/types/dist-types/waiter.d.ts","./node_modules/@aws-sdk/types/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/fromhttp/fromhttptypes.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/fromhttp/fromhttp.d.ts","./node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromwebtoken.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromtokenfile.d.ts","./node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveassumerolecredentials.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/fromini.d.ts","./node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-process/dist-types/fromprocess.d.ts","./node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusedualstackendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusefipsendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolveendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolvecustomendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvarianttag.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvariant.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/partitionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/regionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/getregioninfo.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/index.d.ts","./node_modules/@smithy/util-retry/dist-types/types.d.ts","./node_modules/@smithy/util-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/configuredretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/defaultratelimiter.d.ts","./node_modules/@smithy/util-retry/dist-types/config.d.ts","./node_modules/@smithy/util-retry/dist-types/constants.d.ts","./node_modules/@smithy/util-retry/dist-types/index.d.ts","./node_modules/@smithy/middleware-retry/dist-types/types.d.ts","./node_modules/@smithy/middleware-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts","./node_modules/@smithy/middleware-retry/dist-types/delaydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/omitretryheadersmiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrymiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/ssoserviceexception.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/getrolecredentialscommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/listaccountrolescommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/listaccountscommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/logoutcommand.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointparameters.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/auth/httpauthextensionconfiguration.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/extensionconfiguration.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/ssoclient.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/sso.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/interfaces.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/listaccountrolespaginator.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/listaccountspaginator.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts","./node_modules/@aws-sdk/client-sso/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/loadsso.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/fromsso.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/isssoprofile.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/validatessoprofile.d.ts","./node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/remoteprovider/remoteproviderinit.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/fromcontainermetadata.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/frominstancemetadata.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/remoteprovider/httprequest.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/utils/getinstancemetadataendpoint.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/config/endpoint.d.ts","./node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts","./node_modules/@aws-sdk/credential-provider-node/dist-types/defaultprovider.d.ts","./node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts","./node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts","./node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts","./node_modules/@smithy/hash-node/dist-types/index.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts","./node_modules/@smithy/node-http-handler/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/index.d.ts","./src/endpoints.ts","./node_modules/@smithy/url-parser/dist-types/index.d.ts","./node_modules/@smithy/util-base64/dist-types/frombase64.d.ts","./node_modules/@smithy/util-base64/dist-types/tobase64.d.ts","./node_modules/@smithy/util-base64/dist-types/index.d.ts","./node_modules/@smithy/util-utf8/dist-types/fromutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/touint8array.d.ts","./node_modules/@smithy/util-utf8/dist-types/toutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/index.d.ts","./src/runtimeconfig.shared.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts","./src/runtimeconfig.ts","./src/auth/httpauthextensionconfiguration.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts","./src/extensionconfiguration.ts","./src/runtimeextensions.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/loggermiddleware.d.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpauthschememiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/gethttpauthschemeendpointrulesetplugin.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/gethttpauthschemeplugin.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/httpsigningmiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/gethttpsigningmiddleware.d.ts","./node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/defaultidentityproviderconfig.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/httpapikeyauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/httpbearerauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/noauth.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/httpauthschemes/index.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeidentityprovider.d.ts","./node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts","./node_modules/@smithy/core/dist-types/getsmithycontext.d.ts","./node_modules/@smithy/core/dist-types/normalizeprovider.d.ts","./node_modules/@smithy/core/dist-types/protocols/requestbuilder.d.ts","./node_modules/@smithy/core/dist-types/pagination/createpaginator.d.ts","./node_modules/@smithy/core/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/eventstreamserdeconfig.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts","./node_modules/@smithy/middleware-content-length/dist-types/index.d.ts","./src/qdeveloperstreamingclient.ts","./src/qdeveloperstreaming.ts","./src/commands/index.ts","./src/models/index.ts","./src/index.ts","./node_modules/@aws-crypto/sha256-browser/build/main/crossplatformsha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/main/webcryptosha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/invalidfunction.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/invalidprovider.d.ts","./node_modules/@smithy/invalid-dependency/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts","./src/runtimeconfig.browser.ts","./node_modules/@aws-crypto/sha256-js/build/main/jssha256.d.ts","./node_modules/@aws-crypto/sha256-js/build/main/index.d.ts","./src/runtimeconfig.native.ts","../../../node_modules/@types/adm-zip/index.d.ts","../../../node_modules/@types/readdir-glob/index.d.ts","../../../node_modules/@types/archiver/index.d.ts","../../../node_modules/@types/async-lock/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/bytes/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/circular-dependency-plugin/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/cross-spawn/index.d.ts","../../../node_modules/@types/diff/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/glob/node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/parse5/dist/cjs/common/html.d.ts","../../../node_modules/parse5/dist/cjs/common/token.d.ts","../../../node_modules/parse5/dist/cjs/common/error-codes.d.ts","../../../node_modules/parse5/dist/cjs/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/dist/cjs/tokenizer/index.d.ts","../../../node_modules/parse5/dist/cjs/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/cjs/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/cjs/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/cjs/parser/index.d.ts","../../../node_modules/parse5/dist/cjs/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/cjs/serializer/index.d.ts","../../../node_modules/parse5/dist/cjs/common/foreign-content.d.ts","../../../node_modules/parse5/dist/cjs/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/linkify-it/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdurl/encode.d.ts","../../../node_modules/@types/mdurl/decode.d.ts","../../../node_modules/@types/mdurl/parse.d.ts","../../../node_modules/@types/mdurl/format.d.ts","../../../node_modules/@types/mdurl/index.d.ts","../../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../../node_modules/@types/markdown-it/lib/token.d.ts","../../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../../node_modules/@types/markdown-it/lib/index.d.ts","../../../node_modules/@types/markdown-it/index.d.ts","../../../node_modules/@types/mime-types/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/prismjs/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/proper-lockfile/index.d.ts","../../../node_modules/@types/readline-sync/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sinon/node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/stream-buffers/index.d.ts","../../../node_modules/@types/tcp-port-used/index.d.ts","../../../node_modules/@types/vscode/index.d.ts","../../../node_modules/@types/vscode-webview/index.d.ts","../../../node_modules/@types/webidl-conversions/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/whatwg-url/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/xml2js/lib/processors.d.ts","../../../node_modules/@types/xml2js/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","impliedFormat":1},{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true,"impliedFormat":1},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","impliedFormat":1},{"version":"02ec1ffcc0823cb9c9ba420c619d3af2c726e3a674b66a91941c07a3e7f65dba","impliedFormat":1},{"version":"38f6da5b6f318c33e18dd7c983cab3fe52f510c9a2573948fb13f012e01b1ba6","impliedFormat":1},{"version":"b40885a4e39fb67eb251fb009bf990f3571ccf7279dccad26c2261b4e5c8ebcd","impliedFormat":1},{"version":"2d0e63718a9ab15554cca1ef458a269ff938aea2ad379990a018a49e27aadf40","impliedFormat":1},{"version":"530e5c7e4f74267b7800f1702cf0c576282296a960acbdb2960389b2b1d0875b","impliedFormat":1},{"version":"1c483cc60a58a0d4c9a068bdaa8d95933263e6017fbea33c9f99790cf870f0a8","impliedFormat":1},{"version":"07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","impliedFormat":1},{"version":"5d3e656baf210f702e4006949a640730d6aef8d6afc3de264877e0ff76335f39","impliedFormat":1},{"version":"4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","impliedFormat":1},{"version":"c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","impliedFormat":1},{"version":"570efec02480a95fa35e7c6dc3c00c59309d221e0698cefbc9e27a3c13d69c96","impliedFormat":1},{"version":"396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","impliedFormat":1},{"version":"b7b881ced4ed4dee13d6e0ccdb2296f66663ba6b1419767271090b3ff3478bb9","impliedFormat":1},{"version":"06289b9873760aac77aed4035ea6c60b1e0879b8afe47a4530bc8522b9b804b1","impliedFormat":1},{"version":"63c36aa73242aa745fae813c40585111ead225394b0a0ba985c2683baa6b0ef9","impliedFormat":1},{"version":"3e7ffc7dd797e5d44d387d0892bc288480493e73dcab9832812907d1389e4a98","impliedFormat":1},{"version":"db011ec9589fd51995cbd0765673838e38e6485a6559163cc53dcf508b480909","impliedFormat":1},{"version":"e1a4253f0cca15c14516f52a2ad36c3520b140b5dfb3b3880a368cd75d45d6d9","impliedFormat":1},{"version":"159af954f2633a12fdee68605009e7e5b150dbeb6d70c46672fd41059c154d53","impliedFormat":1},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true,"impliedFormat":1},{"version":"894dae169f8193e3f07c3fec14149a60592d1f13720907ffdf7b0c05cfb62c38","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e0d35597ff6c5142082e60814fa39c8a2077a58d8a6a262e619afb5f855f6ba","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"228318442187dee1f3b18047e6281d12d59f7b492d6243db4eb720d53e3c03f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"f51b4042a3ac86f1f707500a9768f88d0b0c1fc3f3e45a73333283dea720cdc6","impliedFormat":1},{"version":"a29bc8aa8cc100d0c09370c03508f1245853efe017bb98699d4c690868371fc7","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f95830ca11e2c7e82235b73dc149e68a0632b41e671724d12adc83a6750746d","impliedFormat":1},{"version":"7aa011cda7cf0b9e87c85d128b2eeac9930bda215b0fee265d8bf2cec039fb5f","impliedFormat":1},{"version":"92ec1aeca4e94bdab04083daa6039f807c0fce8f09bc42e8b24bf49fa5cdbbff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"25bfb291668b70290dd646f6e99e681ded0481bc0610d241a229cda07d7af425","impliedFormat":1},{"version":"6c39d4dbdb372b364442854e42d8c473e2ec67badb226745af17ed5ac41ce6f5","impliedFormat":1},{"version":"7693b90b3075deaccafd5efb467bf9f2b747a3075be888652ef73e64396d8628","impliedFormat":1},{"version":"bd01a987f0fcf2344a405e542ee681e420651eaff1222a5a6e0c02fda52343bc","impliedFormat":1},{"version":"693e50962e90a3548f41bff2c22676e3964212a836022d82e49eca0b20320a38","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"300b0c12998391154d7b9115a85554e91632a3d3e1b66038e98f2b9cb3c1061d","impliedFormat":1},{"version":"8d680d5d1a77028ca1708118b8c941edd90a6329f9dc0315ffc3a06b4820e937","affectsGlobalScope":true,"impliedFormat":1},{"version":"8bc550ee45988b123605e2cbba4dc8d3b4153c3d06f59074c7cda5bc3b2f2fd8","impliedFormat":1},{"version":"5293d799856f47259146ccf0be9a1cc0a4a5343696182d7206ed25ea67d67920","impliedFormat":1},{"version":"d7cdb379f1a8febb8ba181b2bba4c89b7f9189c68ce00292253d9f827eb0b2d3","impliedFormat":1},{"version":"fab49059d6c2026bdb2e53e4e5cde1a39da44e61daff1867c8b3b10b507bfe17","impliedFormat":1},{"version":"5a551275f85bcc4003e543a1951a5b2f682cfba9b2922f65ae0df40ab71724a5","impliedFormat":1},{"version":"22d1a3163b9a961dbe78b0aedbd7bcbc071ce1f31efb76eb013b0aee230fef0e","impliedFormat":1},{"version":"c31695696ade4514cfcbb22799997b690d3dca7fb72beab68fb2e73b6ef450dd","affectsGlobalScope":true,"impliedFormat":1},{"version":"d99ad56d57f2c96daaf4475a8b64344b24dedafdb8f3c32d43552bcc72279a75","impliedFormat":1},{"version":"a101ef17aece908c1029a1bd3f97132794dcff21b4ca0b997d9a633f962c46aa","impliedFormat":1},{"version":"511575e18249b64b90d8f884fdb8a383c767d1a7efccd9d66a4e125a4dc5c462","impliedFormat":1},{"version":"6d8001f2c3b86c4f1de1d45ecb3f87f287ed7313d6999f8c8318cec4f50e6323","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d09f4b48899d342b5d6cd846f95f969a401933b0dcd375a8a7e45832328bb86","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c3d1222e6e3d8c35a4293d7a54d4142ebb8f7f70ec4111b8136df07fdc66169","impliedFormat":1},{"version":"70173c475c6e76ccebc37412b02b2e26f62bf45fc1534c3ebe6d7fa60fb88819","impliedFormat":1},{"version":"1c05d80325e7cb8ad9fe6f4f8cd1798ec87607fe523865b27cab9fc5b816f067","impliedFormat":1},{"version":"863bc4e31de6c75423bb02da16190d582b0a69b8964b61d45920e5b2cb3832dd","impliedFormat":1},{"version":"3c92f365d57fd49656e4907bf1d950d4a4060dde7db35effe2f6348e0e800b86","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"6e191fea1db6e9e4fa828259cf489e820ec9170effff57fb081a2f3295db4722","impliedFormat":1},{"version":"aed943465fbce1efe49ee16b5ea409050f15cd8eaf116f6fadb64ef0772e7d95","impliedFormat":1},{"version":"0435070b07e646b406b1c9b8b1b1878ea6917c32abc47e6435ec26d71212d513","impliedFormat":1},{"version":"f71188f97c9f7d309798ec02a56dd3bf50a4e4d079b3480f275ac13719953898","impliedFormat":1},{"version":"c4454589a0aa92c10d684c8c9584574bc404d1db556d72196cd31f8f7651af1a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b17790866e140a630fa8891d7105c728a1bd60f4e35822e4b345af166a4a728c","impliedFormat":1},{"version":"c50c75f4360f6fc06c4be29dafe28210e15c50cd6b04ad19c4808fa504efb51a","impliedFormat":1},{"version":"d4a1f5f7ee89b2afffd3c74282f8ee65b24266c92b7d40398c12a27054ed745c","impliedFormat":1},{"version":"900b5a9802192bc77eba35a5b87ce770df7b867a6d61772c554058c9ed635386","impliedFormat":1},{"version":"65278b3e3cb8e3f0b7bc712e86858ba7695501e76a84eedb730cc15b85d92b56","affectsGlobalScope":true,"impliedFormat":1},{"version":"f43fcf89d75f13d0908a77cd3fa32b9fd28c915deded9b2778b08f2e242d07a7","affectsGlobalScope":true,"impliedFormat":1},{"version":"9b6fc34aca8b0411b96ba35b2315017236a47709a1a98d5e16aed3b84037b9e8","impliedFormat":1},{"version":"aebf613f7831125038942eba891005fd25fa5cadcc3e3d13af4768dc7549161f","impliedFormat":1},{"version":"0faee6b555890a1cb106e2adc5d3ffd89545b1da894d474e9d436596d654998f","impliedFormat":1},{"version":"247e5c34784d185bc81442e8b1a371a36c4a5307a766a3725454c0a191b5cfad","impliedFormat":1},{"version":"1c382a6446d63340be549a616ff5142a91653cea45d6d137e25b929130a4f29a","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"20eb6689443f55ebd33372566b0afad619f1ba48fec4ffb4ab0c119e4fc52eea","impliedFormat":1},{"version":"a1b36a1f91a54daf2e89e12b834fa41fb7338bc044d1f08a80817efc93c99ee5","impliedFormat":1},{"version":"8bb4a5b632dd5a868f3271750895cb61b0e20cff82032d87e89288faee8dd6e2","impliedFormat":1},{"version":"0c1aabfd9fb1818afb2e798f91f669edafce59cd7e3423d25b1cfccfaaf2c403","impliedFormat":1},{"version":"017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","impliedFormat":1},{"version":"ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","impliedFormat":1},{"version":"9ae7df67c30dc5f52b7b21e8bb36fd9ff05e7ed10e514e2d9ed879b4547c4cd3","impliedFormat":1},{"version":"fd6a17c2d015cb2963d62db7566a43818424e8f32eb821fa9b8b142d4ab12664","impliedFormat":1},{"version":"4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","impliedFormat":1},{"version":"e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","impliedFormat":1},{"version":"d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","impliedFormat":1},{"version":"d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","impliedFormat":1},{"version":"5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","impliedFormat":1},{"version":"27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","impliedFormat":1},{"version":"eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","impliedFormat":1},{"version":"52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","impliedFormat":1},{"version":"5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","impliedFormat":1},{"version":"fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","impliedFormat":1},{"version":"d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","impliedFormat":1},{"version":"fc9bdd9b3d8fb59c913cb3b8dea0d79b38dfe9331ef07e1c6dc6bf363f061ad6","impliedFormat":1},{"version":"e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","impliedFormat":1},{"version":"0c3c4ce6a1884610c99306719f59174d81808c69393c30119f9c2aef0449a2cb","impliedFormat":1},{"version":"219a25474e58a8161b242776856ec5f6960839b63e74809445e51cadbfc18096","impliedFormat":1},{"version":"5a0d1534e9493ae44b08b3055172da38370e2afd2bc3d4bea11f7be78344036f","impliedFormat":1},{"version":"6309a45fc3c03d3c4d56228e995d51974f53009a842374695b34f3607877e5a3","impliedFormat":1},{"version":"bef94eba81ae2c09059c0d9abdb1ae1b7090314f70550f3c8cd5d7ead4a4f212","impliedFormat":1},{"version":"48b787ad458be9b524fa5fdfef34f68798074132d4b8cfe6a6fe9c2bf334c532","impliedFormat":1},{"version":"37280465f8f9b2ea21d490979952b18b7f4d1f0d8fab2d627618fb2cfa1828e3","impliedFormat":1},{"version":"c12f3ff5e221c1d3e4eaf47a372b538d8e79bd9a15266c2b049a597da0b86924","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f3f85dc43cb93c5a797f1ff0fa948d0e17843a443ae11a20cc032ccdf1b9997","impliedFormat":1},{"version":"581843e855d92557cbe9dfe242de4e53badae5e9096ca593b50788f7c89c37f2","impliedFormat":1},{"version":"869010bc679df668137cb3b78a3cb8196e97acf285208a57f6156ceac894a2f7","impliedFormat":1},{"version":"bcae62618c23047e36d373f0feac5b13f09689e4cd08e788af13271dbe73a139","impliedFormat":1},{"version":"29a99d2e57b3e08a997cbc2397bdb251441a545306a74b95ffedc5f03d9bc6b7","impliedFormat":1},{"version":"5ae003688265a1547bbcb344bf0e26cb994149ac2c032756718e9039302dfac8","impliedFormat":1},{"version":"09e811cc1088d9ea3a7ddd7290f6a13767f56c85daf8c3374a06a45a08d55647","impliedFormat":1},{"version":"a86053981218db1594bd4839bde0fb998e342ecf04967622495434a8f52a4041","impliedFormat":1},{"version":"5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","impliedFormat":1},{"version":"7b270dc53f35dd0b44bfa619ad4d351fffd512e14053c3688323ed007eda3f6d","impliedFormat":1},{"version":"6d4e928f232ade7221cffc6e4332ec935baa176415c9bf5d12111bb883a247d2","impliedFormat":1},{"version":"e86ad029224d4f2af3e188be8b5e9badf8c7083247572069bac7bd2193131fc7","impliedFormat":1},{"version":"057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","impliedFormat":1},{"version":"d94034601782f828aa556791279c86c37f09f7034a2ab873eefe136f77a6046b","impliedFormat":1},{"version":"105ae3dd61531488194f412386ba8c2b786f1389ac3415098cc47c712800da29","impliedFormat":1},{"version":"45851fbb6595233ecf6be213f74f00690c752782387796c66ea186750f831d06","impliedFormat":1},{"version":"4ee905052d0879e667444234d1462540107789cb1c80bd26e328574e4f3e4724","impliedFormat":1},{"version":"151659e152d71986b8943b9943cd7fbe27a65874655081602de7ea24a0f66e9b","impliedFormat":1},{"version":"3448e2fa1ae3a52d50e1e82e50b6ae5b8bd911004a8824b0c6b26c8cdcd15fec","impliedFormat":1},{"version":"c0c0b22cefd1896b92d805556fcabda18720d24981b8cb74e08ffea1f73f96c2","impliedFormat":1},{"version":"b97e6411a3ee83e6f77760f0400d117313a980d05ec89f1e1a7502229e36d060","impliedFormat":1},{"version":"270418f8a6639be745d14bfd085e62685f24eaa6d6482aa9803bae8b8b93919a","impliedFormat":1},{"version":"4cb33d05ff168c1ca836d6d438f93040972af43fc09774876c4add2ad96d125f","impliedFormat":1},{"version":"902d2b66388607197ec48798c94a6ffc657fe1cfbee15e49b6b3052de0e5b8fa","impliedFormat":1},{"version":"38104b9a37d0b9dc54be36ae43b1a32f9cfae34742743bfd7104cf1f39661225","impliedFormat":1},{"version":"47ff32ca9ab8474e89615b4bbe5f2264c2940fc12b86c4dc0a99659479517a6b","impliedFormat":1},{"version":"f892f85b4838f6a2ff1438d240dcf23a872d090794967c7f817a82ea8da1ad8e","impliedFormat":1},{"version":"cb498c53a9d35ac1cf9a3515f3835d48b4626a612cf7540c5bfb99542c9ab1a5","impliedFormat":1},{"version":"b86e64c48044bb73c6de7aa2cdf9295b2c104221e6a68b408225b283d1bcfda2","impliedFormat":1},{"version":"16173f5b3e68a373e7dfe6d00948549facc9947c9dbde813f1efe3a0f236ff6a","impliedFormat":1},{"version":"f457fc1b7583e1215393db13b95a186593660aad29706515ab7479869bc585e0","impliedFormat":1},{"version":"a11288edc8161f664148ea7d56101517e380335f5fa1a94408db86efce025bba","impliedFormat":1},{"version":"0e2a6b2eeadafbc7a27909527af46705d47e93c652d656f09cc3ef460774291b","impliedFormat":1},{"version":"d6d561bf4309a197e4b241fb0eacebf14c400661c4352676cd3c88c17e5ab8a2","impliedFormat":1},{"version":"ed012a19811c4010cb7d8920378f6dd50f22e1cf2842ecb44a157030667b165e","impliedFormat":1},{"version":"4085ac780790cc5787e375bd6c7dc149610665514e1d3d8fb65aec29efb691c9","impliedFormat":1},{"version":"7634eca84d60522b68ac679813fd9247a4260f7412890e924c7779758f8d6391","impliedFormat":1},{"version":"b4ff74f0589487410168be50e3231caf687c5e1302266709742382e8d004fe1e","impliedFormat":1},{"version":"406f227eebfe8be216d7a4b215ed09198b0c2f6599f2273b69ee5b75824c5435","impliedFormat":1},{"version":"e7cd1d6f8afb317dca8c5b6a60d5cd55aacf8d9ed8ae39f22e3104ed0c479552","impliedFormat":1},{"version":"75c9a36ada92da43627b5cf1142a6fe20f50ad00abacb90204b74b19775521c2","impliedFormat":1},{"version":"8a90f97fdb10d83c6842a699c3df474246755f4fbf3ee2d35e69d6599fe9092c","impliedFormat":1},{"version":"88aacf6e2493633490812c70595b517c8e4299f054d28a51687b10f0968276c3","impliedFormat":1},{"version":"f6cae2c0acda884c4b9dec4063d062252cf0625a04ebf711a84d7de576427c3e","impliedFormat":1},{"version":"946739ab9acb2fccd0b2e5a0d1ac4dfe69b9279f33a26e7f0a7a7ab24ee343fc","impliedFormat":1},{"version":"d037b771e89ef6dd81c71de92cc644d68b1b5d1ce25dbce9c2cfe407dd0b5796","impliedFormat":1},{"version":"25091d25f74760301f1e094456e2e6af52ceb6ef1ece48910463528e499992d8","impliedFormat":1},{"version":"853d02f4f46ca9700fefd0d45062f5b82c9335ba2224ca4d7bd34d6ae4fc4a7f","impliedFormat":1},{"version":"ab679e25dcb5d085ca42c33ffc8e2fc48411f81ad3108a3aa81eca79c104ef95","impliedFormat":1},{"version":"b901209745b3cef4b803e42731c40f5c2c2c7101bbd5f481c0fd1c43f9f440f3","impliedFormat":1},{"version":"cf6dc8f18bc5ee063dc1a37bccd3031dc0769f11622399018c375aacfcbda7c9","impliedFormat":1},{"version":"8ca2d01f5f3d4d4067aadea230570afa4c91e24e485fbe2e9d53ead3b33f80d0","impliedFormat":1},{"version":"e35526a0977b9cd80f799aef3314cb2bfe66aeb40879c888f7a993bd3437fc42","impliedFormat":1},{"version":"81d92e5c4d618ba0660121ed30c603e8111ad605e7562948f7430d87038daee0","impliedFormat":1},{"version":"36990d934030ce1060f203c4b45ee7a811aa11aaa4d075bb81c2748da8329607","impliedFormat":1},{"version":"0ae845a8508fbfe0344eb505ddb4a4e5a8759f5ea4608bfc5f3f1b9ea51d76b4","signature":"9230a7b03ae3cce93e94a2cc844da1e5414d2be7505ecc82402094a132cfbbda","impliedFormat":1},{"version":"27350a2872f30b97e947f52ccf15654239eda7c9ff35135a1aa82cc37642fdeb","impliedFormat":1},{"version":"ed3e176bc769725ebc1d93f1d6890fc3d977b9155ae5d03be96ec2d49b303370","impliedFormat":1},{"version":"7933769d84f5ae16546aef06537ca578f1c8d7cca0708452a00613050ac1f265","impliedFormat":1},{"version":"d405963c5f69955e95c30ef121c7a3309f214f21ef09dceb5d7ac69557cbe0fa","impliedFormat":1},{"version":"29c7276f64f0de86eb981ddd4e5a8e7f832fc8d4e712c7e8e1beab6af8cc4147","impliedFormat":1},{"version":"6f11170f0056f1681101d9a1045af3c0d2ea489f14d1a0d4c0b2cb7860cfb8f7","impliedFormat":1},{"version":"fdd84224998f5f4d97017b829548f1fac4ac803025e16c27d4fc7f3426c6261e","impliedFormat":1},{"version":"1591996e71f1aab2e8726d7d04d59a3e8f5162578bee747e883932cfc0b57b2a","impliedFormat":1},{"version":"f8ce447bbda4f75da74cecd866cc1ff9bdde62189ac9d8dc14a16c48b3d702fa","impliedFormat":1},{"version":"da3f7f511c344fb56275cd954156a4d736c9f414f9b84bb0ee229ef583e38074","impliedFormat":1},{"version":"c7d30b164562b7ce99fcb53ab78f937cc845e003f6089d648351331921379994","impliedFormat":1},{"version":"fe2d1251f167d801a27f0dfb4e2c14f4f08bf2214d9784a1b8c310fdfdcdaaea","impliedFormat":1},{"version":"2a1182578228dc1faad14627859042d59ea5ab7e3ac69cb2a3453329aaaa3b83","impliedFormat":1},{"version":"dfa99386b9a1c1803eb20df3f6d3adc9e44effc84fa7c2ab6537ed1cb5cc8cfb","impliedFormat":1},{"version":"79b0d5635af72fb87a2a4b62334b0ab996ff7a1a14cfdb895702e74051917718","impliedFormat":1},{"version":"5f00b052713bfe8e9405df03a1bbe406006b30ec6b0c2ce57d207e70b48cf4e9","impliedFormat":1},{"version":"7abcae770f21794b5ffbc3186483c3dbcf8b0c8e37d3ef3ed6277ece5c5dd4be","impliedFormat":1},{"version":"3e642f39da9ad0a4cd16ccbd7f363b6b5ad5fa16a5c6d44753f98fc1e3be9d96","impliedFormat":1},{"version":"7f5a6eac3d3d334e2f2eba41f659e9618c06361958762869055e22219f341554","impliedFormat":1},{"version":"6f996f44113b76a9960d3fad280f4f671115c5e971356d1dbb4d1b000af8b3b3","impliedFormat":1},{"version":"67f2cd6e208e68fdfa366967d1949575df6ccf90c104fc9747b3f1bdb69ad55a","impliedFormat":1},{"version":"f99ab9dffe6281c9b6df9ae9d8584d18eabf2107572bbd8fa5c83c8afe531af8","impliedFormat":1},{"version":"4fc9939c86a7d80ab6a361264e5666336d37e080a00d831d9358ad83575267da","impliedFormat":1},{"version":"f4ba385eedea4d7be1feeeac05aaa05d6741d931251a85ab48e0610271d001ce","impliedFormat":1},{"version":"f5405fb679a467cb979f8744940b22b7bc3a0bcbe648c3910d98de3188d42a78","impliedFormat":1},{"version":"68969a0efd9030866f60c027aedbd600f66ea09e1c9290853cc24c2dcc92000f","impliedFormat":1},{"version":"fc79932b9aa710f025b89bf8d8329d99080286e5e079a7d5a529236e9f5dd69e","impliedFormat":1},{"version":"6646d9075e3e0eedb02c9d03bffef54c8bbeb601d27eed46f143aba435bac37d","impliedFormat":1},{"version":"0dec72b4c5c4bb149750fef4fc26bdae8f410de941ee766c953f5ac77381d690","impliedFormat":1},{"version":"8f2644578a3273f43fd700803b89b842d2cd09c1fba2421db45737357e50f5b1","impliedFormat":1},{"version":"639f94fe145a72ce520d3d7b9b3b6c9049624d90cbf85cff46fb47fb28d1d8fe","impliedFormat":1},{"version":"8327a51d574987a2b0f61ea40df4adddf959f67bc48c303d4b33d47ba3be114a","impliedFormat":1},{"version":"00e1da5fce4ae9975f7b3ca994dcb188cf4c21aee48643e1d6d4b44e72df21ee","impliedFormat":1},{"version":"991fd5ebf9f30ffa17cae6faeae6a838d3d91bdcdd419bce358dc99b8e5b0ad0","impliedFormat":1},{"version":"4d250e905299144850c6f8e74dad1ee892d847643bacf637e89adcce013f0700","impliedFormat":1},{"version":"51b4ab145645785c8ced29238192f870dbb98f1968a7c7ef2580cd40663b2940","impliedFormat":1},{"version":"589713fefe7282fd008a2672c5fbacc4a94f31138bae6a03db2c7b5453dc8788","impliedFormat":1},{"version":"26f7f55345682291a8280c99bb672e386722961063c890c77120aaca462ac2f9","impliedFormat":1},{"version":"786691c952fe3feac79aca8f0e7e580d95c19afc8a4c6f8765e99fb756d8d9d7","impliedFormat":1},{"version":"747d6d391f97a46f6880e10c8e4858bbd6568070a0f9af0ec74c26475e2c885f","impliedFormat":1},{"version":"354f47aa8d895d523ebc47aea561b5fedb44590ac2f0eae94b56839a0f08056a","impliedFormat":1},{"version":"62b753ed351fba7e0f6b57103529ce90f2e11b949b8fc69c39464fe958535c25","impliedFormat":1},{"version":"514321f6616d04f0c879ac9f06374ed9cb8eac63e57147ac954e8c0e7440ce00","impliedFormat":1},{"version":"ce7b928daedd974205daf616493c6eb358069ed740ed9552c5f4e66da19fd4bf","impliedFormat":1},{"version":"bd0b6d0720c8b9fb5983761df5b57d6dd6646baf9cc438985f1b53d395aad3d0","signature":"b1aa0340d4248aba8e36e7d246b223e3ae89fb27f167f9e3c7b14838bb41b13f","impliedFormat":1},{"version":"67543772f3c75dc5a2d827c954cf0fde958401e96a6e921fbf6079ed7f4f4daa","signature":"620290e7cd91726a13ce06daf8437b37f4bf782c755674a41d881c2217a35830","impliedFormat":1},{"version":"04c72d6fa3275b08865357900ba7580a5c9e31692a12641a25665fed8411c8b8","impliedFormat":1},{"version":"fad2e326af305b648dd46cac96bf31c88f508823cfea877fae79a9b01dd4d524","impliedFormat":1},{"version":"45e0dd06a42ab62f879b1567438bce5b85eee9c6875685ca2c6ca10f978038b2","impliedFormat":1},{"version":"ad5976f5c289f6720287944a265db0761709be06d5331fc37a1b2999fa13bacc","impliedFormat":1},{"version":"15ffad7691bca48369580748c576e889f19700b8b3a1bfc6586beab673a87956","signature":"88c0699b282331433af615deb79fcd6f8e815e93bd40dd7200c1e3cdf052e5a0","impliedFormat":1},{"version":"ce096c727f1ae221bd35b46dd3e050bf3909674e6e9ec1518b3a5aa89ab2a497","impliedFormat":1},{"version":"1a8e6a4f31a5196144f35d0434e16369881d828c849d6a1c9290b6bde8807449","impliedFormat":1},{"version":"42a9ac86df0fa58634ea8a5f7f07b9b9c3243d82e306fb22d8a41639935a6c87","impliedFormat":1},{"version":"5766c26941ae00aa889335bcccc1ecb28271b774be92aede801354c9797074bb","impliedFormat":1},{"version":"3a19286bcc9303c9352c03d68bb4b63cecbf5c9b7848465847bb6c9ceafa1484","impliedFormat":1},{"version":"c573fef34c2e5cc5269fd9c95fe73a1eb9db17142f5d8f36ffe4a686378b8660","impliedFormat":1},{"version":"d97e30dd93590392fed422f2b27325d10ab007d034faaaf61e28e9ddc9d3825b","impliedFormat":1},{"version":"d1f8a829c5e90734bb47a1d1941b8819aeee6e81a2a772c3c0f70b30e3693fa9","impliedFormat":1},{"version":"be1dfacee25a14d79724ba21f1fde67f966b46e2128c68fed2e48c6e1e9822c5","impliedFormat":1},{"version":"19b3d0c212d241c237f79009b4cd0051e54971747fd89dc70a74f874d1192534","impliedFormat":1},{"version":"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d","impliedFormat":1},{"version":"0771ddb474014581a882838fd20e25e829038bb53c127c5b339812f749f6aa3e","signature":"529e5b8f3b7ad6bbb679268c7c9f29dcc0670e511574197e9755fbd2d70e1c97","impliedFormat":1},{"version":"d59857b5ae5e3a693c3a2966fe3799ca0ee3c9ff9f3b3e2706cc31bd9f3d4ec4","signature":"e06d050ebf5ab7ae4506d7de03d369e5f2f7c96df0e4ba6aec7a6b2450c039d0","impliedFormat":1},{"version":"952a60f7c6c46b683f6e0804d1e8e46244e90a68cdaef3d426708e0c82edcd94","signature":"8b3603d15e3899df5abe14590f4549414118396c49c75e4cf6f0e944079ded78"},{"version":"a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","impliedFormat":1},{"version":"84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","impliedFormat":1},{"version":"415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","impliedFormat":1},{"version":"901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","impliedFormat":1},{"version":"ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","impliedFormat":1},{"version":"b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","impliedFormat":1},{"version":"ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","impliedFormat":1},{"version":"068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","impliedFormat":1},{"version":"3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","impliedFormat":1},{"version":"fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","impliedFormat":1},{"version":"d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","impliedFormat":1},{"version":"3f6af667357384c1f582ef006906ba36668dd87abe832f4497fffb315c160be9","impliedFormat":1},{"version":"363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","impliedFormat":1},{"version":"c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","impliedFormat":1},{"version":"2f1a8ca9846d9ac5481544b5b53811efe2c44bba9195af584136fb34371d5e23","impliedFormat":1},{"version":"1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","impliedFormat":1},{"version":"ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","impliedFormat":1},{"version":"d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","impliedFormat":1},{"version":"4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","impliedFormat":1},{"version":"7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","impliedFormat":1},{"version":"ea2de1a0ec4c9b8828154a971bfe38c47df2f5e9ec511f1a66adce665b9f04b0","impliedFormat":1},{"version":"c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","impliedFormat":1},{"version":"4ef0a17c5bcae3d68227136b562a4d54a4db18cfa058354e52a9ac167d275bbb","impliedFormat":1},{"version":"a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","impliedFormat":1},{"version":"64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","impliedFormat":1},{"version":"c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","impliedFormat":1},{"version":"b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","impliedFormat":1},{"version":"434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","impliedFormat":1},{"version":"c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7","impliedFormat":1},{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true,"impliedFormat":1},{"version":"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","impliedFormat":1},{"version":"81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","impliedFormat":1},{"version":"4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","impliedFormat":1},{"version":"f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","impliedFormat":1},{"version":"1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","impliedFormat":1},{"version":"ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","impliedFormat":1},{"version":"ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","impliedFormat":1},{"version":"f7a8f4bc1e8e786c6115970b8f3ed4797be48108de00b3552bf590706d3a5e8a","impliedFormat":1},{"version":"c2b694d903303007a430acf66980f3b503dbd4e50cf6c183af0daf39c8d79ee8","impliedFormat":1},{"version":"a945cfe6ca774e53111b0cfb6b767261352dc6e15d27641b61e5c634b4a729c3","impliedFormat":1},{"version":"3c10545e61e9428bebdc65fed8d11e09d203afb4745eea11b98be7b218a2aeb1","impliedFormat":1},{"version":"fde1236eef449f111d0eb306a5245dab335974dd0ccac39223ea200907c27a8b","impliedFormat":1},{"version":"c1a5f70e04c94e202ef756018ddacc22e752ee3e5eb401170a2dca2773877277","impliedFormat":1},{"version":"f4bedf06294a6a4d28179ee9689f2d8e00ad4d9806a99b234c2a58f1c9147acb","impliedFormat":1},{"version":"91d68d8136434dbe13c34fe6ef3fde75791f9be128ab6b4312d1699e1fcd9859","impliedFormat":1},{"version":"260c24d1b8fdb9284ffd93112fb4141e94970be4ff2ca23ca60b361dab39eee2","impliedFormat":1},{"version":"cb5327ac944956c162522b4388a74a4b3151e2ba3fd5b057ad13a452b2c30189","impliedFormat":1},{"version":"7bac1d3d9a1f0290c91e88426dab334d9d31a712647df5fb5666ad7acb3d53bd","impliedFormat":1},{"version":"41d461c745d59a6e125dbb554b814bc99a9f072325ffd3c8407809378995fdd4","impliedFormat":1},{"version":"7639642137f8329ef4a19410ce8d3e46910a76294df263f46b428fd61c79d033","impliedFormat":1},{"version":"8e69efd9afdfcd34d85adb6d8e71a5e13fea2a33c7019dd624cc7696772183a0","impliedFormat":1},{"version":"a7ebfe3e2c8f4fea5dac7ffbf6d00acee63c530de24d57cdeeed05530285ca26","impliedFormat":1},{"version":"82b4045609dc0918319f835de4f6cb6a931fd729602292921c443a732a6bb811","impliedFormat":1},{"version":"0fd70ca1eaef1e2dd6f48f16886df4838664821d992fd8076d07fc15e83c8498","impliedFormat":1},{"version":"ba30e6d2f1d20c707566cf485167331a10c539802a79040ced055b62a7aae53e","impliedFormat":1},{"version":"642eae3e9ec5997883f86dd7346d818f07d40fb83cc3530f0e52e232ffb4e631","impliedFormat":1},{"version":"29a6df727893a86807f4dc02116c31d9e6097139579ed6e8029b14c526cba027","impliedFormat":1},{"version":"537a2b61594512c5e75fad7e29d25c23922e27e5a1506eb4fce74fe858472a6e","impliedFormat":1},{"version":"311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","impliedFormat":1},{"version":"7c07838da165fd43759a54d2d490461315e977f9f37c046e0e357623c657fc42","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"115c8691bd8fac390f6f6eef5b356543d716da7cffa4c2f70f288d56c5b06aeb","impliedFormat":1},{"version":"e91516e66f9fbf39c978a4092c16ffda3bb0b32158fca6def75aae9fab358153","impliedFormat":1},{"version":"abd4563a6a7668fa6f8f5e5a425a0900b80fc2309fec5186e2cae67f3ce92663","impliedFormat":1},{"version":"cb48f3011e72efef9d5a5b312f4a956f699b8d423bf9f2772724cdded496bd50","impliedFormat":1},{"version":"9aed07904079877252e6c0aedf1d2cf1935ed91d4abc16f726c76b61ea453919","impliedFormat":1},{"version":"6621af294bd4af8f3f9dd9bd99bd83ed8d2facd16faa6690a5b02d305abd98ab","impliedFormat":1},{"version":"5eada4495ab95470990b51f467c78d47aecfccc42365df4b1e7e88a2952af1a3","impliedFormat":1},{"version":"4720efe0341867600b139bca9a8fa7858b56b3a13a4a665bd98c77052ca64ea4","impliedFormat":1},{"version":"566fc645642572ec1ae3981e3c0a7dc976636976bd7a1d09740c23e8521496e5","impliedFormat":1},{"version":"66182e2432a30468eb5e2225063c391262b6a6732928bbc8ee794642b041dd87","impliedFormat":1},{"version":"11792ab82e35e82f93690040fd634689cad71e98ab56e0e31c3758662fc85736","impliedFormat":1},{"version":"3957b1244f49991b89f12cc45942c24f9c5927dc72677b105bb896d316f0454e","impliedFormat":1},{"version":"6c53c05df974ece61aca769df915345dc6d5b7649a01dc715b7da1809ce00a77","impliedFormat":1},{"version":"18c505381728b8cc6ea6986728403c1969f0d81216ed04163a867780af89f839","impliedFormat":1},{"version":"d121a48de03095d7dd5cd09d39e1a1c4892b520dad4c1d9c339c5d5008cfb536","impliedFormat":1},{"version":"f6d55e607f55be35a3c481b7685461a9acc1e27b893839218eb9313f7e85278c","impliedFormat":1},{"version":"b394ea95c82281d184ea83e8511bd1a43f78d6908eb34b536446d3eb08f9d47f","impliedFormat":1},{"version":"41edf4071b119fdf28b46a3c28c0845f2598bb8b196e7e4c9e01415403fdaea5","impliedFormat":1},{"version":"2bdf3bcf1a9771a288a783d1e8ee5d1d3126c11ddde26ae44864ab432192a6f6","impliedFormat":1},{"version":"603bafdacee4c8850ef5820f8642a817a3f0db6f76dda0474bcf3d17c2e15398","impliedFormat":1},{"version":"a10c79ab97c8a4f6074203094dba87bc736ca574ec480be1df6ec2c82d774573","impliedFormat":1},{"version":"801f049a9e74e941e8ca8add60492aaf4ab717a166248d355ded5753d80f9a85","impliedFormat":1},{"version":"70bba0a9c9c2ad7a042e134a840c4d8462bf0ad98e41c50ca52725ae47265eb9","impliedFormat":1},{"version":"f4dc28fbbba727722cb1fd82f51a7b9540fbe410ed04ddf35cab191d6aa2ba10","impliedFormat":1},{"version":"33589aa637b92a02e6138fcaab28454fcf35a5e7d4cf91343c83342715f9b55a","impliedFormat":1},{"version":"ac13ba680450baa70ac9e9a2f02b50ae43437fd23d76bf9215a6a5b429455010","impliedFormat":1},{"version":"8b325ba54f25c33b38550f76a31afb82db9d7f4b1891276eeae5aba2f2d3bc30","impliedFormat":1},{"version":"eca427f98f87824d62688c987be1b6fb5dbd2c21a71fbb42702c7e365d0309bf","impliedFormat":1},{"version":"93c931504d284fb193a7cce460e4c2d30d4ed247e246e1f214a8064e95198ce8","impliedFormat":1},{"version":"ce972ae1cfa1741dfc7d5b8caeaabfb696023f45a80c0d71fe55494604cc78c8","impliedFormat":1},{"version":"6360869b4f8e9b942293072189349e2c1a44cc3cd6757e83cc62619e6abb01ad","impliedFormat":1},{"version":"f3ac122e178b71c8d2e74f85d0d0ead1ab592efd4ca989db632bb2f5ecbea484","impliedFormat":1},{"version":"2db9f3f74d99d1d437ca92760f510c76e9024d372506266d8443745eb77eff4a","impliedFormat":1},{"version":"e6bd80f63b2290bcea0bcd06002a19739050f188a8accebec706685cda627755","impliedFormat":1},{"version":"6717f2b01e15e479a01d76258afb0d5f8130fd5d6759a04cd60fde5587549efa","impliedFormat":1},{"version":"0e841b93051d30dc91ae7ecbddb1d89152875ac2e92a18f57d26a135466ba5a7","impliedFormat":1},{"version":"42afd9d91bce6d077990a4f3628bcb7f8fe1bc0397ae481bdf54d6fc7c5cd3a4","impliedFormat":1},{"version":"12f6e76f5766ffb9aaf71adbf0a46b8dca86c59982cbe16a2addb87b68c8b937","impliedFormat":1},{"version":"ec8bff9f60af63c0d12517026faff805a05ae930848edf9f35ef27cf8b0f8478","impliedFormat":1},{"version":"2b26174b7cae62f9d9843b5cab80a844fcf530b528348717180a2e60fcd8c53e","impliedFormat":1},{"version":"16189422d0a96941777ea137f472b05a8dce2c530b4e61970c9412e0a139f9b8","impliedFormat":1},{"version":"373f28376805407a378a80ff2b08c56fa0bf7ac76e5abdedb5a00a4aca2ba9f6","impliedFormat":1},{"version":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"8edadbdab1f9f41f86b9bf0151213fbc7778a337703888ebacf017e73738fa00","impliedFormat":1},{"version":"675d65b49d00d283578a569e662548c2a55a95d7c1a211f9e9a32c6e1398dce8","impliedFormat":1},{"version":"4d11636fad62a75861b44b117d7237d38d957ddd51e09f4021f8b86acc2349b7","impliedFormat":1},{"version":"dbc85ae54cb8da38556b3dc33522159c8a5558c79568edbe4977226764e51219","impliedFormat":1},{"version":"7bf23edcdb0ec0715b7f7b85695a1078a132067c495efa8f6cdcda9359659f9c","impliedFormat":1},{"version":"4ad28da36ad48edec414054e1daef40c1016357b188eca0f72977f30222d9c02","impliedFormat":1},{"version":"6c4032871e6cfcbf2356a398c14a23a54af756bf7a5aff43cddb96b09469248e","impliedFormat":1},{"version":"81f20249f433350a8e13cbb9206779e667f0d5e5ac4b8f014cdf6b6e42a136fc","impliedFormat":1},{"version":"c7185143683e9ba278420520af2e2a80dd911e88e5c08c56405b2a65996e2a1f","impliedFormat":1},{"version":"ca642739f49fb9d709f726a6447cefcaf21d8ccb16595724c8929b515a08ef53","impliedFormat":1},{"version":"42adbc164a978ef94024a312dd27e2415fcf034ca6e1ada520b40582704b3e47","impliedFormat":1},{"version":"4c3e6490ded76314f8115ca4657084c5bd53560db3b366e871c2e44b44437e4a","impliedFormat":1},{"version":"5c44dc0b569cde877bdd06ce1124acd6ae621d0a5dfc65a6668e13b85ca54d55","impliedFormat":1},{"version":"4bc6dbef10e6d46dad778f5fc190eef94e5568d612140b8791b00b01882ec1d6","impliedFormat":1},{"version":"3bb26409311deb6bb7a276fe8af90048fd1146f73881ee9826821df71d11980b","impliedFormat":1},{"version":"e463cc21447f0a1aeeeb793f51f4c165be1cec7583c15f68b8a1703c343a6cca","impliedFormat":1},{"version":"3ba99b530549ef5f440cab610ca72cd7bdc1aab48ba22d24bd00a931aedff21a","impliedFormat":1},{"version":"d62c0b0d23609a485dff9b8ed8e9af9c56b8789dc70a07d4bdbb26f16420b249","impliedFormat":1},{"version":"a2609926cd0259b582f55812d4ea93ff0440e38dd015bdb95394b26ad3d34cd1","impliedFormat":1},{"version":"2bdaf407163ca9ca9bc3c1d3fb78ad26b6bd2f7d68b04810fc28072925a95e9b","impliedFormat":1},{"version":"95347f256453f88602fcfc792b0ccea75f330aa22150bd95a6a8bb034a20ba14","impliedFormat":1},{"version":"dd2505eec07d3d341be4322f9f0380b5196f2b163944016227bb599dd89136e7","impliedFormat":1},{"version":"f9dfcd54e603db0684207424124c340a7eb0e61807ece0cdb51a8801c47c9155","impliedFormat":1},{"version":"2d10d8e7f884bbbbc1dc980464cd36346f2b2aa21bb2c049d21b381053bafbbf","impliedFormat":1},{"version":"7f1567b9dfb571a80556155a5bff1c946b23e74443466689bed24095604b3a9b","impliedFormat":1},{"version":"b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","impliedFormat":1},{"version":"51796c3726bf734b061fac41b479a660f9afccf50b8b493835e204723d23a84d","impliedFormat":1},{"version":"ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","impliedFormat":1},{"version":"970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","impliedFormat":1},{"version":"e81c6b5f3f287690f7400c7468dc2bf21e621902dc1b6f98236e38235c0dfc68","signature":"9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","impliedFormat":1},{"version":"e50222c22db171b6e6f102dad414ba90b1ad3802537779e838bed86ff506cb28","impliedFormat":1},{"version":"4c36f9d0ffb25cf61b696b2777ba06d553d1b0cfd12d9eed8a1e3b1a50beb2f7","impliedFormat":1},{"version":"dd478451ffa00f4352bffe4f55b4531c8dec0edafb5777272089e5127dca808c","impliedFormat":1},{"version":"aedddd59fc4889fcdeb54a3b2a4943736f282c00db826ff710acb6bc91873b0d","impliedFormat":1},{"version":"5d9a5cc1712870f91f66850e7056e0d03b4046de5558a00e7190b6a9c2f7d432","impliedFormat":1},{"version":"0daf877cd2dcb81c0e39a96ee20262dc07ecc6f68d65cdb9cc6e6cf2f31d29c5","impliedFormat":1},{"version":"6206a6984c6210c7e02e8cec6c2417f6d2458ec36ac97b80ce9f894933a08082","impliedFormat":1},{"version":"d686fcb07a661fef0866137e450a487e710c233cb24f04d11426228162595d7e","impliedFormat":1},{"version":"e21af678a334e57edb0948acafa5f8d029a86c515f74b35701de2b7f0734ed78","signature":"e135af5c48d2dfc0c658e06827798aae78a97933bbdbaf8e023ee003d47651b1","impliedFormat":1},{"version":"8e3f8a63b6af3fd917721cfe670eedf5aae7df605d0072c5997021eb6fbdae31","impliedFormat":1},{"version":"046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","impliedFormat":1},{"version":"26b82a7ff864d0e68bc4578771898b91feabcb39dd6371970fd012827bd684f1","signature":"8f4a728c02701563b8b3c4ff7958bfef49dd9e03215db06d31ead9ccd5270242","impliedFormat":1},{"version":"e2264b7f593788fca68253d204722139971cefcc19f01a9540b40e3c6a824152","signature":"cf8659543b380c9cf02c88e231eaad406f323f6b1d3eb877d4cad9ff0408974f","impliedFormat":1},{"version":"a6260e50e119a4ae143e080cb69501b76f70b55df4f40b3874ee785277003570","impliedFormat":1},{"version":"311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","impliedFormat":1},{"version":"c032a9b7dfc5f9b86ac5b1535fe72154dc48a7f89f76c5cb4e8a6ab4db203671","impliedFormat":1},{"version":"b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","impliedFormat":1},{"version":"23fa431c1549a548df67056c34a9ea3653b50266d77653a406ff5a67a7f861aa","impliedFormat":1},{"version":"1b1fc8e3cac6cd35e6ecae8aa8bda1f7c402e7786ca262ea6294c907c5b00149","signature":"441751fb3deefe98952ba09b3c5a583c66aa2c9a1abe5e9dba6064a55f5a7678","impliedFormat":1},{"version":"403ba71e387291ed9129e24bc76c9fdef4d563d0208baff9ac4f673d6ec2170a","signature":"c211816fd9af3b1541c812b859c769958d5e5b85b81da832eb2bcdf98342b054","impliedFormat":1},{"version":"60a0074289b6584a0d7003c2aa14d9ebd0027e423deb79e08031b7e708770c98","impliedFormat":1},{"version":"d62b7fb6c39357289ba064887935b0966cd99da5a3bb63afc1d6ea4f82ab23f1","impliedFormat":1},{"version":"7a8e7fc0c0b3c6f0344a6b54a56e928aba5b2bde679ca742acf67aeb67e6f9d2","impliedFormat":1},{"version":"189150e785626242df43edde2e537ae48b8d8ba0c93e78c2478c9ce738a14cfe","impliedFormat":1},{"version":"b377fa259d15c6e3c0fc2804530f1c7448906df2b6afdf6ddeff61a75016cb28","impliedFormat":1},{"version":"a26bb2e2693f921f4aa3f6e8c04a18d07c6ab6c3162c426299e0d0a904d76d82","impliedFormat":1},{"version":"42e7c31cdce8294ad4852d465b2dd91307efecfd7a9889f2a0aa49ffca73e83b","impliedFormat":1},{"version":"7922bdca92b1a6f586e9403b2b7972200aae00f926a300e79bf2d62eb410714f","impliedFormat":1},{"version":"d3abaca0cd59f25b4e056681217d1f8674612071706e6825517ec9e264063e55","impliedFormat":1},{"version":"76a7145b39ac6cc3633e2ccb545e9db3e5a02c7e0bceddbb5abbd3b2e1fba32e","impliedFormat":1},{"version":"a3cf3aa8ec934a46e5d10922af944c14e1b73acb81c4ba90348bee40a829b26c","impliedFormat":1},{"version":"8f95f6784090939eb0cb0c648a03bce2208e595730afc14be4969d90b334b541","impliedFormat":1},{"version":"535b6a88c08e138b1b72003f482bceaca78311cd19836bdde0a80a131f457f43","impliedFormat":1},{"version":"cf72ba3ad6ed1f342e8ddbdbfdf425238cbc7a75cc7a318fa994cb3866a68804","impliedFormat":1},{"version":"f213a7dafb0a946c1134a64151cbb7f2301d23f93920356d730cf0ed767e9985","impliedFormat":1},{"version":"c305868de2a4ea029bd4b9593ebb33b602b54cdbb3a09231486f611a414d0f5f","impliedFormat":1},{"version":"cf42fcfc0f9e976054d921a0f5bf898f9127751cf5dd9f1b4820069fd78f2280","impliedFormat":1},{"version":"e35526a0977b9cd80f799aef3314cb2bfe66aeb40879c888f7a993bd3437fc42","impliedFormat":1},{"version":"81d92e5c4d618ba0660121ed30c603e8111ad605e7562948f7430d87038daee0","impliedFormat":1},{"version":"757f7967151a9b1f043aba090f09c1bdb0abe54f229efd3b7a656eb6da616bf4","impliedFormat":1},{"version":"2da74b28ea53cb34b516fd6dbda3ca93495648cf431e59d24ba3ab5d7ec59ba4","impliedFormat":1},{"version":"928ebc4436abadcd3680338883b7e26189beb7532ae4b3d1c1727598607e53fa","impliedFormat":1},{"version":"5fc0957ee8e15821ddb30a76e74e7984953fc35611a57fd703e624bade5836b9","impliedFormat":1},{"version":"40e9c2028b34c6c1e3281818d062f7008705254ee992d9857d051c603391e0f4","impliedFormat":1},{"version":"2d232975df81628cb4d8a5236b8776976940cc4dd202698e498de5a4baeb7389","impliedFormat":1},{"version":"9bddd9fa92fbbb5bd3b7617b88c4aa038391aa29eca99baef820bf0ff422ee43","signature":"1db9e7d40d7ffade5bd15ce84936997bb9d159d37668c9d8955993753bbdfb2c","impliedFormat":1},{"version":"4c1b770da0116b19eb873aa7cd0bd242ce4b18e20ecde61e5c0bda5421f40707","signature":"047f85c429fbee7423e723a6232e527d69b65c3399880ed8ff0842e29c497c20","impliedFormat":1},{"version":"64b05591ba7a6a2025c3ce04bd72b972a6200d4481feaae2e66056e0a1500b3a","signature":"526ee815290e47e75fd2105f83de0916689cc532a19c81620672342f6478095f","impliedFormat":1},{"version":"96def9cb00debb7554a8019ae45310f375a65820bd8efa8e497a96e3416a5677","signature":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","impliedFormat":1},{"version":"04c8589ba249eb9bc61b2232ab6c29216409852b4aecfb478cbf2a754871253a","signature":"8bfba49493f92a72cdffe5b9947c3f572c9301f4e95a471027d0022e8d9b5d97","impliedFormat":1},{"version":"956f962aca6becfca36766fe3af718b586829e1e4dd72f6b896057f75d4e9e83","impliedFormat":1},{"version":"9f7b583873c73cf01be845311d8b3e1715aecfa476a047d885804d837327d5db","impliedFormat":1},{"version":"f4de63eb261a0b27b5f66f08a4e5c292b67b0c1c0d25199bdd632f4c449b4806","impliedFormat":1},{"version":"f4a795af80885eba93957db860b4b82b4d23a76c5e122c2af5eeb9319094d9d1","impliedFormat":1},{"version":"3267bdd186e8d021bfa57a5314a256b9781e895bc025e426a2bdbe93b946cca0","impliedFormat":1},{"version":"31ed847fef6dc27c5224045deab8f99887ec76146cbc4f2ccb33f5b117fc9bf1","impliedFormat":1},{"version":"0df38983d84eccab44e2e6385bed5e1033b23228e484b80ff124d4049ca8e75a","impliedFormat":1},{"version":"7395857a8b73a1a5a14af625ec52c90f5b24bb0b163057d0f3e8a197ccc816ee","impliedFormat":1},{"version":"8b2e63aba58523a92dd15761096a03b5ebbd8983e2889b1f14265d9b2bb444b6","impliedFormat":1},{"version":"fa90f0cf69cd9296a6c0c43419540ba8e734ab9bf98eff6576bb5f04ddfea175","impliedFormat":1},{"version":"b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","impliedFormat":1},{"version":"68adf02128cad117e068f53ab334cbc730bcfeb7d658d8ce8118da6770b7e622","impliedFormat":1},{"version":"5f932457c501d03a68bee9ae0ab26ef9df2fa1f789a981483ec1f56c120ea5c7","impliedFormat":1},{"version":"4118ae023b5dd1af42aa6ccec246e5c0a7fc32e7459bda588da183d371d46281","impliedFormat":1},{"version":"c935d7a81d4a4409ba02812bd2b9e0176b74d361109d977b13bf6898488df6d9","impliedFormat":1},{"version":"ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","impliedFormat":1},{"version":"970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","impliedFormat":1},{"version":"6477c1bd38bbe6e8d74abebd01a073a7e45a89086a5a250e11725989a54a9a94","impliedFormat":1},{"version":"046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","impliedFormat":1},{"version":"52580471774bba3d4ccd41c1178e2c2884f1caa7257d4e86f760ce840d5083f6","signature":"57148dc07df8d175350eb9576cba28cf1b2b7f8a97fc4fb4fcad25089bdd5272","impliedFormat":1},{"version":"2837ced1e5d4ef88b4e1688fa62bc93b4248d1825667c87a83adaa51bc810cbf","impliedFormat":1},{"version":"f61af6ed7df59c72b7e2fc7e25a4500f5e9beafad5be038d349c5348a0727ba5","impliedFormat":1},{"version":"ab1d998d1a0125aeb4f70beb593220427562543d33c704f7df9e5d8b0de76700","signature":"168ed0c44fb93c128dd97ce63c8f5844c91285710f8424cc85cb804904410629","impliedFormat":1},{"version":"bf7ccda18d9cb9ed3047d96a6542fee3c3bc4e7a7822af40332c5c2f6e07c2b7","impliedFormat":1},{"version":"7bc71d52df9d8e5cc55218d347a91b1758b38341f9cbbac0b80057aa9d93daa6","impliedFormat":1},{"version":"7a1f7b274cf8a66b83fcf42153bde6f25f4eb4d7696d4a6b17e4a8878d128306","impliedFormat":1},{"version":"553dd4fef7d2b88e899646b66b2035e119f61b092d668ae0595a32c234f9b8b5","impliedFormat":1},{"version":"6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","impliedFormat":1},{"version":"afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","impliedFormat":1},{"version":"d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","impliedFormat":1},{"version":"6215681982d007f5e9137ab0ca969c39048401e588bb0ad92018297c82551ea8","impliedFormat":1},{"version":"82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","impliedFormat":1},{"version":"cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","impliedFormat":1},{"version":"3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","impliedFormat":1},{"version":"f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","impliedFormat":1},{"version":"ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","impliedFormat":1},{"version":"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","impliedFormat":1},{"version":"dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","impliedFormat":1},{"version":"67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","impliedFormat":1},{"version":"1b831600aabe1c065830d303d087189e1ccfc93a0ef1882eb58a336ec1ce9f2f","impliedFormat":1},{"version":"75f191b59fe7ce72d1d7d11d0f329a193843f54af93182fc5a65c37d0a82c85a","impliedFormat":1},{"version":"cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","impliedFormat":1},{"version":"f6451dc56be14d37a8b88ea62a143ea398ab44558cd530fb2cdeeea42695c849","impliedFormat":1},{"version":"8ab77e5c32f1b6c6c1ee1b1b771c1a76a16be650559dc61320c8c82c99fc7cde","impliedFormat":1},{"version":"16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","impliedFormat":1},{"version":"ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","impliedFormat":1},{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true,"impliedFormat":1},{"version":"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","impliedFormat":1},{"version":"c269a12e83c5ffc0332b1f245008e4e621e483dd2f8b9b77fc6a664fcde4969d","impliedFormat":1},{"version":"aa8a056ee45ae741849d6e809ba85967b638070060e29c57d12d22b14baefeb6","impliedFormat":1},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true,"impliedFormat":1},{"version":"a97081289e7233ca2ef04a729036449fec4e88818fd7b7397930bd4d52294b18","impliedFormat":1},{"version":"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","impliedFormat":1},{"version":"0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","impliedFormat":1},{"version":"15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","impliedFormat":1},{"version":"963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","impliedFormat":1},{"version":"9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","impliedFormat":1},{"version":"c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","impliedFormat":1},{"version":"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","impliedFormat":1},{"version":"686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","impliedFormat":1},{"version":"ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","impliedFormat":1},{"version":"ae8cd6af37275eac75f5369cdb5f01063bcf1f48d74cb434303ee50ec446acfe","impliedFormat":1},{"version":"2518830a2fda9c272ba48798d0e7b857037443b06594db8e42c87e86944ee9e4","impliedFormat":1},{"version":"95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","impliedFormat":1},{"version":"1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","impliedFormat":1},{"version":"bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","impliedFormat":1},{"version":"5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","impliedFormat":1},{"version":"99ab49d4732fdc98cf5c495925e65e796544cb4086fe42afc235dfc02bcf2351","impliedFormat":1},{"version":"af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","impliedFormat":1},{"version":"d393adc32e520d4274bb4c3dfdcdb342b806a230b66ef0f82b35bffbc4aa2590","impliedFormat":1},{"version":"c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","impliedFormat":1},{"version":"38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","impliedFormat":1},{"version":"3b6040253231d44e6778eb6861cc86c1758562e77783d21b7ecbc73322ded539","impliedFormat":1},{"version":"03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","impliedFormat":1},{"version":"318c82cc1e13da55e8c60d7e1bdc422a0679d675ad048b6d5022a47f57d23e3f","impliedFormat":1},{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac3cce682a1eab96841ce9942ace8dd5649d2951007096555f4950479e4b8d56","impliedFormat":1},{"version":"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","impliedFormat":1},{"version":"fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","impliedFormat":1},{"version":"d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","impliedFormat":1},{"version":"ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","impliedFormat":1},{"version":"9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","impliedFormat":1},{"version":"3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","impliedFormat":1},{"version":"3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","impliedFormat":1},{"version":"df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","impliedFormat":1},{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","impliedFormat":1},{"version":"951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","impliedFormat":1},{"version":"a45efe8e9134ef64a5e3825944bc16fffaf130b82943844523d7a7f7c1fd91b2","impliedFormat":1},{"version":"969aa6509a994f4f3b09b99d5d29484d8d52a2522e133ef9b4e54af9a3e9feaf","impliedFormat":1},{"version":"f378e8538e407f997a0f88fcd1ecd93a096707cc909339ce4dba2e4ea03f1726","impliedFormat":1},{"version":"dcafd874e49d42fc215dcb4ef1e06511363c1f31979951081f3cd1908a05a636","impliedFormat":1},{"version":"fb73c98050a02b5849cc0fbb0d133ed55764b9c2a91f0ada2a25e74df68e6242","impliedFormat":1},{"version":"6002c44a8e8edbe4c79ce856c7bac3f8e69a2a45dc5bd6b229ca4ab323b924b3","impliedFormat":1},{"version":"b4d505a77e0829de5e5e23eaefb3d7989e0dbdfdb02ea69159df9f40017fb958","impliedFormat":1},{"version":"b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","impliedFormat":1},{"version":"f2242adef346a64818a1af914146f6f6046f16505e8a228c3bdb70185d4fdf4c","impliedFormat":1},{"version":"2f7508d8eeadcfde20b41ec13726c9ad26f04bbf830434e289c6010d5be28455","impliedFormat":1},{"version":"8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","impliedFormat":1},{"version":"9798f0d3693043da9dda9146b5e8622cd4476270e7aed8f3cb346b9b40a52103","impliedFormat":1},{"version":"fc7e8927b6fa6c81d68783afb314d01592c559e86bd36df334c37f40d0136acd","impliedFormat":1},{"version":"73f72caffdd55f189b5bf4e6b5ca273b4e26269d9aac859b9d30a5f799c095ad","impliedFormat":1},{"version":"d998e3e185cdf59dfc84043c41a42c02daaf3b7b21bee2db2d1f620a8e134f4c","impliedFormat":1},{"version":"06aa8858883e08f5136eb182d2f285ea615aeb464007f83c7a31ee1f8d9932b1","impliedFormat":1},{"version":"62d429aba0bbe459a04965d10c7637b74b319149f17874920a5ffb9fe3ba14d8","impliedFormat":1},{"version":"084a25e9ee73362fbb467873341b95721689513c14af6aa3067a1d95d6fafe08","impliedFormat":1},{"version":"4dbfeb147290c498e3aa56ea3198a6a109c5c0d9d7a4936a3138376302d89e7d","impliedFormat":1},{"version":"169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","impliedFormat":1},{"version":"8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","impliedFormat":1},{"version":"209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","impliedFormat":1},{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true,"impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","impliedFormat":1},{"version":"5009c081fd8ca3fcd6f3adcd071a1c79a933a400532b897822aad0943688a1f1","impliedFormat":1},{"version":"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","impliedFormat":1},{"version":"93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","impliedFormat":1},{"version":"c271193e426325d9acab2f99997bb9f5f2dff850ec8c7c011c5abafe5af83b5f","impliedFormat":1},{"version":"58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","impliedFormat":1},{"version":"a3e12bcf2d196656ccd5b5d5344182967a2bdde0f63c9b955c36169ed02c3555","impliedFormat":1},{"version":"a016d2f6c0a2c15069ec69661ad37c86a450deb629ce96a592f15f01d3a5746e","impliedFormat":1},{"version":"2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","impliedFormat":1},{"version":"2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","impliedFormat":1},{"version":"42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","impliedFormat":1},{"version":"d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","impliedFormat":1},{"version":"b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","impliedFormat":1},{"version":"7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","impliedFormat":1},{"version":"906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","impliedFormat":1},{"version":"5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","impliedFormat":1},{"version":"c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","impliedFormat":1},{"version":"e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","impliedFormat":1},{"version":"e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","impliedFormat":1},{"version":"9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","impliedFormat":1},{"version":"0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","impliedFormat":1},{"version":"71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","impliedFormat":1},{"version":"c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","impliedFormat":1},{"version":"2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","impliedFormat":1},{"version":"479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","impliedFormat":1},{"version":"ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","impliedFormat":1},{"version":"f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","impliedFormat":1},{"version":"86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","impliedFormat":1},{"version":"2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","impliedFormat":1},{"version":"a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","impliedFormat":1},{"version":"b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","impliedFormat":1},{"version":"61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","impliedFormat":1},{"version":"6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","impliedFormat":1},{"version":"c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","impliedFormat":1},{"version":"38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","impliedFormat":1},{"version":"d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","impliedFormat":1},{"version":"3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","impliedFormat":1},{"version":"b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","impliedFormat":1},{"version":"f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","impliedFormat":1},{"version":"843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","impliedFormat":1},{"version":"f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","impliedFormat":1},{"version":"6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","impliedFormat":1},{"version":"e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","impliedFormat":1},{"version":"a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","impliedFormat":1},{"version":"a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","impliedFormat":1},{"version":"da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","impliedFormat":1},{"version":"acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","impliedFormat":1},{"version":"6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","impliedFormat":1},{"version":"4fddd9f6929421ce580b4583defbb3f78f5a4a3642bea5ecd3209bf652d8b507","impliedFormat":1},{"version":"f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","impliedFormat":1},{"version":"82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","impliedFormat":1},{"version":"557e00bde9af85bcb3ab6b3a785904f028f9f1b65dba664f2fda44965acf8a78","impliedFormat":1},{"version":"397981908f102effb3cd483042076b593f3928264dbf06aec235a7c3e83da2b4","impliedFormat":1},{"version":"ad78491e2a3ae1e59680dbab88607dd670d06a91b1d6c451fa895ad390513e8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a9deb79dabc5153448e38589fbe38945fdad45f0f8442cd4d4e1da8bb879a76","affectsGlobalScope":true,"impliedFormat":1},{"version":"f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956","impliedFormat":1},{"version":"c9cc4c881c910ce378659524d985d2b72b79029b0c473df5d4d3557b4cf6010a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fae4b2bc906f3e6840725cc24affaa4e684e6c9cc20254242c5df4bede5b6f6","impliedFormat":1},{"version":"2dd1d4cea14cead7a7fc9eec8f40593089dff0de8c0199458446143c9b8c4ea9","impliedFormat":1},{"version":"c0288f54de6f544706a3150c8b579b1a975870695c4be866f727ece6a16f3976","impliedFormat":1},{"version":"ec2c7505ede4bc3ee37cfe431cfd87e545f55f27fe15b0809c1a411765145615","impliedFormat":1}],"options":{"declaration":true,"declarationDir":"./dist-types","downlevelIteration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"importHelpers":true,"module":100,"removeComments":false,"rootDir":"./src","skipLibCheck":true,"strict":true,"target":8,"useUnknownInCatchVariables":false},"fileIdsList":[[70,75,123],[70,75,88,104,121,481],[70,75],[70,75,90,123,484],[70,75,81,123],[70,75,87,90,115,123,488,489,490],[70,75,123,499],[70,75,115,123,503],[70,75,90,123],[70,75,76,123],[70,75,492,493,507],[70,75,87,90,123,501,502],[70,75,485,502,503,510],[70,75,87,88,123,512],[70,75,87,90,92,95,104,115,123],[70,75,87,118,123,529,530,532],[70,75,531],[70,75,87,123],[70,75,534,536,537,538,539,540,541,542,543,544,545,546],[70,75,534,535,537,538,539,540,541,542,543,544,545,546],[70,75,535,536,537,538,539,540,541,542,543,544,545,546],[70,75,534,535,536,538,539,540,541,542,543,544,545,546],[70,75,534,535,536,537,539,540,541,542,543,544,545,546],[70,75,534,535,536,537,538,540,541,542,543,544,545,546],[70,75,534,535,536,537,538,539,541,542,543,544,545,546],[70,75,534,535,536,537,538,539,540,542,543,544,545,546],[70,75,534,535,536,537,538,539,540,541,543,544,545,546],[70,75,534,535,536,537,538,539,540,541,542,544,545,546],[70,75,534,535,536,537,538,539,540,541,542,543,545,546],[70,75,534,535,536,537,538,539,540,541,542,543,544,546],[70,75,534,535,536,537,538,539,540,541,542,543,544,545],[70,75,566],[70,75,551],[70,75,555,556,557],[70,75,554],[70,75,556],[70,75,533,552,553,558,561,563,564,565],[70,75,553,559,560,566],[70,75,559,562],[70,75,553,554,559,566],[70,75,553,566],[70,75,547,548,549,550],[70,75,90,115,123,572,573],[70,75,578],[70,75,87,88,123],[70,75,90,104,123],[70,75,581,620],[70,75,581,605,620],[70,75,620],[70,75,581],[70,75,581,606,620],[70,75,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619],[70,75,606,620],[70,75,88,511],[70,75,90,123,509],[70,75,622],[70,75,104,123],[70,75,87,90,92,104,112,115,121,123],[70,75,87,123,634],[70,75,518],[70,75,517,518],[70,75,517],[70,75,517,518,519,521,522,525,526,527,528],[70,75,518,522],[70,75,517,518,519,521,522,523,524],[70,75,517,522],[70,75,522,526],[70,75,518,519,520],[70,75,519],[70,75,517,518,522],[70,75,496],[70,75,493,494,495],[70,75,493,496],[70,75,90,95,112,115,118,492,494,496,497,498],[70,75,310],[70,75,457,458],[70,75,477],[70,75,169,358],[70,75,169,203,369],[70,75,169,224,251,360,369],[70,75,361,362,363,364],[70,75,169],[70,75,169,268,310,366],[70,75,359,365,367,368,369,370,371,375,376],[70,75,360],[70,75,251,359],[70,75,251],[70,75,372,373,374],[70,75,169,369],[70,75,169,362,372],[70,75,169,363,372],[70,75,367],[70,75,169,361,362,363,364,369],[70,75,169,224,251,268,322,325,340,357,358,361,362,363,364,365,368],[51,70,75,197,202],[50,70,75],[70,75,169,185],[70,75,169,184],[70,75,184,185,186,195],[70,75,169,183],[70,75,169,194],[70,75,196],[70,75,198,199,200,201],[70,75,169,311],[70,75,311,312],[70,75,169,179,310,316,317],[70,75,318],[70,75,169,318],[70,75,169,313,316,319,321,383,391],[70,75,392],[70,75,169,179,310],[70,75,320],[70,75,169,179,310,378],[70,75,379,380,381,382],[70,75,169,380],[70,75,377],[70,75,169,310,314],[70,75,169,310],[70,75,314,315],[70,75,427],[70,75,323,324],[70,75,169,323],[70,75,420,423],[70,75,183],[70,75,421,422],[70,75,169,285,286],[70,75,280],[70,75,280,281,282,283,284],[70,75,273,274,275,276,277,278,279,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309],[70,75,285,286],[70,75,169,460],[70,75,169,394],[70,75,326,327,328,329],[70,75,169,328],[70,75,330,333,339],[70,75,331,332],[70,75,334],[70,75,169,336,337],[70,75,336,337,338],[70,75,335],[70,75,433,436,443,444,445,446,447],[70,75,169,430],[70,75,430,431,432],[70,75,434,435],[70,75,169,268],[70,75,438,439,440],[70,75,437,441,442],[70,75,169,384],[70,75,169,384,386],[70,75,384,385,386,387,388,389,390],[70,75,462,463,464],[70,75,449],[70,75,104,123,169],[70,75,396,397],[70,75,466,467],[70,75,469,470],[70,75,169,217,218],[70,75,219,220],[70,75,217,218,221,222,223],[70,75,169,348,350],[70,75,350,351,352,353,354,355,356],[70,75,169,352],[70,75,169,349],[70,75,254,255,256],[70,75,169,255],[70,75,169,170,180,181],[70,75,169,179],[70,75,182],[70,75,400,401,402],[70,75,90,92,123,169,268],[70,75,261],[70,75,262],[70,75,169,264],[70,75,169,259,260],[70,75,259,260,261,263,264,265,266,267],[70,75,171,172,173,174,175,176,177,178],[70,75,169,175],[70,75,187,188,189,190,191,192,193],[70,75,169,215],[70,75,169,224],[70,75,208],[70,75,169,234,235],[70,75,236],[70,75,169,208,216,225,226,227,228,229,230,231,232,233,237,238,239,240,241,242,243,244,245,246,247,248,249,250],[53,70,75],[52,70,75],[56,63,64,65,70,75],[63,66,70,75],[56,60,70,75],[56,66,70,75],[54,55,64,65,66,67,70,75],[70,75,104,123,125],[70,75,127],[61,62,63,70,75,129],[61,63,70,75],[70,75,131,133,134],[70,75,131,132],[70,75,136],[54,70,75],[57,70,75,138],[70,75,138],[70,75,138,139,140,141,142],[70,75,141],[58,70,75],[70,75,138,139,140],[60,61,63,70,75],[70,75,127,128],[70,75,144],[70,75,144,148],[70,75,144,145,148,149],[62,70,75,147],[70,75,124],[53,59,70,75],[58,60,70,75,90,92,123],[56,70,75],[56,70,75,152,153,154],[53,57,58,59,60,61,62,63,68,70,75,126,127,128,129,130,132,135,136,137,143,146,147,150,151,155,156,157,158,159,160,161,162,163,164,166,167,168],[54,57,58,62,70,75],[70,75,130],[70,75,146],[60,62,70,75,132],[60,61,70,75],[60,70,75,136],[62,70,75,127,128],[70,75,90,104,123,125,158],[61,70,75,129,163,164],[60,70,75,90,91,123,129,130,158,162,163,164,165],[70,75,129,130],[60,70,75],[70,75,408,409],[70,75,472],[70,75,404],[70,75,474],[70,75,169,251],[70,75,416],[70,75,204,205],[70,75,169,341],[70,75,169,343],[70,75,341],[70,75,341,342,343,344,345,346,347],[70,75,104],[70,75,209,210,211,212,213,214],[70,75,104,169],[70,75,411,412,413],[70,71,75],[70,74,75],[70,75,80,107],[70,75,76,87,88,95,104,115],[70,75,76,77,87,95],[70,75,78,116],[70,75,79,80,88,96],[70,75,80,104,112],[70,75,81,83,87,95],[70,75,82],[70,75,83,84],[70,75,87],[70,75,86,87],[70,74,75,87],[70,75,87,88,89,104,115],[70,75,87,88,89,104],[70,75,87,90,95,104,115],[70,75,87,88,90,91,95,104,112,115],[70,75,90,92,104,112,115],[70,75,87,93],[70,75,94,115,120],[70,75,83,87,95,104],[70,75,96],[70,75,97],[70,74,75,98],[70,75,99,114,120],[70,75,100],[70,75,101],[70,75,87,102],[70,75,102,103,116,118],[70,75,87,104,105,106],[70,75,104,106],[70,75,104,105],[70,75,107],[70,75,108],[70,75,87,110,111],[70,75,110,111],[70,75,80,95,104,112],[70,75,113],[75],[69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122],[70,75,95,114],[70,75,90,101,115],[70,75,80,116],[70,75,104,117],[70,75,118],[70,75,119],[70,75,80,87,89,98,104,115,118,120],[70,75,104,121],[49,70,75,169,207],[49,70,75,169,203,206,452],[49,70,75,169,251,253,257,270,452],[49,70,75,258,271],[49,70,75,310,340],[49,70,75,169,268,310,419],[49,70,75,252,425,426,452,453,454,455],[49,70,75,253],[49,70,75,251,252],[49,70,75,251],[49,70,75,169,203,251,252,253,258,268,269,271],[49,70,75,169,251,258,271,452],[49,70,75,169,207,251,258,268,271,322,325,340,357,418,426,428,429,448,450,451],[49,70,75,251,272,340,348,415,452,459,461,465,468,471,473,475],[49,70,75,452,476,478],[49,70,75,169,203,207,251,406,407,410,414,452],[49,70,75,183,203,251,272,340,348,357,393,395,398,399,403,405,415,417,452],[49,70,75,251,268,419,424,425],[169,207],[169,203,452],[169,224,251,253,452],[258,271],[310],[169,268,310,419],[252,425,426,452,453,454,455],[253],[251,252],[251],[169,258,268,271],[169,258,271,452],[169,207,251,258,268,271,322,325,340,357,426,450],[169,194,207,251,268,426,452,468],[169,207,426,452],[169,194,207,251,268,393,403,426,452],[425]],"referencedMap":[[480,1],[482,2],[483,3],[485,4],[486,5],[487,3],[491,6],[500,7],[504,8],[484,9],[505,10],[506,3],[507,3],[508,11],[492,3],[503,12],[511,13],[513,14],[512,3],[489,3],[514,15],[515,3],[516,3],[531,16],[532,17],[493,3],[488,18],[533,3],[535,19],[536,20],[534,21],[537,22],[538,23],[539,24],[540,25],[541,26],[542,27],[543,28],[544,29],[545,30],[546,31],[567,32],[552,33],[558,34],[556,3],[555,35],[557,36],[566,37],[561,38],[563,39],[564,40],[565,41],[559,3],[560,41],[562,41],[554,41],[553,3],[548,3],[547,3],[550,33],[551,42],[549,33],[568,3],[509,3],[569,3],[570,3],[571,3],[573,3],[574,43],[575,3],[576,3],[577,3],[579,44],[502,3],[501,3],[481,45],[580,3],[490,46],[578,3],[605,47],[606,48],[581,49],[584,49],[603,47],[604,47],[594,47],[593,50],[591,47],[586,47],[599,47],[597,47],[601,47],[585,47],[598,47],[602,47],[587,47],[588,47],[600,47],[582,47],[589,47],[590,47],[592,47],[596,47],[607,51],[595,47],[583,47],[620,52],[619,3],[614,51],[616,53],[615,51],[608,51],[609,51],[611,51],[613,51],[617,53],[618,53],[610,53],[612,53],[621,54],[510,55],[623,56],[622,3],[624,3],[625,9],[626,57],[627,3],[530,3],[629,3],[628,3],[630,3],[631,3],[632,3],[633,58],[635,59],[634,3],[495,3],[572,46],[519,60],[528,61],[517,3],[518,62],[529,63],[524,64],[525,65],[523,66],[527,67],[521,68],[520,69],[526,70],[522,61],[497,71],[496,72],[494,73],[498,3],[499,74],[457,75],[459,76],[458,75],[478,77],[477,75],[366,78],[358,79],[361,80],[371,81],[362,80],[363,80],[364,80],[365,82],[367,83],[377,84],[376,85],[360,86],[359,87],[375,88],[372,89],[373,90],[374,91],[368,92],[370,93],[369,94],[203,95],[50,3],[51,96],[186,97],[185,98],[196,99],[184,100],[195,101],[197,102],[198,3],[202,103],[199,3],[200,82],[201,82],[312,104],[311,75],[313,105],[318,106],[319,107],[317,108],[392,109],[393,110],[320,111],[321,112],[379,113],[383,114],[381,115],[378,116],[380,82],[382,115],[315,117],[314,118],[316,119],[322,82],[428,120],[427,82],[429,82],[323,82],[325,121],[324,122],[420,118],[424,123],[421,124],[423,125],[422,82],[273,82],[274,82],[275,82],[276,82],[277,82],[278,82],[279,82],[287,126],[288,82],[289,3],[290,82],[291,82],[292,82],[293,82],[294,82],[281,127],[282,82],[280,82],[285,128],[283,127],[284,82],[310,129],[295,82],[296,82],[297,82],[298,82],[299,3],[300,82],[301,82],[302,82],[303,82],[304,82],[305,82],[306,130],[307,82],[308,82],[286,82],[309,82],[460,3],[461,131],[394,3],[395,132],[330,133],[326,124],[327,124],[329,134],[328,82],[340,135],[331,124],[333,136],[332,82],[335,137],[334,3],[338,138],[339,139],[336,140],[337,140],[444,82],[448,141],[431,142],[432,142],[430,82],[433,143],[435,82],[434,82],[436,144],[445,82],[447,82],[446,145],[437,82],[438,145],[439,145],[441,146],[440,82],[443,147],[442,82],[390,3],[385,148],[387,149],[391,150],[388,9],[384,82],[386,82],[389,82],[462,82],[465,151],[463,82],[464,3],[449,82],[450,152],[396,153],[398,154],[397,82],[466,145],[468,155],[467,82],[399,82],[471,156],[469,3],[470,82],[451,82],[219,157],[221,158],[220,82],[222,157],[223,157],[224,159],[217,82],[218,3],[351,160],[352,100],[353,3],[357,161],[354,82],[355,82],[356,162],[350,163],[349,82],[254,82],[257,164],[255,82],[256,165],[182,166],[170,82],[180,167],[181,82],[183,168],[403,169],[400,170],[401,145],[402,82],[262,171],[263,172],[264,82],[265,173],[261,174],[259,82],[260,82],[268,175],[266,3],[267,82],[171,3],[172,3],[173,3],[174,3],[179,176],[175,82],[176,82],[177,177],[178,82],[193,82],[188,82],[189,82],[190,82],[194,178],[191,82],[192,82],[187,82],[208,82],[216,179],[225,180],[226,3],[227,181],[228,3],[229,3],[230,3],[231,3],[232,82],[233,3],[234,82],[236,182],[237,183],[235,82],[238,3],[239,3],[251,184],[240,3],[241,3],[242,82],[243,3],[244,3],[245,3],[246,3],[247,3],[248,3],[249,3],[250,3],[52,185],[53,186],[54,3],[55,3],[66,187],[67,188],[64,189],[65,190],[68,191],[126,192],[128,193],[130,194],[129,195],[131,3],[135,196],[133,197],[134,3],[127,3],[137,198],[57,199],[139,200],[140,201],[143,202],[142,203],[138,204],[141,205],[136,206],[144,207],[145,208],[149,209],[150,210],[148,211],[125,212],[60,213],[151,214],[152,215],[153,215],[56,3],[155,216],[154,215],[169,217],[58,3],[63,218],[156,219],[157,3],[61,3],[147,220],[158,221],[146,222],[159,223],[160,224],[161,192],[162,192],[163,225],[132,3],[165,226],[166,227],[124,3],[167,228],[164,3],[59,229],[62,206],[168,185],[407,82],[408,3],[410,230],[409,3],[472,3],[473,231],[404,3],[405,232],[475,233],[474,234],[417,235],[416,234],[204,82],[206,236],[205,82],[342,237],[346,3],[344,238],[347,3],[345,239],[348,240],[343,82],[341,3],[209,3],[210,153],[213,241],[215,242],[211,243],[212,57],[214,3],[411,3],[414,244],[412,3],[413,3],[71,245],[72,245],[74,246],[75,247],[76,248],[77,249],[78,250],[79,251],[80,252],[81,253],[82,254],[83,255],[84,255],[85,256],[86,257],[87,258],[88,259],[89,260],[73,3],[122,3],[90,261],[91,262],[92,263],[93,264],[94,265],[95,266],[96,267],[97,268],[98,269],[99,270],[100,271],[101,272],[102,273],[103,274],[104,275],[106,276],[105,277],[107,278],[108,279],[109,3],[110,280],[111,281],[112,282],[113,283],[70,284],[69,3],[123,285],[114,286],[115,287],[116,288],[117,289],[118,290],[119,291],[120,292],[121,293],[269,3],[49,3],[9,3],[10,3],[12,3],[11,3],[2,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[3,3],[4,3],[24,3],[21,3],[22,3],[23,3],[25,3],[26,3],[27,3],[5,3],[28,3],[29,3],[30,3],[31,3],[6,3],[35,3],[32,3],[33,3],[34,3],[36,3],[7,3],[37,3],[42,3],[43,3],[38,3],[39,3],[40,3],[41,3],[8,3],[47,3],[44,3],[45,3],[46,3],[1,3],[48,3],[272,3],[419,294],[207,295],[271,296],[454,297],[258,296],[406,298],[425,299],[456,300],[455,301],[253,302],[252,303],[270,304],[453,305],[452,306],[476,307],[479,308],[415,309],[418,310],[426,311]],"exportedModulesMap":[[480,1],[482,2],[483,3],[485,4],[486,5],[487,3],[491,6],[500,7],[504,8],[484,9],[505,10],[506,3],[507,3],[508,11],[492,3],[503,12],[511,13],[513,14],[512,3],[489,3],[514,15],[515,3],[516,3],[531,16],[532,17],[493,3],[488,18],[533,3],[535,19],[536,20],[534,21],[537,22],[538,23],[539,24],[540,25],[541,26],[542,27],[543,28],[544,29],[545,30],[546,31],[567,32],[552,33],[558,34],[556,3],[555,35],[557,36],[566,37],[561,38],[563,39],[564,40],[565,41],[559,3],[560,41],[562,41],[554,41],[553,3],[548,3],[547,3],[550,33],[551,42],[549,33],[568,3],[509,3],[569,3],[570,3],[571,3],[573,3],[574,43],[575,3],[576,3],[577,3],[579,44],[502,3],[501,3],[481,45],[580,3],[490,46],[578,3],[605,47],[606,48],[581,49],[584,49],[603,47],[604,47],[594,47],[593,50],[591,47],[586,47],[599,47],[597,47],[601,47],[585,47],[598,47],[602,47],[587,47],[588,47],[600,47],[582,47],[589,47],[590,47],[592,47],[596,47],[607,51],[595,47],[583,47],[620,52],[619,3],[614,51],[616,53],[615,51],[608,51],[609,51],[611,51],[613,51],[617,53],[618,53],[610,53],[612,53],[621,54],[510,55],[623,56],[622,3],[624,3],[625,9],[626,57],[627,3],[530,3],[629,3],[628,3],[630,3],[631,3],[632,3],[633,58],[635,59],[634,3],[495,3],[572,46],[519,60],[528,61],[517,3],[518,62],[529,63],[524,64],[525,65],[523,66],[527,67],[521,68],[520,69],[526,70],[522,61],[497,71],[496,72],[494,73],[498,3],[499,74],[457,75],[459,76],[458,75],[478,77],[477,75],[366,78],[358,79],[361,80],[371,81],[362,80],[363,80],[364,80],[365,82],[367,83],[377,84],[376,85],[360,86],[359,87],[375,88],[372,89],[373,90],[374,91],[368,92],[370,93],[369,94],[203,95],[50,3],[51,96],[186,97],[185,98],[196,99],[184,100],[195,101],[197,102],[198,3],[202,103],[199,3],[200,82],[201,82],[312,104],[311,75],[313,105],[318,106],[319,107],[317,108],[392,109],[393,110],[320,111],[321,112],[379,113],[383,114],[381,115],[378,116],[380,82],[382,115],[315,117],[314,118],[316,119],[322,82],[428,120],[427,82],[429,82],[323,82],[325,121],[324,122],[420,118],[424,123],[421,124],[423,125],[422,82],[273,82],[274,82],[275,82],[276,82],[277,82],[278,82],[279,82],[287,126],[288,82],[289,3],[290,82],[291,82],[292,82],[293,82],[294,82],[281,127],[282,82],[280,82],[285,128],[283,127],[284,82],[310,129],[295,82],[296,82],[297,82],[298,82],[299,3],[300,82],[301,82],[302,82],[303,82],[304,82],[305,82],[306,130],[307,82],[308,82],[286,82],[309,82],[460,3],[461,131],[394,3],[395,132],[330,133],[326,124],[327,124],[329,134],[328,82],[340,135],[331,124],[333,136],[332,82],[335,137],[334,3],[338,138],[339,139],[336,140],[337,140],[444,82],[448,141],[431,142],[432,142],[430,82],[433,143],[435,82],[434,82],[436,144],[445,82],[447,82],[446,145],[437,82],[438,145],[439,145],[441,146],[440,82],[443,147],[442,82],[390,3],[385,148],[387,149],[391,150],[388,9],[384,82],[386,82],[389,82],[462,82],[465,151],[463,82],[464,3],[449,82],[450,152],[396,153],[398,154],[397,82],[466,145],[468,155],[467,82],[399,82],[471,156],[469,3],[470,82],[451,82],[219,157],[221,158],[220,82],[222,157],[223,157],[224,159],[217,82],[218,3],[351,160],[352,100],[353,3],[357,161],[354,82],[355,82],[356,162],[350,163],[349,82],[254,82],[257,164],[255,82],[256,165],[182,166],[170,82],[180,167],[181,82],[183,168],[403,169],[400,170],[401,145],[402,82],[262,171],[263,172],[264,82],[265,173],[261,174],[259,82],[260,82],[268,175],[266,3],[267,82],[171,3],[172,3],[173,3],[174,3],[179,176],[175,82],[176,82],[177,177],[178,82],[193,82],[188,82],[189,82],[190,82],[194,178],[191,82],[192,82],[187,82],[208,82],[216,179],[225,180],[226,3],[227,181],[228,3],[229,3],[230,3],[231,3],[232,82],[233,3],[234,82],[236,182],[237,183],[235,82],[238,3],[239,3],[251,184],[240,3],[241,3],[242,82],[243,3],[244,3],[245,3],[246,3],[247,3],[248,3],[249,3],[250,3],[52,185],[53,186],[54,3],[55,3],[66,187],[67,188],[64,189],[65,190],[68,191],[126,192],[128,193],[130,194],[129,195],[131,3],[135,196],[133,197],[134,3],[127,3],[137,198],[57,199],[139,200],[140,201],[143,202],[142,203],[138,204],[141,205],[136,206],[144,207],[145,208],[149,209],[150,210],[148,211],[125,212],[60,213],[151,214],[152,215],[153,215],[56,3],[155,216],[154,215],[169,217],[58,3],[63,218],[156,219],[157,3],[61,3],[147,220],[158,221],[146,222],[159,223],[160,224],[161,192],[162,192],[163,225],[132,3],[165,226],[166,227],[124,3],[167,228],[164,3],[59,229],[62,206],[168,185],[407,82],[408,3],[410,230],[409,3],[472,3],[473,231],[404,3],[405,232],[475,233],[474,234],[417,235],[416,234],[204,82],[206,236],[205,82],[342,237],[346,3],[344,238],[347,3],[345,239],[348,240],[343,82],[341,3],[209,3],[210,153],[213,241],[215,242],[211,243],[212,57],[214,3],[411,3],[414,244],[412,3],[413,3],[71,245],[72,245],[74,246],[75,247],[76,248],[77,249],[78,250],[79,251],[80,252],[81,253],[82,254],[83,255],[84,255],[85,256],[86,257],[87,258],[88,259],[89,260],[73,3],[122,3],[90,261],[91,262],[92,263],[93,264],[94,265],[95,266],[96,267],[97,268],[98,269],[99,270],[100,271],[101,272],[102,273],[103,274],[104,275],[106,276],[105,277],[107,278],[108,279],[109,3],[110,280],[111,281],[112,282],[113,283],[70,284],[69,3],[123,285],[114,286],[115,287],[116,288],[117,289],[118,290],[119,291],[120,292],[121,293],[269,3],[49,3],[9,3],[10,3],[12,3],[11,3],[2,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[3,3],[4,3],[24,3],[21,3],[22,3],[23,3],[25,3],[26,3],[27,3],[5,3],[28,3],[29,3],[30,3],[31,3],[6,3],[35,3],[32,3],[33,3],[34,3],[36,3],[7,3],[37,3],[42,3],[43,3],[38,3],[39,3],[40,3],[41,3],[8,3],[47,3],[44,3],[45,3],[46,3],[1,3],[48,3],[419,312],[207,313],[271,314],[454,315],[258,314],[406,316],[425,317],[456,318],[455,319],[253,320],[252,321],[270,322],[453,323],[452,324],[476,325],[479,325],[415,326],[418,327],[426,328]],"semanticDiagnosticsPerFile":[480,482,483,485,486,487,491,500,504,484,505,506,507,508,492,503,511,513,512,489,514,515,516,531,532,493,488,533,535,536,534,537,538,539,540,541,542,543,544,545,546,567,552,558,556,555,557,566,561,563,564,565,559,560,562,554,553,548,547,550,551,549,568,509,569,570,571,573,574,575,576,577,579,502,501,481,580,490,578,605,606,581,584,603,604,594,593,591,586,599,597,601,585,598,602,587,588,600,582,589,590,592,596,607,595,583,620,619,614,616,615,608,609,611,613,617,618,610,612,621,510,623,622,624,625,626,627,530,629,628,630,631,632,633,635,634,495,572,519,528,517,518,529,524,525,523,527,521,520,526,522,497,496,494,498,499,457,459,458,478,477,366,358,361,371,362,363,364,365,367,377,376,360,359,375,372,373,374,368,370,369,203,50,51,186,185,196,184,195,197,198,202,199,200,201,312,311,313,318,319,317,392,393,320,321,379,383,381,378,380,382,315,314,316,322,428,427,429,323,325,324,420,424,421,423,422,273,274,275,276,277,278,279,287,288,289,290,291,292,293,294,281,282,280,285,283,284,310,295,296,297,298,299,300,301,302,303,304,305,306,307,308,286,309,460,461,394,395,330,326,327,329,328,340,331,333,332,335,334,338,339,336,337,444,448,431,432,430,433,435,434,436,445,447,446,437,438,439,441,440,443,442,390,385,387,391,388,384,386,389,462,465,463,464,449,450,396,398,397,466,468,467,399,471,469,470,451,219,221,220,222,223,224,217,218,351,352,353,357,354,355,356,350,349,254,257,255,256,182,170,180,181,183,403,400,401,402,262,263,264,265,261,259,260,268,266,267,171,172,173,174,179,175,176,177,178,193,188,189,190,194,191,192,187,208,216,225,226,227,228,229,230,231,232,233,234,236,237,235,238,239,251,240,241,242,243,244,245,246,247,248,249,250,52,53,54,55,66,67,64,65,68,126,128,130,129,131,135,133,134,127,137,57,139,140,143,142,138,141,136,144,145,149,150,148,125,60,151,152,153,56,155,154,169,58,63,156,157,61,147,158,146,159,160,161,162,163,132,165,166,124,167,164,59,62,168,407,408,410,409,472,473,404,405,475,474,417,416,204,206,205,342,346,344,347,345,348,343,341,209,210,213,215,211,212,214,411,414,412,413,71,72,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,73,122,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,106,105,107,108,109,110,111,112,113,70,69,123,114,115,116,117,118,119,120,121,269,49,9,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,1,48,272,419,207,271,454,258,406,425,456,455,253,252,270,453,452,476,479,415,418,426]},"version":"4.9.5"} \ No newline at end of file diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreaming.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreaming.js deleted file mode 100644 index 097ed03d9e3..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreaming.js +++ /dev/null @@ -1,19 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.CodeWhispererStreaming = void 0; -const CodeWhispererStreamingClient_1 = require("./CodeWhispererStreamingClient"); -const ConverseStreamCommand_1 = require("./commands/ConverseStreamCommand"); -const ExportResultArchiveCommand_1 = require("./commands/ExportResultArchiveCommand"); -const GenerateAssistantResponseCommand_1 = require("./commands/GenerateAssistantResponseCommand"); -const GenerateTaskAssistPlanCommand_1 = require("./commands/GenerateTaskAssistPlanCommand"); -const smithy_client_1 = require("@smithy/smithy-client"); -const commands = { - ExportResultArchiveCommand: ExportResultArchiveCommand_1.ExportResultArchiveCommand, - GenerateAssistantResponseCommand: GenerateAssistantResponseCommand_1.GenerateAssistantResponseCommand, - GenerateTaskAssistPlanCommand: GenerateTaskAssistPlanCommand_1.GenerateTaskAssistPlanCommand, - ConverseStreamCommand: ConverseStreamCommand_1.ConverseStreamCommand, -}; -class CodeWhispererStreaming extends CodeWhispererStreamingClient_1.CodeWhispererStreamingClient { -} -exports.CodeWhispererStreaming = CodeWhispererStreaming; -(0, smithy_client_1.createAggregatedClient)(commands, CodeWhispererStreaming); diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreamingClient.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreamingClient.js deleted file mode 100644 index f3747f82aad..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/CodeWhispererStreamingClient.js +++ /dev/null @@ -1,42 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.CodeWhispererStreamingClient = exports.__Client = void 0; -const runtimeConfig_1 = require("./runtimeConfig"); -const runtimeExtensions_1 = require("./runtimeExtensions"); -const middleware_host_header_1 = require("@aws-sdk/middleware-host-header"); -const middleware_logger_1 = require("@aws-sdk/middleware-logger"); -const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection"); -const middleware_token_1 = require("@aws-sdk/middleware-token"); -const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent"); -const config_resolver_1 = require("@smithy/config-resolver"); -const eventstream_serde_config_resolver_1 = require("@smithy/eventstream-serde-config-resolver"); -const middleware_content_length_1 = require("@smithy/middleware-content-length"); -const middleware_retry_1 = require("@smithy/middleware-retry"); -const smithy_client_1 = require("@smithy/smithy-client"); -Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } }); -class CodeWhispererStreamingClient extends smithy_client_1.Client { - constructor(...[configuration]) { - let _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {}); - let _config_1 = (0, config_resolver_1.resolveRegionConfig)(_config_0); - let _config_2 = (0, config_resolver_1.resolveEndpointsConfig)(_config_1); - let _config_3 = (0, middleware_retry_1.resolveRetryConfig)(_config_2); - let _config_4 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_3); - let _config_5 = (0, middleware_token_1.resolveTokenConfig)(_config_4); - let _config_6 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_5); - let _config_7 = (0, eventstream_serde_config_resolver_1.resolveEventStreamSerdeConfig)(_config_6); - let _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []); - super(_config_8); - this.config = _config_8; - this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config)); - this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config)); - this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config)); - this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config)); - this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config)); - this.middlewareStack.use((0, middleware_token_1.getTokenPlugin)(this.config)); - this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config)); - } - destroy() { - super.destroy(); - } -} -exports.CodeWhispererStreamingClient = CodeWhispererStreamingClient; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/ConverseStreamCommand.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/ConverseStreamCommand.js deleted file mode 100644 index 15c1befc548..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/ConverseStreamCommand.js +++ /dev/null @@ -1,42 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.ConverseStreamCommand = exports.$Command = void 0; -const models_0_1 = require("../models/models_0"); -const Aws_restJson1_1 = require("../protocols/Aws_restJson1"); -const middleware_serde_1 = require("@smithy/middleware-serde"); -const smithy_client_1 = require("@smithy/smithy-client"); -Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } }); -const types_1 = require("@smithy/types"); -class ConverseStreamCommand extends smithy_client_1.Command { - constructor(input) { - super(); - this.input = input; - } - resolveMiddleware(clientStack, configuration, options) { - this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize)); - const stack = clientStack.concat(this.middlewareStack); - const { logger } = configuration; - const clientName = "CodeWhispererStreamingClient"; - const commandName = "ConverseStreamCommand"; - const handlerExecutionContext = { - logger, - clientName, - commandName, - inputFilterSensitiveLog: models_0_1.ConverseStreamRequestFilterSensitiveLog, - outputFilterSensitiveLog: models_0_1.ConverseStreamResponseFilterSensitiveLog, - [types_1.SMITHY_CONTEXT_KEY]: { - service: "AmazonCodeWhispererStreamingService", - operation: "ConverseStream", - }, - }; - const { requestHandler } = configuration; - return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext); - } - serialize(input, context) { - return (0, Aws_restJson1_1.se_ConverseStreamCommand)(input, context); - } - deserialize(output, context) { - return (0, Aws_restJson1_1.de_ConverseStreamCommand)(output, context); - } -} -exports.ConverseStreamCommand = ConverseStreamCommand; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/ExportResultArchiveCommand.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/ExportResultArchiveCommand.js deleted file mode 100644 index f65dbed5540..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/ExportResultArchiveCommand.js +++ /dev/null @@ -1,42 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.ExportResultArchiveCommand = exports.$Command = void 0; -const models_0_1 = require("../models/models_0"); -const Aws_restJson1_1 = require("../protocols/Aws_restJson1"); -const middleware_serde_1 = require("@smithy/middleware-serde"); -const smithy_client_1 = require("@smithy/smithy-client"); -Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } }); -const types_1 = require("@smithy/types"); -class ExportResultArchiveCommand extends smithy_client_1.Command { - constructor(input) { - super(); - this.input = input; - } - resolveMiddleware(clientStack, configuration, options) { - this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize)); - const stack = clientStack.concat(this.middlewareStack); - const { logger } = configuration; - const clientName = "CodeWhispererStreamingClient"; - const commandName = "ExportResultArchiveCommand"; - const handlerExecutionContext = { - logger, - clientName, - commandName, - inputFilterSensitiveLog: (_) => _, - outputFilterSensitiveLog: models_0_1.ExportResultArchiveResponseFilterSensitiveLog, - [types_1.SMITHY_CONTEXT_KEY]: { - service: "AmazonCodeWhispererStreamingService", - operation: "ExportResultArchive", - }, - }; - const { requestHandler } = configuration; - return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext); - } - serialize(input, context) { - return (0, Aws_restJson1_1.se_ExportResultArchiveCommand)(input, context); - } - deserialize(output, context) { - return (0, Aws_restJson1_1.de_ExportResultArchiveCommand)(output, context); - } -} -exports.ExportResultArchiveCommand = ExportResultArchiveCommand; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateAssistantResponseCommand.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateAssistantResponseCommand.js deleted file mode 100644 index be652ab546d..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateAssistantResponseCommand.js +++ /dev/null @@ -1,42 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.GenerateAssistantResponseCommand = exports.$Command = void 0; -const models_0_1 = require("../models/models_0"); -const Aws_restJson1_1 = require("../protocols/Aws_restJson1"); -const middleware_serde_1 = require("@smithy/middleware-serde"); -const smithy_client_1 = require("@smithy/smithy-client"); -Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } }); -const types_1 = require("@smithy/types"); -class GenerateAssistantResponseCommand extends smithy_client_1.Command { - constructor(input) { - super(); - this.input = input; - } - resolveMiddleware(clientStack, configuration, options) { - this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize)); - const stack = clientStack.concat(this.middlewareStack); - const { logger } = configuration; - const clientName = "CodeWhispererStreamingClient"; - const commandName = "GenerateAssistantResponseCommand"; - const handlerExecutionContext = { - logger, - clientName, - commandName, - inputFilterSensitiveLog: models_0_1.GenerateAssistantResponseRequestFilterSensitiveLog, - outputFilterSensitiveLog: models_0_1.GenerateAssistantResponseResponseFilterSensitiveLog, - [types_1.SMITHY_CONTEXT_KEY]: { - service: "AmazonCodeWhispererStreamingService", - operation: "GenerateAssistantResponse", - }, - }; - const { requestHandler } = configuration; - return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext); - } - serialize(input, context) { - return (0, Aws_restJson1_1.se_GenerateAssistantResponseCommand)(input, context); - } - deserialize(output, context) { - return (0, Aws_restJson1_1.de_GenerateAssistantResponseCommand)(output, context); - } -} -exports.GenerateAssistantResponseCommand = GenerateAssistantResponseCommand; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateTaskAssistPlanCommand.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateTaskAssistPlanCommand.js deleted file mode 100644 index b3e7f9da21d..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/GenerateTaskAssistPlanCommand.js +++ /dev/null @@ -1,42 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.GenerateTaskAssistPlanCommand = exports.$Command = void 0; -const models_0_1 = require("../models/models_0"); -const Aws_restJson1_1 = require("../protocols/Aws_restJson1"); -const middleware_serde_1 = require("@smithy/middleware-serde"); -const smithy_client_1 = require("@smithy/smithy-client"); -Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } }); -const types_1 = require("@smithy/types"); -class GenerateTaskAssistPlanCommand extends smithy_client_1.Command { - constructor(input) { - super(); - this.input = input; - } - resolveMiddleware(clientStack, configuration, options) { - this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize)); - const stack = clientStack.concat(this.middlewareStack); - const { logger } = configuration; - const clientName = "CodeWhispererStreamingClient"; - const commandName = "GenerateTaskAssistPlanCommand"; - const handlerExecutionContext = { - logger, - clientName, - commandName, - inputFilterSensitiveLog: models_0_1.GenerateTaskAssistPlanRequestFilterSensitiveLog, - outputFilterSensitiveLog: models_0_1.GenerateTaskAssistPlanResponseFilterSensitiveLog, - [types_1.SMITHY_CONTEXT_KEY]: { - service: "AmazonCodeWhispererStreamingService", - operation: "GenerateTaskAssistPlan", - }, - }; - const { requestHandler } = configuration; - return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext); - } - serialize(input, context) { - return (0, Aws_restJson1_1.se_GenerateTaskAssistPlanCommand)(input, context); - } - deserialize(output, context) { - return (0, Aws_restJson1_1.de_GenerateTaskAssistPlanCommand)(output, context); - } -} -exports.GenerateTaskAssistPlanCommand = GenerateTaskAssistPlanCommand; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/index.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/index.js deleted file mode 100644 index cbff60e91bb..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/commands/index.js +++ /dev/null @@ -1,7 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const tslib_1 = require("tslib"); -tslib_1.__exportStar(require("./ExportResultArchiveCommand"), exports); -tslib_1.__exportStar(require("./GenerateAssistantResponseCommand"), exports); -tslib_1.__exportStar(require("./GenerateTaskAssistPlanCommand"), exports); -tslib_1.__exportStar(require("./ConverseStreamCommand"), exports); diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/endpoints.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/endpoints.js deleted file mode 100644 index 6893ce94dd4..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/endpoints.js +++ /dev/null @@ -1,205 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.defaultRegionInfoProvider = void 0; -const config_resolver_1 = require("@smithy/config-resolver"); -const regionHash = {}; -const partitionHash = { - "aws": { - regions: [ - "af-south-1", - "ap-east-1", - "ap-northeast-1", - "ap-northeast-2", - "ap-northeast-3", - "ap-south-1", - "ap-south-2", - "ap-southeast-1", - "ap-southeast-2", - "ap-southeast-3", - "ap-southeast-4", - "ca-central-1", - "eu-central-1", - "eu-central-2", - "eu-north-1", - "eu-south-1", - "eu-south-2", - "eu-west-1", - "eu-west-2", - "eu-west-3", - "il-central-1", - "me-central-1", - "me-south-1", - "sa-east-1", - "us-east-1", - "us-east-2", - "us-west-1", - "us-west-2", - ], - regionRegex: "^(us|eu|ap|sa|ca|me|af|il)\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazoncodewhispererstreamingservice.{region}.amazonaws.com", - "tags": [] - }, - { - "hostname": "amazoncodewhispererstreamingservice-fips.{region}.amazonaws.com", - "tags": [ - "fips" - ] - }, - { - "hostname": "amazoncodewhispererstreamingservice-fips.{region}.api.aws", - "tags": [ - "dualstack", - "fips" - ] - }, - { - "hostname": "amazoncodewhispererstreamingservice.{region}.api.aws", - "tags": [ - "dualstack" - ] - } - ], - }, - "aws-cn": { - regions: [ - "cn-north-1", - "cn-northwest-1", - ], - regionRegex: "^cn\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazoncodewhispererstreamingservice.{region}.amazonaws.com.cn", - "tags": [] - }, - { - "hostname": "amazoncodewhispererstreamingservice-fips.{region}.amazonaws.com.cn", - "tags": [ - "fips" - ] - }, - { - "hostname": "amazoncodewhispererstreamingservice-fips.{region}.api.amazonwebservices.com.cn", - "tags": [ - "dualstack", - "fips" - ] - }, - { - "hostname": "amazoncodewhispererstreamingservice.{region}.api.amazonwebservices.com.cn", - "tags": [ - "dualstack" - ] - } - ], - }, - "aws-iso": { - regions: [ - "us-iso-east-1", - "us-iso-west-1", - ], - regionRegex: "^us\\-iso\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazoncodewhispererstreamingservice.{region}.c2s.ic.gov", - "tags": [] - }, - { - "hostname": "amazoncodewhispererstreamingservice-fips.{region}.c2s.ic.gov", - "tags": [ - "fips" - ] - } - ], - }, - "aws-iso-b": { - regions: [ - "us-isob-east-1", - ], - regionRegex: "^us\\-isob\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazoncodewhispererstreamingservice.{region}.sc2s.sgov.gov", - "tags": [] - }, - { - "hostname": "amazoncodewhispererstreamingservice-fips.{region}.sc2s.sgov.gov", - "tags": [ - "fips" - ] - } - ], - }, - "aws-iso-e": { - regions: [], - regionRegex: "^eu\\-isoe\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazoncodewhispererstreamingservice.{region}.cloud.adc-e.uk", - "tags": [] - }, - { - "hostname": "amazoncodewhispererstreamingservice-fips.{region}.cloud.adc-e.uk", - "tags": [ - "fips" - ] - } - ], - }, - "aws-iso-f": { - regions: [], - regionRegex: "^us\\-isof\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazoncodewhispererstreamingservice.{region}.csp.hci.ic.gov", - "tags": [] - }, - { - "hostname": "amazoncodewhispererstreamingservice-fips.{region}.csp.hci.ic.gov", - "tags": [ - "fips" - ] - } - ], - }, - "aws-us-gov": { - regions: [ - "us-gov-east-1", - "us-gov-west-1", - ], - regionRegex: "^us\\-gov\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazoncodewhispererstreamingservice.{region}.amazonaws.com", - "tags": [] - }, - { - "hostname": "amazoncodewhispererstreamingservice-fips.{region}.amazonaws.com", - "tags": [ - "fips" - ] - }, - { - "hostname": "amazoncodewhispererstreamingservice-fips.{region}.api.aws", - "tags": [ - "dualstack", - "fips" - ] - }, - { - "hostname": "amazoncodewhispererstreamingservice.{region}.api.aws", - "tags": [ - "dualstack" - ] - } - ], - }, -}; -const defaultRegionInfoProvider = async (region, options) => (0, config_resolver_1.getRegionInfo)(region, { - ...options, - signingService: "amazoncodewhispererstreamingservice", - regionHash, - partitionHash, -}); -exports.defaultRegionInfoProvider = defaultRegionInfoProvider; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/extensionConfiguration.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/extensionConfiguration.js deleted file mode 100644 index c8ad2e549bd..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/extensionConfiguration.js +++ /dev/null @@ -1,2 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/index.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/index.js deleted file mode 100644 index 0a9d98fddef..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/index.js +++ /dev/null @@ -1,10 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.CodeWhispererStreamingServiceException = void 0; -const tslib_1 = require("tslib"); -tslib_1.__exportStar(require("./CodeWhispererStreamingClient"), exports); -tslib_1.__exportStar(require("./CodeWhispererStreaming"), exports); -tslib_1.__exportStar(require("./commands"), exports); -tslib_1.__exportStar(require("./models"), exports); -var CodeWhispererStreamingServiceException_1 = require("./models/CodeWhispererStreamingServiceException"); -Object.defineProperty(exports, "CodeWhispererStreamingServiceException", { enumerable: true, get: function () { return CodeWhispererStreamingServiceException_1.CodeWhispererStreamingServiceException; } }); diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/CodeWhispererStreamingServiceException.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/CodeWhispererStreamingServiceException.js deleted file mode 100644 index 3f6b094554f..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/CodeWhispererStreamingServiceException.js +++ /dev/null @@ -1,12 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.CodeWhispererStreamingServiceException = exports.__ServiceException = void 0; -const smithy_client_1 = require("@smithy/smithy-client"); -Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } }); -class CodeWhispererStreamingServiceException extends smithy_client_1.ServiceException { - constructor(options) { - super(options); - Object.setPrototypeOf(this, CodeWhispererStreamingServiceException.prototype); - } -} -exports.CodeWhispererStreamingServiceException = CodeWhispererStreamingServiceException; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/index.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/index.js deleted file mode 100644 index 8ced418bca0..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/index.js +++ /dev/null @@ -1,4 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const tslib_1 = require("tslib"); -tslib_1.__exportStar(require("./models_0"), exports); diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/models_0.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/models_0.js deleted file mode 100644 index 8da790a3579..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/models/models_0.js +++ /dev/null @@ -1,570 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.TransformationDownloadArtifactType = exports.DryRunOperationException = exports.ConversationStateFilterSensitiveLog = exports.ContextTruncationScheme = exports.ChatTriggerType = exports.ChatResponseStreamFilterSensitiveLog = exports.ChatResponseStream = exports.SupplementaryWebLinksEventFilterSensitiveLog = exports.InvalidStateReason = exports.IntentsEventFilterSensitiveLog = exports.IntentDataType = exports.IntentType = exports.FollowupPromptEventFilterSensitiveLog = exports.CodeEventFilterSensitiveLog = exports.ChatMessageFilterSensitiveLog = exports.ChatMessage = exports.UserInputMessageFilterSensitiveLog = exports.UserInputMessageContextFilterSensitiveLog = exports.ShellStateFilterSensitiveLog = exports.ShellHistoryEntryFilterSensitiveLog = exports.GitStateFilterSensitiveLog = exports.EnvStateFilterSensitiveLog = exports.EnvironmentVariableFilterSensitiveLog = exports.EditorStateFilterSensitiveLog = exports.RelevantTextDocumentFilterSensitiveLog = exports.CursorState = exports.DiagnosticFilterSensitiveLog = exports.Diagnostic = exports.TextDocumentDiagnosticFilterSensitiveLog = exports.TextDocumentFilterSensitiveLog = exports.SymbolType = exports.RuntimeDiagnosticFilterSensitiveLog = exports.DiagnosticSeverity = exports.BinaryPayloadEventFilterSensitiveLog = exports.BinaryMetadataEventFilterSensitiveLog = exports.ContentChecksumType = exports.ConflictException = exports.AssistantResponseMessageFilterSensitiveLog = exports.SupplementaryWebLinkFilterSensitiveLog = exports.FollowupPromptFilterSensitiveLog = exports.UserIntent = exports.AssistantResponseEventFilterSensitiveLog = exports.AppStudioStateFilterSensitiveLog = exports.ValidationException = exports.ValidationExceptionReason = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.AccessDeniedException = exports.AccessDeniedExceptionReason = void 0; -exports.GenerateTaskAssistPlanResponseFilterSensitiveLog = exports.GenerateTaskAssistPlanRequestFilterSensitiveLog = exports.ConverseStreamResponseFilterSensitiveLog = exports.ConverseStreamRequestFilterSensitiveLog = exports.Origin = exports.ExportResultArchiveResponseFilterSensitiveLog = exports.GenerateAssistantResponseResponseFilterSensitiveLog = exports.GenerateAssistantResponseRequestFilterSensitiveLog = exports.ServiceQuotaExceededException = exports.ResultArchiveStreamFilterSensitiveLog = exports.ResultArchiveStream = exports.ExportIntent = exports.ExportContext = void 0; -const CodeWhispererStreamingServiceException_1 = require("./CodeWhispererStreamingServiceException"); -const smithy_client_1 = require("@smithy/smithy-client"); -exports.AccessDeniedExceptionReason = { - UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS: "UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS", -}; -class AccessDeniedException extends CodeWhispererStreamingServiceException_1.CodeWhispererStreamingServiceException { - constructor(opts) { - super({ - name: "AccessDeniedException", - $fault: "client", - ...opts - }); - this.name = "AccessDeniedException"; - this.$fault = "client"; - Object.setPrototypeOf(this, AccessDeniedException.prototype); - this.reason = opts.reason; - } -} -exports.AccessDeniedException = AccessDeniedException; -class InternalServerException extends CodeWhispererStreamingServiceException_1.CodeWhispererStreamingServiceException { - constructor(opts) { - super({ - name: "InternalServerException", - $fault: "server", - ...opts - }); - this.name = "InternalServerException"; - this.$fault = "server"; - this.$retryable = {}; - Object.setPrototypeOf(this, InternalServerException.prototype); - } -} -exports.InternalServerException = InternalServerException; -class ResourceNotFoundException extends CodeWhispererStreamingServiceException_1.CodeWhispererStreamingServiceException { - constructor(opts) { - super({ - name: "ResourceNotFoundException", - $fault: "client", - ...opts - }); - this.name = "ResourceNotFoundException"; - this.$fault = "client"; - Object.setPrototypeOf(this, ResourceNotFoundException.prototype); - } -} -exports.ResourceNotFoundException = ResourceNotFoundException; -class ThrottlingException extends CodeWhispererStreamingServiceException_1.CodeWhispererStreamingServiceException { - constructor(opts) { - super({ - name: "ThrottlingException", - $fault: "client", - ...opts - }); - this.name = "ThrottlingException"; - this.$fault = "client"; - this.$retryable = { - throttling: true, - }; - Object.setPrototypeOf(this, ThrottlingException.prototype); - } -} -exports.ThrottlingException = ThrottlingException; -exports.ValidationExceptionReason = { - CONTENT_LENGTH_EXCEEDS_THRESHOLD: "CONTENT_LENGTH_EXCEEDS_THRESHOLD", - INVALID_CONVERSATION_ID: "INVALID_CONVERSATION_ID", -}; -class ValidationException extends CodeWhispererStreamingServiceException_1.CodeWhispererStreamingServiceException { - constructor(opts) { - super({ - name: "ValidationException", - $fault: "client", - ...opts - }); - this.name = "ValidationException"; - this.$fault = "client"; - Object.setPrototypeOf(this, ValidationException.prototype); - this.reason = opts.reason; - } -} -exports.ValidationException = ValidationException; -const AppStudioStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.namespace && { namespace: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.propertyName && { propertyName: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.propertyValue && { propertyValue: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.propertyContext && { propertyContext: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.AppStudioStateFilterSensitiveLog = AppStudioStateFilterSensitiveLog; -const AssistantResponseEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.AssistantResponseEventFilterSensitiveLog = AssistantResponseEventFilterSensitiveLog; -exports.UserIntent = { - APPLY_COMMON_BEST_PRACTICES: "APPLY_COMMON_BEST_PRACTICES", - CITE_SOURCES: "CITE_SOURCES", - EXPLAIN_CODE_SELECTION: "EXPLAIN_CODE_SELECTION", - EXPLAIN_LINE_BY_LINE: "EXPLAIN_LINE_BY_LINE", - GENERATE_CLOUDFORMATION_TEMPLATE: "GENERATE_CLOUDFORMATION_TEMPLATE", - GENERATE_UNIT_TESTS: "GENERATE_UNIT_TESTS", - IMPROVE_CODE: "IMPROVE_CODE", - SHOW_EXAMPLES: "SHOW_EXAMPLES", - SUGGEST_ALTERNATE_IMPLEMENTATION: "SUGGEST_ALTERNATE_IMPLEMENTATION", -}; -const FollowupPromptFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.FollowupPromptFilterSensitiveLog = FollowupPromptFilterSensitiveLog; -const SupplementaryWebLinkFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.url && { url: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.title && { title: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.snippet && { snippet: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.SupplementaryWebLinkFilterSensitiveLog = SupplementaryWebLinkFilterSensitiveLog; -const AssistantResponseMessageFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.supplementaryWebLinks && { supplementaryWebLinks: obj.supplementaryWebLinks.map(item => (0, exports.SupplementaryWebLinkFilterSensitiveLog)(item)) - }), - ...(obj.followupPrompt && { followupPrompt: (0, exports.FollowupPromptFilterSensitiveLog)(obj.followupPrompt) - }), -}); -exports.AssistantResponseMessageFilterSensitiveLog = AssistantResponseMessageFilterSensitiveLog; -class ConflictException extends CodeWhispererStreamingServiceException_1.CodeWhispererStreamingServiceException { - constructor(opts) { - super({ - name: "ConflictException", - $fault: "client", - ...opts - }); - this.name = "ConflictException"; - this.$fault = "client"; - Object.setPrototypeOf(this, ConflictException.prototype); - } -} -exports.ConflictException = ConflictException; -exports.ContentChecksumType = { - SHA_256: "SHA_256", -}; -const BinaryMetadataEventFilterSensitiveLog = (obj) => ({ - ...obj, -}); -exports.BinaryMetadataEventFilterSensitiveLog = BinaryMetadataEventFilterSensitiveLog; -const BinaryPayloadEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.bytes && { bytes: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.BinaryPayloadEventFilterSensitiveLog = BinaryPayloadEventFilterSensitiveLog; -exports.DiagnosticSeverity = { - ERROR: "ERROR", - HINT: "HINT", - INFORMATION: "INFORMATION", - WARNING: "WARNING", -}; -const RuntimeDiagnosticFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.source && { source: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.message && { message: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.RuntimeDiagnosticFilterSensitiveLog = RuntimeDiagnosticFilterSensitiveLog; -exports.SymbolType = { - DECLARATION: "DECLARATION", - USAGE: "USAGE", -}; -const TextDocumentFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.relativeFilePath && { relativeFilePath: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.text && { text: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.TextDocumentFilterSensitiveLog = TextDocumentFilterSensitiveLog; -const TextDocumentDiagnosticFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.document && { document: (0, exports.TextDocumentFilterSensitiveLog)(obj.document) - }), - ...(obj.source && { source: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.message && { message: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.TextDocumentDiagnosticFilterSensitiveLog = TextDocumentDiagnosticFilterSensitiveLog; -var Diagnostic; -(function (Diagnostic) { - Diagnostic.visit = (value, visitor) => { - if (value.textDocumentDiagnostic !== undefined) - return visitor.textDocumentDiagnostic(value.textDocumentDiagnostic); - if (value.runtimeDiagnostic !== undefined) - return visitor.runtimeDiagnostic(value.runtimeDiagnostic); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(Diagnostic = exports.Diagnostic || (exports.Diagnostic = {})); -const DiagnosticFilterSensitiveLog = (obj) => { - if (obj.textDocumentDiagnostic !== undefined) - return { textDocumentDiagnostic: (0, exports.TextDocumentDiagnosticFilterSensitiveLog)(obj.textDocumentDiagnostic) - }; - if (obj.runtimeDiagnostic !== undefined) - return { runtimeDiagnostic: (0, exports.RuntimeDiagnosticFilterSensitiveLog)(obj.runtimeDiagnostic) - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -exports.DiagnosticFilterSensitiveLog = DiagnosticFilterSensitiveLog; -var CursorState; -(function (CursorState) { - CursorState.visit = (value, visitor) => { - if (value.position !== undefined) - return visitor.position(value.position); - if (value.range !== undefined) - return visitor.range(value.range); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(CursorState = exports.CursorState || (exports.CursorState = {})); -const RelevantTextDocumentFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.relativeFilePath && { relativeFilePath: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.text && { text: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.RelevantTextDocumentFilterSensitiveLog = RelevantTextDocumentFilterSensitiveLog; -const EditorStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.document && { document: (0, exports.TextDocumentFilterSensitiveLog)(obj.document) - }), - ...(obj.cursorState && { cursorState: obj.cursorState - }), - ...(obj.relevantDocuments && { relevantDocuments: obj.relevantDocuments.map(item => (0, exports.RelevantTextDocumentFilterSensitiveLog)(item)) - }), -}); -exports.EditorStateFilterSensitiveLog = EditorStateFilterSensitiveLog; -const EnvironmentVariableFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.key && { key: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.value && { value: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.EnvironmentVariableFilterSensitiveLog = EnvironmentVariableFilterSensitiveLog; -const EnvStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.currentWorkingDirectory && { currentWorkingDirectory: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.environmentVariables && { environmentVariables: obj.environmentVariables.map(item => (0, exports.EnvironmentVariableFilterSensitiveLog)(item)) - }), -}); -exports.EnvStateFilterSensitiveLog = EnvStateFilterSensitiveLog; -const GitStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.status && { status: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.GitStateFilterSensitiveLog = GitStateFilterSensitiveLog; -const ShellHistoryEntryFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.command && { command: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.directory && { directory: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.stdout && { stdout: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.stderr && { stderr: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.ShellHistoryEntryFilterSensitiveLog = ShellHistoryEntryFilterSensitiveLog; -const ShellStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.shellHistory && { shellHistory: obj.shellHistory.map(item => (0, exports.ShellHistoryEntryFilterSensitiveLog)(item)) - }), -}); -exports.ShellStateFilterSensitiveLog = ShellStateFilterSensitiveLog; -const UserInputMessageContextFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.editorState && { editorState: (0, exports.EditorStateFilterSensitiveLog)(obj.editorState) - }), - ...(obj.shellState && { shellState: (0, exports.ShellStateFilterSensitiveLog)(obj.shellState) - }), - ...(obj.gitState && { gitState: (0, exports.GitStateFilterSensitiveLog)(obj.gitState) - }), - ...(obj.envState && { envState: (0, exports.EnvStateFilterSensitiveLog)(obj.envState) - }), - ...(obj.appStudioContext && { appStudioContext: (0, exports.AppStudioStateFilterSensitiveLog)(obj.appStudioContext) - }), - ...(obj.diagnostic && { diagnostic: (0, exports.DiagnosticFilterSensitiveLog)(obj.diagnostic) - }), -}); -exports.UserInputMessageContextFilterSensitiveLog = UserInputMessageContextFilterSensitiveLog; -const UserInputMessageFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING - }), - ...(obj.userInputMessageContext && { userInputMessageContext: (0, exports.UserInputMessageContextFilterSensitiveLog)(obj.userInputMessageContext) - }), -}); -exports.UserInputMessageFilterSensitiveLog = UserInputMessageFilterSensitiveLog; -var ChatMessage; -(function (ChatMessage) { - ChatMessage.visit = (value, visitor) => { - if (value.userInputMessage !== undefined) - return visitor.userInputMessage(value.userInputMessage); - if (value.assistantResponseMessage !== undefined) - return visitor.assistantResponseMessage(value.assistantResponseMessage); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(ChatMessage = exports.ChatMessage || (exports.ChatMessage = {})); -const ChatMessageFilterSensitiveLog = (obj) => { - if (obj.userInputMessage !== undefined) - return { userInputMessage: (0, exports.UserInputMessageFilterSensitiveLog)(obj.userInputMessage) - }; - if (obj.assistantResponseMessage !== undefined) - return { assistantResponseMessage: (0, exports.AssistantResponseMessageFilterSensitiveLog)(obj.assistantResponseMessage) - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -exports.ChatMessageFilterSensitiveLog = ChatMessageFilterSensitiveLog; -const CodeEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.CodeEventFilterSensitiveLog = CodeEventFilterSensitiveLog; -const FollowupPromptEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.followupPrompt && { followupPrompt: (0, exports.FollowupPromptFilterSensitiveLog)(obj.followupPrompt) - }), -}); -exports.FollowupPromptEventFilterSensitiveLog = FollowupPromptEventFilterSensitiveLog; -exports.IntentType = { - GLUE_SENSEI: "GLUE_SENSEI", - RESOURCE_DATA: "RESOURCE_DATA", - SUPPORT: "SUPPORT", -}; -var IntentDataType; -(function (IntentDataType) { - IntentDataType.visit = (value, visitor) => { - if (value.string !== undefined) - return visitor.string(value.string); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(IntentDataType = exports.IntentDataType || (exports.IntentDataType = {})); -const IntentsEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.intents && { intents: smithy_client_1.SENSITIVE_STRING - }), -}); -exports.IntentsEventFilterSensitiveLog = IntentsEventFilterSensitiveLog; -exports.InvalidStateReason = { - INVALID_TASK_ASSIST_PLAN: "INVALID_TASK_ASSIST_PLAN", -}; -const SupplementaryWebLinksEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.supplementaryWebLinks && { supplementaryWebLinks: obj.supplementaryWebLinks.map(item => (0, exports.SupplementaryWebLinkFilterSensitiveLog)(item)) - }), -}); -exports.SupplementaryWebLinksEventFilterSensitiveLog = SupplementaryWebLinksEventFilterSensitiveLog; -var ChatResponseStream; -(function (ChatResponseStream) { - ChatResponseStream.visit = (value, visitor) => { - if (value.messageMetadataEvent !== undefined) - return visitor.messageMetadataEvent(value.messageMetadataEvent); - if (value.assistantResponseEvent !== undefined) - return visitor.assistantResponseEvent(value.assistantResponseEvent); - if (value.codeReferenceEvent !== undefined) - return visitor.codeReferenceEvent(value.codeReferenceEvent); - if (value.supplementaryWebLinksEvent !== undefined) - return visitor.supplementaryWebLinksEvent(value.supplementaryWebLinksEvent); - if (value.followupPromptEvent !== undefined) - return visitor.followupPromptEvent(value.followupPromptEvent); - if (value.codeEvent !== undefined) - return visitor.codeEvent(value.codeEvent); - if (value.intentsEvent !== undefined) - return visitor.intentsEvent(value.intentsEvent); - if (value.invalidStateEvent !== undefined) - return visitor.invalidStateEvent(value.invalidStateEvent); - if (value.error !== undefined) - return visitor.error(value.error); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(ChatResponseStream = exports.ChatResponseStream || (exports.ChatResponseStream = {})); -const ChatResponseStreamFilterSensitiveLog = (obj) => { - if (obj.messageMetadataEvent !== undefined) - return { messageMetadataEvent: obj.messageMetadataEvent - }; - if (obj.assistantResponseEvent !== undefined) - return { assistantResponseEvent: (0, exports.AssistantResponseEventFilterSensitiveLog)(obj.assistantResponseEvent) - }; - if (obj.codeReferenceEvent !== undefined) - return { codeReferenceEvent: obj.codeReferenceEvent - }; - if (obj.supplementaryWebLinksEvent !== undefined) - return { supplementaryWebLinksEvent: (0, exports.SupplementaryWebLinksEventFilterSensitiveLog)(obj.supplementaryWebLinksEvent) - }; - if (obj.followupPromptEvent !== undefined) - return { followupPromptEvent: (0, exports.FollowupPromptEventFilterSensitiveLog)(obj.followupPromptEvent) - }; - if (obj.codeEvent !== undefined) - return { codeEvent: (0, exports.CodeEventFilterSensitiveLog)(obj.codeEvent) - }; - if (obj.intentsEvent !== undefined) - return { intentsEvent: (0, exports.IntentsEventFilterSensitiveLog)(obj.intentsEvent) - }; - if (obj.invalidStateEvent !== undefined) - return { invalidStateEvent: obj.invalidStateEvent - }; - if (obj.error !== undefined) - return { error: obj.error - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -exports.ChatResponseStreamFilterSensitiveLog = ChatResponseStreamFilterSensitiveLog; -exports.ChatTriggerType = { - DIAGNOSTIC: "DIAGNOSTIC", - MANUAL: "MANUAL", -}; -exports.ContextTruncationScheme = { - ANALYSIS: "ANALYSIS", - GUMBY: "GUMBY", -}; -const ConversationStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.history && { history: obj.history.map(item => (0, exports.ChatMessageFilterSensitiveLog)(item)) - }), - ...(obj.currentMessage && { currentMessage: (0, exports.ChatMessageFilterSensitiveLog)(obj.currentMessage) - }), -}); -exports.ConversationStateFilterSensitiveLog = ConversationStateFilterSensitiveLog; -class DryRunOperationException extends CodeWhispererStreamingServiceException_1.CodeWhispererStreamingServiceException { - constructor(opts) { - super({ - name: "DryRunOperationException", - $fault: "client", - ...opts - }); - this.name = "DryRunOperationException"; - this.$fault = "client"; - Object.setPrototypeOf(this, DryRunOperationException.prototype); - this.responseCode = opts.responseCode; - } -} -exports.DryRunOperationException = DryRunOperationException; -exports.TransformationDownloadArtifactType = { - CLIENT_INSTRUCTIONS: "ClientInstructions", - LOGS: "Logs", -}; -var ExportContext; -(function (ExportContext) { - ExportContext.visit = (value, visitor) => { - if (value.transformationExportContext !== undefined) - return visitor.transformationExportContext(value.transformationExportContext); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(ExportContext = exports.ExportContext || (exports.ExportContext = {})); -exports.ExportIntent = { - TASK_ASSIST: "TASK_ASSIST", - TRANSFORMATION: "TRANSFORMATION", -}; -var ResultArchiveStream; -(function (ResultArchiveStream) { - ResultArchiveStream.visit = (value, visitor) => { - if (value.binaryMetadataEvent !== undefined) - return visitor.binaryMetadataEvent(value.binaryMetadataEvent); - if (value.binaryPayloadEvent !== undefined) - return visitor.binaryPayloadEvent(value.binaryPayloadEvent); - if (value.internalServerException !== undefined) - return visitor.internalServerException(value.internalServerException); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(ResultArchiveStream = exports.ResultArchiveStream || (exports.ResultArchiveStream = {})); -const ResultArchiveStreamFilterSensitiveLog = (obj) => { - if (obj.binaryMetadataEvent !== undefined) - return { binaryMetadataEvent: smithy_client_1.SENSITIVE_STRING - }; - if (obj.binaryPayloadEvent !== undefined) - return { binaryPayloadEvent: smithy_client_1.SENSITIVE_STRING - }; - if (obj.internalServerException !== undefined) - return { internalServerException: obj.internalServerException - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -exports.ResultArchiveStreamFilterSensitiveLog = ResultArchiveStreamFilterSensitiveLog; -class ServiceQuotaExceededException extends CodeWhispererStreamingServiceException_1.CodeWhispererStreamingServiceException { - constructor(opts) { - super({ - name: "ServiceQuotaExceededException", - $fault: "client", - ...opts - }); - this.name = "ServiceQuotaExceededException"; - this.$fault = "client"; - Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype); - } -} -exports.ServiceQuotaExceededException = ServiceQuotaExceededException; -const GenerateAssistantResponseRequestFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.conversationState && { conversationState: (0, exports.ConversationStateFilterSensitiveLog)(obj.conversationState) - }), -}); -exports.GenerateAssistantResponseRequestFilterSensitiveLog = GenerateAssistantResponseRequestFilterSensitiveLog; -const GenerateAssistantResponseResponseFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.generateAssistantResponseResponse && { generateAssistantResponseResponse: 'STREAMING_CONTENT' - }), -}); -exports.GenerateAssistantResponseResponseFilterSensitiveLog = GenerateAssistantResponseResponseFilterSensitiveLog; -const ExportResultArchiveResponseFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.body && { body: 'STREAMING_CONTENT' - }), -}); -exports.ExportResultArchiveResponseFilterSensitiveLog = ExportResultArchiveResponseFilterSensitiveLog; -exports.Origin = { - CHATBOT: "CHATBOT", - CONSOLE: "CONSOLE", - DOCUMENTATION: "DOCUMENTATION", - IDE: "IDE", - MARKETING: "MARKETING", - MD: "MD", - MOBILE: "MOBILE", - SERVICE_INTERNAL: "SERVICE_INTERNAL", - UNIFIED_SEARCH: "UNIFIED_SEARCH", - UNKNOWN: "UNKNOWN", -}; -const ConverseStreamRequestFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.conversationState && { conversationState: (0, exports.ConversationStateFilterSensitiveLog)(obj.conversationState) - }), -}); -exports.ConverseStreamRequestFilterSensitiveLog = ConverseStreamRequestFilterSensitiveLog; -const ConverseStreamResponseFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.converseStreamResponse && { converseStreamResponse: 'STREAMING_CONTENT' - }), -}); -exports.ConverseStreamResponseFilterSensitiveLog = ConverseStreamResponseFilterSensitiveLog; -const GenerateTaskAssistPlanRequestFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.conversationState && { conversationState: (0, exports.ConversationStateFilterSensitiveLog)(obj.conversationState) - }), -}); -exports.GenerateTaskAssistPlanRequestFilterSensitiveLog = GenerateTaskAssistPlanRequestFilterSensitiveLog; -const GenerateTaskAssistPlanResponseFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.planningResponseStream && { planningResponseStream: 'STREAMING_CONTENT' - }), -}); -exports.GenerateTaskAssistPlanResponseFilterSensitiveLog = GenerateTaskAssistPlanResponseFilterSensitiveLog; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/protocols/Aws_restJson1.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/protocols/Aws_restJson1.js deleted file mode 100644 index 0d7bc03af21..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/protocols/Aws_restJson1.js +++ /dev/null @@ -1,590 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.de_ConverseStreamCommand = exports.de_GenerateTaskAssistPlanCommand = exports.de_GenerateAssistantResponseCommand = exports.de_ExportResultArchiveCommand = exports.se_ConverseStreamCommand = exports.se_GenerateTaskAssistPlanCommand = exports.se_GenerateAssistantResponseCommand = exports.se_ExportResultArchiveCommand = void 0; -const CodeWhispererStreamingServiceException_1 = require("../models/CodeWhispererStreamingServiceException"); -const models_0_1 = require("../models/models_0"); -const protocol_http_1 = require("@smithy/protocol-http"); -const smithy_client_1 = require("@smithy/smithy-client"); -const se_ExportResultArchiveCommand = async (input, context) => { - const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); - const headers = { - 'content-type': 'application/json', - }; - let resolvedPath = `${basePath?.endsWith('/') ? basePath.slice(0, -1) : (basePath || '')}` + "/exportResultArchive"; - let body; - body = JSON.stringify((0, smithy_client_1.take)(input, { - 'exportContext': _ => (0, smithy_client_1._json)(_), - 'exportId': [], - 'exportIntent': [], - })); - return new protocol_http_1.HttpRequest({ - protocol, - hostname, - port, - method: "POST", - headers, - path: resolvedPath, - body, - }); -}; -exports.se_ExportResultArchiveCommand = se_ExportResultArchiveCommand; -const se_GenerateAssistantResponseCommand = async (input, context) => { - const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); - const headers = { - 'content-type': 'application/json', - }; - let resolvedPath = `${basePath?.endsWith('/') ? basePath.slice(0, -1) : (basePath || '')}` + "/generateAssistantResponse"; - let body; - body = JSON.stringify((0, smithy_client_1.take)(input, { - 'conversationState': _ => (0, smithy_client_1._json)(_), - 'profileArn': [], - })); - return new protocol_http_1.HttpRequest({ - protocol, - hostname, - port, - method: "POST", - headers, - path: resolvedPath, - body, - }); -}; -exports.se_GenerateAssistantResponseCommand = se_GenerateAssistantResponseCommand; -const se_GenerateTaskAssistPlanCommand = async (input, context) => { - const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); - const headers = { - 'content-type': 'application/json', - }; - let resolvedPath = `${basePath?.endsWith('/') ? basePath.slice(0, -1) : (basePath || '')}` + "/generateTaskAssistPlan"; - let body; - body = JSON.stringify((0, smithy_client_1.take)(input, { - 'conversationState': _ => (0, smithy_client_1._json)(_), - 'workspaceState': _ => (0, smithy_client_1._json)(_), - })); - return new protocol_http_1.HttpRequest({ - protocol, - hostname, - port, - method: "POST", - headers, - path: resolvedPath, - body, - }); -}; -exports.se_GenerateTaskAssistPlanCommand = se_GenerateTaskAssistPlanCommand; -const se_ConverseStreamCommand = async (input, context) => { - const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); - const headers = { - 'content-type': 'application/json', - }; - let resolvedPath = `${basePath?.endsWith('/') ? basePath.slice(0, -1) : (basePath || '')}` + "/ConverseStream"; - let body; - body = JSON.stringify((0, smithy_client_1.take)(input, { - 'conversationState': _ => (0, smithy_client_1._json)(_), - 'dryRun': [], - 'profileArn': [], - 'source': [], - })); - return new protocol_http_1.HttpRequest({ - protocol, - hostname, - port, - method: "POST", - headers, - path: resolvedPath, - body, - }); -}; -exports.se_ConverseStreamCommand = se_ConverseStreamCommand; -const de_ExportResultArchiveCommand = async (output, context) => { - if (output.statusCode !== 200 && output.statusCode >= 300) { - return de_ExportResultArchiveCommandError(output, context); - } - const contents = (0, smithy_client_1.map)({ - $metadata: deserializeMetadata(output), - }); - const data = output.body; - contents.body = de_ResultArchiveStream(data, context); - return contents; -}; -exports.de_ExportResultArchiveCommand = de_ExportResultArchiveCommand; -const de_ExportResultArchiveCommandError = async (output, context) => { - const parsedOutput = { - ...output, - body: await parseErrorBody(output.body, context) - }; - const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); - switch (errorCode) { - case "AccessDeniedException": - case "com.amazon.aws.codewhisperer#AccessDeniedException": - throw await de_AccessDeniedExceptionRes(parsedOutput, context); - case "ConflictException": - case "com.amazon.aws.codewhisperer#ConflictException": - throw await de_ConflictExceptionRes(parsedOutput, context); - case "InternalServerException": - case "com.amazon.aws.codewhisperer#InternalServerException": - throw await de_InternalServerExceptionRes(parsedOutput, context); - case "ResourceNotFoundException": - case "com.amazon.aws.codewhisperer#ResourceNotFoundException": - throw await de_ResourceNotFoundExceptionRes(parsedOutput, context); - case "ThrottlingException": - case "com.amazon.aws.codewhisperer#ThrottlingException": - throw await de_ThrottlingExceptionRes(parsedOutput, context); - case "ValidationException": - case "com.amazon.aws.codewhisperer#ValidationException": - throw await de_ValidationExceptionRes(parsedOutput, context); - default: - const parsedBody = parsedOutput.body; - return throwDefaultError({ - output, - parsedBody, - errorCode - }); - } -}; -const de_GenerateAssistantResponseCommand = async (output, context) => { - if (output.statusCode !== 200 && output.statusCode >= 300) { - return de_GenerateAssistantResponseCommandError(output, context); - } - const contents = (0, smithy_client_1.map)({ - $metadata: deserializeMetadata(output), - conversationId: [, output.headers['x-amzn-codewhisperer-conversation-id']], - }); - const data = output.body; - contents.generateAssistantResponseResponse = de_ChatResponseStream(data, context); - return contents; -}; -exports.de_GenerateAssistantResponseCommand = de_GenerateAssistantResponseCommand; -const de_GenerateAssistantResponseCommandError = async (output, context) => { - const parsedOutput = { - ...output, - body: await parseErrorBody(output.body, context) - }; - const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); - switch (errorCode) { - case "AccessDeniedException": - case "com.amazon.aws.codewhisperer#AccessDeniedException": - throw await de_AccessDeniedExceptionRes(parsedOutput, context); - case "InternalServerException": - case "com.amazon.aws.codewhisperer#InternalServerException": - throw await de_InternalServerExceptionRes(parsedOutput, context); - case "ThrottlingException": - case "com.amazon.aws.codewhisperer#ThrottlingException": - throw await de_ThrottlingExceptionRes(parsedOutput, context); - case "ValidationException": - case "com.amazon.aws.codewhisperer#ValidationException": - throw await de_ValidationExceptionRes(parsedOutput, context); - default: - const parsedBody = parsedOutput.body; - return throwDefaultError({ - output, - parsedBody, - errorCode - }); - } -}; -const de_GenerateTaskAssistPlanCommand = async (output, context) => { - if (output.statusCode !== 200 && output.statusCode >= 300) { - return de_GenerateTaskAssistPlanCommandError(output, context); - } - const contents = (0, smithy_client_1.map)({ - $metadata: deserializeMetadata(output), - }); - const data = output.body; - contents.planningResponseStream = de_ChatResponseStream(data, context); - return contents; -}; -exports.de_GenerateTaskAssistPlanCommand = de_GenerateTaskAssistPlanCommand; -const de_GenerateTaskAssistPlanCommandError = async (output, context) => { - const parsedOutput = { - ...output, - body: await parseErrorBody(output.body, context) - }; - const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); - switch (errorCode) { - case "AccessDeniedException": - case "com.amazon.aws.codewhisperer#AccessDeniedException": - throw await de_AccessDeniedExceptionRes(parsedOutput, context); - case "ConflictException": - case "com.amazon.aws.codewhisperer#ConflictException": - throw await de_ConflictExceptionRes(parsedOutput, context); - case "InternalServerException": - case "com.amazon.aws.codewhisperer#InternalServerException": - throw await de_InternalServerExceptionRes(parsedOutput, context); - case "ResourceNotFoundException": - case "com.amazon.aws.codewhisperer#ResourceNotFoundException": - throw await de_ResourceNotFoundExceptionRes(parsedOutput, context); - case "ServiceQuotaExceededException": - case "com.amazon.aws.codewhisperer#ServiceQuotaExceededException": - throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context); - case "ThrottlingException": - case "com.amazon.aws.codewhisperer#ThrottlingException": - throw await de_ThrottlingExceptionRes(parsedOutput, context); - case "ValidationException": - case "com.amazon.aws.codewhisperer#ValidationException": - throw await de_ValidationExceptionRes(parsedOutput, context); - default: - const parsedBody = parsedOutput.body; - return throwDefaultError({ - output, - parsedBody, - errorCode - }); - } -}; -const de_ConverseStreamCommand = async (output, context) => { - if (output.statusCode !== 200 && output.statusCode >= 300) { - return de_ConverseStreamCommandError(output, context); - } - const contents = (0, smithy_client_1.map)({ - $metadata: deserializeMetadata(output), - conversationId: [, output.headers['x-amzn-q-conversation-id']], - utteranceId: [, output.headers['x-amzn-q-utterance-id']], - }); - const data = output.body; - contents.converseStreamResponse = de_ChatResponseStream(data, context); - return contents; -}; -exports.de_ConverseStreamCommand = de_ConverseStreamCommand; -const de_ConverseStreamCommandError = async (output, context) => { - const parsedOutput = { - ...output, - body: await parseErrorBody(output.body, context) - }; - const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); - switch (errorCode) { - case "AccessDeniedException": - case "com.amazon.aws.codewhisperer#AccessDeniedException": - throw await de_AccessDeniedExceptionRes(parsedOutput, context); - case "ConflictException": - case "com.amazon.aws.codewhisperer#ConflictException": - throw await de_ConflictExceptionRes(parsedOutput, context); - case "DryRunOperationException": - case "com.amazon.aws.codewhisperer#DryRunOperationException": - throw await de_DryRunOperationExceptionRes(parsedOutput, context); - case "InternalServerException": - case "com.amazon.aws.codewhisperer#InternalServerException": - throw await de_InternalServerExceptionRes(parsedOutput, context); - case "ResourceNotFoundException": - case "com.amazon.aws.codewhisperer#ResourceNotFoundException": - throw await de_ResourceNotFoundExceptionRes(parsedOutput, context); - case "ServiceQuotaExceededException": - case "com.amazon.aws.codewhisperer#ServiceQuotaExceededException": - throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context); - case "ThrottlingException": - case "com.amazon.aws.codewhisperer#ThrottlingException": - throw await de_ThrottlingExceptionRes(parsedOutput, context); - case "ValidationException": - case "com.amazon.aws.codewhisperer#ValidationException": - throw await de_ValidationExceptionRes(parsedOutput, context); - default: - const parsedBody = parsedOutput.body; - return throwDefaultError({ - output, - parsedBody, - errorCode - }); - } -}; -const throwDefaultError = (0, smithy_client_1.withBaseException)(CodeWhispererStreamingServiceException_1.CodeWhispererStreamingServiceException); -const de_AccessDeniedExceptionRes = async (parsedOutput, context) => { - const contents = (0, smithy_client_1.map)({}); - const data = parsedOutput.body; - const doc = (0, smithy_client_1.take)(data, { - 'message': smithy_client_1.expectString, - 'reason': smithy_client_1.expectString, - }); - Object.assign(contents, doc); - const exception = new models_0_1.AccessDeniedException({ - $metadata: deserializeMetadata(parsedOutput), - ...contents - }); - return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body); -}; -const de_ConflictExceptionRes = async (parsedOutput, context) => { - const contents = (0, smithy_client_1.map)({}); - const data = parsedOutput.body; - const doc = (0, smithy_client_1.take)(data, { - 'message': smithy_client_1.expectString, - }); - Object.assign(contents, doc); - const exception = new models_0_1.ConflictException({ - $metadata: deserializeMetadata(parsedOutput), - ...contents - }); - return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body); -}; -const de_DryRunOperationExceptionRes = async (parsedOutput, context) => { - const contents = (0, smithy_client_1.map)({}); - const data = parsedOutput.body; - const doc = (0, smithy_client_1.take)(data, { - 'message': smithy_client_1.expectString, - }); - Object.assign(contents, doc); - const exception = new models_0_1.DryRunOperationException({ - $metadata: deserializeMetadata(parsedOutput), - ...contents - }); - return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body); -}; -const de_InternalServerExceptionRes = async (parsedOutput, context) => { - const contents = (0, smithy_client_1.map)({}); - const data = parsedOutput.body; - const doc = (0, smithy_client_1.take)(data, { - 'message': smithy_client_1.expectString, - }); - Object.assign(contents, doc); - const exception = new models_0_1.InternalServerException({ - $metadata: deserializeMetadata(parsedOutput), - ...contents - }); - return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body); -}; -const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => { - const contents = (0, smithy_client_1.map)({}); - const data = parsedOutput.body; - const doc = (0, smithy_client_1.take)(data, { - 'message': smithy_client_1.expectString, - }); - Object.assign(contents, doc); - const exception = new models_0_1.ResourceNotFoundException({ - $metadata: deserializeMetadata(parsedOutput), - ...contents - }); - return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body); -}; -const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => { - const contents = (0, smithy_client_1.map)({}); - const data = parsedOutput.body; - const doc = (0, smithy_client_1.take)(data, { - 'message': smithy_client_1.expectString, - }); - Object.assign(contents, doc); - const exception = new models_0_1.ServiceQuotaExceededException({ - $metadata: deserializeMetadata(parsedOutput), - ...contents - }); - return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body); -}; -const de_ThrottlingExceptionRes = async (parsedOutput, context) => { - const contents = (0, smithy_client_1.map)({}); - const data = parsedOutput.body; - const doc = (0, smithy_client_1.take)(data, { - 'message': smithy_client_1.expectString, - }); - Object.assign(contents, doc); - const exception = new models_0_1.ThrottlingException({ - $metadata: deserializeMetadata(parsedOutput), - ...contents - }); - return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body); -}; -const de_ValidationExceptionRes = async (parsedOutput, context) => { - const contents = (0, smithy_client_1.map)({}); - const data = parsedOutput.body; - const doc = (0, smithy_client_1.take)(data, { - 'message': smithy_client_1.expectString, - 'reason': smithy_client_1.expectString, - }); - Object.assign(contents, doc); - const exception = new models_0_1.ValidationException({ - $metadata: deserializeMetadata(parsedOutput), - ...contents - }); - return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body); -}; -const de_ChatResponseStream = (output, context) => { - return context.eventStreamMarshaller.deserialize(output, async (event) => { - if (event["messageMetadataEvent"] != null) { - return { - messageMetadataEvent: await de_MessageMetadataEvent_event(event["messageMetadataEvent"], context), - }; - } - if (event["assistantResponseEvent"] != null) { - return { - assistantResponseEvent: await de_AssistantResponseEvent_event(event["assistantResponseEvent"], context), - }; - } - if (event["codeReferenceEvent"] != null) { - return { - codeReferenceEvent: await de_CodeReferenceEvent_event(event["codeReferenceEvent"], context), - }; - } - if (event["supplementaryWebLinksEvent"] != null) { - return { - supplementaryWebLinksEvent: await de_SupplementaryWebLinksEvent_event(event["supplementaryWebLinksEvent"], context), - }; - } - if (event["followupPromptEvent"] != null) { - return { - followupPromptEvent: await de_FollowupPromptEvent_event(event["followupPromptEvent"], context), - }; - } - if (event["codeEvent"] != null) { - return { - codeEvent: await de_CodeEvent_event(event["codeEvent"], context), - }; - } - if (event["intentsEvent"] != null) { - return { - intentsEvent: await de_IntentsEvent_event(event["intentsEvent"], context), - }; - } - if (event["invalidStateEvent"] != null) { - return { - invalidStateEvent: await de_InvalidStateEvent_event(event["invalidStateEvent"], context), - }; - } - if (event["error"] != null) { - return { - error: await de_InternalServerException_event(event["error"], context), - }; - } - return { $unknown: output }; - }); -}; -const de_ResultArchiveStream = (output, context) => { - return context.eventStreamMarshaller.deserialize(output, async (event) => { - if (event["binaryMetadataEvent"] != null) { - return { - binaryMetadataEvent: await de_BinaryMetadataEvent_event(event["binaryMetadataEvent"], context), - }; - } - if (event["binaryPayloadEvent"] != null) { - return { - binaryPayloadEvent: await de_BinaryPayloadEvent_event(event["binaryPayloadEvent"], context), - }; - } - if (event["internalServerException"] != null) { - return { - internalServerException: await de_InternalServerException_event(event["internalServerException"], context), - }; - } - return { $unknown: output }; - }); -}; -const de_AssistantResponseEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, (0, smithy_client_1._json)(data)); - return contents; -}; -const de_BinaryMetadataEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, (0, smithy_client_1._json)(data)); - return contents; -}; -const de_BinaryPayloadEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, de_BinaryPayloadEvent(data, context)); - return contents; -}; -const de_CodeEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, (0, smithy_client_1._json)(data)); - return contents; -}; -const de_CodeReferenceEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, (0, smithy_client_1._json)(data)); - return contents; -}; -const de_FollowupPromptEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, (0, smithy_client_1._json)(data)); - return contents; -}; -const de_IntentsEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, (0, smithy_client_1._json)(data)); - return contents; -}; -const de_InternalServerException_event = async (output, context) => { - const parsedOutput = { - ...output, - body: await parseBody(output.body, context) - }; - return de_InternalServerExceptionRes(parsedOutput, context); -}; -const de_InvalidStateEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, (0, smithy_client_1._json)(data)); - return contents; -}; -const de_MessageMetadataEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, (0, smithy_client_1._json)(data)); - return contents; -}; -const de_SupplementaryWebLinksEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, (0, smithy_client_1._json)(data)); - return contents; -}; -const de_BinaryPayloadEvent = (output, context) => { - return (0, smithy_client_1.take)(output, { - 'bytes': context.base64Decoder, - }); -}; -const deserializeMetadata = (output) => ({ - httpStatusCode: output.statusCode, - requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"], - extendedRequestId: output.headers["x-amz-id-2"], - cfId: output.headers["x-amz-cf-id"], -}); -const collectBodyString = (streamBody, context) => (0, smithy_client_1.collectBody)(streamBody, context).then(body => context.utf8Encoder(body)); -const isSerializableHeaderValue = (value) => value !== undefined && - value !== null && - value !== "" && - (!Object.getOwnPropertyNames(value).includes("length") || - value.length != 0) && - (!Object.getOwnPropertyNames(value).includes("size") || value.size != 0); -const parseBody = (streamBody, context) => collectBodyString(streamBody, context).then(encoded => { - if (encoded.length) { - return JSON.parse(encoded); - } - return {}; -}); -const parseErrorBody = async (errorBody, context) => { - const value = await parseBody(errorBody, context); - value.message = value.message ?? value.Message; - return value; -}; -const loadRestJsonErrorCode = (output, data) => { - const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase()); - const sanitizeErrorCode = (rawValue) => { - let cleanValue = rawValue; - if (typeof cleanValue === "number") { - cleanValue = cleanValue.toString(); - } - if (cleanValue.indexOf(",") >= 0) { - cleanValue = cleanValue.split(",")[0]; - } - if (cleanValue.indexOf(":") >= 0) { - cleanValue = cleanValue.split(":")[0]; - } - if (cleanValue.indexOf("#") >= 0) { - cleanValue = cleanValue.split("#")[1]; - } - return cleanValue; - }; - const headerKey = findKey(output.headers, "x-amzn-errortype"); - if (headerKey !== undefined) { - return sanitizeErrorCode(output.headers[headerKey]); - } - if (data.code !== undefined) { - return sanitizeErrorCode(data.code); - } - if (data["__type"] !== undefined) { - return sanitizeErrorCode(data["__type"]); - } -}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.browser.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.browser.js deleted file mode 100644 index bd34e782028..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.browser.js +++ /dev/null @@ -1,37 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.getRuntimeConfig = void 0; -const tslib_1 = require("tslib"); -const package_json_1 = tslib_1.__importDefault(require("../package.json")); -const sha256_browser_1 = require("@aws-crypto/sha256-browser"); -const util_user_agent_browser_1 = require("@aws-sdk/util-user-agent-browser"); -const config_resolver_1 = require("@smithy/config-resolver"); -const eventstream_serde_browser_1 = require("@smithy/eventstream-serde-browser"); -const fetch_http_handler_1 = require("@smithy/fetch-http-handler"); -const util_body_length_browser_1 = require("@smithy/util-body-length-browser"); -const util_retry_1 = require("@smithy/util-retry"); -const runtimeConfig_shared_1 = require("./runtimeConfig.shared"); -const smithy_client_1 = require("@smithy/smithy-client"); -const util_defaults_mode_browser_1 = require("@smithy/util-defaults-mode-browser"); -const getRuntimeConfig = (config) => { - const defaultsMode = (0, util_defaults_mode_browser_1.resolveDefaultsModeConfig)(config); - const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode); - const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config); - return { - ...clientSharedValues, - ...config, - runtime: "browser", - defaultsMode, - bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_browser_1.calculateBodyLength, - defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_browser_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }), - eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventstream_serde_browser_1.eventStreamSerdeProvider, - maxAttempts: config?.maxAttempts ?? util_retry_1.DEFAULT_MAX_ATTEMPTS, - requestHandler: config?.requestHandler ?? new fetch_http_handler_1.FetchHttpHandler(defaultConfigProvider), - retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE), - sha256: config?.sha256 ?? sha256_browser_1.Sha256, - streamCollector: config?.streamCollector ?? fetch_http_handler_1.streamCollector, - useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(config_resolver_1.DEFAULT_USE_DUALSTACK_ENDPOINT)), - useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(config_resolver_1.DEFAULT_USE_FIPS_ENDPOINT)), - }; -}; -exports.getRuntimeConfig = getRuntimeConfig; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.js deleted file mode 100644 index d9fc9a53dc2..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.js +++ /dev/null @@ -1,41 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.getRuntimeConfig = void 0; -const tslib_1 = require("tslib"); -const package_json_1 = tslib_1.__importDefault(require("../package.json")); -const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node"); -const config_resolver_1 = require("@smithy/config-resolver"); -const eventstream_serde_node_1 = require("@smithy/eventstream-serde-node"); -const hash_node_1 = require("@smithy/hash-node"); -const middleware_retry_1 = require("@smithy/middleware-retry"); -const node_config_provider_1 = require("@smithy/node-config-provider"); -const node_http_handler_1 = require("@smithy/node-http-handler"); -const util_body_length_node_1 = require("@smithy/util-body-length-node"); -const util_retry_1 = require("@smithy/util-retry"); -const runtimeConfig_shared_1 = require("./runtimeConfig.shared"); -const smithy_client_1 = require("@smithy/smithy-client"); -const util_defaults_mode_node_1 = require("@smithy/util-defaults-mode-node"); -const smithy_client_2 = require("@smithy/smithy-client"); -const getRuntimeConfig = (config) => { - (0, smithy_client_2.emitWarningIfUnsupportedVersion)(process.version); - const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config); - const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode); - const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config); - return { - ...clientSharedValues, - ...config, - runtime: "node", - defaultsMode, - bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength, - defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }), - eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventstream_serde_node_1.eventStreamSerdeProvider, - maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS), - requestHandler: config?.requestHandler ?? new node_http_handler_1.NodeHttpHandler(defaultConfigProvider), - retryMode: config?.retryMode ?? (0, node_config_provider_1.loadConfig)({ ...middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS, default: async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE, }), - sha256: config?.sha256 ?? hash_node_1.Hash.bind(null, "sha256"), - streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector, - useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS), - useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS), - }; -}; -exports.getRuntimeConfig = getRuntimeConfig; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.native.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.native.js deleted file mode 100644 index 34c5f8ece1d..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.native.js +++ /dev/null @@ -1,15 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.getRuntimeConfig = void 0; -const sha256_js_1 = require("@aws-crypto/sha256-js"); -const runtimeConfig_browser_1 = require("./runtimeConfig.browser"); -const getRuntimeConfig = (config) => { - const browserDefaults = (0, runtimeConfig_browser_1.getRuntimeConfig)(config); - return { - ...browserDefaults, - ...config, - runtime: "react-native", - sha256: config?.sha256 ?? sha256_js_1.Sha256, - }; -}; -exports.getRuntimeConfig = getRuntimeConfig; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.shared.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.shared.js deleted file mode 100644 index 49e4183f40d..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeConfig.shared.js +++ /dev/null @@ -1,22 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.getRuntimeConfig = void 0; -const endpoints_1 = require("./endpoints"); -const smithy_client_1 = require("@smithy/smithy-client"); -const url_parser_1 = require("@smithy/url-parser"); -const util_base64_1 = require("@smithy/util-base64"); -const util_utf8_1 = require("@smithy/util-utf8"); -const getRuntimeConfig = (config) => ({ - apiVersion: "2023-11-27", - base64Decoder: config?.base64Decoder ?? util_base64_1.fromBase64, - base64Encoder: config?.base64Encoder ?? util_base64_1.toBase64, - disableHostPrefix: config?.disableHostPrefix ?? false, - extensions: config?.extensions ?? [], - logger: config?.logger ?? new smithy_client_1.NoOpLogger(), - regionInfoProvider: config?.regionInfoProvider ?? endpoints_1.defaultRegionInfoProvider, - serviceId: config?.serviceId ?? "CodeWhispererStreaming", - urlParser: config?.urlParser ?? url_parser_1.parseUrl, - utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8, - utf8Encoder: config?.utf8Encoder ?? util_utf8_1.toUtf8, -}); -exports.getRuntimeConfig = getRuntimeConfig; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeExtensions.js b/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeExtensions.js deleted file mode 100644 index 4f256a7c36a..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-cjs/runtimeExtensions.js +++ /dev/null @@ -1,22 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.resolveRuntimeExtensions = void 0; -const region_config_resolver_1 = require("@aws-sdk/region-config-resolver"); -const protocol_http_1 = require("@smithy/protocol-http"); -const smithy_client_1 = require("@smithy/smithy-client"); -const asPartial = (t) => t; -const resolveRuntimeExtensions = (runtimeConfig, extensions) => { - const extensionConfiguration = { - ...asPartial((0, region_config_resolver_1.getAwsRegionExtensionConfiguration)(runtimeConfig)), - ...asPartial((0, smithy_client_1.getDefaultExtensionConfiguration)(runtimeConfig)), - ...asPartial((0, protocol_http_1.getHttpHandlerExtensionConfiguration)(runtimeConfig)), - }; - extensions.forEach(extension => extension.configure(extensionConfiguration)); - return { - ...runtimeConfig, - ...(0, region_config_resolver_1.resolveAwsRegionExtensionConfiguration)(extensionConfiguration), - ...(0, smithy_client_1.resolveDefaultRuntimeConfig)(extensionConfiguration), - ...(0, protocol_http_1.resolveHttpHandlerRuntimeConfig)(extensionConfiguration), - }; -}; -exports.resolveRuntimeExtensions = resolveRuntimeExtensions; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreaming.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreaming.js deleted file mode 100644 index 7d154888361..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreaming.js +++ /dev/null @@ -1,15 +0,0 @@ -import { CodeWhispererStreamingClient, } from "./CodeWhispererStreamingClient"; -import { ConverseStreamCommand, } from "./commands/ConverseStreamCommand"; -import { ExportResultArchiveCommand, } from "./commands/ExportResultArchiveCommand"; -import { GenerateAssistantResponseCommand, } from "./commands/GenerateAssistantResponseCommand"; -import { GenerateTaskAssistPlanCommand, } from "./commands/GenerateTaskAssistPlanCommand"; -import { createAggregatedClient } from "@smithy/smithy-client"; -const commands = { - ExportResultArchiveCommand, - GenerateAssistantResponseCommand, - GenerateTaskAssistPlanCommand, - ConverseStreamCommand, -}; -export class CodeWhispererStreaming extends CodeWhispererStreamingClient { -} -createAggregatedClient(commands, CodeWhispererStreaming); diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreamingClient.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreamingClient.js deleted file mode 100644 index 7a6879f0530..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-es/CodeWhispererStreamingClient.js +++ /dev/null @@ -1,38 +0,0 @@ -import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, } from "./runtimeExtensions"; -import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; -import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; -import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; -import { getTokenPlugin, resolveTokenConfig, } from "@aws-sdk/middleware-token"; -import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent"; -import { resolveEndpointsConfig, resolveRegionConfig, } from "@smithy/config-resolver"; -import { resolveEventStreamSerdeConfig, } from "@smithy/eventstream-serde-config-resolver"; -import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { getRetryPlugin, resolveRetryConfig, } from "@smithy/middleware-retry"; -import { Client as __Client, } from "@smithy/smithy-client"; -export { __Client }; -export class CodeWhispererStreamingClient extends __Client { - constructor(...[configuration]) { - let _config_0 = __getRuntimeConfig(configuration || {}); - let _config_1 = resolveRegionConfig(_config_0); - let _config_2 = resolveEndpointsConfig(_config_1); - let _config_3 = resolveRetryConfig(_config_2); - let _config_4 = resolveHostHeaderConfig(_config_3); - let _config_5 = resolveTokenConfig(_config_4); - let _config_6 = resolveUserAgentConfig(_config_5); - let _config_7 = resolveEventStreamSerdeConfig(_config_6); - let _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []); - super(_config_8); - this.config = _config_8; - this.middlewareStack.use(getRetryPlugin(this.config)); - this.middlewareStack.use(getContentLengthPlugin(this.config)); - this.middlewareStack.use(getHostHeaderPlugin(this.config)); - this.middlewareStack.use(getLoggerPlugin(this.config)); - this.middlewareStack.use(getRecursionDetectionPlugin(this.config)); - this.middlewareStack.use(getTokenPlugin(this.config)); - this.middlewareStack.use(getUserAgentPlugin(this.config)); - } - destroy() { - super.destroy(); - } -} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/ConverseStreamCommand.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/ConverseStreamCommand.js deleted file mode 100644 index 7fbeacebeae..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/ConverseStreamCommand.js +++ /dev/null @@ -1,38 +0,0 @@ -import { ConverseStreamRequestFilterSensitiveLog, ConverseStreamResponseFilterSensitiveLog, } from "../models/models_0"; -import { de_ConverseStreamCommand, se_ConverseStreamCommand, } from "../protocols/Aws_restJson1"; -import { getSerdePlugin } from "@smithy/middleware-serde"; -import { Command as $Command } from "@smithy/smithy-client"; -import { SMITHY_CONTEXT_KEY, } from "@smithy/types"; -export { $Command }; -export class ConverseStreamCommand extends $Command { - constructor(input) { - super(); - this.input = input; - } - resolveMiddleware(clientStack, configuration, options) { - this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize)); - const stack = clientStack.concat(this.middlewareStack); - const { logger } = configuration; - const clientName = "CodeWhispererStreamingClient"; - const commandName = "ConverseStreamCommand"; - const handlerExecutionContext = { - logger, - clientName, - commandName, - inputFilterSensitiveLog: ConverseStreamRequestFilterSensitiveLog, - outputFilterSensitiveLog: ConverseStreamResponseFilterSensitiveLog, - [SMITHY_CONTEXT_KEY]: { - service: "AmazonCodeWhispererStreamingService", - operation: "ConverseStream", - }, - }; - const { requestHandler } = configuration; - return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext); - } - serialize(input, context) { - return se_ConverseStreamCommand(input, context); - } - deserialize(output, context) { - return de_ConverseStreamCommand(output, context); - } -} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/ExportResultArchiveCommand.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/ExportResultArchiveCommand.js deleted file mode 100644 index cce5f3aafcf..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/ExportResultArchiveCommand.js +++ /dev/null @@ -1,38 +0,0 @@ -import { ExportResultArchiveResponseFilterSensitiveLog, } from "../models/models_0"; -import { de_ExportResultArchiveCommand, se_ExportResultArchiveCommand, } from "../protocols/Aws_restJson1"; -import { getSerdePlugin } from "@smithy/middleware-serde"; -import { Command as $Command } from "@smithy/smithy-client"; -import { SMITHY_CONTEXT_KEY, } from "@smithy/types"; -export { $Command }; -export class ExportResultArchiveCommand extends $Command { - constructor(input) { - super(); - this.input = input; - } - resolveMiddleware(clientStack, configuration, options) { - this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize)); - const stack = clientStack.concat(this.middlewareStack); - const { logger } = configuration; - const clientName = "CodeWhispererStreamingClient"; - const commandName = "ExportResultArchiveCommand"; - const handlerExecutionContext = { - logger, - clientName, - commandName, - inputFilterSensitiveLog: (_) => _, - outputFilterSensitiveLog: ExportResultArchiveResponseFilterSensitiveLog, - [SMITHY_CONTEXT_KEY]: { - service: "AmazonCodeWhispererStreamingService", - operation: "ExportResultArchive", - }, - }; - const { requestHandler } = configuration; - return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext); - } - serialize(input, context) { - return se_ExportResultArchiveCommand(input, context); - } - deserialize(output, context) { - return de_ExportResultArchiveCommand(output, context); - } -} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/GenerateAssistantResponseCommand.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/GenerateAssistantResponseCommand.js deleted file mode 100644 index 5b01a093d27..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/GenerateAssistantResponseCommand.js +++ /dev/null @@ -1,38 +0,0 @@ -import { GenerateAssistantResponseRequestFilterSensitiveLog, GenerateAssistantResponseResponseFilterSensitiveLog, } from "../models/models_0"; -import { de_GenerateAssistantResponseCommand, se_GenerateAssistantResponseCommand, } from "../protocols/Aws_restJson1"; -import { getSerdePlugin } from "@smithy/middleware-serde"; -import { Command as $Command } from "@smithy/smithy-client"; -import { SMITHY_CONTEXT_KEY, } from "@smithy/types"; -export { $Command }; -export class GenerateAssistantResponseCommand extends $Command { - constructor(input) { - super(); - this.input = input; - } - resolveMiddleware(clientStack, configuration, options) { - this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize)); - const stack = clientStack.concat(this.middlewareStack); - const { logger } = configuration; - const clientName = "CodeWhispererStreamingClient"; - const commandName = "GenerateAssistantResponseCommand"; - const handlerExecutionContext = { - logger, - clientName, - commandName, - inputFilterSensitiveLog: GenerateAssistantResponseRequestFilterSensitiveLog, - outputFilterSensitiveLog: GenerateAssistantResponseResponseFilterSensitiveLog, - [SMITHY_CONTEXT_KEY]: { - service: "AmazonCodeWhispererStreamingService", - operation: "GenerateAssistantResponse", - }, - }; - const { requestHandler } = configuration; - return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext); - } - serialize(input, context) { - return se_GenerateAssistantResponseCommand(input, context); - } - deserialize(output, context) { - return de_GenerateAssistantResponseCommand(output, context); - } -} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/GenerateTaskAssistPlanCommand.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/GenerateTaskAssistPlanCommand.js deleted file mode 100644 index e8605e3bb9c..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/GenerateTaskAssistPlanCommand.js +++ /dev/null @@ -1,38 +0,0 @@ -import { GenerateTaskAssistPlanRequestFilterSensitiveLog, GenerateTaskAssistPlanResponseFilterSensitiveLog, } from "../models/models_0"; -import { de_GenerateTaskAssistPlanCommand, se_GenerateTaskAssistPlanCommand, } from "../protocols/Aws_restJson1"; -import { getSerdePlugin } from "@smithy/middleware-serde"; -import { Command as $Command } from "@smithy/smithy-client"; -import { SMITHY_CONTEXT_KEY, } from "@smithy/types"; -export { $Command }; -export class GenerateTaskAssistPlanCommand extends $Command { - constructor(input) { - super(); - this.input = input; - } - resolveMiddleware(clientStack, configuration, options) { - this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize)); - const stack = clientStack.concat(this.middlewareStack); - const { logger } = configuration; - const clientName = "CodeWhispererStreamingClient"; - const commandName = "GenerateTaskAssistPlanCommand"; - const handlerExecutionContext = { - logger, - clientName, - commandName, - inputFilterSensitiveLog: GenerateTaskAssistPlanRequestFilterSensitiveLog, - outputFilterSensitiveLog: GenerateTaskAssistPlanResponseFilterSensitiveLog, - [SMITHY_CONTEXT_KEY]: { - service: "AmazonCodeWhispererStreamingService", - operation: "GenerateTaskAssistPlan", - }, - }; - const { requestHandler } = configuration; - return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext); - } - serialize(input, context) { - return se_GenerateTaskAssistPlanCommand(input, context); - } - deserialize(output, context) { - return de_GenerateTaskAssistPlanCommand(output, context); - } -} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/index.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/index.js deleted file mode 100644 index 983aed6e929..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-es/commands/index.js +++ /dev/null @@ -1,4 +0,0 @@ -export * from "./ExportResultArchiveCommand"; -export * from "./GenerateAssistantResponseCommand"; -export * from "./GenerateTaskAssistPlanCommand"; -export * from "./ConverseStreamCommand"; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/endpoints.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/endpoints.js deleted file mode 100644 index b3eadfea193..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-es/endpoints.js +++ /dev/null @@ -1,201 +0,0 @@ -import { getRegionInfo, } from "@smithy/config-resolver"; -const regionHash = {}; -const partitionHash = { - "aws": { - regions: [ - "af-south-1", - "ap-east-1", - "ap-northeast-1", - "ap-northeast-2", - "ap-northeast-3", - "ap-south-1", - "ap-south-2", - "ap-southeast-1", - "ap-southeast-2", - "ap-southeast-3", - "ap-southeast-4", - "ca-central-1", - "eu-central-1", - "eu-central-2", - "eu-north-1", - "eu-south-1", - "eu-south-2", - "eu-west-1", - "eu-west-2", - "eu-west-3", - "il-central-1", - "me-central-1", - "me-south-1", - "sa-east-1", - "us-east-1", - "us-east-2", - "us-west-1", - "us-west-2", - ], - regionRegex: "^(us|eu|ap|sa|ca|me|af|il)\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazoncodewhispererstreamingservice.{region}.amazonaws.com", - "tags": [] - }, - { - "hostname": "amazoncodewhispererstreamingservice-fips.{region}.amazonaws.com", - "tags": [ - "fips" - ] - }, - { - "hostname": "amazoncodewhispererstreamingservice-fips.{region}.api.aws", - "tags": [ - "dualstack", - "fips" - ] - }, - { - "hostname": "amazoncodewhispererstreamingservice.{region}.api.aws", - "tags": [ - "dualstack" - ] - } - ], - }, - "aws-cn": { - regions: [ - "cn-north-1", - "cn-northwest-1", - ], - regionRegex: "^cn\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazoncodewhispererstreamingservice.{region}.amazonaws.com.cn", - "tags": [] - }, - { - "hostname": "amazoncodewhispererstreamingservice-fips.{region}.amazonaws.com.cn", - "tags": [ - "fips" - ] - }, - { - "hostname": "amazoncodewhispererstreamingservice-fips.{region}.api.amazonwebservices.com.cn", - "tags": [ - "dualstack", - "fips" - ] - }, - { - "hostname": "amazoncodewhispererstreamingservice.{region}.api.amazonwebservices.com.cn", - "tags": [ - "dualstack" - ] - } - ], - }, - "aws-iso": { - regions: [ - "us-iso-east-1", - "us-iso-west-1", - ], - regionRegex: "^us\\-iso\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazoncodewhispererstreamingservice.{region}.c2s.ic.gov", - "tags": [] - }, - { - "hostname": "amazoncodewhispererstreamingservice-fips.{region}.c2s.ic.gov", - "tags": [ - "fips" - ] - } - ], - }, - "aws-iso-b": { - regions: [ - "us-isob-east-1", - ], - regionRegex: "^us\\-isob\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazoncodewhispererstreamingservice.{region}.sc2s.sgov.gov", - "tags": [] - }, - { - "hostname": "amazoncodewhispererstreamingservice-fips.{region}.sc2s.sgov.gov", - "tags": [ - "fips" - ] - } - ], - }, - "aws-iso-e": { - regions: [], - regionRegex: "^eu\\-isoe\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazoncodewhispererstreamingservice.{region}.cloud.adc-e.uk", - "tags": [] - }, - { - "hostname": "amazoncodewhispererstreamingservice-fips.{region}.cloud.adc-e.uk", - "tags": [ - "fips" - ] - } - ], - }, - "aws-iso-f": { - regions: [], - regionRegex: "^us\\-isof\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazoncodewhispererstreamingservice.{region}.csp.hci.ic.gov", - "tags": [] - }, - { - "hostname": "amazoncodewhispererstreamingservice-fips.{region}.csp.hci.ic.gov", - "tags": [ - "fips" - ] - } - ], - }, - "aws-us-gov": { - regions: [ - "us-gov-east-1", - "us-gov-west-1", - ], - regionRegex: "^us\\-gov\\-\\w+\\-\\d+$", - variants: [ - { - "hostname": "amazoncodewhispererstreamingservice.{region}.amazonaws.com", - "tags": [] - }, - { - "hostname": "amazoncodewhispererstreamingservice-fips.{region}.amazonaws.com", - "tags": [ - "fips" - ] - }, - { - "hostname": "amazoncodewhispererstreamingservice-fips.{region}.api.aws", - "tags": [ - "dualstack", - "fips" - ] - }, - { - "hostname": "amazoncodewhispererstreamingservice.{region}.api.aws", - "tags": [ - "dualstack" - ] - } - ], - }, -}; -export const defaultRegionInfoProvider = async (region, options) => getRegionInfo(region, { - ...options, - signingService: "amazoncodewhispererstreamingservice", - regionHash, - partitionHash, -}); diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/extensionConfiguration.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/extensionConfiguration.js deleted file mode 100644 index cb0ff5c3b54..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-es/extensionConfiguration.js +++ /dev/null @@ -1 +0,0 @@ -export {}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/index.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/index.js deleted file mode 100644 index 4bab106103b..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-es/index.js +++ /dev/null @@ -1,5 +0,0 @@ -export * from "./CodeWhispererStreamingClient"; -export * from "./CodeWhispererStreaming"; -export * from "./commands"; -export * from "./models"; -export { CodeWhispererStreamingServiceException } from "./models/CodeWhispererStreamingServiceException"; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/models/CodeWhispererStreamingServiceException.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/models/CodeWhispererStreamingServiceException.js deleted file mode 100644 index eb12b433fc6..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-es/models/CodeWhispererStreamingServiceException.js +++ /dev/null @@ -1,8 +0,0 @@ -import { ServiceException as __ServiceException, } from "@smithy/smithy-client"; -export { __ServiceException }; -export class CodeWhispererStreamingServiceException extends __ServiceException { - constructor(options) { - super(options); - Object.setPrototypeOf(this, CodeWhispererStreamingServiceException.prototype); - } -} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/models/index.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/models/index.js deleted file mode 100644 index 09c5d6e09b8..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-es/models/index.js +++ /dev/null @@ -1 +0,0 @@ -export * from "./models_0"; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/models/models_0.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/models/models_0.js deleted file mode 100644 index d770c29c0c3..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-es/models/models_0.js +++ /dev/null @@ -1,523 +0,0 @@ -import { CodeWhispererStreamingServiceException as __BaseException } from "./CodeWhispererStreamingServiceException"; -import { SENSITIVE_STRING, } from "@smithy/smithy-client"; -export const AccessDeniedExceptionReason = { - UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS: "UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS", -}; -export class AccessDeniedException extends __BaseException { - constructor(opts) { - super({ - name: "AccessDeniedException", - $fault: "client", - ...opts - }); - this.name = "AccessDeniedException"; - this.$fault = "client"; - Object.setPrototypeOf(this, AccessDeniedException.prototype); - this.reason = opts.reason; - } -} -export class InternalServerException extends __BaseException { - constructor(opts) { - super({ - name: "InternalServerException", - $fault: "server", - ...opts - }); - this.name = "InternalServerException"; - this.$fault = "server"; - this.$retryable = {}; - Object.setPrototypeOf(this, InternalServerException.prototype); - } -} -export class ResourceNotFoundException extends __BaseException { - constructor(opts) { - super({ - name: "ResourceNotFoundException", - $fault: "client", - ...opts - }); - this.name = "ResourceNotFoundException"; - this.$fault = "client"; - Object.setPrototypeOf(this, ResourceNotFoundException.prototype); - } -} -export class ThrottlingException extends __BaseException { - constructor(opts) { - super({ - name: "ThrottlingException", - $fault: "client", - ...opts - }); - this.name = "ThrottlingException"; - this.$fault = "client"; - this.$retryable = { - throttling: true, - }; - Object.setPrototypeOf(this, ThrottlingException.prototype); - } -} -export const ValidationExceptionReason = { - CONTENT_LENGTH_EXCEEDS_THRESHOLD: "CONTENT_LENGTH_EXCEEDS_THRESHOLD", - INVALID_CONVERSATION_ID: "INVALID_CONVERSATION_ID", -}; -export class ValidationException extends __BaseException { - constructor(opts) { - super({ - name: "ValidationException", - $fault: "client", - ...opts - }); - this.name = "ValidationException"; - this.$fault = "client"; - Object.setPrototypeOf(this, ValidationException.prototype); - this.reason = opts.reason; - } -} -export const AppStudioStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.namespace && { namespace: SENSITIVE_STRING - }), - ...(obj.propertyName && { propertyName: SENSITIVE_STRING - }), - ...(obj.propertyValue && { propertyValue: SENSITIVE_STRING - }), - ...(obj.propertyContext && { propertyContext: SENSITIVE_STRING - }), -}); -export const AssistantResponseEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: SENSITIVE_STRING - }), -}); -export const UserIntent = { - APPLY_COMMON_BEST_PRACTICES: "APPLY_COMMON_BEST_PRACTICES", - CITE_SOURCES: "CITE_SOURCES", - EXPLAIN_CODE_SELECTION: "EXPLAIN_CODE_SELECTION", - EXPLAIN_LINE_BY_LINE: "EXPLAIN_LINE_BY_LINE", - GENERATE_CLOUDFORMATION_TEMPLATE: "GENERATE_CLOUDFORMATION_TEMPLATE", - GENERATE_UNIT_TESTS: "GENERATE_UNIT_TESTS", - IMPROVE_CODE: "IMPROVE_CODE", - SHOW_EXAMPLES: "SHOW_EXAMPLES", - SUGGEST_ALTERNATE_IMPLEMENTATION: "SUGGEST_ALTERNATE_IMPLEMENTATION", -}; -export const FollowupPromptFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: SENSITIVE_STRING - }), -}); -export const SupplementaryWebLinkFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.url && { url: SENSITIVE_STRING - }), - ...(obj.title && { title: SENSITIVE_STRING - }), - ...(obj.snippet && { snippet: SENSITIVE_STRING - }), -}); -export const AssistantResponseMessageFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: SENSITIVE_STRING - }), - ...(obj.supplementaryWebLinks && { supplementaryWebLinks: obj.supplementaryWebLinks.map(item => SupplementaryWebLinkFilterSensitiveLog(item)) - }), - ...(obj.followupPrompt && { followupPrompt: FollowupPromptFilterSensitiveLog(obj.followupPrompt) - }), -}); -export class ConflictException extends __BaseException { - constructor(opts) { - super({ - name: "ConflictException", - $fault: "client", - ...opts - }); - this.name = "ConflictException"; - this.$fault = "client"; - Object.setPrototypeOf(this, ConflictException.prototype); - } -} -export const ContentChecksumType = { - SHA_256: "SHA_256", -}; -export const BinaryMetadataEventFilterSensitiveLog = (obj) => ({ - ...obj, -}); -export const BinaryPayloadEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.bytes && { bytes: SENSITIVE_STRING - }), -}); -export const DiagnosticSeverity = { - ERROR: "ERROR", - HINT: "HINT", - INFORMATION: "INFORMATION", - WARNING: "WARNING", -}; -export const RuntimeDiagnosticFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.source && { source: SENSITIVE_STRING - }), - ...(obj.message && { message: SENSITIVE_STRING - }), -}); -export const SymbolType = { - DECLARATION: "DECLARATION", - USAGE: "USAGE", -}; -export const TextDocumentFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.relativeFilePath && { relativeFilePath: SENSITIVE_STRING - }), - ...(obj.text && { text: SENSITIVE_STRING - }), -}); -export const TextDocumentDiagnosticFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.document && { document: TextDocumentFilterSensitiveLog(obj.document) - }), - ...(obj.source && { source: SENSITIVE_STRING - }), - ...(obj.message && { message: SENSITIVE_STRING - }), -}); -export var Diagnostic; -(function (Diagnostic) { - Diagnostic.visit = (value, visitor) => { - if (value.textDocumentDiagnostic !== undefined) - return visitor.textDocumentDiagnostic(value.textDocumentDiagnostic); - if (value.runtimeDiagnostic !== undefined) - return visitor.runtimeDiagnostic(value.runtimeDiagnostic); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(Diagnostic || (Diagnostic = {})); -export const DiagnosticFilterSensitiveLog = (obj) => { - if (obj.textDocumentDiagnostic !== undefined) - return { textDocumentDiagnostic: TextDocumentDiagnosticFilterSensitiveLog(obj.textDocumentDiagnostic) - }; - if (obj.runtimeDiagnostic !== undefined) - return { runtimeDiagnostic: RuntimeDiagnosticFilterSensitiveLog(obj.runtimeDiagnostic) - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -export var CursorState; -(function (CursorState) { - CursorState.visit = (value, visitor) => { - if (value.position !== undefined) - return visitor.position(value.position); - if (value.range !== undefined) - return visitor.range(value.range); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(CursorState || (CursorState = {})); -export const RelevantTextDocumentFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.relativeFilePath && { relativeFilePath: SENSITIVE_STRING - }), - ...(obj.text && { text: SENSITIVE_STRING - }), -}); -export const EditorStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.document && { document: TextDocumentFilterSensitiveLog(obj.document) - }), - ...(obj.cursorState && { cursorState: obj.cursorState - }), - ...(obj.relevantDocuments && { relevantDocuments: obj.relevantDocuments.map(item => RelevantTextDocumentFilterSensitiveLog(item)) - }), -}); -export const EnvironmentVariableFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.key && { key: SENSITIVE_STRING - }), - ...(obj.value && { value: SENSITIVE_STRING - }), -}); -export const EnvStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.currentWorkingDirectory && { currentWorkingDirectory: SENSITIVE_STRING - }), - ...(obj.environmentVariables && { environmentVariables: obj.environmentVariables.map(item => EnvironmentVariableFilterSensitiveLog(item)) - }), -}); -export const GitStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.status && { status: SENSITIVE_STRING - }), -}); -export const ShellHistoryEntryFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.command && { command: SENSITIVE_STRING - }), - ...(obj.directory && { directory: SENSITIVE_STRING - }), - ...(obj.stdout && { stdout: SENSITIVE_STRING - }), - ...(obj.stderr && { stderr: SENSITIVE_STRING - }), -}); -export const ShellStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.shellHistory && { shellHistory: obj.shellHistory.map(item => ShellHistoryEntryFilterSensitiveLog(item)) - }), -}); -export const UserInputMessageContextFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.editorState && { editorState: EditorStateFilterSensitiveLog(obj.editorState) - }), - ...(obj.shellState && { shellState: ShellStateFilterSensitiveLog(obj.shellState) - }), - ...(obj.gitState && { gitState: GitStateFilterSensitiveLog(obj.gitState) - }), - ...(obj.envState && { envState: EnvStateFilterSensitiveLog(obj.envState) - }), - ...(obj.appStudioContext && { appStudioContext: AppStudioStateFilterSensitiveLog(obj.appStudioContext) - }), - ...(obj.diagnostic && { diagnostic: DiagnosticFilterSensitiveLog(obj.diagnostic) - }), -}); -export const UserInputMessageFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: SENSITIVE_STRING - }), - ...(obj.userInputMessageContext && { userInputMessageContext: UserInputMessageContextFilterSensitiveLog(obj.userInputMessageContext) - }), -}); -export var ChatMessage; -(function (ChatMessage) { - ChatMessage.visit = (value, visitor) => { - if (value.userInputMessage !== undefined) - return visitor.userInputMessage(value.userInputMessage); - if (value.assistantResponseMessage !== undefined) - return visitor.assistantResponseMessage(value.assistantResponseMessage); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(ChatMessage || (ChatMessage = {})); -export const ChatMessageFilterSensitiveLog = (obj) => { - if (obj.userInputMessage !== undefined) - return { userInputMessage: UserInputMessageFilterSensitiveLog(obj.userInputMessage) - }; - if (obj.assistantResponseMessage !== undefined) - return { assistantResponseMessage: AssistantResponseMessageFilterSensitiveLog(obj.assistantResponseMessage) - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -export const CodeEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.content && { content: SENSITIVE_STRING - }), -}); -export const FollowupPromptEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.followupPrompt && { followupPrompt: FollowupPromptFilterSensitiveLog(obj.followupPrompt) - }), -}); -export const IntentType = { - GLUE_SENSEI: "GLUE_SENSEI", - RESOURCE_DATA: "RESOURCE_DATA", - SUPPORT: "SUPPORT", -}; -export var IntentDataType; -(function (IntentDataType) { - IntentDataType.visit = (value, visitor) => { - if (value.string !== undefined) - return visitor.string(value.string); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(IntentDataType || (IntentDataType = {})); -export const IntentsEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.intents && { intents: SENSITIVE_STRING - }), -}); -export const InvalidStateReason = { - INVALID_TASK_ASSIST_PLAN: "INVALID_TASK_ASSIST_PLAN", -}; -export const SupplementaryWebLinksEventFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.supplementaryWebLinks && { supplementaryWebLinks: obj.supplementaryWebLinks.map(item => SupplementaryWebLinkFilterSensitiveLog(item)) - }), -}); -export var ChatResponseStream; -(function (ChatResponseStream) { - ChatResponseStream.visit = (value, visitor) => { - if (value.messageMetadataEvent !== undefined) - return visitor.messageMetadataEvent(value.messageMetadataEvent); - if (value.assistantResponseEvent !== undefined) - return visitor.assistantResponseEvent(value.assistantResponseEvent); - if (value.codeReferenceEvent !== undefined) - return visitor.codeReferenceEvent(value.codeReferenceEvent); - if (value.supplementaryWebLinksEvent !== undefined) - return visitor.supplementaryWebLinksEvent(value.supplementaryWebLinksEvent); - if (value.followupPromptEvent !== undefined) - return visitor.followupPromptEvent(value.followupPromptEvent); - if (value.codeEvent !== undefined) - return visitor.codeEvent(value.codeEvent); - if (value.intentsEvent !== undefined) - return visitor.intentsEvent(value.intentsEvent); - if (value.invalidStateEvent !== undefined) - return visitor.invalidStateEvent(value.invalidStateEvent); - if (value.error !== undefined) - return visitor.error(value.error); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(ChatResponseStream || (ChatResponseStream = {})); -export const ChatResponseStreamFilterSensitiveLog = (obj) => { - if (obj.messageMetadataEvent !== undefined) - return { messageMetadataEvent: obj.messageMetadataEvent - }; - if (obj.assistantResponseEvent !== undefined) - return { assistantResponseEvent: AssistantResponseEventFilterSensitiveLog(obj.assistantResponseEvent) - }; - if (obj.codeReferenceEvent !== undefined) - return { codeReferenceEvent: obj.codeReferenceEvent - }; - if (obj.supplementaryWebLinksEvent !== undefined) - return { supplementaryWebLinksEvent: SupplementaryWebLinksEventFilterSensitiveLog(obj.supplementaryWebLinksEvent) - }; - if (obj.followupPromptEvent !== undefined) - return { followupPromptEvent: FollowupPromptEventFilterSensitiveLog(obj.followupPromptEvent) - }; - if (obj.codeEvent !== undefined) - return { codeEvent: CodeEventFilterSensitiveLog(obj.codeEvent) - }; - if (obj.intentsEvent !== undefined) - return { intentsEvent: IntentsEventFilterSensitiveLog(obj.intentsEvent) - }; - if (obj.invalidStateEvent !== undefined) - return { invalidStateEvent: obj.invalidStateEvent - }; - if (obj.error !== undefined) - return { error: obj.error - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -export const ChatTriggerType = { - DIAGNOSTIC: "DIAGNOSTIC", - MANUAL: "MANUAL", -}; -export const ContextTruncationScheme = { - ANALYSIS: "ANALYSIS", - GUMBY: "GUMBY", -}; -export const ConversationStateFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.history && { history: obj.history.map(item => ChatMessageFilterSensitiveLog(item)) - }), - ...(obj.currentMessage && { currentMessage: ChatMessageFilterSensitiveLog(obj.currentMessage) - }), -}); -export class DryRunOperationException extends __BaseException { - constructor(opts) { - super({ - name: "DryRunOperationException", - $fault: "client", - ...opts - }); - this.name = "DryRunOperationException"; - this.$fault = "client"; - Object.setPrototypeOf(this, DryRunOperationException.prototype); - this.responseCode = opts.responseCode; - } -} -export const TransformationDownloadArtifactType = { - CLIENT_INSTRUCTIONS: "ClientInstructions", - LOGS: "Logs", -}; -export var ExportContext; -(function (ExportContext) { - ExportContext.visit = (value, visitor) => { - if (value.transformationExportContext !== undefined) - return visitor.transformationExportContext(value.transformationExportContext); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(ExportContext || (ExportContext = {})); -export const ExportIntent = { - TASK_ASSIST: "TASK_ASSIST", - TRANSFORMATION: "TRANSFORMATION", -}; -export var ResultArchiveStream; -(function (ResultArchiveStream) { - ResultArchiveStream.visit = (value, visitor) => { - if (value.binaryMetadataEvent !== undefined) - return visitor.binaryMetadataEvent(value.binaryMetadataEvent); - if (value.binaryPayloadEvent !== undefined) - return visitor.binaryPayloadEvent(value.binaryPayloadEvent); - if (value.internalServerException !== undefined) - return visitor.internalServerException(value.internalServerException); - return visitor._(value.$unknown[0], value.$unknown[1]); - }; -})(ResultArchiveStream || (ResultArchiveStream = {})); -export const ResultArchiveStreamFilterSensitiveLog = (obj) => { - if (obj.binaryMetadataEvent !== undefined) - return { binaryMetadataEvent: SENSITIVE_STRING - }; - if (obj.binaryPayloadEvent !== undefined) - return { binaryPayloadEvent: SENSITIVE_STRING - }; - if (obj.internalServerException !== undefined) - return { internalServerException: obj.internalServerException - }; - if (obj.$unknown !== undefined) - return { [obj.$unknown[0]]: 'UNKNOWN' }; -}; -export class ServiceQuotaExceededException extends __BaseException { - constructor(opts) { - super({ - name: "ServiceQuotaExceededException", - $fault: "client", - ...opts - }); - this.name = "ServiceQuotaExceededException"; - this.$fault = "client"; - Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype); - } -} -export const GenerateAssistantResponseRequestFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.conversationState && { conversationState: ConversationStateFilterSensitiveLog(obj.conversationState) - }), -}); -export const GenerateAssistantResponseResponseFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.generateAssistantResponseResponse && { generateAssistantResponseResponse: 'STREAMING_CONTENT' - }), -}); -export const ExportResultArchiveResponseFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.body && { body: 'STREAMING_CONTENT' - }), -}); -export const Origin = { - CHATBOT: "CHATBOT", - CONSOLE: "CONSOLE", - DOCUMENTATION: "DOCUMENTATION", - IDE: "IDE", - MARKETING: "MARKETING", - MD: "MD", - MOBILE: "MOBILE", - SERVICE_INTERNAL: "SERVICE_INTERNAL", - UNIFIED_SEARCH: "UNIFIED_SEARCH", - UNKNOWN: "UNKNOWN", -}; -export const ConverseStreamRequestFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.conversationState && { conversationState: ConversationStateFilterSensitiveLog(obj.conversationState) - }), -}); -export const ConverseStreamResponseFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.converseStreamResponse && { converseStreamResponse: 'STREAMING_CONTENT' - }), -}); -export const GenerateTaskAssistPlanRequestFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.conversationState && { conversationState: ConversationStateFilterSensitiveLog(obj.conversationState) - }), -}); -export const GenerateTaskAssistPlanResponseFilterSensitiveLog = (obj) => ({ - ...obj, - ...(obj.planningResponseStream && { planningResponseStream: 'STREAMING_CONTENT' - }), -}); diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/protocols/Aws_restJson1.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/protocols/Aws_restJson1.js deleted file mode 100644 index 04e737f87cc..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-es/protocols/Aws_restJson1.js +++ /dev/null @@ -1,579 +0,0 @@ -import { CodeWhispererStreamingServiceException as __BaseException } from "../models/CodeWhispererStreamingServiceException"; -import { AccessDeniedException, ConflictException, DryRunOperationException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/models_0"; -import { HttpRequest as __HttpRequest, } from "@smithy/protocol-http"; -import { decorateServiceException as __decorateServiceException, expectString as __expectString, _json, collectBody, map, take, withBaseException, } from "@smithy/smithy-client"; -export const se_ExportResultArchiveCommand = async (input, context) => { - const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); - const headers = { - 'content-type': 'application/json', - }; - let resolvedPath = `${basePath?.endsWith('/') ? basePath.slice(0, -1) : (basePath || '')}` + "/exportResultArchive"; - let body; - body = JSON.stringify(take(input, { - 'exportContext': _ => _json(_), - 'exportId': [], - 'exportIntent': [], - })); - return new __HttpRequest({ - protocol, - hostname, - port, - method: "POST", - headers, - path: resolvedPath, - body, - }); -}; -export const se_GenerateAssistantResponseCommand = async (input, context) => { - const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); - const headers = { - 'content-type': 'application/json', - }; - let resolvedPath = `${basePath?.endsWith('/') ? basePath.slice(0, -1) : (basePath || '')}` + "/generateAssistantResponse"; - let body; - body = JSON.stringify(take(input, { - 'conversationState': _ => _json(_), - 'profileArn': [], - })); - return new __HttpRequest({ - protocol, - hostname, - port, - method: "POST", - headers, - path: resolvedPath, - body, - }); -}; -export const se_GenerateTaskAssistPlanCommand = async (input, context) => { - const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); - const headers = { - 'content-type': 'application/json', - }; - let resolvedPath = `${basePath?.endsWith('/') ? basePath.slice(0, -1) : (basePath || '')}` + "/generateTaskAssistPlan"; - let body; - body = JSON.stringify(take(input, { - 'conversationState': _ => _json(_), - 'workspaceState': _ => _json(_), - })); - return new __HttpRequest({ - protocol, - hostname, - port, - method: "POST", - headers, - path: resolvedPath, - body, - }); -}; -export const se_ConverseStreamCommand = async (input, context) => { - const { hostname, protocol = "https", port, path: basePath } = await context.endpoint(); - const headers = { - 'content-type': 'application/json', - }; - let resolvedPath = `${basePath?.endsWith('/') ? basePath.slice(0, -1) : (basePath || '')}` + "/ConverseStream"; - let body; - body = JSON.stringify(take(input, { - 'conversationState': _ => _json(_), - 'dryRun': [], - 'profileArn': [], - 'source': [], - })); - return new __HttpRequest({ - protocol, - hostname, - port, - method: "POST", - headers, - path: resolvedPath, - body, - }); -}; -export const de_ExportResultArchiveCommand = async (output, context) => { - if (output.statusCode !== 200 && output.statusCode >= 300) { - return de_ExportResultArchiveCommandError(output, context); - } - const contents = map({ - $metadata: deserializeMetadata(output), - }); - const data = output.body; - contents.body = de_ResultArchiveStream(data, context); - return contents; -}; -const de_ExportResultArchiveCommandError = async (output, context) => { - const parsedOutput = { - ...output, - body: await parseErrorBody(output.body, context) - }; - const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); - switch (errorCode) { - case "AccessDeniedException": - case "com.amazon.aws.codewhisperer#AccessDeniedException": - throw await de_AccessDeniedExceptionRes(parsedOutput, context); - case "ConflictException": - case "com.amazon.aws.codewhisperer#ConflictException": - throw await de_ConflictExceptionRes(parsedOutput, context); - case "InternalServerException": - case "com.amazon.aws.codewhisperer#InternalServerException": - throw await de_InternalServerExceptionRes(parsedOutput, context); - case "ResourceNotFoundException": - case "com.amazon.aws.codewhisperer#ResourceNotFoundException": - throw await de_ResourceNotFoundExceptionRes(parsedOutput, context); - case "ThrottlingException": - case "com.amazon.aws.codewhisperer#ThrottlingException": - throw await de_ThrottlingExceptionRes(parsedOutput, context); - case "ValidationException": - case "com.amazon.aws.codewhisperer#ValidationException": - throw await de_ValidationExceptionRes(parsedOutput, context); - default: - const parsedBody = parsedOutput.body; - return throwDefaultError({ - output, - parsedBody, - errorCode - }); - } -}; -export const de_GenerateAssistantResponseCommand = async (output, context) => { - if (output.statusCode !== 200 && output.statusCode >= 300) { - return de_GenerateAssistantResponseCommandError(output, context); - } - const contents = map({ - $metadata: deserializeMetadata(output), - conversationId: [, output.headers['x-amzn-codewhisperer-conversation-id']], - }); - const data = output.body; - contents.generateAssistantResponseResponse = de_ChatResponseStream(data, context); - return contents; -}; -const de_GenerateAssistantResponseCommandError = async (output, context) => { - const parsedOutput = { - ...output, - body: await parseErrorBody(output.body, context) - }; - const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); - switch (errorCode) { - case "AccessDeniedException": - case "com.amazon.aws.codewhisperer#AccessDeniedException": - throw await de_AccessDeniedExceptionRes(parsedOutput, context); - case "InternalServerException": - case "com.amazon.aws.codewhisperer#InternalServerException": - throw await de_InternalServerExceptionRes(parsedOutput, context); - case "ThrottlingException": - case "com.amazon.aws.codewhisperer#ThrottlingException": - throw await de_ThrottlingExceptionRes(parsedOutput, context); - case "ValidationException": - case "com.amazon.aws.codewhisperer#ValidationException": - throw await de_ValidationExceptionRes(parsedOutput, context); - default: - const parsedBody = parsedOutput.body; - return throwDefaultError({ - output, - parsedBody, - errorCode - }); - } -}; -export const de_GenerateTaskAssistPlanCommand = async (output, context) => { - if (output.statusCode !== 200 && output.statusCode >= 300) { - return de_GenerateTaskAssistPlanCommandError(output, context); - } - const contents = map({ - $metadata: deserializeMetadata(output), - }); - const data = output.body; - contents.planningResponseStream = de_ChatResponseStream(data, context); - return contents; -}; -const de_GenerateTaskAssistPlanCommandError = async (output, context) => { - const parsedOutput = { - ...output, - body: await parseErrorBody(output.body, context) - }; - const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); - switch (errorCode) { - case "AccessDeniedException": - case "com.amazon.aws.codewhisperer#AccessDeniedException": - throw await de_AccessDeniedExceptionRes(parsedOutput, context); - case "ConflictException": - case "com.amazon.aws.codewhisperer#ConflictException": - throw await de_ConflictExceptionRes(parsedOutput, context); - case "InternalServerException": - case "com.amazon.aws.codewhisperer#InternalServerException": - throw await de_InternalServerExceptionRes(parsedOutput, context); - case "ResourceNotFoundException": - case "com.amazon.aws.codewhisperer#ResourceNotFoundException": - throw await de_ResourceNotFoundExceptionRes(parsedOutput, context); - case "ServiceQuotaExceededException": - case "com.amazon.aws.codewhisperer#ServiceQuotaExceededException": - throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context); - case "ThrottlingException": - case "com.amazon.aws.codewhisperer#ThrottlingException": - throw await de_ThrottlingExceptionRes(parsedOutput, context); - case "ValidationException": - case "com.amazon.aws.codewhisperer#ValidationException": - throw await de_ValidationExceptionRes(parsedOutput, context); - default: - const parsedBody = parsedOutput.body; - return throwDefaultError({ - output, - parsedBody, - errorCode - }); - } -}; -export const de_ConverseStreamCommand = async (output, context) => { - if (output.statusCode !== 200 && output.statusCode >= 300) { - return de_ConverseStreamCommandError(output, context); - } - const contents = map({ - $metadata: deserializeMetadata(output), - conversationId: [, output.headers['x-amzn-q-conversation-id']], - utteranceId: [, output.headers['x-amzn-q-utterance-id']], - }); - const data = output.body; - contents.converseStreamResponse = de_ChatResponseStream(data, context); - return contents; -}; -const de_ConverseStreamCommandError = async (output, context) => { - const parsedOutput = { - ...output, - body: await parseErrorBody(output.body, context) - }; - const errorCode = loadRestJsonErrorCode(output, parsedOutput.body); - switch (errorCode) { - case "AccessDeniedException": - case "com.amazon.aws.codewhisperer#AccessDeniedException": - throw await de_AccessDeniedExceptionRes(parsedOutput, context); - case "ConflictException": - case "com.amazon.aws.codewhisperer#ConflictException": - throw await de_ConflictExceptionRes(parsedOutput, context); - case "DryRunOperationException": - case "com.amazon.aws.codewhisperer#DryRunOperationException": - throw await de_DryRunOperationExceptionRes(parsedOutput, context); - case "InternalServerException": - case "com.amazon.aws.codewhisperer#InternalServerException": - throw await de_InternalServerExceptionRes(parsedOutput, context); - case "ResourceNotFoundException": - case "com.amazon.aws.codewhisperer#ResourceNotFoundException": - throw await de_ResourceNotFoundExceptionRes(parsedOutput, context); - case "ServiceQuotaExceededException": - case "com.amazon.aws.codewhisperer#ServiceQuotaExceededException": - throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context); - case "ThrottlingException": - case "com.amazon.aws.codewhisperer#ThrottlingException": - throw await de_ThrottlingExceptionRes(parsedOutput, context); - case "ValidationException": - case "com.amazon.aws.codewhisperer#ValidationException": - throw await de_ValidationExceptionRes(parsedOutput, context); - default: - const parsedBody = parsedOutput.body; - return throwDefaultError({ - output, - parsedBody, - errorCode - }); - } -}; -const throwDefaultError = withBaseException(__BaseException); -const de_AccessDeniedExceptionRes = async (parsedOutput, context) => { - const contents = map({}); - const data = parsedOutput.body; - const doc = take(data, { - 'message': __expectString, - 'reason': __expectString, - }); - Object.assign(contents, doc); - const exception = new AccessDeniedException({ - $metadata: deserializeMetadata(parsedOutput), - ...contents - }); - return __decorateServiceException(exception, parsedOutput.body); -}; -const de_ConflictExceptionRes = async (parsedOutput, context) => { - const contents = map({}); - const data = parsedOutput.body; - const doc = take(data, { - 'message': __expectString, - }); - Object.assign(contents, doc); - const exception = new ConflictException({ - $metadata: deserializeMetadata(parsedOutput), - ...contents - }); - return __decorateServiceException(exception, parsedOutput.body); -}; -const de_DryRunOperationExceptionRes = async (parsedOutput, context) => { - const contents = map({}); - const data = parsedOutput.body; - const doc = take(data, { - 'message': __expectString, - }); - Object.assign(contents, doc); - const exception = new DryRunOperationException({ - $metadata: deserializeMetadata(parsedOutput), - ...contents - }); - return __decorateServiceException(exception, parsedOutput.body); -}; -const de_InternalServerExceptionRes = async (parsedOutput, context) => { - const contents = map({}); - const data = parsedOutput.body; - const doc = take(data, { - 'message': __expectString, - }); - Object.assign(contents, doc); - const exception = new InternalServerException({ - $metadata: deserializeMetadata(parsedOutput), - ...contents - }); - return __decorateServiceException(exception, parsedOutput.body); -}; -const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => { - const contents = map({}); - const data = parsedOutput.body; - const doc = take(data, { - 'message': __expectString, - }); - Object.assign(contents, doc); - const exception = new ResourceNotFoundException({ - $metadata: deserializeMetadata(parsedOutput), - ...contents - }); - return __decorateServiceException(exception, parsedOutput.body); -}; -const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => { - const contents = map({}); - const data = parsedOutput.body; - const doc = take(data, { - 'message': __expectString, - }); - Object.assign(contents, doc); - const exception = new ServiceQuotaExceededException({ - $metadata: deserializeMetadata(parsedOutput), - ...contents - }); - return __decorateServiceException(exception, parsedOutput.body); -}; -const de_ThrottlingExceptionRes = async (parsedOutput, context) => { - const contents = map({}); - const data = parsedOutput.body; - const doc = take(data, { - 'message': __expectString, - }); - Object.assign(contents, doc); - const exception = new ThrottlingException({ - $metadata: deserializeMetadata(parsedOutput), - ...contents - }); - return __decorateServiceException(exception, parsedOutput.body); -}; -const de_ValidationExceptionRes = async (parsedOutput, context) => { - const contents = map({}); - const data = parsedOutput.body; - const doc = take(data, { - 'message': __expectString, - 'reason': __expectString, - }); - Object.assign(contents, doc); - const exception = new ValidationException({ - $metadata: deserializeMetadata(parsedOutput), - ...contents - }); - return __decorateServiceException(exception, parsedOutput.body); -}; -const de_ChatResponseStream = (output, context) => { - return context.eventStreamMarshaller.deserialize(output, async (event) => { - if (event["messageMetadataEvent"] != null) { - return { - messageMetadataEvent: await de_MessageMetadataEvent_event(event["messageMetadataEvent"], context), - }; - } - if (event["assistantResponseEvent"] != null) { - return { - assistantResponseEvent: await de_AssistantResponseEvent_event(event["assistantResponseEvent"], context), - }; - } - if (event["codeReferenceEvent"] != null) { - return { - codeReferenceEvent: await de_CodeReferenceEvent_event(event["codeReferenceEvent"], context), - }; - } - if (event["supplementaryWebLinksEvent"] != null) { - return { - supplementaryWebLinksEvent: await de_SupplementaryWebLinksEvent_event(event["supplementaryWebLinksEvent"], context), - }; - } - if (event["followupPromptEvent"] != null) { - return { - followupPromptEvent: await de_FollowupPromptEvent_event(event["followupPromptEvent"], context), - }; - } - if (event["codeEvent"] != null) { - return { - codeEvent: await de_CodeEvent_event(event["codeEvent"], context), - }; - } - if (event["intentsEvent"] != null) { - return { - intentsEvent: await de_IntentsEvent_event(event["intentsEvent"], context), - }; - } - if (event["invalidStateEvent"] != null) { - return { - invalidStateEvent: await de_InvalidStateEvent_event(event["invalidStateEvent"], context), - }; - } - if (event["error"] != null) { - return { - error: await de_InternalServerException_event(event["error"], context), - }; - } - return { $unknown: output }; - }); -}; -const de_ResultArchiveStream = (output, context) => { - return context.eventStreamMarshaller.deserialize(output, async (event) => { - if (event["binaryMetadataEvent"] != null) { - return { - binaryMetadataEvent: await de_BinaryMetadataEvent_event(event["binaryMetadataEvent"], context), - }; - } - if (event["binaryPayloadEvent"] != null) { - return { - binaryPayloadEvent: await de_BinaryPayloadEvent_event(event["binaryPayloadEvent"], context), - }; - } - if (event["internalServerException"] != null) { - return { - internalServerException: await de_InternalServerException_event(event["internalServerException"], context), - }; - } - return { $unknown: output }; - }); -}; -const de_AssistantResponseEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, _json(data)); - return contents; -}; -const de_BinaryMetadataEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, _json(data)); - return contents; -}; -const de_BinaryPayloadEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, de_BinaryPayloadEvent(data, context)); - return contents; -}; -const de_CodeEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, _json(data)); - return contents; -}; -const de_CodeReferenceEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, _json(data)); - return contents; -}; -const de_FollowupPromptEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, _json(data)); - return contents; -}; -const de_IntentsEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, _json(data)); - return contents; -}; -const de_InternalServerException_event = async (output, context) => { - const parsedOutput = { - ...output, - body: await parseBody(output.body, context) - }; - return de_InternalServerExceptionRes(parsedOutput, context); -}; -const de_InvalidStateEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, _json(data)); - return contents; -}; -const de_MessageMetadataEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, _json(data)); - return contents; -}; -const de_SupplementaryWebLinksEvent_event = async (output, context) => { - const contents = {}; - const data = await parseBody(output.body, context); - Object.assign(contents, _json(data)); - return contents; -}; -const de_BinaryPayloadEvent = (output, context) => { - return take(output, { - 'bytes': context.base64Decoder, - }); -}; -const deserializeMetadata = (output) => ({ - httpStatusCode: output.statusCode, - requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"], - extendedRequestId: output.headers["x-amz-id-2"], - cfId: output.headers["x-amz-cf-id"], -}); -const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then(body => context.utf8Encoder(body)); -const isSerializableHeaderValue = (value) => value !== undefined && - value !== null && - value !== "" && - (!Object.getOwnPropertyNames(value).includes("length") || - value.length != 0) && - (!Object.getOwnPropertyNames(value).includes("size") || value.size != 0); -const parseBody = (streamBody, context) => collectBodyString(streamBody, context).then(encoded => { - if (encoded.length) { - return JSON.parse(encoded); - } - return {}; -}); -const parseErrorBody = async (errorBody, context) => { - const value = await parseBody(errorBody, context); - value.message = value.message ?? value.Message; - return value; -}; -const loadRestJsonErrorCode = (output, data) => { - const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase()); - const sanitizeErrorCode = (rawValue) => { - let cleanValue = rawValue; - if (typeof cleanValue === "number") { - cleanValue = cleanValue.toString(); - } - if (cleanValue.indexOf(",") >= 0) { - cleanValue = cleanValue.split(",")[0]; - } - if (cleanValue.indexOf(":") >= 0) { - cleanValue = cleanValue.split(":")[0]; - } - if (cleanValue.indexOf("#") >= 0) { - cleanValue = cleanValue.split("#")[1]; - } - return cleanValue; - }; - const headerKey = findKey(output.headers, "x-amzn-errortype"); - if (headerKey !== undefined) { - return sanitizeErrorCode(output.headers[headerKey]); - } - if (data.code !== undefined) { - return sanitizeErrorCode(data.code); - } - if (data["__type"] !== undefined) { - return sanitizeErrorCode(data["__type"]); - } -}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.browser.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.browser.js deleted file mode 100644 index d1fc6189c09..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.browser.js +++ /dev/null @@ -1,32 +0,0 @@ -import packageInfo from "../package.json"; -import { Sha256 } from "@aws-crypto/sha256-browser"; -import { defaultUserAgent } from "@aws-sdk/util-user-agent-browser"; -import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, } from "@smithy/config-resolver"; -import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-browser"; -import { FetchHttpHandler as RequestHandler, streamCollector, } from "@smithy/fetch-http-handler"; -import { calculateBodyLength } from "@smithy/util-body-length-browser"; -import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE, } from "@smithy/util-retry"; -import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; -export const getRuntimeConfig = (config) => { - const defaultsMode = resolveDefaultsModeConfig(config); - const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode); - const clientSharedValues = getSharedRuntimeConfig(config); - return { - ...clientSharedValues, - ...config, - runtime: "browser", - defaultsMode, - bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength, - defaultUserAgentProvider: config?.defaultUserAgentProvider ?? defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), - eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventStreamSerdeProvider, - maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS, - requestHandler: config?.requestHandler ?? new RequestHandler(defaultConfigProvider), - retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE), - sha256: config?.sha256 ?? Sha256, - streamCollector: config?.streamCollector ?? streamCollector, - useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)), - useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)), - }; -}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.js deleted file mode 100644 index 238f6e92bf2..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.js +++ /dev/null @@ -1,36 +0,0 @@ -import packageInfo from "../package.json"; -import { defaultUserAgent } from "@aws-sdk/util-user-agent-node"; -import { NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver"; -import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-node"; -import { Hash } from "@smithy/hash-node"; -import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@smithy/middleware-retry"; -import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; -import { NodeHttpHandler as RequestHandler, streamCollector, } from "@smithy/node-http-handler"; -import { calculateBodyLength } from "@smithy/util-body-length-node"; -import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; -export const getRuntimeConfig = (config) => { - emitWarningIfUnsupportedVersion(process.version); - const defaultsMode = resolveDefaultsModeConfig(config); - const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode); - const clientSharedValues = getSharedRuntimeConfig(config); - return { - ...clientSharedValues, - ...config, - runtime: "node", - defaultsMode, - bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength, - defaultUserAgentProvider: config?.defaultUserAgentProvider ?? defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), - eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventStreamSerdeProvider, - maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS), - requestHandler: config?.requestHandler ?? new RequestHandler(defaultConfigProvider), - retryMode: config?.retryMode ?? loadNodeConfig({ ...NODE_RETRY_MODE_CONFIG_OPTIONS, default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE, }), - sha256: config?.sha256 ?? Hash.bind(null, "sha256"), - streamCollector: config?.streamCollector ?? streamCollector, - useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS), - useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS), - }; -}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.native.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.native.js deleted file mode 100644 index 0b546952826..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.native.js +++ /dev/null @@ -1,11 +0,0 @@ -import { Sha256 } from "@aws-crypto/sha256-js"; -import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -export const getRuntimeConfig = (config) => { - const browserDefaults = getBrowserRuntimeConfig(config); - return { - ...browserDefaults, - ...config, - runtime: "react-native", - sha256: config?.sha256 ?? Sha256, - }; -}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.shared.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.shared.js deleted file mode 100644 index a610ede0b28..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeConfig.shared.js +++ /dev/null @@ -1,18 +0,0 @@ -import { defaultRegionInfoProvider } from "./endpoints"; -import { NoOpLogger } from "@smithy/smithy-client"; -import { parseUrl } from "@smithy/url-parser"; -import { fromBase64, toBase64, } from "@smithy/util-base64"; -import { fromUtf8, toUtf8, } from "@smithy/util-utf8"; -export const getRuntimeConfig = (config) => ({ - apiVersion: "2023-11-27", - base64Decoder: config?.base64Decoder ?? fromBase64, - base64Encoder: config?.base64Encoder ?? toBase64, - disableHostPrefix: config?.disableHostPrefix ?? false, - extensions: config?.extensions ?? [], - logger: config?.logger ?? new NoOpLogger(), - regionInfoProvider: config?.regionInfoProvider ?? defaultRegionInfoProvider, - serviceId: config?.serviceId ?? "CodeWhispererStreaming", - urlParser: config?.urlParser ?? parseUrl, - utf8Decoder: config?.utf8Decoder ?? fromUtf8, - utf8Encoder: config?.utf8Encoder ?? toUtf8, -}); diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeExtensions.js b/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeExtensions.js deleted file mode 100644 index 52781fceab4..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-es/runtimeExtensions.js +++ /dev/null @@ -1,18 +0,0 @@ -import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, } from "@aws-sdk/region-config-resolver"; -import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, } from "@smithy/protocol-http"; -import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, } from "@smithy/smithy-client"; -const asPartial = (t) => t; -export const resolveRuntimeExtensions = (runtimeConfig, extensions) => { - const extensionConfiguration = { - ...asPartial(getAwsRegionExtensionConfiguration(runtimeConfig)), - ...asPartial(getDefaultExtensionConfiguration(runtimeConfig)), - ...asPartial(getHttpHandlerExtensionConfiguration(runtimeConfig)), - }; - extensions.forEach(extension => extension.configure(extensionConfiguration)); - return { - ...runtimeConfig, - ...resolveAwsRegionExtensionConfiguration(extensionConfiguration), - ...resolveDefaultRuntimeConfig(extensionConfiguration), - ...resolveHttpHandlerRuntimeConfig(extensionConfiguration), - }; -}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreaming.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreaming.d.ts deleted file mode 100644 index 10763a425cc..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreaming.d.ts +++ /dev/null @@ -1,37 +0,0 @@ -import { CodeWhispererStreamingClient } from "./CodeWhispererStreamingClient"; -import { ConverseStreamCommandInput, ConverseStreamCommandOutput } from "./commands/ConverseStreamCommand"; -import { ExportResultArchiveCommandInput, ExportResultArchiveCommandOutput } from "./commands/ExportResultArchiveCommand"; -import { GenerateAssistantResponseCommandInput, GenerateAssistantResponseCommandOutput } from "./commands/GenerateAssistantResponseCommand"; -import { GenerateTaskAssistPlanCommandInput, GenerateTaskAssistPlanCommandOutput } from "./commands/GenerateTaskAssistPlanCommand"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -export interface CodeWhispererStreaming { - /** - * @see {@link ExportResultArchiveCommand} - */ - exportResultArchive(args: ExportResultArchiveCommandInput, options?: __HttpHandlerOptions): Promise; - exportResultArchive(args: ExportResultArchiveCommandInput, cb: (err: any, data?: ExportResultArchiveCommandOutput) => void): void; - exportResultArchive(args: ExportResultArchiveCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportResultArchiveCommandOutput) => void): void; - /** - * @see {@link GenerateAssistantResponseCommand} - */ - generateAssistantResponse(args: GenerateAssistantResponseCommandInput, options?: __HttpHandlerOptions): Promise; - generateAssistantResponse(args: GenerateAssistantResponseCommandInput, cb: (err: any, data?: GenerateAssistantResponseCommandOutput) => void): void; - generateAssistantResponse(args: GenerateAssistantResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GenerateAssistantResponseCommandOutput) => void): void; - /** - * @see {@link GenerateTaskAssistPlanCommand} - */ - generateTaskAssistPlan(args: GenerateTaskAssistPlanCommandInput, options?: __HttpHandlerOptions): Promise; - generateTaskAssistPlan(args: GenerateTaskAssistPlanCommandInput, cb: (err: any, data?: GenerateTaskAssistPlanCommandOutput) => void): void; - generateTaskAssistPlan(args: GenerateTaskAssistPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GenerateTaskAssistPlanCommandOutput) => void): void; - /** - * @see {@link ConverseStreamCommand} - */ - converseStream(args: ConverseStreamCommandInput, options?: __HttpHandlerOptions): Promise; - converseStream(args: ConverseStreamCommandInput, cb: (err: any, data?: ConverseStreamCommandOutput) => void): void; - converseStream(args: ConverseStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConverseStreamCommandOutput) => void): void; -} -/** - * @public - */ -export declare class CodeWhispererStreaming extends CodeWhispererStreamingClient implements CodeWhispererStreaming { -} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreamingClient.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreamingClient.d.ts deleted file mode 100644 index 981bb143653..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-types/CodeWhispererStreamingClient.d.ts +++ /dev/null @@ -1,170 +0,0 @@ -import { ConverseStreamCommandInput, ConverseStreamCommandOutput } from "./commands/ConverseStreamCommand"; -import { ExportResultArchiveCommandInput, ExportResultArchiveCommandOutput } from "./commands/ExportResultArchiveCommand"; -import { GenerateAssistantResponseCommandInput, GenerateAssistantResponseCommandOutput } from "./commands/GenerateAssistantResponseCommand"; -import { GenerateTaskAssistPlanCommandInput, GenerateTaskAssistPlanCommandOutput } from "./commands/GenerateTaskAssistPlanCommand"; -import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; -import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header"; -import { TokenInputConfig, TokenResolvedConfig } from "@aws-sdk/middleware-token"; -import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent"; -import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@smithy/config-resolver"; -import { EventStreamSerdeInputConfig, EventStreamSerdeResolvedConfig } from "@smithy/eventstream-serde-config-resolver"; -import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandler as __HttpHandler } from "@smithy/protocol-http"; -import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client"; -import { Provider, RegionInfoProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, EventStreamSerdeProvider as __EventStreamSerdeProvider, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types"; -export { __Client }; -/** - * @public - */ -export type ServiceInputTypes = ConverseStreamCommandInput | ExportResultArchiveCommandInput | GenerateAssistantResponseCommandInput | GenerateTaskAssistPlanCommandInput; -/** - * @public - */ -export type ServiceOutputTypes = ConverseStreamCommandOutput | ExportResultArchiveCommandOutput | GenerateAssistantResponseCommandOutput | GenerateTaskAssistPlanCommandOutput; -/** - * @public - */ -export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> { - /** - * The HTTP handler to use. Fetch in browser and Https in Nodejs. - */ - requestHandler?: __HttpHandler; - /** - * A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface - * that computes the SHA-256 HMAC or checksum of a string or binary buffer. - * @internal - */ - sha256?: __ChecksumConstructor | __HashConstructor; - /** - * The function that will be used to convert strings into HTTP endpoints. - * @internal - */ - urlParser?: __UrlParser; - /** - * A function that can calculate the length of a request body. - * @internal - */ - bodyLengthChecker?: __BodyLengthCalculator; - /** - * A function that converts a stream into an array of bytes. - * @internal - */ - streamCollector?: __StreamCollector; - /** - * The function that will be used to convert a base64-encoded string to a byte array. - * @internal - */ - base64Decoder?: __Decoder; - /** - * The function that will be used to convert binary data to a base64-encoded string. - * @internal - */ - base64Encoder?: __Encoder; - /** - * The function that will be used to convert a UTF8-encoded string to a byte array. - * @internal - */ - utf8Decoder?: __Decoder; - /** - * The function that will be used to convert binary data to a UTF-8 encoded string. - * @internal - */ - utf8Encoder?: __Encoder; - /** - * The runtime environment. - * @internal - */ - runtime?: string; - /** - * Disable dynamically changing the endpoint of the client based on the hostPrefix - * trait of an operation. - */ - disableHostPrefix?: boolean; - /** - * Unique service identifier. - * @internal - */ - serviceId?: string; - /** - * Enables IPv6/IPv4 dualstack endpoint. - */ - useDualstackEndpoint?: boolean | __Provider; - /** - * Enables FIPS compatible endpoints. - */ - useFipsEndpoint?: boolean | __Provider; - /** - * Fetch related hostname, signing name or signing region with given region. - * @internal - */ - regionInfoProvider?: RegionInfoProvider; - /** - * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header - * @internal - */ - defaultUserAgentProvider?: Provider<__UserAgent>; - /** - * Value for how many times a request will be made at most in case of retry. - */ - maxAttempts?: number | __Provider; - /** - * Specifies which retry algorithm to use. - * @see https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-util-retry/Enum/RETRY_MODES/ - * - */ - retryMode?: string | __Provider; - /** - * Optional logger for logging debug/info/warn/error. - */ - logger?: __Logger; - /** - * Optional extensions - */ - extensions?: RuntimeExtension[]; - /** - * The function that provides necessary utilities for generating and parsing event stream - */ - eventStreamSerdeProvider?: __EventStreamSerdeProvider; - /** - * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK. - */ - defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>; -} -/** - * @public - */ -export type CodeWhispererStreamingClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & TokenInputConfig & UserAgentInputConfig & EventStreamSerdeInputConfig; -/** - * @public - * - * The configuration interface of CodeWhispererStreamingClient class constructor that set the region, credentials and other options. - */ -export interface CodeWhispererStreamingClientConfig extends CodeWhispererStreamingClientConfigType { -} -/** - * @public - */ -export type CodeWhispererStreamingClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required & RuntimeExtensionsConfig & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & TokenResolvedConfig & UserAgentResolvedConfig & EventStreamSerdeResolvedConfig; -/** - * @public - * - * The resolved configuration interface of CodeWhispererStreamingClient class. This is resolved and normalized from the {@link CodeWhispererStreamingClientConfig | constructor configuration interface}. - */ -export interface CodeWhispererStreamingClientResolvedConfig extends CodeWhispererStreamingClientResolvedConfigType { -} -/** - * @public - */ -export declare class CodeWhispererStreamingClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, CodeWhispererStreamingClientResolvedConfig> { - /** - * The resolved configuration of CodeWhispererStreamingClient class. This is resolved and normalized from the {@link CodeWhispererStreamingClientConfig | constructor configuration interface}. - */ - readonly config: CodeWhispererStreamingClientResolvedConfig; - constructor(...[configuration]: __CheckOptionalClientConfig); - /** - * Destroy underlying resources, like sockets. It's usually not necessary to do this. - * However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed. - * Otherwise, sockets might stay open for quite a long time before the server terminates them. - */ - destroy(): void; -} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/ConverseStreamCommand.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/ConverseStreamCommand.d.ts deleted file mode 100644 index e6b7c0070f0..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/ConverseStreamCommand.d.ts +++ /dev/null @@ -1,431 +0,0 @@ -import { CodeWhispererStreamingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeWhispererStreamingClient"; -import { ConverseStreamRequest, ConverseStreamResponse } from "../models/models_0"; -import { Command as $Command } from "@smithy/smithy-client"; -import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@smithy/types"; -/** - * @public - */ -export { __MetadataBearer, $Command }; -/** - * @public - * - * The input for {@link ConverseStreamCommand}. - */ -export interface ConverseStreamCommandInput extends ConverseStreamRequest { -} -/** - * @public - * - * The output of {@link ConverseStreamCommand}. - */ -export interface ConverseStreamCommandOutput extends ConverseStreamResponse, __MetadataBearer { -} -/** - * @public - * - * @example - * Use a bare-bones client and the command you need to make an API call. - * ```javascript - * import { CodeWhispererStreamingClient, ConverseStreamCommand } from "@amzn/codewhisperer-streaming"; // ES Modules import - * // const { CodeWhispererStreamingClient, ConverseStreamCommand } = require("@amzn/codewhisperer-streaming"); // CommonJS import - * const client = new CodeWhispererStreamingClient(config); - * const input = { // ConverseStreamRequest - * conversationState: { // ConversationState - * conversationId: "STRING_VALUE", - * history: [ // ChatHistory - * { // ChatMessage Union: only one key present - * userInputMessage: { // UserInputMessage - * content: "STRING_VALUE", // required - * userInputMessageContext: { // UserInputMessageContext - * editorState: { // EditorState - * document: { // TextDocument - * relativeFilePath: "STRING_VALUE", // required - * programmingLanguage: { // ProgrammingLanguage - * languageName: "STRING_VALUE", // required - * }, - * text: "STRING_VALUE", - * documentSymbols: [ // DocumentSymbols - * { // DocumentSymbol - * name: "STRING_VALUE", // required - * type: "DECLARATION" || "USAGE", // required - * source: "STRING_VALUE", - * }, - * ], - * }, - * cursorState: { // CursorState Union: only one key present - * position: { // Position - * line: Number("int"), // required - * character: Number("int"), // required - * }, - * range: { // Range - * start: { - * line: Number("int"), // required - * character: Number("int"), // required - * }, - * end: { - * line: Number("int"), // required - * character: Number("int"), // required - * }, - * }, - * }, - * relevantDocuments: [ // RelevantDocumentList - * { // RelevantTextDocument - * relativeFilePath: "STRING_VALUE", // required - * programmingLanguage: { - * languageName: "STRING_VALUE", // required - * }, - * text: "STRING_VALUE", - * documentSymbols: [ - * { - * name: "STRING_VALUE", // required - * type: "DECLARATION" || "USAGE", // required - * source: "STRING_VALUE", - * }, - * ], - * }, - * ], - * useRelevantDocuments: true || false, - * }, - * shellState: { // ShellState - * shellName: "STRING_VALUE", // required - * shellHistory: [ // ShellHistory - * { // ShellHistoryEntry - * command: "STRING_VALUE", // required - * directory: "STRING_VALUE", - * exitCode: Number("int"), - * stdout: "STRING_VALUE", - * stderr: "STRING_VALUE", - * }, - * ], - * }, - * gitState: { // GitState - * status: "STRING_VALUE", - * }, - * envState: { // EnvState - * operatingSystem: "STRING_VALUE", - * currentWorkingDirectory: "STRING_VALUE", - * environmentVariables: [ // EnvironmentVariables - * { // EnvironmentVariable - * key: "STRING_VALUE", - * value: "STRING_VALUE", - * }, - * ], - * }, - * appStudioContext: { // AppStudioState - * namespace: "STRING_VALUE", // required - * propertyName: "STRING_VALUE", // required - * propertyValue: "STRING_VALUE", - * propertyContext: "STRING_VALUE", // required - * }, - * diagnostic: { // Diagnostic Union: only one key present - * textDocumentDiagnostic: { // TextDocumentDiagnostic - * document: { - * relativeFilePath: "STRING_VALUE", // required - * programmingLanguage: { - * languageName: "STRING_VALUE", // required - * }, - * text: "STRING_VALUE", - * documentSymbols: [ - * { - * name: "STRING_VALUE", // required - * type: "DECLARATION" || "USAGE", // required - * source: "STRING_VALUE", - * }, - * ], - * }, - * range: { - * start: { - * line: Number("int"), // required - * character: Number("int"), // required - * }, - * end: { - * line: Number("int"), // required - * character: Number("int"), // required - * }, - * }, - * source: "STRING_VALUE", // required - * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required - * message: "STRING_VALUE", // required - * }, - * runtimeDiagnostic: { // RuntimeDiagnostic - * source: "STRING_VALUE", // required - * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required - * message: "STRING_VALUE", // required - * }, - * }, - * consoleState: { // ConsoleState - * region: "STRING_VALUE", - * }, - * userSettings: { // UserSettings - * hasConsentedToCrossRegionCalls: true || false, - * }, - * }, - * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE", - * }, - * assistantResponseMessage: { // AssistantResponseMessage - * messageId: "STRING_VALUE", - * content: "STRING_VALUE", // required - * supplementaryWebLinks: [ // SupplementaryWebLinks - * { // SupplementaryWebLink - * url: "STRING_VALUE", // required - * title: "STRING_VALUE", // required - * snippet: "STRING_VALUE", - * }, - * ], - * references: [ // References - * { // Reference - * licenseName: "STRING_VALUE", - * repository: "STRING_VALUE", - * url: "STRING_VALUE", - * recommendationContentSpan: { // Span - * start: Number("int"), - * end: Number("int"), - * }, - * }, - * ], - * followupPrompt: { // FollowupPrompt - * content: "STRING_VALUE", // required - * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE", - * }, - * }, - * }, - * ], - * currentMessage: {// Union: only one key present - * userInputMessage: { - * content: "STRING_VALUE", // required - * userInputMessageContext: { - * editorState: { - * document: "", - * cursorState: {// Union: only one key present - * position: "", - * range: { - * start: "", // required - * end: "", // required - * }, - * }, - * relevantDocuments: [ - * { - * relativeFilePath: "STRING_VALUE", // required - * programmingLanguage: { - * languageName: "STRING_VALUE", // required - * }, - * text: "STRING_VALUE", - * documentSymbols: [ - * { - * name: "STRING_VALUE", // required - * type: "DECLARATION" || "USAGE", // required - * source: "STRING_VALUE", - * }, - * ], - * }, - * ], - * useRelevantDocuments: true || false, - * }, - * shellState: { - * shellName: "STRING_VALUE", // required - * shellHistory: [ - * { - * command: "STRING_VALUE", // required - * directory: "STRING_VALUE", - * exitCode: Number("int"), - * stdout: "STRING_VALUE", - * stderr: "STRING_VALUE", - * }, - * ], - * }, - * gitState: { - * status: "STRING_VALUE", - * }, - * envState: { - * operatingSystem: "STRING_VALUE", - * currentWorkingDirectory: "STRING_VALUE", - * environmentVariables: [ - * { - * key: "STRING_VALUE", - * value: "STRING_VALUE", - * }, - * ], - * }, - * appStudioContext: { - * namespace: "STRING_VALUE", // required - * propertyName: "STRING_VALUE", // required - * propertyValue: "STRING_VALUE", - * propertyContext: "STRING_VALUE", // required - * }, - * diagnostic: {// Union: only one key present - * textDocumentDiagnostic: { - * document: "", // required - * range: { - * start: "", // required - * end: "", // required - * }, - * source: "STRING_VALUE", // required - * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required - * message: "STRING_VALUE", // required - * }, - * runtimeDiagnostic: { - * source: "STRING_VALUE", // required - * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required - * message: "STRING_VALUE", // required - * }, - * }, - * consoleState: { - * region: "STRING_VALUE", - * }, - * userSettings: { - * hasConsentedToCrossRegionCalls: true || false, - * }, - * }, - * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE", - * }, - * assistantResponseMessage: { - * messageId: "STRING_VALUE", - * content: "STRING_VALUE", // required - * supplementaryWebLinks: [ - * { - * url: "STRING_VALUE", // required - * title: "STRING_VALUE", // required - * snippet: "STRING_VALUE", - * }, - * ], - * references: [ - * { - * licenseName: "STRING_VALUE", - * repository: "STRING_VALUE", - * url: "STRING_VALUE", - * recommendationContentSpan: { - * start: Number("int"), - * end: Number("int"), - * }, - * }, - * ], - * followupPrompt: { - * content: "STRING_VALUE", // required - * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE", - * }, - * }, - * }, - * chatTriggerType: "MANUAL" || "DIAGNOSTIC", // required - * customizationArn: "STRING_VALUE", - * }, - * profileArn: "STRING_VALUE", - * source: "STRING_VALUE", - * dryRun: true || false, - * }; - * const command = new ConverseStreamCommand(input); - * const response = await client.send(command); - * // { // ConverseStreamResponse - * // conversationId: "STRING_VALUE", // required - * // utteranceId: "STRING_VALUE", - * // converseStreamResponse: { // ChatResponseStream Union: only one key present - * // messageMetadataEvent: { // MessageMetadataEvent - * // conversationId: "STRING_VALUE", - * // }, - * // assistantResponseEvent: { // AssistantResponseEvent - * // content: "STRING_VALUE", // required - * // }, - * // codeReferenceEvent: { // CodeReferenceEvent - * // references: [ // References - * // { // Reference - * // licenseName: "STRING_VALUE", - * // repository: "STRING_VALUE", - * // url: "STRING_VALUE", - * // recommendationContentSpan: { // Span - * // start: Number("int"), - * // end: Number("int"), - * // }, - * // }, - * // ], - * // }, - * // supplementaryWebLinksEvent: { // SupplementaryWebLinksEvent - * // supplementaryWebLinks: [ // SupplementaryWebLinks - * // { // SupplementaryWebLink - * // url: "STRING_VALUE", // required - * // title: "STRING_VALUE", // required - * // snippet: "STRING_VALUE", - * // }, - * // ], - * // }, - * // followupPromptEvent: { // FollowupPromptEvent - * // followupPrompt: { // FollowupPrompt - * // content: "STRING_VALUE", // required - * // userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE", - * // }, - * // }, - * // codeEvent: { // CodeEvent - * // content: "STRING_VALUE", // required - * // }, - * // intentsEvent: { // IntentsEvent - * // intents: { // IntentMap - * // "": { // IntentData - * // "": { // IntentDataType Union: only one key present - * // string: "STRING_VALUE", - * // }, - * // }, - * // }, - * // }, - * // invalidStateEvent: { // InvalidStateEvent - * // reason: "INVALID_TASK_ASSIST_PLAN", // required - * // message: "STRING_VALUE", // required - * // }, - * // error: { // InternalServerException - * // message: "STRING_VALUE", // required - * // }, - * // }, - * // }; - * - * ``` - * - * @param ConverseStreamCommandInput - {@link ConverseStreamCommandInput} - * @returns {@link ConverseStreamCommandOutput} - * @see {@link ConverseStreamCommandInput} for command's `input` shape. - * @see {@link ConverseStreamCommandOutput} for command's `response` shape. - * @see {@link CodeWhispererStreamingClientResolvedConfig | config} for CodeWhispererStreamingClient's `config` shape. - * - * @throws {@link InternalServerException} (server fault) - * This exception is thrown when an unexpected error occurred during the processing of a request. - * - * @throws {@link ServiceQuotaExceededException} (client fault) - * This exception is thrown when request was denied due to caller exceeding their usage limits - * - * @throws {@link DryRunOperationException} (client fault) - * This exception is translated to a 204 as it succeeded the IAM Auth. - * - * @throws {@link ThrottlingException} (client fault) - * This exception is thrown when request was denied due to request throttling. - * - * @throws {@link ValidationException} (client fault) - * This exception is thrown when the input fails to satisfy the constraints specified by the service. - * - * @throws {@link ConflictException} (client fault) - * This exception is thrown when the action to perform could not be completed because the resource is in a conflicting state. - * - * @throws {@link ResourceNotFoundException} (client fault) - * This exception is thrown when describing a resource that does not exist. - * - * @throws {@link AccessDeniedException} (client fault) - * This exception is thrown when the user does not have sufficient access to perform this action. - * - * @throws {@link CodeWhispererStreamingServiceException} - *

Base exception class for all service exceptions from CodeWhispererStreaming service.

- * - */ -export declare class ConverseStreamCommand extends $Command { - readonly input: ConverseStreamCommandInput; - /** - * @public - */ - constructor(input: ConverseStreamCommandInput); - /** - * @internal - */ - resolveMiddleware(clientStack: MiddlewareStack, configuration: CodeWhispererStreamingClientResolvedConfig, options?: __HttpHandlerOptions): Handler; - /** - * @internal - */ - private serialize; - /** - * @internal - */ - private deserialize; -} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/ExportResultArchiveCommand.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/ExportResultArchiveCommand.d.ts deleted file mode 100644 index 87ef0e6f053..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/ExportResultArchiveCommand.d.ts +++ /dev/null @@ -1,109 +0,0 @@ -import { CodeWhispererStreamingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeWhispererStreamingClient"; -import { ExportResultArchiveRequest, ExportResultArchiveResponse } from "../models/models_0"; -import { Command as $Command } from "@smithy/smithy-client"; -import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@smithy/types"; -/** - * @public - */ -export { __MetadataBearer, $Command }; -/** - * @public - * - * The input for {@link ExportResultArchiveCommand}. - */ -export interface ExportResultArchiveCommandInput extends ExportResultArchiveRequest { -} -/** - * @public - * - * The output of {@link ExportResultArchiveCommand}. - */ -export interface ExportResultArchiveCommandOutput extends ExportResultArchiveResponse, __MetadataBearer { -} -/** - * @public - * API to export operation result as an archive - * @example - * Use a bare-bones client and the command you need to make an API call. - * ```javascript - * import { CodeWhispererStreamingClient, ExportResultArchiveCommand } from "@amzn/codewhisperer-streaming"; // ES Modules import - * // const { CodeWhispererStreamingClient, ExportResultArchiveCommand } = require("@amzn/codewhisperer-streaming"); // CommonJS import - * const client = new CodeWhispererStreamingClient(config); - * const input = { // ExportResultArchiveRequest - * exportId: "STRING_VALUE", // required - * exportIntent: "TRANSFORMATION" || "TASK_ASSIST", // required - * exportContext: { // ExportContext Union: only one key present - * transformationExportContext: { // TransformationExportContext - * downloadArtifactId: "STRING_VALUE", // required - * downloadArtifactType: "ClientInstructions" || "Logs", // required - * }, - * }, - * }; - * const command = new ExportResultArchiveCommand(input); - * const response = await client.send(command); - * // { // ExportResultArchiveResponse - * // body: { // ResultArchiveStream Union: only one key present - * // binaryMetadataEvent: { // BinaryMetadataEvent - * // size: Number("long"), - * // mimeType: "STRING_VALUE", - * // contentChecksum: "STRING_VALUE", - * // contentChecksumType: "SHA_256", - * // }, - * // binaryPayloadEvent: { // BinaryPayloadEvent - * // bytes: "BLOB_VALUE", - * // }, - * // internalServerException: { // InternalServerException - * // message: "STRING_VALUE", // required - * // }, - * // }, - * // }; - * - * ``` - * - * @param ExportResultArchiveCommandInput - {@link ExportResultArchiveCommandInput} - * @returns {@link ExportResultArchiveCommandOutput} - * @see {@link ExportResultArchiveCommandInput} for command's `input` shape. - * @see {@link ExportResultArchiveCommandOutput} for command's `response` shape. - * @see {@link CodeWhispererStreamingClientResolvedConfig | config} for CodeWhispererStreamingClient's `config` shape. - * - * @throws {@link InternalServerException} (server fault) - * This exception is thrown when an unexpected error occurred during the processing of a request. - * - * @throws {@link ThrottlingException} (client fault) - * This exception is thrown when request was denied due to request throttling. - * - * @throws {@link ValidationException} (client fault) - * This exception is thrown when the input fails to satisfy the constraints specified by the service. - * - * @throws {@link ConflictException} (client fault) - * This exception is thrown when the action to perform could not be completed because the resource is in a conflicting state. - * - * @throws {@link ResourceNotFoundException} (client fault) - * This exception is thrown when describing a resource that does not exist. - * - * @throws {@link AccessDeniedException} (client fault) - * This exception is thrown when the user does not have sufficient access to perform this action. - * - * @throws {@link CodeWhispererStreamingServiceException} - *

Base exception class for all service exceptions from CodeWhispererStreaming service.

- * - */ -export declare class ExportResultArchiveCommand extends $Command { - readonly input: ExportResultArchiveCommandInput; - /** - * @public - */ - constructor(input: ExportResultArchiveCommandInput); - /** - * @internal - */ - resolveMiddleware(clientStack: MiddlewareStack, configuration: CodeWhispererStreamingClientResolvedConfig, options?: __HttpHandlerOptions): Handler; - /** - * @internal - */ - private serialize; - /** - * @internal - */ - private deserialize; -} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/GenerateAssistantResponseCommand.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/GenerateAssistantResponseCommand.d.ts deleted file mode 100644 index d8bb1b8e783..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/GenerateAssistantResponseCommand.d.ts +++ /dev/null @@ -1,416 +0,0 @@ -import { CodeWhispererStreamingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeWhispererStreamingClient"; -import { GenerateAssistantResponseRequest, GenerateAssistantResponseResponse } from "../models/models_0"; -import { Command as $Command } from "@smithy/smithy-client"; -import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@smithy/types"; -/** - * @public - */ -export { __MetadataBearer, $Command }; -/** - * @public - * - * The input for {@link GenerateAssistantResponseCommand}. - */ -export interface GenerateAssistantResponseCommandInput extends GenerateAssistantResponseRequest { -} -/** - * @public - * - * The output of {@link GenerateAssistantResponseCommand}. - */ -export interface GenerateAssistantResponseCommandOutput extends GenerateAssistantResponseResponse, __MetadataBearer { -} -/** - * @public - * API to generate assistant response. - * @example - * Use a bare-bones client and the command you need to make an API call. - * ```javascript - * import { CodeWhispererStreamingClient, GenerateAssistantResponseCommand } from "@amzn/codewhisperer-streaming"; // ES Modules import - * // const { CodeWhispererStreamingClient, GenerateAssistantResponseCommand } = require("@amzn/codewhisperer-streaming"); // CommonJS import - * const client = new CodeWhispererStreamingClient(config); - * const input = { // GenerateAssistantResponseRequest - * conversationState: { // ConversationState - * conversationId: "STRING_VALUE", - * history: [ // ChatHistory - * { // ChatMessage Union: only one key present - * userInputMessage: { // UserInputMessage - * content: "STRING_VALUE", // required - * userInputMessageContext: { // UserInputMessageContext - * editorState: { // EditorState - * document: { // TextDocument - * relativeFilePath: "STRING_VALUE", // required - * programmingLanguage: { // ProgrammingLanguage - * languageName: "STRING_VALUE", // required - * }, - * text: "STRING_VALUE", - * documentSymbols: [ // DocumentSymbols - * { // DocumentSymbol - * name: "STRING_VALUE", // required - * type: "DECLARATION" || "USAGE", // required - * source: "STRING_VALUE", - * }, - * ], - * }, - * cursorState: { // CursorState Union: only one key present - * position: { // Position - * line: Number("int"), // required - * character: Number("int"), // required - * }, - * range: { // Range - * start: { - * line: Number("int"), // required - * character: Number("int"), // required - * }, - * end: { - * line: Number("int"), // required - * character: Number("int"), // required - * }, - * }, - * }, - * relevantDocuments: [ // RelevantDocumentList - * { // RelevantTextDocument - * relativeFilePath: "STRING_VALUE", // required - * programmingLanguage: { - * languageName: "STRING_VALUE", // required - * }, - * text: "STRING_VALUE", - * documentSymbols: [ - * { - * name: "STRING_VALUE", // required - * type: "DECLARATION" || "USAGE", // required - * source: "STRING_VALUE", - * }, - * ], - * }, - * ], - * useRelevantDocuments: true || false, - * }, - * shellState: { // ShellState - * shellName: "STRING_VALUE", // required - * shellHistory: [ // ShellHistory - * { // ShellHistoryEntry - * command: "STRING_VALUE", // required - * directory: "STRING_VALUE", - * exitCode: Number("int"), - * stdout: "STRING_VALUE", - * stderr: "STRING_VALUE", - * }, - * ], - * }, - * gitState: { // GitState - * status: "STRING_VALUE", - * }, - * envState: { // EnvState - * operatingSystem: "STRING_VALUE", - * currentWorkingDirectory: "STRING_VALUE", - * environmentVariables: [ // EnvironmentVariables - * { // EnvironmentVariable - * key: "STRING_VALUE", - * value: "STRING_VALUE", - * }, - * ], - * }, - * appStudioContext: { // AppStudioState - * namespace: "STRING_VALUE", // required - * propertyName: "STRING_VALUE", // required - * propertyValue: "STRING_VALUE", - * propertyContext: "STRING_VALUE", // required - * }, - * diagnostic: { // Diagnostic Union: only one key present - * textDocumentDiagnostic: { // TextDocumentDiagnostic - * document: { - * relativeFilePath: "STRING_VALUE", // required - * programmingLanguage: { - * languageName: "STRING_VALUE", // required - * }, - * text: "STRING_VALUE", - * documentSymbols: [ - * { - * name: "STRING_VALUE", // required - * type: "DECLARATION" || "USAGE", // required - * source: "STRING_VALUE", - * }, - * ], - * }, - * range: { - * start: { - * line: Number("int"), // required - * character: Number("int"), // required - * }, - * end: { - * line: Number("int"), // required - * character: Number("int"), // required - * }, - * }, - * source: "STRING_VALUE", // required - * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required - * message: "STRING_VALUE", // required - * }, - * runtimeDiagnostic: { // RuntimeDiagnostic - * source: "STRING_VALUE", // required - * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required - * message: "STRING_VALUE", // required - * }, - * }, - * consoleState: { // ConsoleState - * region: "STRING_VALUE", - * }, - * userSettings: { // UserSettings - * hasConsentedToCrossRegionCalls: true || false, - * }, - * }, - * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS", - * }, - * assistantResponseMessage: { // AssistantResponseMessage - * messageId: "STRING_VALUE", - * content: "STRING_VALUE", // required - * supplementaryWebLinks: [ // SupplementaryWebLinks - * { // SupplementaryWebLink - * url: "STRING_VALUE", // required - * title: "STRING_VALUE", // required - * snippet: "STRING_VALUE", - * }, - * ], - * references: [ // References - * { // Reference - * licenseName: "STRING_VALUE", - * repository: "STRING_VALUE", - * url: "STRING_VALUE", - * recommendationContentSpan: { // Span - * start: Number("int"), - * end: Number("int"), - * }, - * }, - * ], - * followupPrompt: { // FollowupPrompt - * content: "STRING_VALUE", // required - * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS", - * }, - * }, - * }, - * ], - * currentMessage: {// Union: only one key present - * userInputMessage: { - * content: "STRING_VALUE", // required - * userInputMessageContext: { - * editorState: { - * document: "", - * cursorState: {// Union: only one key present - * position: "", - * range: { - * start: "", // required - * end: "", // required - * }, - * }, - * relevantDocuments: [ - * { - * relativeFilePath: "STRING_VALUE", // required - * programmingLanguage: { - * languageName: "STRING_VALUE", // required - * }, - * text: "STRING_VALUE", - * documentSymbols: [ - * { - * name: "STRING_VALUE", // required - * type: "DECLARATION" || "USAGE", // required - * source: "STRING_VALUE", - * }, - * ], - * }, - * ], - * useRelevantDocuments: true || false, - * }, - * shellState: { - * shellName: "STRING_VALUE", // required - * shellHistory: [ - * { - * command: "STRING_VALUE", // required - * directory: "STRING_VALUE", - * exitCode: Number("int"), - * stdout: "STRING_VALUE", - * stderr: "STRING_VALUE", - * }, - * ], - * }, - * gitState: { - * status: "STRING_VALUE", - * }, - * envState: { - * operatingSystem: "STRING_VALUE", - * currentWorkingDirectory: "STRING_VALUE", - * environmentVariables: [ - * { - * key: "STRING_VALUE", - * value: "STRING_VALUE", - * }, - * ], - * }, - * appStudioContext: { - * namespace: "STRING_VALUE", // required - * propertyName: "STRING_VALUE", // required - * propertyValue: "STRING_VALUE", - * propertyContext: "STRING_VALUE", // required - * }, - * diagnostic: {// Union: only one key present - * textDocumentDiagnostic: { - * document: "", // required - * range: { - * start: "", // required - * end: "", // required - * }, - * source: "STRING_VALUE", // required - * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required - * message: "STRING_VALUE", // required - * }, - * runtimeDiagnostic: { - * source: "STRING_VALUE", // required - * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required - * message: "STRING_VALUE", // required - * }, - * }, - * consoleState: { - * region: "STRING_VALUE", - * }, - * userSettings: { - * hasConsentedToCrossRegionCalls: true || false, - * }, - * }, - * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS", - * }, - * assistantResponseMessage: { - * messageId: "STRING_VALUE", - * content: "STRING_VALUE", // required - * supplementaryWebLinks: [ - * { - * url: "STRING_VALUE", // required - * title: "STRING_VALUE", // required - * snippet: "STRING_VALUE", - * }, - * ], - * references: [ - * { - * licenseName: "STRING_VALUE", - * repository: "STRING_VALUE", - * url: "STRING_VALUE", - * recommendationContentSpan: { - * start: Number("int"), - * end: Number("int"), - * }, - * }, - * ], - * followupPrompt: { - * content: "STRING_VALUE", // required - * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS", - * }, - * }, - * }, - * chatTriggerType: "MANUAL" || "DIAGNOSTIC", // required - * customizationArn: "STRING_VALUE", - * }, - * profileArn: "STRING_VALUE", - * }; - * const command = new GenerateAssistantResponseCommand(input); - * const response = await client.send(command); - * // { // GenerateAssistantResponseResponse - * // conversationId: "STRING_VALUE", // required - * // generateAssistantResponseResponse: { // ChatResponseStream Union: only one key present - * // messageMetadataEvent: { // MessageMetadataEvent - * // conversationId: "STRING_VALUE", - * // }, - * // assistantResponseEvent: { // AssistantResponseEvent - * // content: "STRING_VALUE", // required - * // }, - * // codeReferenceEvent: { // CodeReferenceEvent - * // references: [ // References - * // { // Reference - * // licenseName: "STRING_VALUE", - * // repository: "STRING_VALUE", - * // url: "STRING_VALUE", - * // recommendationContentSpan: { // Span - * // start: Number("int"), - * // end: Number("int"), - * // }, - * // }, - * // ], - * // }, - * // supplementaryWebLinksEvent: { // SupplementaryWebLinksEvent - * // supplementaryWebLinks: [ // SupplementaryWebLinks - * // { // SupplementaryWebLink - * // url: "STRING_VALUE", // required - * // title: "STRING_VALUE", // required - * // snippet: "STRING_VALUE", - * // }, - * // ], - * // }, - * // followupPromptEvent: { // FollowupPromptEvent - * // followupPrompt: { // FollowupPrompt - * // content: "STRING_VALUE", // required - * // userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS", - * // }, - * // }, - * // codeEvent: { // CodeEvent - * // content: "STRING_VALUE", // required - * // }, - * // intentsEvent: { // IntentsEvent - * // intents: { // IntentMap - * // "": { // IntentData - * // "": { // IntentDataType Union: only one key present - * // string: "STRING_VALUE", - * // }, - * // }, - * // }, - * // }, - * // invalidStateEvent: { // InvalidStateEvent - * // reason: "INVALID_TASK_ASSIST_PLAN", // required - * // message: "STRING_VALUE", // required - * // }, - * // error: { // InternalServerException - * // message: "STRING_VALUE", // required - * // }, - * // }, - * // }; - * - * ``` - * - * @param GenerateAssistantResponseCommandInput - {@link GenerateAssistantResponseCommandInput} - * @returns {@link GenerateAssistantResponseCommandOutput} - * @see {@link GenerateAssistantResponseCommandInput} for command's `input` shape. - * @see {@link GenerateAssistantResponseCommandOutput} for command's `response` shape. - * @see {@link CodeWhispererStreamingClientResolvedConfig | config} for CodeWhispererStreamingClient's `config` shape. - * - * @throws {@link InternalServerException} (server fault) - * This exception is thrown when an unexpected error occurred during the processing of a request. - * - * @throws {@link ThrottlingException} (client fault) - * This exception is thrown when request was denied due to request throttling. - * - * @throws {@link ValidationException} (client fault) - * This exception is thrown when the input fails to satisfy the constraints specified by the service. - * - * @throws {@link AccessDeniedException} (client fault) - * This exception is thrown when the user does not have sufficient access to perform this action. - * - * @throws {@link CodeWhispererStreamingServiceException} - *

Base exception class for all service exceptions from CodeWhispererStreaming service.

- * - */ -export declare class GenerateAssistantResponseCommand extends $Command { - readonly input: GenerateAssistantResponseCommandInput; - /** - * @public - */ - constructor(input: GenerateAssistantResponseCommandInput); - /** - * @internal - */ - resolveMiddleware(clientStack: MiddlewareStack, configuration: CodeWhispererStreamingClientResolvedConfig, options?: __HttpHandlerOptions): Handler; - /** - * @internal - */ - private serialize; - /** - * @internal - */ - private deserialize; -} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/GenerateTaskAssistPlanCommand.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/GenerateTaskAssistPlanCommand.d.ts deleted file mode 100644 index 262cec16559..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/GenerateTaskAssistPlanCommand.d.ts +++ /dev/null @@ -1,428 +0,0 @@ -import { CodeWhispererStreamingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeWhispererStreamingClient"; -import { GenerateTaskAssistPlanRequest, GenerateTaskAssistPlanResponse } from "../models/models_0"; -import { Command as $Command } from "@smithy/smithy-client"; -import { Handler, MiddlewareStack, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer } from "@smithy/types"; -/** - * @public - */ -export { __MetadataBearer, $Command }; -/** - * @public - * - * The input for {@link GenerateTaskAssistPlanCommand}. - */ -export interface GenerateTaskAssistPlanCommandInput extends GenerateTaskAssistPlanRequest { -} -/** - * @public - * - * The output of {@link GenerateTaskAssistPlanCommand}. - */ -export interface GenerateTaskAssistPlanCommandOutput extends GenerateTaskAssistPlanResponse, __MetadataBearer { -} -/** - * @public - * API to generate task assit plan. - * @example - * Use a bare-bones client and the command you need to make an API call. - * ```javascript - * import { CodeWhispererStreamingClient, GenerateTaskAssistPlanCommand } from "@amzn/codewhisperer-streaming"; // ES Modules import - * // const { CodeWhispererStreamingClient, GenerateTaskAssistPlanCommand } = require("@amzn/codewhisperer-streaming"); // CommonJS import - * const client = new CodeWhispererStreamingClient(config); - * const input = { // GenerateTaskAssistPlanRequest - * conversationState: { // ConversationState - * conversationId: "STRING_VALUE", - * history: [ // ChatHistory - * { // ChatMessage Union: only one key present - * userInputMessage: { // UserInputMessage - * content: "STRING_VALUE", // required - * userInputMessageContext: { // UserInputMessageContext - * editorState: { // EditorState - * document: { // TextDocument - * relativeFilePath: "STRING_VALUE", // required - * programmingLanguage: { // ProgrammingLanguage - * languageName: "STRING_VALUE", // required - * }, - * text: "STRING_VALUE", - * documentSymbols: [ // DocumentSymbols - * { // DocumentSymbol - * name: "STRING_VALUE", // required - * type: "DECLARATION" || "USAGE", // required - * source: "STRING_VALUE", - * }, - * ], - * }, - * cursorState: { // CursorState Union: only one key present - * position: { // Position - * line: Number("int"), // required - * character: Number("int"), // required - * }, - * range: { // Range - * start: { - * line: Number("int"), // required - * character: Number("int"), // required - * }, - * end: { - * line: Number("int"), // required - * character: Number("int"), // required - * }, - * }, - * }, - * relevantDocuments: [ // RelevantDocumentList - * { // RelevantTextDocument - * relativeFilePath: "STRING_VALUE", // required - * programmingLanguage: { - * languageName: "STRING_VALUE", // required - * }, - * text: "STRING_VALUE", - * documentSymbols: [ - * { - * name: "STRING_VALUE", // required - * type: "DECLARATION" || "USAGE", // required - * source: "STRING_VALUE", - * }, - * ], - * }, - * ], - * useRelevantDocuments: true || false, - * }, - * shellState: { // ShellState - * shellName: "STRING_VALUE", // required - * shellHistory: [ // ShellHistory - * { // ShellHistoryEntry - * command: "STRING_VALUE", // required - * directory: "STRING_VALUE", - * exitCode: Number("int"), - * stdout: "STRING_VALUE", - * stderr: "STRING_VALUE", - * }, - * ], - * }, - * gitState: { // GitState - * status: "STRING_VALUE", - * }, - * envState: { // EnvState - * operatingSystem: "STRING_VALUE", - * currentWorkingDirectory: "STRING_VALUE", - * environmentVariables: [ // EnvironmentVariables - * { // EnvironmentVariable - * key: "STRING_VALUE", - * value: "STRING_VALUE", - * }, - * ], - * }, - * appStudioContext: { // AppStudioState - * namespace: "STRING_VALUE", // required - * propertyName: "STRING_VALUE", // required - * propertyValue: "STRING_VALUE", - * propertyContext: "STRING_VALUE", // required - * }, - * diagnostic: { // Diagnostic Union: only one key present - * textDocumentDiagnostic: { // TextDocumentDiagnostic - * document: { - * relativeFilePath: "STRING_VALUE", // required - * programmingLanguage: { - * languageName: "STRING_VALUE", // required - * }, - * text: "STRING_VALUE", - * documentSymbols: [ - * { - * name: "STRING_VALUE", // required - * type: "DECLARATION" || "USAGE", // required - * source: "STRING_VALUE", - * }, - * ], - * }, - * range: { - * start: { - * line: Number("int"), // required - * character: Number("int"), // required - * }, - * end: { - * line: Number("int"), // required - * character: Number("int"), // required - * }, - * }, - * source: "STRING_VALUE", // required - * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required - * message: "STRING_VALUE", // required - * }, - * runtimeDiagnostic: { // RuntimeDiagnostic - * source: "STRING_VALUE", // required - * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required - * message: "STRING_VALUE", // required - * }, - * }, - * consoleState: { // ConsoleState - * region: "STRING_VALUE", - * }, - * userSettings: { // UserSettings - * hasConsentedToCrossRegionCalls: true || false, - * }, - * }, - * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS", - * }, - * assistantResponseMessage: { // AssistantResponseMessage - * messageId: "STRING_VALUE", - * content: "STRING_VALUE", // required - * supplementaryWebLinks: [ // SupplementaryWebLinks - * { // SupplementaryWebLink - * url: "STRING_VALUE", // required - * title: "STRING_VALUE", // required - * snippet: "STRING_VALUE", - * }, - * ], - * references: [ // References - * { // Reference - * licenseName: "STRING_VALUE", - * repository: "STRING_VALUE", - * url: "STRING_VALUE", - * recommendationContentSpan: { // Span - * start: Number("int"), - * end: Number("int"), - * }, - * }, - * ], - * followupPrompt: { // FollowupPrompt - * content: "STRING_VALUE", // required - * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS", - * }, - * }, - * }, - * ], - * currentMessage: {// Union: only one key present - * userInputMessage: { - * content: "STRING_VALUE", // required - * userInputMessageContext: { - * editorState: { - * document: "", - * cursorState: {// Union: only one key present - * position: "", - * range: { - * start: "", // required - * end: "", // required - * }, - * }, - * relevantDocuments: [ - * { - * relativeFilePath: "STRING_VALUE", // required - * programmingLanguage: { - * languageName: "STRING_VALUE", // required - * }, - * text: "STRING_VALUE", - * documentSymbols: [ - * { - * name: "STRING_VALUE", // required - * type: "DECLARATION" || "USAGE", // required - * source: "STRING_VALUE", - * }, - * ], - * }, - * ], - * useRelevantDocuments: true || false, - * }, - * shellState: { - * shellName: "STRING_VALUE", // required - * shellHistory: [ - * { - * command: "STRING_VALUE", // required - * directory: "STRING_VALUE", - * exitCode: Number("int"), - * stdout: "STRING_VALUE", - * stderr: "STRING_VALUE", - * }, - * ], - * }, - * gitState: { - * status: "STRING_VALUE", - * }, - * envState: { - * operatingSystem: "STRING_VALUE", - * currentWorkingDirectory: "STRING_VALUE", - * environmentVariables: [ - * { - * key: "STRING_VALUE", - * value: "STRING_VALUE", - * }, - * ], - * }, - * appStudioContext: { - * namespace: "STRING_VALUE", // required - * propertyName: "STRING_VALUE", // required - * propertyValue: "STRING_VALUE", - * propertyContext: "STRING_VALUE", // required - * }, - * diagnostic: {// Union: only one key present - * textDocumentDiagnostic: { - * document: "", // required - * range: { - * start: "", // required - * end: "", // required - * }, - * source: "STRING_VALUE", // required - * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required - * message: "STRING_VALUE", // required - * }, - * runtimeDiagnostic: { - * source: "STRING_VALUE", // required - * severity: "ERROR" || "WARNING" || "INFORMATION" || "HINT", // required - * message: "STRING_VALUE", // required - * }, - * }, - * consoleState: { - * region: "STRING_VALUE", - * }, - * userSettings: { - * hasConsentedToCrossRegionCalls: true || false, - * }, - * }, - * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS", - * }, - * assistantResponseMessage: { - * messageId: "STRING_VALUE", - * content: "STRING_VALUE", // required - * supplementaryWebLinks: [ - * { - * url: "STRING_VALUE", // required - * title: "STRING_VALUE", // required - * snippet: "STRING_VALUE", - * }, - * ], - * references: [ - * { - * licenseName: "STRING_VALUE", - * repository: "STRING_VALUE", - * url: "STRING_VALUE", - * recommendationContentSpan: { - * start: Number("int"), - * end: Number("int"), - * }, - * }, - * ], - * followupPrompt: { - * content: "STRING_VALUE", // required - * userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS", - * }, - * }, - * }, - * chatTriggerType: "MANUAL" || "DIAGNOSTIC", // required - * customizationArn: "STRING_VALUE", - * }, - * workspaceState: { // WorkspaceState - * uploadId: "STRING_VALUE", // required - * programmingLanguage: "", // required - * contextTruncationScheme: "ANALYSIS" || "GUMBY", - * }, - * }; - * const command = new GenerateTaskAssistPlanCommand(input); - * const response = await client.send(command); - * // { // GenerateTaskAssistPlanResponse - * // planningResponseStream: { // ChatResponseStream Union: only one key present - * // messageMetadataEvent: { // MessageMetadataEvent - * // conversationId: "STRING_VALUE", - * // }, - * // assistantResponseEvent: { // AssistantResponseEvent - * // content: "STRING_VALUE", // required - * // }, - * // codeReferenceEvent: { // CodeReferenceEvent - * // references: [ // References - * // { // Reference - * // licenseName: "STRING_VALUE", - * // repository: "STRING_VALUE", - * // url: "STRING_VALUE", - * // recommendationContentSpan: { // Span - * // start: Number("int"), - * // end: Number("int"), - * // }, - * // }, - * // ], - * // }, - * // supplementaryWebLinksEvent: { // SupplementaryWebLinksEvent - * // supplementaryWebLinks: [ // SupplementaryWebLinks - * // { // SupplementaryWebLink - * // url: "STRING_VALUE", // required - * // title: "STRING_VALUE", // required - * // snippet: "STRING_VALUE", - * // }, - * // ], - * // }, - * // followupPromptEvent: { // FollowupPromptEvent - * // followupPrompt: { // FollowupPrompt - * // content: "STRING_VALUE", // required - * // userIntent: "SUGGEST_ALTERNATE_IMPLEMENTATION" || "APPLY_COMMON_BEST_PRACTICES" || "IMPROVE_CODE" || "SHOW_EXAMPLES" || "CITE_SOURCES" || "EXPLAIN_LINE_BY_LINE" || "EXPLAIN_CODE_SELECTION" || "GENERATE_CLOUDFORMATION_TEMPLATE" || "GENERATE_UNIT_TESTS", - * // }, - * // }, - * // codeEvent: { // CodeEvent - * // content: "STRING_VALUE", // required - * // }, - * // intentsEvent: { // IntentsEvent - * // intents: { // IntentMap - * // "": { // IntentData - * // "": { // IntentDataType Union: only one key present - * // string: "STRING_VALUE", - * // }, - * // }, - * // }, - * // }, - * // invalidStateEvent: { // InvalidStateEvent - * // reason: "INVALID_TASK_ASSIST_PLAN", // required - * // message: "STRING_VALUE", // required - * // }, - * // error: { // InternalServerException - * // message: "STRING_VALUE", // required - * // }, - * // }, - * // }; - * - * ``` - * - * @param GenerateTaskAssistPlanCommandInput - {@link GenerateTaskAssistPlanCommandInput} - * @returns {@link GenerateTaskAssistPlanCommandOutput} - * @see {@link GenerateTaskAssistPlanCommandInput} for command's `input` shape. - * @see {@link GenerateTaskAssistPlanCommandOutput} for command's `response` shape. - * @see {@link CodeWhispererStreamingClientResolvedConfig | config} for CodeWhispererStreamingClient's `config` shape. - * - * @throws {@link InternalServerException} (server fault) - * This exception is thrown when an unexpected error occurred during the processing of a request. - * - * @throws {@link ServiceQuotaExceededException} (client fault) - * This exception is thrown when request was denied due to caller exceeding their usage limits - * - * @throws {@link ThrottlingException} (client fault) - * This exception is thrown when request was denied due to request throttling. - * - * @throws {@link ValidationException} (client fault) - * This exception is thrown when the input fails to satisfy the constraints specified by the service. - * - * @throws {@link ConflictException} (client fault) - * This exception is thrown when the action to perform could not be completed because the resource is in a conflicting state. - * - * @throws {@link ResourceNotFoundException} (client fault) - * This exception is thrown when describing a resource that does not exist. - * - * @throws {@link AccessDeniedException} (client fault) - * This exception is thrown when the user does not have sufficient access to perform this action. - * - * @throws {@link CodeWhispererStreamingServiceException} - *

Base exception class for all service exceptions from CodeWhispererStreaming service.

- * - */ -export declare class GenerateTaskAssistPlanCommand extends $Command { - readonly input: GenerateTaskAssistPlanCommandInput; - /** - * @public - */ - constructor(input: GenerateTaskAssistPlanCommandInput); - /** - * @internal - */ - resolveMiddleware(clientStack: MiddlewareStack, configuration: CodeWhispererStreamingClientResolvedConfig, options?: __HttpHandlerOptions): Handler; - /** - * @internal - */ - private serialize; - /** - * @internal - */ - private deserialize; -} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/index.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/index.d.ts deleted file mode 100644 index 983aed6e929..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-types/commands/index.d.ts +++ /dev/null @@ -1,4 +0,0 @@ -export * from "./ExportResultArchiveCommand"; -export * from "./GenerateAssistantResponseCommand"; -export * from "./GenerateTaskAssistPlanCommand"; -export * from "./ConverseStreamCommand"; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/endpoints.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/endpoints.d.ts deleted file mode 100644 index 4605191af31..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-types/endpoints.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -import { RegionInfoProvider } from "@aws-sdk/types"; -export declare const defaultRegionInfoProvider: RegionInfoProvider; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/extensionConfiguration.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/extensionConfiguration.d.ts deleted file mode 100644 index 43c8bc8bc4c..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-types/extensionConfiguration.d.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; -/** - * @internal - */ -export interface CodeWhispererStreamingExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration { -} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/index.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/index.d.ts deleted file mode 100644 index 4bab106103b..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-types/index.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -export * from "./CodeWhispererStreamingClient"; -export * from "./CodeWhispererStreaming"; -export * from "./commands"; -export * from "./models"; -export { CodeWhispererStreamingServiceException } from "./models/CodeWhispererStreamingServiceException"; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/models/CodeWhispererStreamingServiceException.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/models/CodeWhispererStreamingServiceException.d.ts deleted file mode 100644 index 57083b25264..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-types/models/CodeWhispererStreamingServiceException.d.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client"; -export { __ServiceException, __ServiceExceptionOptions }; -/** - * @public - * - * Base exception class for all service exceptions from CodeWhispererStreaming service. - */ -export declare class CodeWhispererStreamingServiceException extends __ServiceException { - /** - * @internal - */ - constructor(options: __ServiceExceptionOptions); -} diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/models/index.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/models/index.d.ts deleted file mode 100644 index 09c5d6e09b8..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-types/models/index.d.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./models_0"; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/models/models_0.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/models/models_0.d.ts deleted file mode 100644 index 57e0d83daec..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-types/models/models_0.d.ts +++ /dev/null @@ -1,1708 +0,0 @@ -import { CodeWhispererStreamingServiceException as __BaseException } from "./CodeWhispererStreamingServiceException"; -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; -/** - * @public - * @enum - */ -export declare const AccessDeniedExceptionReason: { - readonly UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS: "UNAUTHORIZED_CUSTOMIZATION_RESOURCE_ACCESS"; -}; -/** - * @public - */ -export type AccessDeniedExceptionReason = typeof AccessDeniedExceptionReason[keyof typeof AccessDeniedExceptionReason]; -/** - * @public - * This exception is thrown when the user does not have sufficient access to perform this action. - */ -export declare class AccessDeniedException extends __BaseException { - readonly name: "AccessDeniedException"; - readonly $fault: "client"; - /** - * @public - * Reason for AccessDeniedException - */ - reason?: AccessDeniedExceptionReason | string; - /** - * @internal - */ - constructor(opts: __ExceptionOptionType); -} -/** - * @public - * This exception is thrown when an unexpected error occurred during the processing of a request. - */ -export declare class InternalServerException extends __BaseException { - readonly name: "InternalServerException"; - readonly $fault: "server"; - $retryable: {}; - /** - * @internal - */ - constructor(opts: __ExceptionOptionType); -} -/** - * @public - * This exception is thrown when describing a resource that does not exist. - */ -export declare class ResourceNotFoundException extends __BaseException { - readonly name: "ResourceNotFoundException"; - readonly $fault: "client"; - /** - * @internal - */ - constructor(opts: __ExceptionOptionType); -} -/** - * @public - * This exception is thrown when request was denied due to request throttling. - */ -export declare class ThrottlingException extends __BaseException { - readonly name: "ThrottlingException"; - readonly $fault: "client"; - $retryable: { - throttling: boolean; - }; - /** - * @internal - */ - constructor(opts: __ExceptionOptionType); -} -/** - * @public - * @enum - */ -export declare const ValidationExceptionReason: { - readonly CONTENT_LENGTH_EXCEEDS_THRESHOLD: "CONTENT_LENGTH_EXCEEDS_THRESHOLD"; - readonly INVALID_CONVERSATION_ID: "INVALID_CONVERSATION_ID"; -}; -/** - * @public - */ -export type ValidationExceptionReason = typeof ValidationExceptionReason[keyof typeof ValidationExceptionReason]; -/** - * @public - * This exception is thrown when the input fails to satisfy the constraints specified by the service. - */ -export declare class ValidationException extends __BaseException { - readonly name: "ValidationException"; - readonly $fault: "client"; - /** - * @public - * Reason for ValidationException - */ - reason?: ValidationExceptionReason | string; - /** - * @internal - */ - constructor(opts: __ExceptionOptionType); -} -/** - * @public - * Description of a user's context when they are calling Q Chat from AppStudio - */ -export interface AppStudioState { - /** - * @public - * The namespace of the context. Examples: 'ui.Button', 'ui.Table.DataSource', 'ui.Table.RowActions.Button', 'logic.invokeAWS', 'logic.JavaScript' - */ - namespace: string | undefined; - /** - * @public - * The name of the property. Examples: 'visibility', 'disability', 'value', 'code' - */ - propertyName: string | undefined; - /** - * @public - * The value of the property. - */ - propertyValue?: string; - /** - * @public - * Context about how the property is used - */ - propertyContext: string | undefined; -} -/** - * @internal - */ -export declare const AppStudioStateFilterSensitiveLog: (obj: AppStudioState) => any; -/** - * @public - * Streaming Response Event for Assistant Markdown text message. - */ -export interface AssistantResponseEvent { - /** - * @public - * The content of the text message in markdown format. - */ - content: string | undefined; -} -/** - * @internal - */ -export declare const AssistantResponseEventFilterSensitiveLog: (obj: AssistantResponseEvent) => any; -/** - * @public - * @enum - */ -export declare const UserIntent: { - /** - * Apply Common Best Practices - */ - readonly APPLY_COMMON_BEST_PRACTICES: "APPLY_COMMON_BEST_PRACTICES"; - /** - * Cite Sources - */ - readonly CITE_SOURCES: "CITE_SOURCES"; - /** - * Explain Code Selection - */ - readonly EXPLAIN_CODE_SELECTION: "EXPLAIN_CODE_SELECTION"; - /** - * Explain Code Line By Line - */ - readonly EXPLAIN_LINE_BY_LINE: "EXPLAIN_LINE_BY_LINE"; - /** - * Generate CloudFormation Template - */ - readonly GENERATE_CLOUDFORMATION_TEMPLATE: "GENERATE_CLOUDFORMATION_TEMPLATE"; - /** - * Generate Unit Tests - */ - readonly GENERATE_UNIT_TESTS: "GENERATE_UNIT_TESTS"; - /** - * Improve Code - */ - readonly IMPROVE_CODE: "IMPROVE_CODE"; - /** - * Show More Examples - */ - readonly SHOW_EXAMPLES: "SHOW_EXAMPLES"; - /** - * Suggest Alternative Implementation - */ - readonly SUGGEST_ALTERNATE_IMPLEMENTATION: "SUGGEST_ALTERNATE_IMPLEMENTATION"; -}; -/** - * @public - */ -export type UserIntent = typeof UserIntent[keyof typeof UserIntent]; -/** - * @public - * Followup Prompt for the Assistant Response - */ -export interface FollowupPrompt { - /** - * @public - * The content of the text message in markdown format. - */ - content: string | undefined; - /** - * @public - * User Intent - */ - userIntent?: UserIntent | string; -} -/** - * @internal - */ -export declare const FollowupPromptFilterSensitiveLog: (obj: FollowupPrompt) => any; -/** - * @public - * Represents span in a text - */ -export interface Span { - start?: number; - end?: number; -} -/** - * @public - * Code Reference / Repository details - */ -export interface Reference { - /** - * @public - * License name - */ - licenseName?: string; - /** - * @public - * Code Repsitory for the associated reference - */ - repository?: string; - /** - * @public - * Respository URL - */ - url?: string; - /** - * @public - * Span / Range for the Reference - */ - recommendationContentSpan?: Span; -} -/** - * @public - * Represents an additional reference link retured with the Chat message - */ -export interface SupplementaryWebLink { - /** - * @public - * URL of the web reference link - */ - url: string | undefined; - /** - * @public - * Title of the web reference link - */ - title: string | undefined; - /** - * @public - * Relevant text snippet from the link - */ - snippet?: string; -} -/** - * @internal - */ -export declare const SupplementaryWebLinkFilterSensitiveLog: (obj: SupplementaryWebLink) => any; -/** - * @public - * Markdown text message. - */ -export interface AssistantResponseMessage { - /** - * @public - * Unique identifier for the chat message - */ - messageId?: string; - /** - * @public - * The content of the text message in markdown format. - */ - content: string | undefined; - /** - * @public - * Web References - */ - supplementaryWebLinks?: (SupplementaryWebLink)[]; - /** - * @public - * Code References - */ - references?: (Reference)[]; - /** - * @public - * Followup Prompt - */ - followupPrompt?: FollowupPrompt; -} -/** - * @internal - */ -export declare const AssistantResponseMessageFilterSensitiveLog: (obj: AssistantResponseMessage) => any; -/** - * @public - * This exception is thrown when the action to perform could not be completed because the resource is in a conflicting state. - */ -export declare class ConflictException extends __BaseException { - readonly name: "ConflictException"; - readonly $fault: "client"; - /** - * @internal - */ - constructor(opts: __ExceptionOptionType); -} -/** - * @public - * Programming Languages supported by CodeWhisperer - */ -export interface ProgrammingLanguage { - languageName: string | undefined; -} -/** - * @public - * @enum - */ -export declare const ContentChecksumType: { - readonly SHA_256: "SHA_256"; -}; -/** - * @public - */ -export type ContentChecksumType = typeof ContentChecksumType[keyof typeof ContentChecksumType]; -/** - * @public - * Payload Part - */ -export interface BinaryMetadataEvent { - /** - * @public - * Content length of the binary payload - */ - size?: number; - /** - * @public - * Content type of the response - */ - mimeType?: string; - /** - * @public - * Content checksum of the binary payload - */ - contentChecksum?: string; - /** - * @public - * Content checksum type of the binary payload - */ - contentChecksumType?: ContentChecksumType | string; -} -/** - * @internal - */ -export declare const BinaryMetadataEventFilterSensitiveLog: (obj: BinaryMetadataEvent) => any; -/** - * @public - * Payload Part - */ -export interface BinaryPayloadEvent { - /** - * @public - * Payload Part's body - */ - bytes?: Uint8Array; -} -/** - * @internal - */ -export declare const BinaryPayloadEventFilterSensitiveLog: (obj: BinaryPayloadEvent) => any; -/** - * @public - * Information about the state of the AWS management console page from which the user is calling - */ -export interface ConsoleState { - region?: string; -} -/** - * @public - * @enum - */ -export declare const DiagnosticSeverity: { - readonly ERROR: "ERROR"; - readonly HINT: "HINT"; - readonly INFORMATION: "INFORMATION"; - readonly WARNING: "WARNING"; -}; -/** - * @public - */ -export type DiagnosticSeverity = typeof DiagnosticSeverity[keyof typeof DiagnosticSeverity]; -/** - * @public - * Structure to represent metadata about a Runtime Diagnostics - */ -export interface RuntimeDiagnostic { - /** - * @public - * A human-readable string describing the source of the diagnostic - */ - source: string | undefined; - /** - * @public - * Diagnostic Error type - */ - severity: DiagnosticSeverity | string | undefined; - /** - * @public - * The diagnostic's message. - */ - message: string | undefined; -} -/** - * @internal - */ -export declare const RuntimeDiagnosticFilterSensitiveLog: (obj: RuntimeDiagnostic) => any; -/** - * @public - * @enum - */ -export declare const SymbolType: { - readonly DECLARATION: "DECLARATION"; - readonly USAGE: "USAGE"; -}; -/** - * @public - */ -export type SymbolType = typeof SymbolType[keyof typeof SymbolType]; -/** - * @public - */ -export interface DocumentSymbol { - /** - * @public - * Name of the Document Symbol - */ - name: string | undefined; - /** - * @public - * Symbol type - DECLARATION / USAGE - */ - type: SymbolType | string | undefined; - /** - * @public - * Symbol package / source for FullyQualified names - */ - source?: string; -} -/** - * @public - * Represents a Text Document / File - */ -export interface TextDocument { - /** - * @public - * Filepath relative to the root of the workspace - */ - relativeFilePath: string | undefined; - /** - * @public - * The text document's language identifier. - */ - programmingLanguage?: ProgrammingLanguage; - /** - * @public - * Content of the text document - */ - text?: string; - /** - * @public - * DocumentSymbols parsed from a text document - */ - documentSymbols?: (DocumentSymbol)[]; -} -/** - * @internal - */ -export declare const TextDocumentFilterSensitiveLog: (obj: TextDocument) => any; -/** - * @public - * Indicates Cursor postion in a Text Document - */ -export interface Position { - /** - * @public - * Line position in a document. - */ - line: number | undefined; - /** - * @public - * Character offset on a line in a document (zero-based) - */ - character: number | undefined; -} -/** - * @public - * Indicates Range / Span in a Text Document - */ -export interface Range { - /** - * @public - * The range's start position. - */ - start: Position | undefined; - /** - * @public - * The range's end position. - */ - end: Position | undefined; -} -/** - * @public - * Structure to represent metadata about a TextDocument Diagnostic - */ -export interface TextDocumentDiagnostic { - /** - * @public - * Represents a Text Document associated with Diagnostic - */ - document: TextDocument | undefined; - /** - * @public - * The range at which the message applies. - */ - range: Range | undefined; - /** - * @public - * A human-readable string describing the source of the diagnostic - */ - source: string | undefined; - /** - * @public - * Diagnostic Error type - */ - severity: DiagnosticSeverity | string | undefined; - /** - * @public - * The diagnostic's message. - */ - message: string | undefined; -} -/** - * @internal - */ -export declare const TextDocumentDiagnosticFilterSensitiveLog: (obj: TextDocumentDiagnostic) => any; -/** - * @public - * Represents a Diagnostic message - */ -export type Diagnostic = Diagnostic.RuntimeDiagnosticMember | Diagnostic.TextDocumentDiagnosticMember | Diagnostic.$UnknownMember; -/** - * @public - */ -export declare namespace Diagnostic { - /** - * @public - * Diagnostics originating from a TextDocument - */ - interface TextDocumentDiagnosticMember { - textDocumentDiagnostic: TextDocumentDiagnostic; - runtimeDiagnostic?: never; - $unknown?: never; - } - /** - * @public - * Diagnostics originating from a Runtime - */ - interface RuntimeDiagnosticMember { - textDocumentDiagnostic?: never; - runtimeDiagnostic: RuntimeDiagnostic; - $unknown?: never; - } - /** - * @public - */ - interface $UnknownMember { - textDocumentDiagnostic?: never; - runtimeDiagnostic?: never; - $unknown: [string, any]; - } - interface Visitor { - textDocumentDiagnostic: (value: TextDocumentDiagnostic) => T; - runtimeDiagnostic: (value: RuntimeDiagnostic) => T; - _: (name: string, value: any) => T; - } - const visit: (value: Diagnostic, visitor: Visitor) => T; -} -/** - * @internal - */ -export declare const DiagnosticFilterSensitiveLog: (obj: Diagnostic) => any; -/** - * @public - * Represents the state of the Cursor in an Editor - */ -export type CursorState = CursorState.PositionMember | CursorState.RangeMember | CursorState.$UnknownMember; -/** - * @public - */ -export declare namespace CursorState { - /** - * @public - * Represents a cursor position in a Text Document - */ - interface PositionMember { - position: Position; - range?: never; - $unknown?: never; - } - /** - * @public - * Represents a text selection in a Text Document - */ - interface RangeMember { - position?: never; - range: Range; - $unknown?: never; - } - /** - * @public - */ - interface $UnknownMember { - position?: never; - range?: never; - $unknown: [string, any]; - } - interface Visitor { - position: (value: Position) => T; - range: (value: Range) => T; - _: (name: string, value: any) => T; - } - const visit: (value: CursorState, visitor: Visitor) => T; -} -/** - * @public - * Represents an IDE retrieved relevant Text Document / File - */ -export interface RelevantTextDocument { - /** - * @public - * Filepath relative to the root of the workspace - */ - relativeFilePath: string | undefined; - /** - * @public - * The text document's language identifier. - */ - programmingLanguage?: ProgrammingLanguage; - /** - * @public - * Content of the text document - */ - text?: string; - /** - * @public - * DocumentSymbols parsed from a text document - */ - documentSymbols?: (DocumentSymbol)[]; -} -/** - * @internal - */ -export declare const RelevantTextDocumentFilterSensitiveLog: (obj: RelevantTextDocument) => any; -/** - * @public - * Represents the state of an Editor - */ -export interface EditorState { - /** - * @public - * Represents currently edited file - */ - document?: TextDocument; - /** - * @public - * Position of the cursor - */ - cursorState?: CursorState; - /** - * @public - * Represents IDE provided relevant files - */ - relevantDocuments?: (RelevantTextDocument)[]; - /** - * @public - * Whether service should use relevant document in prompt - */ - useRelevantDocuments?: boolean; -} -/** - * @internal - */ -export declare const EditorStateFilterSensitiveLog: (obj: EditorState) => any; -/** - * @public - * An environment variable - */ -export interface EnvironmentVariable { - /** - * @public - * The key of an environment variable - */ - key?: string; - /** - * @public - * The value of an environment variable - */ - value?: string; -} -/** - * @internal - */ -export declare const EnvironmentVariableFilterSensitiveLog: (obj: EnvironmentVariable) => any; -/** - * @public - * State related to the user's environment - */ -export interface EnvState { - /** - * @public - * The name of the operating system in use - */ - operatingSystem?: string; - /** - * @public - * The current working directory of the environment - */ - currentWorkingDirectory?: string; - /** - * @public - * The environment variables set in the current environment - */ - environmentVariables?: (EnvironmentVariable)[]; -} -/** - * @internal - */ -export declare const EnvStateFilterSensitiveLog: (obj: EnvState) => any; -/** - * @public - * State related to the Git VSC - */ -export interface GitState { - /** - * @public - * The output of the command `git status --porcelain=v1 -b` - */ - status?: string; -} -/** - * @internal - */ -export declare const GitStateFilterSensitiveLog: (obj: GitState) => any; -/** - * @public - * An single entry in the shell history - */ -export interface ShellHistoryEntry { - /** - * @public - * The shell command that was run - */ - command: string | undefined; - /** - * @public - * The directory the command was ran in - */ - directory?: string; - /** - * @public - * The exit code of the command after it finished - */ - exitCode?: number; - /** - * @public - * The stdout from the command - */ - stdout?: string; - /** - * @public - * The stderr from the command - */ - stderr?: string; -} -/** - * @internal - */ -export declare const ShellHistoryEntryFilterSensitiveLog: (obj: ShellHistoryEntry) => any; -/** - * @public - * Represents the state of a shell - */ -export interface ShellState { - /** - * @public - * The name of the current shell - */ - shellName: string | undefined; - /** - * @public - * The history previous shell commands for the current shell - */ - shellHistory?: (ShellHistoryEntry)[]; -} -/** - * @internal - */ -export declare const ShellStateFilterSensitiveLog: (obj: ShellState) => any; -/** - * @public - * Settings information passed by the Q widget - */ -export interface UserSettings { - hasConsentedToCrossRegionCalls?: boolean; -} -/** - * @public - * Additional Chat message context associated with the Chat Message - */ -export interface UserInputMessageContext { - /** - * @public - * Editor state chat message context. - */ - editorState?: EditorState; - /** - * @public - * Shell state chat message context. - */ - shellState?: ShellState; - /** - * @public - * Git state chat message context. - */ - gitState?: GitState; - /** - * @public - * Environment state chat message context. - */ - envState?: EnvState; - /** - * @public - * The state of a user's AppStudio UI when sending a message. - */ - appStudioContext?: AppStudioState; - /** - * @public - * Diagnostic chat message context. - */ - diagnostic?: Diagnostic; - /** - * @public - * Contextual information about the environment from which the user is calling. - */ - consoleState?: ConsoleState; - /** - * @public - * Settings information, e.g., whether the user has enabled cross-region API calls. - */ - userSettings?: UserSettings; -} -/** - * @internal - */ -export declare const UserInputMessageContextFilterSensitiveLog: (obj: UserInputMessageContext) => any; -/** - * @public - * Structure to represent a chat input message from User - */ -export interface UserInputMessage { - /** - * @public - * The content of the chat message. - */ - content: string | undefined; - /** - * @public - * Chat message context associated with the Chat Message - */ - userInputMessageContext?: UserInputMessageContext; - /** - * @public - * User Intent - */ - userIntent?: UserIntent | string; -} -/** - * @internal - */ -export declare const UserInputMessageFilterSensitiveLog: (obj: UserInputMessage) => any; -/** - * @public - */ -export type ChatMessage = ChatMessage.AssistantResponseMessageMember | ChatMessage.UserInputMessageMember | ChatMessage.$UnknownMember; -/** - * @public - */ -export declare namespace ChatMessage { - /** - * @public - * Structure to represent a chat input message from User - */ - interface UserInputMessageMember { - userInputMessage: UserInputMessage; - assistantResponseMessage?: never; - $unknown?: never; - } - /** - * @public - * Markdown text message. - */ - interface AssistantResponseMessageMember { - userInputMessage?: never; - assistantResponseMessage: AssistantResponseMessage; - $unknown?: never; - } - /** - * @public - */ - interface $UnknownMember { - userInputMessage?: never; - assistantResponseMessage?: never; - $unknown: [string, any]; - } - interface Visitor { - userInputMessage: (value: UserInputMessage) => T; - assistantResponseMessage: (value: AssistantResponseMessage) => T; - _: (name: string, value: any) => T; - } - const visit: (value: ChatMessage, visitor: Visitor) => T; -} -/** - * @internal - */ -export declare const ChatMessageFilterSensitiveLog: (obj: ChatMessage) => any; -/** - * @public - * Streaming response event for generated code text. - */ -export interface CodeEvent { - /** - * @public - * Generated code snippet. - */ - content: string | undefined; -} -/** - * @internal - */ -export declare const CodeEventFilterSensitiveLog: (obj: CodeEvent) => any; -/** - * @public - * Streaming Response Event for CodeReferences - */ -export interface CodeReferenceEvent { - /** - * @public - * Code References for Assistant Response Message - */ - references?: (Reference)[]; -} -/** - * @public - * Streaming Response Event for Followup Prompt. - */ -export interface FollowupPromptEvent { - /** - * @public - * Followup Prompt for the Assistant Response - */ - followupPrompt?: FollowupPrompt; -} -/** - * @internal - */ -export declare const FollowupPromptEventFilterSensitiveLog: (obj: FollowupPromptEvent) => any; -/** - * @public - * @enum - */ -export declare const IntentType: { - readonly GLUE_SENSEI: "GLUE_SENSEI"; - readonly RESOURCE_DATA: "RESOURCE_DATA"; - readonly SUPPORT: "SUPPORT"; -}; -/** - * @public - */ -export type IntentType = typeof IntentType[keyof typeof IntentType]; -/** - * @public - */ -export type IntentDataType = IntentDataType.StringMember | IntentDataType.$UnknownMember; -/** - * @public - */ -export declare namespace IntentDataType { - interface StringMember { - string: string; - $unknown?: never; - } - /** - * @public - */ - interface $UnknownMember { - string?: never; - $unknown: [string, any]; - } - interface Visitor { - string: (value: string) => T; - _: (name: string, value: any) => T; - } - const visit: (value: IntentDataType, visitor: Visitor) => T; -} -/** - * @public - * Streaming Response Event for Intents - */ -export interface IntentsEvent { - /** - * @public - * A map of Intent objects - */ - intents?: Record>; -} -/** - * @internal - */ -export declare const IntentsEventFilterSensitiveLog: (obj: IntentsEvent) => any; -/** - * @public - * @enum - */ -export declare const InvalidStateReason: { - readonly INVALID_TASK_ASSIST_PLAN: "INVALID_TASK_ASSIST_PLAN"; -}; -/** - * @public - */ -export type InvalidStateReason = typeof InvalidStateReason[keyof typeof InvalidStateReason]; -/** - * @public - * Streaming Response Event when an Invalid State is reached - */ -export interface InvalidStateEvent { - /** - * @public - * Reasons for Invalid State Event - */ - reason: InvalidStateReason | string | undefined; - message: string | undefined; -} -/** - * @public - * Streaming Response Event for AssistantResponse Metadata - */ -export interface MessageMetadataEvent { - /** - * @public - * Unique identifier for the conversation - */ - conversationId?: string; -} -/** - * @public - * Streaming Response Event for SupplementaryWebLinks - */ -export interface SupplementaryWebLinksEvent { - /** - * @public - * Web References for Assistant Response Message - */ - supplementaryWebLinks?: (SupplementaryWebLink)[]; -} -/** - * @internal - */ -export declare const SupplementaryWebLinksEventFilterSensitiveLog: (obj: SupplementaryWebLinksEvent) => any; -/** - * @public - * Streaming events from UniDirectional Streaming Conversational APIs. - */ -export type ChatResponseStream = ChatResponseStream.AssistantResponseEventMember | ChatResponseStream.CodeEventMember | ChatResponseStream.CodeReferenceEventMember | ChatResponseStream.ErrorMember | ChatResponseStream.FollowupPromptEventMember | ChatResponseStream.IntentsEventMember | ChatResponseStream.InvalidStateEventMember | ChatResponseStream.MessageMetadataEventMember | ChatResponseStream.SupplementaryWebLinksEventMember | ChatResponseStream.$UnknownMember; -/** - * @public - */ -export declare namespace ChatResponseStream { - /** - * @public - * Message Metadata event - */ - interface MessageMetadataEventMember { - messageMetadataEvent: MessageMetadataEvent; - assistantResponseEvent?: never; - codeReferenceEvent?: never; - supplementaryWebLinksEvent?: never; - followupPromptEvent?: never; - codeEvent?: never; - intentsEvent?: never; - invalidStateEvent?: never; - error?: never; - $unknown?: never; - } - /** - * @public - * Assistant response event - Text / Code snippet - */ - interface AssistantResponseEventMember { - messageMetadataEvent?: never; - assistantResponseEvent: AssistantResponseEvent; - codeReferenceEvent?: never; - supplementaryWebLinksEvent?: never; - followupPromptEvent?: never; - codeEvent?: never; - intentsEvent?: never; - invalidStateEvent?: never; - error?: never; - $unknown?: never; - } - /** - * @public - * Code References event - */ - interface CodeReferenceEventMember { - messageMetadataEvent?: never; - assistantResponseEvent?: never; - codeReferenceEvent: CodeReferenceEvent; - supplementaryWebLinksEvent?: never; - followupPromptEvent?: never; - codeEvent?: never; - intentsEvent?: never; - invalidStateEvent?: never; - error?: never; - $unknown?: never; - } - /** - * @public - * Web Reference links event - */ - interface SupplementaryWebLinksEventMember { - messageMetadataEvent?: never; - assistantResponseEvent?: never; - codeReferenceEvent?: never; - supplementaryWebLinksEvent: SupplementaryWebLinksEvent; - followupPromptEvent?: never; - codeEvent?: never; - intentsEvent?: never; - invalidStateEvent?: never; - error?: never; - $unknown?: never; - } - /** - * @public - * Followup prompt event - */ - interface FollowupPromptEventMember { - messageMetadataEvent?: never; - assistantResponseEvent?: never; - codeReferenceEvent?: never; - supplementaryWebLinksEvent?: never; - followupPromptEvent: FollowupPromptEvent; - codeEvent?: never; - intentsEvent?: never; - invalidStateEvent?: never; - error?: never; - $unknown?: never; - } - /** - * @public - * Code Generated event - */ - interface CodeEventMember { - messageMetadataEvent?: never; - assistantResponseEvent?: never; - codeReferenceEvent?: never; - supplementaryWebLinksEvent?: never; - followupPromptEvent?: never; - codeEvent: CodeEvent; - intentsEvent?: never; - invalidStateEvent?: never; - error?: never; - $unknown?: never; - } - /** - * @public - * Intents event - */ - interface IntentsEventMember { - messageMetadataEvent?: never; - assistantResponseEvent?: never; - codeReferenceEvent?: never; - supplementaryWebLinksEvent?: never; - followupPromptEvent?: never; - codeEvent?: never; - intentsEvent: IntentsEvent; - invalidStateEvent?: never; - error?: never; - $unknown?: never; - } - /** - * @public - * Invalid State event - */ - interface InvalidStateEventMember { - messageMetadataEvent?: never; - assistantResponseEvent?: never; - codeReferenceEvent?: never; - supplementaryWebLinksEvent?: never; - followupPromptEvent?: never; - codeEvent?: never; - intentsEvent?: never; - invalidStateEvent: InvalidStateEvent; - error?: never; - $unknown?: never; - } - /** - * @public - * Internal Server Exception - */ - interface ErrorMember { - messageMetadataEvent?: never; - assistantResponseEvent?: never; - codeReferenceEvent?: never; - supplementaryWebLinksEvent?: never; - followupPromptEvent?: never; - codeEvent?: never; - intentsEvent?: never; - invalidStateEvent?: never; - error: InternalServerException; - $unknown?: never; - } - /** - * @public - */ - interface $UnknownMember { - messageMetadataEvent?: never; - assistantResponseEvent?: never; - codeReferenceEvent?: never; - supplementaryWebLinksEvent?: never; - followupPromptEvent?: never; - codeEvent?: never; - intentsEvent?: never; - invalidStateEvent?: never; - error?: never; - $unknown: [string, any]; - } - interface Visitor { - messageMetadataEvent: (value: MessageMetadataEvent) => T; - assistantResponseEvent: (value: AssistantResponseEvent) => T; - codeReferenceEvent: (value: CodeReferenceEvent) => T; - supplementaryWebLinksEvent: (value: SupplementaryWebLinksEvent) => T; - followupPromptEvent: (value: FollowupPromptEvent) => T; - codeEvent: (value: CodeEvent) => T; - intentsEvent: (value: IntentsEvent) => T; - invalidStateEvent: (value: InvalidStateEvent) => T; - error: (value: InternalServerException) => T; - _: (name: string, value: any) => T; - } - const visit: (value: ChatResponseStream, visitor: Visitor) => T; -} -/** - * @internal - */ -export declare const ChatResponseStreamFilterSensitiveLog: (obj: ChatResponseStream) => any; -/** - * @public - * @enum - */ -export declare const ChatTriggerType: { - /** - * Indicates the Chat was triggered in response to a IDE diagnostic - */ - readonly DIAGNOSTIC: "DIAGNOSTIC"; - /** - * Indicates the Chat was triggered due to an explicit chat request by an end-user - */ - readonly MANUAL: "MANUAL"; -}; -/** - * @public - */ -export type ChatTriggerType = typeof ChatTriggerType[keyof typeof ChatTriggerType]; -/** - * @public - * @enum - */ -export declare const ContextTruncationScheme: { - readonly ANALYSIS: "ANALYSIS"; - readonly GUMBY: "GUMBY"; -}; -/** - * @public - */ -export type ContextTruncationScheme = typeof ContextTruncationScheme[keyof typeof ContextTruncationScheme]; -/** - * @public - * Structure to represent the current state of a chat conversation. - */ -export interface ConversationState { - /** - * @public - * Unique identifier for the chat conversation stream - */ - conversationId?: string; - /** - * @public - * Holds the history of chat messages. - */ - history?: (ChatMessage)[]; - /** - * @public - * Holds the current message being processed or displayed. - */ - currentMessage: ChatMessage | undefined; - /** - * @public - * Trigger Reason for Chat - */ - chatTriggerType: ChatTriggerType | string | undefined; - customizationArn?: string; -} -/** - * @internal - */ -export declare const ConversationStateFilterSensitiveLog: (obj: ConversationState) => any; -/** - * @public - * This exception is translated to a 204 as it succeeded the IAM Auth. - */ -export declare class DryRunOperationException extends __BaseException { - readonly name: "DryRunOperationException"; - readonly $fault: "client"; - responseCode?: number; - /** - * @internal - */ - constructor(opts: __ExceptionOptionType); -} -/** - * @public - * @enum - */ -export declare const TransformationDownloadArtifactType: { - readonly CLIENT_INSTRUCTIONS: "ClientInstructions"; - readonly LOGS: "Logs"; -}; -/** - * @public - */ -export type TransformationDownloadArtifactType = typeof TransformationDownloadArtifactType[keyof typeof TransformationDownloadArtifactType]; -/** - * @public - * Transformation export context - */ -export interface TransformationExportContext { - downloadArtifactId: string | undefined; - downloadArtifactType: TransformationDownloadArtifactType | string | undefined; -} -/** - * @public - * Export Context - */ -export type ExportContext = ExportContext.TransformationExportContextMember | ExportContext.$UnknownMember; -/** - * @public - */ -export declare namespace ExportContext { - /** - * @public - * Transformation export context - */ - interface TransformationExportContextMember { - transformationExportContext: TransformationExportContext; - $unknown?: never; - } - /** - * @public - */ - interface $UnknownMember { - transformationExportContext?: never; - $unknown: [string, any]; - } - interface Visitor { - transformationExportContext: (value: TransformationExportContext) => T; - _: (name: string, value: any) => T; - } - const visit: (value: ExportContext, visitor: Visitor) => T; -} -/** - * @public - * @enum - */ -export declare const ExportIntent: { - /** - * Code Task Assist - */ - readonly TASK_ASSIST: "TASK_ASSIST"; - /** - * Code Transformation - */ - readonly TRANSFORMATION: "TRANSFORMATION"; -}; -/** - * @public - */ -export type ExportIntent = typeof ExportIntent[keyof typeof ExportIntent]; -/** - * @public - * Response Stream - */ -export type ResultArchiveStream = ResultArchiveStream.BinaryMetadataEventMember | ResultArchiveStream.BinaryPayloadEventMember | ResultArchiveStream.InternalServerExceptionMember | ResultArchiveStream.$UnknownMember; -/** - * @public - */ -export declare namespace ResultArchiveStream { - /** - * @public - * Payload Part - */ - interface BinaryMetadataEventMember { - binaryMetadataEvent: BinaryMetadataEvent; - binaryPayloadEvent?: never; - internalServerException?: never; - $unknown?: never; - } - /** - * @public - * Payload Part - */ - interface BinaryPayloadEventMember { - binaryMetadataEvent?: never; - binaryPayloadEvent: BinaryPayloadEvent; - internalServerException?: never; - $unknown?: never; - } - /** - * @public - * This exception is thrown when an unexpected error occurred during the processing of a request. - */ - interface InternalServerExceptionMember { - binaryMetadataEvent?: never; - binaryPayloadEvent?: never; - internalServerException: InternalServerException; - $unknown?: never; - } - /** - * @public - */ - interface $UnknownMember { - binaryMetadataEvent?: never; - binaryPayloadEvent?: never; - internalServerException?: never; - $unknown: [string, any]; - } - interface Visitor { - binaryMetadataEvent: (value: BinaryMetadataEvent) => T; - binaryPayloadEvent: (value: BinaryPayloadEvent) => T; - internalServerException: (value: InternalServerException) => T; - _: (name: string, value: any) => T; - } - const visit: (value: ResultArchiveStream, visitor: Visitor) => T; -} -/** - * @internal - */ -export declare const ResultArchiveStreamFilterSensitiveLog: (obj: ResultArchiveStream) => any; -/** - * @public - * This exception is thrown when request was denied due to caller exceeding their usage limits - */ -export declare class ServiceQuotaExceededException extends __BaseException { - readonly name: "ServiceQuotaExceededException"; - readonly $fault: "client"; - /** - * @internal - */ - constructor(opts: __ExceptionOptionType); -} -/** - * @public - * Represents a Workspace state uploaded to S3 for Async Code Actions - */ -export interface WorkspaceState { - /** - * @public - * Upload ID representing an Upload using a PreSigned URL - */ - uploadId: string | undefined; - /** - * @public - * Primary programming language of the Workspace - */ - programmingLanguage: ProgrammingLanguage | undefined; - /** - * @public - * Workspace context truncation schemes based on usecase - */ - contextTruncationScheme?: ContextTruncationScheme | string; -} -/** - * @public - * Structure to represent a new generate assistant response request. - */ -export interface GenerateAssistantResponseRequest { - /** - * @public - * Structure to represent the current state of a chat conversation. - */ - conversationState: ConversationState | undefined; - profileArn?: string; -} -/** - * @internal - */ -export declare const GenerateAssistantResponseRequestFilterSensitiveLog: (obj: GenerateAssistantResponseRequest) => any; -/** - * @public - * Structure to represent generate assistant response response. - */ -export interface GenerateAssistantResponseResponse { - /** - * @public - * ID which represents a multi-turn conversation - */ - conversationId: string | undefined; - /** - * @public - * Streaming events from UniDirectional Streaming Conversational APIs. - */ - generateAssistantResponseResponse: AsyncIterable | undefined; -} -/** - * @internal - */ -export declare const GenerateAssistantResponseResponseFilterSensitiveLog: (obj: GenerateAssistantResponseResponse) => any; -/** - * @public - * Structure to represent a new ExportResultArchive request. - */ -export interface ExportResultArchiveRequest { - exportId: string | undefined; - /** - * @public - * Export Intent - */ - exportIntent: ExportIntent | string | undefined; - /** - * @public - * Export Context - */ - exportContext?: ExportContext; -} -/** - * @public - * Structure to represent ExportResultArchive response. - */ -export interface ExportResultArchiveResponse { - /** - * @public - * Response Stream - */ - body: AsyncIterable | undefined; -} -/** - * @internal - */ -export declare const ExportResultArchiveResponseFilterSensitiveLog: (obj: ExportResultArchiveResponse) => any; -/** - * @public - * @enum - */ -export declare const Origin: { - /** - * AWS Chatbot - */ - readonly CHATBOT: "CHATBOT"; - /** - * AWS Management Console (https://.console.aws.amazon.com) - */ - readonly CONSOLE: "CONSOLE"; - /** - * AWS Documentation Website (https://docs.aws.amazon.com) - */ - readonly DOCUMENTATION: "DOCUMENTATION"; - /** - * Any IDE caller. - */ - readonly IDE: "IDE"; - /** - * AWS Marketing Website (https://aws.amazon.com) - */ - readonly MARKETING: "MARKETING"; - /** - * MD. - */ - readonly MD: "MD"; - /** - * AWS Mobile Application (ACMA) - */ - readonly MOBILE: "MOBILE"; - /** - * Internal Service Traffic (Integ Tests, Canaries, etc.). This is the default when no Origin header present in request. - */ - readonly SERVICE_INTERNAL: "SERVICE_INTERNAL"; - /** - * Unified Search in AWS Management Console (https://.console.aws.amazon.com) - */ - readonly UNIFIED_SEARCH: "UNIFIED_SEARCH"; - /** - * Origin header is not set. - */ - readonly UNKNOWN: "UNKNOWN"; -}; -/** - * @public - */ -export type Origin = typeof Origin[keyof typeof Origin]; -/** - * @public - * Structure to represent a new generate assistant response request. - */ -export interface ConverseStreamRequest { - /** - * @public - * Structure to represent the current state of a chat conversation. - */ - conversationState: ConversationState | undefined; - profileArn?: string; - /** - * @public - * The origin of the caller - */ - source?: Origin | string; - dryRun?: boolean; -} -/** - * @internal - */ -export declare const ConverseStreamRequestFilterSensitiveLog: (obj: ConverseStreamRequest) => any; -/** - * @public - * Structure to represent generate assistant response response. - */ -export interface ConverseStreamResponse { - /** - * @public - * ID which represents a multi-turn conversation - */ - conversationId: string | undefined; - /** - * @public - * UtteranceId - */ - utteranceId?: string; - /** - * @public - * Streaming events from UniDirectional Streaming Conversational APIs. - */ - converseStreamResponse: AsyncIterable | undefined; -} -/** - * @internal - */ -export declare const ConverseStreamResponseFilterSensitiveLog: (obj: ConverseStreamResponse) => any; -/** - * @public - * Structure to represent execute planning interaction request. - */ -export interface GenerateTaskAssistPlanRequest { - /** - * @public - * Structure to represent the current state of a chat conversation. - */ - conversationState: ConversationState | undefined; - /** - * @public - * Represents a Workspace state uploaded to S3 for Async Code Actions - */ - workspaceState: WorkspaceState | undefined; -} -/** - * @internal - */ -export declare const GenerateTaskAssistPlanRequestFilterSensitiveLog: (obj: GenerateTaskAssistPlanRequest) => any; -/** - * @public - * Structure to represent execute planning interaction response. - */ -export interface GenerateTaskAssistPlanResponse { - /** - * @public - * Streaming events from UniDirectional Streaming Conversational APIs. - */ - planningResponseStream?: AsyncIterable; -} -/** - * @internal - */ -export declare const GenerateTaskAssistPlanResponseFilterSensitiveLog: (obj: GenerateTaskAssistPlanResponse) => any; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/protocols/Aws_restJson1.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/protocols/Aws_restJson1.d.ts deleted file mode 100644 index 537d911f133..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-types/protocols/Aws_restJson1.d.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { ConverseStreamCommandInput, ConverseStreamCommandOutput } from "../commands/ConverseStreamCommand"; -import { ExportResultArchiveCommandInput, ExportResultArchiveCommandOutput } from "../commands/ExportResultArchiveCommand"; -import { GenerateAssistantResponseCommandInput, GenerateAssistantResponseCommandOutput } from "../commands/GenerateAssistantResponseCommand"; -import { GenerateTaskAssistPlanCommandInput, GenerateTaskAssistPlanCommandOutput } from "../commands/GenerateTaskAssistPlanCommand"; -import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http"; -import { EventStreamSerdeContext as __EventStreamSerdeContext, SerdeContext as __SerdeContext } from "@smithy/types"; -/** - * serializeAws_restJson1ExportResultArchiveCommand - */ -export declare const se_ExportResultArchiveCommand: (input: ExportResultArchiveCommandInput, context: __SerdeContext) => Promise<__HttpRequest>; -/** - * serializeAws_restJson1GenerateAssistantResponseCommand - */ -export declare const se_GenerateAssistantResponseCommand: (input: GenerateAssistantResponseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>; -/** - * serializeAws_restJson1GenerateTaskAssistPlanCommand - */ -export declare const se_GenerateTaskAssistPlanCommand: (input: GenerateTaskAssistPlanCommandInput, context: __SerdeContext) => Promise<__HttpRequest>; -/** - * serializeAws_restJson1ConverseStreamCommand - */ -export declare const se_ConverseStreamCommand: (input: ConverseStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>; -/** - * deserializeAws_restJson1ExportResultArchiveCommand - */ -export declare const de_ExportResultArchiveCommand: (output: __HttpResponse, context: __SerdeContext & __EventStreamSerdeContext) => Promise; -/** - * deserializeAws_restJson1GenerateAssistantResponseCommand - */ -export declare const de_GenerateAssistantResponseCommand: (output: __HttpResponse, context: __SerdeContext & __EventStreamSerdeContext) => Promise; -/** - * deserializeAws_restJson1GenerateTaskAssistPlanCommand - */ -export declare const de_GenerateTaskAssistPlanCommand: (output: __HttpResponse, context: __SerdeContext & __EventStreamSerdeContext) => Promise; -/** - * deserializeAws_restJson1ConverseStreamCommand - */ -export declare const de_ConverseStreamCommand: (output: __HttpResponse, context: __SerdeContext & __EventStreamSerdeContext) => Promise; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.browser.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.browser.d.ts deleted file mode 100644 index 4f2b23143a2..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.browser.d.ts +++ /dev/null @@ -1,39 +0,0 @@ -import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler"; -import { CodeWhispererStreamingClientConfig } from "./CodeWhispererStreamingClient"; -/** - * @internal - */ -export declare const getRuntimeConfig: (config: CodeWhispererStreamingClientConfig) => { - runtime: string; - defaultsMode: import("@smithy/types").Provider; - bodyLengthChecker: import("@smithy/types").BodyLengthCalculator; - defaultUserAgentProvider: import("@smithy/types").Provider; - eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider; - maxAttempts: number | import("@smithy/types").Provider; - requestHandler: ((import("@smithy/types").RequestHandler | Record | import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/fetch-http-handler").FetchHttpHandlerOptions) & import("@smithy/types").RequestHandler & { - updateHttpClientConfig(key: never, value: never): void; - httpHandlerConfigs(): {}; - }) | RequestHandler; - retryMode: string | import("@smithy/types").Provider; - sha256: import("@smithy/types").HashConstructor; - streamCollector: import("@smithy/types").StreamCollector; - useDualstackEndpoint: boolean | import("@smithy/types").Provider; - useFipsEndpoint: boolean | import("@smithy/types").Provider; - apiVersion: string; - urlParser: import("@smithy/types").UrlParser; - base64Decoder: import("@smithy/types").Decoder; - base64Encoder: (_input: string | Uint8Array) => string; - utf8Decoder: import("@smithy/types").Decoder; - utf8Encoder: (input: string | Uint8Array) => string; - disableHostPrefix: boolean; - serviceId: string; - regionInfoProvider: import("@smithy/types").RegionInfoProvider; - logger: import("@smithy/types").Logger; - extensions: import("./runtimeExtensions").RuntimeExtension[]; - region?: string | import("@smithy/types").Provider | undefined; - endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider | undefined; - tls?: boolean | undefined; - retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined; - token?: import("@aws-sdk/types").TokenIdentity | import("@aws-sdk/types").TokenIdentityProvider | undefined; - customUserAgent?: string | import("@smithy/types").UserAgent | undefined; -}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.d.ts deleted file mode 100644 index 27ddba308f5..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.d.ts +++ /dev/null @@ -1,39 +0,0 @@ -import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler"; -import { CodeWhispererStreamingClientConfig } from "./CodeWhispererStreamingClient"; -/** - * @internal - */ -export declare const getRuntimeConfig: (config: CodeWhispererStreamingClientConfig) => { - runtime: string; - defaultsMode: import("@smithy/types").Provider; - bodyLengthChecker: import("@smithy/types").BodyLengthCalculator; - defaultUserAgentProvider: import("@smithy/types").Provider; - eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider; - maxAttempts: number | import("@smithy/types").Provider; - requestHandler: ((import("@smithy/types").RequestHandler | Record | import("@smithy/node-http-handler").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions) & import("@smithy/types").RequestHandler & { - updateHttpClientConfig(key: never, value: never): void; - httpHandlerConfigs(): {}; - }) | RequestHandler; - retryMode: string | import("@smithy/types").Provider; - sha256: import("@smithy/types").HashConstructor; - streamCollector: import("@smithy/types").StreamCollector; - useDualstackEndpoint: boolean | import("@smithy/types").Provider; - useFipsEndpoint: boolean | import("@smithy/types").Provider; - apiVersion: string; - urlParser: import("@smithy/types").UrlParser; - base64Decoder: import("@smithy/types").Decoder; - base64Encoder: (_input: string | Uint8Array) => string; - utf8Decoder: import("@smithy/types").Decoder; - utf8Encoder: (input: string | Uint8Array) => string; - disableHostPrefix: boolean; - serviceId: string; - regionInfoProvider: import("@smithy/types").RegionInfoProvider; - logger: import("@smithy/types").Logger; - extensions: import("./runtimeExtensions").RuntimeExtension[]; - region?: string | import("@smithy/types").Provider | undefined; - endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider | undefined; - tls?: boolean | undefined; - retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined; - token?: import("@aws-sdk/types").TokenIdentity | import("@aws-sdk/types").TokenIdentityProvider | undefined; - customUserAgent?: string | import("@smithy/types").UserAgent | undefined; -}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.native.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.native.d.ts deleted file mode 100644 index 2b4c9efde4f..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.native.d.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { CodeWhispererStreamingClientConfig } from "./CodeWhispererStreamingClient"; -/** - * @internal - */ -export declare const getRuntimeConfig: (config: CodeWhispererStreamingClientConfig) => { - runtime: string; - sha256: import("@smithy/types").HashConstructor; - requestHandler: ((import("@smithy/types").RequestHandler | Record | import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions) & import("@smithy/types").RequestHandler & { - updateHttpClientConfig(key: never, value: never): void; - httpHandlerConfigs(): {}; - }) | import("@smithy/fetch-http-handler").FetchHttpHandler; - apiVersion: string; - urlParser: import("@smithy/types").UrlParser; - bodyLengthChecker: import("@smithy/types").BodyLengthCalculator; - streamCollector: import("@smithy/types").StreamCollector; - base64Decoder: import("@smithy/types").Decoder; - base64Encoder: (_input: string | Uint8Array) => string; - utf8Decoder: import("@smithy/types").Decoder; - utf8Encoder: (input: string | Uint8Array) => string; - disableHostPrefix: boolean; - serviceId: string; - useDualstackEndpoint: boolean | import("@smithy/types").Provider; - useFipsEndpoint: boolean | import("@smithy/types").Provider; - regionInfoProvider: import("@smithy/types").RegionInfoProvider; - defaultUserAgentProvider: import("@smithy/types").Provider; - maxAttempts: number | import("@smithy/types").Provider; - retryMode: string | import("@smithy/types").Provider; - logger: import("@smithy/types").Logger; - extensions: import("./runtimeExtensions").RuntimeExtension[]; - eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider; - defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider; - region?: string | import("@smithy/types").Provider | undefined; - endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider | undefined; - tls?: boolean | undefined; - retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined; - token?: import("@aws-sdk/types").TokenIdentity | import("@aws-sdk/types").TokenIdentityProvider | undefined; - customUserAgent?: string | import("@smithy/types").UserAgent | undefined; -}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.shared.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.shared.d.ts deleted file mode 100644 index c6fbf4fc5c7..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeConfig.shared.d.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { CodeWhispererStreamingClientConfig } from "./CodeWhispererStreamingClient"; -/** - * @internal - */ -export declare const getRuntimeConfig: (config: CodeWhispererStreamingClientConfig) => { - apiVersion: string; - base64Decoder: import("@smithy/types").Decoder; - base64Encoder: (_input: string | Uint8Array) => string; - disableHostPrefix: boolean; - extensions: import("./runtimeExtensions").RuntimeExtension[]; - logger: import("@smithy/types").Logger; - regionInfoProvider: import("@smithy/types").RegionInfoProvider; - serviceId: string; - urlParser: import("@smithy/types").UrlParser; - utf8Decoder: import("@smithy/types").Decoder; - utf8Encoder: (input: string | Uint8Array) => string; -}; diff --git a/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeExtensions.d.ts b/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeExtensions.d.ts deleted file mode 100644 index 454d1c6e11d..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/dist-types/runtimeExtensions.d.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { CodeWhispererStreamingExtensionConfiguration } from "./extensionConfiguration"; -/** - * @public - */ -export interface RuntimeExtension { - configure(extensionConfiguration: CodeWhispererStreamingExtensionConfiguration): void; -} -/** - * @public - */ -export interface RuntimeExtensionsConfig { - extensions: RuntimeExtension[]; -} -/** - * @internal - */ -export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any; diff --git a/src.gen/@amzn/codewhisperer-streaming/tsconfig.cjs.tsbuildinfo b/src.gen/@amzn/codewhisperer-streaming/tsconfig.cjs.tsbuildinfo deleted file mode 100644 index f7f80618991..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/tsconfig.cjs.tsbuildinfo +++ /dev/null @@ -1 +0,0 @@ -{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/@smithy/types/dist-types/abort.d.ts","./node_modules/@smithy/types/dist-types/auth/auth.d.ts","./node_modules/@smithy/types/dist-types/auth/httpapikeyauth.d.ts","./node_modules/@smithy/types/dist-types/identity/identity.d.ts","./node_modules/@smithy/types/dist-types/endpoint.d.ts","./node_modules/@smithy/types/dist-types/logger.d.ts","./node_modules/@smithy/types/dist-types/uri.d.ts","./node_modules/@smithy/types/dist-types/http.d.ts","./node_modules/@smithy/types/dist-types/response.d.ts","./node_modules/@smithy/types/dist-types/util.d.ts","./node_modules/@smithy/types/dist-types/middleware.d.ts","./node_modules/@smithy/types/dist-types/auth/httpsigner.d.ts","./node_modules/@smithy/types/dist-types/auth/identityproviderconfig.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthscheme.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/types/dist-types/auth/index.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/index.d.ts","./node_modules/@smithy/types/dist-types/transform/exact.d.ts","./node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts","./node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/crypto.d.ts","./node_modules/@smithy/types/dist-types/checksum.d.ts","./node_modules/@smithy/types/dist-types/command.d.ts","./node_modules/@smithy/types/dist-types/client.d.ts","./node_modules/@smithy/types/dist-types/connection/config.d.ts","./node_modules/@smithy/types/dist-types/transfer.d.ts","./node_modules/@smithy/types/dist-types/connection/manager.d.ts","./node_modules/@smithy/types/dist-types/connection/pool.d.ts","./node_modules/@smithy/types/dist-types/connection/index.d.ts","./node_modules/@smithy/types/dist-types/eventstream.d.ts","./node_modules/@smithy/types/dist-types/encode.d.ts","./node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","./node_modules/@smithy/types/dist-types/endpoints/endpointruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/errorruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/treeruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/rulesetobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/index.d.ts","./node_modules/@smithy/types/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultclientconfiguration.d.ts","./node_modules/@smithy/types/dist-types/shapes.d.ts","./node_modules/@smithy/types/dist-types/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/types/dist-types/extensions/index.d.ts","./node_modules/@smithy/types/dist-types/http/httphandlerinitialization.d.ts","./node_modules/@smithy/types/dist-types/identity/apikeyidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/index.d.ts","./node_modules/@smithy/types/dist-types/pagination.d.ts","./node_modules/@smithy/types/dist-types/profile.d.ts","./node_modules/@smithy/types/dist-types/serde.d.ts","./node_modules/@smithy/types/dist-types/signature.d.ts","./node_modules/@smithy/types/dist-types/stream.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","./node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","./node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","./node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","./node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts","./node_modules/@smithy/types/dist-types/waiter.d.ts","./node_modules/@smithy/types/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/nooplogger.d.ts","./node_modules/@smithy/smithy-client/dist-types/client.d.ts","./node_modules/@smithy/util-stream/dist-types/blob/uint8arrayblobadapter.d.ts","./node_modules/@smithy/util-stream/dist-types/getawschunkedencodingstream.d.ts","./node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts","./node_modules/@smithy/util-stream/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/resolveendpointconfig.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getendpointfrominstructions.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toendpointv1.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/endpointmiddleware.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/getendpointplugin.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/command.d.ts","./node_modules/@smithy/smithy-client/dist-types/constants.d.ts","./node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts","./node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts","./node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts","./node_modules/@smithy/smithy-client/dist-types/emitwarningifunsupportedversion.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts","./node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts","./node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts","./node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts","./node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-every.d.ts","./node_modules/@smithy/smithy-client/dist-types/index.d.ts","./dist-types/models/codewhispererstreamingserviceexception.d.ts","./dist-types/models/models_0.d.ts","./dist-types/commands/conversestreamcommand.d.ts","./dist-types/commands/exportresultarchivecommand.d.ts","./dist-types/commands/generateassistantresponsecommand.d.ts","./dist-types/commands/generatetaskassistplancommand.d.ts","./node_modules/@aws-sdk/types/dist-types/abort.d.ts","./node_modules/@aws-sdk/types/dist-types/auth.d.ts","./node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","./node_modules/@aws-sdk/types/dist-types/checksum.d.ts","./node_modules/@aws-sdk/types/dist-types/client.d.ts","./node_modules/@aws-sdk/types/dist-types/command.d.ts","./node_modules/@aws-sdk/types/dist-types/connection.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/identity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/anonymousidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/loginidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","./node_modules/@aws-sdk/types/dist-types/util.d.ts","./node_modules/@aws-sdk/types/dist-types/credentials.d.ts","./node_modules/@aws-sdk/types/dist-types/crypto.d.ts","./node_modules/@aws-sdk/types/dist-types/dns.d.ts","./node_modules/@aws-sdk/types/dist-types/encode.d.ts","./node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","./node_modules/@aws-sdk/types/dist-types/eventstream.d.ts","./node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/types/dist-types/http.d.ts","./node_modules/@aws-sdk/types/dist-types/logger.d.ts","./node_modules/@aws-sdk/types/dist-types/middleware.d.ts","./node_modules/@aws-sdk/types/dist-types/pagination.d.ts","./node_modules/@aws-sdk/types/dist-types/profile.d.ts","./node_modules/@aws-sdk/types/dist-types/request.d.ts","./node_modules/@aws-sdk/types/dist-types/response.d.ts","./node_modules/@aws-sdk/types/dist-types/retry.d.ts","./node_modules/@aws-sdk/types/dist-types/serde.d.ts","./node_modules/@aws-sdk/types/dist-types/shapes.d.ts","./node_modules/@aws-sdk/types/dist-types/signature.d.ts","./node_modules/@aws-sdk/types/dist-types/stream.d.ts","./node_modules/@aws-sdk/types/dist-types/token.d.ts","./node_modules/@aws-sdk/types/dist-types/transfer.d.ts","./node_modules/@aws-sdk/types/dist-types/uri.d.ts","./node_modules/@aws-sdk/types/dist-types/waiter.d.ts","./node_modules/@aws-sdk/types/dist-types/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/httprequest.d.ts","./node_modules/@smithy/protocol-http/dist-types/httpresponse.d.ts","./node_modules/@smithy/protocol-http/dist-types/httphandler.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/httpextensionconfiguration.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/field.d.ts","./node_modules/@smithy/protocol-http/dist-types/fields.d.ts","./node_modules/@smithy/protocol-http/dist-types/isvalidhostname.d.ts","./node_modules/@smithy/protocol-http/dist-types/types.d.ts","./node_modules/@smithy/protocol-http/dist-types/index.d.ts","./dist-types/extensionconfiguration.d.ts","./dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/gettokenplugin.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/resolvetokenconfig.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/tokenmiddleware.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromenv.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/gethomedir.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getprofilename.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfilepath.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfromfile.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadsharedconfigfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadssosessiondata.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/parseknownfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromsharedconfigfiles.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromstatic.d.ts","./node_modules/@smithy/node-config-provider/dist-types/configloader.d.ts","./node_modules/@smithy/node-config-provider/dist-types/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusedualstackendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusefipsendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolveendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolvecustomendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvarianttag.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvariant.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/partitionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/regionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/getregioninfo.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/eventstreamserdeconfig.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts","./node_modules/@smithy/util-retry/dist-types/types.d.ts","./node_modules/@smithy/util-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/configuredretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/defaultratelimiter.d.ts","./node_modules/@smithy/util-retry/dist-types/config.d.ts","./node_modules/@smithy/util-retry/dist-types/constants.d.ts","./node_modules/@smithy/util-retry/dist-types/index.d.ts","./node_modules/@smithy/middleware-retry/dist-types/types.d.ts","./node_modules/@smithy/middleware-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts","./node_modules/@smithy/middleware-retry/dist-types/delaydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/omitretryheadersmiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrymiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/index.d.ts","./dist-types/codewhispererstreamingclient.d.ts","./dist-types/codewhispererstreaming.d.ts","./dist-types/endpoints.d.ts","./dist-types/commands/index.d.ts","./dist-types/models/index.d.ts","./dist-types/index.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts","./dist-types/runtimeconfig.browser.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts","./node_modules/@smithy/node-http-handler/dist-types/index.d.ts","./dist-types/runtimeconfig.d.ts","./dist-types/runtimeconfig.native.d.ts","./dist-types/runtimeconfig.shared.d.ts","./dist-types/protocols/aws_restjson1.d.ts","./node_modules/tslib/tslib.d.ts","./src/models/codewhispererstreamingserviceexception.ts","./src/models/models_0.ts","./node_modules/@smithy/middleware-serde/dist-types/deserializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serdeplugin.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/index.d.ts","./src/commands/exportresultarchivecommand.ts","./src/commands/generateassistantresponsecommand.ts","./src/commands/generatetaskassistplancommand.ts","./node_modules/@types/uuid/index.d.ts","./src/protocols/aws_restjson1.ts","./src/commands/conversestreamcommand.ts","./package.json","./node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts","./node_modules/@smithy/hash-node/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/index.d.ts","./src/endpoints.ts","./node_modules/@smithy/url-parser/dist-types/index.d.ts","./node_modules/@smithy/util-base64/dist-types/frombase64.d.ts","./node_modules/@smithy/util-base64/dist-types/tobase64.d.ts","./node_modules/@smithy/util-base64/dist-types/index.d.ts","./node_modules/@smithy/util-utf8/dist-types/fromutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/touint8array.d.ts","./node_modules/@smithy/util-utf8/dist-types/toutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/index.d.ts","./src/runtimeconfig.shared.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts","./src/runtimeconfig.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts","./src/extensionconfiguration.ts","./src/runtimeextensions.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/loggermiddleware.d.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts","./node_modules/@smithy/middleware-content-length/dist-types/index.d.ts","./src/codewhispererstreamingclient.ts","./src/codewhispererstreaming.ts","./src/commands/index.ts","./src/models/index.ts","./src/index.ts","./node_modules/@aws-crypto/sha256-browser/build/crossplatformsha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/ie11sha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/webcryptosha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/index.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts","./src/runtimeconfig.browser.ts","./node_modules/@aws-crypto/sha256-js/build/jssha256.d.ts","./node_modules/@aws-crypto/sha256-js/build/index.d.ts","./src/runtimeconfig.native.ts","../../../node_modules/@types/adm-zip/index.d.ts","../../../node_modules/@types/readdir-glob/index.d.ts","../../../node_modules/@types/archiver/index.d.ts","../../../node_modules/@types/async-lock/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/bytes/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/circular-dependency-plugin/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/cross-spawn/index.d.ts","../../../node_modules/@types/diff/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/glob/node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/parse5/dist/common/html.d.ts","../../../node_modules/parse5/dist/common/token.d.ts","../../../node_modules/parse5/dist/common/error-codes.d.ts","../../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/dist/tokenizer/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/parser/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/serializer/index.d.ts","../../../node_modules/parse5/dist/common/foreign-content.d.ts","../../../node_modules/parse5/dist/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/linkify-it/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdurl/encode.d.ts","../../../node_modules/@types/mdurl/decode.d.ts","../../../node_modules/@types/mdurl/parse.d.ts","../../../node_modules/@types/mdurl/format.d.ts","../../../node_modules/@types/mdurl/index.d.ts","../../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../../node_modules/@types/markdown-it/lib/token.d.ts","../../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../../node_modules/@types/markdown-it/lib/index.d.ts","../../../node_modules/@types/markdown-it/index.d.ts","../../../node_modules/@types/mime-types/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/prismjs/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/proper-lockfile/index.d.ts","../../../node_modules/@types/readline-sync/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sinon/node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/stream-buffers/index.d.ts","../../../node_modules/@types/tcp-port-used/index.d.ts","../../../node_modules/@types/vscode/index.d.ts","../../../node_modules/@types/vscode-webview/index.d.ts","../../../node_modules/@types/webidl-conversions/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/whatwg-url/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/xml2js/lib/processors.d.ts","../../../node_modules/@types/xml2js/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"c55ae709f94155174ff63647edd2a7e3acbd02a2909aa2541569e8b8bac9fc40","530e5c7e4f74267b7800f1702cf0c576282296a960acbdb2960389b2b1d0875b","1c483cc60a58a0d4c9a068bdaa8d95933263e6017fbea33c9f99790cf870f0a8","07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","d5f1bbd44ba4f63d8a01fff5e1edc1c1fb50e9caa48a4fa48298a4485d6ff75c","4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","d12680e217215b37094868d491d00196e80f270ce47e5a4bc50269945ae5554d","396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","b7b881ced4ed4dee13d6e0ccdb2296f66663ba6b1419767271090b3ff3478bb9","06289b9873760aac77aed4035ea6c60b1e0879b8afe47a4530bc8522b9b804b1","63c36aa73242aa745fae813c40585111ead225394b0a0ba985c2683baa6b0ef9","3e7ffc7dd797e5d44d387d0892bc288480493e73dcab9832812907d1389e4a98","db011ec9589fd51995cbd0765673838e38e6485a6559163cc53dcf508b480909","e1a4253f0cca15c14516f52a2ad36c3520b140b5dfb3b3880a368cd75d45d6d9","159af954f2633a12fdee68605009e7e5b150dbeb6d70c46672fd41059c154d53","f5331cb9cc00970e4831e7f0de9688e04986bcde808cac10caa3e7005e203907",{"version":"d20bbe9029b614c171212c50c842fa7ddfc61a6bbc697710ac70e4f7f0c77d15","affectsGlobalScope":true},"a9d67f9ae6bb38f732c51d1081af6a0ac6cae5e122472cacc2d54db178013699","1296a364908ba9c646372edc18ee0e140d9a388956b0e9510eec906b19fa5b36","1c863a53fb796e962c4b3e54bc7b77fd04a518444263d307290ff04f619c275e","ff98afc32b01e580077faf85b60232b65c40df0c3ecaa765fabc347a639b4225",{"version":"30133f9ceaa46c9a20092c382fed7b8d09393cf1934392149ea8202991edb3ea","affectsGlobalScope":true},"30c05e45ec7e1247ba9b87ad2acfae4fda401737f0e8a59f78beda8a4e22b110","2da83cc57a94f7aee832f2a71e1a294d857492761c1f5db717ea42c1a22467bc","aa5cc73a5f548f5bc1b4279a730c03294dfa6e98bed228d4ed6322a4183b26ad","b3f1ac9fe3d18d6cd04ab1e67a5da8c33ceb47f26b47e67896a5b2f8293c8a32",{"version":"ca88e8b07c8186ef3180bf9b6b4456311ae41bf3fe5652c27a2a3feba04136b0","affectsGlobalScope":true},{"version":"592d937b7df1b74af7fa81656503fc268fee50f0e882178e851b667def34414b","affectsGlobalScope":true},"fdfdf2eab2bded61ee321ec88b8e083fe8d9fedad25a16ae040740869bc64e48","e8067fc8b0247f8b5ad781bd22f5dd19f6a39961ba60fa6fc13cfe9e624ca92f","842ef57ce3043fba0b0fb7eece785140af9d2381e4bed4f2744d3060352f2fd5","9095b6f13d9e48704b919d9b4162c48b04236a4ce664dc07549a435d8f4e612e","111b4c048fe89d25bb4d2a0646623ff4c456a313ed5bfb647b2262dda69a4ff8","f70f62f5f87ff8900090069554f79d9757f8e385322d0e26268463e27c098204","0932ed41e23d22fa5359f74805c687314e4b707b3428e52419d0fbefc0d66661","af07f4baaca7e5cf70cb8887e7d4f23d6bb0c0dd6ca1329c3d959ea749b7a14d","c80402af7b0420f57372ac99885f1ab058121db72418e43d25f440abda7bbe23","71aba6ce66e76ccfd3ba92b8b5c6658bad293f1313f012821c4bff1dd64ca278","17d944cab17bc9e32975250e8abe8073702f9493582d847805e446641bd7798f",{"version":"c6bfc70bbdee282436ee11e887cceaa5988ac4eec60d5eb9b3711748c811831a","affectsGlobalScope":true},"f9ca5159f56c1fe99cdfc5f942585de20695a2a343db8543383b239c050f6aa4","84634ac706042ac8ee3a1e141bcdee03621725ab55455dba878a5503c6c7e037","d796c62c3c91c22c331b7465be89d009459eb1eb689304c476275f48676eaf9e","51cbf03ad34c3e84d1998bd57d1fd8da333d66dd65904625d22dc01b751d99c7","c31bbdc27ef936061eaa9d423c5da7c5b439a4ff6b5f1b18f89b30cf119d5a56","2a4ae2a8f834858602089792c9e8bab00075f5c4b1708bd49c298a3e6c95a30c","71e29ae391229f876d8628987640c3c51c89a1c2fd980d1a72d69aeee4239f80","51c74d73649a4d788ed97b38bd55ebac57d85b35cbf4a0357e3382324e10bbe9","c8641524781fa803006a144fd3024d5273ab0c531d8a13bbeaa8c81d8241529f","73e218d8914afc428a24b7d1de42a2cb37f0be7ac1f5c32c4a66379572700b52",{"version":"56ff5262d76c01b3637ca82f9749d3ec0d70cf57d87964bf3e9ba4204241849e","affectsGlobalScope":true},"9e3a18040e5a95f61556e09c932393b49c3b21ce42abe0f4ed74b97173f320db","344922fac39b5732179b606e16781b354c160f0e9bd7f5921a0fdc9fe4ede1fb","c1449f51f9496bb23f33ee48ff590b815393ef560a9e80493614869fe50915da","87a49241df2b37e59f86619091dec2beb9ad8126d7649f0b0edb8fc99eca2499","07efd1f649e91967fada88d53ad64b61c1b2853d212f3eaffc946e7e13d03d67","6d79a0938f4b89c1c1fee2c3426754929173c8888fdfaab6b6d645269945f7bf",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"c6c0bd221bb1e94768e94218f8298e47633495529d60cae7d8da9374247a1cf5","a1b36a1f91a54daf2e89e12b834fa41fb7338bc044d1f08a80817efc93c99ee5","8bb4a5b632dd5a868f3271750895cb61b0e20cff82032d87e89288faee8dd6e2","0c1aabfd9fb1818afb2e798f91f669edafce59cd7e3423d25b1cfccfaaf2c403","017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","aee8faa433dde04beedb779b3329456a286a966462d666c138c19113ce78c79e","d620ec36bfc6f8ed6fdecbe036d55cec81637f32fd34dc7bb7e60eba1764e910","4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","fc9bdd9b3d8fb59c913cb3b8dea0d79b38dfe9331ef07e1c6dc6bf363f061ad6","e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","0c3c4ce6a1884610c99306719f59174d81808c69393c30119f9c2aef0449a2cb","219a25474e58a8161b242776856ec5f6960839b63e74809445e51cadbfc18096","5a0d1534e9493ae44b08b3055172da38370e2afd2bc3d4bea11f7be78344036f","6309a45fc3c03d3c4d56228e995d51974f53009a842374695b34f3607877e5a3","bef94eba81ae2c09059c0d9abdb1ae1b7090314f70550f3c8cd5d7ead4a4f212","48b787ad458be9b524fa5fdfef34f68798074132d4b8cfe6a6fe9c2bf334c532","37280465f8f9b2ea21d490979952b18b7f4d1f0d8fab2d627618fb2cfa1828e3","7281550c523596fd0fd36c6e19aa89075dac93144437ce48490da319b1f4d318","3f3f85dc43cb93c5a797f1ff0fa948d0e17843a443ae11a20cc032ccdf1b9997","020507cb67b96b0830a8636db03ae004181eee323ba33565cfe8d45aaedc4d1d","869010bc679df668137cb3b78a3cb8196e97acf285208a57f6156ceac894a2f7","bcae62618c23047e36d373f0feac5b13f09689e4cd08e788af13271dbe73a139","29a99d2e57b3e08a997cbc2397bdb251441a545306a74b95ffedc5f03d9bc6b7","5ae003688265a1547bbcb344bf0e26cb994149ac2c032756718e9039302dfac8","09e811cc1088d9ea3a7ddd7290f6a13767f56c85daf8c3374a06a45a08d55647","9da2c58a27fdce871c2eac09d5172b04248bb86ada9b0d10e8b3dfa8470b8dd3","5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","7b270dc53f35dd0b44bfa619ad4d351fffd512e14053c3688323ed007eda3f6d","6d4e928f232ade7221cffc6e4332ec935baa176415c9bf5d12111bb883a247d2","e86ad029224d4f2af3e188be8b5e9badf8c7083247572069bac7bd2193131fc7","057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","38aa389acf91d77db5a4f8e26e713ed53dc832ed5573def9cd20acd9ba97c1fe","e56784be93954f1f86d4dd3ac61b4c9727e75864baf123a1b584b970baed4ba0","f878779620c5178d45413b33c214419bb3df2945e703c35e1191188321e3633d","b9115605f72b65a662723020b2a1eb696c375a5803d6b401dc01fcbfe49ece90","151659e152d71986b8943b9943cd7fbe27a65874655081602de7ea24a0f66e9b","4d250e905299144850c6f8e74dad1ee892d847643bacf637e89adcce013f0700","5fca180ba7514e439b225ee5eb47e5cf9254a591095f93cf7ca298ce6264159b","ed3e176bc769725ebc1d93f1d6890fc3d977b9155ae5d03be96ec2d49b303370","7933769d84f5ae16546aef06537ca578f1c8d7cca0708452a00613050ac1f265","cc5c913c4716a0d1563b2a63a7c4dc2fa81b7d7bc58489c79896d69b27e978cd","f194cdeb1caaf80e625f4fad340a9434b2b83786028dcc5ea6f3c459cc7789a0","f8ce447bbda4f75da74cecd866cc1ff9bdde62189ac9d8dc14a16c48b3d702fa","236247fb33a56e1d43b097c000aaafcac8fea1e8bf38d1a64f13889b32c372d0","c7d30b164562b7ce99fcb53ab78f937cc845e003f6089d648351331921379994","fe2d1251f167d801a27f0dfb4e2c14f4f08bf2214d9784a1b8c310fdfdcdaaea","2a1182578228dc1faad14627859042d59ea5ab7e3ac69cb2a3453329aaaa3b83","dfa99386b9a1c1803eb20df3f6d3adc9e44effc84fa7c2ab6537ed1cb5cc8cfb","79b0d5635af72fb87a2a4b62334b0ab996ff7a1a14cfdb895702e74051917718","5f00b052713bfe8e9405df03a1bbe406006b30ec6b0c2ce57d207e70b48cf4e9","7abcae770f21794b5ffbc3186483c3dbcf8b0c8e37d3ef3ed6277ece5c5dd4be","3e642f39da9ad0a4cd16ccbd7f363b6b5ad5fa16a5c6d44753f98fc1e3be9d96","7f5a6eac3d3d334e2f2eba41f659e9618c06361958762869055e22219f341554","6f996f44113b76a9960d3fad280f4f671115c5e971356d1dbb4d1b000af8b3b3","67f2cd6e208e68fdfa366967d1949575df6ccf90c104fc9747b3f1bdb69ad55a","f99ab9dffe6281c9b6df9ae9d8584d18eabf2107572bbd8fa5c83c8afe531af8","4fc9939c86a7d80ab6a361264e5666336d37e080a00d831d9358ad83575267da","f4ba385eedea4d7be1feeeac05aaa05d6741d931251a85ab48e0610271d001ce","fc79932b9aa710f025b89bf8d8329d99080286e5e079a7d5a529236e9f5dd69e","6646d9075e3e0eedb02c9d03bffef54c8bbeb601d27eed46f143aba435bac37d","0dec72b4c5c4bb149750fef4fc26bdae8f410de941ee766c953f5ac77381d690","8f2644578a3273f43fd700803b89b842d2cd09c1fba2421db45737357e50f5b1","f5405fb679a467cb979f8744940b22b7bc3a0bcbe648c3910d98de3188d42a78","68969a0efd9030866f60c027aedbd600f66ea09e1c9290853cc24c2dcc92000f","639f94fe145a72ce520d3d7b9b3b6c9049624d90cbf85cff46fb47fb28d1d8fe","8327a51d574987a2b0f61ea40df4adddf959f67bc48c303d4b33d47ba3be114a","991fd5ebf9f30ffa17cae6faeae6a838d3d91bdcdd419bce358dc99b8e5b0ad0","51b4ab145645785c8ced29238192f870dbb98f1968a7c7ef2580cd40663b2940","589713fefe7282fd008a2672c5fbacc4a94f31138bae6a03db2c7b5453dc8788","786691c952fe3feac79aca8f0e7e580d95c19afc8a4c6f8765e99fb756d8d9d7","4c348f139d006057ce9384e60b4ee1ce06bee5c16e19ff70f293ad88d5893386","e9d33b2549b5779b6cad92cb6a370c6c106cc12dc80da1cc199e2cb3a715bf38","62b753ed351fba7e0f6b57103529ce90f2e11b949b8fc69c39464fe958535c25","21e1fa3e5c95c61161a1ea2d819972e3b7e916a58571f8f9828b8a6c32e641ea","f78d0b00cf9700ef6fb82a5e52eeded028b18733bb8fdcc46a95ce598e83a292","24e26950b5a36dbc7f71e05a5f386c48933459e9322ca8b2c422d9154807526d","5a1c65ae0ada64906e44aebc307bb6444eb3d767feb96baea6116a05fcb1c26c","5522c276ab5033605c3afb218e2451063ad52f02a7561e8190855157732d438e","27da9754c20b488a648128951f3fadbdc56a0eeea0f5a1820f5809a5d008f068","cfbd1c9cadc7b4debc0c4807fccbde9d7ee49588f021e47d8d77cfdb22ef12c9","a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","d97766e9af30de9f96c7a5e8d7d6b3e39a269b8bd011083bd3745be7bd532b13","363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","fa2a8e2cc0bde051290d89f15a7b8f4db16d71cf67892be2bf4fca8cc2c3b338","1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","ea2de1a0ec4c9b8828154a971bfe38c47df2f5e9ec511f1a66adce665b9f04b0","c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","48f1a1b9f15770d9a64b51c596f9569f262fc7e67d7767595068a69539d32939","a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7",{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true},"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","f7a8f4bc1e8e786c6115970b8f3ed4797be48108de00b3552bf590706d3a5e8a","79cbed8c779049fdbdd856f1597f2e79be137b6ed44e66ead16ee8bf035d17da","1a8e6a4f31a5196144f35d0434e16369881d828c849d6a1c9290b6bde8807449","42a9ac86df0fa58634ea8a5f7f07b9b9c3243d82e306fb22d8a41639935a6c87","5766c26941ae00aa889335bcccc1ecb28271b774be92aede801354c9797074bb","3a19286bcc9303c9352c03d68bb4b63cecbf5c9b7848465847bb6c9ceafa1484","c573fef34c2e5cc5269fd9c95fe73a1eb9db17142f5d8f36ffe4a686378b8660","d97e30dd93590392fed422f2b27325d10ab007d034faaaf61e28e9ddc9d3825b","d1f8a829c5e90734bb47a1d1941b8819aeee6e81a2a772c3c0f70b30e3693fa9","be1dfacee25a14d79724ba21f1fde67f966b46e2128c68fed2e48c6e1e9822c5","19b3d0c212d241c237f79009b4cd0051e54971747fd89dc70a74f874d1192534","7daf4e4ddb3c93f922c56c836a33e53bd0f8172b68b1da70103b7330fd0f5406","672efa67dd818957bcef7b98f05e534901a0542292319097b543343e749d4ac2","7639642137f8329ef4a19410ce8d3e46910a76294df263f46b428fd61c79d033","3cae18f8e136a4122570a64862ef441372cb822a906b1ee25f1e13e10aba2783","42b4e53ea2ca9d4cff566336b781121a78db65049fafc73e464255534a4ecf48","445418dec131a34f848ab7a2dfb111ab8e854489d0f83c5d550d4ac948b45c1c","ea01929f899657fb0f6ba17b180e045d7053389cc28b9279524bf1ff2b8c164b","9b1b3740954bcc6a5e5360be7c5e7edfb13fb58cdae347430e0f9b239d63e434","8e69efd9afdfcd34d85adb6d8e71a5e13fea2a33c7019dd624cc7696772183a0","a7ebfe3e2c8f4fea5dac7ffbf6d00acee63c530de24d57cdeeed05530285ca26","82b4045609dc0918319f835de4f6cb6a931fd729602292921c443a732a6bb811","b9c6fc6c7b1296dd405f5dbd91ea1ae9f110de4cfab772c80c77d73fe33b2887","c0c0b22cefd1896b92d805556fcabda18720d24981b8cb74e08ffea1f73f96c2","b97e6411a3ee83e6f77760f0400d117313a980d05ec89f1e1a7502229e36d060","270418f8a6639be745d14bfd085e62685f24eaa6d6482aa9803bae8b8b93919a","4cb33d05ff168c1ca836d6d438f93040972af43fc09774876c4add2ad96d125f","707d01e4e7d69c672cbf82276bcdb6dd584b67da29e07fe5cba8c645ef4398ef","38104b9a37d0b9dc54be36ae43b1a32f9cfae34742743bfd7104cf1f39661225","47ff32ca9ab8474e89615b4bbe5f2264c2940fc12b86c4dc0a99659479517a6b","f892f85b4838f6a2ff1438d240dcf23a872d090794967c7f817a82ea8da1ad8e","cb498c53a9d35ac1cf9a3515f3835d48b4626a612cf7540c5bfb99542c9ab1a5","b86e64c48044bb73c6de7aa2cdf9295b2c104221e6a68b408225b283d1bcfda2","16173f5b3e68a373e7dfe6d00948549facc9947c9dbde813f1efe3a0f236ff6a","f457fc1b7583e1215393db13b95a186593660aad29706515ab7479869bc585e0","a11288edc8161f664148ea7d56101517e380335f5fa1a94408db86efce025bba","0fd70ca1eaef1e2dd6f48f16886df4838664821d992fd8076d07fc15e83c8498","ba30e6d2f1d20c707566cf485167331a10c539802a79040ced055b62a7aae53e","642eae3e9ec5997883f86dd7346d818f07d40fb83cc3530f0e52e232ffb4e631","29a6df727893a86807f4dc02116c31d9e6097139579ed6e8029b14c526cba027","537a2b61594512c5e75fad7e29d25c23922e27e5a1506eb4fce74fe858472a6e","311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","7c07838da165fd43759a54d2d490461315e977f9f37c046e0e357623c657fc42","b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","115c8691bd8fac390f6f6eef5b356543d716da7cffa4c2f70f288d56c5b06aeb","e91516e66f9fbf39c978a4092c16ffda3bb0b32158fca6def75aae9fab358153","abd4563a6a7668fa6f8f5e5a425a0900b80fc2309fec5186e2cae67f3ce92663","cb48f3011e72efef9d5a5b312f4a956f699b8d423bf9f2772724cdded496bd50","9aed07904079877252e6c0aedf1d2cf1935ed91d4abc16f726c76b61ea453919","6621af294bd4af8f3f9dd9bd99bd83ed8d2facd16faa6690a5b02d305abd98ab","5eada4495ab95470990b51f467c78d47aecfccc42365df4b1e7e88a2952af1a3","5fc0957ee8e15821ddb30a76e74e7984953fc35611a57fd703e624bade5836b9","40e9c2028b34c6c1e3281818d062f7008705254ee992d9857d051c603391e0f4","4720efe0341867600b139bca9a8fa7858b56b3a13a4a665bd98c77052ca64ea4","566fc645642572ec1ae3981e3c0a7dc976636976bd7a1d09740c23e8521496e5","66182e2432a30468eb5e2225063c391262b6a6732928bbc8ee794642b041dd87","11792ab82e35e82f93690040fd634689cad71e98ab56e0e31c3758662fc85736","3957b1244f49991b89f12cc45942c24f9c5927dc72677b105bb896d316f0454e","6c53c05df974ece61aca769df915345dc6d5b7649a01dc715b7da1809ce00a77","18c505381728b8cc6ea6986728403c1969f0d81216ed04163a867780af89f839","d121a48de03095d7dd5cd09d39e1a1c4892b520dad4c1d9c339c5d5008cfb536","f6d55e607f55be35a3c481b7685461a9acc1e27b893839218eb9313f7e85278c","b394ea95c82281d184ea83e8511bd1a43f78d6908eb34b536446d3eb08f9d47f","41edf4071b119fdf28b46a3c28c0845f2598bb8b196e7e4c9e01415403fdaea5","2bdf3bcf1a9771a288a783d1e8ee5d1d3126c11ddde26ae44864ab432192a6f6","603bafdacee4c8850ef5820f8642a817a3f0db6f76dda0474bcf3d17c2e15398","a10c79ab97c8a4f6074203094dba87bc736ca574ec480be1df6ec2c82d774573","801f049a9e74e941e8ca8add60492aaf4ab717a166248d355ded5753d80f9a85","70bba0a9c9c2ad7a042e134a840c4d8462bf0ad98e41c50ca52725ae47265eb9","f4dc28fbbba727722cb1fd82f51a7b9540fbe410ed04ddf35cab191d6aa2ba10","1f47dea3d5cfa752cfe10c48273dac3bb41cf07ec30d5801c9cb6cbd81823a94","79af5f8e385d7ca4a05f84a0a201c3e927d7a9a4b70c95f05314db8818d1734d","9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","80b47d2c0a754d391234eee9504bef339252456fdfd7745ae771e191828ffaf7","72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","dfc73114040523883452af0d14b19316f5ae4f9f44b131889d665feed7b0f02c","c6cbbca3099e385cc5bb4d68052d39ebf12504d1db8d8e8a035f7d24080fd42e","b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","68adf02128cad117e068f53ab334cbc730bcfeb7d658d8ce8118da6770b7e622","22945d276fc7ca24f1a4dd7fcc42d0c9c7357bee966f0d118b39ed6de97d858a","b606659dbd36a39d5d9324715fd7bf95d99a101ac885bf3cbb30337f8dbe09ab","7f1567b9dfb571a80556155a5bff1c946b23e74443466689bed24095604b3a9b","b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","51796c3726bf734b061fac41b479a660f9afccf50b8b493835e204723d23a84d","4db354d1dc4e2d96cd6fd8521c12cfcbb18a57df8e4be86b6c5123829557997d","da7183b9d834101b5b12d83dbcd4c98ac6d5d9cb7cb9cb66c0bc3b926f03ba45","88b881898e99e16c6c19c8125ea5a9b87d777466e8ac84653ac42c7cd7d5b464","2d2f9eed9f69b8e13e0dd86ab29205a78fbf1ba94c150cc59d58c6576fcca1ce","4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","964d3b8a65d1fa21515a3c7a9ed34898346f755e275c33e6fdfbeebb5f260744","1c77a5ab660e77952cc400cb9eba8f83cd93a045ca7abda544629e69c86150bd","04c72d6fa3275b08865357900ba7580a5c9e31692a12641a25665fed8411c8b8","fad2e326af305b648dd46cac96bf31c88f508823cfea877fae79a9b01dd4d524","45e0dd06a42ab62f879b1567438bce5b85eee9c6875685ca2c6ca10f978038b2","ad5976f5c289f6720287944a265db0761709be06d5331fc37a1b2999fa13bacc","c48268206ba168b8052c8d7fa692c631ae7aab106408c453e615da56f42bdb5f","63a76522cfc8f00ef401645579f8c0959bccd6e3118df66bae1fd45b709a9256","5870b02397c454afa21c294821b9496ebfb68c098c6ca8360bb1506398c39e45","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","f6e42784e93419b8acab053a096a80fc26e9f36bd3c7d10c6549f979968f5372","6f31e8019e7a6f406e786ea51841824dc75318b26f6eae602279342a4da9da6f","003b0535a82e82dd901927bf0092c81ad5867b84e273e0d98ab2d958df591060","2afb1699885c242563656dfac41072849720ab5c9cc3be87133413afb6cbf32c","2bdaf407163ca9ca9bc3c1d3fb78ad26b6bd2f7d68b04810fc28072925a95e9b","95347f256453f88602fcfc792b0ccea75f330aa22150bd95a6a8bb034a20ba14","dd2505eec07d3d341be4322f9f0380b5196f2b163944016227bb599dd89136e7","f9dfcd54e603db0684207424124c340a7eb0e61807ece0cdb51a8801c47c9155","ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","e93760553e478c36485ef4c548bcaed56514a45660636df1a355d647ce172e52","e50222c22db171b6e6f102dad414ba90b1ad3802537779e838bed86ff506cb28","4c36f9d0ffb25cf61b696b2777ba06d553d1b0cfd12d9eed8a1e3b1a50beb2f7","dd478451ffa00f4352bffe4f55b4531c8dec0edafb5777272089e5127dca808c","aedddd59fc4889fcdeb54a3b2a4943736f282c00db826ff710acb6bc91873b0d","5d9a5cc1712870f91f66850e7056e0d03b4046de5558a00e7190b6a9c2f7d432","0daf877cd2dcb81c0e39a96ee20262dc07ecc6f68d65cdb9cc6e6cf2f31d29c5","6206a6984c6210c7e02e8cec6c2417f6d2458ec36ac97b80ce9f894933a08082","d686fcb07a661fef0866137e450a487e710c233cb24f04d11426228162595d7e","8484a8762f074437ff6b9be1730dee2d607ff653ad5b432fe92d3889ec1b53bb","8e3f8a63b6af3fd917721cfe670eedf5aae7df605d0072c5997021eb6fbdae31","046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","abdf76f026d770eda24012e686a77c1c80860267b9e6e95fc26acbc180a1abfb","a6260e50e119a4ae143e080cb69501b76f70b55df4f40b3874ee785277003570","311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","c032a9b7dfc5f9b86ac5b1535fe72154dc48a7f89f76c5cb4e8a6ab4db203671","b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","23fa431c1549a548df67056c34a9ea3653b50266d77653a406ff5a67a7f861aa","174912359daff7bf7851731604bcb1aa25e6b56f2976797c5c2e31bc08bedfe8","a5a8a1bc2f458034182316db21717c4a25438517239ff2868ba8b6bfe455c505","60a0074289b6584a0d7003c2aa14d9ebd0027e423deb79e08031b7e708770c98","d62b7fb6c39357289ba064887935b0966cd99da5a3bb63afc1d6ea4f82ab23f1","7a8e7fc0c0b3c6f0344a6b54a56e928aba5b2bde679ca742acf67aeb67e6f9d2","2d232975df81628cb4d8a5236b8776976940cc4dd202698e498de5a4baeb7389","41b6a32ece86a9f7bdb5a6a9d47c580222f89afc5592654473ceed0035b49544","2f7551bc7fc68539406d169b81e73c085a0a52798efb3aef3266327246c28d29","6a3d24f24ae411600665f30a5d912af979c6fdf1c7ba8a9147235d5c105a9e83","96def9cb00debb7554a8019ae45310f375a65820bd8efa8e497a96e3416a5677","228eae4b5b181e59b73cbe0313eb5aa807f445122b21e365ca330bca2b22772e","956f962aca6becfca36766fe3af718b586829e1e4dd72f6b896057f75d4e9e83","f1f5af5650d4014cd999f2f86f7ab1a81779d966077fa4a723ea05069e07652c","9f7b583873c73cf01be845311d8b3e1715aecfa476a047d885804d837327d5db","6c9dfb8a6bc7ff438e84f19ff882a3d150b4b44e21d494133950f524997b02ee","f4a795af80885eba93957db860b4b82b4d23a76c5e122c2af5eeb9319094d9d1","3267bdd186e8d021bfa57a5314a256b9781e895bc025e426a2bdbe93b946cca0","31ed847fef6dc27c5224045deab8f99887ec76146cbc4f2ccb33f5b117fc9bf1","0df38983d84eccab44e2e6385bed5e1033b23228e484b80ff124d4049ca8e75a","7395857a8b73a1a5a14af625ec52c90f5b24bb0b163057d0f3e8a197ccc816ee","8b2e63aba58523a92dd15761096a03b5ebbd8983e2889b1f14265d9b2bb444b6","ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","6477c1bd38bbe6e8d74abebd01a073a7e45a89086a5a250e11725989a54a9a94","046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","d43fd9837c2a0745faaf914d61220abafe305f48902ec2c5ad3e980a50cf9a6d","2837ced1e5d4ef88b4e1688fa62bc93b4248d1825667c87a83adaa51bc810cbf","f61af6ed7df59c72b7e2fc7e25a4500f5e9beafad5be038d349c5348a0727ba5","d81fe001f3fb987591406c054f7ff1f69bef86d121dc66c03b92c2dee63efa95","bf7ccda18d9cb9ed3047d96a6542fee3c3bc4e7a7822af40332c5c2f6e07c2b7","7bc71d52df9d8e5cc55218d347a91b1758b38341f9cbbac0b80057aa9d93daa6","7a1f7b274cf8a66b83fcf42153bde6f25f4eb4d7696d4a6b17e4a8878d128306","553dd4fef7d2b88e899646b66b2035e119f61b092d668ae0595a32c234f9b8b5","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","6215681982d007f5e9137ab0ca969c39048401e588bb0ad92018297c82551ea8","82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","1b831600aabe1c065830d303d087189e1ccfc93a0ef1882eb58a336ec1ce9f2f","75f191b59fe7ce72d1d7d11d0f329a193843f54af93182fc5a65c37d0a82c85a","cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","f6451dc56be14d37a8b88ea62a143ea398ab44558cd530fb2cdeeea42695c849","8ab77e5c32f1b6c6c1ee1b1b771c1a76a16be650559dc61320c8c82c99fc7cde","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","c269a12e83c5ffc0332b1f245008e4e621e483dd2f8b9b77fc6a664fcde4969d","aa8a056ee45ae741849d6e809ba85967b638070060e29c57d12d22b14baefeb6",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a97081289e7233ca2ef04a729036449fec4e88818fd7b7397930bd4d52294b18","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","ae8cd6af37275eac75f5369cdb5f01063bcf1f48d74cb434303ee50ec446acfe","2518830a2fda9c272ba48798d0e7b857037443b06594db8e42c87e86944ee9e4","95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","99ab49d4732fdc98cf5c495925e65e796544cb4086fe42afc235dfc02bcf2351","af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","d393adc32e520d4274bb4c3dfdcdb342b806a230b66ef0f82b35bffbc4aa2590","c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","3b6040253231d44e6778eb6861cc86c1758562e77783d21b7ecbc73322ded539","03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","318c82cc1e13da55e8c60d7e1bdc422a0679d675ad048b6d5022a47f57d23e3f",{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true},"ac3cce682a1eab96841ce9942ace8dd5649d2951007096555f4950479e4b8d56","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","a45efe8e9134ef64a5e3825944bc16fffaf130b82943844523d7a7f7c1fd91b2","969aa6509a994f4f3b09b99d5d29484d8d52a2522e133ef9b4e54af9a3e9feaf","f378e8538e407f997a0f88fcd1ecd93a096707cc909339ce4dba2e4ea03f1726","dcafd874e49d42fc215dcb4ef1e06511363c1f31979951081f3cd1908a05a636","fb73c98050a02b5849cc0fbb0d133ed55764b9c2a91f0ada2a25e74df68e6242","6002c44a8e8edbe4c79ce856c7bac3f8e69a2a45dc5bd6b229ca4ab323b924b3","b4d505a77e0829de5e5e23eaefb3d7989e0dbdfdb02ea69159df9f40017fb958","b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","f2242adef346a64818a1af914146f6f6046f16505e8a228c3bdb70185d4fdf4c","2f7508d8eeadcfde20b41ec13726c9ad26f04bbf830434e289c6010d5be28455","8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","9798f0d3693043da9dda9146b5e8622cd4476270e7aed8f3cb346b9b40a52103","fc7e8927b6fa6c81d68783afb314d01592c559e86bd36df334c37f40d0136acd","73f72caffdd55f189b5bf4e6b5ca273b4e26269d9aac859b9d30a5f799c095ad","d998e3e185cdf59dfc84043c41a42c02daaf3b7b21bee2db2d1f620a8e134f4c","06aa8858883e08f5136eb182d2f285ea615aeb464007f83c7a31ee1f8d9932b1","62d429aba0bbe459a04965d10c7637b74b319149f17874920a5ffb9fe3ba14d8","084a25e9ee73362fbb467873341b95721689513c14af6aa3067a1d95d6fafe08","4dbfeb147290c498e3aa56ea3198a6a109c5c0d9d7a4936a3138376302d89e7d","169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","5009c081fd8ca3fcd6f3adcd071a1c79a933a400532b897822aad0943688a1f1","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","c271193e426325d9acab2f99997bb9f5f2dff850ec8c7c011c5abafe5af83b5f","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","a3e12bcf2d196656ccd5b5d5344182967a2bdde0f63c9b955c36169ed02c3555","a016d2f6c0a2c15069ec69661ad37c86a450deb629ce96a592f15f01d3a5746e","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","4fddd9f6929421ce580b4583defbb3f78f5a4a3642bea5ecd3209bf652d8b507","f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","557e00bde9af85bcb3ab6b3a785904f028f9f1b65dba664f2fda44965acf8a78","397981908f102effb3cd483042076b593f3928264dbf06aec235a7c3e83da2b4",{"version":"ad78491e2a3ae1e59680dbab88607dd670d06a91b1d6c451fa895ad390513e8a","affectsGlobalScope":true},{"version":"1a9deb79dabc5153448e38589fbe38945fdad45f0f8442cd4d4e1da8bb879a76","affectsGlobalScope":true},"f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956",{"version":"c9cc4c881c910ce378659524d985d2b72b79029b0c473df5d4d3557b4cf6010a","affectsGlobalScope":true},"7fae4b2bc906f3e6840725cc24affaa4e684e6c9cc20254242c5df4bede5b6f6","2dd1d4cea14cead7a7fc9eec8f40593089dff0de8c0199458446143c9b8c4ea9","c0288f54de6f544706a3150c8b579b1a975870695c4be866f727ece6a16f3976","ec2c7505ede4bc3ee37cfe431cfd87e545f55f27fe15b0809c1a411765145615"],"options":{"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":1,"outDir":"./dist-cjs","removeComments":true,"rootDir":"./src","skipLibCheck":true,"strict":true,"target":7,"useUnknownInCatchVariables":false},"fileIdsList":[[103],[73,89,101,388],[75,103,391],[69,103],[72,75,95,103,395,396,397],[103,406],[95,103,410],[75,103],[64,103],[399,400,414],[72,75,103,408,409],[392,409,410,417],[72,73,103,419],[72,75,77,80,89,95,103],[72,98,103,436,437,439],[438],[72,103],[441,443,444,445,446,447,448,449,450,451,452,453],[441,442,444,445,446,447,448,449,450,451,452,453],[442,443,444,445,446,447,448,449,450,451,452,453],[441,442,443,445,446,447,448,449,450,451,452,453],[441,442,443,444,446,447,448,449,450,451,452,453],[441,442,443,444,445,447,448,449,450,451,452,453],[441,442,443,444,445,446,448,449,450,451,452,453],[441,442,443,444,445,446,447,449,450,451,452,453],[441,442,443,444,445,446,447,448,450,451,452,453],[441,442,443,444,445,446,447,448,449,451,452,453],[441,442,443,444,445,446,447,448,449,450,452,453],[441,442,443,444,445,446,447,448,449,450,451,453],[441,442,443,444,445,446,447,448,449,450,451,452],[473],[458],[462,463,464],[461],[463],[440,459,460,465,468,470,471,472],[460,466,467,473],[466,469],[460,461,466,473],[460,473],[454,455,456,457],[75,95,103,479,480],[485],[72,73,103],[75,89,103],[488,527],[488,512,527],[527],[488],[488,513,527],[488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526],[513,527],[73,418],[75,103,416],[529],[89,103],[72,75,77,89,92,95,101,103],[72,103,541],[425],[424,425],[424],[424,425,426,428,429,432,433,434,435],[425,429],[424,425,426,428,429,430,431],[424,429],[429,433],[425,426,427],[426],[424,425,429],[403],[400,401,402],[400,403],[63,75,80,92,95,98,399,401,403,404,405],[149,190,191,192,193,301],[149,187,190,191,192,193,241,243,244,249,252,281,283,300],[149,187,189,301],[190,191,192,193],[231],[149,231,241],[188,301,302,304,305],[187],[189],[187,188],[149,190,191,192,193,241],[149,187,231,241,243,301,309],[149,187,231,241,243,301,314],[149,243,301],[242],[369,370,371],[384],[149],[360],[149,245],[245,246,247,248],[245],[250,251],[149,250],[149,231],[353,356],[266],[354,355],[206,207],[201],[201,202,203,204,205],[194,195,196,197,198,199,200,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230],[149,373],[267,268,269,270],[149,269],[271,274,280],[272,273],[275],[149,277,278],[277,278,279],[276],[375,376,377],[282],[89,103,149],[334,335],[149,241],[307,308],[149,157,158],[159,160],[157,158,161,162,163],[149,291,293],[149,266],[293,294,295,296,297,298,299],[149,295],[149,292],[322,323,324],[149,323],[149,253,263,264],[149,262],[265],[311,312,313],[75,77,103,149,241],[234],[235],[149,237],[149,232,233],[232,233,234,236,237,238,239,240],[254,255,256,257,258,259,260,261],[149,258],[149,155],[149,164],[151],[149,172,173],[174],[149,150,151,156,165,166,167,168,169,170,171,175,176,177,178,179,180,181,182,183,184,185,186],[47,54,55,56],[54,57],[47,51],[47,57],[45,46,55,56,57,58],[89,103,105],[107],[52,53,54,109],[52,54],[111,113,114],[111,112],[116],[45],[48,118],[118],[118,119,120,121,122],[121],[49],[118,119,120],[51,52,54],[107,108],[124],[124,128],[124,125,128,129],[53,127],[104],[44,50],[75,77,103],[47],[47,132,133,134],[44,48,49,50,51,52,53,54,59,106,107,108,109,110,112,115,116,117,123,126,127,130,131,135,136,137,138,139,140,141,142,143,144,146,147,148],[45,48,49,53],[110],[126],[51,53,112],[51,52],[51,116],[53,107,108],[75,89,103,105,138],[52,109,143,144],[51,75,76,103,110,138,142,144,145],[51],[44],[342,343],[379],[338],[381],[149,187],[350],[149,284],[149,286],[284],[284,285,286,287,288,289,290],[152,153,154],[89,149],[345,346,347],[60],[62],[63,68],[64,72,73,80,89],[64,65,72,80],[66,96],[67,68,73,81],[68,89],[69,70,72,80],[70],[71,72],[72],[72,73,74,89,95],[73,74],[72,75,80,89,95],[72,73,75,76,80,89,92,95],[75,77,89,92,95],[60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],[72,78],[79,95],[70,72,80,89],[81],[82],[62,83],[84,94],[85],[86],[72,87],[87,88,96,98],[72,89],[90],[91],[80,89,92],[93],[80,94],[75,86,95],[96],[89,97],[98],[99],[72,74,89,95,98,100],[89,101],[149,187,319,326,327,328,331,364],[149,187,241,244,249,252,281,283,300,319,326,327,328,331,352,359,361,362,363],[149,187,241,319,321,325,330,364],[319,326,327,328,331],[231,281,319],[149,231,241,319],[319,320,364,365,366,367],[187,319],[319,321],[187,319,320],[149,187,241,319,320,321,326,327,328,329,331],[187,281,291,309,319,332,349,364,372,374,378,380,382],[319,364,383,385],[187,319,340,341,344,348,364],[187,266,281,291,300,314,319,332,333,336,337,339,349,351,364],[187,241,319,357,358]],"referencedMap":[[387,1],[389,2],[392,3],[393,4],[398,5],[407,6],[411,7],[391,8],[412,9],[415,10],[410,11],[418,12],[420,13],[421,14],[438,15],[439,16],[395,17],[442,18],[443,19],[441,20],[444,21],[445,22],[446,23],[447,24],[448,25],[449,26],[450,27],[451,28],[452,29],[453,30],[474,31],[459,32],[465,33],[462,34],[464,35],[473,36],[468,37],[470,38],[471,39],[472,40],[467,40],[469,40],[461,40],[457,32],[458,41],[456,32],[481,42],[486,43],[388,44],[397,45],[512,46],[513,47],[488,48],[491,48],[510,46],[511,46],[501,46],[500,49],[498,46],[493,46],[506,46],[504,46],[508,46],[492,46],[505,46],[509,46],[494,46],[495,46],[507,46],[489,46],[496,46],[497,46],[499,46],[503,46],[514,50],[502,46],[490,46],[527,51],[521,50],[523,52],[522,50],[515,50],[516,50],[518,50],[520,50],[524,52],[525,52],[517,52],[519,52],[528,53],[417,54],[530,55],[532,8],[533,56],[540,57],[542,58],[479,45],[426,59],[435,60],[425,61],[436,62],[431,63],[432,64],[430,65],[434,66],[428,67],[427,68],[433,69],[429,60],[404,70],[403,71],[401,72],[406,73],[302,74],[301,75],[190,76],[191,76],[192,76],[193,76],[304,77],[303,78],[242,79],[306,80],[188,81],[305,82],[189,83],[318,84],[310,85],[315,86],[316,85],[317,87],[243,88],[369,78],[370,78],[372,89],[371,78],[385,90],[384,78],[244,91],[361,92],[360,91],[362,91],[245,78],[246,93],[249,94],[247,95],[248,93],[250,91],[252,96],[251,97],[353,98],[357,99],[354,100],[356,101],[355,91],[194,91],[195,91],[196,91],[197,91],[198,91],[199,91],[200,91],[208,102],[209,91],[211,91],[212,91],[213,91],[214,91],[215,91],[202,103],[203,91],[201,91],[206,104],[204,103],[205,103],[231,105],[216,91],[217,91],[218,91],[219,91],[221,91],[222,91],[223,91],[224,91],[225,91],[226,91],[227,102],[228,91],[229,91],[207,91],[230,91],[374,106],[333,91],[271,107],[267,100],[268,100],[270,108],[269,91],[281,109],[272,100],[274,110],[273,91],[276,111],[279,112],[280,113],[277,114],[278,114],[375,91],[378,115],[376,91],[282,91],[283,116],[334,117],[336,118],[335,91],[307,119],[309,120],[308,91],[337,91],[363,91],[159,121],[161,122],[160,91],[162,121],[163,121],[164,123],[157,91],[294,124],[295,125],[300,126],[297,91],[298,91],[299,127],[293,128],[292,91],[322,91],[325,129],[323,91],[324,130],[265,131],[253,91],[263,132],[264,91],[266,133],[314,134],[311,135],[312,119],[313,91],[235,136],[236,137],[237,91],[238,138],[234,139],[232,91],[233,91],[241,140],[240,91],[262,141],[258,91],[259,91],[260,142],[261,91],[151,91],[156,143],[165,144],[167,145],[176,91],[172,91],[174,146],[175,147],[173,91],[187,148],[150,91],[57,149],[58,150],[55,151],[56,152],[59,153],[106,154],[108,155],[110,156],[109,157],[115,158],[113,159],[117,160],[48,161],[119,162],[120,163],[123,164],[122,165],[118,166],[121,167],[116,168],[124,169],[125,170],[129,171],[130,172],[128,173],[105,174],[51,175],[131,176],[132,177],[133,177],[135,178],[134,177],[149,179],[54,180],[136,181],[127,182],[138,183],[126,184],[139,185],[140,186],[141,154],[142,154],[143,187],[145,188],[146,189],[147,181],[50,190],[53,168],[148,191],[341,91],[344,192],[380,193],[339,194],[382,195],[381,196],[351,197],[350,196],[285,198],[287,199],[288,200],[291,201],[286,91],[153,117],[155,202],[154,203],[348,204],[60,205],[62,206],[63,207],[64,208],[65,209],[66,210],[67,211],[68,212],[69,213],[70,214],[71,215],[72,216],[73,217],[74,218],[75,219],[76,220],[77,221],[103,222],[78,223],[79,224],[80,225],[81,226],[82,227],[83,228],[84,229],[85,230],[86,231],[87,232],[88,233],[89,234],[90,235],[91,236],[92,237],[93,238],[94,239],[95,240],[96,241],[97,242],[98,243],[99,244],[100,245],[101,246],[365,247],[364,248],[331,249],[326,249],[327,249],[328,249],[366,250],[340,251],[358,252],[368,253],[320,254],[367,255],[321,256],[330,257],[383,258],[386,259],[349,260],[352,261],[359,262]],"exportedModulesMap":[[387,1],[389,2],[392,3],[393,4],[398,5],[407,6],[411,7],[391,8],[412,9],[415,10],[410,11],[418,12],[420,13],[421,14],[438,15],[439,16],[395,17],[442,18],[443,19],[441,20],[444,21],[445,22],[446,23],[447,24],[448,25],[449,26],[450,27],[451,28],[452,29],[453,30],[474,31],[459,32],[465,33],[462,34],[464,35],[473,36],[468,37],[470,38],[471,39],[472,40],[467,40],[469,40],[461,40],[457,32],[458,41],[456,32],[481,42],[486,43],[388,44],[397,45],[512,46],[513,47],[488,48],[491,48],[510,46],[511,46],[501,46],[500,49],[498,46],[493,46],[506,46],[504,46],[508,46],[492,46],[505,46],[509,46],[494,46],[495,46],[507,46],[489,46],[496,46],[497,46],[499,46],[503,46],[514,50],[502,46],[490,46],[527,51],[521,50],[523,52],[522,50],[515,50],[516,50],[518,50],[520,50],[524,52],[525,52],[517,52],[519,52],[528,53],[417,54],[530,55],[532,8],[533,56],[540,57],[542,58],[479,45],[426,59],[435,60],[425,61],[436,62],[431,63],[432,64],[430,65],[434,66],[428,67],[427,68],[433,69],[429,60],[404,70],[403,71],[401,72],[406,73],[302,74],[301,75],[190,76],[191,76],[192,76],[193,76],[304,77],[303,78],[242,79],[306,80],[188,81],[305,82],[189,83],[318,84],[310,85],[315,86],[316,85],[317,87],[243,88],[369,78],[370,78],[372,89],[371,78],[385,90],[384,78],[244,91],[361,92],[360,91],[362,91],[245,78],[246,93],[249,94],[247,95],[248,93],[250,91],[252,96],[251,97],[353,98],[357,99],[354,100],[356,101],[355,91],[194,91],[195,91],[196,91],[197,91],[198,91],[199,91],[200,91],[208,102],[209,91],[211,91],[212,91],[213,91],[214,91],[215,91],[202,103],[203,91],[201,91],[206,104],[204,103],[205,103],[231,105],[216,91],[217,91],[218,91],[219,91],[221,91],[222,91],[223,91],[224,91],[225,91],[226,91],[227,102],[228,91],[229,91],[207,91],[230,91],[374,106],[333,91],[271,107],[267,100],[268,100],[270,108],[269,91],[281,109],[272,100],[274,110],[273,91],[276,111],[279,112],[280,113],[277,114],[278,114],[375,91],[378,115],[376,91],[282,91],[283,116],[334,117],[336,118],[335,91],[307,119],[309,120],[308,91],[337,91],[363,91],[159,121],[161,122],[160,91],[162,121],[163,121],[164,123],[157,91],[294,124],[295,125],[300,126],[297,91],[298,91],[299,127],[293,128],[292,91],[322,91],[325,129],[323,91],[324,130],[265,131],[253,91],[263,132],[264,91],[266,133],[314,134],[311,135],[312,119],[313,91],[235,136],[236,137],[237,91],[238,138],[234,139],[232,91],[233,91],[241,140],[240,91],[262,141],[258,91],[259,91],[260,142],[261,91],[151,91],[156,143],[165,144],[167,145],[176,91],[172,91],[174,146],[175,147],[173,91],[187,148],[150,91],[57,149],[58,150],[55,151],[56,152],[59,153],[106,154],[108,155],[110,156],[109,157],[115,158],[113,159],[117,160],[48,161],[119,162],[120,163],[123,164],[122,165],[118,166],[121,167],[116,168],[124,169],[125,170],[129,171],[130,172],[128,173],[105,174],[51,175],[131,176],[132,177],[133,177],[135,178],[134,177],[149,179],[54,180],[136,181],[127,182],[138,183],[126,184],[139,185],[140,186],[141,154],[142,154],[143,187],[145,188],[146,189],[147,181],[50,190],[53,168],[148,191],[341,91],[344,192],[380,193],[339,194],[382,195],[381,196],[351,197],[350,196],[285,198],[287,199],[288,200],[291,201],[286,91],[153,117],[155,202],[154,203],[348,204],[60,205],[62,206],[63,207],[64,208],[65,209],[66,210],[67,211],[68,212],[69,213],[70,214],[71,215],[72,216],[73,217],[74,218],[75,219],[76,220],[77,221],[103,222],[78,223],[79,224],[80,225],[81,226],[82,227],[83,228],[84,229],[85,230],[86,231],[87,232],[88,233],[89,234],[90,235],[91,236],[92,237],[93,238],[94,239],[95,240],[96,241],[97,242],[98,243],[99,244],[100,245],[101,246],[365,247],[364,248],[331,249],[326,249],[327,249],[328,249],[366,250],[340,251],[358,252],[368,253],[320,254],[367,255],[321,256],[330,257],[383,258],[386,259],[349,260],[352,261],[359,262]],"semanticDiagnosticsPerFile":[387,389,390,392,393,394,398,407,411,391,412,413,414,415,399,410,418,420,419,396,421,422,423,438,439,400,395,440,442,443,441,444,445,446,447,448,449,450,451,452,453,474,459,465,463,462,464,473,468,470,471,472,466,467,469,461,460,455,454,457,458,456,475,416,476,477,478,480,481,482,483,484,486,409,408,388,487,397,485,512,513,488,491,510,511,501,500,498,493,506,504,508,492,505,509,494,495,507,489,496,497,499,503,514,502,490,527,526,521,523,522,515,516,518,520,524,525,517,519,528,417,530,529,531,532,533,534,437,536,535,537,538,539,540,542,541,402,479,426,435,424,425,436,431,432,430,434,428,427,433,429,404,403,401,405,406,302,301,190,191,192,193,304,303,242,306,188,305,189,318,310,315,316,317,243,369,370,372,371,385,384,244,361,360,362,245,246,249,247,248,250,252,251,353,357,354,356,355,194,195,196,197,198,199,200,208,209,210,211,212,213,214,215,202,203,201,206,204,205,231,216,217,218,219,220,221,222,223,224,225,226,227,228,229,207,230,373,374,333,271,267,268,270,269,281,272,274,273,276,275,279,280,277,278,375,378,376,377,282,283,334,336,335,307,309,308,337,363,159,161,160,162,163,164,157,158,294,295,296,300,297,298,299,293,292,322,325,323,324,265,253,263,264,266,314,311,312,313,235,236,237,238,234,232,233,241,239,240,254,255,256,257,262,258,259,260,261,151,156,165,166,167,168,169,170,171,176,177,172,174,175,173,178,179,187,180,150,181,182,183,184,185,186,44,45,46,57,58,55,56,59,106,108,110,109,111,115,113,114,107,117,48,119,120,123,122,118,121,116,124,125,129,130,128,105,51,131,132,133,47,135,134,149,49,54,136,137,52,127,138,126,139,140,141,142,143,112,145,146,104,147,144,50,53,148,341,342,344,343,379,380,338,339,382,381,351,350,285,289,287,290,288,291,286,284,152,153,155,154,345,348,346,347,60,62,63,64,65,66,67,68,69,70,71,72,73,74,61,102,75,76,77,103,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,329,319,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,332,365,364,331,326,327,328,366,340,358,368,320,367,321,330,383,386,349,352,359]},"version":"4.9.5"} \ No newline at end of file diff --git a/src.gen/@amzn/codewhisperer-streaming/tsconfig.es.tsbuildinfo b/src.gen/@amzn/codewhisperer-streaming/tsconfig.es.tsbuildinfo deleted file mode 100644 index 351837c03a2..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/tsconfig.es.tsbuildinfo +++ /dev/null @@ -1 +0,0 @@ -{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/@smithy/types/dist-types/abort.d.ts","./node_modules/@smithy/types/dist-types/auth/auth.d.ts","./node_modules/@smithy/types/dist-types/auth/httpapikeyauth.d.ts","./node_modules/@smithy/types/dist-types/identity/identity.d.ts","./node_modules/@smithy/types/dist-types/endpoint.d.ts","./node_modules/@smithy/types/dist-types/logger.d.ts","./node_modules/@smithy/types/dist-types/uri.d.ts","./node_modules/@smithy/types/dist-types/http.d.ts","./node_modules/@smithy/types/dist-types/response.d.ts","./node_modules/@smithy/types/dist-types/util.d.ts","./node_modules/@smithy/types/dist-types/middleware.d.ts","./node_modules/@smithy/types/dist-types/auth/httpsigner.d.ts","./node_modules/@smithy/types/dist-types/auth/identityproviderconfig.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthscheme.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/types/dist-types/auth/index.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/index.d.ts","./node_modules/@smithy/types/dist-types/transform/exact.d.ts","./node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts","./node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/crypto.d.ts","./node_modules/@smithy/types/dist-types/checksum.d.ts","./node_modules/@smithy/types/dist-types/command.d.ts","./node_modules/@smithy/types/dist-types/client.d.ts","./node_modules/@smithy/types/dist-types/connection/config.d.ts","./node_modules/@smithy/types/dist-types/transfer.d.ts","./node_modules/@smithy/types/dist-types/connection/manager.d.ts","./node_modules/@smithy/types/dist-types/connection/pool.d.ts","./node_modules/@smithy/types/dist-types/connection/index.d.ts","./node_modules/@smithy/types/dist-types/eventstream.d.ts","./node_modules/@smithy/types/dist-types/encode.d.ts","./node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","./node_modules/@smithy/types/dist-types/endpoints/endpointruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/errorruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/treeruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/rulesetobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/index.d.ts","./node_modules/@smithy/types/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultclientconfiguration.d.ts","./node_modules/@smithy/types/dist-types/shapes.d.ts","./node_modules/@smithy/types/dist-types/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/types/dist-types/extensions/index.d.ts","./node_modules/@smithy/types/dist-types/http/httphandlerinitialization.d.ts","./node_modules/@smithy/types/dist-types/identity/apikeyidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/index.d.ts","./node_modules/@smithy/types/dist-types/pagination.d.ts","./node_modules/@smithy/types/dist-types/profile.d.ts","./node_modules/@smithy/types/dist-types/serde.d.ts","./node_modules/@smithy/types/dist-types/signature.d.ts","./node_modules/@smithy/types/dist-types/stream.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","./node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","./node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","./node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","./node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts","./node_modules/@smithy/types/dist-types/waiter.d.ts","./node_modules/@smithy/types/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/nooplogger.d.ts","./node_modules/@smithy/smithy-client/dist-types/client.d.ts","./node_modules/@smithy/util-stream/dist-types/blob/uint8arrayblobadapter.d.ts","./node_modules/@smithy/util-stream/dist-types/getawschunkedencodingstream.d.ts","./node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts","./node_modules/@smithy/util-stream/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/resolveendpointconfig.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getendpointfrominstructions.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toendpointv1.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/endpointmiddleware.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/getendpointplugin.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/command.d.ts","./node_modules/@smithy/smithy-client/dist-types/constants.d.ts","./node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts","./node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts","./node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts","./node_modules/@smithy/smithy-client/dist-types/emitwarningifunsupportedversion.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts","./node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts","./node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts","./node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts","./node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-every.d.ts","./node_modules/@smithy/smithy-client/dist-types/index.d.ts","./dist-types/models/codewhispererstreamingserviceexception.d.ts","./dist-types/models/models_0.d.ts","./dist-types/commands/conversestreamcommand.d.ts","./dist-types/commands/exportresultarchivecommand.d.ts","./dist-types/commands/generateassistantresponsecommand.d.ts","./dist-types/commands/generatetaskassistplancommand.d.ts","./node_modules/@aws-sdk/types/dist-types/abort.d.ts","./node_modules/@aws-sdk/types/dist-types/auth.d.ts","./node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","./node_modules/@aws-sdk/types/dist-types/checksum.d.ts","./node_modules/@aws-sdk/types/dist-types/client.d.ts","./node_modules/@aws-sdk/types/dist-types/command.d.ts","./node_modules/@aws-sdk/types/dist-types/connection.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/identity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/anonymousidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/loginidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","./node_modules/@aws-sdk/types/dist-types/util.d.ts","./node_modules/@aws-sdk/types/dist-types/credentials.d.ts","./node_modules/@aws-sdk/types/dist-types/crypto.d.ts","./node_modules/@aws-sdk/types/dist-types/dns.d.ts","./node_modules/@aws-sdk/types/dist-types/encode.d.ts","./node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","./node_modules/@aws-sdk/types/dist-types/eventstream.d.ts","./node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/types/dist-types/http.d.ts","./node_modules/@aws-sdk/types/dist-types/logger.d.ts","./node_modules/@aws-sdk/types/dist-types/middleware.d.ts","./node_modules/@aws-sdk/types/dist-types/pagination.d.ts","./node_modules/@aws-sdk/types/dist-types/profile.d.ts","./node_modules/@aws-sdk/types/dist-types/request.d.ts","./node_modules/@aws-sdk/types/dist-types/response.d.ts","./node_modules/@aws-sdk/types/dist-types/retry.d.ts","./node_modules/@aws-sdk/types/dist-types/serde.d.ts","./node_modules/@aws-sdk/types/dist-types/shapes.d.ts","./node_modules/@aws-sdk/types/dist-types/signature.d.ts","./node_modules/@aws-sdk/types/dist-types/stream.d.ts","./node_modules/@aws-sdk/types/dist-types/token.d.ts","./node_modules/@aws-sdk/types/dist-types/transfer.d.ts","./node_modules/@aws-sdk/types/dist-types/uri.d.ts","./node_modules/@aws-sdk/types/dist-types/waiter.d.ts","./node_modules/@aws-sdk/types/dist-types/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/httprequest.d.ts","./node_modules/@smithy/protocol-http/dist-types/httpresponse.d.ts","./node_modules/@smithy/protocol-http/dist-types/httphandler.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/httpextensionconfiguration.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/field.d.ts","./node_modules/@smithy/protocol-http/dist-types/fields.d.ts","./node_modules/@smithy/protocol-http/dist-types/isvalidhostname.d.ts","./node_modules/@smithy/protocol-http/dist-types/types.d.ts","./node_modules/@smithy/protocol-http/dist-types/index.d.ts","./dist-types/extensionconfiguration.d.ts","./dist-types/runtimeextensions.d.ts","./node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/gettokenplugin.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/resolvetokenconfig.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/tokenmiddleware.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromenv.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/gethomedir.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getprofilename.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfilepath.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfromfile.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadsharedconfigfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadssosessiondata.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/parseknownfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromsharedconfigfiles.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromstatic.d.ts","./node_modules/@smithy/node-config-provider/dist-types/configloader.d.ts","./node_modules/@smithy/node-config-provider/dist-types/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusedualstackendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusefipsendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolveendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolvecustomendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvarianttag.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvariant.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/partitionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/regionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/getregioninfo.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/eventstreamserdeconfig.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts","./node_modules/@smithy/util-retry/dist-types/types.d.ts","./node_modules/@smithy/util-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/configuredretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/defaultratelimiter.d.ts","./node_modules/@smithy/util-retry/dist-types/config.d.ts","./node_modules/@smithy/util-retry/dist-types/constants.d.ts","./node_modules/@smithy/util-retry/dist-types/index.d.ts","./node_modules/@smithy/middleware-retry/dist-types/types.d.ts","./node_modules/@smithy/middleware-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts","./node_modules/@smithy/middleware-retry/dist-types/delaydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/omitretryheadersmiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrymiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/index.d.ts","./dist-types/codewhispererstreamingclient.d.ts","./dist-types/codewhispererstreaming.d.ts","./dist-types/endpoints.d.ts","./dist-types/commands/index.d.ts","./dist-types/models/index.d.ts","./dist-types/index.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts","./dist-types/runtimeconfig.browser.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts","./node_modules/@smithy/node-http-handler/dist-types/index.d.ts","./dist-types/runtimeconfig.d.ts","./dist-types/runtimeconfig.native.d.ts","./dist-types/runtimeconfig.shared.d.ts","./dist-types/protocols/aws_restjson1.d.ts","./node_modules/tslib/tslib.d.ts","./src/models/codewhispererstreamingserviceexception.ts","./src/models/models_0.ts","./node_modules/@smithy/middleware-serde/dist-types/deserializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serdeplugin.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/index.d.ts","./src/commands/exportresultarchivecommand.ts","./src/commands/generateassistantresponsecommand.ts","./src/commands/generatetaskassistplancommand.ts","./node_modules/@types/uuid/index.d.ts","./src/protocols/aws_restjson1.ts","./src/commands/conversestreamcommand.ts","./package.json","./node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts","./node_modules/@smithy/hash-node/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/index.d.ts","./src/endpoints.ts","./node_modules/@smithy/url-parser/dist-types/index.d.ts","./node_modules/@smithy/util-base64/dist-types/frombase64.d.ts","./node_modules/@smithy/util-base64/dist-types/tobase64.d.ts","./node_modules/@smithy/util-base64/dist-types/index.d.ts","./node_modules/@smithy/util-utf8/dist-types/fromutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/touint8array.d.ts","./node_modules/@smithy/util-utf8/dist-types/toutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/index.d.ts","./src/runtimeconfig.shared.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts","./src/runtimeconfig.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts","./src/extensionconfiguration.ts","./src/runtimeextensions.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/loggermiddleware.d.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts","./node_modules/@smithy/middleware-content-length/dist-types/index.d.ts","./src/codewhispererstreamingclient.ts","./src/codewhispererstreaming.ts","./src/commands/index.ts","./src/models/index.ts","./src/index.ts","./node_modules/@aws-crypto/sha256-browser/build/crossplatformsha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/ie11sha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/webcryptosha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/index.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts","./src/runtimeconfig.browser.ts","./node_modules/@aws-crypto/sha256-js/build/jssha256.d.ts","./node_modules/@aws-crypto/sha256-js/build/index.d.ts","./src/runtimeconfig.native.ts","../../../node_modules/@types/adm-zip/index.d.ts","../../../node_modules/@types/readdir-glob/index.d.ts","../../../node_modules/@types/archiver/index.d.ts","../../../node_modules/@types/async-lock/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/bytes/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/circular-dependency-plugin/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/cross-spawn/index.d.ts","../../../node_modules/@types/diff/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/glob/node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/parse5/dist/common/html.d.ts","../../../node_modules/parse5/dist/common/token.d.ts","../../../node_modules/parse5/dist/common/error-codes.d.ts","../../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/dist/tokenizer/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/parser/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/serializer/index.d.ts","../../../node_modules/parse5/dist/common/foreign-content.d.ts","../../../node_modules/parse5/dist/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/linkify-it/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdurl/encode.d.ts","../../../node_modules/@types/mdurl/decode.d.ts","../../../node_modules/@types/mdurl/parse.d.ts","../../../node_modules/@types/mdurl/format.d.ts","../../../node_modules/@types/mdurl/index.d.ts","../../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../../node_modules/@types/markdown-it/lib/token.d.ts","../../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../../node_modules/@types/markdown-it/lib/index.d.ts","../../../node_modules/@types/markdown-it/index.d.ts","../../../node_modules/@types/mime-types/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/prismjs/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/proper-lockfile/index.d.ts","../../../node_modules/@types/readline-sync/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sinon/node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/stream-buffers/index.d.ts","../../../node_modules/@types/tcp-port-used/index.d.ts","../../../node_modules/@types/vscode/index.d.ts","../../../node_modules/@types/vscode-webview/index.d.ts","../../../node_modules/@types/webidl-conversions/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/whatwg-url/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/xml2js/lib/processors.d.ts","../../../node_modules/@types/xml2js/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"c55ae709f94155174ff63647edd2a7e3acbd02a2909aa2541569e8b8bac9fc40","530e5c7e4f74267b7800f1702cf0c576282296a960acbdb2960389b2b1d0875b","1c483cc60a58a0d4c9a068bdaa8d95933263e6017fbea33c9f99790cf870f0a8","07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","d5f1bbd44ba4f63d8a01fff5e1edc1c1fb50e9caa48a4fa48298a4485d6ff75c","4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","d12680e217215b37094868d491d00196e80f270ce47e5a4bc50269945ae5554d","396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","b7b881ced4ed4dee13d6e0ccdb2296f66663ba6b1419767271090b3ff3478bb9","06289b9873760aac77aed4035ea6c60b1e0879b8afe47a4530bc8522b9b804b1","63c36aa73242aa745fae813c40585111ead225394b0a0ba985c2683baa6b0ef9","3e7ffc7dd797e5d44d387d0892bc288480493e73dcab9832812907d1389e4a98","db011ec9589fd51995cbd0765673838e38e6485a6559163cc53dcf508b480909","e1a4253f0cca15c14516f52a2ad36c3520b140b5dfb3b3880a368cd75d45d6d9","159af954f2633a12fdee68605009e7e5b150dbeb6d70c46672fd41059c154d53","f5331cb9cc00970e4831e7f0de9688e04986bcde808cac10caa3e7005e203907",{"version":"d20bbe9029b614c171212c50c842fa7ddfc61a6bbc697710ac70e4f7f0c77d15","affectsGlobalScope":true},"a9d67f9ae6bb38f732c51d1081af6a0ac6cae5e122472cacc2d54db178013699","1296a364908ba9c646372edc18ee0e140d9a388956b0e9510eec906b19fa5b36","1c863a53fb796e962c4b3e54bc7b77fd04a518444263d307290ff04f619c275e","ff98afc32b01e580077faf85b60232b65c40df0c3ecaa765fabc347a639b4225",{"version":"30133f9ceaa46c9a20092c382fed7b8d09393cf1934392149ea8202991edb3ea","affectsGlobalScope":true},"30c05e45ec7e1247ba9b87ad2acfae4fda401737f0e8a59f78beda8a4e22b110","2da83cc57a94f7aee832f2a71e1a294d857492761c1f5db717ea42c1a22467bc","aa5cc73a5f548f5bc1b4279a730c03294dfa6e98bed228d4ed6322a4183b26ad","b3f1ac9fe3d18d6cd04ab1e67a5da8c33ceb47f26b47e67896a5b2f8293c8a32",{"version":"ca88e8b07c8186ef3180bf9b6b4456311ae41bf3fe5652c27a2a3feba04136b0","affectsGlobalScope":true},{"version":"592d937b7df1b74af7fa81656503fc268fee50f0e882178e851b667def34414b","affectsGlobalScope":true},"fdfdf2eab2bded61ee321ec88b8e083fe8d9fedad25a16ae040740869bc64e48","e8067fc8b0247f8b5ad781bd22f5dd19f6a39961ba60fa6fc13cfe9e624ca92f","842ef57ce3043fba0b0fb7eece785140af9d2381e4bed4f2744d3060352f2fd5","9095b6f13d9e48704b919d9b4162c48b04236a4ce664dc07549a435d8f4e612e","111b4c048fe89d25bb4d2a0646623ff4c456a313ed5bfb647b2262dda69a4ff8","f70f62f5f87ff8900090069554f79d9757f8e385322d0e26268463e27c098204","0932ed41e23d22fa5359f74805c687314e4b707b3428e52419d0fbefc0d66661","af07f4baaca7e5cf70cb8887e7d4f23d6bb0c0dd6ca1329c3d959ea749b7a14d","c80402af7b0420f57372ac99885f1ab058121db72418e43d25f440abda7bbe23","71aba6ce66e76ccfd3ba92b8b5c6658bad293f1313f012821c4bff1dd64ca278","17d944cab17bc9e32975250e8abe8073702f9493582d847805e446641bd7798f",{"version":"c6bfc70bbdee282436ee11e887cceaa5988ac4eec60d5eb9b3711748c811831a","affectsGlobalScope":true},"f9ca5159f56c1fe99cdfc5f942585de20695a2a343db8543383b239c050f6aa4","84634ac706042ac8ee3a1e141bcdee03621725ab55455dba878a5503c6c7e037","d796c62c3c91c22c331b7465be89d009459eb1eb689304c476275f48676eaf9e","51cbf03ad34c3e84d1998bd57d1fd8da333d66dd65904625d22dc01b751d99c7","c31bbdc27ef936061eaa9d423c5da7c5b439a4ff6b5f1b18f89b30cf119d5a56","2a4ae2a8f834858602089792c9e8bab00075f5c4b1708bd49c298a3e6c95a30c","71e29ae391229f876d8628987640c3c51c89a1c2fd980d1a72d69aeee4239f80","51c74d73649a4d788ed97b38bd55ebac57d85b35cbf4a0357e3382324e10bbe9","c8641524781fa803006a144fd3024d5273ab0c531d8a13bbeaa8c81d8241529f","73e218d8914afc428a24b7d1de42a2cb37f0be7ac1f5c32c4a66379572700b52",{"version":"56ff5262d76c01b3637ca82f9749d3ec0d70cf57d87964bf3e9ba4204241849e","affectsGlobalScope":true},"9e3a18040e5a95f61556e09c932393b49c3b21ce42abe0f4ed74b97173f320db","344922fac39b5732179b606e16781b354c160f0e9bd7f5921a0fdc9fe4ede1fb","c1449f51f9496bb23f33ee48ff590b815393ef560a9e80493614869fe50915da","87a49241df2b37e59f86619091dec2beb9ad8126d7649f0b0edb8fc99eca2499","07efd1f649e91967fada88d53ad64b61c1b2853d212f3eaffc946e7e13d03d67","6d79a0938f4b89c1c1fee2c3426754929173c8888fdfaab6b6d645269945f7bf",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"c6c0bd221bb1e94768e94218f8298e47633495529d60cae7d8da9374247a1cf5","a1b36a1f91a54daf2e89e12b834fa41fb7338bc044d1f08a80817efc93c99ee5","8bb4a5b632dd5a868f3271750895cb61b0e20cff82032d87e89288faee8dd6e2","0c1aabfd9fb1818afb2e798f91f669edafce59cd7e3423d25b1cfccfaaf2c403","017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","aee8faa433dde04beedb779b3329456a286a966462d666c138c19113ce78c79e","d620ec36bfc6f8ed6fdecbe036d55cec81637f32fd34dc7bb7e60eba1764e910","4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","fc9bdd9b3d8fb59c913cb3b8dea0d79b38dfe9331ef07e1c6dc6bf363f061ad6","e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","0c3c4ce6a1884610c99306719f59174d81808c69393c30119f9c2aef0449a2cb","219a25474e58a8161b242776856ec5f6960839b63e74809445e51cadbfc18096","5a0d1534e9493ae44b08b3055172da38370e2afd2bc3d4bea11f7be78344036f","6309a45fc3c03d3c4d56228e995d51974f53009a842374695b34f3607877e5a3","bef94eba81ae2c09059c0d9abdb1ae1b7090314f70550f3c8cd5d7ead4a4f212","48b787ad458be9b524fa5fdfef34f68798074132d4b8cfe6a6fe9c2bf334c532","37280465f8f9b2ea21d490979952b18b7f4d1f0d8fab2d627618fb2cfa1828e3","7281550c523596fd0fd36c6e19aa89075dac93144437ce48490da319b1f4d318","3f3f85dc43cb93c5a797f1ff0fa948d0e17843a443ae11a20cc032ccdf1b9997","020507cb67b96b0830a8636db03ae004181eee323ba33565cfe8d45aaedc4d1d","869010bc679df668137cb3b78a3cb8196e97acf285208a57f6156ceac894a2f7","bcae62618c23047e36d373f0feac5b13f09689e4cd08e788af13271dbe73a139","29a99d2e57b3e08a997cbc2397bdb251441a545306a74b95ffedc5f03d9bc6b7","5ae003688265a1547bbcb344bf0e26cb994149ac2c032756718e9039302dfac8","09e811cc1088d9ea3a7ddd7290f6a13767f56c85daf8c3374a06a45a08d55647","9da2c58a27fdce871c2eac09d5172b04248bb86ada9b0d10e8b3dfa8470b8dd3","5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","7b270dc53f35dd0b44bfa619ad4d351fffd512e14053c3688323ed007eda3f6d","6d4e928f232ade7221cffc6e4332ec935baa176415c9bf5d12111bb883a247d2","e86ad029224d4f2af3e188be8b5e9badf8c7083247572069bac7bd2193131fc7","057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","38aa389acf91d77db5a4f8e26e713ed53dc832ed5573def9cd20acd9ba97c1fe","e56784be93954f1f86d4dd3ac61b4c9727e75864baf123a1b584b970baed4ba0","f878779620c5178d45413b33c214419bb3df2945e703c35e1191188321e3633d","b9115605f72b65a662723020b2a1eb696c375a5803d6b401dc01fcbfe49ece90","151659e152d71986b8943b9943cd7fbe27a65874655081602de7ea24a0f66e9b","4d250e905299144850c6f8e74dad1ee892d847643bacf637e89adcce013f0700","5fca180ba7514e439b225ee5eb47e5cf9254a591095f93cf7ca298ce6264159b","ed3e176bc769725ebc1d93f1d6890fc3d977b9155ae5d03be96ec2d49b303370","7933769d84f5ae16546aef06537ca578f1c8d7cca0708452a00613050ac1f265","cc5c913c4716a0d1563b2a63a7c4dc2fa81b7d7bc58489c79896d69b27e978cd","f194cdeb1caaf80e625f4fad340a9434b2b83786028dcc5ea6f3c459cc7789a0","f8ce447bbda4f75da74cecd866cc1ff9bdde62189ac9d8dc14a16c48b3d702fa","236247fb33a56e1d43b097c000aaafcac8fea1e8bf38d1a64f13889b32c372d0","c7d30b164562b7ce99fcb53ab78f937cc845e003f6089d648351331921379994","fe2d1251f167d801a27f0dfb4e2c14f4f08bf2214d9784a1b8c310fdfdcdaaea","2a1182578228dc1faad14627859042d59ea5ab7e3ac69cb2a3453329aaaa3b83","dfa99386b9a1c1803eb20df3f6d3adc9e44effc84fa7c2ab6537ed1cb5cc8cfb","79b0d5635af72fb87a2a4b62334b0ab996ff7a1a14cfdb895702e74051917718","5f00b052713bfe8e9405df03a1bbe406006b30ec6b0c2ce57d207e70b48cf4e9","7abcae770f21794b5ffbc3186483c3dbcf8b0c8e37d3ef3ed6277ece5c5dd4be","3e642f39da9ad0a4cd16ccbd7f363b6b5ad5fa16a5c6d44753f98fc1e3be9d96","7f5a6eac3d3d334e2f2eba41f659e9618c06361958762869055e22219f341554","6f996f44113b76a9960d3fad280f4f671115c5e971356d1dbb4d1b000af8b3b3","67f2cd6e208e68fdfa366967d1949575df6ccf90c104fc9747b3f1bdb69ad55a","f99ab9dffe6281c9b6df9ae9d8584d18eabf2107572bbd8fa5c83c8afe531af8","4fc9939c86a7d80ab6a361264e5666336d37e080a00d831d9358ad83575267da","f4ba385eedea4d7be1feeeac05aaa05d6741d931251a85ab48e0610271d001ce","fc79932b9aa710f025b89bf8d8329d99080286e5e079a7d5a529236e9f5dd69e","6646d9075e3e0eedb02c9d03bffef54c8bbeb601d27eed46f143aba435bac37d","0dec72b4c5c4bb149750fef4fc26bdae8f410de941ee766c953f5ac77381d690","8f2644578a3273f43fd700803b89b842d2cd09c1fba2421db45737357e50f5b1","f5405fb679a467cb979f8744940b22b7bc3a0bcbe648c3910d98de3188d42a78","68969a0efd9030866f60c027aedbd600f66ea09e1c9290853cc24c2dcc92000f","639f94fe145a72ce520d3d7b9b3b6c9049624d90cbf85cff46fb47fb28d1d8fe","8327a51d574987a2b0f61ea40df4adddf959f67bc48c303d4b33d47ba3be114a","991fd5ebf9f30ffa17cae6faeae6a838d3d91bdcdd419bce358dc99b8e5b0ad0","51b4ab145645785c8ced29238192f870dbb98f1968a7c7ef2580cd40663b2940","589713fefe7282fd008a2672c5fbacc4a94f31138bae6a03db2c7b5453dc8788","786691c952fe3feac79aca8f0e7e580d95c19afc8a4c6f8765e99fb756d8d9d7","4c348f139d006057ce9384e60b4ee1ce06bee5c16e19ff70f293ad88d5893386","e9d33b2549b5779b6cad92cb6a370c6c106cc12dc80da1cc199e2cb3a715bf38","62b753ed351fba7e0f6b57103529ce90f2e11b949b8fc69c39464fe958535c25","21e1fa3e5c95c61161a1ea2d819972e3b7e916a58571f8f9828b8a6c32e641ea","f78d0b00cf9700ef6fb82a5e52eeded028b18733bb8fdcc46a95ce598e83a292","24e26950b5a36dbc7f71e05a5f386c48933459e9322ca8b2c422d9154807526d","5a1c65ae0ada64906e44aebc307bb6444eb3d767feb96baea6116a05fcb1c26c","5522c276ab5033605c3afb218e2451063ad52f02a7561e8190855157732d438e","27da9754c20b488a648128951f3fadbdc56a0eeea0f5a1820f5809a5d008f068","cfbd1c9cadc7b4debc0c4807fccbde9d7ee49588f021e47d8d77cfdb22ef12c9","a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","d97766e9af30de9f96c7a5e8d7d6b3e39a269b8bd011083bd3745be7bd532b13","363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","fa2a8e2cc0bde051290d89f15a7b8f4db16d71cf67892be2bf4fca8cc2c3b338","1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","ea2de1a0ec4c9b8828154a971bfe38c47df2f5e9ec511f1a66adce665b9f04b0","c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","48f1a1b9f15770d9a64b51c596f9569f262fc7e67d7767595068a69539d32939","a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7",{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true},"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","f7a8f4bc1e8e786c6115970b8f3ed4797be48108de00b3552bf590706d3a5e8a","79cbed8c779049fdbdd856f1597f2e79be137b6ed44e66ead16ee8bf035d17da","1a8e6a4f31a5196144f35d0434e16369881d828c849d6a1c9290b6bde8807449","42a9ac86df0fa58634ea8a5f7f07b9b9c3243d82e306fb22d8a41639935a6c87","5766c26941ae00aa889335bcccc1ecb28271b774be92aede801354c9797074bb","3a19286bcc9303c9352c03d68bb4b63cecbf5c9b7848465847bb6c9ceafa1484","c573fef34c2e5cc5269fd9c95fe73a1eb9db17142f5d8f36ffe4a686378b8660","d97e30dd93590392fed422f2b27325d10ab007d034faaaf61e28e9ddc9d3825b","d1f8a829c5e90734bb47a1d1941b8819aeee6e81a2a772c3c0f70b30e3693fa9","be1dfacee25a14d79724ba21f1fde67f966b46e2128c68fed2e48c6e1e9822c5","19b3d0c212d241c237f79009b4cd0051e54971747fd89dc70a74f874d1192534","7daf4e4ddb3c93f922c56c836a33e53bd0f8172b68b1da70103b7330fd0f5406","672efa67dd818957bcef7b98f05e534901a0542292319097b543343e749d4ac2","7639642137f8329ef4a19410ce8d3e46910a76294df263f46b428fd61c79d033","3cae18f8e136a4122570a64862ef441372cb822a906b1ee25f1e13e10aba2783","42b4e53ea2ca9d4cff566336b781121a78db65049fafc73e464255534a4ecf48","445418dec131a34f848ab7a2dfb111ab8e854489d0f83c5d550d4ac948b45c1c","ea01929f899657fb0f6ba17b180e045d7053389cc28b9279524bf1ff2b8c164b","9b1b3740954bcc6a5e5360be7c5e7edfb13fb58cdae347430e0f9b239d63e434","8e69efd9afdfcd34d85adb6d8e71a5e13fea2a33c7019dd624cc7696772183a0","a7ebfe3e2c8f4fea5dac7ffbf6d00acee63c530de24d57cdeeed05530285ca26","82b4045609dc0918319f835de4f6cb6a931fd729602292921c443a732a6bb811","b9c6fc6c7b1296dd405f5dbd91ea1ae9f110de4cfab772c80c77d73fe33b2887","c0c0b22cefd1896b92d805556fcabda18720d24981b8cb74e08ffea1f73f96c2","b97e6411a3ee83e6f77760f0400d117313a980d05ec89f1e1a7502229e36d060","270418f8a6639be745d14bfd085e62685f24eaa6d6482aa9803bae8b8b93919a","4cb33d05ff168c1ca836d6d438f93040972af43fc09774876c4add2ad96d125f","707d01e4e7d69c672cbf82276bcdb6dd584b67da29e07fe5cba8c645ef4398ef","38104b9a37d0b9dc54be36ae43b1a32f9cfae34742743bfd7104cf1f39661225","47ff32ca9ab8474e89615b4bbe5f2264c2940fc12b86c4dc0a99659479517a6b","f892f85b4838f6a2ff1438d240dcf23a872d090794967c7f817a82ea8da1ad8e","cb498c53a9d35ac1cf9a3515f3835d48b4626a612cf7540c5bfb99542c9ab1a5","b86e64c48044bb73c6de7aa2cdf9295b2c104221e6a68b408225b283d1bcfda2","16173f5b3e68a373e7dfe6d00948549facc9947c9dbde813f1efe3a0f236ff6a","f457fc1b7583e1215393db13b95a186593660aad29706515ab7479869bc585e0","a11288edc8161f664148ea7d56101517e380335f5fa1a94408db86efce025bba","0fd70ca1eaef1e2dd6f48f16886df4838664821d992fd8076d07fc15e83c8498","ba30e6d2f1d20c707566cf485167331a10c539802a79040ced055b62a7aae53e","642eae3e9ec5997883f86dd7346d818f07d40fb83cc3530f0e52e232ffb4e631","29a6df727893a86807f4dc02116c31d9e6097139579ed6e8029b14c526cba027","537a2b61594512c5e75fad7e29d25c23922e27e5a1506eb4fce74fe858472a6e","311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","7c07838da165fd43759a54d2d490461315e977f9f37c046e0e357623c657fc42","b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","115c8691bd8fac390f6f6eef5b356543d716da7cffa4c2f70f288d56c5b06aeb","e91516e66f9fbf39c978a4092c16ffda3bb0b32158fca6def75aae9fab358153","abd4563a6a7668fa6f8f5e5a425a0900b80fc2309fec5186e2cae67f3ce92663","cb48f3011e72efef9d5a5b312f4a956f699b8d423bf9f2772724cdded496bd50","9aed07904079877252e6c0aedf1d2cf1935ed91d4abc16f726c76b61ea453919","6621af294bd4af8f3f9dd9bd99bd83ed8d2facd16faa6690a5b02d305abd98ab","5eada4495ab95470990b51f467c78d47aecfccc42365df4b1e7e88a2952af1a3","5fc0957ee8e15821ddb30a76e74e7984953fc35611a57fd703e624bade5836b9","40e9c2028b34c6c1e3281818d062f7008705254ee992d9857d051c603391e0f4","4720efe0341867600b139bca9a8fa7858b56b3a13a4a665bd98c77052ca64ea4","566fc645642572ec1ae3981e3c0a7dc976636976bd7a1d09740c23e8521496e5","66182e2432a30468eb5e2225063c391262b6a6732928bbc8ee794642b041dd87","11792ab82e35e82f93690040fd634689cad71e98ab56e0e31c3758662fc85736","3957b1244f49991b89f12cc45942c24f9c5927dc72677b105bb896d316f0454e","6c53c05df974ece61aca769df915345dc6d5b7649a01dc715b7da1809ce00a77","18c505381728b8cc6ea6986728403c1969f0d81216ed04163a867780af89f839","d121a48de03095d7dd5cd09d39e1a1c4892b520dad4c1d9c339c5d5008cfb536","f6d55e607f55be35a3c481b7685461a9acc1e27b893839218eb9313f7e85278c","b394ea95c82281d184ea83e8511bd1a43f78d6908eb34b536446d3eb08f9d47f","41edf4071b119fdf28b46a3c28c0845f2598bb8b196e7e4c9e01415403fdaea5","2bdf3bcf1a9771a288a783d1e8ee5d1d3126c11ddde26ae44864ab432192a6f6","603bafdacee4c8850ef5820f8642a817a3f0db6f76dda0474bcf3d17c2e15398","a10c79ab97c8a4f6074203094dba87bc736ca574ec480be1df6ec2c82d774573","801f049a9e74e941e8ca8add60492aaf4ab717a166248d355ded5753d80f9a85","70bba0a9c9c2ad7a042e134a840c4d8462bf0ad98e41c50ca52725ae47265eb9","f4dc28fbbba727722cb1fd82f51a7b9540fbe410ed04ddf35cab191d6aa2ba10","1f47dea3d5cfa752cfe10c48273dac3bb41cf07ec30d5801c9cb6cbd81823a94","79af5f8e385d7ca4a05f84a0a201c3e927d7a9a4b70c95f05314db8818d1734d","9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea","80b47d2c0a754d391234eee9504bef339252456fdfd7745ae771e191828ffaf7","72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee","dfc73114040523883452af0d14b19316f5ae4f9f44b131889d665feed7b0f02c","c6cbbca3099e385cc5bb4d68052d39ebf12504d1db8d8e8a035f7d24080fd42e","b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","68adf02128cad117e068f53ab334cbc730bcfeb7d658d8ce8118da6770b7e622","22945d276fc7ca24f1a4dd7fcc42d0c9c7357bee966f0d118b39ed6de97d858a","b606659dbd36a39d5d9324715fd7bf95d99a101ac885bf3cbb30337f8dbe09ab","7f1567b9dfb571a80556155a5bff1c946b23e74443466689bed24095604b3a9b","b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","51796c3726bf734b061fac41b479a660f9afccf50b8b493835e204723d23a84d","4db354d1dc4e2d96cd6fd8521c12cfcbb18a57df8e4be86b6c5123829557997d","da7183b9d834101b5b12d83dbcd4c98ac6d5d9cb7cb9cb66c0bc3b926f03ba45","88b881898e99e16c6c19c8125ea5a9b87d777466e8ac84653ac42c7cd7d5b464","2d2f9eed9f69b8e13e0dd86ab29205a78fbf1ba94c150cc59d58c6576fcca1ce","4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","964d3b8a65d1fa21515a3c7a9ed34898346f755e275c33e6fdfbeebb5f260744","1c77a5ab660e77952cc400cb9eba8f83cd93a045ca7abda544629e69c86150bd","04c72d6fa3275b08865357900ba7580a5c9e31692a12641a25665fed8411c8b8","fad2e326af305b648dd46cac96bf31c88f508823cfea877fae79a9b01dd4d524","45e0dd06a42ab62f879b1567438bce5b85eee9c6875685ca2c6ca10f978038b2","ad5976f5c289f6720287944a265db0761709be06d5331fc37a1b2999fa13bacc","c48268206ba168b8052c8d7fa692c631ae7aab106408c453e615da56f42bdb5f","63a76522cfc8f00ef401645579f8c0959bccd6e3118df66bae1fd45b709a9256","5870b02397c454afa21c294821b9496ebfb68c098c6ca8360bb1506398c39e45","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","f6e42784e93419b8acab053a096a80fc26e9f36bd3c7d10c6549f979968f5372","6f31e8019e7a6f406e786ea51841824dc75318b26f6eae602279342a4da9da6f","003b0535a82e82dd901927bf0092c81ad5867b84e273e0d98ab2d958df591060","2afb1699885c242563656dfac41072849720ab5c9cc3be87133413afb6cbf32c","2bdaf407163ca9ca9bc3c1d3fb78ad26b6bd2f7d68b04810fc28072925a95e9b","95347f256453f88602fcfc792b0ccea75f330aa22150bd95a6a8bb034a20ba14","dd2505eec07d3d341be4322f9f0380b5196f2b163944016227bb599dd89136e7","f9dfcd54e603db0684207424124c340a7eb0e61807ece0cdb51a8801c47c9155","ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","e93760553e478c36485ef4c548bcaed56514a45660636df1a355d647ce172e52","e50222c22db171b6e6f102dad414ba90b1ad3802537779e838bed86ff506cb28","4c36f9d0ffb25cf61b696b2777ba06d553d1b0cfd12d9eed8a1e3b1a50beb2f7","dd478451ffa00f4352bffe4f55b4531c8dec0edafb5777272089e5127dca808c","aedddd59fc4889fcdeb54a3b2a4943736f282c00db826ff710acb6bc91873b0d","5d9a5cc1712870f91f66850e7056e0d03b4046de5558a00e7190b6a9c2f7d432","0daf877cd2dcb81c0e39a96ee20262dc07ecc6f68d65cdb9cc6e6cf2f31d29c5","6206a6984c6210c7e02e8cec6c2417f6d2458ec36ac97b80ce9f894933a08082","d686fcb07a661fef0866137e450a487e710c233cb24f04d11426228162595d7e","8484a8762f074437ff6b9be1730dee2d607ff653ad5b432fe92d3889ec1b53bb","8e3f8a63b6af3fd917721cfe670eedf5aae7df605d0072c5997021eb6fbdae31","046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","abdf76f026d770eda24012e686a77c1c80860267b9e6e95fc26acbc180a1abfb","a6260e50e119a4ae143e080cb69501b76f70b55df4f40b3874ee785277003570","311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","c032a9b7dfc5f9b86ac5b1535fe72154dc48a7f89f76c5cb4e8a6ab4db203671","b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","23fa431c1549a548df67056c34a9ea3653b50266d77653a406ff5a67a7f861aa","174912359daff7bf7851731604bcb1aa25e6b56f2976797c5c2e31bc08bedfe8","a5a8a1bc2f458034182316db21717c4a25438517239ff2868ba8b6bfe455c505","60a0074289b6584a0d7003c2aa14d9ebd0027e423deb79e08031b7e708770c98","d62b7fb6c39357289ba064887935b0966cd99da5a3bb63afc1d6ea4f82ab23f1","7a8e7fc0c0b3c6f0344a6b54a56e928aba5b2bde679ca742acf67aeb67e6f9d2","2d232975df81628cb4d8a5236b8776976940cc4dd202698e498de5a4baeb7389","41b6a32ece86a9f7bdb5a6a9d47c580222f89afc5592654473ceed0035b49544","2f7551bc7fc68539406d169b81e73c085a0a52798efb3aef3266327246c28d29","6a3d24f24ae411600665f30a5d912af979c6fdf1c7ba8a9147235d5c105a9e83","96def9cb00debb7554a8019ae45310f375a65820bd8efa8e497a96e3416a5677","228eae4b5b181e59b73cbe0313eb5aa807f445122b21e365ca330bca2b22772e","956f962aca6becfca36766fe3af718b586829e1e4dd72f6b896057f75d4e9e83","f1f5af5650d4014cd999f2f86f7ab1a81779d966077fa4a723ea05069e07652c","9f7b583873c73cf01be845311d8b3e1715aecfa476a047d885804d837327d5db","6c9dfb8a6bc7ff438e84f19ff882a3d150b4b44e21d494133950f524997b02ee","f4a795af80885eba93957db860b4b82b4d23a76c5e122c2af5eeb9319094d9d1","3267bdd186e8d021bfa57a5314a256b9781e895bc025e426a2bdbe93b946cca0","31ed847fef6dc27c5224045deab8f99887ec76146cbc4f2ccb33f5b117fc9bf1","0df38983d84eccab44e2e6385bed5e1033b23228e484b80ff124d4049ca8e75a","7395857a8b73a1a5a14af625ec52c90f5b24bb0b163057d0f3e8a197ccc816ee","8b2e63aba58523a92dd15761096a03b5ebbd8983e2889b1f14265d9b2bb444b6","ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","6477c1bd38bbe6e8d74abebd01a073a7e45a89086a5a250e11725989a54a9a94","046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913","d43fd9837c2a0745faaf914d61220abafe305f48902ec2c5ad3e980a50cf9a6d","2837ced1e5d4ef88b4e1688fa62bc93b4248d1825667c87a83adaa51bc810cbf","f61af6ed7df59c72b7e2fc7e25a4500f5e9beafad5be038d349c5348a0727ba5","d81fe001f3fb987591406c054f7ff1f69bef86d121dc66c03b92c2dee63efa95","bf7ccda18d9cb9ed3047d96a6542fee3c3bc4e7a7822af40332c5c2f6e07c2b7","7bc71d52df9d8e5cc55218d347a91b1758b38341f9cbbac0b80057aa9d93daa6","7a1f7b274cf8a66b83fcf42153bde6f25f4eb4d7696d4a6b17e4a8878d128306","553dd4fef7d2b88e899646b66b2035e119f61b092d668ae0595a32c234f9b8b5","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","6215681982d007f5e9137ab0ca969c39048401e588bb0ad92018297c82551ea8","82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","1b831600aabe1c065830d303d087189e1ccfc93a0ef1882eb58a336ec1ce9f2f","75f191b59fe7ce72d1d7d11d0f329a193843f54af93182fc5a65c37d0a82c85a","cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","f6451dc56be14d37a8b88ea62a143ea398ab44558cd530fb2cdeeea42695c849","8ab77e5c32f1b6c6c1ee1b1b771c1a76a16be650559dc61320c8c82c99fc7cde","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","c269a12e83c5ffc0332b1f245008e4e621e483dd2f8b9b77fc6a664fcde4969d","aa8a056ee45ae741849d6e809ba85967b638070060e29c57d12d22b14baefeb6",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a97081289e7233ca2ef04a729036449fec4e88818fd7b7397930bd4d52294b18","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","ae8cd6af37275eac75f5369cdb5f01063bcf1f48d74cb434303ee50ec446acfe","2518830a2fda9c272ba48798d0e7b857037443b06594db8e42c87e86944ee9e4","95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","99ab49d4732fdc98cf5c495925e65e796544cb4086fe42afc235dfc02bcf2351","af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","d393adc32e520d4274bb4c3dfdcdb342b806a230b66ef0f82b35bffbc4aa2590","c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","3b6040253231d44e6778eb6861cc86c1758562e77783d21b7ecbc73322ded539","03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","318c82cc1e13da55e8c60d7e1bdc422a0679d675ad048b6d5022a47f57d23e3f",{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true},"ac3cce682a1eab96841ce9942ace8dd5649d2951007096555f4950479e4b8d56","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","a45efe8e9134ef64a5e3825944bc16fffaf130b82943844523d7a7f7c1fd91b2","969aa6509a994f4f3b09b99d5d29484d8d52a2522e133ef9b4e54af9a3e9feaf","f378e8538e407f997a0f88fcd1ecd93a096707cc909339ce4dba2e4ea03f1726","dcafd874e49d42fc215dcb4ef1e06511363c1f31979951081f3cd1908a05a636","fb73c98050a02b5849cc0fbb0d133ed55764b9c2a91f0ada2a25e74df68e6242","6002c44a8e8edbe4c79ce856c7bac3f8e69a2a45dc5bd6b229ca4ab323b924b3","b4d505a77e0829de5e5e23eaefb3d7989e0dbdfdb02ea69159df9f40017fb958","b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","f2242adef346a64818a1af914146f6f6046f16505e8a228c3bdb70185d4fdf4c","2f7508d8eeadcfde20b41ec13726c9ad26f04bbf830434e289c6010d5be28455","8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","9798f0d3693043da9dda9146b5e8622cd4476270e7aed8f3cb346b9b40a52103","fc7e8927b6fa6c81d68783afb314d01592c559e86bd36df334c37f40d0136acd","73f72caffdd55f189b5bf4e6b5ca273b4e26269d9aac859b9d30a5f799c095ad","d998e3e185cdf59dfc84043c41a42c02daaf3b7b21bee2db2d1f620a8e134f4c","06aa8858883e08f5136eb182d2f285ea615aeb464007f83c7a31ee1f8d9932b1","62d429aba0bbe459a04965d10c7637b74b319149f17874920a5ffb9fe3ba14d8","084a25e9ee73362fbb467873341b95721689513c14af6aa3067a1d95d6fafe08","4dbfeb147290c498e3aa56ea3198a6a109c5c0d9d7a4936a3138376302d89e7d","169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","5009c081fd8ca3fcd6f3adcd071a1c79a933a400532b897822aad0943688a1f1","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","c271193e426325d9acab2f99997bb9f5f2dff850ec8c7c011c5abafe5af83b5f","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","a3e12bcf2d196656ccd5b5d5344182967a2bdde0f63c9b955c36169ed02c3555","a016d2f6c0a2c15069ec69661ad37c86a450deb629ce96a592f15f01d3a5746e","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","4fddd9f6929421ce580b4583defbb3f78f5a4a3642bea5ecd3209bf652d8b507","f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","557e00bde9af85bcb3ab6b3a785904f028f9f1b65dba664f2fda44965acf8a78","397981908f102effb3cd483042076b593f3928264dbf06aec235a7c3e83da2b4",{"version":"ad78491e2a3ae1e59680dbab88607dd670d06a91b1d6c451fa895ad390513e8a","affectsGlobalScope":true},{"version":"1a9deb79dabc5153448e38589fbe38945fdad45f0f8442cd4d4e1da8bb879a76","affectsGlobalScope":true},"f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956",{"version":"c9cc4c881c910ce378659524d985d2b72b79029b0c473df5d4d3557b4cf6010a","affectsGlobalScope":true},"7fae4b2bc906f3e6840725cc24affaa4e684e6c9cc20254242c5df4bede5b6f6","2dd1d4cea14cead7a7fc9eec8f40593089dff0de8c0199458446143c9b8c4ea9","c0288f54de6f544706a3150c8b579b1a975870695c4be866f727ece6a16f3976","ec2c7505ede4bc3ee37cfe431cfd87e545f55f27fe15b0809c1a411765145615"],"options":{"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":99,"outDir":"./dist-es","removeComments":true,"rootDir":"./src","skipLibCheck":true,"strict":true,"target":7,"useUnknownInCatchVariables":false},"fileIdsList":[[103],[73,89,101,388],[75,103,391],[69,103],[72,75,95,103,395,396,397],[103,406],[95,103,410],[75,103],[64,103],[399,400,414],[72,75,103,408,409],[392,409,410,417],[72,73,103,419],[72,75,77,80,89,95,103],[72,98,103,436,437,439],[438],[72,103],[441,443,444,445,446,447,448,449,450,451,452,453],[441,442,444,445,446,447,448,449,450,451,452,453],[442,443,444,445,446,447,448,449,450,451,452,453],[441,442,443,445,446,447,448,449,450,451,452,453],[441,442,443,444,446,447,448,449,450,451,452,453],[441,442,443,444,445,447,448,449,450,451,452,453],[441,442,443,444,445,446,448,449,450,451,452,453],[441,442,443,444,445,446,447,449,450,451,452,453],[441,442,443,444,445,446,447,448,450,451,452,453],[441,442,443,444,445,446,447,448,449,451,452,453],[441,442,443,444,445,446,447,448,449,450,452,453],[441,442,443,444,445,446,447,448,449,450,451,453],[441,442,443,444,445,446,447,448,449,450,451,452],[473],[458],[462,463,464],[461],[463],[440,459,460,465,468,470,471,472],[460,466,467,473],[466,469],[460,461,466,473],[460,473],[454,455,456,457],[75,95,103,479,480],[485],[72,73,103],[75,89,103],[488,527],[488,512,527],[527],[488],[488,513,527],[488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526],[513,527],[73,418],[75,103,416],[529],[89,103],[72,75,77,89,92,95,101,103],[72,103,541],[425],[424,425],[424],[424,425,426,428,429,432,433,434,435],[425,429],[424,425,426,428,429,430,431],[424,429],[429,433],[425,426,427],[426],[424,425,429],[403],[400,401,402],[400,403],[63,75,80,92,95,98,399,401,403,404,405],[149,190,191,192,193,301],[149,187,190,191,192,193,241,243,244,249,252,281,283,300],[149,187,189,301],[190,191,192,193],[231],[149,231,241],[188,301,302,304,305],[187],[189],[187,188],[149,190,191,192,193,241],[149,187,231,241,243,301,309],[149,187,231,241,243,301,314],[149,243,301],[242],[369,370,371],[384],[149],[360],[149,245],[245,246,247,248],[245],[250,251],[149,250],[149,231],[353,356],[266],[354,355],[206,207],[201],[201,202,203,204,205],[194,195,196,197,198,199,200,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230],[149,373],[267,268,269,270],[149,269],[271,274,280],[272,273],[275],[149,277,278],[277,278,279],[276],[375,376,377],[282],[89,103,149],[334,335],[149,241],[307,308],[149,157,158],[159,160],[157,158,161,162,163],[149,291,293],[149,266],[293,294,295,296,297,298,299],[149,295],[149,292],[322,323,324],[149,323],[149,253,263,264],[149,262],[265],[311,312,313],[75,77,103,149,241],[234],[235],[149,237],[149,232,233],[232,233,234,236,237,238,239,240],[254,255,256,257,258,259,260,261],[149,258],[149,155],[149,164],[151],[149,172,173],[174],[149,150,151,156,165,166,167,168,169,170,171,175,176,177,178,179,180,181,182,183,184,185,186],[47,54,55,56],[54,57],[47,51],[47,57],[45,46,55,56,57,58],[89,103,105],[107],[52,53,54,109],[52,54],[111,113,114],[111,112],[116],[45],[48,118],[118],[118,119,120,121,122],[121],[49],[118,119,120],[51,52,54],[107,108],[124],[124,128],[124,125,128,129],[53,127],[104],[44,50],[75,77,103],[47],[47,132,133,134],[44,48,49,50,51,52,53,54,59,106,107,108,109,110,112,115,116,117,123,126,127,130,131,135,136,137,138,139,140,141,142,143,144,146,147,148],[45,48,49,53],[110],[126],[51,53,112],[51,52],[51,116],[53,107,108],[75,89,103,105,138],[52,109,143,144],[51,75,76,103,110,138,142,144,145],[51],[44],[342,343],[379],[338],[381],[149,187],[350],[149,284],[149,286],[284],[284,285,286,287,288,289,290],[152,153,154],[89,149],[345,346,347],[60],[62],[63,68],[64,72,73,80,89],[64,65,72,80],[66,96],[67,68,73,81],[68,89],[69,70,72,80],[70],[71,72],[72],[72,73,74,89,95],[73,74],[72,75,80,89,95],[72,73,75,76,80,89,92,95],[75,77,89,92,95],[60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],[72,78],[79,95],[70,72,80,89],[81],[82],[62,83],[84,94],[85],[86],[72,87],[87,88,96,98],[72,89],[90],[91],[80,89,92],[93],[80,94],[75,86,95],[96],[89,97],[98],[99],[72,74,89,95,98,100],[89,101],[149,187,319,326,327,328,331,364],[149,187,241,244,249,252,281,283,300,319,326,327,328,331,352,359,361,362,363],[149,187,241,319,321,325,330,364],[319,326,327,328,331],[231,281,319],[149,231,241,319],[319,320,364,365,366,367],[187,319],[319,321],[187,319,320],[149,187,241,319,320,321,326,327,328,329,331],[187,281,291,309,319,332,349,364,372,374,378,380,382],[319,364,383,385],[187,319,340,341,344,348,364],[187,266,281,291,300,314,319,332,333,336,337,339,349,351,364],[187,241,319,357,358]],"referencedMap":[[387,1],[389,2],[392,3],[393,4],[398,5],[407,6],[411,7],[391,8],[412,9],[415,10],[410,11],[418,12],[420,13],[421,14],[438,15],[439,16],[395,17],[442,18],[443,19],[441,20],[444,21],[445,22],[446,23],[447,24],[448,25],[449,26],[450,27],[451,28],[452,29],[453,30],[474,31],[459,32],[465,33],[462,34],[464,35],[473,36],[468,37],[470,38],[471,39],[472,40],[467,40],[469,40],[461,40],[457,32],[458,41],[456,32],[481,42],[486,43],[388,44],[397,45],[512,46],[513,47],[488,48],[491,48],[510,46],[511,46],[501,46],[500,49],[498,46],[493,46],[506,46],[504,46],[508,46],[492,46],[505,46],[509,46],[494,46],[495,46],[507,46],[489,46],[496,46],[497,46],[499,46],[503,46],[514,50],[502,46],[490,46],[527,51],[521,50],[523,52],[522,50],[515,50],[516,50],[518,50],[520,50],[524,52],[525,52],[517,52],[519,52],[528,53],[417,54],[530,55],[532,8],[533,56],[540,57],[542,58],[479,45],[426,59],[435,60],[425,61],[436,62],[431,63],[432,64],[430,65],[434,66],[428,67],[427,68],[433,69],[429,60],[404,70],[403,71],[401,72],[406,73],[302,74],[301,75],[190,76],[191,76],[192,76],[193,76],[304,77],[303,78],[242,79],[306,80],[188,81],[305,82],[189,83],[318,84],[310,85],[315,86],[316,85],[317,87],[243,88],[369,78],[370,78],[372,89],[371,78],[385,90],[384,78],[244,91],[361,92],[360,91],[362,91],[245,78],[246,93],[249,94],[247,95],[248,93],[250,91],[252,96],[251,97],[353,98],[357,99],[354,100],[356,101],[355,91],[194,91],[195,91],[196,91],[197,91],[198,91],[199,91],[200,91],[208,102],[209,91],[211,91],[212,91],[213,91],[214,91],[215,91],[202,103],[203,91],[201,91],[206,104],[204,103],[205,103],[231,105],[216,91],[217,91],[218,91],[219,91],[221,91],[222,91],[223,91],[224,91],[225,91],[226,91],[227,102],[228,91],[229,91],[207,91],[230,91],[374,106],[333,91],[271,107],[267,100],[268,100],[270,108],[269,91],[281,109],[272,100],[274,110],[273,91],[276,111],[279,112],[280,113],[277,114],[278,114],[375,91],[378,115],[376,91],[282,91],[283,116],[334,117],[336,118],[335,91],[307,119],[309,120],[308,91],[337,91],[363,91],[159,121],[161,122],[160,91],[162,121],[163,121],[164,123],[157,91],[294,124],[295,125],[300,126],[297,91],[298,91],[299,127],[293,128],[292,91],[322,91],[325,129],[323,91],[324,130],[265,131],[253,91],[263,132],[264,91],[266,133],[314,134],[311,135],[312,119],[313,91],[235,136],[236,137],[237,91],[238,138],[234,139],[232,91],[233,91],[241,140],[240,91],[262,141],[258,91],[259,91],[260,142],[261,91],[151,91],[156,143],[165,144],[167,145],[176,91],[172,91],[174,146],[175,147],[173,91],[187,148],[150,91],[57,149],[58,150],[55,151],[56,152],[59,153],[106,154],[108,155],[110,156],[109,157],[115,158],[113,159],[117,160],[48,161],[119,162],[120,163],[123,164],[122,165],[118,166],[121,167],[116,168],[124,169],[125,170],[129,171],[130,172],[128,173],[105,174],[51,175],[131,176],[132,177],[133,177],[135,178],[134,177],[149,179],[54,180],[136,181],[127,182],[138,183],[126,184],[139,185],[140,186],[141,154],[142,154],[143,187],[145,188],[146,189],[147,181],[50,190],[53,168],[148,191],[341,91],[344,192],[380,193],[339,194],[382,195],[381,196],[351,197],[350,196],[285,198],[287,199],[288,200],[291,201],[286,91],[153,117],[155,202],[154,203],[348,204],[60,205],[62,206],[63,207],[64,208],[65,209],[66,210],[67,211],[68,212],[69,213],[70,214],[71,215],[72,216],[73,217],[74,218],[75,219],[76,220],[77,221],[103,222],[78,223],[79,224],[80,225],[81,226],[82,227],[83,228],[84,229],[85,230],[86,231],[87,232],[88,233],[89,234],[90,235],[91,236],[92,237],[93,238],[94,239],[95,240],[96,241],[97,242],[98,243],[99,244],[100,245],[101,246],[365,247],[364,248],[331,249],[326,249],[327,249],[328,249],[366,250],[340,251],[358,252],[368,253],[320,254],[367,255],[321,256],[330,257],[383,258],[386,259],[349,260],[352,261],[359,262]],"exportedModulesMap":[[387,1],[389,2],[392,3],[393,4],[398,5],[407,6],[411,7],[391,8],[412,9],[415,10],[410,11],[418,12],[420,13],[421,14],[438,15],[439,16],[395,17],[442,18],[443,19],[441,20],[444,21],[445,22],[446,23],[447,24],[448,25],[449,26],[450,27],[451,28],[452,29],[453,30],[474,31],[459,32],[465,33],[462,34],[464,35],[473,36],[468,37],[470,38],[471,39],[472,40],[467,40],[469,40],[461,40],[457,32],[458,41],[456,32],[481,42],[486,43],[388,44],[397,45],[512,46],[513,47],[488,48],[491,48],[510,46],[511,46],[501,46],[500,49],[498,46],[493,46],[506,46],[504,46],[508,46],[492,46],[505,46],[509,46],[494,46],[495,46],[507,46],[489,46],[496,46],[497,46],[499,46],[503,46],[514,50],[502,46],[490,46],[527,51],[521,50],[523,52],[522,50],[515,50],[516,50],[518,50],[520,50],[524,52],[525,52],[517,52],[519,52],[528,53],[417,54],[530,55],[532,8],[533,56],[540,57],[542,58],[479,45],[426,59],[435,60],[425,61],[436,62],[431,63],[432,64],[430,65],[434,66],[428,67],[427,68],[433,69],[429,60],[404,70],[403,71],[401,72],[406,73],[302,74],[301,75],[190,76],[191,76],[192,76],[193,76],[304,77],[303,78],[242,79],[306,80],[188,81],[305,82],[189,83],[318,84],[310,85],[315,86],[316,85],[317,87],[243,88],[369,78],[370,78],[372,89],[371,78],[385,90],[384,78],[244,91],[361,92],[360,91],[362,91],[245,78],[246,93],[249,94],[247,95],[248,93],[250,91],[252,96],[251,97],[353,98],[357,99],[354,100],[356,101],[355,91],[194,91],[195,91],[196,91],[197,91],[198,91],[199,91],[200,91],[208,102],[209,91],[211,91],[212,91],[213,91],[214,91],[215,91],[202,103],[203,91],[201,91],[206,104],[204,103],[205,103],[231,105],[216,91],[217,91],[218,91],[219,91],[221,91],[222,91],[223,91],[224,91],[225,91],[226,91],[227,102],[228,91],[229,91],[207,91],[230,91],[374,106],[333,91],[271,107],[267,100],[268,100],[270,108],[269,91],[281,109],[272,100],[274,110],[273,91],[276,111],[279,112],[280,113],[277,114],[278,114],[375,91],[378,115],[376,91],[282,91],[283,116],[334,117],[336,118],[335,91],[307,119],[309,120],[308,91],[337,91],[363,91],[159,121],[161,122],[160,91],[162,121],[163,121],[164,123],[157,91],[294,124],[295,125],[300,126],[297,91],[298,91],[299,127],[293,128],[292,91],[322,91],[325,129],[323,91],[324,130],[265,131],[253,91],[263,132],[264,91],[266,133],[314,134],[311,135],[312,119],[313,91],[235,136],[236,137],[237,91],[238,138],[234,139],[232,91],[233,91],[241,140],[240,91],[262,141],[258,91],[259,91],[260,142],[261,91],[151,91],[156,143],[165,144],[167,145],[176,91],[172,91],[174,146],[175,147],[173,91],[187,148],[150,91],[57,149],[58,150],[55,151],[56,152],[59,153],[106,154],[108,155],[110,156],[109,157],[115,158],[113,159],[117,160],[48,161],[119,162],[120,163],[123,164],[122,165],[118,166],[121,167],[116,168],[124,169],[125,170],[129,171],[130,172],[128,173],[105,174],[51,175],[131,176],[132,177],[133,177],[135,178],[134,177],[149,179],[54,180],[136,181],[127,182],[138,183],[126,184],[139,185],[140,186],[141,154],[142,154],[143,187],[145,188],[146,189],[147,181],[50,190],[53,168],[148,191],[341,91],[344,192],[380,193],[339,194],[382,195],[381,196],[351,197],[350,196],[285,198],[287,199],[288,200],[291,201],[286,91],[153,117],[155,202],[154,203],[348,204],[60,205],[62,206],[63,207],[64,208],[65,209],[66,210],[67,211],[68,212],[69,213],[70,214],[71,215],[72,216],[73,217],[74,218],[75,219],[76,220],[77,221],[103,222],[78,223],[79,224],[80,225],[81,226],[82,227],[83,228],[84,229],[85,230],[86,231],[87,232],[88,233],[89,234],[90,235],[91,236],[92,237],[93,238],[94,239],[95,240],[96,241],[97,242],[98,243],[99,244],[100,245],[101,246],[365,247],[364,248],[331,249],[326,249],[327,249],[328,249],[366,250],[340,251],[358,252],[368,253],[320,254],[367,255],[321,256],[330,257],[383,258],[386,259],[349,260],[352,261],[359,262]],"semanticDiagnosticsPerFile":[387,389,390,392,393,394,398,407,411,391,412,413,414,415,399,410,418,420,419,396,421,422,423,438,439,400,395,440,442,443,441,444,445,446,447,448,449,450,451,452,453,474,459,465,463,462,464,473,468,470,471,472,466,467,469,461,460,455,454,457,458,456,475,416,476,477,478,480,481,482,483,484,486,409,408,388,487,397,485,512,513,488,491,510,511,501,500,498,493,506,504,508,492,505,509,494,495,507,489,496,497,499,503,514,502,490,527,526,521,523,522,515,516,518,520,524,525,517,519,528,417,530,529,531,532,533,534,437,536,535,537,538,539,540,542,541,402,479,426,435,424,425,436,431,432,430,434,428,427,433,429,404,403,401,405,406,302,301,190,191,192,193,304,303,242,306,188,305,189,318,310,315,316,317,243,369,370,372,371,385,384,244,361,360,362,245,246,249,247,248,250,252,251,353,357,354,356,355,194,195,196,197,198,199,200,208,209,210,211,212,213,214,215,202,203,201,206,204,205,231,216,217,218,219,220,221,222,223,224,225,226,227,228,229,207,230,373,374,333,271,267,268,270,269,281,272,274,273,276,275,279,280,277,278,375,378,376,377,282,283,334,336,335,307,309,308,337,363,159,161,160,162,163,164,157,158,294,295,296,300,297,298,299,293,292,322,325,323,324,265,253,263,264,266,314,311,312,313,235,236,237,238,234,232,233,241,239,240,254,255,256,257,262,258,259,260,261,151,156,165,166,167,168,169,170,171,176,177,172,174,175,173,178,179,187,180,150,181,182,183,184,185,186,44,45,46,57,58,55,56,59,106,108,110,109,111,115,113,114,107,117,48,119,120,123,122,118,121,116,124,125,129,130,128,105,51,131,132,133,47,135,134,149,49,54,136,137,52,127,138,126,139,140,141,142,143,112,145,146,104,147,144,50,53,148,341,342,344,343,379,380,338,339,382,381,351,350,285,289,287,290,288,291,286,284,152,153,155,154,345,348,346,347,60,62,63,64,65,66,67,68,69,70,71,72,73,74,61,102,75,76,77,103,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,329,319,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,332,365,364,331,326,327,328,366,340,358,368,320,367,321,330,383,386,349,352,359]},"version":"4.9.5"} \ No newline at end of file diff --git a/src.gen/@amzn/codewhisperer-streaming/tsconfig.types.tsbuildinfo b/src.gen/@amzn/codewhisperer-streaming/tsconfig.types.tsbuildinfo deleted file mode 100644 index b8d95d85b82..00000000000 --- a/src.gen/@amzn/codewhisperer-streaming/tsconfig.types.tsbuildinfo +++ /dev/null @@ -1 +0,0 @@ -{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/tslib/tslib.d.ts","./node_modules/@smithy/types/dist-types/abort.d.ts","./node_modules/@smithy/types/dist-types/auth/auth.d.ts","./node_modules/@smithy/types/dist-types/auth/httpapikeyauth.d.ts","./node_modules/@smithy/types/dist-types/identity/identity.d.ts","./node_modules/@smithy/types/dist-types/endpoint.d.ts","./node_modules/@smithy/types/dist-types/logger.d.ts","./node_modules/@smithy/types/dist-types/uri.d.ts","./node_modules/@smithy/types/dist-types/http.d.ts","./node_modules/@smithy/types/dist-types/response.d.ts","./node_modules/@smithy/types/dist-types/util.d.ts","./node_modules/@smithy/types/dist-types/middleware.d.ts","./node_modules/@smithy/types/dist-types/auth/httpsigner.d.ts","./node_modules/@smithy/types/dist-types/auth/identityproviderconfig.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthscheme.d.ts","./node_modules/@smithy/types/dist-types/auth/httpauthschemeprovider.d.ts","./node_modules/@smithy/types/dist-types/auth/index.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/globals.global.d.ts","./node_modules/@types/node/index.d.ts","./node_modules/@smithy/types/dist-types/transform/exact.d.ts","./node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts","./node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/crypto.d.ts","./node_modules/@smithy/types/dist-types/checksum.d.ts","./node_modules/@smithy/types/dist-types/command.d.ts","./node_modules/@smithy/types/dist-types/client.d.ts","./node_modules/@smithy/types/dist-types/connection/config.d.ts","./node_modules/@smithy/types/dist-types/transfer.d.ts","./node_modules/@smithy/types/dist-types/connection/manager.d.ts","./node_modules/@smithy/types/dist-types/connection/pool.d.ts","./node_modules/@smithy/types/dist-types/connection/index.d.ts","./node_modules/@smithy/types/dist-types/eventstream.d.ts","./node_modules/@smithy/types/dist-types/encode.d.ts","./node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","./node_modules/@smithy/types/dist-types/endpoints/endpointruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/errorruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/treeruleobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/rulesetobject.d.ts","./node_modules/@smithy/types/dist-types/endpoints/index.d.ts","./node_modules/@smithy/types/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultclientconfiguration.d.ts","./node_modules/@smithy/types/dist-types/shapes.d.ts","./node_modules/@smithy/types/dist-types/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/retry.d.ts","./node_modules/@smithy/types/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/types/dist-types/extensions/index.d.ts","./node_modules/@smithy/types/dist-types/http/httphandlerinitialization.d.ts","./node_modules/@smithy/types/dist-types/identity/apikeyidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@smithy/types/dist-types/identity/index.d.ts","./node_modules/@smithy/types/dist-types/pagination.d.ts","./node_modules/@smithy/types/dist-types/profile.d.ts","./node_modules/@smithy/types/dist-types/serde.d.ts","./node_modules/@smithy/types/dist-types/signature.d.ts","./node_modules/@smithy/types/dist-types/stream.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","./node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","./node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","./node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","./node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","./node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts","./node_modules/@smithy/types/dist-types/waiter.d.ts","./node_modules/@smithy/types/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/nooplogger.d.ts","./node_modules/@smithy/smithy-client/dist-types/client.d.ts","./node_modules/@smithy/util-stream/dist-types/blob/uint8arrayblobadapter.d.ts","./node_modules/@smithy/util-stream/dist-types/getawschunkedencodingstream.d.ts","./node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts","./node_modules/@smithy/util-stream/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/resolveendpointconfig.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getendpointfrominstructions.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toendpointv1.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/endpointmiddleware.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/getendpointplugin.d.ts","./node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/command.d.ts","./node_modules/@smithy/smithy-client/dist-types/constants.d.ts","./node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts","./node_modules/@smithy/smithy-client/dist-types/date-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts","./node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts","./node_modules/@smithy/smithy-client/dist-types/emitwarningifunsupportedversion.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/defaultextensionconfiguration.d.ts","./node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts","./node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts","./node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts","./node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts","./node_modules/@smithy/smithy-client/dist-types/lazy-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts","./node_modules/@smithy/smithy-client/dist-types/parse-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts","./node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts","./node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts","./node_modules/@smithy/smithy-client/dist-types/split-every.d.ts","./node_modules/@smithy/smithy-client/dist-types/index.d.ts","./src/models/codewhispererstreamingserviceexception.ts","./src/models/models_0.ts","./node_modules/@smithy/middleware-serde/dist-types/deserializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serdeplugin.d.ts","./node_modules/@smithy/middleware-serde/dist-types/serializermiddleware.d.ts","./node_modules/@smithy/middleware-serde/dist-types/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/httprequest.d.ts","./node_modules/@smithy/protocol-http/dist-types/httpresponse.d.ts","./node_modules/@smithy/protocol-http/dist-types/httphandler.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/httpextensionconfiguration.d.ts","./node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts","./node_modules/@smithy/protocol-http/dist-types/field.d.ts","./node_modules/@smithy/protocol-http/dist-types/fields.d.ts","./node_modules/@smithy/protocol-http/dist-types/isvalidhostname.d.ts","./node_modules/@smithy/protocol-http/dist-types/types.d.ts","./node_modules/@smithy/protocol-http/dist-types/index.d.ts","./src/commands/exportresultarchivecommand.ts","./src/commands/generateassistantresponsecommand.ts","./src/commands/generatetaskassistplancommand.ts","./node_modules/@types/uuid/index.d.ts","./src/protocols/aws_restjson1.ts","./src/commands/conversestreamcommand.ts","./package.json","./node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromenv.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/gethomedir.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getprofilename.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfilepath.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/getssotokenfromfile.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadsharedconfigfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/loadssosessiondata.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/parseknownfiles.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts","./node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromsharedconfigfiles.d.ts","./node_modules/@smithy/node-config-provider/dist-types/fromstatic.d.ts","./node_modules/@smithy/node-config-provider/dist-types/configloader.d.ts","./node_modules/@smithy/node-config-provider/dist-types/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusedualstackendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/nodeusefipsendpointconfigoptions.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolveendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/resolvecustomendpointsconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/endpointsconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@smithy/config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvarianttag.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/endpointvariant.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/partitionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/regionhash.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/getregioninfo.d.ts","./node_modules/@smithy/config-resolver/dist-types/regioninfo/index.d.ts","./node_modules/@smithy/config-resolver/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts","./node_modules/@smithy/hash-node/dist-types/index.d.ts","./node_modules/@smithy/util-retry/dist-types/types.d.ts","./node_modules/@smithy/util-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/configuredretrystrategy.d.ts","./node_modules/@smithy/util-retry/dist-types/defaultratelimiter.d.ts","./node_modules/@smithy/util-retry/dist-types/config.d.ts","./node_modules/@smithy/util-retry/dist-types/constants.d.ts","./node_modules/@smithy/util-retry/dist-types/index.d.ts","./node_modules/@smithy/middleware-retry/dist-types/types.d.ts","./node_modules/@smithy/middleware-retry/dist-types/standardretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/adaptiveretrystrategy.d.ts","./node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts","./node_modules/@smithy/middleware-retry/dist-types/delaydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/omitretryheadersmiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrydecider.d.ts","./node_modules/@smithy/middleware-retry/dist-types/retrymiddleware.d.ts","./node_modules/@smithy/middleware-retry/dist-types/index.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts","./node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts","./node_modules/@smithy/node-http-handler/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-node/dist-types/index.d.ts","./node_modules/@aws-sdk/types/dist-types/abort.d.ts","./node_modules/@aws-sdk/types/dist-types/auth.d.ts","./node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","./node_modules/@aws-sdk/types/dist-types/checksum.d.ts","./node_modules/@aws-sdk/types/dist-types/client.d.ts","./node_modules/@aws-sdk/types/dist-types/command.d.ts","./node_modules/@aws-sdk/types/dist-types/connection.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/identity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/anonymousidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/awscredentialidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/loginidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/tokenidentity.d.ts","./node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","./node_modules/@aws-sdk/types/dist-types/util.d.ts","./node_modules/@aws-sdk/types/dist-types/credentials.d.ts","./node_modules/@aws-sdk/types/dist-types/crypto.d.ts","./node_modules/@aws-sdk/types/dist-types/dns.d.ts","./node_modules/@aws-sdk/types/dist-types/encode.d.ts","./node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","./node_modules/@aws-sdk/types/dist-types/eventstream.d.ts","./node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/types/dist-types/http.d.ts","./node_modules/@aws-sdk/types/dist-types/logger.d.ts","./node_modules/@aws-sdk/types/dist-types/middleware.d.ts","./node_modules/@aws-sdk/types/dist-types/pagination.d.ts","./node_modules/@aws-sdk/types/dist-types/profile.d.ts","./node_modules/@aws-sdk/types/dist-types/request.d.ts","./node_modules/@aws-sdk/types/dist-types/response.d.ts","./node_modules/@aws-sdk/types/dist-types/retry.d.ts","./node_modules/@aws-sdk/types/dist-types/serde.d.ts","./node_modules/@aws-sdk/types/dist-types/shapes.d.ts","./node_modules/@aws-sdk/types/dist-types/signature.d.ts","./node_modules/@aws-sdk/types/dist-types/stream.d.ts","./node_modules/@aws-sdk/types/dist-types/token.d.ts","./node_modules/@aws-sdk/types/dist-types/transfer.d.ts","./node_modules/@aws-sdk/types/dist-types/uri.d.ts","./node_modules/@aws-sdk/types/dist-types/waiter.d.ts","./node_modules/@aws-sdk/types/dist-types/index.d.ts","./src/endpoints.ts","./node_modules/@smithy/url-parser/dist-types/index.d.ts","./node_modules/@smithy/util-base64/dist-types/frombase64.d.ts","./node_modules/@smithy/util-base64/dist-types/tobase64.d.ts","./node_modules/@smithy/util-base64/dist-types/index.d.ts","./node_modules/@smithy/util-utf8/dist-types/fromutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/touint8array.d.ts","./node_modules/@smithy/util-utf8/dist-types/toutf8.d.ts","./node_modules/@smithy/util-utf8/dist-types/index.d.ts","./src/runtimeconfig.shared.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts","./src/runtimeconfig.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/config.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/resolveregionconfig.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/regionconfig/index.d.ts","./node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts","./src/extensionconfiguration.ts","./src/runtimeextensions.ts","./node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/loggermiddleware.d.ts","./node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/gettokenplugin.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/resolvetokenconfig.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/tokenmiddleware.d.ts","./node_modules/@aws-sdk/middleware-token/dist-types/index.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts","./node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/eventstreamserdeconfig.d.ts","./node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts","./node_modules/@smithy/middleware-content-length/dist-types/index.d.ts","./src/codewhispererstreamingclient.ts","./src/codewhispererstreaming.ts","./src/commands/index.ts","./src/models/index.ts","./src/index.ts","./node_modules/@aws-crypto/sha256-browser/build/crossplatformsha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/ie11sha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/webcryptosha256.d.ts","./node_modules/@aws-crypto/sha256-browser/build/index.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts","./node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/eventstreammarshaller.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts","./node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts","./node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/calculatebodylength.d.ts","./node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/resolvedefaultsmodeconfig.d.ts","./node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts","./src/runtimeconfig.browser.ts","./node_modules/@aws-crypto/sha256-js/build/jssha256.d.ts","./node_modules/@aws-crypto/sha256-js/build/index.d.ts","./src/runtimeconfig.native.ts","../../../node_modules/@types/adm-zip/index.d.ts","../../../node_modules/@types/readdir-glob/index.d.ts","../../../node_modules/@types/archiver/index.d.ts","../../../node_modules/@types/async-lock/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/bytes/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/schema-utils/declarations/validationerror.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/circular-dependency-plugin/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/cross-spawn/index.d.ts","../../../node_modules/@types/diff/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/glob/node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/parse5/dist/common/html.d.ts","../../../node_modules/parse5/dist/common/token.d.ts","../../../node_modules/parse5/dist/common/error-codes.d.ts","../../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../../node_modules/parse5/dist/tokenizer/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../../node_modules/parse5/dist/parser/index.d.ts","../../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../../node_modules/parse5/dist/serializer/index.d.ts","../../../node_modules/parse5/dist/common/foreign-content.d.ts","../../../node_modules/parse5/dist/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/jsdom/base.d.ts","../../../node_modules/@types/jsdom/index.d.ts","../../../node_modules/@types/linkify-it/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdurl/encode.d.ts","../../../node_modules/@types/mdurl/decode.d.ts","../../../node_modules/@types/mdurl/parse.d.ts","../../../node_modules/@types/mdurl/format.d.ts","../../../node_modules/@types/mdurl/index.d.ts","../../../node_modules/@types/markdown-it/lib/common/utils.d.ts","../../../node_modules/@types/markdown-it/lib/token.d.ts","../../../node_modules/@types/markdown-it/lib/rules_inline/state_inline.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_label.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_destination.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/parse_link_title.d.ts","../../../node_modules/@types/markdown-it/lib/helpers/index.d.ts","../../../node_modules/@types/markdown-it/lib/ruler.d.ts","../../../node_modules/@types/markdown-it/lib/rules_block/state_block.d.ts","../../../node_modules/@types/markdown-it/lib/parser_block.d.ts","../../../node_modules/@types/markdown-it/lib/rules_core/state_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_core.d.ts","../../../node_modules/@types/markdown-it/lib/parser_inline.d.ts","../../../node_modules/@types/markdown-it/lib/renderer.d.ts","../../../node_modules/@types/markdown-it/lib/index.d.ts","../../../node_modules/@types/markdown-it/index.d.ts","../../../node_modules/@types/mime-types/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/prismjs/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/proper-lockfile/index.d.ts","../../../node_modules/@types/readline-sync/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sinon/node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/stream-buffers/index.d.ts","../../../node_modules/@types/tcp-port-used/index.d.ts","../../../node_modules/@types/vscode/index.d.ts","../../../node_modules/@types/vscode-webview/index.d.ts","../../../node_modules/@types/webidl-conversions/index.d.ts","../../../node_modules/@types/webpack-env/index.d.ts","../../../node_modules/@types/whatwg-url/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/xml2js/lib/processors.d.ts","../../../node_modules/@types/xml2js/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"4a882ffbb4ed09d9b7734f784aebb1dfe488d63725c40759165c5d9c657ca029","c55ae709f94155174ff63647edd2a7e3acbd02a2909aa2541569e8b8bac9fc40","530e5c7e4f74267b7800f1702cf0c576282296a960acbdb2960389b2b1d0875b","1c483cc60a58a0d4c9a068bdaa8d95933263e6017fbea33c9f99790cf870f0a8","07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","d5f1bbd44ba4f63d8a01fff5e1edc1c1fb50e9caa48a4fa48298a4485d6ff75c","4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","d12680e217215b37094868d491d00196e80f270ce47e5a4bc50269945ae5554d","396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","b7b881ced4ed4dee13d6e0ccdb2296f66663ba6b1419767271090b3ff3478bb9","06289b9873760aac77aed4035ea6c60b1e0879b8afe47a4530bc8522b9b804b1","63c36aa73242aa745fae813c40585111ead225394b0a0ba985c2683baa6b0ef9","3e7ffc7dd797e5d44d387d0892bc288480493e73dcab9832812907d1389e4a98","db011ec9589fd51995cbd0765673838e38e6485a6559163cc53dcf508b480909","e1a4253f0cca15c14516f52a2ad36c3520b140b5dfb3b3880a368cd75d45d6d9","159af954f2633a12fdee68605009e7e5b150dbeb6d70c46672fd41059c154d53","f5331cb9cc00970e4831e7f0de9688e04986bcde808cac10caa3e7005e203907",{"version":"d20bbe9029b614c171212c50c842fa7ddfc61a6bbc697710ac70e4f7f0c77d15","affectsGlobalScope":true},"a9d67f9ae6bb38f732c51d1081af6a0ac6cae5e122472cacc2d54db178013699","1296a364908ba9c646372edc18ee0e140d9a388956b0e9510eec906b19fa5b36","1c863a53fb796e962c4b3e54bc7b77fd04a518444263d307290ff04f619c275e","ff98afc32b01e580077faf85b60232b65c40df0c3ecaa765fabc347a639b4225",{"version":"30133f9ceaa46c9a20092c382fed7b8d09393cf1934392149ea8202991edb3ea","affectsGlobalScope":true},"30c05e45ec7e1247ba9b87ad2acfae4fda401737f0e8a59f78beda8a4e22b110","2da83cc57a94f7aee832f2a71e1a294d857492761c1f5db717ea42c1a22467bc","aa5cc73a5f548f5bc1b4279a730c03294dfa6e98bed228d4ed6322a4183b26ad","b3f1ac9fe3d18d6cd04ab1e67a5da8c33ceb47f26b47e67896a5b2f8293c8a32",{"version":"ca88e8b07c8186ef3180bf9b6b4456311ae41bf3fe5652c27a2a3feba04136b0","affectsGlobalScope":true},{"version":"592d937b7df1b74af7fa81656503fc268fee50f0e882178e851b667def34414b","affectsGlobalScope":true},"fdfdf2eab2bded61ee321ec88b8e083fe8d9fedad25a16ae040740869bc64e48","e8067fc8b0247f8b5ad781bd22f5dd19f6a39961ba60fa6fc13cfe9e624ca92f","842ef57ce3043fba0b0fb7eece785140af9d2381e4bed4f2744d3060352f2fd5","9095b6f13d9e48704b919d9b4162c48b04236a4ce664dc07549a435d8f4e612e","111b4c048fe89d25bb4d2a0646623ff4c456a313ed5bfb647b2262dda69a4ff8","f70f62f5f87ff8900090069554f79d9757f8e385322d0e26268463e27c098204","0932ed41e23d22fa5359f74805c687314e4b707b3428e52419d0fbefc0d66661","af07f4baaca7e5cf70cb8887e7d4f23d6bb0c0dd6ca1329c3d959ea749b7a14d","c80402af7b0420f57372ac99885f1ab058121db72418e43d25f440abda7bbe23","71aba6ce66e76ccfd3ba92b8b5c6658bad293f1313f012821c4bff1dd64ca278","17d944cab17bc9e32975250e8abe8073702f9493582d847805e446641bd7798f",{"version":"c6bfc70bbdee282436ee11e887cceaa5988ac4eec60d5eb9b3711748c811831a","affectsGlobalScope":true},"f9ca5159f56c1fe99cdfc5f942585de20695a2a343db8543383b239c050f6aa4","84634ac706042ac8ee3a1e141bcdee03621725ab55455dba878a5503c6c7e037","d796c62c3c91c22c331b7465be89d009459eb1eb689304c476275f48676eaf9e","51cbf03ad34c3e84d1998bd57d1fd8da333d66dd65904625d22dc01b751d99c7","c31bbdc27ef936061eaa9d423c5da7c5b439a4ff6b5f1b18f89b30cf119d5a56","2a4ae2a8f834858602089792c9e8bab00075f5c4b1708bd49c298a3e6c95a30c","71e29ae391229f876d8628987640c3c51c89a1c2fd980d1a72d69aeee4239f80","51c74d73649a4d788ed97b38bd55ebac57d85b35cbf4a0357e3382324e10bbe9","c8641524781fa803006a144fd3024d5273ab0c531d8a13bbeaa8c81d8241529f","73e218d8914afc428a24b7d1de42a2cb37f0be7ac1f5c32c4a66379572700b52",{"version":"56ff5262d76c01b3637ca82f9749d3ec0d70cf57d87964bf3e9ba4204241849e","affectsGlobalScope":true},"9e3a18040e5a95f61556e09c932393b49c3b21ce42abe0f4ed74b97173f320db","344922fac39b5732179b606e16781b354c160f0e9bd7f5921a0fdc9fe4ede1fb","c1449f51f9496bb23f33ee48ff590b815393ef560a9e80493614869fe50915da","87a49241df2b37e59f86619091dec2beb9ad8126d7649f0b0edb8fc99eca2499","07efd1f649e91967fada88d53ad64b61c1b2853d212f3eaffc946e7e13d03d67","6d79a0938f4b89c1c1fee2c3426754929173c8888fdfaab6b6d645269945f7bf",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"c6c0bd221bb1e94768e94218f8298e47633495529d60cae7d8da9374247a1cf5","a1b36a1f91a54daf2e89e12b834fa41fb7338bc044d1f08a80817efc93c99ee5","8bb4a5b632dd5a868f3271750895cb61b0e20cff82032d87e89288faee8dd6e2","0c1aabfd9fb1818afb2e798f91f669edafce59cd7e3423d25b1cfccfaaf2c403","017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","aee8faa433dde04beedb779b3329456a286a966462d666c138c19113ce78c79e","d620ec36bfc6f8ed6fdecbe036d55cec81637f32fd34dc7bb7e60eba1764e910","4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","fc9bdd9b3d8fb59c913cb3b8dea0d79b38dfe9331ef07e1c6dc6bf363f061ad6","e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","0c3c4ce6a1884610c99306719f59174d81808c69393c30119f9c2aef0449a2cb","219a25474e58a8161b242776856ec5f6960839b63e74809445e51cadbfc18096","5a0d1534e9493ae44b08b3055172da38370e2afd2bc3d4bea11f7be78344036f","6309a45fc3c03d3c4d56228e995d51974f53009a842374695b34f3607877e5a3","bef94eba81ae2c09059c0d9abdb1ae1b7090314f70550f3c8cd5d7ead4a4f212","48b787ad458be9b524fa5fdfef34f68798074132d4b8cfe6a6fe9c2bf334c532","37280465f8f9b2ea21d490979952b18b7f4d1f0d8fab2d627618fb2cfa1828e3","7281550c523596fd0fd36c6e19aa89075dac93144437ce48490da319b1f4d318","3f3f85dc43cb93c5a797f1ff0fa948d0e17843a443ae11a20cc032ccdf1b9997","020507cb67b96b0830a8636db03ae004181eee323ba33565cfe8d45aaedc4d1d","869010bc679df668137cb3b78a3cb8196e97acf285208a57f6156ceac894a2f7","bcae62618c23047e36d373f0feac5b13f09689e4cd08e788af13271dbe73a139","29a99d2e57b3e08a997cbc2397bdb251441a545306a74b95ffedc5f03d9bc6b7","5ae003688265a1547bbcb344bf0e26cb994149ac2c032756718e9039302dfac8","09e811cc1088d9ea3a7ddd7290f6a13767f56c85daf8c3374a06a45a08d55647","9da2c58a27fdce871c2eac09d5172b04248bb86ada9b0d10e8b3dfa8470b8dd3","5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","7b270dc53f35dd0b44bfa619ad4d351fffd512e14053c3688323ed007eda3f6d","6d4e928f232ade7221cffc6e4332ec935baa176415c9bf5d12111bb883a247d2","e86ad029224d4f2af3e188be8b5e9badf8c7083247572069bac7bd2193131fc7","057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","38aa389acf91d77db5a4f8e26e713ed53dc832ed5573def9cd20acd9ba97c1fe","e56784be93954f1f86d4dd3ac61b4c9727e75864baf123a1b584b970baed4ba0","f878779620c5178d45413b33c214419bb3df2945e703c35e1191188321e3633d","b9115605f72b65a662723020b2a1eb696c375a5803d6b401dc01fcbfe49ece90","151659e152d71986b8943b9943cd7fbe27a65874655081602de7ea24a0f66e9b","4d250e905299144850c6f8e74dad1ee892d847643bacf637e89adcce013f0700","5fca180ba7514e439b225ee5eb47e5cf9254a591095f93cf7ca298ce6264159b","ed3e176bc769725ebc1d93f1d6890fc3d977b9155ae5d03be96ec2d49b303370","7933769d84f5ae16546aef06537ca578f1c8d7cca0708452a00613050ac1f265","cc5c913c4716a0d1563b2a63a7c4dc2fa81b7d7bc58489c79896d69b27e978cd","f194cdeb1caaf80e625f4fad340a9434b2b83786028dcc5ea6f3c459cc7789a0","f8ce447bbda4f75da74cecd866cc1ff9bdde62189ac9d8dc14a16c48b3d702fa","236247fb33a56e1d43b097c000aaafcac8fea1e8bf38d1a64f13889b32c372d0","c7d30b164562b7ce99fcb53ab78f937cc845e003f6089d648351331921379994","fe2d1251f167d801a27f0dfb4e2c14f4f08bf2214d9784a1b8c310fdfdcdaaea","2a1182578228dc1faad14627859042d59ea5ab7e3ac69cb2a3453329aaaa3b83","dfa99386b9a1c1803eb20df3f6d3adc9e44effc84fa7c2ab6537ed1cb5cc8cfb","79b0d5635af72fb87a2a4b62334b0ab996ff7a1a14cfdb895702e74051917718","5f00b052713bfe8e9405df03a1bbe406006b30ec6b0c2ce57d207e70b48cf4e9","7abcae770f21794b5ffbc3186483c3dbcf8b0c8e37d3ef3ed6277ece5c5dd4be","3e642f39da9ad0a4cd16ccbd7f363b6b5ad5fa16a5c6d44753f98fc1e3be9d96","7f5a6eac3d3d334e2f2eba41f659e9618c06361958762869055e22219f341554","6f996f44113b76a9960d3fad280f4f671115c5e971356d1dbb4d1b000af8b3b3","67f2cd6e208e68fdfa366967d1949575df6ccf90c104fc9747b3f1bdb69ad55a","f99ab9dffe6281c9b6df9ae9d8584d18eabf2107572bbd8fa5c83c8afe531af8","4fc9939c86a7d80ab6a361264e5666336d37e080a00d831d9358ad83575267da","f4ba385eedea4d7be1feeeac05aaa05d6741d931251a85ab48e0610271d001ce","fc79932b9aa710f025b89bf8d8329d99080286e5e079a7d5a529236e9f5dd69e","6646d9075e3e0eedb02c9d03bffef54c8bbeb601d27eed46f143aba435bac37d","0dec72b4c5c4bb149750fef4fc26bdae8f410de941ee766c953f5ac77381d690","8f2644578a3273f43fd700803b89b842d2cd09c1fba2421db45737357e50f5b1","f5405fb679a467cb979f8744940b22b7bc3a0bcbe648c3910d98de3188d42a78","68969a0efd9030866f60c027aedbd600f66ea09e1c9290853cc24c2dcc92000f","639f94fe145a72ce520d3d7b9b3b6c9049624d90cbf85cff46fb47fb28d1d8fe","8327a51d574987a2b0f61ea40df4adddf959f67bc48c303d4b33d47ba3be114a","991fd5ebf9f30ffa17cae6faeae6a838d3d91bdcdd419bce358dc99b8e5b0ad0","51b4ab145645785c8ced29238192f870dbb98f1968a7c7ef2580cd40663b2940","589713fefe7282fd008a2672c5fbacc4a94f31138bae6a03db2c7b5453dc8788","786691c952fe3feac79aca8f0e7e580d95c19afc8a4c6f8765e99fb756d8d9d7","4c348f139d006057ce9384e60b4ee1ce06bee5c16e19ff70f293ad88d5893386","e9d33b2549b5779b6cad92cb6a370c6c106cc12dc80da1cc199e2cb3a715bf38","62b753ed351fba7e0f6b57103529ce90f2e11b949b8fc69c39464fe958535c25","21e1fa3e5c95c61161a1ea2d819972e3b7e916a58571f8f9828b8a6c32e641ea",{"version":"964d3b8a65d1fa21515a3c7a9ed34898346f755e275c33e6fdfbeebb5f260744","signature":"f78d0b00cf9700ef6fb82a5e52eeded028b18733bb8fdcc46a95ce598e83a292"},{"version":"1c77a5ab660e77952cc400cb9eba8f83cd93a045ca7abda544629e69c86150bd","signature":"24e26950b5a36dbc7f71e05a5f386c48933459e9322ca8b2c422d9154807526d"},"04c72d6fa3275b08865357900ba7580a5c9e31692a12641a25665fed8411c8b8","fad2e326af305b648dd46cac96bf31c88f508823cfea877fae79a9b01dd4d524","45e0dd06a42ab62f879b1567438bce5b85eee9c6875685ca2c6ca10f978038b2","ad5976f5c289f6720287944a265db0761709be06d5331fc37a1b2999fa13bacc","79cbed8c779049fdbdd856f1597f2e79be137b6ed44e66ead16ee8bf035d17da","1a8e6a4f31a5196144f35d0434e16369881d828c849d6a1c9290b6bde8807449","42a9ac86df0fa58634ea8a5f7f07b9b9c3243d82e306fb22d8a41639935a6c87","5766c26941ae00aa889335bcccc1ecb28271b774be92aede801354c9797074bb","3a19286bcc9303c9352c03d68bb4b63cecbf5c9b7848465847bb6c9ceafa1484","c573fef34c2e5cc5269fd9c95fe73a1eb9db17142f5d8f36ffe4a686378b8660","d97e30dd93590392fed422f2b27325d10ab007d034faaaf61e28e9ddc9d3825b","d1f8a829c5e90734bb47a1d1941b8819aeee6e81a2a772c3c0f70b30e3693fa9","be1dfacee25a14d79724ba21f1fde67f966b46e2128c68fed2e48c6e1e9822c5","19b3d0c212d241c237f79009b4cd0051e54971747fd89dc70a74f874d1192534",{"version":"c48268206ba168b8052c8d7fa692c631ae7aab106408c453e615da56f42bdb5f","signature":"5522c276ab5033605c3afb218e2451063ad52f02a7561e8190855157732d438e"},{"version":"63a76522cfc8f00ef401645579f8c0959bccd6e3118df66bae1fd45b709a9256","signature":"27da9754c20b488a648128951f3fadbdc56a0eeea0f5a1820f5809a5d008f068"},{"version":"5870b02397c454afa21c294821b9496ebfb68c098c6ca8360bb1506398c39e45","signature":"cfbd1c9cadc7b4debc0c4807fccbde9d7ee49588f021e47d8d77cfdb22ef12c9"},"fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e",{"version":"f6e42784e93419b8acab053a096a80fc26e9f36bd3c7d10c6549f979968f5372","signature":"2d2f9eed9f69b8e13e0dd86ab29205a78fbf1ba94c150cc59d58c6576fcca1ce"},{"version":"6f31e8019e7a6f406e786ea51841824dc75318b26f6eae602279342a4da9da6f","signature":"5a1c65ae0ada64906e44aebc307bb6444eb3d767feb96baea6116a05fcb1c26c"},"003b0535a82e82dd901927bf0092c81ad5867b84e273e0d98ab2d958df591060","2afb1699885c242563656dfac41072849720ab5c9cc3be87133413afb6cbf32c","b9c6fc6c7b1296dd405f5dbd91ea1ae9f110de4cfab772c80c77d73fe33b2887","c0c0b22cefd1896b92d805556fcabda18720d24981b8cb74e08ffea1f73f96c2","b97e6411a3ee83e6f77760f0400d117313a980d05ec89f1e1a7502229e36d060","270418f8a6639be745d14bfd085e62685f24eaa6d6482aa9803bae8b8b93919a","4cb33d05ff168c1ca836d6d438f93040972af43fc09774876c4add2ad96d125f","707d01e4e7d69c672cbf82276bcdb6dd584b67da29e07fe5cba8c645ef4398ef","38104b9a37d0b9dc54be36ae43b1a32f9cfae34742743bfd7104cf1f39661225","47ff32ca9ab8474e89615b4bbe5f2264c2940fc12b86c4dc0a99659479517a6b","f892f85b4838f6a2ff1438d240dcf23a872d090794967c7f817a82ea8da1ad8e","cb498c53a9d35ac1cf9a3515f3835d48b4626a612cf7540c5bfb99542c9ab1a5","b86e64c48044bb73c6de7aa2cdf9295b2c104221e6a68b408225b283d1bcfda2","16173f5b3e68a373e7dfe6d00948549facc9947c9dbde813f1efe3a0f236ff6a","f457fc1b7583e1215393db13b95a186593660aad29706515ab7479869bc585e0","a11288edc8161f664148ea7d56101517e380335f5fa1a94408db86efce025bba","0fd70ca1eaef1e2dd6f48f16886df4838664821d992fd8076d07fc15e83c8498","ba30e6d2f1d20c707566cf485167331a10c539802a79040ced055b62a7aae53e","642eae3e9ec5997883f86dd7346d818f07d40fb83cc3530f0e52e232ffb4e631","29a6df727893a86807f4dc02116c31d9e6097139579ed6e8029b14c526cba027","537a2b61594512c5e75fad7e29d25c23922e27e5a1506eb4fce74fe858472a6e","311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","7c07838da165fd43759a54d2d490461315e977f9f37c046e0e357623c657fc42","b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","115c8691bd8fac390f6f6eef5b356543d716da7cffa4c2f70f288d56c5b06aeb","e91516e66f9fbf39c978a4092c16ffda3bb0b32158fca6def75aae9fab358153","abd4563a6a7668fa6f8f5e5a425a0900b80fc2309fec5186e2cae67f3ce92663","cb48f3011e72efef9d5a5b312f4a956f699b8d423bf9f2772724cdded496bd50","9aed07904079877252e6c0aedf1d2cf1935ed91d4abc16f726c76b61ea453919","6621af294bd4af8f3f9dd9bd99bd83ed8d2facd16faa6690a5b02d305abd98ab","5eada4495ab95470990b51f467c78d47aecfccc42365df4b1e7e88a2952af1a3","2bdaf407163ca9ca9bc3c1d3fb78ad26b6bd2f7d68b04810fc28072925a95e9b","95347f256453f88602fcfc792b0ccea75f330aa22150bd95a6a8bb034a20ba14","dd2505eec07d3d341be4322f9f0380b5196f2b163944016227bb599dd89136e7","f9dfcd54e603db0684207424124c340a7eb0e61807ece0cdb51a8801c47c9155","4720efe0341867600b139bca9a8fa7858b56b3a13a4a665bd98c77052ca64ea4","566fc645642572ec1ae3981e3c0a7dc976636976bd7a1d09740c23e8521496e5","66182e2432a30468eb5e2225063c391262b6a6732928bbc8ee794642b041dd87","11792ab82e35e82f93690040fd634689cad71e98ab56e0e31c3758662fc85736","3957b1244f49991b89f12cc45942c24f9c5927dc72677b105bb896d316f0454e","6c53c05df974ece61aca769df915345dc6d5b7649a01dc715b7da1809ce00a77","18c505381728b8cc6ea6986728403c1969f0d81216ed04163a867780af89f839","d121a48de03095d7dd5cd09d39e1a1c4892b520dad4c1d9c339c5d5008cfb536","f6d55e607f55be35a3c481b7685461a9acc1e27b893839218eb9313f7e85278c","b394ea95c82281d184ea83e8511bd1a43f78d6908eb34b536446d3eb08f9d47f","41edf4071b119fdf28b46a3c28c0845f2598bb8b196e7e4c9e01415403fdaea5","2bdf3bcf1a9771a288a783d1e8ee5d1d3126c11ddde26ae44864ab432192a6f6","603bafdacee4c8850ef5820f8642a817a3f0db6f76dda0474bcf3d17c2e15398","a10c79ab97c8a4f6074203094dba87bc736ca574ec480be1df6ec2c82d774573","801f049a9e74e941e8ca8add60492aaf4ab717a166248d355ded5753d80f9a85","70bba0a9c9c2ad7a042e134a840c4d8462bf0ad98e41c50ca52725ae47265eb9","f4dc28fbbba727722cb1fd82f51a7b9540fbe410ed04ddf35cab191d6aa2ba10","b606659dbd36a39d5d9324715fd7bf95d99a101ac885bf3cbb30337f8dbe09ab","7f1567b9dfb571a80556155a5bff1c946b23e74443466689bed24095604b3a9b","b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","51796c3726bf734b061fac41b479a660f9afccf50b8b493835e204723d23a84d","ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","d97766e9af30de9f96c7a5e8d7d6b3e39a269b8bd011083bd3745be7bd532b13","363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","fa2a8e2cc0bde051290d89f15a7b8f4db16d71cf67892be2bf4fca8cc2c3b338","1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","ea2de1a0ec4c9b8828154a971bfe38c47df2f5e9ec511f1a66adce665b9f04b0","c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","48f1a1b9f15770d9a64b51c596f9569f262fc7e67d7767595068a69539d32939","a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7",{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true},"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","f7a8f4bc1e8e786c6115970b8f3ed4797be48108de00b3552bf590706d3a5e8a",{"version":"e93760553e478c36485ef4c548bcaed56514a45660636df1a355d647ce172e52","signature":"9b5a866899c3584a0f2b749561e34abc389ba8fa1e67a6cf32e15201390d17ea"},"e50222c22db171b6e6f102dad414ba90b1ad3802537779e838bed86ff506cb28","4c36f9d0ffb25cf61b696b2777ba06d553d1b0cfd12d9eed8a1e3b1a50beb2f7","dd478451ffa00f4352bffe4f55b4531c8dec0edafb5777272089e5127dca808c","aedddd59fc4889fcdeb54a3b2a4943736f282c00db826ff710acb6bc91873b0d","5d9a5cc1712870f91f66850e7056e0d03b4046de5558a00e7190b6a9c2f7d432","0daf877cd2dcb81c0e39a96ee20262dc07ecc6f68d65cdb9cc6e6cf2f31d29c5","6206a6984c6210c7e02e8cec6c2417f6d2458ec36ac97b80ce9f894933a08082","d686fcb07a661fef0866137e450a487e710c233cb24f04d11426228162595d7e",{"version":"8484a8762f074437ff6b9be1730dee2d607ff653ad5b432fe92d3889ec1b53bb","signature":"88b881898e99e16c6c19c8125ea5a9b87d777466e8ac84653ac42c7cd7d5b464"},"8e3f8a63b6af3fd917721cfe670eedf5aae7df605d0072c5997021eb6fbdae31","046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913",{"version":"abdf76f026d770eda24012e686a77c1c80860267b9e6e95fc26acbc180a1abfb","signature":"4db354d1dc4e2d96cd6fd8521c12cfcbb18a57df8e4be86b6c5123829557997d"},"a6260e50e119a4ae143e080cb69501b76f70b55df4f40b3874ee785277003570","311ca94091f3db783c0874128808d0f93ab5d7be82abc20ceb74afe275315d4a","c032a9b7dfc5f9b86ac5b1535fe72154dc48a7f89f76c5cb4e8a6ab4db203671","b311d973a0028d6bc19dfbaae891ad3f7c5057684eb105cfbeec992ab71fbc13","23fa431c1549a548df67056c34a9ea3653b50266d77653a406ff5a67a7f861aa",{"version":"174912359daff7bf7851731604bcb1aa25e6b56f2976797c5c2e31bc08bedfe8","signature":"7daf4e4ddb3c93f922c56c836a33e53bd0f8172b68b1da70103b7330fd0f5406"},{"version":"a5a8a1bc2f458034182316db21717c4a25438517239ff2868ba8b6bfe455c505","signature":"672efa67dd818957bcef7b98f05e534901a0542292319097b543343e749d4ac2"},"7639642137f8329ef4a19410ce8d3e46910a76294df263f46b428fd61c79d033","60a0074289b6584a0d7003c2aa14d9ebd0027e423deb79e08031b7e708770c98","d62b7fb6c39357289ba064887935b0966cd99da5a3bb63afc1d6ea4f82ab23f1","7a8e7fc0c0b3c6f0344a6b54a56e928aba5b2bde679ca742acf67aeb67e6f9d2","3cae18f8e136a4122570a64862ef441372cb822a906b1ee25f1e13e10aba2783","42b4e53ea2ca9d4cff566336b781121a78db65049fafc73e464255534a4ecf48","445418dec131a34f848ab7a2dfb111ab8e854489d0f83c5d550d4ac948b45c1c","ea01929f899657fb0f6ba17b180e045d7053389cc28b9279524bf1ff2b8c164b","9b1b3740954bcc6a5e5360be7c5e7edfb13fb58cdae347430e0f9b239d63e434","8e69efd9afdfcd34d85adb6d8e71a5e13fea2a33c7019dd624cc7696772183a0","a7ebfe3e2c8f4fea5dac7ffbf6d00acee63c530de24d57cdeeed05530285ca26","82b4045609dc0918319f835de4f6cb6a931fd729602292921c443a732a6bb811","5fc0957ee8e15821ddb30a76e74e7984953fc35611a57fd703e624bade5836b9","40e9c2028b34c6c1e3281818d062f7008705254ee992d9857d051c603391e0f4","2d232975df81628cb4d8a5236b8776976940cc4dd202698e498de5a4baeb7389",{"version":"41b6a32ece86a9f7bdb5a6a9d47c580222f89afc5592654473ceed0035b49544","signature":"1f47dea3d5cfa752cfe10c48273dac3bb41cf07ec30d5801c9cb6cbd81823a94"},{"version":"2f7551bc7fc68539406d169b81e73c085a0a52798efb3aef3266327246c28d29","signature":"79af5f8e385d7ca4a05f84a0a201c3e927d7a9a4b70c95f05314db8818d1734d"},{"version":"6a3d24f24ae411600665f30a5d912af979c6fdf1c7ba8a9147235d5c105a9e83","signature":"80b47d2c0a754d391234eee9504bef339252456fdfd7745ae771e191828ffaf7"},{"version":"96def9cb00debb7554a8019ae45310f375a65820bd8efa8e497a96e3416a5677","signature":"72be668a833df00839fc3be968c1f38e0503e7c867de89f2128bcc2883d90aee"},{"version":"228eae4b5b181e59b73cbe0313eb5aa807f445122b21e365ca330bca2b22772e","signature":"dfc73114040523883452af0d14b19316f5ae4f9f44b131889d665feed7b0f02c"},"956f962aca6becfca36766fe3af718b586829e1e4dd72f6b896057f75d4e9e83","f1f5af5650d4014cd999f2f86f7ab1a81779d966077fa4a723ea05069e07652c","9f7b583873c73cf01be845311d8b3e1715aecfa476a047d885804d837327d5db","6c9dfb8a6bc7ff438e84f19ff882a3d150b4b44e21d494133950f524997b02ee","f4a795af80885eba93957db860b4b82b4d23a76c5e122c2af5eeb9319094d9d1","3267bdd186e8d021bfa57a5314a256b9781e895bc025e426a2bdbe93b946cca0","31ed847fef6dc27c5224045deab8f99887ec76146cbc4f2ccb33f5b117fc9bf1","0df38983d84eccab44e2e6385bed5e1033b23228e484b80ff124d4049ca8e75a","7395857a8b73a1a5a14af625ec52c90f5b24bb0b163057d0f3e8a197ccc816ee","8b2e63aba58523a92dd15761096a03b5ebbd8983e2889b1f14265d9b2bb444b6","c6cbbca3099e385cc5bb4d68052d39ebf12504d1db8d8e8a035f7d24080fd42e","b2bd3c826e485974b79b943bfe62fb26b6302d1a28393d9741c3246f1b3cc9e5","68adf02128cad117e068f53ab334cbc730bcfeb7d658d8ce8118da6770b7e622","ccb0f78df0c3ce916cc29db5da9d3ebd990bb4b6b702da8f905c011625cf4620","970389b55e84f0e71594690cc83ce5127665027116afdc4b4b1b5f9704ce51c1","6477c1bd38bbe6e8d74abebd01a073a7e45a89086a5a250e11725989a54a9a94","046309738f81ee9afdeae004650ba606f4ad611c9ed3142e1b3942bdf40dd913",{"version":"d43fd9837c2a0745faaf914d61220abafe305f48902ec2c5ad3e980a50cf9a6d","signature":"22945d276fc7ca24f1a4dd7fcc42d0c9c7357bee966f0d118b39ed6de97d858a"},"2837ced1e5d4ef88b4e1688fa62bc93b4248d1825667c87a83adaa51bc810cbf","f61af6ed7df59c72b7e2fc7e25a4500f5e9beafad5be038d349c5348a0727ba5",{"version":"d81fe001f3fb987591406c054f7ff1f69bef86d121dc66c03b92c2dee63efa95","signature":"da7183b9d834101b5b12d83dbcd4c98ac6d5d9cb7cb9cb66c0bc3b926f03ba45"},"bf7ccda18d9cb9ed3047d96a6542fee3c3bc4e7a7822af40332c5c2f6e07c2b7","7bc71d52df9d8e5cc55218d347a91b1758b38341f9cbbac0b80057aa9d93daa6","7a1f7b274cf8a66b83fcf42153bde6f25f4eb4d7696d4a6b17e4a8878d128306","553dd4fef7d2b88e899646b66b2035e119f61b092d668ae0595a32c234f9b8b5","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","6215681982d007f5e9137ab0ca969c39048401e588bb0ad92018297c82551ea8","82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","1b831600aabe1c065830d303d087189e1ccfc93a0ef1882eb58a336ec1ce9f2f","75f191b59fe7ce72d1d7d11d0f329a193843f54af93182fc5a65c37d0a82c85a","cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","f6451dc56be14d37a8b88ea62a143ea398ab44558cd530fb2cdeeea42695c849","8ab77e5c32f1b6c6c1ee1b1b771c1a76a16be650559dc61320c8c82c99fc7cde","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","c269a12e83c5ffc0332b1f245008e4e621e483dd2f8b9b77fc6a664fcde4969d","aa8a056ee45ae741849d6e809ba85967b638070060e29c57d12d22b14baefeb6",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"a97081289e7233ca2ef04a729036449fec4e88818fd7b7397930bd4d52294b18","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","686e548ae30250d62532c8cacb43fccc922b693408371bd3503563c4a0f28eed","ba600bf38b5c1a5dffa1b99dd7a783549082bbba3b4fe9497eaaf5e4c1764b20","ae8cd6af37275eac75f5369cdb5f01063bcf1f48d74cb434303ee50ec446acfe","2518830a2fda9c272ba48798d0e7b857037443b06594db8e42c87e86944ee9e4","95c1cf650d16b197525b5bfdf8dd7abba0a49d99ddb12a4ba66466a8a6903e49","1fe0aabe758d56ad72495d6e6c7b6ae75619faaeaaf03f0ddf1948eea4cfac84","bbc57966c8c48ee78fd58aadb893784025be056ae538ae22d1e83c502a987e68","5e5d6f6697e378b0660b567866bf67d099d0ea754f8810c0dabe737805f5cf03","99ab49d4732fdc98cf5c495925e65e796544cb4086fe42afc235dfc02bcf2351","af8339d509c40da075088e544c28ed37b519876e5c4d36a48644ebfb3c6ae6c8","d393adc32e520d4274bb4c3dfdcdb342b806a230b66ef0f82b35bffbc4aa2590","c26af7eaedb4f710984634e419ab15e54e5bb99a0b3cae71188c2fff572276de","38b58ef018d0aeee42ef74c42978bb5805503233fdeeb82cd2aed2199fb0d013","3b6040253231d44e6778eb6861cc86c1758562e77783d21b7ecbc73322ded539","03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","318c82cc1e13da55e8c60d7e1bdc422a0679d675ad048b6d5022a47f57d23e3f",{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true},"ac3cce682a1eab96841ce9942ace8dd5649d2951007096555f4950479e4b8d56","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"f313731860257325f13351575f381fef333d4dfe30daf5a2e72f894208feea08","951b37f7d86f6012f09e6b35f1de57c69d75f16908cb0adaa56b93675ea0b853","a45efe8e9134ef64a5e3825944bc16fffaf130b82943844523d7a7f7c1fd91b2","969aa6509a994f4f3b09b99d5d29484d8d52a2522e133ef9b4e54af9a3e9feaf","f378e8538e407f997a0f88fcd1ecd93a096707cc909339ce4dba2e4ea03f1726","dcafd874e49d42fc215dcb4ef1e06511363c1f31979951081f3cd1908a05a636","fb73c98050a02b5849cc0fbb0d133ed55764b9c2a91f0ada2a25e74df68e6242","6002c44a8e8edbe4c79ce856c7bac3f8e69a2a45dc5bd6b229ca4ab323b924b3","b4d505a77e0829de5e5e23eaefb3d7989e0dbdfdb02ea69159df9f40017fb958","b8396e9024d554b611cbe31a024b176ba7116063d19354b5a02dccd8f0118989","f2242adef346a64818a1af914146f6f6046f16505e8a228c3bdb70185d4fdf4c","2f7508d8eeadcfde20b41ec13726c9ad26f04bbf830434e289c6010d5be28455","8b155c4757d197969553de3762c8d23d5866710301de41e1b66b97c9ed867003","9798f0d3693043da9dda9146b5e8622cd4476270e7aed8f3cb346b9b40a52103","fc7e8927b6fa6c81d68783afb314d01592c559e86bd36df334c37f40d0136acd","73f72caffdd55f189b5bf4e6b5ca273b4e26269d9aac859b9d30a5f799c095ad","d998e3e185cdf59dfc84043c41a42c02daaf3b7b21bee2db2d1f620a8e134f4c","06aa8858883e08f5136eb182d2f285ea615aeb464007f83c7a31ee1f8d9932b1","62d429aba0bbe459a04965d10c7637b74b319149f17874920a5ffb9fe3ba14d8","084a25e9ee73362fbb467873341b95721689513c14af6aa3067a1d95d6fafe08","4dbfeb147290c498e3aa56ea3198a6a109c5c0d9d7a4936a3138376302d89e7d","169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","5009c081fd8ca3fcd6f3adcd071a1c79a933a400532b897822aad0943688a1f1","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","c271193e426325d9acab2f99997bb9f5f2dff850ec8c7c011c5abafe5af83b5f","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","a3e12bcf2d196656ccd5b5d5344182967a2bdde0f63c9b955c36169ed02c3555","a016d2f6c0a2c15069ec69661ad37c86a450deb629ce96a592f15f01d3a5746e","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","b9f96255e1048ed2ea33ec553122716f0e57fc1c3ad778e9aa15f5b46547bd23","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","a1a261624efb3a00ff346b13580f70f3463b8cdcc58b60f5793ff11785d52cab","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","4fddd9f6929421ce580b4583defbb3f78f5a4a3642bea5ecd3209bf652d8b507","f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98","82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","557e00bde9af85bcb3ab6b3a785904f028f9f1b65dba664f2fda44965acf8a78","397981908f102effb3cd483042076b593f3928264dbf06aec235a7c3e83da2b4",{"version":"ad78491e2a3ae1e59680dbab88607dd670d06a91b1d6c451fa895ad390513e8a","affectsGlobalScope":true},{"version":"1a9deb79dabc5153448e38589fbe38945fdad45f0f8442cd4d4e1da8bb879a76","affectsGlobalScope":true},"f2f23fe34b735887db1d5597714ae37a6ffae530cafd6908c9d79d485667c956",{"version":"c9cc4c881c910ce378659524d985d2b72b79029b0c473df5d4d3557b4cf6010a","affectsGlobalScope":true},"7fae4b2bc906f3e6840725cc24affaa4e684e6c9cc20254242c5df4bede5b6f6","2dd1d4cea14cead7a7fc9eec8f40593089dff0de8c0199458446143c9b8c4ea9","c0288f54de6f544706a3150c8b579b1a975870695c4be866f727ece6a16f3976","ec2c7505ede4bc3ee37cfe431cfd87e545f55f27fe15b0809c1a411765145615"],"options":{"declaration":true,"declarationDir":"./dist-types","downlevelIteration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"importHelpers":true,"module":1,"removeComments":false,"rootDir":"./src","skipLibCheck":true,"strict":true,"target":7,"useUnknownInCatchVariables":false},"fileIdsList":[[104],[74,90,102,369],[76,104,372],[70,104],[73,76,96,104,376,377,378],[104,387],[96,104,391],[76,104],[65,104],[380,381,395],[73,76,104,389,390],[373,390,391,398],[73,74,104,400],[73,76,78,81,90,96,104],[73,99,104,417,418,420],[419],[73,104],[422,424,425,426,427,428,429,430,431,432,433,434],[422,423,425,426,427,428,429,430,431,432,433,434],[423,424,425,426,427,428,429,430,431,432,433,434],[422,423,424,426,427,428,429,430,431,432,433,434],[422,423,424,425,427,428,429,430,431,432,433,434],[422,423,424,425,426,428,429,430,431,432,433,434],[422,423,424,425,426,427,429,430,431,432,433,434],[422,423,424,425,426,427,428,430,431,432,433,434],[422,423,424,425,426,427,428,429,431,432,433,434],[422,423,424,425,426,427,428,429,430,432,433,434],[422,423,424,425,426,427,428,429,430,431,433,434],[422,423,424,425,426,427,428,429,430,431,432,434],[422,423,424,425,426,427,428,429,430,431,432,433],[454],[439],[443,444,445],[442],[444],[421,440,441,446,449,451,452,453],[441,447,448,454],[447,450],[441,442,447,454],[441,454],[435,436,437,438],[76,96,104,460,461],[466],[73,74,104],[76,90,104],[469,508],[469,493,508],[508],[469],[469,494,508],[469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507],[494,508],[74,399],[76,104,397],[510],[90,104],[73,76,78,90,93,96,102,104],[73,104,522],[406],[405,406],[405],[405,406,407,409,410,413,414,415,416],[406,410],[405,406,407,409,410,411,412],[405,410],[410,414],[406,407,408],[407],[405,406,410],[384],[381,382,383],[381,384],[64,76,81,93,96,99,380,382,384,385,386],[306],[347,348,349],[365],[150],[328],[150,331],[331,332,333,334],[331],[336,337],[150,336],[150,306],[320,323],[226],[321,322],[281,282],[276],[276,277,278,279,280],[269,270,271,272,273,274,275,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305],[150,351],[227,228,229,230],[150,229],[231,234,240],[232,233],[235],[150,237,238],[237,238,239],[236],[353,354,355],[339],[90,104,150],[242,243],[150,204],[357,358],[150,158,159],[160,161],[158,159,162,163,164],[150,253,255],[150,226],[255,256,257,258,259,260,261],[150,257],[150,254],[191,192,193],[150,192],[150,213,223,224],[150,222],[225],[263,264,265],[76,78,104,150,204],[197],[198],[150,200],[150,195,196],[195,196,197,199,200,201,202,203],[214,215,216,217,218,219,220,221],[150,218],[150,156],[150,165],[152],[150,173,174],[175],[150,151,152,157,166,167,168,169,170,171,172,176,177,178,179,180,181,182,183,184,185,186,187],[48,55,56,57],[55,58],[48,52],[48,58],[46,47,56,57,58,59],[90,104,106],[108],[53,54,55,110],[53,55],[112,114,115],[112,113],[117],[46],[49,119],[119],[119,120,121,122,123],[122],[50],[119,120,121],[52,53,55],[108,109],[125],[125,129],[125,126,129,130],[54,128],[105],[45,51],[76,78,104],[48],[48,133,134,135],[45,49,50,51,52,53,54,55,60,107,108,109,110,111,113,116,117,118,124,127,128,131,132,136,137,138,139,140,141,142,143,144,145,147,148,149],[46,49,50,54],[111],[127],[52,54,113],[52,53],[52,117],[54,108,109],[76,90,104,106,139],[53,110,144,145],[52,76,77,104,111,139,143,145,146],[52],[45],[309,310],[360],[267],[362],[150,188],[317],[150,246],[150,248],[246],[246,247,248,249,250,251,252],[153,154,155],[90,150],[312,313,314],[61],[63],[64,69],[65,73,74,81,90],[65,66,73,81],[67,97],[68,69,74,82],[69,90],[70,71,73,81],[71],[72,73],[73],[73,74,75,90,96],[74,75],[73,76,81,90,96],[73,74,76,77,81,90,93,96],[76,78,90,93,96],[61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103],[73,79],[80,96],[71,73,81,90],[82],[83],[63,84],[85,95],[86],[87],[73,88],[88,89,97,99],[73,90],[91],[92],[81,90,93],[94],[81,95],[76,87,96],[97],[90,98],[99],[100],[73,75,90,96,99,101],[90,102],[44,150,188,205,206,207,210,342],[44,150,188,204,205,206,207,210,241,262,319,326,327,329,330,335,338,340,341],[44,150,188,190,194,204,209,342],[44,205,206,207,210],[44,241,306],[44,150,204,306],[44,189,342,343,344,345],[44,188],[44,190],[44,188,189],[44,150,188,189,190,204,205,206,207,208,210],[44,188,211,241,253,316,342,350,352,356,359,361,363],[44,342,364,366],[44,188,307,308,311,315,342],[44,188,211,212,226,241,244,245,253,262,266,268,316,318,342],[44,188,204,324,325],[150,205,206,207,210,342],[150,188,204,205,206,207,210,241,262,326,327,335,338,340],[150,188,190,342],[205,206,207,210],[150,204,306],[189,342,343,344,345],[188],[190],[188,189],[150,204,205,206,207,210],[150,188,204,306,326,342,359],[150,326,342],[150,188,204,266,306,326,342],[325]],"referencedMap":[[368,1],[370,2],[373,3],[374,4],[379,5],[388,6],[392,7],[372,8],[393,9],[396,10],[391,11],[399,12],[401,13],[402,14],[419,15],[420,16],[376,17],[423,18],[424,19],[422,20],[425,21],[426,22],[427,23],[428,24],[429,25],[430,26],[431,27],[432,28],[433,29],[434,30],[455,31],[440,32],[446,33],[443,34],[445,35],[454,36],[449,37],[451,38],[452,39],[453,40],[448,40],[450,40],[442,40],[438,32],[439,41],[437,32],[462,42],[467,43],[369,44],[378,45],[493,46],[494,47],[469,48],[472,48],[491,46],[492,46],[482,46],[481,49],[479,46],[474,46],[487,46],[485,46],[489,46],[473,46],[486,46],[490,46],[475,46],[476,46],[488,46],[470,46],[477,46],[478,46],[480,46],[484,46],[495,50],[483,46],[471,46],[508,51],[502,50],[504,52],[503,50],[496,50],[497,50],[499,50],[501,50],[505,52],[506,52],[498,52],[500,52],[509,53],[398,54],[511,55],[513,8],[514,56],[521,57],[523,58],[460,45],[407,59],[416,60],[406,61],[417,62],[412,63],[413,64],[411,65],[415,66],[409,67],[408,68],[414,69],[410,60],[385,70],[384,71],[382,72],[387,73],[347,74],[348,74],[350,75],[349,74],[366,76],[365,74],[327,77],[329,78],[328,77],[330,77],[331,74],[332,79],[335,80],[333,81],[334,79],[336,77],[338,82],[337,83],[320,84],[324,85],[321,86],[323,87],[322,77],[269,77],[270,77],[271,77],[272,77],[273,77],[274,77],[275,77],[283,88],[284,77],[286,77],[287,77],[288,77],[289,77],[290,77],[277,89],[278,77],[276,77],[281,90],[279,89],[280,89],[306,91],[291,77],[292,77],[293,77],[294,77],[296,77],[297,77],[298,77],[299,77],[300,77],[301,77],[302,88],[303,77],[304,77],[282,77],[305,77],[352,92],[212,77],[231,93],[227,86],[228,86],[230,94],[229,77],[241,95],[232,86],[234,96],[233,77],[236,97],[239,98],[240,99],[237,100],[238,100],[353,77],[356,101],[354,77],[339,77],[340,102],[242,103],[244,104],[243,77],[357,105],[359,106],[358,77],[245,77],[341,77],[160,107],[162,108],[161,77],[163,107],[164,107],[165,109],[158,77],[256,110],[257,111],[262,112],[259,77],[260,77],[261,113],[255,114],[254,77],[191,77],[194,115],[192,77],[193,116],[225,117],[213,77],[223,118],[224,77],[226,119],[266,120],[263,121],[264,105],[265,77],[198,122],[199,123],[200,77],[201,124],[197,125],[195,77],[196,77],[204,126],[203,77],[222,127],[218,77],[219,77],[220,128],[221,77],[152,77],[157,129],[166,130],[168,131],[177,77],[173,77],[175,132],[176,133],[174,77],[188,134],[151,77],[58,135],[59,136],[56,137],[57,138],[60,139],[107,140],[109,141],[111,142],[110,143],[116,144],[114,145],[118,146],[49,147],[120,148],[121,149],[124,150],[123,151],[119,152],[122,153],[117,154],[125,155],[126,156],[130,157],[131,158],[129,159],[106,160],[52,161],[132,162],[133,163],[134,163],[136,164],[135,163],[150,165],[55,166],[137,167],[128,168],[139,169],[127,170],[140,171],[141,172],[142,140],[143,140],[144,173],[146,174],[147,175],[148,167],[51,176],[54,154],[149,177],[308,77],[311,178],[361,179],[268,180],[363,181],[362,182],[318,183],[317,182],[247,184],[249,185],[250,186],[253,187],[248,77],[154,103],[156,188],[155,189],[315,190],[61,191],[63,192],[64,193],[65,194],[66,195],[67,196],[68,197],[69,198],[70,199],[71,200],[72,201],[73,202],[74,203],[75,204],[76,205],[77,206],[78,207],[104,208],[79,209],[80,210],[81,211],[82,212],[83,213],[84,214],[85,215],[86,216],[87,217],[88,218],[89,219],[90,220],[91,221],[92,222],[93,223],[94,224],[95,225],[96,226],[97,227],[98,228],[99,229],[100,230],[101,231],[102,232],[343,233],[342,234],[210,235],[205,235],[206,235],[207,235],[344,236],[307,237],[325,238],[346,239],[189,240],[345,241],[190,242],[209,243],[364,244],[367,245],[316,246],[319,247],[326,248]],"exportedModulesMap":[[368,1],[370,2],[373,3],[374,4],[379,5],[388,6],[392,7],[372,8],[393,9],[396,10],[391,11],[399,12],[401,13],[402,14],[419,15],[420,16],[376,17],[423,18],[424,19],[422,20],[425,21],[426,22],[427,23],[428,24],[429,25],[430,26],[431,27],[432,28],[433,29],[434,30],[455,31],[440,32],[446,33],[443,34],[445,35],[454,36],[449,37],[451,38],[452,39],[453,40],[448,40],[450,40],[442,40],[438,32],[439,41],[437,32],[462,42],[467,43],[369,44],[378,45],[493,46],[494,47],[469,48],[472,48],[491,46],[492,46],[482,46],[481,49],[479,46],[474,46],[487,46],[485,46],[489,46],[473,46],[486,46],[490,46],[475,46],[476,46],[488,46],[470,46],[477,46],[478,46],[480,46],[484,46],[495,50],[483,46],[471,46],[508,51],[502,50],[504,52],[503,50],[496,50],[497,50],[499,50],[501,50],[505,52],[506,52],[498,52],[500,52],[509,53],[398,54],[511,55],[513,8],[514,56],[521,57],[523,58],[460,45],[407,59],[416,60],[406,61],[417,62],[412,63],[413,64],[411,65],[415,66],[409,67],[408,68],[414,69],[410,60],[385,70],[384,71],[382,72],[387,73],[347,74],[348,74],[350,75],[349,74],[366,76],[365,74],[327,77],[329,78],[328,77],[330,77],[331,74],[332,79],[335,80],[333,81],[334,79],[336,77],[338,82],[337,83],[320,84],[324,85],[321,86],[323,87],[322,77],[269,77],[270,77],[271,77],[272,77],[273,77],[274,77],[275,77],[283,88],[284,77],[286,77],[287,77],[288,77],[289,77],[290,77],[277,89],[278,77],[276,77],[281,90],[279,89],[280,89],[306,91],[291,77],[292,77],[293,77],[294,77],[296,77],[297,77],[298,77],[299,77],[300,77],[301,77],[302,88],[303,77],[304,77],[282,77],[305,77],[352,92],[212,77],[231,93],[227,86],[228,86],[230,94],[229,77],[241,95],[232,86],[234,96],[233,77],[236,97],[239,98],[240,99],[237,100],[238,100],[353,77],[356,101],[354,77],[339,77],[340,102],[242,103],[244,104],[243,77],[357,105],[359,106],[358,77],[245,77],[341,77],[160,107],[162,108],[161,77],[163,107],[164,107],[165,109],[158,77],[256,110],[257,111],[262,112],[259,77],[260,77],[261,113],[255,114],[254,77],[191,77],[194,115],[192,77],[193,116],[225,117],[213,77],[223,118],[224,77],[226,119],[266,120],[263,121],[264,105],[265,77],[198,122],[199,123],[200,77],[201,124],[197,125],[195,77],[196,77],[204,126],[203,77],[222,127],[218,77],[219,77],[220,128],[221,77],[152,77],[157,129],[166,130],[168,131],[177,77],[173,77],[175,132],[176,133],[174,77],[188,134],[151,77],[58,135],[59,136],[56,137],[57,138],[60,139],[107,140],[109,141],[111,142],[110,143],[116,144],[114,145],[118,146],[49,147],[120,148],[121,149],[124,150],[123,151],[119,152],[122,153],[117,154],[125,155],[126,156],[130,157],[131,158],[129,159],[106,160],[52,161],[132,162],[133,163],[134,163],[136,164],[135,163],[150,165],[55,166],[137,167],[128,168],[139,169],[127,170],[140,171],[141,172],[142,140],[143,140],[144,173],[146,174],[147,175],[148,167],[51,176],[54,154],[149,177],[308,77],[311,178],[361,179],[268,180],[363,181],[362,182],[318,183],[317,182],[247,184],[249,185],[250,186],[253,187],[248,77],[154,103],[156,188],[155,189],[315,190],[61,191],[63,192],[64,193],[65,194],[66,195],[67,196],[68,197],[69,198],[70,199],[71,200],[72,201],[73,202],[74,203],[75,204],[76,205],[77,206],[78,207],[104,208],[79,209],[80,210],[81,211],[82,212],[83,213],[84,214],[85,215],[86,216],[87,217],[88,218],[89,219],[90,220],[91,221],[92,222],[93,223],[94,224],[95,225],[96,226],[97,227],[98,228],[99,229],[100,230],[101,231],[102,232],[343,249],[342,250],[210,251],[205,251],[206,251],[207,251],[344,252],[307,74],[325,253],[346,254],[189,255],[345,256],[190,257],[209,258],[364,259],[367,259],[316,260],[319,261],[326,262]],"semanticDiagnosticsPerFile":[368,370,371,373,374,375,379,388,392,372,393,394,395,396,380,391,399,401,400,377,402,403,404,419,420,381,376,421,423,424,422,425,426,427,428,429,430,431,432,433,434,455,440,446,444,443,445,454,449,451,452,453,447,448,450,442,441,436,435,438,439,437,456,397,457,458,459,461,462,463,464,465,467,390,389,369,468,378,466,493,494,469,472,491,492,482,481,479,474,487,485,489,473,486,490,475,476,488,470,477,478,480,484,495,483,471,508,507,502,504,503,496,497,499,501,505,506,498,500,509,398,511,510,512,513,514,515,418,517,516,518,519,520,521,523,522,383,460,407,416,405,406,417,412,413,411,415,409,408,414,410,385,384,382,386,387,347,348,350,349,366,365,327,329,328,330,331,332,335,333,334,336,338,337,320,324,321,323,322,269,270,271,272,273,274,275,283,284,285,286,287,288,289,290,277,278,276,281,279,280,306,291,292,293,294,295,296,297,298,299,300,301,302,303,304,282,305,351,352,212,231,227,228,230,229,241,232,234,233,236,235,239,240,237,238,353,356,354,355,339,340,242,244,243,357,359,358,245,341,160,162,161,163,164,165,158,159,256,257,258,262,259,260,261,255,254,191,194,192,193,225,213,223,224,226,266,263,264,265,198,199,200,201,197,195,196,204,202,203,214,215,216,217,222,218,219,220,221,152,157,166,167,168,169,170,171,172,177,178,173,175,176,174,179,180,188,181,151,182,183,184,185,186,187,45,46,47,58,59,56,57,60,107,109,111,110,112,116,114,115,108,118,49,120,121,124,123,119,122,117,125,126,130,131,129,106,52,132,133,134,48,136,135,150,50,55,137,138,53,128,139,127,140,141,142,143,144,113,146,147,105,148,145,51,54,149,308,309,311,310,360,361,267,268,363,362,318,317,247,251,249,252,250,253,248,246,153,154,156,155,312,315,313,314,61,63,64,65,66,67,68,69,70,71,72,73,74,75,62,103,76,77,78,104,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,208,44,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,34,31,32,33,35,7,36,41,42,37,38,39,40,1,43,211,343,342,210,205,206,207,344,307,325,346,189,345,190,209,364,367,316,319,326]},"version":"4.9.5"} \ No newline at end of file From 25fa38ff0aacae949d3024465ac1d159e41b5ea9 Mon Sep 17 00:00:00 2001 From: Ahmed Ali Date: Fri, 25 Oct 2024 14:43:56 -0700 Subject: [PATCH 09/13] Address review comments --- docs/build.md | 20 ++++++++++++++---- packages/core/src/auth/activation.ts | 16 +++----------- packages/core/src/auth/utils.ts | 11 ++++++++++ .../service/recommendationHandler.ts | 16 ++++++++------ .../core/src/codewhisperer/util/authUtil.ts | 21 ++++++++----------- .../controllers/chat/controller.ts | 2 +- .../controllers/chat/messenger/messenger.ts | 4 ++-- packages/core/src/extensionNode.ts | 13 +----------- packages/toolkit/package.json | 2 +- 9 files changed, 54 insertions(+), 51 deletions(-) diff --git a/docs/build.md b/docs/build.md index 8c6de3a9e84..ffa9e1a8a81 100644 --- a/docs/build.md +++ b/docs/build.md @@ -1,11 +1,23 @@ # Build -The AmazonQ features rely on the `codewhisperer-streaming` service, who's client -is generated from the service's smithy models and placed in -`src.gen/@amzn/codewhisperer-streaming` (For more -information about this client and how it is generated, please see this +The AmazonQ features rely on the `codewhisperer-streaming` service, to support both Sigv4 and Bearer token modes of this service, +two clients are generated from the service's smithy models and placed in +`src.gen/@amzn/amazon-q-developer-streaming-client` and `src.gen/@amzn/codewhisperer-streaming` respectively (For more +information about these clients and how they are generated, please see this [quip document](https://quip-amazon.com/2dAWAvTIYXXr/Build-instructions-for-AWS-CodeWhisperer-Streaming-Typescript-client)). +## @amzn/amazon-q-developer-streaming client + +This client is a standalone npm project in typescript, and it is added to +the project as a workspace in the project's root `package.json` with the line `"workspaces": [ ..., "src.gen/@amzn/amazon-q-developer-streaming" ]`. +The client may be manually built using `npm run build -w @amzn/amazon-q-developer-streaming"`. +The `generateClients` run script ensures that this dependency is +built before the toolkit project itself. Workspaces are automatically ready to +be imported in the root toolkit project by their declared package.json name, +(`@amzn/amazon-q-developer-streaming` in this case). + +## @amzn/codewhisperer-streaming client + This client is a standalone npm project in typescript, and it is added to the project as a workspace in the project's root `package.json` with the line `"workspaces": [ ..., "src.gen/@amzn/codewhisperer-streaming" ]`. The client may be manually built using `npm run build -w @amzn/codewhisperer-streaming"`. diff --git a/packages/core/src/auth/activation.ts b/packages/core/src/auth/activation.ts index 48f3d483eca..76c92cb7284 100644 --- a/packages/core/src/auth/activation.ts +++ b/packages/core/src/auth/activation.ts @@ -8,22 +8,18 @@ import { Auth } from './auth' import { LoginManager } from './deprecated/loginManager' import { fromString } from './providers/credentials' import { getLogger } from '../shared/logger' -import { ExtensionUse } from './utils' +import { ExtensionUse, initializeCredentialsProviderManager } from './utils' import { isAmazonQ, isCloud9, isSageMaker } from '../shared/extensionUtilities' import { isInDevEnv } from '../shared/vscode/env' import { isWeb } from '../shared/extensionGlobals' -import { CredentialsProviderManager } from './providers/credentialsProviderManager' -import { SharedCredentialsProviderFactory } from './providers/sharedCredentialsProviderFactory' -import { Ec2CredentialsProvider } from './providers/ec2CredentialsProvider' -import { EcsCredentialsProvider } from './providers/ecsCredentialsProvider' -import { EnvVarsCredentialsProvider } from './providers/envVarsCredentialsProvider' interface SagemakerCookie { - authMode?: string + authMode?: 'Sso' | 'Iam' } export async function initialize(loginManager: LoginManager): Promise { if (isAmazonQ() && isSageMaker()) { + // The command `sagemaker.parseCookies` is registered in VS Code Sagemaker environment. const result = (await vscode.commands.executeCommand('sagemaker.parseCookies')) as SagemakerCookie if (result.authMode !== 'Sso') { initializeCredentialsProviderManager() @@ -41,12 +37,6 @@ export async function initialize(loginManager: LoginManager): Promise { await showManageConnectionsOnStartup() } -function initializeCredentialsProviderManager() { - const manager = CredentialsProviderManager.getInstance() - manager.addProviderFactory(new SharedCredentialsProviderFactory()) - manager.addProviders(new Ec2CredentialsProvider(), new EcsCredentialsProvider(), new EnvVarsCredentialsProvider()) -} - /** * Show the Manage Connections page when the extension starts up, if it should be shown. */ diff --git a/packages/core/src/auth/utils.ts b/packages/core/src/auth/utils.ts index ece410203b9..9b7eaca7592 100644 --- a/packages/core/src/auth/utils.ts +++ b/packages/core/src/auth/utils.ts @@ -52,6 +52,11 @@ import { ExtStartUpSources } from '../shared/telemetry' import { CommonAuthWebview } from '../login/webview/vue/backend' import { AuthSource } from '../login/webview/util' import { setContext } from '../shared/vscode/setContext' +import { CredentialsProviderManager } from './providers/credentialsProviderManager' +import { SharedCredentialsProviderFactory } from './providers/sharedCredentialsProviderFactory' +import { Ec2CredentialsProvider } from './providers/ec2CredentialsProvider' +import { EcsCredentialsProvider } from './providers/ecsCredentialsProvider' +import { EnvVarsCredentialsProvider } from './providers/envVarsCredentialsProvider' // iam-only excludes Builder ID and IAM Identity Center from the list of valid connections // TODO: Understand if "iam" should include these from the list at all @@ -731,3 +736,9 @@ export function getAuthFormIdsFromConnection(conn?: Connection): AuthFormId[] { return authIds } + +export function initializeCredentialsProviderManager() { + const manager = CredentialsProviderManager.getInstance() + manager.addProviderFactory(new SharedCredentialsProviderFactory()) + manager.addProviders(new Ec2CredentialsProvider(), new EcsCredentialsProvider(), new EnvVarsCredentialsProvider()) +} diff --git a/packages/core/src/codewhisperer/service/recommendationHandler.ts b/packages/core/src/codewhisperer/service/recommendationHandler.ts index 68a54add76d..5792a92142a 100644 --- a/packages/core/src/codewhisperer/service/recommendationHandler.ts +++ b/packages/core/src/codewhisperer/service/recommendationHandler.ts @@ -43,6 +43,7 @@ import { application } from '../util/codeWhispererApplication' import { openUrl } from '../../shared/utilities/vsCodeUtils' import { indent } from '../../shared/utilities/textUtilities' import path from 'path' +import { isIamConnection } from '../../auth/connection' /** * This class is for getRecommendation/listRecommendation API calls and its states @@ -157,7 +158,8 @@ export class RecommendationHandler { config: ConfigurationEntry, autoTriggerType?: CodewhispererAutomatedTriggerType, pagination: boolean = true, - page: number = 0 + page: number = 0, + generate: boolean = isIamConnection(AuthUtil.instance.conn) ): Promise { let invocationResult: 'Succeeded' | 'Failed' = 'Failed' let errorMessage: string | undefined = undefined @@ -184,7 +186,7 @@ export class RecommendationHandler { ).language session.taskType = await this.getTaskTypeFromEditorFileName(editor.document.fileName) - if (pagination) { + if (pagination && !generate) { if (page === 0) { session.requestContext = await EditorContext.buildListRecommendationRequest( editor as vscode.TextEditor, @@ -238,9 +240,10 @@ export class RecommendationHandler { startTime = performance.now() this.lastInvocationTime = startTime const mappedReq = runtimeLanguageContext.mapToRuntimeLanguage(request) - const codewhispererPromise = pagination - ? client.listRecommendations(mappedReq) - : client.generateRecommendations(mappedReq) + const codewhispererPromise = + pagination && !generate + ? client.listRecommendations(mappedReq) + : client.generateRecommendations(mappedReq) const resp = await this.getServerResponse(triggerType, config.isManualTriggerEnabled, codewhispererPromise) TelemetryHelper.instance.setSdkApiCallEndTime() latency = startTime !== 0 ? performance.now() - startTime : 0 @@ -332,7 +335,8 @@ export class RecommendationHandler { config, autoTriggerType, pagination, - page + page, + true ) } } diff --git a/packages/core/src/codewhisperer/util/authUtil.ts b/packages/core/src/codewhisperer/util/authUtil.ts index d7eb8166efd..e20bca62b5c 100644 --- a/packages/core/src/codewhisperer/util/authUtil.ts +++ b/packages/core/src/codewhisperer/util/authUtil.ts @@ -8,7 +8,7 @@ import * as localizedText from '../../shared/localizedText' import { Auth } from '../../auth/auth' import { ToolkitError, isNetworkError, tryRun } from '../../shared/errors' import { getSecondaryAuth, setScopes } from '../../auth/secondaryAuth' -import { isAmazonQ, isCloud9, isSageMaker } from '../../shared/extensionUtilities' +import { isCloud9, isSageMaker } from '../../shared/extensionUtilities' import { AmazonQPromptSettings } from '../../shared/settings' import { scopesCodeWhispererCore, @@ -50,6 +50,9 @@ export const codeWhispererCoreScopes = [...scopesCodeWhispererCore] export const codeWhispererChatScopes = [...codeWhispererCoreScopes, ...scopesCodeWhispererChat] export const amazonQScopes = [...codeWhispererChatScopes, ...scopesGumby, ...scopesFeatureDev] +function isValidSageMakerConnection(conn?: Connection) { + return isIamConnection(conn) || isSsoConnection(conn) +} /** * "Core" are the CW scopes that existed before the addition of new scopes * for Amazon Q. @@ -59,25 +62,19 @@ export const isValidCodeWhispererCoreConnection = (conn?: Connection): conn is C return isIamConnection(conn) } - if (isSageMaker()) { - return isIamConnection(conn) || (isSsoConnection(conn) && hasScopes(conn, codeWhispererCoreScopes)) - } - return ( + isValidSageMakerConnection(conn) || (isCloud9('codecatalyst') && isIamConnection(conn)) || (isSsoConnection(conn) && hasScopes(conn, codeWhispererCoreScopes)) ) } /** Superset that includes all of CodeWhisperer + Amazon Q */ export const isValidAmazonQConnection = (conn?: Connection): conn is Connection => { - if (isSageMaker() && isAmazonQ()) { - return isIamConnection(conn) || (isSsoConnection(conn) && hasScopes(conn, amazonQScopes)) - } - return ( - (isSsoConnection(conn) || isBuilderIdConnection(conn)) && - isValidCodeWhispererCoreConnection(conn) && - hasScopes(conn, amazonQScopes) + isValidSageMakerConnection(conn) || + ((isSsoConnection(conn) || isBuilderIdConnection(conn)) && + isValidCodeWhispererCoreConnection(conn) && + hasScopes(conn, amazonQScopes)) ) } diff --git a/packages/core/src/codewhispererChat/controllers/chat/controller.ts b/packages/core/src/codewhispererChat/controllers/chat/controller.ts index b98a5e7b91f..5f527ffa4ba 100644 --- a/packages/core/src/codewhispererChat/controllers/chat/controller.ts +++ b/packages/core/src/codewhispererChat/controllers/chat/controller.ts @@ -35,7 +35,7 @@ import { EditorContextCommand } from '../../commands/registerCommands' import { PromptsGenerator } from './prompts/promptsGenerator' import { TriggerEventsStorage } from '../../storages/triggerEvents' import { SendMessageRequest } from '@amzn/amazon-q-developer-streaming-client' -import { CodeWhispererStreamingServiceException, __MetadataBearer } from '@amzn/codewhisperer-streaming' +import { CodeWhispererStreamingServiceException } from '@amzn/codewhisperer-streaming' import { UserIntentRecognizer } from './userIntent/userIntentRecognizer' import { CWCTelemetryHelper, recordTelemetryChatRunCommand } from './telemetryHelper' import { CodeWhispererTracker } from '../../../codewhisperer/tracker/codewhispererTracker' diff --git a/packages/core/src/codewhispererChat/controllers/chat/messenger/messenger.ts b/packages/core/src/codewhispererChat/controllers/chat/messenger/messenger.ts index b431020867a..8702f99414e 100644 --- a/packages/core/src/codewhispererChat/controllers/chat/messenger/messenger.ts +++ b/packages/core/src/codewhispererChat/controllers/chat/messenger/messenger.ts @@ -18,7 +18,6 @@ import { ChatResponseStream as cwChatResponseStream, CodeWhispererStreamingServiceException, SupplementaryWebLink, - __MetadataBearer, } from '@amzn/codewhisperer-streaming' import { ChatMessage, ErrorMessage, FollowUp, Suggestion } from '../../../view/connector/connector' import { ChatSession } from '../../../clients/chat/v0/chat' @@ -39,7 +38,8 @@ import { extractAuthFollowUp } from '../../../../amazonq/util/authUtils' export type StaticTextResponseType = 'quick-action-help' | 'onboarding-help' | 'transform' | 'help' -export type MessengerResponseType = __MetadataBearer & { +export type MessengerResponseType = { + $metadata: { requestId?: string; httpStatusCode?: number } message?: AsyncIterable } diff --git a/packages/core/src/extensionNode.ts b/packages/core/src/extensionNode.ts index f5e580300e8..98f222578c8 100644 --- a/packages/core/src/extensionNode.ts +++ b/packages/core/src/extensionNode.ts @@ -9,8 +9,6 @@ import * as nls from 'vscode-nls' import * as codecatalyst from './codecatalyst/activation' import { activate as activateAwsExplorer } from './awsexplorer/activation' import { activate as activateCloudWatchLogs } from './awsService/cloudWatchLogs/activation' -import { CredentialsProviderManager } from './auth/providers/credentialsProviderManager' -import { SharedCredentialsProviderFactory } from './auth/providers/sharedCredentialsProviderFactory' import { activate as activateSchemas } from './eventSchemas/activation' import { activate as activateLambda } from './lambda/activation' import { activate as activateCloudFormationTemplateRegistry } from './shared/cloudformation/activation' @@ -39,9 +37,6 @@ import { activate as activateDev } from './dev/activation' import { activate as activateApplicationComposer } from './applicationcomposer/activation' import { activate as activateRedshift } from './awsService/redshift/activation' import { activate as activateIamPolicyChecks } from './awsService/accessanalyzer/activation' -import { Ec2CredentialsProvider } from './auth/providers/ec2CredentialsProvider' -import { EnvVarsCredentialsProvider } from './auth/providers/envVarsCredentialsProvider' -import { EcsCredentialsProvider } from './auth/providers/ecsCredentialsProvider' import { SchemaService } from './shared/schemas' import { AwsResourceManager } from './dynamicResources/awsResourceManager' import globals from './shared/extensionGlobals' @@ -55,7 +50,7 @@ import { learnMoreAmazonQCommand, qExtensionPageCommand, dismissQTree } from './ import { AuthUtil, codeWhispererCoreScopes, isPreviousQUser } from './codewhisperer/util/authUtil' import { installAmazonQExtension } from './codewhisperer/commands/basicCommands' import { isExtensionInstalled, VSCODE_EXTENSION_ID } from './shared/utilities' -import { ExtensionUse } from './auth/utils' +import { ExtensionUse, initializeCredentialsProviderManager } from './auth/utils' import { ExtStartUpSources } from './shared/telemetry' import { activate as activateThreatComposerEditor } from './threatComposer/activation' import { isSsoConnection, hasScopes } from './auth/connection' @@ -310,12 +305,6 @@ async function handleAmazonQInstall() { }) } -function initializeCredentialsProviderManager() { - const manager = CredentialsProviderManager.getInstance() - manager.addProviderFactory(new SharedCredentialsProviderFactory()) - manager.addProviders(new Ec2CredentialsProvider(), new EcsCredentialsProvider(), new EnvVarsCredentialsProvider()) -} - function recordToolkitInitialization(activationStartedOn: number, settingsValid: boolean, logger?: Logger) { try { const activationFinishedOn = Date.now() diff --git a/packages/toolkit/package.json b/packages/toolkit/package.json index f0d6b6af7f3..ce9f4deebee 100644 --- a/packages/toolkit/package.json +++ b/packages/toolkit/package.json @@ -709,7 +709,7 @@ { "id": "aws.amazonq.codewhisperer", "name": "%AWS.amazonq.codewhisperer.title%", - "when": "!isCloud9 && !isSageMaker && !aws.toolkit.amazonq.dismissed && !aws.explorer.showAuthView" + "when": "!isCloud9 && !aws.isSageMaker && !aws.toolkit.amazonq.dismissed && !aws.explorer.showAuthView" }, { "id": "aws.explorer", From 5279155596ff0dd454745ea9ba611029b1b427b2 Mon Sep 17 00:00:00 2001 From: Ahmed Ali Date: Fri, 25 Oct 2024 14:47:26 -0700 Subject: [PATCH 10/13] Add changelog --- .../Bug Fix-0ee7be24-b0f8-460b-a852-a2d08b6d289e.json | 2 +- .../Bug Fix-4db8f989-da38-467f-bf2e-598c9ed9af81.json | 4 ++++ .../Feature-a007f02d-d737-4429-9b7d-245aa30d879c.json | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 packages/amazonq/.changes/next-release/Bug Fix-4db8f989-da38-467f-bf2e-598c9ed9af81.json diff --git a/packages/amazonq/.changes/next-release/Bug Fix-0ee7be24-b0f8-460b-a852-a2d08b6d289e.json b/packages/amazonq/.changes/next-release/Bug Fix-0ee7be24-b0f8-460b-a852-a2d08b6d289e.json index 0cbf9c14961..a9b7cb49af5 100644 --- a/packages/amazonq/.changes/next-release/Bug Fix-0ee7be24-b0f8-460b-a852-a2d08b6d289e.json +++ b/packages/amazonq/.changes/next-release/Bug Fix-0ee7be24-b0f8-460b-a852-a2d08b6d289e.json @@ -1,4 +1,4 @@ { "type": "Bug Fix", - "description": "Use SM IAM Credentials for Code Completion" + "description": "Use Sagemaker environment IAM Credentials for Code Completion when they're available" } diff --git a/packages/amazonq/.changes/next-release/Bug Fix-4db8f989-da38-467f-bf2e-598c9ed9af81.json b/packages/amazonq/.changes/next-release/Bug Fix-4db8f989-da38-467f-bf2e-598c9ed9af81.json new file mode 100644 index 00000000000..d35095088b0 --- /dev/null +++ b/packages/amazonq/.changes/next-release/Bug Fix-4db8f989-da38-467f-bf2e-598c9ed9af81.json @@ -0,0 +1,4 @@ +{ + "type": "Bug Fix", + "description": "Inline: Code completion not working for Sagemaker Pro Tier users." +} diff --git a/packages/amazonq/.changes/next-release/Feature-a007f02d-d737-4429-9b7d-245aa30d879c.json b/packages/amazonq/.changes/next-release/Feature-a007f02d-d737-4429-9b7d-245aa30d879c.json index 383689e932d..ebd7ff494a4 100644 --- a/packages/amazonq/.changes/next-release/Feature-a007f02d-d737-4429-9b7d-245aa30d879c.json +++ b/packages/amazonq/.changes/next-release/Feature-a007f02d-d737-4429-9b7d-245aa30d879c.json @@ -1,4 +1,4 @@ { "type": "Feature", - "description": "Enable Free Tier Chat for IAM users & Fix code completion for Sagemaker Pro Tier users" + "description": "Enable Free Tier Chat for IAM users" } From 9771ea082eb7fab6e96d19d7a37d30ca344e32c0 Mon Sep 17 00:00:00 2001 From: Ahmed Ali Date: Mon, 28 Oct 2024 11:15:02 -0700 Subject: [PATCH 11/13] Change sagemaker connection validation logic --- packages/core/src/codewhisperer/util/authUtil.ts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/packages/core/src/codewhisperer/util/authUtil.ts b/packages/core/src/codewhisperer/util/authUtil.ts index e20bca62b5c..ed2dfd66e6c 100644 --- a/packages/core/src/codewhisperer/util/authUtil.ts +++ b/packages/core/src/codewhisperer/util/authUtil.ts @@ -50,9 +50,6 @@ export const codeWhispererCoreScopes = [...scopesCodeWhispererCore] export const codeWhispererChatScopes = [...codeWhispererCoreScopes, ...scopesCodeWhispererChat] export const amazonQScopes = [...codeWhispererChatScopes, ...scopesGumby, ...scopesFeatureDev] -function isValidSageMakerConnection(conn?: Connection) { - return isIamConnection(conn) || isSsoConnection(conn) -} /** * "Core" are the CW scopes that existed before the addition of new scopes * for Amazon Q. @@ -63,7 +60,7 @@ export const isValidCodeWhispererCoreConnection = (conn?: Connection): conn is C } return ( - isValidSageMakerConnection(conn) || + (isSageMaker() && isIamConnection(conn)) || (isCloud9('codecatalyst') && isIamConnection(conn)) || (isSsoConnection(conn) && hasScopes(conn, codeWhispererCoreScopes)) ) @@ -71,7 +68,7 @@ export const isValidCodeWhispererCoreConnection = (conn?: Connection): conn is C /** Superset that includes all of CodeWhisperer + Amazon Q */ export const isValidAmazonQConnection = (conn?: Connection): conn is Connection => { return ( - isValidSageMakerConnection(conn) || + (isSageMaker() && isIamConnection(conn)) || ((isSsoConnection(conn) || isBuilderIdConnection(conn)) && isValidCodeWhispererCoreConnection(conn) && hasScopes(conn, amazonQScopes)) @@ -444,6 +441,10 @@ export class AuthUtil { return buildFeatureAuthState(AuthStates.disconnected) } + if (!isSsoConnection(conn) && !isSageMaker()) { + throw new ToolkitError(`Connection "${conn.id}" is not a valid type: ${conn.type}`) + } + // default to expired to indicate reauth is needed if unmodified const state: FeatureAuthState = buildFeatureAuthState(AuthStates.expired) From 87fcf1c5ad25f25b3bbaf36890b092b07512d345 Mon Sep 17 00:00:00 2001 From: Ahmed Ali Date: Mon, 28 Oct 2024 15:33:18 -0700 Subject: [PATCH 12/13] Disable /transform & /dev commands for sagemaker users --- .../Bug Fix-cbd8faed-6375-40e7-9f82-0e402e8fc0ad.json | 4 ++++ packages/core/src/amazonq/index.ts | 5 +++-- .../src/amazonq/webview/generators/webViewContent.ts | 6 ++++-- packages/core/src/amazonq/webview/ui/main.ts | 6 +++++- .../core/src/amazonq/webview/ui/messages/controller.ts | 2 ++ .../src/amazonq/webview/ui/quickActions/generator.ts | 9 ++++++--- .../core/src/amazonq/webview/ui/quickActions/handler.ts | 2 ++ packages/core/src/amazonq/webview/ui/tabs/generator.ts | 2 ++ 8 files changed, 28 insertions(+), 8 deletions(-) create mode 100644 packages/amazonq/.changes/next-release/Bug Fix-cbd8faed-6375-40e7-9f82-0e402e8fc0ad.json diff --git a/packages/amazonq/.changes/next-release/Bug Fix-cbd8faed-6375-40e7-9f82-0e402e8fc0ad.json b/packages/amazonq/.changes/next-release/Bug Fix-cbd8faed-6375-40e7-9f82-0e402e8fc0ad.json new file mode 100644 index 00000000000..296c2b588e9 --- /dev/null +++ b/packages/amazonq/.changes/next-release/Bug Fix-cbd8faed-6375-40e7-9f82-0e402e8fc0ad.json @@ -0,0 +1,4 @@ +{ + "type": "Bug Fix", + "description": "Disable /transform and /dev commands for sagemaker users as they're not supported" +} diff --git a/packages/core/src/amazonq/index.ts b/packages/core/src/amazonq/index.ts index d015bfb6122..a08748b2b98 100644 --- a/packages/core/src/amazonq/index.ts +++ b/packages/core/src/amazonq/index.ts @@ -42,11 +42,12 @@ import { FeatureContext } from '../shared' export function createMynahUI( ideApi: any, amazonQEnabled: boolean, - featureConfigsSerialized: [string, FeatureContext][] + featureConfigsSerialized: [string, FeatureContext][], + disabledCommands?: string[] ) { if (typeof window !== 'undefined') { const mynahUI = require('./webview/ui/main') - return mynahUI.createMynahUI(ideApi, amazonQEnabled, featureConfigsSerialized) + return mynahUI.createMynahUI(ideApi, amazonQEnabled, featureConfigsSerialized, disabledCommands) } throw new Error('Not implemented for node') } diff --git a/packages/core/src/amazonq/webview/generators/webViewContent.ts b/packages/core/src/amazonq/webview/generators/webViewContent.ts index 0d67fffbec4..da1492f467f 100644 --- a/packages/core/src/amazonq/webview/generators/webViewContent.ts +++ b/packages/core/src/amazonq/webview/generators/webViewContent.ts @@ -6,7 +6,7 @@ import path from 'path' import { Uri, Webview } from 'vscode' import { AuthUtil } from '../../../codewhisperer/util/authUtil' -import { FeatureConfigProvider, FeatureContext, globals } from '../../../shared' +import { FeatureConfigProvider, FeatureContext, globals, isSageMaker } from '../../../shared' export class WebViewContentGenerator { private async generateFeatureConfigsData(): Promise { @@ -77,6 +77,8 @@ export class WebViewContentGenerator { // Fetch featureConfigs and use it within the script const featureConfigsString = await this.generateFeatureConfigsData() + const disabledCommandsString = isSageMaker() ? `['/dev', '/transform']` : '[]' + return ` ${cssLinks} @@ -84,7 +86,7 @@ export class WebViewContentGenerator { const init = () => { createMynahUI(acquireVsCodeApi(), ${ (await AuthUtil.instance.getChatAuthState()).amazonQ === 'connected' - },${featureConfigsString}); + },${featureConfigsString},${disabledCommandsString}); } ` diff --git a/packages/core/src/amazonq/webview/ui/main.ts b/packages/core/src/amazonq/webview/ui/main.ts index 84e76273a59..e59adadd160 100644 --- a/packages/core/src/amazonq/webview/ui/main.ts +++ b/packages/core/src/amazonq/webview/ui/main.ts @@ -31,7 +31,8 @@ import { tryNewMap } from '../../util/functionUtils' export const createMynahUI = ( ideApi: any, amazonQEnabled: boolean, - featureConfigsSerialized: [string, FeatureContext][] + featureConfigsSerialized: [string, FeatureContext][], + disabledCommands?: string[] ) => { // eslint-disable-next-line prefer-const let mynahUI: MynahUI @@ -77,6 +78,7 @@ export const createMynahUI = ( let tabDataGenerator = new TabDataGenerator({ isFeatureDevEnabled, isGumbyEnabled, + disabledCommands, }) // eslint-disable-next-line prefer-const @@ -118,11 +120,13 @@ export const createMynahUI = ( tabsStorage, isFeatureDevEnabled, isGumbyEnabled, + disabledCommands, }) tabDataGenerator = new TabDataGenerator({ isFeatureDevEnabled, isGumbyEnabled, + disabledCommands, }) featureConfigs = tryNewMap(featureConfigsSerialized) diff --git a/packages/core/src/amazonq/webview/ui/messages/controller.ts b/packages/core/src/amazonq/webview/ui/messages/controller.ts index 6565423bf56..f49b9a631ce 100644 --- a/packages/core/src/amazonq/webview/ui/messages/controller.ts +++ b/packages/core/src/amazonq/webview/ui/messages/controller.ts @@ -15,6 +15,7 @@ export interface MessageControllerProps { tabsStorage: TabsStorage isFeatureDevEnabled: boolean isGumbyEnabled: boolean + disabledCommands?: string[] } export class MessageController { @@ -30,6 +31,7 @@ export class MessageController { this.tabDataGenerator = new TabDataGenerator({ isFeatureDevEnabled: props.isFeatureDevEnabled, isGumbyEnabled: props.isGumbyEnabled, + disabledCommands: props.disabledCommands, }) } diff --git a/packages/core/src/amazonq/webview/ui/quickActions/generator.ts b/packages/core/src/amazonq/webview/ui/quickActions/generator.ts index 335019e2f06..9096b61512d 100644 --- a/packages/core/src/amazonq/webview/ui/quickActions/generator.ts +++ b/packages/core/src/amazonq/webview/ui/quickActions/generator.ts @@ -9,22 +9,25 @@ import { TabType } from '../storages/tabsStorage' export interface QuickActionGeneratorProps { isFeatureDevEnabled: boolean isGumbyEnabled: boolean + disableCommands?: string[] } export class QuickActionGenerator { public isFeatureDevEnabled: boolean private isGumbyEnabled: boolean + private disabledCommands: string[] constructor(props: QuickActionGeneratorProps) { this.isFeatureDevEnabled = props.isFeatureDevEnabled this.isGumbyEnabled = props.isGumbyEnabled + this.disabledCommands = props.disableCommands ?? [] } public generateForTab(tabType: TabType): QuickActionCommandGroup[] { const quickActionCommands = [ { commands: [ - ...(this.isFeatureDevEnabled + ...(this.isFeatureDevEnabled && !this.disabledCommands.includes('/dev') ? [ { command: '/dev', @@ -33,7 +36,7 @@ export class QuickActionGenerator { }, ] : []), - ...(this.isGumbyEnabled + ...(this.isGumbyEnabled && !this.disabledCommands.includes('/transform') ? [ { command: '/transform', @@ -55,7 +58,7 @@ export class QuickActionGenerator { }, ], }, - ] + ].filter((section) => section.commands.length > 0) const commandUnavailability: Record< TabType, diff --git a/packages/core/src/amazonq/webview/ui/quickActions/handler.ts b/packages/core/src/amazonq/webview/ui/quickActions/handler.ts index a219f71d286..dc9ff8e7dba 100644 --- a/packages/core/src/amazonq/webview/ui/quickActions/handler.ts +++ b/packages/core/src/amazonq/webview/ui/quickActions/handler.ts @@ -15,6 +15,7 @@ export interface QuickActionsHandlerProps { tabsStorage: TabsStorage isFeatureDevEnabled: boolean isGumbyEnabled: boolean + disabledCommands?: string[] } export class QuickActionHandler { @@ -32,6 +33,7 @@ export class QuickActionHandler { this.tabDataGenerator = new TabDataGenerator({ isFeatureDevEnabled: props.isFeatureDevEnabled, isGumbyEnabled: props.isGumbyEnabled, + disabledCommands: props.disabledCommands, }) this.isFeatureDevEnabled = props.isFeatureDevEnabled this.isGumbyEnabled = props.isGumbyEnabled diff --git a/packages/core/src/amazonq/webview/ui/tabs/generator.ts b/packages/core/src/amazonq/webview/ui/tabs/generator.ts index b466fab7699..e78d21b4101 100644 --- a/packages/core/src/amazonq/webview/ui/tabs/generator.ts +++ b/packages/core/src/amazonq/webview/ui/tabs/generator.ts @@ -12,6 +12,7 @@ import { TabTypeDataMap } from './constants' export interface TabDataGeneratorProps { isFeatureDevEnabled: boolean isGumbyEnabled: boolean + disabledCommands?: string[] } export class TabDataGenerator { @@ -23,6 +24,7 @@ export class TabDataGenerator { this.quickActionsGenerator = new QuickActionGenerator({ isFeatureDevEnabled: props.isFeatureDevEnabled, isGumbyEnabled: props.isGumbyEnabled, + disableCommands: props.disabledCommands, }) } From 6ae0d1e83f5bc13a2bae9a24ae9e66895177b2b1 Mon Sep 17 00:00:00 2001 From: Ahmed Ali Date: Mon, 28 Oct 2024 16:44:43 -0700 Subject: [PATCH 13/13] Ignore build artifacts from src.gen --- src.gen/@amzn/.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 src.gen/@amzn/.gitignore diff --git a/src.gen/@amzn/.gitignore b/src.gen/@amzn/.gitignore new file mode 100644 index 00000000000..f31061d0373 --- /dev/null +++ b/src.gen/@amzn/.gitignore @@ -0,0 +1,2 @@ +**/dist-*/ +**/*.tsbuildinfo \ No newline at end of file