From 3b38dd0249df6eaf032b598f3b023f7e009fbb92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Adel=C3=B6w?= Date: Fri, 6 Mar 2026 14:46:17 +0100 Subject: [PATCH] fix: mock fromTemporaryCredentials at module boundary instead of nested STS client MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace the @aws-sdk/nested-clients/sts mock with a mock of fromTemporaryCredentials itself. This avoids depending on AWS SDK internal implementation details while still verifying that the correct role ARN, session name, and external ID are passed. Co-Authored-By: Claude Opus 4.6 Signed-off-by: Fredrik Adelöw --- .../src/DefaultAwsCredentialsManager.test.ts | 134 +- yarn.lock | 2599 +++++------------ 2 files changed, 772 insertions(+), 1961 deletions(-) diff --git a/packages/integration-aws-node/src/DefaultAwsCredentialsManager.test.ts b/packages/integration-aws-node/src/DefaultAwsCredentialsManager.test.ts index 1c22a71a16..f1ec0ba6dc 100644 --- a/packages/integration-aws-node/src/DefaultAwsCredentialsManager.test.ts +++ b/packages/integration-aws-node/src/DefaultAwsCredentialsManager.test.ts @@ -17,26 +17,18 @@ import { DefaultAwsCredentialsManager } from './DefaultAwsCredentialsManager'; import { mockClient, AwsClientStub } from 'aws-sdk-client-mock'; import 'aws-sdk-client-mock-jest'; -import { - STSClient, - GetCallerIdentityCommand, - AssumeRoleCommand, -} from '@aws-sdk/client-sts'; -// this is an internal package that the sdk uses behind the scenes, and we need to mock parts of it -// eslint-disable-next-line @backstage/no-undeclared-imports -import { - STSClient as NestedSTSClient, - AssumeRoleCommand as NestedAssumeRoleCommand, -} from '@aws-sdk/nested-clients/sts'; +import { STSClient, GetCallerIdentityCommand } from '@aws-sdk/client-sts'; import { Config, ConfigReader } from '@backstage/config'; -import { fromNodeProviderChain } from '@aws-sdk/credential-providers'; +import { + fromNodeProviderChain, + fromTemporaryCredentials, +} from '@aws-sdk/credential-providers'; import { join } from 'node:path'; import { mkdtempSync, writeFileSync, rmSync } from 'node:fs'; import { tmpdir } from 'node:os'; const env = process.env; let stsMock: AwsClientStub; -let nestedStsMock: AwsClientStub; let config: Config; let tmpDir: string; @@ -45,6 +37,7 @@ jest.mock('@aws-sdk/credential-providers', () => { return { ...originalModule, fromNodeProviderChain: jest.fn(), + fromTemporaryCredentials: jest.fn(), }; }); @@ -54,7 +47,6 @@ describe('DefaultAwsCredentialsManager', () => { jest.resetAllMocks(); stsMock = mockClient(STSClient); - nestedStsMock = mockClient(NestedSTSClient); config = new ConfigReader({ aws: { @@ -113,59 +105,44 @@ describe('DefaultAwsCredentialsManager', () => { Account: '123456789012', }; }); - const assumeRoleResponses = { + + // Mock fromTemporaryCredentials to return credential providers + // based on the RoleArn, instead of mocking internal nested STS clients. + const assumeRoleCredentials: Record< + string, + { + accessKeyId: string; + secretAccessKey: string; + sessionToken: string; + expiration: Date; + } + > = { 'arn:aws:iam::111111111111:role/hello': { - input: { - RoleArn: 'arn:aws:iam::111111111111:role/hello', - RoleSessionName: 'backstage', - ExternalId: 'world', - }, - output: { - Credentials: { - AccessKeyId: 'ACCESS_KEY_ID_1', - SecretAccessKey: 'SECRET_ACCESS_KEY_1', - SessionToken: 'SESSION_TOKEN_1', - Expiration: new Date('2022-01-01'), - }, - }, + accessKeyId: 'ACCESS_KEY_ID_1', + secretAccessKey: 'SECRET_ACCESS_KEY_1', + sessionToken: 'SESSION_TOKEN_1', + expiration: new Date('2022-01-01'), }, 'arn:aws-other:iam::222222222222:role/hi': { - input: { - RoleArn: 'arn:aws-other:iam::222222222222:role/hi', - RoleSessionName: 'backstage', - }, - output: { - Credentials: { - AccessKeyId: 'ACCESS_KEY_ID_2', - SecretAccessKey: 'SECRET_ACCESS_KEY_2', - SessionToken: 'SESSION_TOKEN_2', - Expiration: new Date('2022-01-02'), - }, - }, + accessKeyId: 'ACCESS_KEY_ID_2', + secretAccessKey: 'SECRET_ACCESS_KEY_2', + sessionToken: 'SESSION_TOKEN_2', + expiration: new Date('2022-01-02'), }, 'arn:aws:iam::999999999999:role/backstage-role': { - input: { - RoleArn: 'arn:aws:iam::999999999999:role/backstage-role', - RoleSessionName: 'backstage', - ExternalId: 'my-id', - }, - output: { - Credentials: { - AccessKeyId: 'ACCESS_KEY_ID_9', - SecretAccessKey: 'SECRET_ACCESS_KEY_9', - SessionToken: 'SESSION_TOKEN_9', - Expiration: new Date('2022-01-09'), - }, - }, + accessKeyId: 'ACCESS_KEY_ID_9', + secretAccessKey: 'SECRET_ACCESS_KEY_9', + sessionToken: 'SESSION_TOKEN_9', + expiration: new Date('2022-01-09'), }, }; - - // Mock AssumeRoleCommand on both the regular and nested STS clients. - // fromTemporaryCredentials internally uses @aws-sdk/nested-clients/sts. - for (const { input, output } of Object.values(assumeRoleResponses)) { - stsMock.on(AssumeRoleCommand, input).resolves(output); - nestedStsMock.on(NestedAssumeRoleCommand, input).resolves(output); - } + (fromTemporaryCredentials as jest.Mock).mockImplementation(opts => { + const creds = assumeRoleCredentials[opts.params.RoleArn]; + if (!creds) { + throw new Error(`Unexpected RoleArn: ${opts.params.RoleArn}`); + } + return async () => creds; + }); const testDate = new Date('2022-01-10'); @@ -216,15 +193,21 @@ describe('DefaultAwsCredentialsManager', () => { expiration: new Date('2022-01-01'), }); + expect(fromTemporaryCredentials).toHaveBeenCalledWith( + expect.objectContaining({ + params: { + RoleArn: 'arn:aws:iam::111111111111:role/hello', + RoleSessionName: 'backstage', + ExternalId: 'world', + }, + }), + ); + const awsCredentialProvider2 = await provider.getCredentialProvider({ accountId: '111111111111', }); expect(awsCredentialProvider).toBe(awsCredentialProvider2); - expect(nestedStsMock).toHaveReceivedCommandTimes( - NestedAssumeRoleCommand, - 1, - ); }); it('retrieves assume-role creds in another partition for the given account ID', async () => { @@ -242,6 +225,19 @@ describe('DefaultAwsCredentialsManager', () => { sessionToken: 'SESSION_TOKEN_2', expiration: new Date('2022-01-02'), }); + + expect(fromTemporaryCredentials).toHaveBeenCalledWith( + expect.objectContaining({ + params: { + RoleArn: 'arn:aws-other:iam::222222222222:role/hi', + RoleSessionName: 'backstage', + ExternalId: undefined, + }, + clientConfig: expect.objectContaining({ + region: 'not-us-east-1', + }), + }), + ); }); it('retrieves assume-role creds for an account using the account defaults', async () => { @@ -259,6 +255,16 @@ describe('DefaultAwsCredentialsManager', () => { sessionToken: 'SESSION_TOKEN_9', expiration: new Date('2022-01-09'), }); + + expect(fromTemporaryCredentials).toHaveBeenCalledWith( + expect.objectContaining({ + params: { + RoleArn: 'arn:aws:iam::999999999999:role/backstage-role', + RoleSessionName: 'backstage', + ExternalId: 'my-id', + }, + }), + ); }); it('retrieves static creds for the given account ID', async () => { diff --git a/yarn.lock b/yarn.lock index ffed4a9193..0af06c1149 100644 --- a/yarn.lock +++ b/yarn.lock @@ -470,7 +470,7 @@ __metadata: languageName: node linkType: hard -"@aws-crypto/util@npm:^5.2.0": +"@aws-crypto/util@npm:5.2.0, @aws-crypto/util@npm:^5.2.0": version: 5.2.0 resolution: "@aws-crypto/util@npm:5.2.0" dependencies: @@ -492,1079 +492,604 @@ __metadata: linkType: hard "@aws-sdk/client-codecommit@npm:^3.350.0": - version: 3.651.1 - resolution: "@aws-sdk/client-codecommit@npm:3.651.1" + version: 3.1005.0 + resolution: "@aws-sdk/client-codecommit@npm:3.1005.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.651.1" - "@aws-sdk/client-sts": "npm:3.651.1" - "@aws-sdk/core": "npm:3.651.1" - "@aws-sdk/credential-provider-node": "npm:3.651.1" - "@aws-sdk/middleware-host-header": "npm:3.649.0" - "@aws-sdk/middleware-logger": "npm:3.649.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.649.0" - "@aws-sdk/middleware-user-agent": "npm:3.649.0" - "@aws-sdk/region-config-resolver": "npm:3.649.0" - "@aws-sdk/types": "npm:3.649.0" - "@aws-sdk/util-endpoints": "npm:3.649.0" - "@aws-sdk/util-user-agent-browser": "npm:3.649.0" - "@aws-sdk/util-user-agent-node": "npm:3.649.0" - "@smithy/config-resolver": "npm:^3.0.6" - "@smithy/core": "npm:^2.4.1" - "@smithy/fetch-http-handler": "npm:^3.2.5" - "@smithy/hash-node": "npm:^3.0.4" - "@smithy/invalid-dependency": "npm:^3.0.4" - "@smithy/middleware-content-length": "npm:^3.0.6" - "@smithy/middleware-endpoint": "npm:^3.1.1" - "@smithy/middleware-retry": "npm:^3.0.16" - "@smithy/middleware-serde": "npm:^3.0.4" - "@smithy/middleware-stack": "npm:^3.0.4" - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/node-http-handler": "npm:^3.2.0" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/smithy-client": "npm:^3.3.0" - "@smithy/types": "npm:^3.4.0" - "@smithy/url-parser": "npm:^3.0.4" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.16" - "@smithy/util-defaults-mode-node": "npm:^3.0.16" - "@smithy/util-endpoints": "npm:^2.1.0" - "@smithy/util-middleware": "npm:^3.0.4" - "@smithy/util-retry": "npm:^3.0.4" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - uuid: "npm:^9.0.1" - checksum: 10/bf10987e2a0b0078cc2fa32b8339cf76fff50f2608b475c1b9f02a8eb1074bd5755e9c61802e134bc2ccacc0f965e96063ff94552e01397434460578460aebe3 - languageName: node - linkType: hard - -"@aws-sdk/client-cognito-identity@npm:3.651.1": - version: 3.651.1 - resolution: "@aws-sdk/client-cognito-identity@npm:3.651.1" - dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.651.1" - "@aws-sdk/client-sts": "npm:3.651.1" - "@aws-sdk/core": "npm:3.651.1" - "@aws-sdk/credential-provider-node": "npm:3.651.1" - "@aws-sdk/middleware-host-header": "npm:3.649.0" - "@aws-sdk/middleware-logger": "npm:3.649.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.649.0" - "@aws-sdk/middleware-user-agent": "npm:3.649.0" - "@aws-sdk/region-config-resolver": "npm:3.649.0" - "@aws-sdk/types": "npm:3.649.0" - "@aws-sdk/util-endpoints": "npm:3.649.0" - "@aws-sdk/util-user-agent-browser": "npm:3.649.0" - "@aws-sdk/util-user-agent-node": "npm:3.649.0" - "@smithy/config-resolver": "npm:^3.0.6" - "@smithy/core": "npm:^2.4.1" - "@smithy/fetch-http-handler": "npm:^3.2.5" - "@smithy/hash-node": "npm:^3.0.4" - "@smithy/invalid-dependency": "npm:^3.0.4" - "@smithy/middleware-content-length": "npm:^3.0.6" - "@smithy/middleware-endpoint": "npm:^3.1.1" - "@smithy/middleware-retry": "npm:^3.0.16" - "@smithy/middleware-serde": "npm:^3.0.4" - "@smithy/middleware-stack": "npm:^3.0.4" - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/node-http-handler": "npm:^3.2.0" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/smithy-client": "npm:^3.3.0" - "@smithy/types": "npm:^3.4.0" - "@smithy/url-parser": "npm:^3.0.4" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.16" - "@smithy/util-defaults-mode-node": "npm:^3.0.16" - "@smithy/util-endpoints": "npm:^2.1.0" - "@smithy/util-middleware": "npm:^3.0.4" - "@smithy/util-retry": "npm:^3.0.4" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10/0934d5f991a07f8008788431762b0f13f784d6ac224b34ece0e67e6a5545f7b93a778c1b70f8b3a16601f621987fb7c3b7df1bf2c7fe360d1f11ef965781007b - languageName: node - linkType: hard - -"@aws-sdk/client-eks@npm:^3.350.0": - version: 3.651.1 - resolution: "@aws-sdk/client-eks@npm:3.651.1" - dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.651.1" - "@aws-sdk/client-sts": "npm:3.651.1" - "@aws-sdk/core": "npm:3.651.1" - "@aws-sdk/credential-provider-node": "npm:3.651.1" - "@aws-sdk/middleware-host-header": "npm:3.649.0" - "@aws-sdk/middleware-logger": "npm:3.649.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.649.0" - "@aws-sdk/middleware-user-agent": "npm:3.649.0" - "@aws-sdk/region-config-resolver": "npm:3.649.0" - "@aws-sdk/types": "npm:3.649.0" - "@aws-sdk/util-endpoints": "npm:3.649.0" - "@aws-sdk/util-user-agent-browser": "npm:3.649.0" - "@aws-sdk/util-user-agent-node": "npm:3.649.0" - "@smithy/config-resolver": "npm:^3.0.6" - "@smithy/core": "npm:^2.4.1" - "@smithy/fetch-http-handler": "npm:^3.2.5" - "@smithy/hash-node": "npm:^3.0.4" - "@smithy/invalid-dependency": "npm:^3.0.4" - "@smithy/middleware-content-length": "npm:^3.0.6" - "@smithy/middleware-endpoint": "npm:^3.1.1" - "@smithy/middleware-retry": "npm:^3.0.16" - "@smithy/middleware-serde": "npm:^3.0.4" - "@smithy/middleware-stack": "npm:^3.0.4" - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/node-http-handler": "npm:^3.2.0" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/smithy-client": "npm:^3.3.0" - "@smithy/types": "npm:^3.4.0" - "@smithy/url-parser": "npm:^3.0.4" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.16" - "@smithy/util-defaults-mode-node": "npm:^3.0.16" - "@smithy/util-endpoints": "npm:^2.1.0" - "@smithy/util-middleware": "npm:^3.0.4" - "@smithy/util-retry": "npm:^3.0.4" - "@smithy/util-utf8": "npm:^3.0.0" - "@smithy/util-waiter": "npm:^3.1.3" - tslib: "npm:^2.6.2" - uuid: "npm:^9.0.1" - checksum: 10/6e1d563058139d97c86649c2ff0c19c60f142b7ef556577ac30b2e5181b5c6299a408c78c6288ab17408cb2f434e1dd321b1e755415ff7fc9f24bc0bac433c00 - languageName: node - linkType: hard - -"@aws-sdk/client-organizations@npm:^3.350.0": - version: 3.652.0 - resolution: "@aws-sdk/client-organizations@npm:3.652.0" - dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.651.1" - "@aws-sdk/client-sts": "npm:3.651.1" - "@aws-sdk/core": "npm:3.651.1" - "@aws-sdk/credential-provider-node": "npm:3.651.1" - "@aws-sdk/middleware-host-header": "npm:3.649.0" - "@aws-sdk/middleware-logger": "npm:3.649.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.649.0" - "@aws-sdk/middleware-user-agent": "npm:3.649.0" - "@aws-sdk/region-config-resolver": "npm:3.649.0" - "@aws-sdk/types": "npm:3.649.0" - "@aws-sdk/util-endpoints": "npm:3.649.0" - "@aws-sdk/util-user-agent-browser": "npm:3.649.0" - "@aws-sdk/util-user-agent-node": "npm:3.649.0" - "@smithy/config-resolver": "npm:^3.0.6" - "@smithy/core": "npm:^2.4.1" - "@smithy/fetch-http-handler": "npm:^3.2.5" - "@smithy/hash-node": "npm:^3.0.4" - "@smithy/invalid-dependency": "npm:^3.0.4" - "@smithy/middleware-content-length": "npm:^3.0.6" - "@smithy/middleware-endpoint": "npm:^3.1.1" - "@smithy/middleware-retry": "npm:^3.0.16" - "@smithy/middleware-serde": "npm:^3.0.4" - "@smithy/middleware-stack": "npm:^3.0.4" - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/node-http-handler": "npm:^3.2.0" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/smithy-client": "npm:^3.3.0" - "@smithy/types": "npm:^3.4.0" - "@smithy/url-parser": "npm:^3.0.4" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.16" - "@smithy/util-defaults-mode-node": "npm:^3.0.16" - "@smithy/util-endpoints": "npm:^2.1.0" - "@smithy/util-middleware": "npm:^3.0.4" - "@smithy/util-retry": "npm:^3.0.4" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10/1bd38da5311a376ab8bf686277155424b945f207399f263a14d5b1e8bf49fd6edb1b739308ed15483939d0840ce4987bcd44cf8c99ad36d9e00cd8656e87e40f - languageName: node - linkType: hard - -"@aws-sdk/client-s3@npm:^3.350.0": - version: 3.651.1 - resolution: "@aws-sdk/client-s3@npm:3.651.1" - dependencies: - "@aws-crypto/sha1-browser": "npm:5.2.0" - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.651.1" - "@aws-sdk/client-sts": "npm:3.651.1" - "@aws-sdk/core": "npm:3.651.1" - "@aws-sdk/credential-provider-node": "npm:3.651.1" - "@aws-sdk/middleware-bucket-endpoint": "npm:3.649.0" - "@aws-sdk/middleware-expect-continue": "npm:3.649.0" - "@aws-sdk/middleware-flexible-checksums": "npm:3.651.1" - "@aws-sdk/middleware-host-header": "npm:3.649.0" - "@aws-sdk/middleware-location-constraint": "npm:3.649.0" - "@aws-sdk/middleware-logger": "npm:3.649.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.649.0" - "@aws-sdk/middleware-sdk-s3": "npm:3.651.1" - "@aws-sdk/middleware-ssec": "npm:3.649.0" - "@aws-sdk/middleware-user-agent": "npm:3.649.0" - "@aws-sdk/region-config-resolver": "npm:3.649.0" - "@aws-sdk/signature-v4-multi-region": "npm:3.651.1" - "@aws-sdk/types": "npm:3.649.0" - "@aws-sdk/util-endpoints": "npm:3.649.0" - "@aws-sdk/util-user-agent-browser": "npm:3.649.0" - "@aws-sdk/util-user-agent-node": "npm:3.649.0" - "@aws-sdk/xml-builder": "npm:3.649.0" - "@smithy/config-resolver": "npm:^3.0.6" - "@smithy/core": "npm:^2.4.1" - "@smithy/eventstream-serde-browser": "npm:^3.0.7" - "@smithy/eventstream-serde-config-resolver": "npm:^3.0.4" - "@smithy/eventstream-serde-node": "npm:^3.0.6" - "@smithy/fetch-http-handler": "npm:^3.2.5" - "@smithy/hash-blob-browser": "npm:^3.1.3" - "@smithy/hash-node": "npm:^3.0.4" - "@smithy/hash-stream-node": "npm:^3.1.3" - "@smithy/invalid-dependency": "npm:^3.0.4" - "@smithy/md5-js": "npm:^3.0.4" - "@smithy/middleware-content-length": "npm:^3.0.6" - "@smithy/middleware-endpoint": "npm:^3.1.1" - "@smithy/middleware-retry": "npm:^3.0.16" - "@smithy/middleware-serde": "npm:^3.0.4" - "@smithy/middleware-stack": "npm:^3.0.4" - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/node-http-handler": "npm:^3.2.0" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/smithy-client": "npm:^3.3.0" - "@smithy/types": "npm:^3.4.0" - "@smithy/url-parser": "npm:^3.0.4" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.16" - "@smithy/util-defaults-mode-node": "npm:^3.0.16" - "@smithy/util-endpoints": "npm:^2.1.0" - "@smithy/util-middleware": "npm:^3.0.4" - "@smithy/util-retry": "npm:^3.0.4" - "@smithy/util-stream": "npm:^3.1.4" - "@smithy/util-utf8": "npm:^3.0.0" - "@smithy/util-waiter": "npm:^3.1.3" - tslib: "npm:^2.6.2" - checksum: 10/3531e9db5e7f174ea46b3a5ea7d94566660173e7f8a6c8df8bbfbf5659f7a8213e9f17d8135ee65d0d98168beb4dc875ab6dff2730d138df7875226e9f0ac5eb - languageName: node - linkType: hard - -"@aws-sdk/client-sesv2@npm:^3.911.0": - version: 3.946.0 - resolution: "@aws-sdk/client-sesv2@npm:3.946.0" - dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.946.0" - "@aws-sdk/credential-provider-node": "npm:3.946.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.946.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/signature-v4-multi-region": "npm:3.946.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.946.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.7" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.14" - "@smithy/middleware-retry": "npm:^4.4.14" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.10" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" - "@smithy/util-base64": "npm:^4.3.0" - "@smithy/util-body-length-browser": "npm:^4.2.0" - "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.13" - "@smithy/util-defaults-mode-node": "npm:^4.2.16" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" - "@smithy/util-utf8": "npm:^4.2.0" - tslib: "npm:^2.6.2" - checksum: 10/da96e92e19e3e0d1815d311820dc9ad6f35b04f19247395d82b188bafc86d53ac7dc051f84eff5cf4370f1d402d537748c262af93f45009a6fb78eb690f576ae - languageName: node - linkType: hard - -"@aws-sdk/client-sqs@npm:^3.350.0": - version: 3.651.1 - resolution: "@aws-sdk/client-sqs@npm:3.651.1" - dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.651.1" - "@aws-sdk/client-sts": "npm:3.651.1" - "@aws-sdk/core": "npm:3.651.1" - "@aws-sdk/credential-provider-node": "npm:3.651.1" - "@aws-sdk/middleware-host-header": "npm:3.649.0" - "@aws-sdk/middleware-logger": "npm:3.649.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.649.0" - "@aws-sdk/middleware-sdk-sqs": "npm:3.649.0" - "@aws-sdk/middleware-user-agent": "npm:3.649.0" - "@aws-sdk/region-config-resolver": "npm:3.649.0" - "@aws-sdk/types": "npm:3.649.0" - "@aws-sdk/util-endpoints": "npm:3.649.0" - "@aws-sdk/util-user-agent-browser": "npm:3.649.0" - "@aws-sdk/util-user-agent-node": "npm:3.649.0" - "@smithy/config-resolver": "npm:^3.0.6" - "@smithy/core": "npm:^2.4.1" - "@smithy/fetch-http-handler": "npm:^3.2.5" - "@smithy/hash-node": "npm:^3.0.4" - "@smithy/invalid-dependency": "npm:^3.0.4" - "@smithy/md5-js": "npm:^3.0.4" - "@smithy/middleware-content-length": "npm:^3.0.6" - "@smithy/middleware-endpoint": "npm:^3.1.1" - "@smithy/middleware-retry": "npm:^3.0.16" - "@smithy/middleware-serde": "npm:^3.0.4" - "@smithy/middleware-stack": "npm:^3.0.4" - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/node-http-handler": "npm:^3.2.0" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/smithy-client": "npm:^3.3.0" - "@smithy/types": "npm:^3.4.0" - "@smithy/url-parser": "npm:^3.0.4" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.16" - "@smithy/util-defaults-mode-node": "npm:^3.0.16" - "@smithy/util-endpoints": "npm:^2.1.0" - "@smithy/util-middleware": "npm:^3.0.4" - "@smithy/util-retry": "npm:^3.0.4" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10/3cea5f89bd41f6e77669e63268c99d951a7ee0fbd81f95bda9bdfaa0f9d631d4189a27cfa5b2a75644337458be5e2e301b207f407ad73326c1482c1afb0feff3 - languageName: node - linkType: hard - -"@aws-sdk/client-sso-oidc@npm:3.651.1": - version: 3.651.1 - resolution: "@aws-sdk/client-sso-oidc@npm:3.651.1" - dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.651.1" - "@aws-sdk/credential-provider-node": "npm:3.651.1" - "@aws-sdk/middleware-host-header": "npm:3.649.0" - "@aws-sdk/middleware-logger": "npm:3.649.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.649.0" - "@aws-sdk/middleware-user-agent": "npm:3.649.0" - "@aws-sdk/region-config-resolver": "npm:3.649.0" - "@aws-sdk/types": "npm:3.649.0" - "@aws-sdk/util-endpoints": "npm:3.649.0" - "@aws-sdk/util-user-agent-browser": "npm:3.649.0" - "@aws-sdk/util-user-agent-node": "npm:3.649.0" - "@smithy/config-resolver": "npm:^3.0.6" - "@smithy/core": "npm:^2.4.1" - "@smithy/fetch-http-handler": "npm:^3.2.5" - "@smithy/hash-node": "npm:^3.0.4" - "@smithy/invalid-dependency": "npm:^3.0.4" - "@smithy/middleware-content-length": "npm:^3.0.6" - "@smithy/middleware-endpoint": "npm:^3.1.1" - "@smithy/middleware-retry": "npm:^3.0.16" - "@smithy/middleware-serde": "npm:^3.0.4" - "@smithy/middleware-stack": "npm:^3.0.4" - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/node-http-handler": "npm:^3.2.0" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/smithy-client": "npm:^3.3.0" - "@smithy/types": "npm:^3.4.0" - "@smithy/url-parser": "npm:^3.0.4" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.16" - "@smithy/util-defaults-mode-node": "npm:^3.0.16" - "@smithy/util-endpoints": "npm:^2.1.0" - "@smithy/util-middleware": "npm:^3.0.4" - "@smithy/util-retry": "npm:^3.0.4" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - peerDependencies: - "@aws-sdk/client-sts": ^3.651.1 - checksum: 10/6b02f72dfddffd76f111b9af5af1fa2109ea62d1d5f601be806303998f68736a63133869df9b261f115233b41cd5aa36658e234bef627186737a4cce65bbf29d - languageName: node - linkType: hard - -"@aws-sdk/client-sso@npm:3.651.1": - version: 3.651.1 - resolution: "@aws-sdk/client-sso@npm:3.651.1" - dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.651.1" - "@aws-sdk/middleware-host-header": "npm:3.649.0" - "@aws-sdk/middleware-logger": "npm:3.649.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.649.0" - "@aws-sdk/middleware-user-agent": "npm:3.649.0" - "@aws-sdk/region-config-resolver": "npm:3.649.0" - "@aws-sdk/types": "npm:3.649.0" - "@aws-sdk/util-endpoints": "npm:3.649.0" - "@aws-sdk/util-user-agent-browser": "npm:3.649.0" - "@aws-sdk/util-user-agent-node": "npm:3.649.0" - "@smithy/config-resolver": "npm:^3.0.6" - "@smithy/core": "npm:^2.4.1" - "@smithy/fetch-http-handler": "npm:^3.2.5" - "@smithy/hash-node": "npm:^3.0.4" - "@smithy/invalid-dependency": "npm:^3.0.4" - "@smithy/middleware-content-length": "npm:^3.0.6" - "@smithy/middleware-endpoint": "npm:^3.1.1" - "@smithy/middleware-retry": "npm:^3.0.16" - "@smithy/middleware-serde": "npm:^3.0.4" - "@smithy/middleware-stack": "npm:^3.0.4" - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/node-http-handler": "npm:^3.2.0" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/smithy-client": "npm:^3.3.0" - "@smithy/types": "npm:^3.4.0" - "@smithy/url-parser": "npm:^3.0.4" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.16" - "@smithy/util-defaults-mode-node": "npm:^3.0.16" - "@smithy/util-endpoints": "npm:^2.1.0" - "@smithy/util-middleware": "npm:^3.0.4" - "@smithy/util-retry": "npm:^3.0.4" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10/a04173235c46b331a22faa1f91d3bb7660f10ed20cd0e591f85c73e55056b06c91f22ec356515028efa8e2561fa3ce68d66d4a5e4c62ff48a47075965e353b9d - languageName: node - linkType: hard - -"@aws-sdk/client-sso@npm:3.946.0": - version: 3.946.0 - resolution: "@aws-sdk/client-sso@npm:3.946.0" - dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.946.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.946.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.946.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.7" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.14" - "@smithy/middleware-retry": "npm:^4.4.14" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.10" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" - "@smithy/util-base64": "npm:^4.3.0" - "@smithy/util-body-length-browser": "npm:^4.2.0" - "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.13" - "@smithy/util-defaults-mode-node": "npm:^4.2.16" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" - "@smithy/util-utf8": "npm:^4.2.0" - tslib: "npm:^2.6.2" - checksum: 10/02f43ce6418d22ad1d4347d62eef1dc21df6945b2e2cc52f6b266488fa9d0ac51262392a5a1cfa8e8d600ffb160d3a2e1c02406a72bda3dc3dc86af4886dcbf8 - languageName: node - linkType: hard - -"@aws-sdk/client-sts@npm:3.651.1": - version: 3.651.1 - resolution: "@aws-sdk/client-sts@npm:3.651.1" - dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.651.1" - "@aws-sdk/core": "npm:3.651.1" - "@aws-sdk/credential-provider-node": "npm:3.651.1" - "@aws-sdk/middleware-host-header": "npm:3.649.0" - "@aws-sdk/middleware-logger": "npm:3.649.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.649.0" - "@aws-sdk/middleware-user-agent": "npm:3.649.0" - "@aws-sdk/region-config-resolver": "npm:3.649.0" - "@aws-sdk/types": "npm:3.649.0" - "@aws-sdk/util-endpoints": "npm:3.649.0" - "@aws-sdk/util-user-agent-browser": "npm:3.649.0" - "@aws-sdk/util-user-agent-node": "npm:3.649.0" - "@smithy/config-resolver": "npm:^3.0.6" - "@smithy/core": "npm:^2.4.1" - "@smithy/fetch-http-handler": "npm:^3.2.5" - "@smithy/hash-node": "npm:^3.0.4" - "@smithy/invalid-dependency": "npm:^3.0.4" - "@smithy/middleware-content-length": "npm:^3.0.6" - "@smithy/middleware-endpoint": "npm:^3.1.1" - "@smithy/middleware-retry": "npm:^3.0.16" - "@smithy/middleware-serde": "npm:^3.0.4" - "@smithy/middleware-stack": "npm:^3.0.4" - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/node-http-handler": "npm:^3.2.0" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/smithy-client": "npm:^3.3.0" - "@smithy/types": "npm:^3.4.0" - "@smithy/url-parser": "npm:^3.0.4" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.16" - "@smithy/util-defaults-mode-node": "npm:^3.0.16" - "@smithy/util-endpoints": "npm:^2.1.0" - "@smithy/util-middleware": "npm:^3.0.4" - "@smithy/util-retry": "npm:^3.0.4" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10/3b8feea406ce54ebed9304fde68fdb1e2cacbf19eea5335214a378a513c3e30d2fdde8262123a90e5ba9935c9c3a6d3f0fcbc02cf0771068c847297a234f4632 - languageName: node - linkType: hard - -"@aws-sdk/client-sts@npm:^3.350.0": - version: 3.1003.0 - resolution: "@aws-sdk/client-sts@npm:3.1003.0" - dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:^3.973.18" - "@aws-sdk/credential-provider-node": "npm:^3.972.17" + "@aws-sdk/core": "npm:^3.973.19" + "@aws-sdk/credential-provider-node": "npm:^3.972.19" "@aws-sdk/middleware-host-header": "npm:^3.972.7" "@aws-sdk/middleware-logger": "npm:^3.972.7" "@aws-sdk/middleware-recursion-detection": "npm:^3.972.7" - "@aws-sdk/middleware-user-agent": "npm:^3.972.18" + "@aws-sdk/middleware-user-agent": "npm:^3.972.20" "@aws-sdk/region-config-resolver": "npm:^3.972.7" "@aws-sdk/types": "npm:^3.973.5" "@aws-sdk/util-endpoints": "npm:^3.996.4" "@aws-sdk/util-user-agent-browser": "npm:^3.972.7" - "@aws-sdk/util-user-agent-node": "npm:^3.973.3" + "@aws-sdk/util-user-agent-node": "npm:^3.973.5" "@smithy/config-resolver": "npm:^4.4.10" - "@smithy/core": "npm:^3.23.8" + "@smithy/core": "npm:^3.23.9" "@smithy/fetch-http-handler": "npm:^5.3.13" "@smithy/hash-node": "npm:^4.2.11" "@smithy/invalid-dependency": "npm:^4.2.11" "@smithy/middleware-content-length": "npm:^4.2.11" - "@smithy/middleware-endpoint": "npm:^4.4.22" - "@smithy/middleware-retry": "npm:^4.4.39" + "@smithy/middleware-endpoint": "npm:^4.4.23" + "@smithy/middleware-retry": "npm:^4.4.40" "@smithy/middleware-serde": "npm:^4.2.12" "@smithy/middleware-stack": "npm:^4.2.11" "@smithy/node-config-provider": "npm:^4.3.11" "@smithy/node-http-handler": "npm:^4.4.14" "@smithy/protocol-http": "npm:^5.3.11" - "@smithy/smithy-client": "npm:^4.12.2" + "@smithy/smithy-client": "npm:^4.12.3" "@smithy/types": "npm:^4.13.0" "@smithy/url-parser": "npm:^4.2.11" "@smithy/util-base64": "npm:^4.3.2" "@smithy/util-body-length-browser": "npm:^4.2.2" "@smithy/util-body-length-node": "npm:^4.2.3" - "@smithy/util-defaults-mode-browser": "npm:^4.3.38" - "@smithy/util-defaults-mode-node": "npm:^4.2.41" + "@smithy/util-defaults-mode-browser": "npm:^4.3.39" + "@smithy/util-defaults-mode-node": "npm:^4.2.42" "@smithy/util-endpoints": "npm:^3.3.2" "@smithy/util-middleware": "npm:^4.2.11" "@smithy/util-retry": "npm:^4.2.11" "@smithy/util-utf8": "npm:^4.2.2" tslib: "npm:^2.6.2" - checksum: 10/613f4d5df3b8d960ca4e7ba39d6a4aa78fec1b8fcaab926bec29a5dbc81243e30ff6ef803c16df0a9965adffac27da405c276bf62086b90dbf3aa2231aefeb55 + checksum: 10/f902307f0317610d5a60238e6a6491d6fca294150829a01ef2427bc6dfa508bc7382fe2071263f10ea4a97694721ebe1e1bbfb8ebe8c1a487f3d6b8c37f62eee languageName: node linkType: hard -"@aws-sdk/core@npm:3.651.1": - version: 3.651.1 - resolution: "@aws-sdk/core@npm:3.651.1" +"@aws-sdk/client-cognito-identity@npm:3.1005.0": + version: 3.1005.0 + resolution: "@aws-sdk/client-cognito-identity@npm:3.1005.0" dependencies: - "@smithy/core": "npm:^2.4.1" - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/property-provider": "npm:^3.1.4" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/signature-v4": "npm:^4.1.1" - "@smithy/smithy-client": "npm:^3.3.0" - "@smithy/types": "npm:^3.4.0" - "@smithy/util-middleware": "npm:^3.0.4" - fast-xml-parser: "npm:4.4.1" + "@aws-crypto/sha256-browser": "npm:5.2.0" + "@aws-crypto/sha256-js": "npm:5.2.0" + "@aws-sdk/core": "npm:^3.973.19" + "@aws-sdk/credential-provider-node": "npm:^3.972.19" + "@aws-sdk/middleware-host-header": "npm:^3.972.7" + "@aws-sdk/middleware-logger": "npm:^3.972.7" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.7" + "@aws-sdk/middleware-user-agent": "npm:^3.972.20" + "@aws-sdk/region-config-resolver": "npm:^3.972.7" + "@aws-sdk/types": "npm:^3.973.5" + "@aws-sdk/util-endpoints": "npm:^3.996.4" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.7" + "@aws-sdk/util-user-agent-node": "npm:^3.973.5" + "@smithy/config-resolver": "npm:^4.4.10" + "@smithy/core": "npm:^3.23.9" + "@smithy/fetch-http-handler": "npm:^5.3.13" + "@smithy/hash-node": "npm:^4.2.11" + "@smithy/invalid-dependency": "npm:^4.2.11" + "@smithy/middleware-content-length": "npm:^4.2.11" + "@smithy/middleware-endpoint": "npm:^4.4.23" + "@smithy/middleware-retry": "npm:^4.4.40" + "@smithy/middleware-serde": "npm:^4.2.12" + "@smithy/middleware-stack": "npm:^4.2.11" + "@smithy/node-config-provider": "npm:^4.3.11" + "@smithy/node-http-handler": "npm:^4.4.14" + "@smithy/protocol-http": "npm:^5.3.11" + "@smithy/smithy-client": "npm:^4.12.3" + "@smithy/types": "npm:^4.13.0" + "@smithy/url-parser": "npm:^4.2.11" + "@smithy/util-base64": "npm:^4.3.2" + "@smithy/util-body-length-browser": "npm:^4.2.2" + "@smithy/util-body-length-node": "npm:^4.2.3" + "@smithy/util-defaults-mode-browser": "npm:^4.3.39" + "@smithy/util-defaults-mode-node": "npm:^4.2.42" + "@smithy/util-endpoints": "npm:^3.3.2" + "@smithy/util-middleware": "npm:^4.2.11" + "@smithy/util-retry": "npm:^4.2.11" + "@smithy/util-utf8": "npm:^4.2.2" tslib: "npm:^2.6.2" - checksum: 10/d394292b8b36de1784cb05acec676ae590b9786056eaf1fdfc0fe8e82c54c26f9e1f1a83329b6d237a59177d2121f22fb3ee9a22e824bf9881c032f7eaddaa63 + checksum: 10/d3e5197002f96d12035a608e0e6f219ff179df08a4b75aa17f311191f2eec40361a904391225cb0cbd8824cc9276834705d2d9a98c041c4687792babdc334706 languageName: node linkType: hard -"@aws-sdk/core@npm:3.946.0": - version: 3.946.0 - resolution: "@aws-sdk/core@npm:3.946.0" +"@aws-sdk/client-eks@npm:^3.350.0": + version: 3.1005.0 + resolution: "@aws-sdk/client-eks@npm:3.1005.0" dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/xml-builder": "npm:3.930.0" - "@smithy/core": "npm:^3.18.7" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/signature-v4": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.10" - "@smithy/types": "npm:^4.9.0" - "@smithy/util-base64": "npm:^4.3.0" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-utf8": "npm:^4.2.0" + "@aws-crypto/sha256-browser": "npm:5.2.0" + "@aws-crypto/sha256-js": "npm:5.2.0" + "@aws-sdk/core": "npm:^3.973.19" + "@aws-sdk/credential-provider-node": "npm:^3.972.19" + "@aws-sdk/middleware-host-header": "npm:^3.972.7" + "@aws-sdk/middleware-logger": "npm:^3.972.7" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.7" + "@aws-sdk/middleware-user-agent": "npm:^3.972.20" + "@aws-sdk/region-config-resolver": "npm:^3.972.7" + "@aws-sdk/types": "npm:^3.973.5" + "@aws-sdk/util-endpoints": "npm:^3.996.4" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.7" + "@aws-sdk/util-user-agent-node": "npm:^3.973.5" + "@smithy/config-resolver": "npm:^4.4.10" + "@smithy/core": "npm:^3.23.9" + "@smithy/fetch-http-handler": "npm:^5.3.13" + "@smithy/hash-node": "npm:^4.2.11" + "@smithy/invalid-dependency": "npm:^4.2.11" + "@smithy/middleware-content-length": "npm:^4.2.11" + "@smithy/middleware-endpoint": "npm:^4.4.23" + "@smithy/middleware-retry": "npm:^4.4.40" + "@smithy/middleware-serde": "npm:^4.2.12" + "@smithy/middleware-stack": "npm:^4.2.11" + "@smithy/node-config-provider": "npm:^4.3.11" + "@smithy/node-http-handler": "npm:^4.4.14" + "@smithy/protocol-http": "npm:^5.3.11" + "@smithy/smithy-client": "npm:^4.12.3" + "@smithy/types": "npm:^4.13.0" + "@smithy/url-parser": "npm:^4.2.11" + "@smithy/util-base64": "npm:^4.3.2" + "@smithy/util-body-length-browser": "npm:^4.2.2" + "@smithy/util-body-length-node": "npm:^4.2.3" + "@smithy/util-defaults-mode-browser": "npm:^4.3.39" + "@smithy/util-defaults-mode-node": "npm:^4.2.42" + "@smithy/util-endpoints": "npm:^3.3.2" + "@smithy/util-middleware": "npm:^4.2.11" + "@smithy/util-retry": "npm:^4.2.11" + "@smithy/util-utf8": "npm:^4.2.2" + "@smithy/util-waiter": "npm:^4.2.11" tslib: "npm:^2.6.2" - checksum: 10/0ce2629d50f15a16e9586060dba2bf8eda4188527b1c753b2f87b687f4f452aa6b26c811c8b364db44692321bed5a359f1bc3ee4666ffe306c568cc58e213c54 + checksum: 10/5b76eea5ef54d11ddaf52bf366e56fd827efa6858cb4210e3d4e8b0b544bd0899889e0f4d0e29ff80daefd8ae31d1f3ea7bec0a63021da0a1264792b2056d515 languageName: node linkType: hard -"@aws-sdk/core@npm:^3.973.18": - version: 3.973.18 - resolution: "@aws-sdk/core@npm:3.973.18" +"@aws-sdk/client-organizations@npm:^3.350.0": + version: 3.1005.0 + resolution: "@aws-sdk/client-organizations@npm:3.1005.0" + dependencies: + "@aws-crypto/sha256-browser": "npm:5.2.0" + "@aws-crypto/sha256-js": "npm:5.2.0" + "@aws-sdk/core": "npm:^3.973.19" + "@aws-sdk/credential-provider-node": "npm:^3.972.19" + "@aws-sdk/middleware-host-header": "npm:^3.972.7" + "@aws-sdk/middleware-logger": "npm:^3.972.7" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.7" + "@aws-sdk/middleware-user-agent": "npm:^3.972.20" + "@aws-sdk/region-config-resolver": "npm:^3.972.7" + "@aws-sdk/types": "npm:^3.973.5" + "@aws-sdk/util-endpoints": "npm:^3.996.4" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.7" + "@aws-sdk/util-user-agent-node": "npm:^3.973.5" + "@smithy/config-resolver": "npm:^4.4.10" + "@smithy/core": "npm:^3.23.9" + "@smithy/fetch-http-handler": "npm:^5.3.13" + "@smithy/hash-node": "npm:^4.2.11" + "@smithy/invalid-dependency": "npm:^4.2.11" + "@smithy/middleware-content-length": "npm:^4.2.11" + "@smithy/middleware-endpoint": "npm:^4.4.23" + "@smithy/middleware-retry": "npm:^4.4.40" + "@smithy/middleware-serde": "npm:^4.2.12" + "@smithy/middleware-stack": "npm:^4.2.11" + "@smithy/node-config-provider": "npm:^4.3.11" + "@smithy/node-http-handler": "npm:^4.4.14" + "@smithy/protocol-http": "npm:^5.3.11" + "@smithy/smithy-client": "npm:^4.12.3" + "@smithy/types": "npm:^4.13.0" + "@smithy/url-parser": "npm:^4.2.11" + "@smithy/util-base64": "npm:^4.3.2" + "@smithy/util-body-length-browser": "npm:^4.2.2" + "@smithy/util-body-length-node": "npm:^4.2.3" + "@smithy/util-defaults-mode-browser": "npm:^4.3.39" + "@smithy/util-defaults-mode-node": "npm:^4.2.42" + "@smithy/util-endpoints": "npm:^3.3.2" + "@smithy/util-middleware": "npm:^4.2.11" + "@smithy/util-retry": "npm:^4.2.11" + "@smithy/util-utf8": "npm:^4.2.2" + tslib: "npm:^2.6.2" + checksum: 10/98a900d86b5bacb102725751614caaec2c23c255336a9c4da47bfa409ea45ea548241c534bca7d34687827ca3f244144abf416ddec7ee4e1cc969d0514838c8f + languageName: node + linkType: hard + +"@aws-sdk/client-s3@npm:^3.350.0": + version: 3.1005.0 + resolution: "@aws-sdk/client-s3@npm:3.1005.0" + dependencies: + "@aws-crypto/sha1-browser": "npm:5.2.0" + "@aws-crypto/sha256-browser": "npm:5.2.0" + "@aws-crypto/sha256-js": "npm:5.2.0" + "@aws-sdk/core": "npm:^3.973.19" + "@aws-sdk/credential-provider-node": "npm:^3.972.19" + "@aws-sdk/middleware-bucket-endpoint": "npm:^3.972.7" + "@aws-sdk/middleware-expect-continue": "npm:^3.972.7" + "@aws-sdk/middleware-flexible-checksums": "npm:^3.973.5" + "@aws-sdk/middleware-host-header": "npm:^3.972.7" + "@aws-sdk/middleware-location-constraint": "npm:^3.972.7" + "@aws-sdk/middleware-logger": "npm:^3.972.7" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.7" + "@aws-sdk/middleware-sdk-s3": "npm:^3.972.19" + "@aws-sdk/middleware-ssec": "npm:^3.972.7" + "@aws-sdk/middleware-user-agent": "npm:^3.972.20" + "@aws-sdk/region-config-resolver": "npm:^3.972.7" + "@aws-sdk/signature-v4-multi-region": "npm:^3.996.7" + "@aws-sdk/types": "npm:^3.973.5" + "@aws-sdk/util-endpoints": "npm:^3.996.4" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.7" + "@aws-sdk/util-user-agent-node": "npm:^3.973.5" + "@smithy/config-resolver": "npm:^4.4.10" + "@smithy/core": "npm:^3.23.9" + "@smithy/eventstream-serde-browser": "npm:^4.2.11" + "@smithy/eventstream-serde-config-resolver": "npm:^4.3.11" + "@smithy/eventstream-serde-node": "npm:^4.2.11" + "@smithy/fetch-http-handler": "npm:^5.3.13" + "@smithy/hash-blob-browser": "npm:^4.2.12" + "@smithy/hash-node": "npm:^4.2.11" + "@smithy/hash-stream-node": "npm:^4.2.11" + "@smithy/invalid-dependency": "npm:^4.2.11" + "@smithy/md5-js": "npm:^4.2.11" + "@smithy/middleware-content-length": "npm:^4.2.11" + "@smithy/middleware-endpoint": "npm:^4.4.23" + "@smithy/middleware-retry": "npm:^4.4.40" + "@smithy/middleware-serde": "npm:^4.2.12" + "@smithy/middleware-stack": "npm:^4.2.11" + "@smithy/node-config-provider": "npm:^4.3.11" + "@smithy/node-http-handler": "npm:^4.4.14" + "@smithy/protocol-http": "npm:^5.3.11" + "@smithy/smithy-client": "npm:^4.12.3" + "@smithy/types": "npm:^4.13.0" + "@smithy/url-parser": "npm:^4.2.11" + "@smithy/util-base64": "npm:^4.3.2" + "@smithy/util-body-length-browser": "npm:^4.2.2" + "@smithy/util-body-length-node": "npm:^4.2.3" + "@smithy/util-defaults-mode-browser": "npm:^4.3.39" + "@smithy/util-defaults-mode-node": "npm:^4.2.42" + "@smithy/util-endpoints": "npm:^3.3.2" + "@smithy/util-middleware": "npm:^4.2.11" + "@smithy/util-retry": "npm:^4.2.11" + "@smithy/util-stream": "npm:^4.5.17" + "@smithy/util-utf8": "npm:^4.2.2" + "@smithy/util-waiter": "npm:^4.2.11" + tslib: "npm:^2.6.2" + checksum: 10/0e57dfa15bf610ff410ab1677adb118091031e8915688ff9376620caba1f073c788422a9f762ddf53828be99591e3ec518d62bc3f550ab8babcb0a04ccb38b7f + languageName: node + linkType: hard + +"@aws-sdk/client-sesv2@npm:^3.911.0": + version: 3.1005.0 + resolution: "@aws-sdk/client-sesv2@npm:3.1005.0" + dependencies: + "@aws-crypto/sha256-browser": "npm:5.2.0" + "@aws-crypto/sha256-js": "npm:5.2.0" + "@aws-sdk/core": "npm:^3.973.19" + "@aws-sdk/credential-provider-node": "npm:^3.972.19" + "@aws-sdk/middleware-host-header": "npm:^3.972.7" + "@aws-sdk/middleware-logger": "npm:^3.972.7" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.7" + "@aws-sdk/middleware-user-agent": "npm:^3.972.20" + "@aws-sdk/region-config-resolver": "npm:^3.972.7" + "@aws-sdk/signature-v4-multi-region": "npm:^3.996.7" + "@aws-sdk/types": "npm:^3.973.5" + "@aws-sdk/util-endpoints": "npm:^3.996.4" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.7" + "@aws-sdk/util-user-agent-node": "npm:^3.973.5" + "@smithy/config-resolver": "npm:^4.4.10" + "@smithy/core": "npm:^3.23.9" + "@smithy/fetch-http-handler": "npm:^5.3.13" + "@smithy/hash-node": "npm:^4.2.11" + "@smithy/invalid-dependency": "npm:^4.2.11" + "@smithy/middleware-content-length": "npm:^4.2.11" + "@smithy/middleware-endpoint": "npm:^4.4.23" + "@smithy/middleware-retry": "npm:^4.4.40" + "@smithy/middleware-serde": "npm:^4.2.12" + "@smithy/middleware-stack": "npm:^4.2.11" + "@smithy/node-config-provider": "npm:^4.3.11" + "@smithy/node-http-handler": "npm:^4.4.14" + "@smithy/protocol-http": "npm:^5.3.11" + "@smithy/smithy-client": "npm:^4.12.3" + "@smithy/types": "npm:^4.13.0" + "@smithy/url-parser": "npm:^4.2.11" + "@smithy/util-base64": "npm:^4.3.2" + "@smithy/util-body-length-browser": "npm:^4.2.2" + "@smithy/util-body-length-node": "npm:^4.2.3" + "@smithy/util-defaults-mode-browser": "npm:^4.3.39" + "@smithy/util-defaults-mode-node": "npm:^4.2.42" + "@smithy/util-endpoints": "npm:^3.3.2" + "@smithy/util-middleware": "npm:^4.2.11" + "@smithy/util-retry": "npm:^4.2.11" + "@smithy/util-utf8": "npm:^4.2.2" + tslib: "npm:^2.6.2" + checksum: 10/5ea7e21976ef8abbaa356085837f858fb8f43cd0610a3643621cca13a22d93ccb1fcea8f48ff9965a0c3e7d97bfb2d78e4f16654429ed9c5a472de9bdacf8a51 + languageName: node + linkType: hard + +"@aws-sdk/client-sqs@npm:^3.350.0": + version: 3.1005.0 + resolution: "@aws-sdk/client-sqs@npm:3.1005.0" + dependencies: + "@aws-crypto/sha256-browser": "npm:5.2.0" + "@aws-crypto/sha256-js": "npm:5.2.0" + "@aws-sdk/core": "npm:^3.973.19" + "@aws-sdk/credential-provider-node": "npm:^3.972.19" + "@aws-sdk/middleware-host-header": "npm:^3.972.7" + "@aws-sdk/middleware-logger": "npm:^3.972.7" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.7" + "@aws-sdk/middleware-sdk-sqs": "npm:^3.972.14" + "@aws-sdk/middleware-user-agent": "npm:^3.972.20" + "@aws-sdk/region-config-resolver": "npm:^3.972.7" + "@aws-sdk/types": "npm:^3.973.5" + "@aws-sdk/util-endpoints": "npm:^3.996.4" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.7" + "@aws-sdk/util-user-agent-node": "npm:^3.973.5" + "@smithy/config-resolver": "npm:^4.4.10" + "@smithy/core": "npm:^3.23.9" + "@smithy/fetch-http-handler": "npm:^5.3.13" + "@smithy/hash-node": "npm:^4.2.11" + "@smithy/invalid-dependency": "npm:^4.2.11" + "@smithy/md5-js": "npm:^4.2.11" + "@smithy/middleware-content-length": "npm:^4.2.11" + "@smithy/middleware-endpoint": "npm:^4.4.23" + "@smithy/middleware-retry": "npm:^4.4.40" + "@smithy/middleware-serde": "npm:^4.2.12" + "@smithy/middleware-stack": "npm:^4.2.11" + "@smithy/node-config-provider": "npm:^4.3.11" + "@smithy/node-http-handler": "npm:^4.4.14" + "@smithy/protocol-http": "npm:^5.3.11" + "@smithy/smithy-client": "npm:^4.12.3" + "@smithy/types": "npm:^4.13.0" + "@smithy/url-parser": "npm:^4.2.11" + "@smithy/util-base64": "npm:^4.3.2" + "@smithy/util-body-length-browser": "npm:^4.2.2" + "@smithy/util-body-length-node": "npm:^4.2.3" + "@smithy/util-defaults-mode-browser": "npm:^4.3.39" + "@smithy/util-defaults-mode-node": "npm:^4.2.42" + "@smithy/util-endpoints": "npm:^3.3.2" + "@smithy/util-middleware": "npm:^4.2.11" + "@smithy/util-retry": "npm:^4.2.11" + "@smithy/util-utf8": "npm:^4.2.2" + tslib: "npm:^2.6.2" + checksum: 10/88b9bac7fb83b1809591ccfd644b75c1983b024aa916a523212b458a42c551d901833be387be4b43d0bb855e96f0d7e7c4af5638c1226a1ba518c92cb616632f + languageName: node + linkType: hard + +"@aws-sdk/client-sts@npm:^3.350.0": + version: 3.1005.0 + resolution: "@aws-sdk/client-sts@npm:3.1005.0" + dependencies: + "@aws-crypto/sha256-browser": "npm:5.2.0" + "@aws-crypto/sha256-js": "npm:5.2.0" + "@aws-sdk/core": "npm:^3.973.19" + "@aws-sdk/credential-provider-node": "npm:^3.972.19" + "@aws-sdk/middleware-host-header": "npm:^3.972.7" + "@aws-sdk/middleware-logger": "npm:^3.972.7" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.7" + "@aws-sdk/middleware-user-agent": "npm:^3.972.20" + "@aws-sdk/region-config-resolver": "npm:^3.972.7" + "@aws-sdk/types": "npm:^3.973.5" + "@aws-sdk/util-endpoints": "npm:^3.996.4" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.7" + "@aws-sdk/util-user-agent-node": "npm:^3.973.5" + "@smithy/config-resolver": "npm:^4.4.10" + "@smithy/core": "npm:^3.23.9" + "@smithy/fetch-http-handler": "npm:^5.3.13" + "@smithy/hash-node": "npm:^4.2.11" + "@smithy/invalid-dependency": "npm:^4.2.11" + "@smithy/middleware-content-length": "npm:^4.2.11" + "@smithy/middleware-endpoint": "npm:^4.4.23" + "@smithy/middleware-retry": "npm:^4.4.40" + "@smithy/middleware-serde": "npm:^4.2.12" + "@smithy/middleware-stack": "npm:^4.2.11" + "@smithy/node-config-provider": "npm:^4.3.11" + "@smithy/node-http-handler": "npm:^4.4.14" + "@smithy/protocol-http": "npm:^5.3.11" + "@smithy/smithy-client": "npm:^4.12.3" + "@smithy/types": "npm:^4.13.0" + "@smithy/url-parser": "npm:^4.2.11" + "@smithy/util-base64": "npm:^4.3.2" + "@smithy/util-body-length-browser": "npm:^4.2.2" + "@smithy/util-body-length-node": "npm:^4.2.3" + "@smithy/util-defaults-mode-browser": "npm:^4.3.39" + "@smithy/util-defaults-mode-node": "npm:^4.2.42" + "@smithy/util-endpoints": "npm:^3.3.2" + "@smithy/util-middleware": "npm:^4.2.11" + "@smithy/util-retry": "npm:^4.2.11" + "@smithy/util-utf8": "npm:^4.2.2" + tslib: "npm:^2.6.2" + checksum: 10/8975b307be414259a43d9b76e49bf6a73a47d44fd368a12725a54dc663c6cffbee0d32a1a75d2474e85cd40cf6e7feb24e172fa90a8b4c2b738909eef55f1569 + languageName: node + linkType: hard + +"@aws-sdk/core@npm:^3.973.19": + version: 3.973.19 + resolution: "@aws-sdk/core@npm:3.973.19" dependencies: "@aws-sdk/types": "npm:^3.973.5" "@aws-sdk/xml-builder": "npm:^3.972.10" - "@smithy/core": "npm:^3.23.8" + "@smithy/core": "npm:^3.23.9" "@smithy/node-config-provider": "npm:^4.3.11" "@smithy/property-provider": "npm:^4.2.11" "@smithy/protocol-http": "npm:^5.3.11" "@smithy/signature-v4": "npm:^5.3.11" - "@smithy/smithy-client": "npm:^4.12.2" + "@smithy/smithy-client": "npm:^4.12.3" "@smithy/types": "npm:^4.13.0" "@smithy/util-base64": "npm:^4.3.2" "@smithy/util-middleware": "npm:^4.2.11" "@smithy/util-utf8": "npm:^4.2.2" tslib: "npm:^2.6.2" - checksum: 10/5388213061c700bf7c43875e70ec5c985b3c004a528e18fd164f4c7f156ca94054ec8b55039ea5931bd576b3bff027830de7dbec0fa3e0de49d0f7c6a1f42080 + checksum: 10/dc60d73c8cc0fd2362bb66953c4cbdeba64f4c4690305054c132f8612432aa0db1c4727808de84649a994ad5baab901bb5ba60045abe72bafa53f269b0411370 languageName: node linkType: hard -"@aws-sdk/credential-provider-cognito-identity@npm:3.651.1": - version: 3.651.1 - resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.651.1" +"@aws-sdk/crc64-nvme@npm:^3.972.4": + version: 3.972.4 + resolution: "@aws-sdk/crc64-nvme@npm:3.972.4" dependencies: - "@aws-sdk/client-cognito-identity": "npm:3.651.1" - "@aws-sdk/types": "npm:3.649.0" - "@smithy/property-provider": "npm:^3.1.4" - "@smithy/types": "npm:^3.4.0" + "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/78706b7dcfe715bb108b772718fdf83b00cbdace667db9c3515312274cebd9d523f812e97c6a517b3d3f72866265b6aceeff54d5df510100831e044745be1906 + checksum: 10/2f383f4ee7437f2709bfbf6fbf2e0b4bf72c89e093294302645051a080a58e8907034c487fd80705769813615740930bfb16e723a8c2b85c20b80366c7125dd1 languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:3.649.0": - version: 3.649.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.649.0" +"@aws-sdk/credential-provider-cognito-identity@npm:^3.972.11": + version: 3.972.11 + resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.972.11" dependencies: - "@aws-sdk/types": "npm:3.649.0" - "@smithy/property-provider": "npm:^3.1.4" - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/269f5a839ec1be59bb81c1acad7133597a19c3faa8b04c2687b6e7763145c3329f9c40c390b21da1752f5bc652100ba6164cbcf30a3467c833a2867ef8916ce6 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-env@npm:3.946.0": - version: 3.946.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.946.0" - dependencies: - "@aws-sdk/core": "npm:3.946.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/types": "npm:^4.9.0" - tslib: "npm:^2.6.2" - checksum: 10/743a9bf2e28607a14ed1e816f650c00f068566eaff0db88505e98d4ab4757e00919db0263d272fa46d528202f4f9d48bb0932905e5de00f790fd98963754064e - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-env@npm:^3.972.16": - version: 3.972.16 - resolution: "@aws-sdk/credential-provider-env@npm:3.972.16" - dependencies: - "@aws-sdk/core": "npm:^3.973.18" + "@aws-sdk/nested-clients": "npm:^3.996.8" "@aws-sdk/types": "npm:^3.973.5" "@smithy/property-provider": "npm:^4.2.11" "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/700e3dba761f9d26efd3f2843ab85b27b0eaa36c136d852d0c6af09bcfc0969a5187a849a159667ea4d42ac2e1c13cbdc89b72020b3ef5c2c945658690c06d32 + checksum: 10/4d2ff4419a9bba24ffbb4154cafe5b6d756071e61e005b621dbd12fd0ffcbfe5cf2b7f3a144bf72559469cc5bd9ca5287c4386552b282614de54b9f7d5eb8399 languageName: node linkType: hard -"@aws-sdk/credential-provider-http@npm:3.649.0": - version: 3.649.0 - resolution: "@aws-sdk/credential-provider-http@npm:3.649.0" +"@aws-sdk/credential-provider-env@npm:^3.972.17": + version: 3.972.17 + resolution: "@aws-sdk/credential-provider-env@npm:3.972.17" dependencies: - "@aws-sdk/types": "npm:3.649.0" - "@smithy/fetch-http-handler": "npm:^3.2.5" - "@smithy/node-http-handler": "npm:^3.2.0" - "@smithy/property-provider": "npm:^3.1.4" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/smithy-client": "npm:^3.3.0" - "@smithy/types": "npm:^3.4.0" - "@smithy/util-stream": "npm:^3.1.4" + "@aws-sdk/core": "npm:^3.973.19" + "@aws-sdk/types": "npm:^3.973.5" + "@smithy/property-provider": "npm:^4.2.11" + "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/d564fc6b2ca84bf51ad980020b63f6aaf08de573ff52de2e608031354cee24fa768549b45d5cb0a9c120158c039cf67aa0f31e97767025565dbcc283b8cbe381 + checksum: 10/d9746dbfbd2ed0e5e9d89518387cc3ffde3d109ec01c530f407d3fc1415f33e159241cb0fd28a7dbda0ef5c6ef6f495c71981353f9921e8102b016db16d2e02f languageName: node linkType: hard -"@aws-sdk/credential-provider-http@npm:3.946.0": - version: 3.946.0 - resolution: "@aws-sdk/credential-provider-http@npm:3.946.0" +"@aws-sdk/credential-provider-http@npm:^3.972.19": + version: 3.972.19 + resolution: "@aws-sdk/credential-provider-http@npm:3.972.19" dependencies: - "@aws-sdk/core": "npm:3.946.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.10" - "@smithy/types": "npm:^4.9.0" - "@smithy/util-stream": "npm:^4.5.6" - tslib: "npm:^2.6.2" - checksum: 10/c031f544dc581aa82624be0c3427811d3c5f9527c51d6dae1056dc23371a1a747d4090a38dfcda9aefc96ed22f8bfaafa66e7c58dbee49ff5035e0746aab1bee - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-http@npm:^3.972.18": - version: 3.972.18 - resolution: "@aws-sdk/credential-provider-http@npm:3.972.18" - dependencies: - "@aws-sdk/core": "npm:^3.973.18" + "@aws-sdk/core": "npm:^3.973.19" "@aws-sdk/types": "npm:^3.973.5" "@smithy/fetch-http-handler": "npm:^5.3.13" "@smithy/node-http-handler": "npm:^4.4.14" "@smithy/property-provider": "npm:^4.2.11" "@smithy/protocol-http": "npm:^5.3.11" - "@smithy/smithy-client": "npm:^4.12.2" + "@smithy/smithy-client": "npm:^4.12.3" "@smithy/types": "npm:^4.13.0" "@smithy/util-stream": "npm:^4.5.17" tslib: "npm:^2.6.2" - checksum: 10/7d869b42b33fc838406681535d8bf36716e476ea6a6d1c478a047fe68d4badae0452b7d031cb6f9c2db68c72b249959eb13f24aac7a37b7ce2d3591af77b1c75 + checksum: 10/7b814efb587d356643116909f0ad4af5a52ad14849b60e224cec1616722399b20eeab2a4603bf85de4b9cf79409ac824c3cb54dc1e31e5f8502d378b5f654730 languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.651.1": - version: 3.651.1 - resolution: "@aws-sdk/credential-provider-ini@npm:3.651.1" +"@aws-sdk/credential-provider-ini@npm:^3.972.18": + version: 3.972.18 + resolution: "@aws-sdk/credential-provider-ini@npm:3.972.18" dependencies: - "@aws-sdk/credential-provider-env": "npm:3.649.0" - "@aws-sdk/credential-provider-http": "npm:3.649.0" - "@aws-sdk/credential-provider-process": "npm:3.649.0" - "@aws-sdk/credential-provider-sso": "npm:3.651.1" - "@aws-sdk/credential-provider-web-identity": "npm:3.649.0" - "@aws-sdk/types": "npm:3.649.0" - "@smithy/credential-provider-imds": "npm:^3.2.1" - "@smithy/property-provider": "npm:^3.1.4" - "@smithy/shared-ini-file-loader": "npm:^3.1.5" - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - peerDependencies: - "@aws-sdk/client-sts": ^3.651.1 - checksum: 10/4abac498baec245295590e699215530662848324ba45027168b341900ea8cdc9bf74968435b7ced2161cb36fe91d30c99d2409e15a0302f977b4ebacb9b0f98c - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-ini@npm:3.946.0": - version: 3.946.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.946.0" - dependencies: - "@aws-sdk/core": "npm:3.946.0" - "@aws-sdk/credential-provider-env": "npm:3.946.0" - "@aws-sdk/credential-provider-http": "npm:3.946.0" - "@aws-sdk/credential-provider-login": "npm:3.946.0" - "@aws-sdk/credential-provider-process": "npm:3.946.0" - "@aws-sdk/credential-provider-sso": "npm:3.946.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.946.0" - "@aws-sdk/nested-clients": "npm:3.946.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/credential-provider-imds": "npm:^4.2.5" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/shared-ini-file-loader": "npm:^4.4.0" - "@smithy/types": "npm:^4.9.0" - tslib: "npm:^2.6.2" - checksum: 10/796b2bea8b544469672c594da106a75a40ca3f6eb244f6c832c6eb51bce7bec6dce62deedf2bee1325f4fab6c6377afd96dfe13f8c7a243464e27a4030551158 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-ini@npm:^3.972.16": - version: 3.972.16 - resolution: "@aws-sdk/credential-provider-ini@npm:3.972.16" - dependencies: - "@aws-sdk/core": "npm:^3.973.18" - "@aws-sdk/credential-provider-env": "npm:^3.972.16" - "@aws-sdk/credential-provider-http": "npm:^3.972.18" - "@aws-sdk/credential-provider-login": "npm:^3.972.16" - "@aws-sdk/credential-provider-process": "npm:^3.972.16" - "@aws-sdk/credential-provider-sso": "npm:^3.972.16" - "@aws-sdk/credential-provider-web-identity": "npm:^3.972.16" - "@aws-sdk/nested-clients": "npm:^3.996.6" + "@aws-sdk/core": "npm:^3.973.19" + "@aws-sdk/credential-provider-env": "npm:^3.972.17" + "@aws-sdk/credential-provider-http": "npm:^3.972.19" + "@aws-sdk/credential-provider-login": "npm:^3.972.18" + "@aws-sdk/credential-provider-process": "npm:^3.972.17" + "@aws-sdk/credential-provider-sso": "npm:^3.972.18" + "@aws-sdk/credential-provider-web-identity": "npm:^3.972.18" + "@aws-sdk/nested-clients": "npm:^3.996.8" "@aws-sdk/types": "npm:^3.973.5" "@smithy/credential-provider-imds": "npm:^4.2.11" "@smithy/property-provider": "npm:^4.2.11" "@smithy/shared-ini-file-loader": "npm:^4.4.6" "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/eca6292ad0f31626efa263a36988aefe388d82a803c42c6a2bbcf08620d540ac275debcfec1674fdc1784079fda659b01d9703ba9ddc888e787d4510b97b2e6b + checksum: 10/88dc5798ef004965d9edd5d0cacd912bcaf6e872476ec58f86ed3edc5d2ab7c74c2286779b9529838232f638a3db838744f24e7bb1e6427ed3974095940472ee languageName: node linkType: hard -"@aws-sdk/credential-provider-login@npm:3.946.0": - version: 3.946.0 - resolution: "@aws-sdk/credential-provider-login@npm:3.946.0" +"@aws-sdk/credential-provider-login@npm:^3.972.18": + version: 3.972.18 + resolution: "@aws-sdk/credential-provider-login@npm:3.972.18" dependencies: - "@aws-sdk/core": "npm:3.946.0" - "@aws-sdk/nested-clients": "npm:3.946.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/shared-ini-file-loader": "npm:^4.4.0" - "@smithy/types": "npm:^4.9.0" - tslib: "npm:^2.6.2" - checksum: 10/c6af368cee31813f2fc33d7fe9739f5a6ca5d2501bd9030237cdec1c60d95fe08181224b179d7b6694b5293d0a1b0f4a43a487e5a0caf4f7ad425a7a7104d28e - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-login@npm:^3.972.16": - version: 3.972.16 - resolution: "@aws-sdk/credential-provider-login@npm:3.972.16" - dependencies: - "@aws-sdk/core": "npm:^3.973.18" - "@aws-sdk/nested-clients": "npm:^3.996.6" + "@aws-sdk/core": "npm:^3.973.19" + "@aws-sdk/nested-clients": "npm:^3.996.8" "@aws-sdk/types": "npm:^3.973.5" "@smithy/property-provider": "npm:^4.2.11" "@smithy/protocol-http": "npm:^5.3.11" "@smithy/shared-ini-file-loader": "npm:^4.4.6" "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/d1a301f476f2726d055e54cb81d7a44c34c54704e6d0a4dfeb1c269e962276d7f8b8395ab99e2068a8ad413e990fb8ba39a3f521d7105b1a0a7a8ab65fcfaab9 + checksum: 10/d4236574005ae303d5297f93c698257148ca16fc71643c72663a92f6ea5387fece9a91b03eb2e3359ba086554a2ea8a9ec1e1791decd45c066fdcd37c98e106b languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.651.1": - version: 3.651.1 - resolution: "@aws-sdk/credential-provider-node@npm:3.651.1" +"@aws-sdk/credential-provider-node@npm:^3.350.0, @aws-sdk/credential-provider-node@npm:^3.972.19": + version: 3.972.19 + resolution: "@aws-sdk/credential-provider-node@npm:3.972.19" dependencies: - "@aws-sdk/credential-provider-env": "npm:3.649.0" - "@aws-sdk/credential-provider-http": "npm:3.649.0" - "@aws-sdk/credential-provider-ini": "npm:3.651.1" - "@aws-sdk/credential-provider-process": "npm:3.649.0" - "@aws-sdk/credential-provider-sso": "npm:3.651.1" - "@aws-sdk/credential-provider-web-identity": "npm:3.649.0" - "@aws-sdk/types": "npm:3.649.0" - "@smithy/credential-provider-imds": "npm:^3.2.1" - "@smithy/property-provider": "npm:^3.1.4" - "@smithy/shared-ini-file-loader": "npm:^3.1.5" - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/1edcf7b2f7fe4efd0f6bd784d30bb32e3da7e04e1cecb62a43f75fb56a1f398c9155ecc58fc03e43b4f1cb45a3f23603d0b8f898ce2f994977a1481a1e806832 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-node@npm:3.946.0": - version: 3.946.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.946.0" - dependencies: - "@aws-sdk/credential-provider-env": "npm:3.946.0" - "@aws-sdk/credential-provider-http": "npm:3.946.0" - "@aws-sdk/credential-provider-ini": "npm:3.946.0" - "@aws-sdk/credential-provider-process": "npm:3.946.0" - "@aws-sdk/credential-provider-sso": "npm:3.946.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.946.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/credential-provider-imds": "npm:^4.2.5" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/shared-ini-file-loader": "npm:^4.4.0" - "@smithy/types": "npm:^4.9.0" - tslib: "npm:^2.6.2" - checksum: 10/60b08bef3b23af39aa59b44a7d65cfcdf708f04e17215e28fd03673a4a07d04261d8b4e6cf5b4c46b9b13c0ebc9bd999352ef839831595aa280cfa6be292ff6b - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-node@npm:^3.350.0, @aws-sdk/credential-provider-node@npm:^3.972.17": - version: 3.972.17 - resolution: "@aws-sdk/credential-provider-node@npm:3.972.17" - dependencies: - "@aws-sdk/credential-provider-env": "npm:^3.972.16" - "@aws-sdk/credential-provider-http": "npm:^3.972.18" - "@aws-sdk/credential-provider-ini": "npm:^3.972.16" - "@aws-sdk/credential-provider-process": "npm:^3.972.16" - "@aws-sdk/credential-provider-sso": "npm:^3.972.16" - "@aws-sdk/credential-provider-web-identity": "npm:^3.972.16" + "@aws-sdk/credential-provider-env": "npm:^3.972.17" + "@aws-sdk/credential-provider-http": "npm:^3.972.19" + "@aws-sdk/credential-provider-ini": "npm:^3.972.18" + "@aws-sdk/credential-provider-process": "npm:^3.972.17" + "@aws-sdk/credential-provider-sso": "npm:^3.972.18" + "@aws-sdk/credential-provider-web-identity": "npm:^3.972.18" "@aws-sdk/types": "npm:^3.973.5" "@smithy/credential-provider-imds": "npm:^4.2.11" "@smithy/property-provider": "npm:^4.2.11" "@smithy/shared-ini-file-loader": "npm:^4.4.6" "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/ec9da25095b5dbe69ea509e079ff5e31d8d2fb019101b6112adcb0adbbbac4d20944d257151dff49e0061852e087acf7c54e35f3bcaba9bc0278f1132703ba4a + checksum: 10/514ae36e8eb534bf7b17d1f4817a8704df10ea3c169a42f4d6ab3b817abbc0ce65f82e20ab8ac50b29486a864507b7a6010019b5af931cffd52c551384498b15 languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.649.0": - version: 3.649.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.649.0" +"@aws-sdk/credential-provider-process@npm:^3.972.17": + version: 3.972.17 + resolution: "@aws-sdk/credential-provider-process@npm:3.972.17" dependencies: - "@aws-sdk/types": "npm:3.649.0" - "@smithy/property-provider": "npm:^3.1.4" - "@smithy/shared-ini-file-loader": "npm:^3.1.5" - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/15e46d147ca3da269ea6e8490d7e13206ce8346f862c5601a375ce933c379804aaeab2c7a3409a21586c96309fd9c7ca72bbc6cb65b07c1ad0a805dde6460ed5 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-process@npm:3.946.0": - version: 3.946.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.946.0" - dependencies: - "@aws-sdk/core": "npm:3.946.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/shared-ini-file-loader": "npm:^4.4.0" - "@smithy/types": "npm:^4.9.0" - tslib: "npm:^2.6.2" - checksum: 10/c6bdfc5e182ff26efcf0eaadde48b4be4e301f02bf3e229afd698f41c76675a61fe1e9173e4a0b29b65666dbeb269d4601c649a9e61c9086cb694f50bde2a0bf - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-process@npm:^3.972.16": - version: 3.972.16 - resolution: "@aws-sdk/credential-provider-process@npm:3.972.16" - dependencies: - "@aws-sdk/core": "npm:^3.973.18" + "@aws-sdk/core": "npm:^3.973.19" "@aws-sdk/types": "npm:^3.973.5" "@smithy/property-provider": "npm:^4.2.11" "@smithy/shared-ini-file-loader": "npm:^4.4.6" "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/c844f5bc38878e0927be969ef28ca7514a3fd5a3c69f1d907cf040655d8db66a5444370c27fc70a11ba563e08c6620710d010d01eac9d12191d2fc491920b120 + checksum: 10/37fd54e2ccbfd61629daa8dbfdffc752e4abd4ffc42cf1503a79339bf8b1d8ae594f5cb4f2183fc2ab16bb1e7b2685c4539294aec2a75090c2213dab639cea3a languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.651.1": - version: 3.651.1 - resolution: "@aws-sdk/credential-provider-sso@npm:3.651.1" +"@aws-sdk/credential-provider-sso@npm:^3.972.18": + version: 3.972.18 + resolution: "@aws-sdk/credential-provider-sso@npm:3.972.18" dependencies: - "@aws-sdk/client-sso": "npm:3.651.1" - "@aws-sdk/token-providers": "npm:3.649.0" - "@aws-sdk/types": "npm:3.649.0" - "@smithy/property-provider": "npm:^3.1.4" - "@smithy/shared-ini-file-loader": "npm:^3.1.5" - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/bfc56118499549eac2fb6860205d52cc278a7c905b57516d90918e10a6374178db4452a4924af6b8e079ae6fa5ebbbc29668b3c50f6af24e3911e86bc3d26d0b - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-sso@npm:3.946.0": - version: 3.946.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.946.0" - dependencies: - "@aws-sdk/client-sso": "npm:3.946.0" - "@aws-sdk/core": "npm:3.946.0" - "@aws-sdk/token-providers": "npm:3.946.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/shared-ini-file-loader": "npm:^4.4.0" - "@smithy/types": "npm:^4.9.0" - tslib: "npm:^2.6.2" - checksum: 10/a3a1e8bc3ebe3337e6cbff415d1a39cfb1eb7785b4d312d5de3c335a05a090e7150913bcd4c5f9b88da6e9a30bf69a48a739321646850e5650cca4b73d870d1a - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-sso@npm:^3.972.16": - version: 3.972.16 - resolution: "@aws-sdk/credential-provider-sso@npm:3.972.16" - dependencies: - "@aws-sdk/core": "npm:^3.973.18" - "@aws-sdk/nested-clients": "npm:^3.996.6" - "@aws-sdk/token-providers": "npm:3.1003.0" + "@aws-sdk/core": "npm:^3.973.19" + "@aws-sdk/nested-clients": "npm:^3.996.8" + "@aws-sdk/token-providers": "npm:3.1005.0" "@aws-sdk/types": "npm:^3.973.5" "@smithy/property-provider": "npm:^4.2.11" "@smithy/shared-ini-file-loader": "npm:^4.4.6" "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/c4cb195efd19fe4777fe3a54e8847b8f79b429616b48bf8df650eada7956f46cbc38af7787f8142310e093b8df50de6ee05d669367cb98e0ab27444ca33d6177 + checksum: 10/6a5d05329f34c2b27189fcce84db784f4ab9fd8da6eae445a8444f2194dd616eaba3b8e6b4da52de300478fd636a501756b6ec5612a6877caeee837fc877c6bf languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.649.0": - version: 3.649.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.649.0" +"@aws-sdk/credential-provider-web-identity@npm:^3.972.18": + version: 3.972.18 + resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.18" dependencies: - "@aws-sdk/types": "npm:3.649.0" - "@smithy/property-provider": "npm:^3.1.4" - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - peerDependencies: - "@aws-sdk/client-sts": ^3.649.0 - checksum: 10/cf6c0c92a701dafb39215f4c5e811b26aa71b676d1d5df0a32007eb8047acdeb965e54733418286039e096e27aabad82495ad8eade4f7584a2f70933262cc497 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-web-identity@npm:3.946.0": - version: 3.946.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.946.0" - dependencies: - "@aws-sdk/core": "npm:3.946.0" - "@aws-sdk/nested-clients": "npm:3.946.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/shared-ini-file-loader": "npm:^4.4.0" - "@smithy/types": "npm:^4.9.0" - tslib: "npm:^2.6.2" - checksum: 10/00eca35ed1df538fca1faceae1db6665ba5b22dbfd852f58d089cb211beb6e8ddecd172c3e51edd196063b40684dc1855f1a3fb4f02759652ed73eefee22268e - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-web-identity@npm:^3.972.16": - version: 3.972.16 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.16" - dependencies: - "@aws-sdk/core": "npm:^3.973.18" - "@aws-sdk/nested-clients": "npm:^3.996.6" + "@aws-sdk/core": "npm:^3.973.19" + "@aws-sdk/nested-clients": "npm:^3.996.8" "@aws-sdk/types": "npm:^3.973.5" "@smithy/property-provider": "npm:^4.2.11" "@smithy/shared-ini-file-loader": "npm:^4.4.6" "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/1eba254b8382340a2604d9c42502bda4247c171bb46d4044a5c0a221d2e19888928139cbe3ca0aa25c054f7c2c7cb3856fba48835c49ab4e292dd44dc8d64fe1 + checksum: 10/28c461ae9ee8180ad8baacd82e4ae6f63307ec52fdabfb7f618e522c08dfb4403364516b52348497c51e6e8705f41b9cac9f645bfc2da1b60e06f642abc5481b languageName: node linkType: hard "@aws-sdk/credential-providers@npm:^3.350.0": - version: 3.651.1 - resolution: "@aws-sdk/credential-providers@npm:3.651.1" + version: 3.1005.0 + resolution: "@aws-sdk/credential-providers@npm:3.1005.0" dependencies: - "@aws-sdk/client-cognito-identity": "npm:3.651.1" - "@aws-sdk/client-sso": "npm:3.651.1" - "@aws-sdk/client-sts": "npm:3.651.1" - "@aws-sdk/credential-provider-cognito-identity": "npm:3.651.1" - "@aws-sdk/credential-provider-env": "npm:3.649.0" - "@aws-sdk/credential-provider-http": "npm:3.649.0" - "@aws-sdk/credential-provider-ini": "npm:3.651.1" - "@aws-sdk/credential-provider-node": "npm:3.651.1" - "@aws-sdk/credential-provider-process": "npm:3.649.0" - "@aws-sdk/credential-provider-sso": "npm:3.651.1" - "@aws-sdk/credential-provider-web-identity": "npm:3.649.0" - "@aws-sdk/types": "npm:3.649.0" - "@smithy/credential-provider-imds": "npm:^3.2.1" - "@smithy/property-provider": "npm:^3.1.4" - "@smithy/types": "npm:^3.4.0" + "@aws-sdk/client-cognito-identity": "npm:3.1005.0" + "@aws-sdk/core": "npm:^3.973.19" + "@aws-sdk/credential-provider-cognito-identity": "npm:^3.972.11" + "@aws-sdk/credential-provider-env": "npm:^3.972.17" + "@aws-sdk/credential-provider-http": "npm:^3.972.19" + "@aws-sdk/credential-provider-ini": "npm:^3.972.18" + "@aws-sdk/credential-provider-login": "npm:^3.972.18" + "@aws-sdk/credential-provider-node": "npm:^3.972.19" + "@aws-sdk/credential-provider-process": "npm:^3.972.17" + "@aws-sdk/credential-provider-sso": "npm:^3.972.18" + "@aws-sdk/credential-provider-web-identity": "npm:^3.972.18" + "@aws-sdk/nested-clients": "npm:^3.996.8" + "@aws-sdk/types": "npm:^3.973.5" + "@smithy/config-resolver": "npm:^4.4.10" + "@smithy/core": "npm:^3.23.9" + "@smithy/credential-provider-imds": "npm:^4.2.11" + "@smithy/node-config-provider": "npm:^4.3.11" + "@smithy/property-provider": "npm:^4.2.11" + "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/ed23f905dfb8b4c78ad4b6a8871e4e9e3b63be2b3c3304e9fabdbc2ac8edf9393a6c73f14c80fcbd51b27e4c09cfbf40626c87ccf333fb7966184613b6e32561 + checksum: 10/679075ba7c092414e50e8dc969aaa616bb2b88efbfecf6780c87242079cb5de82e6971d29c8b5df831ccc3d8ecb4edfb92f1627395668fb4067a72a0c1985d4c languageName: node linkType: hard @@ -1578,34 +1103,34 @@ __metadata: linkType: hard "@aws-sdk/lib-storage@npm:^3.350.0": - version: 3.651.1 - resolution: "@aws-sdk/lib-storage@npm:3.651.1" + version: 3.1005.0 + resolution: "@aws-sdk/lib-storage@npm:3.1005.0" dependencies: - "@smithy/abort-controller": "npm:^3.1.2" - "@smithy/middleware-endpoint": "npm:^3.1.1" - "@smithy/smithy-client": "npm:^3.3.0" + "@smithy/abort-controller": "npm:^4.2.11" + "@smithy/middleware-endpoint": "npm:^4.4.23" + "@smithy/smithy-client": "npm:^4.12.3" buffer: "npm:5.6.0" events: "npm:3.3.0" stream-browserify: "npm:3.0.0" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-s3": ^3.651.1 - checksum: 10/935dc8968acff6e125d0cf4dd2e38e7da1e75c6e6e1b314891bcacddb752c8a60f271c153c73229925c44f7d48d4c8fbf4bdda3546e869849658a5766a1f3c2b + "@aws-sdk/client-s3": ^3.1005.0 + checksum: 10/fca5e79bdcb1055cf4a63958d494874270bdf7542d2de80e6ab362f66a374732e7b0018b5b2e24e0bb958ba2ebfcbe471fa549ce2b36b7bbdbc54b5e27b4b978 languageName: node linkType: hard -"@aws-sdk/middleware-bucket-endpoint@npm:3.649.0": - version: 3.649.0 - resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.649.0" +"@aws-sdk/middleware-bucket-endpoint@npm:^3.972.7": + version: 3.972.7 + resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.972.7" dependencies: - "@aws-sdk/types": "npm:3.649.0" - "@aws-sdk/util-arn-parser": "npm:3.568.0" - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/types": "npm:^3.4.0" - "@smithy/util-config-provider": "npm:^3.0.0" + "@aws-sdk/types": "npm:^3.973.5" + "@aws-sdk/util-arn-parser": "npm:^3.972.3" + "@smithy/node-config-provider": "npm:^4.3.11" + "@smithy/protocol-http": "npm:^5.3.11" + "@smithy/types": "npm:^4.13.0" + "@smithy/util-config-provider": "npm:^4.2.2" tslib: "npm:^2.6.2" - checksum: 10/6d3bd04068a1b9dc77f2714895b9226f16dd1e37d9fc8f227c387b296a6743e3b2430a9d4b95ff9651a885e49ec86d3d745666bc2ba714f65cad0536b46a3290 + checksum: 10/79b40fb636f6a6274d9017f543cbbbb6fb62c5a407a7af2045faefa9879fb6c3e26a72fd4528f92dc3327c944b6ba06d63a2192b4d3899b088d14f252cb5e6b8 languageName: node linkType: hard @@ -1622,57 +1147,37 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-expect-continue@npm:3.649.0": - version: 3.649.0 - resolution: "@aws-sdk/middleware-expect-continue@npm:3.649.0" +"@aws-sdk/middleware-expect-continue@npm:^3.972.7": + version: 3.972.7 + resolution: "@aws-sdk/middleware-expect-continue@npm:3.972.7" dependencies: - "@aws-sdk/types": "npm:3.649.0" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/types": "npm:^3.4.0" + "@aws-sdk/types": "npm:^3.973.5" + "@smithy/protocol-http": "npm:^5.3.11" + "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/96e390d4d18aa9cafdac99bd73c606b542bac5b5180c27a6ac09cce55d407bd005626d8b9a638b49f8506af20746b0509493ba78e6168139970190a63810517f + checksum: 10/dec41ef34d0c14165a11a41fa42975f6a6e9361821491b021821e5021d966326ec4a57e2023207d011ca3a5e4e1e997780e6ded7a0e78dd6f798d6c9a9b819c1 languageName: node linkType: hard -"@aws-sdk/middleware-flexible-checksums@npm:3.651.1": - version: 3.651.1 - resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.651.1" +"@aws-sdk/middleware-flexible-checksums@npm:^3.973.5": + version: 3.973.5 + resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.973.5" dependencies: "@aws-crypto/crc32": "npm:5.2.0" "@aws-crypto/crc32c": "npm:5.2.0" - "@aws-sdk/types": "npm:3.649.0" - "@smithy/is-array-buffer": "npm:^3.0.0" - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/types": "npm:^3.4.0" - "@smithy/util-middleware": "npm:^3.0.4" - "@smithy/util-utf8": "npm:^3.0.0" + "@aws-crypto/util": "npm:5.2.0" + "@aws-sdk/core": "npm:^3.973.19" + "@aws-sdk/crc64-nvme": "npm:^3.972.4" + "@aws-sdk/types": "npm:^3.973.5" + "@smithy/is-array-buffer": "npm:^4.2.2" + "@smithy/node-config-provider": "npm:^4.3.11" + "@smithy/protocol-http": "npm:^5.3.11" + "@smithy/types": "npm:^4.13.0" + "@smithy/util-middleware": "npm:^4.2.11" + "@smithy/util-stream": "npm:^4.5.17" + "@smithy/util-utf8": "npm:^4.2.2" tslib: "npm:^2.6.2" - checksum: 10/06ee0c3110472eefba88aaf37bcfe532b3aed3467bd4dbca305fc372100897ff9ecc60055e6e51fb87ec778dce0ce584a8af3ba1c2c8ccb9dc0e634929181522 - languageName: node - linkType: hard - -"@aws-sdk/middleware-host-header@npm:3.649.0": - version: 3.649.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.649.0" - dependencies: - "@aws-sdk/types": "npm:3.649.0" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/6b0c14c6d250e8ecb9bab57d194ff12c5ff3e95db4295c02d03f5fa62db49288110773b2b9f3ed9ffcd97809160be391553a4aefe8706616bc4ff26629536d70 - languageName: node - linkType: hard - -"@aws-sdk/middleware-host-header@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.936.0" - dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/types": "npm:^4.9.0" - tslib: "npm:^2.6.2" - checksum: 10/ce707c2402e50b227aa7e22134738ab61e03982ec375926bfa8b074deaeba5aa9296891960294d92aa5010e5446e49224a9d34f7beb55a5ed7b0ea749e49924b + checksum: 10/add5a4b0510a67beaf91a26fc8de241917cd7cb697c7c1ce24180d9c5898aad4603582a8e1424f609f6e9073fa40f965454e3fb11f0814b5059cc619a992c95d languageName: node linkType: hard @@ -1688,36 +1193,14 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-location-constraint@npm:3.649.0": - version: 3.649.0 - resolution: "@aws-sdk/middleware-location-constraint@npm:3.649.0" +"@aws-sdk/middleware-location-constraint@npm:^3.972.7": + version: 3.972.7 + resolution: "@aws-sdk/middleware-location-constraint@npm:3.972.7" dependencies: - "@aws-sdk/types": "npm:3.649.0" - "@smithy/types": "npm:^3.4.0" + "@aws-sdk/types": "npm:^3.973.5" + "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/08be9ddccaf6d6cc0baa66f5d822d688388445a7a4840449f480512251239b53a38267ed1b41ef25583e4b0c363f6c1e3a2c6df797d6ca3fe4bcd3bc28bea680 - languageName: node - linkType: hard - -"@aws-sdk/middleware-logger@npm:3.649.0": - version: 3.649.0 - resolution: "@aws-sdk/middleware-logger@npm:3.649.0" - dependencies: - "@aws-sdk/types": "npm:3.649.0" - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/3c1909eb49460e4c0f92de78ca7fdacc7d9f56a5ece0bcce63fce3da18620368d1f6d72106e928877af603e1c438acf914681fe44637481bcfb855c28c13ebc1 - languageName: node - linkType: hard - -"@aws-sdk/middleware-logger@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/middleware-logger@npm:3.936.0" - dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@smithy/types": "npm:^4.9.0" - tslib: "npm:^2.6.2" - checksum: 10/277d845cdf03aca6d3af548d3751fdb598462fc9877272eadc75fa24e0d27aee267fc84a3583d4116b0fe03c703c59786e56447a88c549bc7394ec8a4ec3d9ea + checksum: 10/9ddc3a5c5764aad54cdc25e0f7b95234f4ac25273fecd41ebc05d91eebcf35773905bd00ec0329517a197479b61b5401aab70dfffe46fe10a1f3ae81faf83d71 languageName: node linkType: hard @@ -1732,31 +1215,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-recursion-detection@npm:3.649.0": - version: 3.649.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.649.0" - dependencies: - "@aws-sdk/types": "npm:3.649.0" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/20d593eedc5ddb0ebe778a05e056a152101e737fed7918889490fce4fae3b636ac0e7fe2ebd7ae70e2e7f6dfebd292072d7e46514050e49d682e43cf069e97b1 - languageName: node - linkType: hard - -"@aws-sdk/middleware-recursion-detection@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.936.0" - dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@aws/lambda-invoke-store": "npm:^0.2.0" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/types": "npm:^4.9.0" - tslib: "npm:^2.6.2" - checksum: 10/55fe5db2e8ef0dfcf0e3b37ea0e3640766c44d743f327b7b4dc33d764559908a918edfa4a04a3e04c2e981164998f81a52f747979a28aeed1835a29fd6634a01 - languageName: node - linkType: hard - "@aws-sdk/middleware-recursion-detection@npm:^3.972.7": version: 3.972.7 resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.7" @@ -1770,61 +1228,39 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-sdk-s3@npm:3.651.1": - version: 3.651.1 - resolution: "@aws-sdk/middleware-sdk-s3@npm:3.651.1" +"@aws-sdk/middleware-sdk-s3@npm:^3.972.19": + version: 3.972.19 + resolution: "@aws-sdk/middleware-sdk-s3@npm:3.972.19" dependencies: - "@aws-sdk/core": "npm:3.651.1" - "@aws-sdk/types": "npm:3.649.0" - "@aws-sdk/util-arn-parser": "npm:3.568.0" - "@smithy/core": "npm:^2.4.1" - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/signature-v4": "npm:^4.1.1" - "@smithy/smithy-client": "npm:^3.3.0" - "@smithy/types": "npm:^3.4.0" - "@smithy/util-config-provider": "npm:^3.0.0" - "@smithy/util-middleware": "npm:^3.0.4" - "@smithy/util-stream": "npm:^3.1.4" - "@smithy/util-utf8": "npm:^3.0.0" + "@aws-sdk/core": "npm:^3.973.19" + "@aws-sdk/types": "npm:^3.973.5" + "@aws-sdk/util-arn-parser": "npm:^3.972.3" + "@smithy/core": "npm:^3.23.9" + "@smithy/node-config-provider": "npm:^4.3.11" + "@smithy/protocol-http": "npm:^5.3.11" + "@smithy/signature-v4": "npm:^5.3.11" + "@smithy/smithy-client": "npm:^4.12.3" + "@smithy/types": "npm:^4.13.0" + "@smithy/util-config-provider": "npm:^4.2.2" + "@smithy/util-middleware": "npm:^4.2.11" + "@smithy/util-stream": "npm:^4.5.17" + "@smithy/util-utf8": "npm:^4.2.2" tslib: "npm:^2.6.2" - checksum: 10/d7da62619b2ec412fdde5071944d912da8291fb0cdf5d3ab4253f1601e59c5c9c1c19aa5b68a8599c38dedf0f5f3e295b63619d196d9d74fba76ce70aa7b69ec + checksum: 10/253a60be0856b3d7732428278a2672c699b65192202c4461287baa4842fde2c0b1c2ad20ef24cb2ce556fdffcb39485392dceb4e8dfc14546baef3ea2ac35678 languageName: node linkType: hard -"@aws-sdk/middleware-sdk-s3@npm:3.946.0": - version: 3.946.0 - resolution: "@aws-sdk/middleware-sdk-s3@npm:3.946.0" +"@aws-sdk/middleware-sdk-sqs@npm:^3.972.14": + version: 3.972.14 + resolution: "@aws-sdk/middleware-sdk-sqs@npm:3.972.14" dependencies: - "@aws-sdk/core": "npm:3.946.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-arn-parser": "npm:3.893.0" - "@smithy/core": "npm:^3.18.7" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/signature-v4": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.10" - "@smithy/types": "npm:^4.9.0" - "@smithy/util-config-provider": "npm:^4.2.0" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-stream": "npm:^4.5.6" - "@smithy/util-utf8": "npm:^4.2.0" + "@aws-sdk/types": "npm:^3.973.5" + "@smithy/smithy-client": "npm:^4.12.3" + "@smithy/types": "npm:^4.13.0" + "@smithy/util-hex-encoding": "npm:^4.2.2" + "@smithy/util-utf8": "npm:^4.2.2" tslib: "npm:^2.6.2" - checksum: 10/97b2ae196c1edfb48eb8b33332d2864053bf7ef152fade966817f9c00f76a5941e48f2224fbbcec07bc5d3f7d3b86833e1978f4b1161480d4863b971d4477876 - languageName: node - linkType: hard - -"@aws-sdk/middleware-sdk-sqs@npm:3.649.0": - version: 3.649.0 - resolution: "@aws-sdk/middleware-sdk-sqs@npm:3.649.0" - dependencies: - "@aws-sdk/types": "npm:3.649.0" - "@smithy/smithy-client": "npm:^3.3.0" - "@smithy/types": "npm:^3.4.0" - "@smithy/util-hex-encoding": "npm:^3.0.0" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10/49ce831e3ec72f5330ddd7a95333d76c8814e7fd9bc3bf28d25178bb577df7e9790ab7909d763ca34655ba7154f29abfc4eb035491da61636b10075bd0b9e958 + checksum: 10/6cf141714951ba8e31757ac250e850f24b9d8642ab43dcd94ec74a685611157d9555184c839855226134f565b667a9cf16870fa389fdefb2dfdc373772fd2b5b languageName: node linkType: hard @@ -1838,149 +1274,76 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-ssec@npm:3.649.0": - version: 3.649.0 - resolution: "@aws-sdk/middleware-ssec@npm:3.649.0" +"@aws-sdk/middleware-ssec@npm:^3.972.7": + version: 3.972.7 + resolution: "@aws-sdk/middleware-ssec@npm:3.972.7" dependencies: - "@aws-sdk/types": "npm:3.649.0" - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/1a9292038d2ae005528cd2c633d083910d575c3055c8b530746c239664074b0775cb705a5b5800de19d4ed4b8af333c7f6d91eb718e93715552997c4386b0403 - languageName: node - linkType: hard - -"@aws-sdk/middleware-user-agent@npm:3.649.0": - version: 3.649.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.649.0" - dependencies: - "@aws-sdk/types": "npm:3.649.0" - "@aws-sdk/util-endpoints": "npm:3.649.0" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/4e5c428c7869729850b1f7050071b82ac38f144c61f5580d6ee241b5ad87266df9001eb335e19802d5c318e23db0c5ee40fb5c00be14855e1f141f2bb22c6ef4 - languageName: node - linkType: hard - -"@aws-sdk/middleware-user-agent@npm:3.946.0": - version: 3.946.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.946.0" - dependencies: - "@aws-sdk/core": "npm:3.946.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@smithy/core": "npm:^3.18.7" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/types": "npm:^4.9.0" - tslib: "npm:^2.6.2" - checksum: 10/db44fc55412e6d7d1fd6dfa356b44321f157961afd830956bd040233e453243a4d60e410edb9d244972e38f365ff0dd0798a339d1814d6322a3838c0680ac950 - languageName: node - linkType: hard - -"@aws-sdk/middleware-user-agent@npm:^3.972.18": - version: 3.972.18 - resolution: "@aws-sdk/middleware-user-agent@npm:3.972.18" - dependencies: - "@aws-sdk/core": "npm:^3.973.18" "@aws-sdk/types": "npm:^3.973.5" - "@aws-sdk/util-endpoints": "npm:^3.996.4" - "@smithy/core": "npm:^3.23.8" - "@smithy/protocol-http": "npm:^5.3.11" "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/d535949d555c12b97b99348d8aab526eaaefb7cd77db734779043ccda473f147fe7f1fa84cffce04a73b81bb1152b6f205c94ea25ac083847595602402af5c4b + checksum: 10/132d841a4cab1432bd3b6b9fc1212cdb95e5329f07c4ba8307a2a376d0649dbed01bfd61a2648cfd8142bf59c405e6af7b3637fa63358eec498894e6280b94ae languageName: node linkType: hard -"@aws-sdk/nested-clients@npm:3.946.0": - version: 3.946.0 - resolution: "@aws-sdk/nested-clients@npm:3.946.0" +"@aws-sdk/middleware-user-agent@npm:^3.972.20": + version: 3.972.20 + resolution: "@aws-sdk/middleware-user-agent@npm:3.972.20" dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.946.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.946.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.946.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.7" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.14" - "@smithy/middleware-retry": "npm:^4.4.14" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.10" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" - "@smithy/util-base64": "npm:^4.3.0" - "@smithy/util-body-length-browser": "npm:^4.2.0" - "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.13" - "@smithy/util-defaults-mode-node": "npm:^4.2.16" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" - "@smithy/util-utf8": "npm:^4.2.0" + "@aws-sdk/core": "npm:^3.973.19" + "@aws-sdk/types": "npm:^3.973.5" + "@aws-sdk/util-endpoints": "npm:^3.996.4" + "@smithy/core": "npm:^3.23.9" + "@smithy/protocol-http": "npm:^5.3.11" + "@smithy/types": "npm:^4.13.0" + "@smithy/util-retry": "npm:^4.2.11" tslib: "npm:^2.6.2" - checksum: 10/137089ad8cdca5e864e1643acfea6305d9723d1dd4e842fc37693374391c8ce8575b4e23757c2939530e9cf4bec2821e30e1ef18abb73d6d0d8c23880658f6cc + checksum: 10/e6028a242fa383f1c53151c31c6e4d4702fc82c0901c42fad7a285b51be236184549bd3075da27153f615372e12694ff6a6f40e082095d3ad246dedb3ca98e0f languageName: node linkType: hard -"@aws-sdk/nested-clients@npm:^3.996.6": - version: 3.996.6 - resolution: "@aws-sdk/nested-clients@npm:3.996.6" +"@aws-sdk/nested-clients@npm:^3.996.8": + version: 3.996.8 + resolution: "@aws-sdk/nested-clients@npm:3.996.8" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:^3.973.18" + "@aws-sdk/core": "npm:^3.973.19" "@aws-sdk/middleware-host-header": "npm:^3.972.7" "@aws-sdk/middleware-logger": "npm:^3.972.7" "@aws-sdk/middleware-recursion-detection": "npm:^3.972.7" - "@aws-sdk/middleware-user-agent": "npm:^3.972.18" + "@aws-sdk/middleware-user-agent": "npm:^3.972.20" "@aws-sdk/region-config-resolver": "npm:^3.972.7" "@aws-sdk/types": "npm:^3.973.5" "@aws-sdk/util-endpoints": "npm:^3.996.4" "@aws-sdk/util-user-agent-browser": "npm:^3.972.7" - "@aws-sdk/util-user-agent-node": "npm:^3.973.3" + "@aws-sdk/util-user-agent-node": "npm:^3.973.5" "@smithy/config-resolver": "npm:^4.4.10" - "@smithy/core": "npm:^3.23.8" + "@smithy/core": "npm:^3.23.9" "@smithy/fetch-http-handler": "npm:^5.3.13" "@smithy/hash-node": "npm:^4.2.11" "@smithy/invalid-dependency": "npm:^4.2.11" "@smithy/middleware-content-length": "npm:^4.2.11" - "@smithy/middleware-endpoint": "npm:^4.4.22" - "@smithy/middleware-retry": "npm:^4.4.39" + "@smithy/middleware-endpoint": "npm:^4.4.23" + "@smithy/middleware-retry": "npm:^4.4.40" "@smithy/middleware-serde": "npm:^4.2.12" "@smithy/middleware-stack": "npm:^4.2.11" "@smithy/node-config-provider": "npm:^4.3.11" "@smithy/node-http-handler": "npm:^4.4.14" "@smithy/protocol-http": "npm:^5.3.11" - "@smithy/smithy-client": "npm:^4.12.2" + "@smithy/smithy-client": "npm:^4.12.3" "@smithy/types": "npm:^4.13.0" "@smithy/url-parser": "npm:^4.2.11" "@smithy/util-base64": "npm:^4.3.2" "@smithy/util-body-length-browser": "npm:^4.2.2" "@smithy/util-body-length-node": "npm:^4.2.3" - "@smithy/util-defaults-mode-browser": "npm:^4.3.38" - "@smithy/util-defaults-mode-node": "npm:^4.2.41" + "@smithy/util-defaults-mode-browser": "npm:^4.3.39" + "@smithy/util-defaults-mode-node": "npm:^4.2.42" "@smithy/util-endpoints": "npm:^3.3.2" "@smithy/util-middleware": "npm:^4.2.11" "@smithy/util-retry": "npm:^4.2.11" "@smithy/util-utf8": "npm:^4.2.2" tslib: "npm:^2.6.2" - checksum: 10/7f96187b9f4119c57e0b223ff7bfd10ab7a0c0ea0d4dcdad4a0bdf6ad5465e97cd807e8a5dd945c1293dd9a0517ffb262c9d3c9441dd4b37549c4d92e5d695e8 + checksum: 10/939f062f1cd022e03276f58d181832716c02269ec6f2c8fbd01fbebe6353132132611a01c7dc8e4fe9238c5f00b1ef7ca259de2db76cfb8db7fadc13cf6b8478 languageName: node linkType: hard @@ -2028,33 +1391,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/region-config-resolver@npm:3.649.0": - version: 3.649.0 - resolution: "@aws-sdk/region-config-resolver@npm:3.649.0" - dependencies: - "@aws-sdk/types": "npm:3.649.0" - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/types": "npm:^3.4.0" - "@smithy/util-config-provider": "npm:^3.0.0" - "@smithy/util-middleware": "npm:^3.0.4" - tslib: "npm:^2.6.2" - checksum: 10/f1bff1161ca1f506220e4f0d36ebbdec2e43382b21c4469cd2ad54f622e8cbd9ba385a0598a9c6a127431b1d056596cfa709f767b54fcf34c950d52778429d87 - languageName: node - linkType: hard - -"@aws-sdk/region-config-resolver@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/region-config-resolver@npm:3.936.0" - dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/types": "npm:^4.9.0" - tslib: "npm:^2.6.2" - checksum: 10/384ffaba2aacb86987768a2208d29f8495322ba4ccb8e536d2aeeea7dbc92ac35bf624b9e15dee63430113f7e341d9f155ca9f72ae96bf2436616a5705f790f2 - languageName: node - linkType: hard - "@aws-sdk/region-config-resolver@npm:^3.972.7": version: 3.972.7 resolution: "@aws-sdk/region-config-resolver@npm:3.972.7" @@ -2068,76 +1404,32 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/signature-v4-multi-region@npm:3.651.1": - version: 3.651.1 - resolution: "@aws-sdk/signature-v4-multi-region@npm:3.651.1" +"@aws-sdk/signature-v4-multi-region@npm:^3.996.7": + version: 3.996.7 + resolution: "@aws-sdk/signature-v4-multi-region@npm:3.996.7" dependencies: - "@aws-sdk/middleware-sdk-s3": "npm:3.651.1" - "@aws-sdk/types": "npm:3.649.0" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/signature-v4": "npm:^4.1.1" - "@smithy/types": "npm:^3.4.0" + "@aws-sdk/middleware-sdk-s3": "npm:^3.972.19" + "@aws-sdk/types": "npm:^3.973.5" + "@smithy/protocol-http": "npm:^5.3.11" + "@smithy/signature-v4": "npm:^5.3.11" + "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/6653b7ef4793906e5726ff4cc93ccece0e07117daca4ebf9bf22299892884d9d2879cd480ccf317b6162797ad2a120c102a77d36fa11dcc63d3e73a014942f68 + checksum: 10/385f1be9b392c4f9dd0bdd1baa578fe479c331503b49e42935f3cb7857c96b0d18eb0417158924f5fbfb1112f440ad017c0ccbd942221b10a11edc968007ca37 languageName: node linkType: hard -"@aws-sdk/signature-v4-multi-region@npm:3.946.0": - version: 3.946.0 - resolution: "@aws-sdk/signature-v4-multi-region@npm:3.946.0" +"@aws-sdk/token-providers@npm:3.1005.0": + version: 3.1005.0 + resolution: "@aws-sdk/token-providers@npm:3.1005.0" dependencies: - "@aws-sdk/middleware-sdk-s3": "npm:3.946.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/signature-v4": "npm:^5.3.5" - "@smithy/types": "npm:^4.9.0" - tslib: "npm:^2.6.2" - checksum: 10/a76e1fb93e7b86710d2aec3a6c97761681b2e5f25358b8b04fe0ccf49b0ae159647c8159305294e4d1a953b1514851782c3b35b56f00a7c41c6f8fe1c3d6834c - languageName: node - linkType: hard - -"@aws-sdk/token-providers@npm:3.1003.0": - version: 3.1003.0 - resolution: "@aws-sdk/token-providers@npm:3.1003.0" - dependencies: - "@aws-sdk/core": "npm:^3.973.18" - "@aws-sdk/nested-clients": "npm:^3.996.6" + "@aws-sdk/core": "npm:^3.973.19" + "@aws-sdk/nested-clients": "npm:^3.996.8" "@aws-sdk/types": "npm:^3.973.5" "@smithy/property-provider": "npm:^4.2.11" "@smithy/shared-ini-file-loader": "npm:^4.4.6" "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/bf9eff49701658678a2fe028e7e8b2714ef967937471684ec7b1909620a2e399db63961e6a98b93811e02e5d9fd4ea433ab4de5bcd66426b8ebf28dc873bade4 - languageName: node - linkType: hard - -"@aws-sdk/token-providers@npm:3.649.0": - version: 3.649.0 - resolution: "@aws-sdk/token-providers@npm:3.649.0" - dependencies: - "@aws-sdk/types": "npm:3.649.0" - "@smithy/property-provider": "npm:^3.1.4" - "@smithy/shared-ini-file-loader": "npm:^3.1.5" - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - peerDependencies: - "@aws-sdk/client-sso-oidc": ^3.649.0 - checksum: 10/9ddbfeb1003e6ca629f385feb2e00ee7e0d90ea1047eed3e3b9a783dc0175f5fba59a836dff77ab983102df4dcd65c65f1d56797c998527daa4fc670e66a0be4 - languageName: node - linkType: hard - -"@aws-sdk/token-providers@npm:3.946.0": - version: 3.946.0 - resolution: "@aws-sdk/token-providers@npm:3.946.0" - dependencies: - "@aws-sdk/core": "npm:3.946.0" - "@aws-sdk/nested-clients": "npm:3.946.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/shared-ini-file-loader": "npm:^4.4.0" - "@smithy/types": "npm:^4.9.0" - tslib: "npm:^2.6.2" - checksum: 10/8c9e60a94bda6b9152e843f45ac6a53fc91b825eaa5ae3061aec12391d1abd561184d681eb71fc0c3c84fce7ea43b53d1ab13510c21d72b345361d734b47f988 + checksum: 10/b7fb8a5b93bcaa5194e502a5e2402c492e80463d0e721647ebab9d5f3c4d66086ed8ddaa5f3e7635f98ba2718d1e6c292d0c436267916d86f7932b40040a7b65 languageName: node linkType: hard @@ -2151,26 +1443,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/types@npm:3.649.0": - version: 3.649.0 - resolution: "@aws-sdk/types@npm:3.649.0" - dependencies: - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/9929e255909c7375c965e94e33871d38a841a9a13797b7b729d8c45b0aa91d5591d80ca18a879982a2387f12c9ce4bd5b3401182fb76046bf5f180c1e3c5e951 - languageName: node - linkType: hard - -"@aws-sdk/types@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/types@npm:3.936.0" - dependencies: - "@smithy/types": "npm:^4.9.0" - tslib: "npm:^2.6.2" - checksum: 10/a8d11e5c88c0006962f7fb6dd37a7cab38ee5e270ffc8046c27a19b709179e1744b173e5538599f3c2326301549fbd18ab473c7dd018f8b49cff1e9c201ccf03 - languageName: node - linkType: hard - "@aws-sdk/types@npm:^3.222.0, @aws-sdk/types@npm:^3.347.0, @aws-sdk/types@npm:^3.973.5": version: 3.973.5 resolution: "@aws-sdk/types@npm:3.973.5" @@ -2192,25 +1464,7 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-arn-parser@npm:3.568.0": - version: 3.568.0 - resolution: "@aws-sdk/util-arn-parser@npm:3.568.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10/b1a7f93b4f47136ee8d71bcbbd2d5d19581007f0684aff252d3bee6b9ccc7c56e765255bb1bea847171b40cdbd2eca0fb102f24cba857d1c79c54747e8ee0855 - languageName: node - linkType: hard - -"@aws-sdk/util-arn-parser@npm:3.893.0": - version: 3.893.0 - resolution: "@aws-sdk/util-arn-parser@npm:3.893.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10/f809777714618c63e92fd5881c9573081bc94df9c5cce53917b8e1db4efa1d44f1132f6c9179f9babc4964c648d42ebee5c1ad75641c6b336007be3df561053f - languageName: node - linkType: hard - -"@aws-sdk/util-arn-parser@npm:^3.310.0": +"@aws-sdk/util-arn-parser@npm:^3.310.0, @aws-sdk/util-arn-parser@npm:^3.972.3": version: 3.972.3 resolution: "@aws-sdk/util-arn-parser@npm:3.972.3" dependencies: @@ -2229,31 +1483,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.649.0": - version: 3.649.0 - resolution: "@aws-sdk/util-endpoints@npm:3.649.0" - dependencies: - "@aws-sdk/types": "npm:3.649.0" - "@smithy/types": "npm:^3.4.0" - "@smithy/util-endpoints": "npm:^2.1.0" - tslib: "npm:^2.6.2" - checksum: 10/865d39a0d76d2d131246184ffe3271e647d066a947c50dbd31e19990aa71fcc8fc036ed896ef562e02cfeafe1c47169b0bf20da840ad99553c7dc853df434b12 - languageName: node - linkType: hard - -"@aws-sdk/util-endpoints@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/util-endpoints@npm:3.936.0" - dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" - "@smithy/util-endpoints": "npm:^3.2.5" - tslib: "npm:^2.6.2" - checksum: 10/fd9d995cd79886df424a8aea9407d9f810ea1a28af0d1f31f63310edc5839e086732479932d470404376dd5aa5672be1210cb62b9ce3942da29c0461215b94f2 - languageName: node - linkType: hard - "@aws-sdk/util-endpoints@npm:^3.996.4": version: 3.996.4 resolution: "@aws-sdk/util-endpoints@npm:3.996.4" @@ -2268,11 +1497,11 @@ __metadata: linkType: hard "@aws-sdk/util-locate-window@npm:^3.0.0": - version: 3.183.0 - resolution: "@aws-sdk/util-locate-window@npm:3.183.0" + version: 3.965.5 + resolution: "@aws-sdk/util-locate-window@npm:3.965.5" dependencies: - tslib: "npm:^2.3.1" - checksum: 10/6aefa7ae6aa585018d551e48b92cdacd9cd38904b62f4a604f4a45f91516c4d9351835fd6e25fbbeb21a9c110db23062f58e9a8aa204b07b6f036d3b760f8b4a + tslib: "npm:^2.6.2" + checksum: 10/66391a7f6d0c383d6bc3ea67e35b0b0164798d9acbe47271fbc676cf74e7a56690f48425a91cce70e764c53ca46619f4abc076b569d8f991c19dd7c1ac4b0a79 languageName: node linkType: hard @@ -2306,30 +1535,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-user-agent-browser@npm:3.649.0": - version: 3.649.0 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.649.0" - dependencies: - "@aws-sdk/types": "npm:3.649.0" - "@smithy/types": "npm:^3.4.0" - bowser: "npm:^2.11.0" - tslib: "npm:^2.6.2" - checksum: 10/54a30c9fb023091baeae64c45c91d8aed79a82a5cf107c2ab2ee722934cc9d2d3289cca8d58210eb6aaddce3d686e4d05873d5c9cdb8559885f92d162ec7ec7d - languageName: node - linkType: hard - -"@aws-sdk/util-user-agent-browser@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.936.0" - dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@smithy/types": "npm:^4.9.0" - bowser: "npm:^2.11.0" - tslib: "npm:^2.6.2" - checksum: 10/3b08066300dfbe202ba510d547ec4988c565e0cc103c726d452696942e5c0a66dfe2b271398ee6d46e8d3da546f094d491b74f8aa91ce3ba6553e5c6802a650e - languageName: node - linkType: hard - "@aws-sdk/util-user-agent-browser@npm:^3.972.7": version: 3.972.7 resolution: "@aws-sdk/util-user-agent-browser@npm:3.972.7" @@ -2342,46 +1547,11 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.649.0": - version: 3.649.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.649.0" +"@aws-sdk/util-user-agent-node@npm:^3.973.5": + version: 3.973.5 + resolution: "@aws-sdk/util-user-agent-node@npm:3.973.5" dependencies: - "@aws-sdk/types": "npm:3.649.0" - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - peerDependencies: - aws-crt: ">=1.0.0" - peerDependenciesMeta: - aws-crt: - optional: true - checksum: 10/24c055031299ffb250a84ffd562bd4ebcc74378a4bd1dbe43c073dc021b7c28dca16ec9758339e46d23fa8f3a0e5869ae20751147750db8a62030438cc97e96b - languageName: node - linkType: hard - -"@aws-sdk/util-user-agent-node@npm:3.946.0": - version: 3.946.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.946.0" - dependencies: - "@aws-sdk/middleware-user-agent": "npm:3.946.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/types": "npm:^4.9.0" - tslib: "npm:^2.6.2" - peerDependencies: - aws-crt: ">=1.0.0" - peerDependenciesMeta: - aws-crt: - optional: true - checksum: 10/7f81c001abb8ea7fc8da9f342875082fa5f0c3c069b102a3fdece8e37e9560230c0f30056cf27dd4bdc47b8a5b2cc2d127c2029bf264fdb980f77729f8cee032 - languageName: node - linkType: hard - -"@aws-sdk/util-user-agent-node@npm:^3.973.3": - version: 3.973.3 - resolution: "@aws-sdk/util-user-agent-node@npm:3.973.3" - dependencies: - "@aws-sdk/middleware-user-agent": "npm:^3.972.18" + "@aws-sdk/middleware-user-agent": "npm:^3.972.20" "@aws-sdk/types": "npm:^3.973.5" "@smithy/node-config-provider": "npm:^4.3.11" "@smithy/types": "npm:^4.13.0" @@ -2391,28 +1561,7 @@ __metadata: peerDependenciesMeta: aws-crt: optional: true - checksum: 10/256ff1ff0b493a94cc792a2cb2f289068a7edc5df2e7c523ac18de0525c4e62d105b251d6d0cee4af08c2e560e13c804da17afa6f0ee55f5b289e1233be06e1f - languageName: node - linkType: hard - -"@aws-sdk/xml-builder@npm:3.649.0": - version: 3.649.0 - resolution: "@aws-sdk/xml-builder@npm:3.649.0" - dependencies: - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/b47c767169d4f440a687b0dd343c2016bd8e3ea023d3a9c64256fe472d5ffe9eccb4bb1fa42bee0693cae11ed86bd866a7a98fd62dcf65dab34926c5be82579f - languageName: node - linkType: hard - -"@aws-sdk/xml-builder@npm:3.930.0": - version: 3.930.0 - resolution: "@aws-sdk/xml-builder@npm:3.930.0" - dependencies: - "@smithy/types": "npm:^4.9.0" - fast-xml-parser: "npm:5.2.5" - tslib: "npm:^2.6.2" - checksum: 10/7956588f54e282c0b6cefaeefec6103c0cf787427f29d599330241b5349635f0cc3742df0a3aa6d1792b237178e3cfa3ee156379aa160fb8d7bd854c4608263d + checksum: 10/8d1f6d5d9d731eaa7f0b1abb5ee9ff87556ff509c493231d0bf17b6f0ffe405c92c9bef006f037f173b025f527a930f9473e7d826a6579655b366b57e790a2cc languageName: node linkType: hard @@ -2427,7 +1576,7 @@ __metadata: languageName: node linkType: hard -"@aws/lambda-invoke-store@npm:^0.2.0, @aws/lambda-invoke-store@npm:^0.2.2": +"@aws/lambda-invoke-store@npm:^0.2.2": version: 0.2.3 resolution: "@aws/lambda-invoke-store@npm:0.2.3" checksum: 10/d0efa8ca73b2d8dc0bf634525eefa1b72cda85f5d47366264849343a6f2860cfa5c52b7f766a16b78da8406bbd3ee975da3abb1dbe38183f8af95413eafeb256 @@ -19067,7 +18216,7 @@ __metadata: languageName: node linkType: hard -"@smithy/abort-controller@npm:^3.1.2, @smithy/abort-controller@npm:^3.1.9": +"@smithy/abort-controller@npm:^3.1.9": version: 3.1.9 resolution: "@smithy/abort-controller@npm:3.1.9" dependencies: @@ -19087,39 +18236,26 @@ __metadata: languageName: node linkType: hard -"@smithy/chunked-blob-reader-native@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/chunked-blob-reader-native@npm:3.0.0" +"@smithy/chunked-blob-reader-native@npm:^4.2.3": + version: 4.2.3 + resolution: "@smithy/chunked-blob-reader-native@npm:4.2.3" dependencies: - "@smithy/util-base64": "npm:^3.0.0" + "@smithy/util-base64": "npm:^4.3.2" tslib: "npm:^2.6.2" - checksum: 10/424aa83f4fc081625a03ec6c64e74ae38c740c0b202d0b998f2bf341b935613491b39c7bf701790a0625219424340d5cfb042b701bfdff4c1cbedc57ee3f2500 + checksum: 10/f1348b053c1d3e5bade4ea567795f6b87cc257e2bac2d76c44e6ea562dc18923f83fdae35b9cf0b97aa2b1d133086000144d970cb445a07a94c5620dd1dcb22a languageName: node linkType: hard -"@smithy/chunked-blob-reader@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/chunked-blob-reader@npm:3.0.0" +"@smithy/chunked-blob-reader@npm:^5.2.2": + version: 5.2.2 + resolution: "@smithy/chunked-blob-reader@npm:5.2.2" dependencies: tslib: "npm:^2.6.2" - checksum: 10/1c7955ae693aa098dd0839d7e8f9e742ab963de4ededa92f201f1982552c35ba625c1b90cf761de81deddd5002ed10f081ad46f6e0a5150066cee8b00f3f6058 + checksum: 10/07f7eca6bed69b9ff1744d2f54acbeb05dfd534de535ee9d1ff75bc7c9c3725b32d91448990c5528bbacf893a96b969b683fdb473e871805fc38d8db40b1cb6f languageName: node linkType: hard -"@smithy/config-resolver@npm:^3.0.6": - version: 3.0.6 - resolution: "@smithy/config-resolver@npm:3.0.6" - dependencies: - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/types": "npm:^3.4.0" - "@smithy/util-config-provider": "npm:^3.0.0" - "@smithy/util-middleware": "npm:^3.0.4" - tslib: "npm:^2.6.2" - checksum: 10/424c2e81ce0507bb232ece4ea2e74872ae553e134f1612c638811dfb2937cbce15c846ac1193f5872854f0a638761bacc1bddc4232df10bfed3becae48d4c897 - languageName: node - linkType: hard - -"@smithy/config-resolver@npm:^4.4.10, @smithy/config-resolver@npm:^4.4.3": +"@smithy/config-resolver@npm:^4.4.10": version: 4.4.10 resolution: "@smithy/config-resolver@npm:4.4.10" dependencies: @@ -19133,27 +18269,9 @@ __metadata: languageName: node linkType: hard -"@smithy/core@npm:^2.4.1": - version: 2.4.1 - resolution: "@smithy/core@npm:2.4.1" - dependencies: - "@smithy/middleware-endpoint": "npm:^3.1.1" - "@smithy/middleware-retry": "npm:^3.0.16" - "@smithy/middleware-serde": "npm:^3.0.4" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/smithy-client": "npm:^3.3.0" - "@smithy/types": "npm:^3.4.0" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-middleware": "npm:^3.0.4" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10/82665c86e8e7629d11c759debd95bc827b871469d796d23bbb0328971d48e16460847c39a8bdf920c5a9fd87d2680bbdeaf2688931d7810bddf5e029b2393292 - languageName: node - linkType: hard - -"@smithy/core@npm:^3.18.7, @smithy/core@npm:^3.23.8": - version: 3.23.8 - resolution: "@smithy/core@npm:3.23.8" +"@smithy/core@npm:^3.23.9": + version: 3.23.9 + resolution: "@smithy/core@npm:3.23.9" dependencies: "@smithy/middleware-serde": "npm:^4.2.12" "@smithy/protocol-http": "npm:^5.3.11" @@ -19165,24 +18283,11 @@ __metadata: "@smithy/util-utf8": "npm:^4.2.2" "@smithy/uuid": "npm:^1.1.2" tslib: "npm:^2.6.2" - checksum: 10/b36428bbff91a5691abb359081a42024378f90b8065bff5b0c95f6203d06ad730f14e0bed4544ef815c616e280c3fa796f8ed65f6afe5de989046cf1a642d60d + checksum: 10/6169cfb1d498254e163611082af6c8b718b5f4133362e3135988824c3dd805b287656be608252fc1ad3005262a3a04434f36b10c65f5e4242d245562f718f6db languageName: node linkType: hard -"@smithy/credential-provider-imds@npm:^3.2.1": - version: 3.2.1 - resolution: "@smithy/credential-provider-imds@npm:3.2.1" - dependencies: - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/property-provider": "npm:^3.1.4" - "@smithy/types": "npm:^3.4.0" - "@smithy/url-parser": "npm:^3.0.4" - tslib: "npm:^2.6.2" - checksum: 10/8d413f24161549b6c7af55353844e2fb28f27836b12ce8ad884b8cd22a70aba0662a37215be021a2a00d962fd7a797ea9483a4df385d83b8b8c6f6716014a215 - languageName: node - linkType: hard - -"@smithy/credential-provider-imds@npm:^4.2.11, @smithy/credential-provider-imds@npm:^4.2.5": +"@smithy/credential-provider-imds@npm:^4.2.11": version: 4.2.11 resolution: "@smithy/credential-provider-imds@npm:4.2.11" dependencies: @@ -19195,75 +18300,62 @@ __metadata: languageName: node linkType: hard -"@smithy/eventstream-codec@npm:^3.1.3": - version: 3.1.3 - resolution: "@smithy/eventstream-codec@npm:3.1.3" +"@smithy/eventstream-codec@npm:^4.2.11": + version: 4.2.11 + resolution: "@smithy/eventstream-codec@npm:4.2.11" dependencies: "@aws-crypto/crc32": "npm:5.2.0" - "@smithy/types": "npm:^3.4.0" - "@smithy/util-hex-encoding": "npm:^3.0.0" + "@smithy/types": "npm:^4.13.0" + "@smithy/util-hex-encoding": "npm:^4.2.2" tslib: "npm:^2.6.2" - checksum: 10/f4901b03cd8c0122519de8af48bdd3b586d3adc6837d7ff214b13d8981052a8ab8c284f551a75cfba58ff3741aac167cfa19ce24f254d067b64287951dcd6993 + checksum: 10/d5055edb6592193156636829214ab13f9228e12e98009e79c6c86dcfe334c10e4e1961024477938be3c56a12f900e1d87ab49e462729a0e2cd9de49393791c0a languageName: node linkType: hard -"@smithy/eventstream-serde-browser@npm:^3.0.7": - version: 3.0.7 - resolution: "@smithy/eventstream-serde-browser@npm:3.0.7" +"@smithy/eventstream-serde-browser@npm:^4.2.11": + version: 4.2.11 + resolution: "@smithy/eventstream-serde-browser@npm:4.2.11" dependencies: - "@smithy/eventstream-serde-universal": "npm:^3.0.6" - "@smithy/types": "npm:^3.4.0" + "@smithy/eventstream-serde-universal": "npm:^4.2.11" + "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/203215491f2d1be688fbe3fe8c84d85c109cf703894707cff55e0f4720d1e7c81372f41f74d9a5da8733058311f201b73e80844b5d58bf03aab7c4a0c0967254 + checksum: 10/10a16bb000a0192598fccb7966de7340196de311c3234f573a829766b49c5218aa1d9b9c28fb31a4216b6d264038cadbddea00dc3913f47479b4467a10dd4f1c languageName: node linkType: hard -"@smithy/eventstream-serde-config-resolver@npm:^3.0.4": - version: 3.0.4 - resolution: "@smithy/eventstream-serde-config-resolver@npm:3.0.4" +"@smithy/eventstream-serde-config-resolver@npm:^4.3.11": + version: 4.3.11 + resolution: "@smithy/eventstream-serde-config-resolver@npm:4.3.11" dependencies: - "@smithy/types": "npm:^3.4.0" + "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/073882d0b3b0b7f31261b5d900e147b5b193851affc46f89b1a737c6ab187e15de28a9521f84a39e649a6a6e8b8069cbc57f328e01d07a014c15da35f93bb38c + checksum: 10/27ddcb5af5e410af857adb99b0e0bd5aae05a9a8d9b26ca98a3ce54d6a67364df978014fbf6896fbc676b5ae6b63dd0106b60a566c040a2dcfe349b50ded65ca languageName: node linkType: hard -"@smithy/eventstream-serde-node@npm:^3.0.6": - version: 3.0.6 - resolution: "@smithy/eventstream-serde-node@npm:3.0.6" +"@smithy/eventstream-serde-node@npm:^4.2.11": + version: 4.2.11 + resolution: "@smithy/eventstream-serde-node@npm:4.2.11" dependencies: - "@smithy/eventstream-serde-universal": "npm:^3.0.6" - "@smithy/types": "npm:^3.4.0" + "@smithy/eventstream-serde-universal": "npm:^4.2.11" + "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/635543e4312cc8cd95a5f1e79b728ea5e672aafba6d77f21700279ca9ba09a8cb30ea69eaa6cacf8176355e9db528b1bbb942566df92d2974ae927a951cf2321 + checksum: 10/348cc9b6d77ecaecd98d765c030699d451ec16440f009150e7b28b7bb92947127c68ef3fbee4b10ba538fa41cdbe73f77f5a9c14e7646dd97eabd4a53c850a81 languageName: node linkType: hard -"@smithy/eventstream-serde-universal@npm:^3.0.6": - version: 3.0.6 - resolution: "@smithy/eventstream-serde-universal@npm:3.0.6" +"@smithy/eventstream-serde-universal@npm:^4.2.11": + version: 4.2.11 + resolution: "@smithy/eventstream-serde-universal@npm:4.2.11" dependencies: - "@smithy/eventstream-codec": "npm:^3.1.3" - "@smithy/types": "npm:^3.4.0" + "@smithy/eventstream-codec": "npm:^4.2.11" + "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/073eab5d5d1d421afa881ca7cf184cf28f64bc7234478338e28fe47b261701b3f9c671cdbdb7a03f5c8e4e03ece007e0c317c46f82558e03a4931771a103dcdb + checksum: 10/8efb27a1932732fe7c5ec3ef3d3014f739f1c10eb015540f3e7e2cf2801f802a47c8dcb0ae0123a9629fc9030b86edaccabc9189101ac5badd5457158f2a21c1 languageName: node linkType: hard -"@smithy/fetch-http-handler@npm:^3.2.5": - version: 3.2.5 - resolution: "@smithy/fetch-http-handler@npm:3.2.5" - dependencies: - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/querystring-builder": "npm:^3.0.4" - "@smithy/types": "npm:^3.4.0" - "@smithy/util-base64": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10/d9f6387699fa83342efe41dc5f5a3a496afcdcfc5064b379f4e45be7b3809d2a5a5b6d794dbc90494f4b647b18100b972d8fb47066231ae8bd1146457405e09c - languageName: node - linkType: hard - -"@smithy/fetch-http-handler@npm:^5.3.13, @smithy/fetch-http-handler@npm:^5.3.6": +"@smithy/fetch-http-handler@npm:^5.3.13": version: 5.3.13 resolution: "@smithy/fetch-http-handler@npm:5.3.13" dependencies: @@ -19276,31 +18368,19 @@ __metadata: languageName: node linkType: hard -"@smithy/hash-blob-browser@npm:^3.1.3": - version: 3.1.3 - resolution: "@smithy/hash-blob-browser@npm:3.1.3" +"@smithy/hash-blob-browser@npm:^4.2.12": + version: 4.2.12 + resolution: "@smithy/hash-blob-browser@npm:4.2.12" dependencies: - "@smithy/chunked-blob-reader": "npm:^3.0.0" - "@smithy/chunked-blob-reader-native": "npm:^3.0.0" - "@smithy/types": "npm:^3.4.0" + "@smithy/chunked-blob-reader": "npm:^5.2.2" + "@smithy/chunked-blob-reader-native": "npm:^4.2.3" + "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/26d1c76994d3c680ecb4e36f94a2f8c7d11054d685e200b420e7eda628415f58a293153b7dd1196e703fa0366c9fff3a74ff7024d95f2aeea5e72e9e4ab39521 + checksum: 10/280fc7f0032a17f56c73aa655cdc407690def4136bb5122ca2e5550e901c26156a565dd131528b496e0f47d264c4d57ca66e74012f20e8a7d57775ae957193a7 languageName: node linkType: hard -"@smithy/hash-node@npm:^3.0.4": - version: 3.0.4 - resolution: "@smithy/hash-node@npm:3.0.4" - dependencies: - "@smithy/types": "npm:^3.4.0" - "@smithy/util-buffer-from": "npm:^3.0.0" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10/78d98c1d98e4f7595eb32368ffa15192314f9ee7874eccdef5e6f736a4afeb151f7e8d40d6d460705c58f32633bd9dc763ff9c9447813177c5e162df8e225abd - languageName: node - linkType: hard - -"@smithy/hash-node@npm:^4.2.11, @smithy/hash-node@npm:^4.2.5": +"@smithy/hash-node@npm:^4.2.11": version: 4.2.11 resolution: "@smithy/hash-node@npm:4.2.11" dependencies: @@ -19312,28 +18392,18 @@ __metadata: languageName: node linkType: hard -"@smithy/hash-stream-node@npm:^3.1.3": - version: 3.1.3 - resolution: "@smithy/hash-stream-node@npm:3.1.3" +"@smithy/hash-stream-node@npm:^4.2.11": + version: 4.2.11 + resolution: "@smithy/hash-stream-node@npm:4.2.11" dependencies: - "@smithy/types": "npm:^3.4.0" - "@smithy/util-utf8": "npm:^3.0.0" + "@smithy/types": "npm:^4.13.0" + "@smithy/util-utf8": "npm:^4.2.2" tslib: "npm:^2.6.2" - checksum: 10/5c3faf2d6c846ceb914d5770823630e56f5b2c1a3fb2184d8a1a4668af23dcbc8337121ae3873bb86ba8f13f31434160a0d600fa1b60d9acdd150298959be901 + checksum: 10/b3caafc3f6557e5655328575d857c879fd0d31e0cc02b409ad507da42f6a2c5917fac24c2e00d1dd13566efdc53a7a91761b83fa4093f9052cbd062c7b235749 languageName: node linkType: hard -"@smithy/invalid-dependency@npm:^3.0.4": - version: 3.0.4 - resolution: "@smithy/invalid-dependency@npm:3.0.4" - dependencies: - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/ad004c5fe4fe207714c39f3af7f9c0d240e9a782b0748eb08215317396d8da8b0329e4419e55acb4dcb072f200921af03697bc6f557109e0a27f0fa63a2eb78a - languageName: node - linkType: hard - -"@smithy/invalid-dependency@npm:^4.2.11, @smithy/invalid-dependency@npm:^4.2.5": +"@smithy/invalid-dependency@npm:^4.2.11": version: 4.2.11 resolution: "@smithy/invalid-dependency@npm:4.2.11" dependencies: @@ -19370,29 +18440,18 @@ __metadata: languageName: node linkType: hard -"@smithy/md5-js@npm:^3.0.4": - version: 3.0.4 - resolution: "@smithy/md5-js@npm:3.0.4" +"@smithy/md5-js@npm:^4.2.11": + version: 4.2.11 + resolution: "@smithy/md5-js@npm:4.2.11" dependencies: - "@smithy/types": "npm:^3.4.0" - "@smithy/util-utf8": "npm:^3.0.0" + "@smithy/types": "npm:^4.13.0" + "@smithy/util-utf8": "npm:^4.2.2" tslib: "npm:^2.6.2" - checksum: 10/f84d4b37b713c6edd9e46f4e60a193fca4b6c882c4288683b334f0c3fc224abf884252e5fd9d55d04823192b1c0dca9c26f865599a8663397e51ce566c7df148 + checksum: 10/22eece7a9d58b155e5e735f8d91ba2ec0c2d4019d3eb96916cf9ec00f775b8c1d62a204f8e580a6f007cdb4046c501ec8869979c152480cce674e7a84e6dbef4 languageName: node linkType: hard -"@smithy/middleware-content-length@npm:^3.0.6": - version: 3.0.6 - resolution: "@smithy/middleware-content-length@npm:3.0.6" - dependencies: - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/f9f3f3b6099ad5c5b697e5dca0016ff2f182ed0b66739c12c9cfa46f7c92761d9ffc8425097c929e094fd030a20f60ffbf6bd701d1062592dfcb0ba88a3fe53e - languageName: node - linkType: hard - -"@smithy/middleware-content-length@npm:^4.2.11, @smithy/middleware-content-length@npm:^4.2.5": +"@smithy/middleware-content-length@npm:^4.2.11": version: 4.2.11 resolution: "@smithy/middleware-content-length@npm:4.2.11" dependencies: @@ -19403,26 +18462,11 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-endpoint@npm:^3.1.1": - version: 3.1.1 - resolution: "@smithy/middleware-endpoint@npm:3.1.1" +"@smithy/middleware-endpoint@npm:^4.4.23": + version: 4.4.23 + resolution: "@smithy/middleware-endpoint@npm:4.4.23" dependencies: - "@smithy/middleware-serde": "npm:^3.0.4" - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/shared-ini-file-loader": "npm:^3.1.5" - "@smithy/types": "npm:^3.4.0" - "@smithy/url-parser": "npm:^3.0.4" - "@smithy/util-middleware": "npm:^3.0.4" - tslib: "npm:^2.6.2" - checksum: 10/a4cc7321e1e38d99eb2a641f5a52c7c56e6bad6aecdceefb7200d97f26b0c146483d3b57c2e44330d730c445f416d26a6d2250ad7f39d6a98e9748bc8a358de7 - languageName: node - linkType: hard - -"@smithy/middleware-endpoint@npm:^4.3.14, @smithy/middleware-endpoint@npm:^4.4.22": - version: 4.4.22 - resolution: "@smithy/middleware-endpoint@npm:4.4.22" - dependencies: - "@smithy/core": "npm:^3.23.8" + "@smithy/core": "npm:^3.23.9" "@smithy/middleware-serde": "npm:^4.2.12" "@smithy/node-config-provider": "npm:^4.3.11" "@smithy/shared-ini-file-loader": "npm:^4.4.6" @@ -19430,55 +18474,28 @@ __metadata: "@smithy/url-parser": "npm:^4.2.11" "@smithy/util-middleware": "npm:^4.2.11" tslib: "npm:^2.6.2" - checksum: 10/73a0554cbabc33d51adbac55b0aa332dc3b507e6290139024024269c7b9d5a52f1a85ed73f102e75e64d1cf87f0def30cbcfdb2bbfabd9c6f857a0522521bd63 + checksum: 10/9965bfcc274473cf2c640fe69f7a85fb5df2f665efeb9c84edd6a31f047208cafdd69a3dc2638d3f86f65cfd21550073ec6e4182cd5fa96db94b52afaa9b087e languageName: node linkType: hard -"@smithy/middleware-retry@npm:^3.0.16": - version: 3.0.16 - resolution: "@smithy/middleware-retry@npm:3.0.16" - dependencies: - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/service-error-classification": "npm:^3.0.4" - "@smithy/smithy-client": "npm:^3.3.0" - "@smithy/types": "npm:^3.4.0" - "@smithy/util-middleware": "npm:^3.0.4" - "@smithy/util-retry": "npm:^3.0.4" - tslib: "npm:^2.6.2" - uuid: "npm:^9.0.1" - checksum: 10/90a3ec6dd79f200f74f9a025a6acf5ca4c87342826d88ccec7668addad1961032ba10a6018d6a16c43779dc2f296c6baf9dc00679d1113649381d41089a4decb - languageName: node - linkType: hard - -"@smithy/middleware-retry@npm:^4.4.14, @smithy/middleware-retry@npm:^4.4.39": - version: 4.4.39 - resolution: "@smithy/middleware-retry@npm:4.4.39" +"@smithy/middleware-retry@npm:^4.4.40": + version: 4.4.40 + resolution: "@smithy/middleware-retry@npm:4.4.40" dependencies: "@smithy/node-config-provider": "npm:^4.3.11" "@smithy/protocol-http": "npm:^5.3.11" "@smithy/service-error-classification": "npm:^4.2.11" - "@smithy/smithy-client": "npm:^4.12.2" + "@smithy/smithy-client": "npm:^4.12.3" "@smithy/types": "npm:^4.13.0" "@smithy/util-middleware": "npm:^4.2.11" "@smithy/util-retry": "npm:^4.2.11" "@smithy/uuid": "npm:^1.1.2" tslib: "npm:^2.6.2" - checksum: 10/57b7ab0c1ff546408d71e53fd6a4f2b7051f2a748a183016da7d2440cf54d194bcad3448ee33b7b2a895be6e7613bcb96742634793b516118fc1f7aec9b65833 + checksum: 10/052cc9d5352dd4d65db4cb8ec97eaa14df6511e3a35091b6d63f565e83307e5331b7395fcfd47a4521043a0af68128bf83972153c62cac5debc5a40be4b2d1e0 languageName: node linkType: hard -"@smithy/middleware-serde@npm:^3.0.4": - version: 3.0.4 - resolution: "@smithy/middleware-serde@npm:3.0.4" - dependencies: - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/a4d3dd79b6cc314245bfcb0e649e5869cabf6cfb8e9685ae797919ecaeb123eb0335c054c9278dba1304fe4a0cd06e71d6a77e0442f62530bfabd5df79c819da - languageName: node - linkType: hard - -"@smithy/middleware-serde@npm:^4.2.12, @smithy/middleware-serde@npm:^4.2.6": +"@smithy/middleware-serde@npm:^4.2.12": version: 4.2.12 resolution: "@smithy/middleware-serde@npm:4.2.12" dependencies: @@ -19489,17 +18506,7 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-stack@npm:^3.0.4": - version: 3.0.4 - resolution: "@smithy/middleware-stack@npm:3.0.4" - dependencies: - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/63bf03bd512367ff781e3a220a5126cb3784e982891e1dcb00cf975da6801d454ffe9d244ac67f6db2ee2f34146089d113bc9ae25f190c12a318d121ccdd03fb - languageName: node - linkType: hard - -"@smithy/middleware-stack@npm:^4.2.11, @smithy/middleware-stack@npm:^4.2.5": +"@smithy/middleware-stack@npm:^4.2.11": version: 4.2.11 resolution: "@smithy/middleware-stack@npm:4.2.11" dependencies: @@ -19509,19 +18516,7 @@ __metadata: languageName: node linkType: hard -"@smithy/node-config-provider@npm:^3.1.5": - version: 3.1.5 - resolution: "@smithy/node-config-provider@npm:3.1.5" - dependencies: - "@smithy/property-provider": "npm:^3.1.4" - "@smithy/shared-ini-file-loader": "npm:^3.1.5" - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/1efa20757cb0d21eafc377d1820c2b644ef3a45ace4c2012e299ff4f9cb1f390c3ab72de5827d50302dccc5e6f1ef741778befcdb91ef5c319de9b1888cd1b96 - languageName: node - linkType: hard - -"@smithy/node-config-provider@npm:^4.3.11, @smithy/node-config-provider@npm:^4.3.5": +"@smithy/node-config-provider@npm:^4.3.11": version: 4.3.11 resolution: "@smithy/node-config-provider@npm:4.3.11" dependencies: @@ -19533,7 +18528,7 @@ __metadata: languageName: node linkType: hard -"@smithy/node-http-handler@npm:^3.0.0, @smithy/node-http-handler@npm:^3.2.0": +"@smithy/node-http-handler@npm:^3.0.0": version: 3.3.3 resolution: "@smithy/node-http-handler@npm:3.3.3" dependencies: @@ -19546,7 +18541,7 @@ __metadata: languageName: node linkType: hard -"@smithy/node-http-handler@npm:^4.4.14, @smithy/node-http-handler@npm:^4.4.5": +"@smithy/node-http-handler@npm:^4.4.14": version: 4.4.14 resolution: "@smithy/node-http-handler@npm:4.4.14" dependencies: @@ -19559,17 +18554,7 @@ __metadata: languageName: node linkType: hard -"@smithy/property-provider@npm:^3.1.4": - version: 3.1.4 - resolution: "@smithy/property-provider@npm:3.1.4" - dependencies: - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/d1c1597be13f4ea43d61117e388a5ea574163d888bf55f1df182c978fa2d92231ec0ff98b4a6c338aa39b9f71e379e1ddb2567b3f9979c633c957165426c02c2 - languageName: node - linkType: hard - -"@smithy/property-provider@npm:^4.2.11, @smithy/property-provider@npm:^4.2.5": +"@smithy/property-provider@npm:^4.2.11": version: 4.2.11 resolution: "@smithy/property-provider@npm:4.2.11" dependencies: @@ -19579,7 +18564,7 @@ __metadata: languageName: node linkType: hard -"@smithy/protocol-http@npm:^4.1.1, @smithy/protocol-http@npm:^4.1.8": +"@smithy/protocol-http@npm:^4.1.8": version: 4.1.8 resolution: "@smithy/protocol-http@npm:4.1.8" dependencies: @@ -19589,7 +18574,7 @@ __metadata: languageName: node linkType: hard -"@smithy/protocol-http@npm:^5.3.11, @smithy/protocol-http@npm:^5.3.5": +"@smithy/protocol-http@npm:^5.3.11": version: 5.3.11 resolution: "@smithy/protocol-http@npm:5.3.11" dependencies: @@ -19599,7 +18584,7 @@ __metadata: languageName: node linkType: hard -"@smithy/querystring-builder@npm:^3.0.11, @smithy/querystring-builder@npm:^3.0.4": +"@smithy/querystring-builder@npm:^3.0.11": version: 3.0.11 resolution: "@smithy/querystring-builder@npm:3.0.11" dependencies: @@ -19621,16 +18606,6 @@ __metadata: languageName: node linkType: hard -"@smithy/querystring-parser@npm:^3.0.4": - version: 3.0.4 - resolution: "@smithy/querystring-parser@npm:3.0.4" - dependencies: - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/a985e95590ea3acc84f4123aa951bd6fdcc4b3cb83ef179d906635f82589b025cdde6f73c6c3417b18a569c6aee82ff9345d34e3b3d976f71ea5d9132033adea - languageName: node - linkType: hard - "@smithy/querystring-parser@npm:^4.2.11": version: 4.2.11 resolution: "@smithy/querystring-parser@npm:4.2.11" @@ -19641,15 +18616,6 @@ __metadata: languageName: node linkType: hard -"@smithy/service-error-classification@npm:^3.0.4": - version: 3.0.4 - resolution: "@smithy/service-error-classification@npm:3.0.4" - dependencies: - "@smithy/types": "npm:^3.4.0" - checksum: 10/a06600871da110279b7e44901b395e95965391de5456ac747b972bd0330484270946c0eae796f1ba60b6ebe8c5e4a5447f1ccd5d6793b27b45dbc12d1776fad4 - languageName: node - linkType: hard - "@smithy/service-error-classification@npm:^4.2.11": version: 4.2.11 resolution: "@smithy/service-error-classification@npm:4.2.11" @@ -19659,17 +18625,7 @@ __metadata: languageName: node linkType: hard -"@smithy/shared-ini-file-loader@npm:^3.1.5": - version: 3.1.5 - resolution: "@smithy/shared-ini-file-loader@npm:3.1.5" - dependencies: - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/722e375db736195c12680558a395129affbcf486219da80684363b7035bdef6394399881696dd4645ce7af28197a50aed66a26bb2a526195fab419a87eb324cb - languageName: node - linkType: hard - -"@smithy/shared-ini-file-loader@npm:^4.4.0, @smithy/shared-ini-file-loader@npm:^4.4.6": +"@smithy/shared-ini-file-loader@npm:^4.4.6": version: 4.4.6 resolution: "@smithy/shared-ini-file-loader@npm:4.4.6" dependencies: @@ -19679,7 +18635,7 @@ __metadata: languageName: node linkType: hard -"@smithy/signature-v4@npm:^4.1.0, @smithy/signature-v4@npm:^4.1.1": +"@smithy/signature-v4@npm:^4.1.0": version: 4.2.4 resolution: "@smithy/signature-v4@npm:4.2.4" dependencies: @@ -19695,7 +18651,7 @@ __metadata: languageName: node linkType: hard -"@smithy/signature-v4@npm:^5.3.11, @smithy/signature-v4@npm:^5.3.5": +"@smithy/signature-v4@npm:^5.3.11": version: 5.3.11 resolution: "@smithy/signature-v4@npm:5.3.11" dependencies: @@ -19711,32 +18667,18 @@ __metadata: languageName: node linkType: hard -"@smithy/smithy-client@npm:^3.3.0": - version: 3.3.0 - resolution: "@smithy/smithy-client@npm:3.3.0" +"@smithy/smithy-client@npm:^4.12.3": + version: 4.12.3 + resolution: "@smithy/smithy-client@npm:4.12.3" dependencies: - "@smithy/middleware-endpoint": "npm:^3.1.1" - "@smithy/middleware-stack": "npm:^3.0.4" - "@smithy/protocol-http": "npm:^4.1.1" - "@smithy/types": "npm:^3.4.0" - "@smithy/util-stream": "npm:^3.1.4" - tslib: "npm:^2.6.2" - checksum: 10/b060a7ae03ff9fc98a7478114709466a4d0813eda3d77e98567733f42be376d4935650abb34d6a9fe41610f5498096c06fa0677bdbe24f2d455c733f46ed48e6 - languageName: node - linkType: hard - -"@smithy/smithy-client@npm:^4.12.2, @smithy/smithy-client@npm:^4.9.10": - version: 4.12.2 - resolution: "@smithy/smithy-client@npm:4.12.2" - dependencies: - "@smithy/core": "npm:^3.23.8" - "@smithy/middleware-endpoint": "npm:^4.4.22" + "@smithy/core": "npm:^3.23.9" + "@smithy/middleware-endpoint": "npm:^4.4.23" "@smithy/middleware-stack": "npm:^4.2.11" "@smithy/protocol-http": "npm:^5.3.11" "@smithy/types": "npm:^4.13.0" "@smithy/util-stream": "npm:^4.5.17" tslib: "npm:^2.6.2" - checksum: 10/bcaf6925a567e0cac8bfa0871e36a4bc683d639dd18b7ec73521f7c8afccb61817ef86723c185936ef3431ada755f57bdb17e8013d9f8eb556aa58309b2afb83 + checksum: 10/e302202a2f096bc79265cf21557b211f37df2ae272f38a743a47e7c710e0b91609bbb25e161051589fdf5bafd274eb0105a0ec6085f5f3598d3fc80850f045ee languageName: node linkType: hard @@ -19749,7 +18691,7 @@ __metadata: languageName: node linkType: hard -"@smithy/types@npm:^3.4.0, @smithy/types@npm:^3.7.2": +"@smithy/types@npm:^3.7.2": version: 3.7.2 resolution: "@smithy/types@npm:3.7.2" dependencies: @@ -19758,7 +18700,7 @@ __metadata: languageName: node linkType: hard -"@smithy/types@npm:^4.13.0, @smithy/types@npm:^4.9.0": +"@smithy/types@npm:^4.13.0": version: 4.13.0 resolution: "@smithy/types@npm:4.13.0" dependencies: @@ -19767,18 +18709,7 @@ __metadata: languageName: node linkType: hard -"@smithy/url-parser@npm:^3.0.4": - version: 3.0.4 - resolution: "@smithy/url-parser@npm:3.0.4" - dependencies: - "@smithy/querystring-parser": "npm:^3.0.4" - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/0b582094db501fb9f285fbc61503ac32191557ef6467f75e4019b1ea3ebaa2ceaa6bebd2b7db54b68ad244a67c29d3ea1262006dd252bb78acc95126b1035ba5 - languageName: node - linkType: hard - -"@smithy/url-parser@npm:^4.2.11, @smithy/url-parser@npm:^4.2.5": +"@smithy/url-parser@npm:^4.2.11": version: 4.2.11 resolution: "@smithy/url-parser@npm:4.2.11" dependencies: @@ -19789,18 +18720,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-base64@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/util-base64@npm:3.0.0" - dependencies: - "@smithy/util-buffer-from": "npm:^3.0.0" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10/3c883d63a33e1cfeebf7f846f167dfc54c832d1f5514d014fbfff06de3aecd5919f01637fc93668dca8a1029752f3a6fab0a94f455dcb7c88f1d472bde294eef - languageName: node - linkType: hard - -"@smithy/util-base64@npm:^4.3.0, @smithy/util-base64@npm:^4.3.2": +"@smithy/util-base64@npm:^4.3.2": version: 4.3.2 resolution: "@smithy/util-base64@npm:4.3.2" dependencies: @@ -19811,16 +18731,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-body-length-browser@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/util-body-length-browser@npm:3.0.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10/a0ab6a6d414a62d18e57f3581769379a54bb1fd93606c69bc8d96a3566fdecb8db7b57da9446568d03eef9f004f2a89d7e94bdda79ef280f28b19a71803c0309 - languageName: node - linkType: hard - -"@smithy/util-body-length-browser@npm:^4.2.0, @smithy/util-body-length-browser@npm:^4.2.2": +"@smithy/util-body-length-browser@npm:^4.2.2": version: 4.2.2 resolution: "@smithy/util-body-length-browser@npm:4.2.2" dependencies: @@ -19829,16 +18740,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-body-length-node@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/util-body-length-node@npm:3.0.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10/aabac66d7111612fd375d67150f8787c5cdc828f7e6acb40ef0b18b4c354e64e0ef2e4b8da2d7f01e8abe931ff2ef8109a408164ce7e5662fd41b470c462f1e4 - languageName: node - linkType: hard - -"@smithy/util-body-length-node@npm:^4.2.1, @smithy/util-body-length-node@npm:^4.2.3": +"@smithy/util-body-length-node@npm:^4.2.3": version: 4.2.3 resolution: "@smithy/util-body-length-node@npm:4.2.3" dependencies: @@ -19877,16 +18779,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-config-provider@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/util-config-provider@npm:3.0.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10/614c321c5a5a220d7d72d36359c41b4e390566719f7e01cefebffbe7034aae78b4533b27ab2030f93186c5f22893ddf056a3a2376a077d70ce89275f31e1ac46 - languageName: node - linkType: hard - -"@smithy/util-config-provider@npm:^4.2.0, @smithy/util-config-provider@npm:^4.2.2": +"@smithy/util-config-provider@npm:^4.2.2": version: 4.2.2 resolution: "@smithy/util-config-provider@npm:4.2.2" dependencies: @@ -19895,73 +18788,34 @@ __metadata: languageName: node linkType: hard -"@smithy/util-defaults-mode-browser@npm:^3.0.16": - version: 3.0.16 - resolution: "@smithy/util-defaults-mode-browser@npm:3.0.16" - dependencies: - "@smithy/property-provider": "npm:^3.1.4" - "@smithy/smithy-client": "npm:^3.3.0" - "@smithy/types": "npm:^3.4.0" - bowser: "npm:^2.11.0" - tslib: "npm:^2.6.2" - checksum: 10/5a4a3a7b9df20e84ce9f7555860ebabd2afdb48614a4ef15c75ea1895f6567baa0dbe5670cce3f05d62a4fd080fad650623915e73ee90b5ab29afe4c4c55ed15 - languageName: node - linkType: hard - -"@smithy/util-defaults-mode-browser@npm:^4.3.13, @smithy/util-defaults-mode-browser@npm:^4.3.38": - version: 4.3.38 - resolution: "@smithy/util-defaults-mode-browser@npm:4.3.38" +"@smithy/util-defaults-mode-browser@npm:^4.3.39": + version: 4.3.39 + resolution: "@smithy/util-defaults-mode-browser@npm:4.3.39" dependencies: "@smithy/property-provider": "npm:^4.2.11" - "@smithy/smithy-client": "npm:^4.12.2" + "@smithy/smithy-client": "npm:^4.12.3" "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/17929eac4d0923f8fdb9135296fb86c5cd2a8ede05d01294675228cdef538bd2588d68a9a488c818979fada9e5c28b2732ac68c9f798ce92b6b9f1aaffae8bd4 + checksum: 10/a977199c6e2f336f8de145764754ffb0b05e731a80b128631c4643820cd175a87d1b612e44c8bdda71e37f3603ff2057530df46f5a6ebfa0647fdf4da5a2ef91 languageName: node linkType: hard -"@smithy/util-defaults-mode-node@npm:^3.0.16": - version: 3.0.16 - resolution: "@smithy/util-defaults-mode-node@npm:3.0.16" - dependencies: - "@smithy/config-resolver": "npm:^3.0.6" - "@smithy/credential-provider-imds": "npm:^3.2.1" - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/property-provider": "npm:^3.1.4" - "@smithy/smithy-client": "npm:^3.3.0" - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/4b2a8b982cc694c6cd43ed2c721d042093e3133aba4cf6c7bae92608905c5e764fda73730f56456d39cc2fe4b56a4e9eb2fb221435db9f9ff821167fff79628a - languageName: node - linkType: hard - -"@smithy/util-defaults-mode-node@npm:^4.2.16, @smithy/util-defaults-mode-node@npm:^4.2.41": - version: 4.2.41 - resolution: "@smithy/util-defaults-mode-node@npm:4.2.41" +"@smithy/util-defaults-mode-node@npm:^4.2.42": + version: 4.2.42 + resolution: "@smithy/util-defaults-mode-node@npm:4.2.42" dependencies: "@smithy/config-resolver": "npm:^4.4.10" "@smithy/credential-provider-imds": "npm:^4.2.11" "@smithy/node-config-provider": "npm:^4.3.11" "@smithy/property-provider": "npm:^4.2.11" - "@smithy/smithy-client": "npm:^4.12.2" + "@smithy/smithy-client": "npm:^4.12.3" "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/21d300659fb6e79627f78bff8d76d2584d124c32f6c00640a92df6b836f83577c6a4129ffb9d64fb9fe9295732361297fd1c9b4f8c4af5fb20f1c3b1050bec94 + checksum: 10/f2d578709627bfa1d99705aa9e1489ce60f25fa6c5a37e74152ff94e7582ed4963d44d6436c4e6692dbfa9a3c1b790780bb00493cd19c8637261cd8bbbc1e039 languageName: node linkType: hard -"@smithy/util-endpoints@npm:^2.1.0": - version: 2.1.0 - resolution: "@smithy/util-endpoints@npm:2.1.0" - dependencies: - "@smithy/node-config-provider": "npm:^3.1.5" - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/813d5f60132315912c6170f25021db69c8f7ade602faa3be0a6d96d44fb87a399f5a21408f5435dbd9fe55cde8a5d9f26bf842eb1f9ef72c03c4febf30b8e33e - languageName: node - linkType: hard - -"@smithy/util-endpoints@npm:^3.2.5, @smithy/util-endpoints@npm:^3.3.2": +"@smithy/util-endpoints@npm:^3.3.2": version: 3.3.2 resolution: "@smithy/util-endpoints@npm:3.3.2" dependencies: @@ -19990,7 +18844,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-middleware@npm:^3.0.11, @smithy/util-middleware@npm:^3.0.4": +"@smithy/util-middleware@npm:^3.0.11": version: 3.0.11 resolution: "@smithy/util-middleware@npm:3.0.11" dependencies: @@ -20000,7 +18854,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-middleware@npm:^4.2.11, @smithy/util-middleware@npm:^4.2.5": +"@smithy/util-middleware@npm:^4.2.11": version: 4.2.11 resolution: "@smithy/util-middleware@npm:4.2.11" dependencies: @@ -20010,18 +18864,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-retry@npm:^3.0.4": - version: 3.0.4 - resolution: "@smithy/util-retry@npm:3.0.4" - dependencies: - "@smithy/service-error-classification": "npm:^3.0.4" - "@smithy/types": "npm:^3.4.0" - tslib: "npm:^2.6.2" - checksum: 10/9d8e4ee8a3c71e3f7cd799a03fc8d2cb69e294d475f798d3fd9db85f64135ff545d333d9ca89fa7b621dfa17fa6f91f7c2d90a889089e0417484d821a627e225 - languageName: node - linkType: hard - -"@smithy/util-retry@npm:^4.2.11, @smithy/util-retry@npm:^4.2.5": +"@smithy/util-retry@npm:^4.2.11": version: 4.2.11 resolution: "@smithy/util-retry@npm:4.2.11" dependencies: @@ -20032,23 +18875,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-stream@npm:^3.1.4": - version: 3.1.4 - resolution: "@smithy/util-stream@npm:3.1.4" - dependencies: - "@smithy/fetch-http-handler": "npm:^3.2.5" - "@smithy/node-http-handler": "npm:^3.2.0" - "@smithy/types": "npm:^3.4.0" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-buffer-from": "npm:^3.0.0" - "@smithy/util-hex-encoding": "npm:^3.0.0" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10/37970467674b504aef7cd1a241bbe4227c27449647567d8f4b465cf2868b4d4c0b63fe29826f9b8f17a9440572f53cc6a1993e5c8872f5409115b073f4b3cd8f - languageName: node - linkType: hard - -"@smithy/util-stream@npm:^4.5.17, @smithy/util-stream@npm:^4.5.6": +"@smithy/util-stream@npm:^4.5.17": version: 4.5.17 resolution: "@smithy/util-stream@npm:4.5.17" dependencies: @@ -20102,7 +18929,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-utf8@npm:^4.2.0, @smithy/util-utf8@npm:^4.2.2": +"@smithy/util-utf8@npm:^4.2.2": version: 4.2.2 resolution: "@smithy/util-utf8@npm:4.2.2" dependencies: @@ -20112,14 +18939,14 @@ __metadata: languageName: node linkType: hard -"@smithy/util-waiter@npm:^3.1.3": - version: 3.1.3 - resolution: "@smithy/util-waiter@npm:3.1.3" +"@smithy/util-waiter@npm:^4.2.11": + version: 4.2.11 + resolution: "@smithy/util-waiter@npm:4.2.11" dependencies: - "@smithy/abort-controller": "npm:^3.1.2" - "@smithy/types": "npm:^3.4.0" + "@smithy/abort-controller": "npm:^4.2.11" + "@smithy/types": "npm:^4.13.0" tslib: "npm:^2.6.2" - checksum: 10/6e0ae10a7c7d8284d5e91eb362f726fd0406c9ddae655d2c9a40f429ef7805f21b9688db9c249975be50d1ecd6311b7513c387af86e48a2c421fa258f27d7be7 + checksum: 10/b33b552631a06c3b6787a27d4d9df2a32119f084696faad4cf470dcc8d45133926dd87a0d918f08043ac3ee35c946dd6b6cf9836b45751159a91f450b46fa02e languageName: node linkType: hard @@ -32630,28 +31457,6 @@ __metadata: languageName: node linkType: hard -"fast-xml-parser@npm:4.4.1": - version: 4.4.1 - resolution: "fast-xml-parser@npm:4.4.1" - dependencies: - strnum: "npm:^1.0.5" - bin: - fxparser: src/cli/cli.js - checksum: 10/0c05ab8703630d8c857fafadbd78d0020d3a8e54310c3842179cd4a0d9d97e96d209ce885e91241f4aa9dd8dfc2fd924a682741a423d65153cad34da2032ec44 - languageName: node - linkType: hard - -"fast-xml-parser@npm:5.2.5": - version: 5.2.5 - resolution: "fast-xml-parser@npm:5.2.5" - dependencies: - strnum: "npm:^2.1.0" - bin: - fxparser: src/cli/cli.js - checksum: 10/305017cff6968a34cbac597317be1516e85c44f650f30d982c84f8c30043e81fd38d39a8810d570136c921399dd43b9ac4775bdfbbbcfee96456f3c086b48bdd - languageName: node - linkType: hard - "fast-xml-parser@npm:5.4.1, fast-xml-parser@npm:^5.3.4": version: 5.4.1 resolution: "fast-xml-parser@npm:5.4.1" @@ -48844,7 +47649,7 @@ __metadata: languageName: node linkType: hard -"strnum@npm:^2.1.0, strnum@npm:^2.1.2": +"strnum@npm:^2.1.2": version: 2.1.2 resolution: "strnum@npm:2.1.2" checksum: 10/7d894dff385e3a5c5b29c012cf0a7ea7962a92c6a299383c3d6db945ad2b6f3e770511356a9774dbd54444c56af1dc7c435dad6466c47293c48173274dd6c631