diff --git a/packages/api-client/package.json b/packages/api-client/package.json index fcdd0c6..ad5bccc 100644 --- a/packages/api-client/package.json +++ b/packages/api-client/package.json @@ -1,6 +1,6 @@ { "name": "@cirrobio/api-client", - "version": "0.10.5", + "version": "0.10.6", "description": "API client for Cirro", "author": "CirroBio", "repository": { diff --git a/packages/react-auth/package.json b/packages/react-auth/package.json index fd5fe0b..70664df 100644 --- a/packages/react-auth/package.json +++ b/packages/react-auth/package.json @@ -24,9 +24,9 @@ "test": "jest --coverage --silent --passWithNoTests" }, "dependencies": { - "@cirrobio/api-client": "^0.9.0", + "@cirrobio/api-client": "^0.10.0", "@cirrobio/react-core": "^0.0.1", - "@cirrobio/sdk": "^0.9.0", + "@cirrobio/sdk": "^0.10.0", "@mui/icons-material": "^5.17.1", "@mui/lab": "^5.0.0-alpha.176", "@mui/material": "^5.15.10", diff --git a/packages/react-core/package.json b/packages/react-core/package.json index 2388897..47cb556 100644 --- a/packages/react-core/package.json +++ b/packages/react-core/package.json @@ -24,7 +24,7 @@ "test": "jest --coverage --silent --passWithNoTests" }, "dependencies": { - "@cirrobio/sdk": "^0.9.0" + "@cirrobio/sdk": "^0.10.0" }, "peerDependencies": { "react": "^16.14 || ^17 || ^18 || ^19" diff --git a/packages/react-tool/package.json b/packages/react-tool/package.json index 555c2b8..a9ecec3 100644 --- a/packages/react-tool/package.json +++ b/packages/react-tool/package.json @@ -22,10 +22,10 @@ "test": "jest --coverage --silent --passWithNoTests" }, "dependencies": { - "@cirrobio/api-client": "^0.9.0", + "@cirrobio/api-client": "^0.10.0", "@cirrobio/react-auth": "^0.0.1", "@cirrobio/react-core": "^0.0.1", - "@cirrobio/sdk": "^0.9.0" + "@cirrobio/sdk": "^0.10.0" }, "peerDependencies": { "@emotion/react": "^11.11.3", diff --git a/packages/react-ui-core/package.json b/packages/react-ui-core/package.json index cd5d8d1..5d41915 100644 --- a/packages/react-ui-core/package.json +++ b/packages/react-ui-core/package.json @@ -24,7 +24,7 @@ "test": "jest --coverage --silent --passWithNoTests" }, "dependencies": { - "@cirrobio/sdk": "^0.9.0" + "@cirrobio/sdk": "^0.10.0" }, "peerDependencies": { "@emotion/react": "^11.11.3", diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 5a56a50..a7e31c7 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@cirrobio/sdk", - "version": "0.10.5", + "version": "0.10.6", "description": "SDK for Cirro", "author": "CirroBio", "repository": { @@ -30,10 +30,10 @@ "preset": "ts-jest" }, "dependencies": { - "@aws-sdk/client-s3": "^3.34.0", - "@aws-sdk/lib-storage": "^3.34.0", - "@aws-sdk/s3-request-presigner": "^3.34.0", - "@cirrobio/api-client": "^0.10.1", + "@aws-sdk/client-s3": "^3.886.0", + "@aws-sdk/lib-storage": "^3.886.0", + "@aws-sdk/s3-request-presigner": "^3.886.0", + "@cirrobio/api-client": "^0.10.2", "uuid": "^11.1.0" }, "devDependencies": { diff --git a/packages/sdk/src/file/actions/upload.fn.ts b/packages/sdk/src/file/actions/upload.fn.ts index 6e18a0e..4ef6d8a 100644 --- a/packages/sdk/src/file/actions/upload.fn.ts +++ b/packages/sdk/src/file/actions/upload.fn.ts @@ -2,6 +2,7 @@ import { Upload } from "@aws-sdk/lib-storage"; import { AWSCredentials } from '@cirrobio/api-client'; import { createS3Client } from "../util/s3-client"; import { PutObjectCommandInput } from "@aws-sdk/client-s3"; +import { CreateMultipartUploadRequest } from "@aws-sdk/client-s3/dist-types/models/models_0"; export interface UploadFileParams { bucket: string; @@ -15,12 +16,13 @@ export interface UploadFileParams { * Upload a file to S3 */ export function uploadFile({ bucket, path, file, credentials, metadata }: UploadFileParams): Upload { - const params: PutObjectCommandInput = { + const params: PutObjectCommandInput & CreateMultipartUploadRequest = { Bucket: bucket, Key: path, Body: file, ContentType: file.type, - Metadata: metadata + Metadata: metadata, + ChecksumType: "FULL_OBJECT" }; return new Upload({ client: createS3Client(credentials), diff --git a/yarn.lock b/yarn.lock index 64f7462..ad91178 100644 --- a/yarn.lock +++ b/yarn.lock @@ -403,67 +403,69 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-s3@npm:^3.34.0": - version: 3.828.0 - resolution: "@aws-sdk/client-s3@npm:3.828.0" +"@aws-sdk/client-s3@npm:^3.886.0": + version: 3.886.0 + resolution: "@aws-sdk/client-s3@npm:3.886.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.826.0" - "@aws-sdk/credential-provider-node": "npm:3.828.0" - "@aws-sdk/middleware-bucket-endpoint": "npm:3.821.0" - "@aws-sdk/middleware-expect-continue": "npm:3.821.0" - "@aws-sdk/middleware-flexible-checksums": "npm:3.826.0" - "@aws-sdk/middleware-host-header": "npm:3.821.0" - "@aws-sdk/middleware-location-constraint": "npm:3.821.0" - "@aws-sdk/middleware-logger": "npm:3.821.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.821.0" - "@aws-sdk/middleware-sdk-s3": "npm:3.826.0" - "@aws-sdk/middleware-ssec": "npm:3.821.0" - "@aws-sdk/middleware-user-agent": "npm:3.828.0" - "@aws-sdk/region-config-resolver": "npm:3.821.0" - "@aws-sdk/signature-v4-multi-region": "npm:3.826.0" - "@aws-sdk/types": "npm:3.821.0" - "@aws-sdk/util-endpoints": "npm:3.828.0" - "@aws-sdk/util-user-agent-browser": "npm:3.821.0" - "@aws-sdk/util-user-agent-node": "npm:3.828.0" - "@aws-sdk/xml-builder": "npm:3.821.0" - "@smithy/config-resolver": "npm:^4.1.4" - "@smithy/core": "npm:^3.5.3" - "@smithy/eventstream-serde-browser": "npm:^4.0.4" - "@smithy/eventstream-serde-config-resolver": "npm:^4.1.2" - "@smithy/eventstream-serde-node": "npm:^4.0.4" - "@smithy/fetch-http-handler": "npm:^5.0.4" - "@smithy/hash-blob-browser": "npm:^4.0.4" - "@smithy/hash-node": "npm:^4.0.4" - "@smithy/hash-stream-node": "npm:^4.0.4" - "@smithy/invalid-dependency": "npm:^4.0.4" - "@smithy/md5-js": "npm:^4.0.4" - "@smithy/middleware-content-length": "npm:^4.0.4" - "@smithy/middleware-endpoint": "npm:^4.1.11" - "@smithy/middleware-retry": "npm:^4.1.12" - "@smithy/middleware-serde": "npm:^4.0.8" - "@smithy/middleware-stack": "npm:^4.0.4" - "@smithy/node-config-provider": "npm:^4.1.3" - "@smithy/node-http-handler": "npm:^4.0.6" - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/smithy-client": "npm:^4.4.3" - "@smithy/types": "npm:^4.3.1" - "@smithy/url-parser": "npm:^4.0.4" + "@aws-sdk/core": "npm:3.883.0" + "@aws-sdk/credential-provider-node": "npm:3.886.0" + "@aws-sdk/middleware-bucket-endpoint": "npm:3.873.0" + "@aws-sdk/middleware-expect-continue": "npm:3.873.0" + "@aws-sdk/middleware-flexible-checksums": "npm:3.883.0" + "@aws-sdk/middleware-host-header": "npm:3.873.0" + "@aws-sdk/middleware-location-constraint": "npm:3.873.0" + "@aws-sdk/middleware-logger": "npm:3.876.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.886.0" + "@aws-sdk/middleware-sdk-s3": "npm:3.883.0" + "@aws-sdk/middleware-ssec": "npm:3.873.0" + "@aws-sdk/middleware-user-agent": "npm:3.883.0" + "@aws-sdk/region-config-resolver": "npm:3.873.0" + "@aws-sdk/signature-v4-multi-region": "npm:3.883.0" + "@aws-sdk/types": "npm:3.862.0" + "@aws-sdk/util-endpoints": "npm:3.879.0" + "@aws-sdk/util-user-agent-browser": "npm:3.873.0" + "@aws-sdk/util-user-agent-node": "npm:3.883.0" + "@aws-sdk/xml-builder": "npm:3.873.0" + "@smithy/config-resolver": "npm:^4.1.5" + "@smithy/core": "npm:^3.9.2" + "@smithy/eventstream-serde-browser": "npm:^4.0.5" + "@smithy/eventstream-serde-config-resolver": "npm:^4.1.3" + "@smithy/eventstream-serde-node": "npm:^4.0.5" + "@smithy/fetch-http-handler": "npm:^5.1.1" + "@smithy/hash-blob-browser": "npm:^4.0.5" + "@smithy/hash-node": "npm:^4.0.5" + "@smithy/hash-stream-node": "npm:^4.0.5" + "@smithy/invalid-dependency": "npm:^4.0.5" + "@smithy/md5-js": "npm:^4.0.5" + "@smithy/middleware-content-length": "npm:^4.0.5" + "@smithy/middleware-endpoint": "npm:^4.1.21" + "@smithy/middleware-retry": "npm:^4.1.22" + "@smithy/middleware-serde": "npm:^4.0.9" + "@smithy/middleware-stack": "npm:^4.0.5" + "@smithy/node-config-provider": "npm:^4.1.4" + "@smithy/node-http-handler": "npm:^4.1.1" + "@smithy/protocol-http": "npm:^5.1.3" + "@smithy/smithy-client": "npm:^4.5.2" + "@smithy/types": "npm:^4.3.2" + "@smithy/url-parser": "npm:^4.0.5" "@smithy/util-base64": "npm:^4.0.0" "@smithy/util-body-length-browser": "npm:^4.0.0" "@smithy/util-body-length-node": "npm:^4.0.0" - "@smithy/util-defaults-mode-browser": "npm:^4.0.19" - "@smithy/util-defaults-mode-node": "npm:^4.0.19" - "@smithy/util-endpoints": "npm:^3.0.6" - "@smithy/util-middleware": "npm:^4.0.4" - "@smithy/util-retry": "npm:^4.0.5" - "@smithy/util-stream": "npm:^4.2.2" + "@smithy/util-defaults-mode-browser": "npm:^4.0.29" + "@smithy/util-defaults-mode-node": "npm:^4.0.29" + "@smithy/util-endpoints": "npm:^3.0.7" + "@smithy/util-middleware": "npm:^4.0.5" + "@smithy/util-retry": "npm:^4.0.7" + "@smithy/util-stream": "npm:^4.2.4" "@smithy/util-utf8": "npm:^4.0.0" - "@smithy/util-waiter": "npm:^4.0.5" + "@smithy/util-waiter": "npm:^4.0.7" + "@types/uuid": "npm:^9.0.1" tslib: "npm:^2.6.2" - checksum: 10c0/8c4a1af189c63059ff87a56c823d282ea496c7e668a4e2e3d87388a8358cd9bccb179a8c5267c38287d68291a5eb91643c43988dc966fec4074486c31e84295c + uuid: "npm:^9.0.1" + checksum: 10c0/ac03c54b4b5de19268f8eeb2c8be9bfece18a88ab7286adc0ad320120bd295c4fded76db0231f81d49516e01fc252c4c54fa0d6e46d0b1742263094bb254d64c languageName: node linkType: hard @@ -562,49 +564,49 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.828.0": - version: 3.828.0 - resolution: "@aws-sdk/client-sso@npm:3.828.0" +"@aws-sdk/client-sso@npm:3.886.0": + version: 3.886.0 + resolution: "@aws-sdk/client-sso@npm:3.886.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.826.0" - "@aws-sdk/middleware-host-header": "npm:3.821.0" - "@aws-sdk/middleware-logger": "npm:3.821.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.821.0" - "@aws-sdk/middleware-user-agent": "npm:3.828.0" - "@aws-sdk/region-config-resolver": "npm:3.821.0" - "@aws-sdk/types": "npm:3.821.0" - "@aws-sdk/util-endpoints": "npm:3.828.0" - "@aws-sdk/util-user-agent-browser": "npm:3.821.0" - "@aws-sdk/util-user-agent-node": "npm:3.828.0" - "@smithy/config-resolver": "npm:^4.1.4" - "@smithy/core": "npm:^3.5.3" - "@smithy/fetch-http-handler": "npm:^5.0.4" - "@smithy/hash-node": "npm:^4.0.4" - "@smithy/invalid-dependency": "npm:^4.0.4" - "@smithy/middleware-content-length": "npm:^4.0.4" - "@smithy/middleware-endpoint": "npm:^4.1.11" - "@smithy/middleware-retry": "npm:^4.1.12" - "@smithy/middleware-serde": "npm:^4.0.8" - "@smithy/middleware-stack": "npm:^4.0.4" - "@smithy/node-config-provider": "npm:^4.1.3" - "@smithy/node-http-handler": "npm:^4.0.6" - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/smithy-client": "npm:^4.4.3" - "@smithy/types": "npm:^4.3.1" - "@smithy/url-parser": "npm:^4.0.4" + "@aws-sdk/core": "npm:3.883.0" + "@aws-sdk/middleware-host-header": "npm:3.873.0" + "@aws-sdk/middleware-logger": "npm:3.876.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.886.0" + "@aws-sdk/middleware-user-agent": "npm:3.883.0" + "@aws-sdk/region-config-resolver": "npm:3.873.0" + "@aws-sdk/types": "npm:3.862.0" + "@aws-sdk/util-endpoints": "npm:3.879.0" + "@aws-sdk/util-user-agent-browser": "npm:3.873.0" + "@aws-sdk/util-user-agent-node": "npm:3.883.0" + "@smithy/config-resolver": "npm:^4.1.5" + "@smithy/core": "npm:^3.9.2" + "@smithy/fetch-http-handler": "npm:^5.1.1" + "@smithy/hash-node": "npm:^4.0.5" + "@smithy/invalid-dependency": "npm:^4.0.5" + "@smithy/middleware-content-length": "npm:^4.0.5" + "@smithy/middleware-endpoint": "npm:^4.1.21" + "@smithy/middleware-retry": "npm:^4.1.22" + "@smithy/middleware-serde": "npm:^4.0.9" + "@smithy/middleware-stack": "npm:^4.0.5" + "@smithy/node-config-provider": "npm:^4.1.4" + "@smithy/node-http-handler": "npm:^4.1.1" + "@smithy/protocol-http": "npm:^5.1.3" + "@smithy/smithy-client": "npm:^4.5.2" + "@smithy/types": "npm:^4.3.2" + "@smithy/url-parser": "npm:^4.0.5" "@smithy/util-base64": "npm:^4.0.0" "@smithy/util-body-length-browser": "npm:^4.0.0" "@smithy/util-body-length-node": "npm:^4.0.0" - "@smithy/util-defaults-mode-browser": "npm:^4.0.19" - "@smithy/util-defaults-mode-node": "npm:^4.0.19" - "@smithy/util-endpoints": "npm:^3.0.6" - "@smithy/util-middleware": "npm:^4.0.4" - "@smithy/util-retry": "npm:^4.0.5" + "@smithy/util-defaults-mode-browser": "npm:^4.0.29" + "@smithy/util-defaults-mode-node": "npm:^4.0.29" + "@smithy/util-endpoints": "npm:^3.0.7" + "@smithy/util-middleware": "npm:^4.0.5" + "@smithy/util-retry": "npm:^4.0.7" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/44192e4af287da336c1f4aca8435f866ad4df1357ac1465f7aa0ec01bab8aec144d2e5417ff34a80b719f278dc4a5133470daf33565fe1accae28c04f66c3fa2 + checksum: 10c0/b3130baea2329f8835a649c8d345c720e71f0cd02176a4137b40b84b7257aa4363d6c23497ff9b6a290a7cf091273e00b4bf7a580bdeb281d53113cbd6fcc01e languageName: node linkType: hard @@ -673,26 +675,26 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/core@npm:3.826.0": - version: 3.826.0 - resolution: "@aws-sdk/core@npm:3.826.0" +"@aws-sdk/core@npm:3.883.0": + version: 3.883.0 + resolution: "@aws-sdk/core@npm:3.883.0" dependencies: - "@aws-sdk/types": "npm:3.821.0" - "@aws-sdk/xml-builder": "npm:3.821.0" - "@smithy/core": "npm:^3.5.3" - "@smithy/node-config-provider": "npm:^4.1.3" - "@smithy/property-provider": "npm:^4.0.4" - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/signature-v4": "npm:^5.1.2" - "@smithy/smithy-client": "npm:^4.4.3" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/types": "npm:3.862.0" + "@aws-sdk/xml-builder": "npm:3.873.0" + "@smithy/core": "npm:^3.9.2" + "@smithy/node-config-provider": "npm:^4.1.4" + "@smithy/property-provider": "npm:^4.0.5" + "@smithy/protocol-http": "npm:^5.1.3" + "@smithy/signature-v4": "npm:^5.1.3" + "@smithy/smithy-client": "npm:^4.5.2" + "@smithy/types": "npm:^4.3.2" "@smithy/util-base64": "npm:^4.0.0" "@smithy/util-body-length-browser": "npm:^4.0.0" - "@smithy/util-middleware": "npm:^4.0.4" + "@smithy/util-middleware": "npm:^4.0.5" "@smithy/util-utf8": "npm:^4.0.0" - fast-xml-parser: "npm:4.4.1" + fast-xml-parser: "npm:5.2.5" tslib: "npm:^2.6.2" - checksum: 10c0/d8e1d72e8503d27c31891aabc5e7de893e4994a64d48e80614547c9cb886e664f068ec3fd80d6e3dcea16950a9dfe4abb6cdca2552775c12b0c8ea1d05588c71 + checksum: 10c0/c3416b83df0f9ac3c0ac05deaea0d9616bc72d189327fd2a6249c6b976f6d5c36a3fa9f9b27bc881f5be48efddf518d8d79f3677f482ad10080c4edd58a6e9c4 languageName: node linkType: hard @@ -708,16 +710,16 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:3.826.0": - version: 3.826.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.826.0" +"@aws-sdk/credential-provider-env@npm:3.883.0": + version: 3.883.0 + resolution: "@aws-sdk/credential-provider-env@npm:3.883.0" dependencies: - "@aws-sdk/core": "npm:3.826.0" - "@aws-sdk/types": "npm:3.821.0" - "@smithy/property-provider": "npm:^4.0.4" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/core": "npm:3.883.0" + "@aws-sdk/types": "npm:3.862.0" + "@smithy/property-provider": "npm:^4.0.5" + "@smithy/types": "npm:^4.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/3cfcf7ec921c39ce0e5cb43d821e99d1260a1aa62e16617383f1401a0f600fe60a77cf92f97f86c9a81b99d741a8d640f1401da1e492b5a9f845833031c1ee44 + checksum: 10c0/be028db70cf9d24857aee5c336af778c99cfcfef3493ce905b041e60b637aedd2ec164757fe9ef3a01d292146cb416ef4a5a1468ab42f05b5b77c5fc7d55d36e languageName: node linkType: hard @@ -738,21 +740,21 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-http@npm:3.826.0": - version: 3.826.0 - resolution: "@aws-sdk/credential-provider-http@npm:3.826.0" +"@aws-sdk/credential-provider-http@npm:3.883.0": + version: 3.883.0 + resolution: "@aws-sdk/credential-provider-http@npm:3.883.0" dependencies: - "@aws-sdk/core": "npm:3.826.0" - "@aws-sdk/types": "npm:3.821.0" - "@smithy/fetch-http-handler": "npm:^5.0.4" - "@smithy/node-http-handler": "npm:^4.0.6" - "@smithy/property-provider": "npm:^4.0.4" - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/smithy-client": "npm:^4.4.3" - "@smithy/types": "npm:^4.3.1" - "@smithy/util-stream": "npm:^4.2.2" + "@aws-sdk/core": "npm:3.883.0" + "@aws-sdk/types": "npm:3.862.0" + "@smithy/fetch-http-handler": "npm:^5.1.1" + "@smithy/node-http-handler": "npm:^4.1.1" + "@smithy/property-provider": "npm:^4.0.5" + "@smithy/protocol-http": "npm:^5.1.3" + "@smithy/smithy-client": "npm:^4.5.2" + "@smithy/types": "npm:^4.3.2" + "@smithy/util-stream": "npm:^4.2.4" tslib: "npm:^2.6.2" - checksum: 10c0/042c3b873cc57acfd711ff90350a32d2f4371a1de80ec301d9e4268c184ec42d6de94ecbab3784d6853a18c6fb3bb06a198d02f9025479681e1e9a230b18e436 + checksum: 10c0/5487b9691e2775d5a933940571153a8ce9f639d1cf19c92ae263ea97033d2c8158b97be41cba58a6b59b1405333c00c50e204a192faad9d5231b2f633d28a444 languageName: node linkType: hard @@ -777,24 +779,24 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.828.0": - version: 3.828.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.828.0" +"@aws-sdk/credential-provider-ini@npm:3.886.0": + version: 3.886.0 + resolution: "@aws-sdk/credential-provider-ini@npm:3.886.0" dependencies: - "@aws-sdk/core": "npm:3.826.0" - "@aws-sdk/credential-provider-env": "npm:3.826.0" - "@aws-sdk/credential-provider-http": "npm:3.826.0" - "@aws-sdk/credential-provider-process": "npm:3.826.0" - "@aws-sdk/credential-provider-sso": "npm:3.828.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.828.0" - "@aws-sdk/nested-clients": "npm:3.828.0" - "@aws-sdk/types": "npm:3.821.0" - "@smithy/credential-provider-imds": "npm:^4.0.6" - "@smithy/property-provider": "npm:^4.0.4" - "@smithy/shared-ini-file-loader": "npm:^4.0.4" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/core": "npm:3.883.0" + "@aws-sdk/credential-provider-env": "npm:3.883.0" + "@aws-sdk/credential-provider-http": "npm:3.883.0" + "@aws-sdk/credential-provider-process": "npm:3.883.0" + "@aws-sdk/credential-provider-sso": "npm:3.886.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.886.0" + "@aws-sdk/nested-clients": "npm:3.886.0" + "@aws-sdk/types": "npm:3.862.0" + "@smithy/credential-provider-imds": "npm:^4.0.7" + "@smithy/property-provider": "npm:^4.0.5" + "@smithy/shared-ini-file-loader": "npm:^4.0.5" + "@smithy/types": "npm:^4.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/69e7fd247596b674321947a62a970dde822f1d2793bdee01aed097f72b04a2e3a9b9a8f856e318f8a266fbd78c216911f4f891c30f86f140be03eeeee7e2e0c2 + checksum: 10c0/64ad2a4a14079e765b769af71948a9160d49d12a1da3cfd1a501d18a62f310847d0718d9ad5b00564ff6699e3a16bb29cc6b74e3fb4dd338f12ffbb854044b35 languageName: node linkType: hard @@ -818,23 +820,23 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.828.0": - version: 3.828.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.828.0" +"@aws-sdk/credential-provider-node@npm:3.886.0": + version: 3.886.0 + resolution: "@aws-sdk/credential-provider-node@npm:3.886.0" dependencies: - "@aws-sdk/credential-provider-env": "npm:3.826.0" - "@aws-sdk/credential-provider-http": "npm:3.826.0" - "@aws-sdk/credential-provider-ini": "npm:3.828.0" - "@aws-sdk/credential-provider-process": "npm:3.826.0" - "@aws-sdk/credential-provider-sso": "npm:3.828.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.828.0" - "@aws-sdk/types": "npm:3.821.0" - "@smithy/credential-provider-imds": "npm:^4.0.6" - "@smithy/property-provider": "npm:^4.0.4" - "@smithy/shared-ini-file-loader": "npm:^4.0.4" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/credential-provider-env": "npm:3.883.0" + "@aws-sdk/credential-provider-http": "npm:3.883.0" + "@aws-sdk/credential-provider-ini": "npm:3.886.0" + "@aws-sdk/credential-provider-process": "npm:3.883.0" + "@aws-sdk/credential-provider-sso": "npm:3.886.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.886.0" + "@aws-sdk/types": "npm:3.862.0" + "@smithy/credential-provider-imds": "npm:^4.0.7" + "@smithy/property-provider": "npm:^4.0.5" + "@smithy/shared-ini-file-loader": "npm:^4.0.5" + "@smithy/types": "npm:^4.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/77c4059944b140aafed7638e8069b6285f344d3ab0e2f595b2bb2ad27f165a80c3e8cfb5c276eb67a77218faac935aec3ed9efc54143d81676618cb0fa90c9fc + checksum: 10c0/c4845e6286a883c349a031d4d6ebf16a3a6f4e63c274298f7ca4ec6ac2c0846e47e20916842c490a95c4da0b1408f28d178b52e289b40a4d812dad73dc10d1f8 languageName: node linkType: hard @@ -851,17 +853,17 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.826.0": - version: 3.826.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.826.0" +"@aws-sdk/credential-provider-process@npm:3.883.0": + version: 3.883.0 + resolution: "@aws-sdk/credential-provider-process@npm:3.883.0" dependencies: - "@aws-sdk/core": "npm:3.826.0" - "@aws-sdk/types": "npm:3.821.0" - "@smithy/property-provider": "npm:^4.0.4" - "@smithy/shared-ini-file-loader": "npm:^4.0.4" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/core": "npm:3.883.0" + "@aws-sdk/types": "npm:3.862.0" + "@smithy/property-provider": "npm:^4.0.5" + "@smithy/shared-ini-file-loader": "npm:^4.0.5" + "@smithy/types": "npm:^4.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/af6d32620b32cbe5069e967b6727e79076b9be9ae22977da5e0f08a9e95358a43060455e75fa77e58dae22ffe058f0c4c055675b3f80ecce34a2680464988da5 + checksum: 10c0/9d6d89059dfd00172d492cd77f7b21c29c14ccd2a877ca2e141c2a5f58a57a33bcb588cfa9d5993f599b80be7e39313b37fa9ac81f646eedd299fbafc8202a8c languageName: node linkType: hard @@ -880,19 +882,19 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.828.0": - version: 3.828.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.828.0" +"@aws-sdk/credential-provider-sso@npm:3.886.0": + version: 3.886.0 + resolution: "@aws-sdk/credential-provider-sso@npm:3.886.0" dependencies: - "@aws-sdk/client-sso": "npm:3.828.0" - "@aws-sdk/core": "npm:3.826.0" - "@aws-sdk/token-providers": "npm:3.828.0" - "@aws-sdk/types": "npm:3.821.0" - "@smithy/property-provider": "npm:^4.0.4" - "@smithy/shared-ini-file-loader": "npm:^4.0.4" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/client-sso": "npm:3.886.0" + "@aws-sdk/core": "npm:3.883.0" + "@aws-sdk/token-providers": "npm:3.886.0" + "@aws-sdk/types": "npm:3.862.0" + "@smithy/property-provider": "npm:^4.0.5" + "@smithy/shared-ini-file-loader": "npm:^4.0.5" + "@smithy/types": "npm:^4.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/8f03c3c5091344b5cc204e1ed694f592350eec5d0e5926ebc6dd94cc955cbe6d858c9980d5f81cf62369c549b21f03fc96e120f7a4b7a76b66a20c06d7b590cd + checksum: 10c0/6c12b92f06e316ef5be24358de90ae973d64f892290f080fe4f2c61cbf2697150eeefd21750c76e929bff715e80f31e7887434cb59dca6aa8058067c7bbec680 languageName: node linkType: hard @@ -910,82 +912,82 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.828.0": - version: 3.828.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.828.0" +"@aws-sdk/credential-provider-web-identity@npm:3.886.0": + version: 3.886.0 + resolution: "@aws-sdk/credential-provider-web-identity@npm:3.886.0" dependencies: - "@aws-sdk/core": "npm:3.826.0" - "@aws-sdk/nested-clients": "npm:3.828.0" - "@aws-sdk/types": "npm:3.821.0" - "@smithy/property-provider": "npm:^4.0.4" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/core": "npm:3.883.0" + "@aws-sdk/nested-clients": "npm:3.886.0" + "@aws-sdk/types": "npm:3.862.0" + "@smithy/property-provider": "npm:^4.0.5" + "@smithy/types": "npm:^4.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/25d1ca299054497f187cbcc0eead541571841283553614f3fedbc21611e3250ed2fcc61dfaa1aa26f9f615a07588aada3b0a4b139a8ba362037ef3c0b360f151 + checksum: 10c0/ec8a534725e186c7901393a5f893456797091f46261b49c91547dcfc05288fd8dcde2fd15305aaa0f55deafadef6646c979fed263b99cf79ff5e8ec7dd8c2b61 languageName: node linkType: hard -"@aws-sdk/lib-storage@npm:^3.34.0": - version: 3.828.0 - resolution: "@aws-sdk/lib-storage@npm:3.828.0" +"@aws-sdk/lib-storage@npm:^3.886.0": + version: 3.886.0 + resolution: "@aws-sdk/lib-storage@npm:3.886.0" dependencies: - "@smithy/abort-controller": "npm:^4.0.4" - "@smithy/middleware-endpoint": "npm:^4.1.11" - "@smithy/smithy-client": "npm:^4.4.3" + "@smithy/abort-controller": "npm:^4.0.5" + "@smithy/middleware-endpoint": "npm:^4.1.21" + "@smithy/smithy-client": "npm:^4.5.2" 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.828.0 - checksum: 10c0/297b70758446f8ac2c239c6d4d730f4c48b0376c83c4499e8ad97b0384c9bc07821881d6d5237470ec8e802a0d4656261df899d9417ea4216fe0e57eaa8b717a + "@aws-sdk/client-s3": ^3.886.0 + checksum: 10c0/e66c3258f0841435cf624a27174eec5b6d8d88ac51f88a471570bcd8e16a9fde02f10cf12602d8842d5fea98cecdfcece778359dcbd0b868c1cdc71472110c56 languageName: node linkType: hard -"@aws-sdk/middleware-bucket-endpoint@npm:3.821.0": - version: 3.821.0 - resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.821.0" +"@aws-sdk/middleware-bucket-endpoint@npm:3.873.0": + version: 3.873.0 + resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.873.0" dependencies: - "@aws-sdk/types": "npm:3.821.0" - "@aws-sdk/util-arn-parser": "npm:3.804.0" - "@smithy/node-config-provider": "npm:^4.1.3" - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/types": "npm:3.862.0" + "@aws-sdk/util-arn-parser": "npm:3.873.0" + "@smithy/node-config-provider": "npm:^4.1.4" + "@smithy/protocol-http": "npm:^5.1.3" + "@smithy/types": "npm:^4.3.2" "@smithy/util-config-provider": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/814ecf35e191372c907595f982ab78db57e6a24a6844ff41d5ec2fa78249218b62c860450401f0b928bf0493bbfd4afa3c06bc0569ad078d937d506382fa32e0 + checksum: 10c0/08b8c7204ab12f9ee877d2cdd1f8422bdf253731fcb1331c880f4d69872c15da0e076e996739e3d8ebb33f6da76da0d3ea42f4eca95955a7c5a004ee023ab284 languageName: node linkType: hard -"@aws-sdk/middleware-expect-continue@npm:3.821.0": - version: 3.821.0 - resolution: "@aws-sdk/middleware-expect-continue@npm:3.821.0" +"@aws-sdk/middleware-expect-continue@npm:3.873.0": + version: 3.873.0 + resolution: "@aws-sdk/middleware-expect-continue@npm:3.873.0" dependencies: - "@aws-sdk/types": "npm:3.821.0" - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/types": "npm:3.862.0" + "@smithy/protocol-http": "npm:^5.1.3" + "@smithy/types": "npm:^4.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/baf1b95b29184b642bbdc915ad2504aeaa9c78e9727cee2b1d0a513a7f1ebcbee7687dceb080424da3255990393a126154a58494a67c0b291034f481f69e9130 + checksum: 10c0/738e1f33b47f91dc5b3cc8a2564e47d72b9e3add99e9336128545303fa01cf96c4b6a75bee5e477e6369fbe2ae4c7449aa754a246d5c0027c51c9e1bd7482bec languageName: node linkType: hard -"@aws-sdk/middleware-flexible-checksums@npm:3.826.0": - version: 3.826.0 - resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.826.0" +"@aws-sdk/middleware-flexible-checksums@npm:3.883.0": + version: 3.883.0 + resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.883.0" dependencies: "@aws-crypto/crc32": "npm:5.2.0" "@aws-crypto/crc32c": "npm:5.2.0" "@aws-crypto/util": "npm:5.2.0" - "@aws-sdk/core": "npm:3.826.0" - "@aws-sdk/types": "npm:3.821.0" + "@aws-sdk/core": "npm:3.883.0" + "@aws-sdk/types": "npm:3.862.0" "@smithy/is-array-buffer": "npm:^4.0.0" - "@smithy/node-config-provider": "npm:^4.1.3" - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/types": "npm:^4.3.1" - "@smithy/util-middleware": "npm:^4.0.4" - "@smithy/util-stream": "npm:^4.2.2" + "@smithy/node-config-provider": "npm:^4.1.4" + "@smithy/protocol-http": "npm:^5.1.3" + "@smithy/types": "npm:^4.3.2" + "@smithy/util-middleware": "npm:^4.0.5" + "@smithy/util-stream": "npm:^4.2.4" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/a9473378c0dcac89c65f2c6252d4d0b3062e2eeb6c4b9cdb545a3ce7e8430b6a9439b2ff7006521fe44dd5a5ab96bc98aa5caf7746211750e41956256ff14067 + checksum: 10c0/c5ab881cb3e30dc8a003f131be60634375981cba6b55c1098f186484aa2779c8991af8279bfcbf4cfe688294cef09489f8924516f3d0a271efb5fd56496520b3 languageName: node linkType: hard @@ -1001,26 +1003,26 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-host-header@npm:3.821.0": - version: 3.821.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.821.0" +"@aws-sdk/middleware-host-header@npm:3.873.0": + version: 3.873.0 + resolution: "@aws-sdk/middleware-host-header@npm:3.873.0" dependencies: - "@aws-sdk/types": "npm:3.821.0" - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/types": "npm:3.862.0" + "@smithy/protocol-http": "npm:^5.1.3" + "@smithy/types": "npm:^4.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/8c6282ef885a455cf34667831577085fca3c58cd7b4ee3c773eb7fabab0704583497a13230b1f877879414646f1eb74225278c7587b3207df042b054d777d4b7 + checksum: 10c0/177f42c4342666ba8270a3a0f5de16e713b7245b8b5435f1b4863d46cbad9ea8930d23d9731d79ffc0b960be7f70a96693fa0b524a2dd24ca61d1ce8873c9b55 languageName: node linkType: hard -"@aws-sdk/middleware-location-constraint@npm:3.821.0": - version: 3.821.0 - resolution: "@aws-sdk/middleware-location-constraint@npm:3.821.0" +"@aws-sdk/middleware-location-constraint@npm:3.873.0": + version: 3.873.0 + resolution: "@aws-sdk/middleware-location-constraint@npm:3.873.0" dependencies: - "@aws-sdk/types": "npm:3.821.0" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/types": "npm:3.862.0" + "@smithy/types": "npm:^4.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/4266e9cdd9d137ce7d55a6397cfffbbd931dbcf0790ea47e2618f6751f6740c85d7eb339654da3a5e24284eece1f39fc87318d5fba4eece1e6cf72291784869c + checksum: 10c0/a76c3df86ba5ac393c9cfd4c4ff9db8b486ea299b5f27f73e12b8d73700bddd87b0c826b380c3ba02208f2e1f98aa7e0086109143ba984f2f96e0bf0cbc64d25 languageName: node linkType: hard @@ -1035,14 +1037,14 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-logger@npm:3.821.0": - version: 3.821.0 - resolution: "@aws-sdk/middleware-logger@npm:3.821.0" +"@aws-sdk/middleware-logger@npm:3.876.0": + version: 3.876.0 + resolution: "@aws-sdk/middleware-logger@npm:3.876.0" dependencies: - "@aws-sdk/types": "npm:3.821.0" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/types": "npm:3.862.0" + "@smithy/types": "npm:^4.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/2d9d9995c62e741fa059dbf8b20ff2000c63b73c2ece256146e1c5862a6aec4ab14165bfa52c9369906eca906f7b2247b6795c2e29f66408b5195c5ac738963a + checksum: 10c0/8a4b31102579bbdabc22f982277239535627e658fce8cff32df4032c510ec944ce4ffef73ae6cd948b918f87809133c6e3e3f7fdd60bd6feec89f4cbab4300c8 languageName: node linkType: hard @@ -1058,48 +1060,49 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-recursion-detection@npm:3.821.0": - version: 3.821.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.821.0" +"@aws-sdk/middleware-recursion-detection@npm:3.886.0": + version: 3.886.0 + resolution: "@aws-sdk/middleware-recursion-detection@npm:3.886.0" dependencies: - "@aws-sdk/types": "npm:3.821.0" - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/types": "npm:3.862.0" + "@aws/lambda-invoke-store": "npm:^0.0.1" + "@smithy/protocol-http": "npm:^5.1.3" + "@smithy/types": "npm:^4.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/209d7cad9c86baa84053c3a6bdb364cd5ad06d6f964f0a040b8572ac5300723adfb6914f4e875024f1af5058ca6f468c5c9d5c8c0d283b403ffed5e08dccb711 + checksum: 10c0/19ed66db893302e2269284d56e46eb7bb7b842eaf78c3aa63667e58cce46647b600529e7b8c9637beb87e2e946e87b0580c1327b7aa3172af08d6a15ff9a6142 languageName: node linkType: hard -"@aws-sdk/middleware-sdk-s3@npm:3.826.0": - version: 3.826.0 - resolution: "@aws-sdk/middleware-sdk-s3@npm:3.826.0" +"@aws-sdk/middleware-sdk-s3@npm:3.883.0": + version: 3.883.0 + resolution: "@aws-sdk/middleware-sdk-s3@npm:3.883.0" dependencies: - "@aws-sdk/core": "npm:3.826.0" - "@aws-sdk/types": "npm:3.821.0" - "@aws-sdk/util-arn-parser": "npm:3.804.0" - "@smithy/core": "npm:^3.5.3" - "@smithy/node-config-provider": "npm:^4.1.3" - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/signature-v4": "npm:^5.1.2" - "@smithy/smithy-client": "npm:^4.4.3" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/core": "npm:3.883.0" + "@aws-sdk/types": "npm:3.862.0" + "@aws-sdk/util-arn-parser": "npm:3.873.0" + "@smithy/core": "npm:^3.9.2" + "@smithy/node-config-provider": "npm:^4.1.4" + "@smithy/protocol-http": "npm:^5.1.3" + "@smithy/signature-v4": "npm:^5.1.3" + "@smithy/smithy-client": "npm:^4.5.2" + "@smithy/types": "npm:^4.3.2" "@smithy/util-config-provider": "npm:^4.0.0" - "@smithy/util-middleware": "npm:^4.0.4" - "@smithy/util-stream": "npm:^4.2.2" + "@smithy/util-middleware": "npm:^4.0.5" + "@smithy/util-stream": "npm:^4.2.4" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/8c964dbf7c909541978d36bdcfb952cacd99cd227c8dae0eacda24ce992dc8b4ce666cfd1d29e42465c2701b3f0198c77ee4300bbbaf43a4998da6f6cafa2cc3 + checksum: 10c0/8ad3003b1ebc462be49ead4c687b78d9aee863ecc28cc4876db00762815c5e8cc1e1bc6e39faee6644a06b24325536fd8a5e1195bf93b0336fb6b641f821aabb languageName: node linkType: hard -"@aws-sdk/middleware-ssec@npm:3.821.0": - version: 3.821.0 - resolution: "@aws-sdk/middleware-ssec@npm:3.821.0" +"@aws-sdk/middleware-ssec@npm:3.873.0": + version: 3.873.0 + resolution: "@aws-sdk/middleware-ssec@npm:3.873.0" dependencies: - "@aws-sdk/types": "npm:3.821.0" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/types": "npm:3.862.0" + "@smithy/types": "npm:^4.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/12194b3ab9c4e85a9af5e9531c218c5b7970153569a5bb5a6123c3281ce1ccb1a6eff0e0666f3711e491246e39c0242dd931f35df0459f1cbcdedd65ed66627c + checksum: 10c0/87f0ecfff55b922c61016b802c5c41a82222beb072b66dee0bc9bb422a1297c92444444a25b3cf4ea416a1be3cd85401beebc929e6661473f778846685b95c35 languageName: node linkType: hard @@ -1116,64 +1119,64 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.828.0": - version: 3.828.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.828.0" +"@aws-sdk/middleware-user-agent@npm:3.883.0": + version: 3.883.0 + resolution: "@aws-sdk/middleware-user-agent@npm:3.883.0" dependencies: - "@aws-sdk/core": "npm:3.826.0" - "@aws-sdk/types": "npm:3.821.0" - "@aws-sdk/util-endpoints": "npm:3.828.0" - "@smithy/core": "npm:^3.5.3" - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/core": "npm:3.883.0" + "@aws-sdk/types": "npm:3.862.0" + "@aws-sdk/util-endpoints": "npm:3.879.0" + "@smithy/core": "npm:^3.9.2" + "@smithy/protocol-http": "npm:^5.1.3" + "@smithy/types": "npm:^4.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/3b2576d33f21d07b6b6b42f823e9277d55ea81913e6ad526b300961c5525e70d1571dd6953c282208b3da6a58ffb19fa2bc3b3b04962122cb87365bb7353478a + checksum: 10c0/dfb27c854a35f74258f3a8b2fed2250a155496956e6cc2c664bdc444c92fc085c26573837e83e02735adc06a1815f3faa73195bc125bf4563f1b7c91081e6870 languageName: node linkType: hard -"@aws-sdk/nested-clients@npm:3.828.0": - version: 3.828.0 - resolution: "@aws-sdk/nested-clients@npm:3.828.0" +"@aws-sdk/nested-clients@npm:3.886.0": + version: 3.886.0 + resolution: "@aws-sdk/nested-clients@npm:3.886.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.826.0" - "@aws-sdk/middleware-host-header": "npm:3.821.0" - "@aws-sdk/middleware-logger": "npm:3.821.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.821.0" - "@aws-sdk/middleware-user-agent": "npm:3.828.0" - "@aws-sdk/region-config-resolver": "npm:3.821.0" - "@aws-sdk/types": "npm:3.821.0" - "@aws-sdk/util-endpoints": "npm:3.828.0" - "@aws-sdk/util-user-agent-browser": "npm:3.821.0" - "@aws-sdk/util-user-agent-node": "npm:3.828.0" - "@smithy/config-resolver": "npm:^4.1.4" - "@smithy/core": "npm:^3.5.3" - "@smithy/fetch-http-handler": "npm:^5.0.4" - "@smithy/hash-node": "npm:^4.0.4" - "@smithy/invalid-dependency": "npm:^4.0.4" - "@smithy/middleware-content-length": "npm:^4.0.4" - "@smithy/middleware-endpoint": "npm:^4.1.11" - "@smithy/middleware-retry": "npm:^4.1.12" - "@smithy/middleware-serde": "npm:^4.0.8" - "@smithy/middleware-stack": "npm:^4.0.4" - "@smithy/node-config-provider": "npm:^4.1.3" - "@smithy/node-http-handler": "npm:^4.0.6" - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/smithy-client": "npm:^4.4.3" - "@smithy/types": "npm:^4.3.1" - "@smithy/url-parser": "npm:^4.0.4" + "@aws-sdk/core": "npm:3.883.0" + "@aws-sdk/middleware-host-header": "npm:3.873.0" + "@aws-sdk/middleware-logger": "npm:3.876.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.886.0" + "@aws-sdk/middleware-user-agent": "npm:3.883.0" + "@aws-sdk/region-config-resolver": "npm:3.873.0" + "@aws-sdk/types": "npm:3.862.0" + "@aws-sdk/util-endpoints": "npm:3.879.0" + "@aws-sdk/util-user-agent-browser": "npm:3.873.0" + "@aws-sdk/util-user-agent-node": "npm:3.883.0" + "@smithy/config-resolver": "npm:^4.1.5" + "@smithy/core": "npm:^3.9.2" + "@smithy/fetch-http-handler": "npm:^5.1.1" + "@smithy/hash-node": "npm:^4.0.5" + "@smithy/invalid-dependency": "npm:^4.0.5" + "@smithy/middleware-content-length": "npm:^4.0.5" + "@smithy/middleware-endpoint": "npm:^4.1.21" + "@smithy/middleware-retry": "npm:^4.1.22" + "@smithy/middleware-serde": "npm:^4.0.9" + "@smithy/middleware-stack": "npm:^4.0.5" + "@smithy/node-config-provider": "npm:^4.1.4" + "@smithy/node-http-handler": "npm:^4.1.1" + "@smithy/protocol-http": "npm:^5.1.3" + "@smithy/smithy-client": "npm:^4.5.2" + "@smithy/types": "npm:^4.3.2" + "@smithy/url-parser": "npm:^4.0.5" "@smithy/util-base64": "npm:^4.0.0" "@smithy/util-body-length-browser": "npm:^4.0.0" "@smithy/util-body-length-node": "npm:^4.0.0" - "@smithy/util-defaults-mode-browser": "npm:^4.0.19" - "@smithy/util-defaults-mode-node": "npm:^4.0.19" - "@smithy/util-endpoints": "npm:^3.0.6" - "@smithy/util-middleware": "npm:^4.0.4" - "@smithy/util-retry": "npm:^4.0.5" + "@smithy/util-defaults-mode-browser": "npm:^4.0.29" + "@smithy/util-defaults-mode-node": "npm:^4.0.29" + "@smithy/util-endpoints": "npm:^3.0.7" + "@smithy/util-middleware": "npm:^4.0.5" + "@smithy/util-retry": "npm:^4.0.7" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/63cf9fa45fe3c986d98b4ee11a15b130c844aff64445a639de4464ee5a87e84e2267d2b8f6cb7912b252bef52915a35e1bba5d690f1d2f059e8c36a397f0a136 + checksum: 10c0/c8e824e3318590bcd8e66ddc91fb4537b395a6bff48d3d2a7ab9790d7e307ead6383fa762263b7f0bd3e1a1c45eca18db65d27c89b04dd81ffc6ba30abcdc5eb languageName: node linkType: hard @@ -1191,47 +1194,47 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/region-config-resolver@npm:3.821.0": - version: 3.821.0 - resolution: "@aws-sdk/region-config-resolver@npm:3.821.0" +"@aws-sdk/region-config-resolver@npm:3.873.0": + version: 3.873.0 + resolution: "@aws-sdk/region-config-resolver@npm:3.873.0" dependencies: - "@aws-sdk/types": "npm:3.821.0" - "@smithy/node-config-provider": "npm:^4.1.3" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/types": "npm:3.862.0" + "@smithy/node-config-provider": "npm:^4.1.4" + "@smithy/types": "npm:^4.3.2" "@smithy/util-config-provider": "npm:^4.0.0" - "@smithy/util-middleware": "npm:^4.0.4" + "@smithy/util-middleware": "npm:^4.0.5" tslib: "npm:^2.6.2" - checksum: 10c0/b0f8a22541db5f4d5eee79320fe3d97dfa9cd7c37130771b354771c811243d458e18f22dfead70802ade8ce7537376eea4931479922df15a2e93378cf210ec30 + checksum: 10c0/5d2141beaafcc2cf56fe8c92efb176f773de1fbaaac9645fb26ca4478648c0bc440b73bbe8a9837f1843d66bdb513d1ad6e649ffbbd03dc3dae9eeb06c318622 languageName: node linkType: hard -"@aws-sdk/s3-request-presigner@npm:^3.34.0": - version: 3.828.0 - resolution: "@aws-sdk/s3-request-presigner@npm:3.828.0" +"@aws-sdk/s3-request-presigner@npm:^3.886.0": + version: 3.886.0 + resolution: "@aws-sdk/s3-request-presigner@npm:3.886.0" dependencies: - "@aws-sdk/signature-v4-multi-region": "npm:3.826.0" - "@aws-sdk/types": "npm:3.821.0" - "@aws-sdk/util-format-url": "npm:3.821.0" - "@smithy/middleware-endpoint": "npm:^4.1.11" - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/smithy-client": "npm:^4.4.3" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/signature-v4-multi-region": "npm:3.883.0" + "@aws-sdk/types": "npm:3.862.0" + "@aws-sdk/util-format-url": "npm:3.873.0" + "@smithy/middleware-endpoint": "npm:^4.1.21" + "@smithy/protocol-http": "npm:^5.1.3" + "@smithy/smithy-client": "npm:^4.5.2" + "@smithy/types": "npm:^4.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/aa8291bd6f176bf84990c78bebe47261c629f78f4950d9a72fb6dc2cb20f42296f3bf766aa958727ebd2defad19ffa6b01af0a2aca85d68f24437d1b288faed0 + checksum: 10c0/4794bce09346bd368f070a8ee6dc847ebde84309b3c70fc8f53e2adff29ad9f493e6f5f8883e87056fa45381554fba1723cc124bcfbc2bf7b693ea3662230c58 languageName: node linkType: hard -"@aws-sdk/signature-v4-multi-region@npm:3.826.0": - version: 3.826.0 - resolution: "@aws-sdk/signature-v4-multi-region@npm:3.826.0" +"@aws-sdk/signature-v4-multi-region@npm:3.883.0": + version: 3.883.0 + resolution: "@aws-sdk/signature-v4-multi-region@npm:3.883.0" dependencies: - "@aws-sdk/middleware-sdk-s3": "npm:3.826.0" - "@aws-sdk/types": "npm:3.821.0" - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/signature-v4": "npm:^5.1.2" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/middleware-sdk-s3": "npm:3.883.0" + "@aws-sdk/types": "npm:3.862.0" + "@smithy/protocol-http": "npm:^5.1.3" + "@smithy/signature-v4": "npm:^5.1.3" + "@smithy/types": "npm:^4.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/24b3e33bdd6d2674319121b563d69d57b7ce8091f67f8195bb9606cb4e061b713e1c9f30258d518840c2e3bf2887839db0a3832b6d622bc3a833cbe8ddde7b28 + checksum: 10c0/c426415461ca6aee0ad5fd54d72a2cdd119ae01a651fd2d9222c6bcef5fcecb87a9ce5d6e81581665ccb81d10955e07c4d47b65545f1792c03c646c3c629ba4d languageName: node linkType: hard @@ -1250,18 +1253,18 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.828.0": - version: 3.828.0 - resolution: "@aws-sdk/token-providers@npm:3.828.0" +"@aws-sdk/token-providers@npm:3.886.0": + version: 3.886.0 + resolution: "@aws-sdk/token-providers@npm:3.886.0" dependencies: - "@aws-sdk/core": "npm:3.826.0" - "@aws-sdk/nested-clients": "npm:3.828.0" - "@aws-sdk/types": "npm:3.821.0" - "@smithy/property-provider": "npm:^4.0.4" - "@smithy/shared-ini-file-loader": "npm:^4.0.4" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/core": "npm:3.883.0" + "@aws-sdk/nested-clients": "npm:3.886.0" + "@aws-sdk/types": "npm:3.862.0" + "@smithy/property-provider": "npm:^4.0.5" + "@smithy/shared-ini-file-loader": "npm:^4.0.5" + "@smithy/types": "npm:^4.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/285174310f68fa1d954d4c2cb09af311bf3fff286484a7aa6301c5cf04241300f6c97783c0999ebfbe1a6383469feaf23fe4bfc34678ba3553dc53b397b873f4 + checksum: 10c0/a8b0665888ec686bbb8f8caff2ac05191c2a402f1a8913636069d9a53c78d0ddf91d4642d093f2bb8c2d6d07cd3efd7242e567e0d8197e37b314eab81089cc13 languageName: node linkType: hard @@ -1295,13 +1298,13 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/types@npm:3.821.0": - version: 3.821.0 - resolution: "@aws-sdk/types@npm:3.821.0" +"@aws-sdk/types@npm:3.862.0": + version: 3.862.0 + resolution: "@aws-sdk/types@npm:3.862.0" dependencies: - "@smithy/types": "npm:^4.3.1" + "@smithy/types": "npm:^4.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/6202b2c0db1dd5ee78e6dc45c51f8b19deff0ee400dd5a7a15d089cc5493a2db6a6e0553ff32742e8bc810d428b36599534e14c1b466695550aef1b1d87f043d + checksum: 10c0/d8e13eadde27c29e39d8effa861a3dc8ef43fba6ecb9772e3461619a76897873c8d4355be89aa5090294d1f17e1a6697834f0bbf6a7f73902a77fe00b1fbe5c2 languageName: node linkType: hard @@ -1315,12 +1318,12 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-arn-parser@npm:3.804.0": - version: 3.804.0 - resolution: "@aws-sdk/util-arn-parser@npm:3.804.0" +"@aws-sdk/util-arn-parser@npm:3.873.0": + version: 3.873.0 + resolution: "@aws-sdk/util-arn-parser@npm:3.873.0" dependencies: tslib: "npm:^2.6.2" - checksum: 10c0/b6d4c883ec2949fa40552fe8573c9c32af07c92c1bd94a27d978aa14d37b005be95392069d6b882ba977484f4dd0371792296fb2516f5d7601be5102888ee9ee + checksum: 10c0/d99aa771464ca63d0cc737fad34ac40be2b1fecbfa0eeb3aea0b59be6a5e628c24be2847490e8786ed782b818b9248a7b0391d988f2914b3a415f551cb5d1b93 languageName: node linkType: hard @@ -1336,27 +1339,28 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.828.0": - version: 3.828.0 - resolution: "@aws-sdk/util-endpoints@npm:3.828.0" +"@aws-sdk/util-endpoints@npm:3.879.0": + version: 3.879.0 + resolution: "@aws-sdk/util-endpoints@npm:3.879.0" dependencies: - "@aws-sdk/types": "npm:3.821.0" - "@smithy/types": "npm:^4.3.1" - "@smithy/util-endpoints": "npm:^3.0.6" + "@aws-sdk/types": "npm:3.862.0" + "@smithy/types": "npm:^4.3.2" + "@smithy/url-parser": "npm:^4.0.5" + "@smithy/util-endpoints": "npm:^3.0.7" tslib: "npm:^2.6.2" - checksum: 10c0/650a8bd823f22c6fb1ebc21bf418af9de99c969a8b856721dcadf563b7699971db475ce1c725b9e5423dd8c30801c1cd9e0a5cbe17bb71b5fe74740669c213cf + checksum: 10c0/abf709bbdaf26f5920f41e105a153a959e0451b88c047957181b7ad834b1b5914d72728a89142a3921c389485a173537a8e0505ff4b308276b5334cbbd7fd60a languageName: node linkType: hard -"@aws-sdk/util-format-url@npm:3.821.0": - version: 3.821.0 - resolution: "@aws-sdk/util-format-url@npm:3.821.0" +"@aws-sdk/util-format-url@npm:3.873.0": + version: 3.873.0 + resolution: "@aws-sdk/util-format-url@npm:3.873.0" dependencies: - "@aws-sdk/types": "npm:3.821.0" - "@smithy/querystring-builder": "npm:^4.0.4" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/types": "npm:3.862.0" + "@smithy/querystring-builder": "npm:^4.0.5" + "@smithy/types": "npm:^4.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/bb574930dc0e940665836aefbc32307955bad2d7c05d4b3e632eae62b8e4f6d5209c6c9ebc095897120461f4588225e0bfd661e07b7efe8af18a390f946bce19 + checksum: 10c0/b7cadd94784541b64b65c747da46c1aeae615385f76fdb02d9dc0cd77f42d336db2a7814cdd6253d8f5df92fc5987f2913dc3f5e23b8e036522836185b6d0991 languageName: node linkType: hard @@ -1381,15 +1385,15 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-user-agent-browser@npm:3.821.0": - version: 3.821.0 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.821.0" +"@aws-sdk/util-user-agent-browser@npm:3.873.0": + version: 3.873.0 + resolution: "@aws-sdk/util-user-agent-browser@npm:3.873.0" dependencies: - "@aws-sdk/types": "npm:3.821.0" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/types": "npm:3.862.0" + "@smithy/types": "npm:^4.3.2" bowser: "npm:^2.11.0" tslib: "npm:^2.6.2" - checksum: 10c0/e0045e9d3798c96f9e4da949a79a54a725ad5806129691a967fd0fad4bcea4c65cd7a962c71eab9f61417d804c281faa42c5cd461cca151ea931349ee4cf2a2b + checksum: 10c0/a65177d5b27632ebeb4e922ee3a7ab1bce06d8120a9ac33343900125be67498837f0df8495008df6144ef7b687c095477016dba54d40be11397b6a418a4f81ef languageName: node linkType: hard @@ -1410,31 +1414,38 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.828.0": - version: 3.828.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.828.0" +"@aws-sdk/util-user-agent-node@npm:3.883.0": + version: 3.883.0 + resolution: "@aws-sdk/util-user-agent-node@npm:3.883.0" dependencies: - "@aws-sdk/middleware-user-agent": "npm:3.828.0" - "@aws-sdk/types": "npm:3.821.0" - "@smithy/node-config-provider": "npm:^4.1.3" - "@smithy/types": "npm:^4.3.1" + "@aws-sdk/middleware-user-agent": "npm:3.883.0" + "@aws-sdk/types": "npm:3.862.0" + "@smithy/node-config-provider": "npm:^4.1.4" + "@smithy/types": "npm:^4.3.2" tslib: "npm:^2.6.2" peerDependencies: aws-crt: ">=1.0.0" peerDependenciesMeta: aws-crt: optional: true - checksum: 10c0/19997223540d49bbeaeae5aafc7b0d81bb9ae4af83405e66cd19beb57a93f35cb8866216ae699da2c9e99fff3986557e77679267338cf40380f8a49e767e6dbd + checksum: 10c0/440ba1130df97f0a4899e0d9245993ce579cb54edad427534c90bb6e37c2b3aa48951527bb07598f0505c8117f282c984ce7e2ec4270a7be07f6f9720c06eafd languageName: node linkType: hard -"@aws-sdk/xml-builder@npm:3.821.0": - version: 3.821.0 - resolution: "@aws-sdk/xml-builder@npm:3.821.0" +"@aws-sdk/xml-builder@npm:3.873.0": + version: 3.873.0 + resolution: "@aws-sdk/xml-builder@npm:3.873.0" dependencies: - "@smithy/types": "npm:^4.3.1" + "@smithy/types": "npm:^4.3.2" tslib: "npm:^2.6.2" - checksum: 10c0/316e0eb04bcec0bb0897f67718629deab29adb9664ce78743ad854df772472c02332ab12627d74b96ebe2205adc51b1cb7fb01fcb4251e80a7af405e56cfa135 + checksum: 10c0/f58d49c1bbee2fb8a225b23ff7c26e84264df657d55cf7ca204f07f583603cbb75be356a5ef576810f9a1fddfe133d556ead0a39349cdb94e28bcaae6c279128 + languageName: node + linkType: hard + +"@aws/lambda-invoke-store@npm:^0.0.1": + version: 0.0.1 + resolution: "@aws/lambda-invoke-store@npm:0.0.1" + checksum: 10c0/0bbf3060014a462177fb743e132e9b106a6743ad9cd905df4bd26e9ca8bfe2cc90473b03a79938fa908934e45e43f366f57af56a697991abda71d9ac92f5018f languageName: node linkType: hard @@ -1821,7 +1832,7 @@ __metadata: languageName: node linkType: hard -"@cirrobio/api-client@npm:^0.10.1, @cirrobio/api-client@workspace:packages/api-client": +"@cirrobio/api-client@npm:^0.10.0, @cirrobio/api-client@npm:^0.10.2, @cirrobio/api-client@workspace:packages/api-client": version: 0.0.0-use.local resolution: "@cirrobio/api-client@workspace:packages/api-client" dependencies: @@ -1829,20 +1840,13 @@ __metadata: languageName: unknown linkType: soft -"@cirrobio/api-client@npm:^0.9.0, @cirrobio/api-client@npm:^0.9.1": - version: 0.9.4 - resolution: "@cirrobio/api-client@npm:0.9.4" - checksum: 10c0/64fad370edb2b3b84d98e83958c9f5a37139dfe600c9b2bb6e6968644fe6391ba13502ae76988b933bf9013502c0f6e14760790b9b8aa2a54a9c488fbfd14bd9 - languageName: node - linkType: hard - "@cirrobio/react-auth@npm:^0.0.1, @cirrobio/react-auth@workspace:packages/react-auth": version: 0.0.0-use.local resolution: "@cirrobio/react-auth@workspace:packages/react-auth" dependencies: - "@cirrobio/api-client": "npm:^0.9.0" + "@cirrobio/api-client": "npm:^0.10.0" "@cirrobio/react-core": "npm:^0.0.1" - "@cirrobio/sdk": "npm:^0.9.0" + "@cirrobio/sdk": "npm:^0.10.0" "@mui/icons-material": "npm:^5.17.1" "@mui/lab": "npm:^5.0.0-alpha.176" "@mui/material": "npm:^5.15.10" @@ -1860,7 +1864,7 @@ __metadata: version: 0.0.0-use.local resolution: "@cirrobio/react-core@workspace:packages/react-core" dependencies: - "@cirrobio/sdk": "npm:^0.9.0" + "@cirrobio/sdk": "npm:^0.10.0" peerDependencies: react: ^16.14 || ^17 || ^18 || ^19 languageName: unknown @@ -1870,10 +1874,10 @@ __metadata: version: 0.0.0-use.local resolution: "@cirrobio/react-tool@workspace:packages/react-tool" dependencies: - "@cirrobio/api-client": "npm:^0.9.0" + "@cirrobio/api-client": "npm:^0.10.0" "@cirrobio/react-auth": "npm:^0.0.1" "@cirrobio/react-core": "npm:^0.0.1" - "@cirrobio/sdk": "npm:^0.9.0" + "@cirrobio/sdk": "npm:^0.10.0" peerDependencies: "@emotion/react": ^11.11.3 "@emotion/styled": ^11.11.0 @@ -1887,7 +1891,7 @@ __metadata: version: 0.0.0-use.local resolution: "@cirrobio/react-ui-core@workspace:packages/react-ui-core" dependencies: - "@cirrobio/sdk": "npm:^0.9.0" + "@cirrobio/sdk": "npm:^0.10.0" peerDependencies: "@emotion/react": ^11.11.3 "@emotion/styled": ^11.11.0 @@ -1896,27 +1900,14 @@ __metadata: languageName: unknown linkType: soft -"@cirrobio/sdk@npm:^0.9.0": - version: 0.9.4 - resolution: "@cirrobio/sdk@npm:0.9.4" - dependencies: - "@aws-sdk/client-s3": "npm:^3.34.0" - "@aws-sdk/lib-storage": "npm:^3.34.0" - "@aws-sdk/s3-request-presigner": "npm:^3.34.0" - "@cirrobio/api-client": "npm:^0.9.1" - uuid: "npm:^11.1.0" - checksum: 10c0/066d427a606084aaa8370661f7b93b62b23df2c7a1dd65668608d6773f0aaa477e1ee0ec08839f5c00a489bd76d010160a674e00e5d88180fdeb216d54c74ff0 - languageName: node - linkType: hard - -"@cirrobio/sdk@workspace:*, @cirrobio/sdk@workspace:packages/sdk": +"@cirrobio/sdk@npm:^0.10.0, @cirrobio/sdk@workspace:*, @cirrobio/sdk@workspace:packages/sdk": version: 0.0.0-use.local resolution: "@cirrobio/sdk@workspace:packages/sdk" dependencies: - "@aws-sdk/client-s3": "npm:^3.34.0" - "@aws-sdk/lib-storage": "npm:^3.34.0" - "@aws-sdk/s3-request-presigner": "npm:^3.34.0" - "@cirrobio/api-client": "npm:^0.10.1" + "@aws-sdk/client-s3": "npm:^3.886.0" + "@aws-sdk/lib-storage": "npm:^3.886.0" + "@aws-sdk/s3-request-presigner": "npm:^3.886.0" + "@cirrobio/api-client": "npm:^0.10.2" "@types/jest": "npm:^29.5.5" "@types/node": "npm:^22.13.1" jest: "npm:^29.7.0" @@ -3227,32 +3218,32 @@ __metadata: languageName: node linkType: hard -"@smithy/abort-controller@npm:^4.0.4": - version: 4.0.4 - resolution: "@smithy/abort-controller@npm:4.0.4" +"@smithy/abort-controller@npm:^4.0.5, @smithy/abort-controller@npm:^4.1.1": + version: 4.1.1 + resolution: "@smithy/abort-controller@npm:4.1.1" dependencies: - "@smithy/types": "npm:^4.3.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/eb172b002fb92406c69b83460f949ace73247e6abd85d0d3714de2765c5db7b98070b9abfb630e2c591dd7b2ff770cc24f7737c1c207581f716c402b16bf46f9 + checksum: 10c0/f50ee8e76dab55df7af7247c5dac88209702b9e0a775a5d98472d67c607b6f624c3789ac75974c8b6fa452e1a4f9f72e5749dbea5b57f14d7ca137929e36f0ee languageName: node linkType: hard -"@smithy/chunked-blob-reader-native@npm:^4.0.0": - version: 4.0.0 - resolution: "@smithy/chunked-blob-reader-native@npm:4.0.0" +"@smithy/chunked-blob-reader-native@npm:^4.1.0": + version: 4.1.0 + resolution: "@smithy/chunked-blob-reader-native@npm:4.1.0" dependencies: - "@smithy/util-base64": "npm:^4.0.0" + "@smithy/util-base64": "npm:^4.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/4387f4e8841f20c1c4e689078141de7e6f239e7883be3a02810a023aa30939b15576ee00227b991972d2c5a2f3b6152bcaeca0975c9fa8d3669354c647bd532a + checksum: 10c0/1b6805ac870c2138c471997b80a75967eb7226cc86dc8550797446b4106e22fd078c4717b4acf5deda9fba284eac7738b4c7ed749a5199e44c1d482f35c7d3b8 languageName: node linkType: hard -"@smithy/chunked-blob-reader@npm:^5.0.0": - version: 5.0.0 - resolution: "@smithy/chunked-blob-reader@npm:5.0.0" +"@smithy/chunked-blob-reader@npm:^5.1.0": + version: 5.1.0 + resolution: "@smithy/chunked-blob-reader@npm:5.1.0" dependencies: tslib: "npm:^2.6.2" - checksum: 10c0/55ba0fe366ddaa3f93e1faf8a70df0b67efedbd0008922295efe215df09b68df0ba3043293e65b17e7d1be71448d074c2bfc54e5eb6bd18f59b425822c2b9e9a + checksum: 10c0/28f2ac63b2c019f605d7669fb9dc2a77e3ab54460a7c23fa3eaa64fa80d465e971905a80717a6260b88941f2acca556128984d914cd728fa34bcb2bd2826e7b8 languageName: node linkType: hard @@ -3269,16 +3260,16 @@ __metadata: languageName: node linkType: hard -"@smithy/config-resolver@npm:^4.1.4": - version: 4.1.4 - resolution: "@smithy/config-resolver@npm:4.1.4" +"@smithy/config-resolver@npm:^4.1.5, @smithy/config-resolver@npm:^4.2.1": + version: 4.2.1 + resolution: "@smithy/config-resolver@npm:4.2.1" dependencies: - "@smithy/node-config-provider": "npm:^4.1.3" - "@smithy/types": "npm:^4.3.1" - "@smithy/util-config-provider": "npm:^4.0.0" - "@smithy/util-middleware": "npm:^4.0.4" + "@smithy/node-config-provider": "npm:^4.2.1" + "@smithy/types": "npm:^4.5.0" + "@smithy/util-config-provider": "npm:^4.1.0" + "@smithy/util-middleware": "npm:^4.1.1" tslib: "npm:^2.6.2" - checksum: 10c0/41832a42f8da7143732c71098b410f4ddcb096066126f7e8f45bae8d9aeb95681bd0d0d54886f46244c945c63829ca5d23373d4de31a038487aa07159722ef4e + checksum: 10c0/fc60c55bff658ab102e256b2e9e67d0a75f62ce75025152897ba9ec4f2a71a387cd79f99892e21dd91a1352bff5b7f35da98bc6da335c224e8395a2fe1c280f8 languageName: node linkType: hard @@ -3298,20 +3289,22 @@ __metadata: languageName: node linkType: hard -"@smithy/core@npm:^3.5.3": - version: 3.5.3 - resolution: "@smithy/core@npm:3.5.3" +"@smithy/core@npm:^3.11.0, @smithy/core@npm:^3.9.2": + version: 3.11.0 + resolution: "@smithy/core@npm:3.11.0" dependencies: - "@smithy/middleware-serde": "npm:^4.0.8" - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/types": "npm:^4.3.1" - "@smithy/util-base64": "npm:^4.0.0" - "@smithy/util-body-length-browser": "npm:^4.0.0" - "@smithy/util-middleware": "npm:^4.0.4" - "@smithy/util-stream": "npm:^4.2.2" - "@smithy/util-utf8": "npm:^4.0.0" + "@smithy/middleware-serde": "npm:^4.1.1" + "@smithy/protocol-http": "npm:^5.2.1" + "@smithy/types": "npm:^4.5.0" + "@smithy/util-base64": "npm:^4.1.0" + "@smithy/util-body-length-browser": "npm:^4.1.0" + "@smithy/util-middleware": "npm:^4.1.1" + "@smithy/util-stream": "npm:^4.3.1" + "@smithy/util-utf8": "npm:^4.1.0" + "@types/uuid": "npm:^9.0.1" tslib: "npm:^2.6.2" - checksum: 10c0/ba4bce5c58a93467e52cb9362dbdc8c8aa120dfbc5333e911c8aadcbbcd236054126277eff9f970bfc24a918f44e929a4116e4533644811ad83f44c7abc81766 + uuid: "npm:^9.0.1" + checksum: 10c0/290d088cc7a14b38c96943577d6bfde1b0c47588493c0b18dfacc98affb02a3d067f9b57d71a838bd79b46c3a7a10458f445eada37934bf308c1e21ae02b4b7d languageName: node linkType: hard @@ -3328,16 +3321,16 @@ __metadata: languageName: node linkType: hard -"@smithy/credential-provider-imds@npm:^4.0.6": - version: 4.0.6 - resolution: "@smithy/credential-provider-imds@npm:4.0.6" +"@smithy/credential-provider-imds@npm:^4.0.7, @smithy/credential-provider-imds@npm:^4.1.1": + version: 4.1.1 + resolution: "@smithy/credential-provider-imds@npm:4.1.1" dependencies: - "@smithy/node-config-provider": "npm:^4.1.3" - "@smithy/property-provider": "npm:^4.0.4" - "@smithy/types": "npm:^4.3.1" - "@smithy/url-parser": "npm:^4.0.4" + "@smithy/node-config-provider": "npm:^4.2.1" + "@smithy/property-provider": "npm:^4.1.1" + "@smithy/types": "npm:^4.5.0" + "@smithy/url-parser": "npm:^4.1.1" tslib: "npm:^2.6.2" - checksum: 10c0/b1f3157d0a7b9f9155ac80aeac70d7db896d23d0322a6b38f0e848f1e53864ba1bca6d3dc5dd9af86446c371ebc5bffe01f0712ad562e7635e7d13e532622aa4 + checksum: 10c0/23b97ccc84f69b7ff4f68085b69585922650f95c23e1d18c78df4786616b93b928bab6a696162dfe369c6d3c9e667451614e1f7442fc8cfcaeb8183c6516fd73 languageName: node linkType: hard @@ -3353,15 +3346,15 @@ __metadata: languageName: node linkType: hard -"@smithy/eventstream-codec@npm:^4.0.4": - version: 4.0.4 - resolution: "@smithy/eventstream-codec@npm:4.0.4" +"@smithy/eventstream-codec@npm:^4.1.1": + version: 4.1.1 + resolution: "@smithy/eventstream-codec@npm:4.1.1" dependencies: "@aws-crypto/crc32": "npm:5.2.0" - "@smithy/types": "npm:^4.3.1" - "@smithy/util-hex-encoding": "npm:^4.0.0" + "@smithy/types": "npm:^4.5.0" + "@smithy/util-hex-encoding": "npm:^4.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/89b76826d4d3bf97317e3539ece105b9a03552144ad816a687b0b2cbca60e2b3513062c04b6cfacaffb270d616ffc8ac8bf549afc4aa676a6d7465df5a3215ba + checksum: 10c0/b3f3f11789cda08846d4e44065c870d30501b9c51042d756fab2fc3917b5886719a458cc4613890650cbcf9761b78fce8ead5add0385bc091c31fff186bbff85 languageName: node linkType: hard @@ -3376,14 +3369,14 @@ __metadata: languageName: node linkType: hard -"@smithy/eventstream-serde-browser@npm:^4.0.4": - version: 4.0.4 - resolution: "@smithy/eventstream-serde-browser@npm:4.0.4" +"@smithy/eventstream-serde-browser@npm:^4.0.5": + version: 4.1.1 + resolution: "@smithy/eventstream-serde-browser@npm:4.1.1" dependencies: - "@smithy/eventstream-serde-universal": "npm:^4.0.4" - "@smithy/types": "npm:^4.3.1" + "@smithy/eventstream-serde-universal": "npm:^4.1.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/b2444538555c54ac96d4049b0be3a65d959914bcd5198a8059edc838c7ffac5a1db225290194f85ea8805c47c1edc95484dfeb415cb2004ec3e572880f4fc8c5 + checksum: 10c0/5062581b4f011aed2d86b819f876080054ff730af3d0c995aa0099570dc513056471746f3f09f48196b7bbec8119363f1f1f4f7151ac3e5aaf67d28bba57edbb languageName: node linkType: hard @@ -3397,13 +3390,13 @@ __metadata: languageName: node linkType: hard -"@smithy/eventstream-serde-config-resolver@npm:^4.1.2": - version: 4.1.2 - resolution: "@smithy/eventstream-serde-config-resolver@npm:4.1.2" +"@smithy/eventstream-serde-config-resolver@npm:^4.1.3": + version: 4.2.1 + resolution: "@smithy/eventstream-serde-config-resolver@npm:4.2.1" dependencies: - "@smithy/types": "npm:^4.3.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/54184a29d1e42f1b972292efc3a5cbbe3ca237cd9ab76132bad40e8426fa62d0b7f6fdac01f23e3a9cac69919107ddfd9d2f2873f83ae1f65470d3052c67cefc + checksum: 10c0/93e31728e95b51d67c8ec61be074b12a5b6906af24ec3e2cee11c49f19f2cb95982b35c41eb8514498d409e10692e2baa68346938889c9d341e6443e039b4e74 languageName: node linkType: hard @@ -3418,14 +3411,14 @@ __metadata: languageName: node linkType: hard -"@smithy/eventstream-serde-node@npm:^4.0.4": - version: 4.0.4 - resolution: "@smithy/eventstream-serde-node@npm:4.0.4" +"@smithy/eventstream-serde-node@npm:^4.0.5": + version: 4.1.1 + resolution: "@smithy/eventstream-serde-node@npm:4.1.1" dependencies: - "@smithy/eventstream-serde-universal": "npm:^4.0.4" - "@smithy/types": "npm:^4.3.1" + "@smithy/eventstream-serde-universal": "npm:^4.1.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/e6d0765a73332c79b69531ed20c27e49475173da09ce21e4c011a64d8a61d7c5c328c9bc1cab991e145fc969b16071ffd6a33ab11291c0fa2a46e8dae28da23b + checksum: 10c0/c92c6d0cb6e382f8c22188517cd31d8436866f229cead67c0bd02f961b998ae8bfffbce9a874638c4e55f0c52ffd9659e6e7b8b3f4dbb138bab79a4651eb46c2 languageName: node linkType: hard @@ -3440,14 +3433,14 @@ __metadata: languageName: node linkType: hard -"@smithy/eventstream-serde-universal@npm:^4.0.4": - version: 4.0.4 - resolution: "@smithy/eventstream-serde-universal@npm:4.0.4" +"@smithy/eventstream-serde-universal@npm:^4.1.1": + version: 4.1.1 + resolution: "@smithy/eventstream-serde-universal@npm:4.1.1" dependencies: - "@smithy/eventstream-codec": "npm:^4.0.4" - "@smithy/types": "npm:^4.3.1" + "@smithy/eventstream-codec": "npm:^4.1.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/f0c18efa6cafa111ed20c8c53b4a7b6a0f8e25ccb0d2cafdf83282ebc6f96e47f26daf24b5b810ea83a02e03c994c35419d94fad76871f2cc6cb01d2aed277d9 + checksum: 10c0/5b9c0271746b9556d3818ae0f7fc16ec2414a2a30885eeb4c68ad3e9d9665e06b36c9a4384f9ef188afc5e72e50f6c8a37d7a11d8185f46e5cb041918fcf5ed7 languageName: node linkType: hard @@ -3477,28 +3470,28 @@ __metadata: languageName: node linkType: hard -"@smithy/fetch-http-handler@npm:^5.0.4": - version: 5.0.4 - resolution: "@smithy/fetch-http-handler@npm:5.0.4" +"@smithy/fetch-http-handler@npm:^5.1.1, @smithy/fetch-http-handler@npm:^5.2.1": + version: 5.2.1 + resolution: "@smithy/fetch-http-handler@npm:5.2.1" dependencies: - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/querystring-builder": "npm:^4.0.4" - "@smithy/types": "npm:^4.3.1" - "@smithy/util-base64": "npm:^4.0.0" + "@smithy/protocol-http": "npm:^5.2.1" + "@smithy/querystring-builder": "npm:^4.1.1" + "@smithy/types": "npm:^4.5.0" + "@smithy/util-base64": "npm:^4.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/ce57acfcd40a6ff3965c5f14b432c5ab87f0b0766766960224d4af79af85e37d61da2db6dc5cfa16bf4b8f2d8966a2838d2ee6eef8d5cd5a837aacbc01517851 + checksum: 10c0/c4a6a1a67f84361045bd10fef470ec6cda8691f549a455f734cfd3de05ccefc300973188e55578ae379b936f7e3f842971447386a3d8ec728f7df9c2f1c58fc2 languageName: node linkType: hard -"@smithy/hash-blob-browser@npm:^4.0.4": - version: 4.0.4 - resolution: "@smithy/hash-blob-browser@npm:4.0.4" +"@smithy/hash-blob-browser@npm:^4.0.5": + version: 4.1.1 + resolution: "@smithy/hash-blob-browser@npm:4.1.1" dependencies: - "@smithy/chunked-blob-reader": "npm:^5.0.0" - "@smithy/chunked-blob-reader-native": "npm:^4.0.0" - "@smithy/types": "npm:^4.3.1" + "@smithy/chunked-blob-reader": "npm:^5.1.0" + "@smithy/chunked-blob-reader-native": "npm:^4.1.0" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/f970058c2e04e86427e1474355199027fc84dc1d96d9a2278ed37904458d37b020472541390558bd3fb071bbd177b2850b18ceb1beb39d387fead06a2912f974 + checksum: 10c0/9188397ce2ee92bbac6147e3a342c981051e9623852198dc69de4899dd058ce5866222c663c166e6ddb6e9caa375e1b6296b5f7730026ec13a7d554009304571 languageName: node linkType: hard @@ -3514,26 +3507,26 @@ __metadata: languageName: node linkType: hard -"@smithy/hash-node@npm:^4.0.4": - version: 4.0.4 - resolution: "@smithy/hash-node@npm:4.0.4" +"@smithy/hash-node@npm:^4.0.5": + version: 4.1.1 + resolution: "@smithy/hash-node@npm:4.1.1" dependencies: - "@smithy/types": "npm:^4.3.1" - "@smithy/util-buffer-from": "npm:^4.0.0" - "@smithy/util-utf8": "npm:^4.0.0" + "@smithy/types": "npm:^4.5.0" + "@smithy/util-buffer-from": "npm:^4.1.0" + "@smithy/util-utf8": "npm:^4.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/07beb38643990f6c055457765d65af2aedd5944d819025df90d1f2f59596d1a1394cd8c9035ac6d343bc55e3afeb186b51b0ac91938024da8687120fc0b436dc + checksum: 10c0/aedf905c5fba7c814a697d973ea49c76d529dc9a10675676984a811637623b4f41542d72e53ed0df0a30881ee7fbe77c74bd49bd272e4a034e9d80021b6022a7 languageName: node linkType: hard -"@smithy/hash-stream-node@npm:^4.0.4": - version: 4.0.4 - resolution: "@smithy/hash-stream-node@npm:4.0.4" +"@smithy/hash-stream-node@npm:^4.0.5": + version: 4.1.1 + resolution: "@smithy/hash-stream-node@npm:4.1.1" dependencies: - "@smithy/types": "npm:^4.3.1" - "@smithy/util-utf8": "npm:^4.0.0" + "@smithy/types": "npm:^4.5.0" + "@smithy/util-utf8": "npm:^4.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/4899132433f520e45972bbacb6a999da8d7ccf4c813f2fb28b1af65eaf268ba549b2c37dd54a586cd7bcd82f6e4cec914651a6446b3fb3e1f226ca1864051535 + checksum: 10c0/91281943a0f198f01183a75ff62fd3fd8bc6708ee70e8d9a124d70f89042f3c300b42ceb58adb25ab5727df1810648c3e46ecf489b36a4020dc1c97a9003a771 languageName: node linkType: hard @@ -3547,13 +3540,13 @@ __metadata: languageName: node linkType: hard -"@smithy/invalid-dependency@npm:^4.0.4": - version: 4.0.4 - resolution: "@smithy/invalid-dependency@npm:4.0.4" +"@smithy/invalid-dependency@npm:^4.0.5": + version: 4.1.1 + resolution: "@smithy/invalid-dependency@npm:4.1.1" dependencies: - "@smithy/types": "npm:^4.3.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/5e5a6282c17a7310f8e866c7e34fa07479d42c650cf3c1875bdb0ec38d5280eeac82a269605a3521b8fa455b92673d8fd5e97eb997acf81a80da82d6f501d651 + checksum: 10c0/5700333f00b6a31a97b792fa9a00fadd07b2eafaea01087a6ea212753dba2621a040dfb0d7dc5a1f75bb95cc28fba2e498cdaca43009b142610944c0fcd95a58 languageName: node linkType: hard @@ -3584,6 +3577,15 @@ __metadata: languageName: node linkType: hard +"@smithy/is-array-buffer@npm:^4.1.0": + version: 4.1.0 + resolution: "@smithy/is-array-buffer@npm:4.1.0" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/399af810a9329c033d1816c492b17343d2ff956d32a358f327da6af0e4ad3c4640a1ef8dcd5f4d0f7d85ef19cf6909038f1a6539c938372dd33996d8f102bb9a + languageName: node + linkType: hard + "@smithy/md5-js@npm:2.0.7": version: 2.0.7 resolution: "@smithy/md5-js@npm:2.0.7" @@ -3595,14 +3597,14 @@ __metadata: languageName: node linkType: hard -"@smithy/md5-js@npm:^4.0.4": - version: 4.0.4 - resolution: "@smithy/md5-js@npm:4.0.4" +"@smithy/md5-js@npm:^4.0.5": + version: 4.1.1 + resolution: "@smithy/md5-js@npm:4.1.1" dependencies: - "@smithy/types": "npm:^4.3.1" - "@smithy/util-utf8": "npm:^4.0.0" + "@smithy/types": "npm:^4.5.0" + "@smithy/util-utf8": "npm:^4.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/7c66405dca5d7df6694367dbb4a3d9f13fdfe2589abc81f85d5fb7bf876e1382578d9c477d2256d4b5bc59951c3c534e51eb65c53c2fb3251080f16d1d7ea82c + checksum: 10c0/72d85566af8a318eb1599d483a51bb4eecd7204daba164fbefca04733e001ecc08fb1921815e399a5d5c8b46ab73804f8f5ac86501d4f5643d005733dc8a2360 languageName: node linkType: hard @@ -3617,14 +3619,14 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-content-length@npm:^4.0.4": - version: 4.0.4 - resolution: "@smithy/middleware-content-length@npm:4.0.4" +"@smithy/middleware-content-length@npm:^4.0.5": + version: 4.1.1 + resolution: "@smithy/middleware-content-length@npm:4.1.1" dependencies: - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/types": "npm:^4.3.1" + "@smithy/protocol-http": "npm:^5.2.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/fde43ff13f0830c4608b83cf6e2bd3ae142aa6eb3df6f6c190c2564dd00c2c98f4f95da9146c69bc09115ad87ffc9dc24935d1a3d6d3b2383a9c8558d9177dd6 + checksum: 10c0/c841e9221f43303103076b3e2d0fb745b75f8caa0ec9cabb0be4fdb2c5a3fe4077391c083b6f8547ccdc58c44f267ee2423430e544bb95484d2b805e6008b8f3 languageName: node linkType: hard @@ -3644,19 +3646,19 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-endpoint@npm:^4.1.11": - version: 4.1.11 - resolution: "@smithy/middleware-endpoint@npm:4.1.11" +"@smithy/middleware-endpoint@npm:^4.1.21, @smithy/middleware-endpoint@npm:^4.2.1": + version: 4.2.1 + resolution: "@smithy/middleware-endpoint@npm:4.2.1" dependencies: - "@smithy/core": "npm:^3.5.3" - "@smithy/middleware-serde": "npm:^4.0.8" - "@smithy/node-config-provider": "npm:^4.1.3" - "@smithy/shared-ini-file-loader": "npm:^4.0.4" - "@smithy/types": "npm:^4.3.1" - "@smithy/url-parser": "npm:^4.0.4" - "@smithy/util-middleware": "npm:^4.0.4" + "@smithy/core": "npm:^3.11.0" + "@smithy/middleware-serde": "npm:^4.1.1" + "@smithy/node-config-provider": "npm:^4.2.1" + "@smithy/shared-ini-file-loader": "npm:^4.1.1" + "@smithy/types": "npm:^4.5.0" + "@smithy/url-parser": "npm:^4.1.1" + "@smithy/util-middleware": "npm:^4.1.1" tslib: "npm:^2.6.2" - checksum: 10c0/28420a3b8b42655e29a005d2de14348082fd472c008bee2d135aa0907772678961bf74a631dc583e136f4819936aa495c80fbcca5079cadfd1800bb6ab391110 + checksum: 10c0/0f63a4f6d0bf14efbfba5dd051171447c7364f1e4aef6c3f6ea8f6a99dc09cc7e2008ad88540d8491f4a7f109d9cf2fd4e874c6cb83c7702e71527b3cf81bde7 languageName: node linkType: hard @@ -3677,20 +3679,21 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-retry@npm:^4.1.12": - version: 4.1.12 - resolution: "@smithy/middleware-retry@npm:4.1.12" +"@smithy/middleware-retry@npm:^4.1.22": + version: 4.2.1 + resolution: "@smithy/middleware-retry@npm:4.2.1" dependencies: - "@smithy/node-config-provider": "npm:^4.1.3" - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/service-error-classification": "npm:^4.0.5" - "@smithy/smithy-client": "npm:^4.4.3" - "@smithy/types": "npm:^4.3.1" - "@smithy/util-middleware": "npm:^4.0.4" - "@smithy/util-retry": "npm:^4.0.5" + "@smithy/node-config-provider": "npm:^4.2.1" + "@smithy/protocol-http": "npm:^5.2.1" + "@smithy/service-error-classification": "npm:^4.1.1" + "@smithy/smithy-client": "npm:^4.6.1" + "@smithy/types": "npm:^4.5.0" + "@smithy/util-middleware": "npm:^4.1.1" + "@smithy/util-retry": "npm:^4.1.1" + "@types/uuid": "npm:^9.0.1" tslib: "npm:^2.6.2" uuid: "npm:^9.0.1" - checksum: 10c0/7cd2ee73003423d0857a458db64ce0d9d484c8f4b669a8b33c866ee4fdbbc199e85a53f729a76d7f0874e771fb7f9b95ad151af443573588e15e9ecac1f38fbe + checksum: 10c0/fc79e81d53e7bf910400fe786f3741bd1876bc62d6d326a18a3c62a973733ff1c771d68b3838bfe6deb72b197fdb06b61eb4048d1bae0b0ad1ecdd9cdb41e998 languageName: node linkType: hard @@ -3704,14 +3707,14 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-serde@npm:^4.0.8": - version: 4.0.8 - resolution: "@smithy/middleware-serde@npm:4.0.8" +"@smithy/middleware-serde@npm:^4.0.9, @smithy/middleware-serde@npm:^4.1.1": + version: 4.1.1 + resolution: "@smithy/middleware-serde@npm:4.1.1" dependencies: - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/types": "npm:^4.3.1" + "@smithy/protocol-http": "npm:^5.2.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/11414e584780716b2b0487fe748da9927943d4d810b5b0161e73df6ab24a4d17f675773287f95868c57a71013385f7b027eb2afbab1eed3dbaafef754b482b27 + checksum: 10c0/69c0cf035da2ccbdf2838f50a1fafb0f8e6fb286b820e0aa91be7bdc6dd102f51ce3b295e68cdf9e7441dfc3160a3d3cabac99d98a8f0a75675ecf0f1e09d439 languageName: node linkType: hard @@ -3725,13 +3728,13 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-stack@npm:^4.0.4": - version: 4.0.4 - resolution: "@smithy/middleware-stack@npm:4.0.4" +"@smithy/middleware-stack@npm:^4.0.5, @smithy/middleware-stack@npm:^4.1.1": + version: 4.1.1 + resolution: "@smithy/middleware-stack@npm:4.1.1" dependencies: - "@smithy/types": "npm:^4.3.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/b29b6430e31f11683f0ce0e06d21a4bfe6cb791ce1eb5686533559baa81698f617bfbfdac06f569e13f077ce177cb70e55f4db20701906b3e344d9294817f382 + checksum: 10c0/8ee554c30e6802f6adcaf673e4d216cd8f56e13a9ef5d644ec94f0b553c3b62b451a8156fd49645cc1f5eedd09234a107edc42faff779416a4a43a215e370007 languageName: node linkType: hard @@ -3747,15 +3750,15 @@ __metadata: languageName: node linkType: hard -"@smithy/node-config-provider@npm:^4.1.3": - version: 4.1.3 - resolution: "@smithy/node-config-provider@npm:4.1.3" +"@smithy/node-config-provider@npm:^4.1.4, @smithy/node-config-provider@npm:^4.2.1": + version: 4.2.1 + resolution: "@smithy/node-config-provider@npm:4.2.1" dependencies: - "@smithy/property-provider": "npm:^4.0.4" - "@smithy/shared-ini-file-loader": "npm:^4.0.4" - "@smithy/types": "npm:^4.3.1" + "@smithy/property-provider": "npm:^4.1.1" + "@smithy/shared-ini-file-loader": "npm:^4.1.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/bea20b3f92290fbefa32d30c4ac7632f94d4e89b5432dfe5a2d0c6261bfd90e882d62dd02e0a4e65f3bc89f815b19e44d7bb103a78b6c77941cc186450ad79f1 + checksum: 10c0/ef648e075a36a0f543b9fdd51c2e250a2516934f6719331153a45f57d2fd5f367073a311b7fd5b03cdd19031282492a5be8b83df456dddf5186ff128f9ceae85 languageName: node linkType: hard @@ -3772,16 +3775,16 @@ __metadata: languageName: node linkType: hard -"@smithy/node-http-handler@npm:^4.0.6": - version: 4.0.6 - resolution: "@smithy/node-http-handler@npm:4.0.6" +"@smithy/node-http-handler@npm:^4.1.1, @smithy/node-http-handler@npm:^4.2.1": + version: 4.2.1 + resolution: "@smithy/node-http-handler@npm:4.2.1" dependencies: - "@smithy/abort-controller": "npm:^4.0.4" - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/querystring-builder": "npm:^4.0.4" - "@smithy/types": "npm:^4.3.1" + "@smithy/abort-controller": "npm:^4.1.1" + "@smithy/protocol-http": "npm:^5.2.1" + "@smithy/querystring-builder": "npm:^4.1.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/bde23701b6166b76958cbc194d551a139e3dcc1d05a6c7de3d5b14f54934ca5a49a28d13d8ec4b012716aae816cd0c8c4735c959d5ef697a7a1932fbcfc5d7f2 + checksum: 10c0/7536923c62b0bbbade8335b25368d02b4840cd381aba9dbdadb472fb501576d7b3b73121069356b022e9da3ec5d27711a00ec7786d31ba15089abdce582121cc languageName: node linkType: hard @@ -3795,13 +3798,13 @@ __metadata: languageName: node linkType: hard -"@smithy/property-provider@npm:^4.0.4": - version: 4.0.4 - resolution: "@smithy/property-provider@npm:4.0.4" +"@smithy/property-provider@npm:^4.0.5, @smithy/property-provider@npm:^4.1.1": + version: 4.1.1 + resolution: "@smithy/property-provider@npm:4.1.1" dependencies: - "@smithy/types": "npm:^4.3.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/c370efbb43ab01fb6050fbf4c231bbe2fb7d660256adeee40c0c4c14b7af1b9b75c36f6924aeacdd2885fad1aaf0655047cafe5f0d22f5e371cbd25ff2f04b27 + checksum: 10c0/5aa28b7e6cc23baf3605aa3be8a33ae4943635e698e0de773e8056f5ad06494f370f23cd3c4d083245d6fe411c25c38a76887d38a36d5daf075e36e6e6e3864f languageName: node linkType: hard @@ -3815,13 +3818,13 @@ __metadata: languageName: node linkType: hard -"@smithy/protocol-http@npm:^5.1.2": - version: 5.1.2 - resolution: "@smithy/protocol-http@npm:5.1.2" +"@smithy/protocol-http@npm:^5.1.3, @smithy/protocol-http@npm:^5.2.1": + version: 5.2.1 + resolution: "@smithy/protocol-http@npm:5.2.1" dependencies: - "@smithy/types": "npm:^4.3.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/50fb026efa321e65a77f9747312eeb428ff2196095c15ed5937efe807a4734c47746759ccf2dbc84a45719effcbc81221662289be6d4d5ec122afb0e3cd66fd9 + checksum: 10c0/b27df0a94f8e0bab1e8310da82c3048e6d397a3b52f8413c4f19bb9c13d11afcdf7424293cb8d8d3e867b07ff8c5f3c8d0fbdd7d07a8328a39721eb202336d2b languageName: node linkType: hard @@ -3836,14 +3839,14 @@ __metadata: languageName: node linkType: hard -"@smithy/querystring-builder@npm:^4.0.4": - version: 4.0.4 - resolution: "@smithy/querystring-builder@npm:4.0.4" +"@smithy/querystring-builder@npm:^4.0.5, @smithy/querystring-builder@npm:^4.1.1": + version: 4.1.1 + resolution: "@smithy/querystring-builder@npm:4.1.1" dependencies: - "@smithy/types": "npm:^4.3.1" - "@smithy/util-uri-escape": "npm:^4.0.0" + "@smithy/types": "npm:^4.5.0" + "@smithy/util-uri-escape": "npm:^4.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/30ec0301fbc2212101391841000a3117ab6c3ae2b6b2a1db230cc1dfcf97738f527b23f859f0a5e843f2a983793b58cdcd21a0ce11ef93fcdf5d8a1ee0d70fbc + checksum: 10c0/15d41888eae29f57dbf9d2c8caa449d19ebb760b83958a0fe2cf4858948bb6e0466c176a207b868d8af7785e8f6688b87ada4e364ec6fd729ab6bffbd64b92d8 languageName: node linkType: hard @@ -3857,13 +3860,13 @@ __metadata: languageName: node linkType: hard -"@smithy/querystring-parser@npm:^4.0.4": - version: 4.0.4 - resolution: "@smithy/querystring-parser@npm:4.0.4" +"@smithy/querystring-parser@npm:^4.1.1": + version: 4.1.1 + resolution: "@smithy/querystring-parser@npm:4.1.1" dependencies: - "@smithy/types": "npm:^4.3.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/36bc93732a1628be5dd53748f6f36237bad26de2da810195213541dd35b20eee0b0264160a0de734b9333ca747e0229253d6729d1a8ddc26d176c0b1cce309e0 + checksum: 10c0/6bf8672aca07826af16625b41f20332fdfdc39861124e026ee929e4652f638edc7107d347a2fe7feb0c2e6f2c98d149d2d383cecaab46a48a990f36333e8f016 languageName: node linkType: hard @@ -3876,12 +3879,12 @@ __metadata: languageName: node linkType: hard -"@smithy/service-error-classification@npm:^4.0.5": - version: 4.0.5 - resolution: "@smithy/service-error-classification@npm:4.0.5" +"@smithy/service-error-classification@npm:^4.1.1": + version: 4.1.1 + resolution: "@smithy/service-error-classification@npm:4.1.1" dependencies: - "@smithy/types": "npm:^4.3.1" - checksum: 10c0/9ca6a876a403fa15151d955ef43c7b4e8c3a93b334d493ab7086d095bcd8670b848779bb82be66b2a14423edf169f1be514ec381f71d2d78f0612731416911ac + "@smithy/types": "npm:^4.5.0" + checksum: 10c0/946d3b7cc642d665a1717c69fdf7df4256a6fe03d3686be8fa9c514c6ff185eaee5a4ac5d0f45958087e8750a2fcba67f30e5567457889b54684e7dd00dfd400 languageName: node linkType: hard @@ -3895,13 +3898,13 @@ __metadata: languageName: node linkType: hard -"@smithy/shared-ini-file-loader@npm:^4.0.4": - version: 4.0.4 - resolution: "@smithy/shared-ini-file-loader@npm:4.0.4" +"@smithy/shared-ini-file-loader@npm:^4.0.5, @smithy/shared-ini-file-loader@npm:^4.1.1": + version: 4.1.1 + resolution: "@smithy/shared-ini-file-loader@npm:4.1.1" dependencies: - "@smithy/types": "npm:^4.3.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/a3ecabadda13ff6fca99585e7e0086a04c4d2350b8c783b3a23493c2ae0a599f397d3cb80a7e171b7123889340995cada866d320726fa6a03f3063d60d5d0207 + checksum: 10c0/1768c3f11519bd73797a63c062dd6ff26dd3cc1d7fc1ae5a5d92209fb8d3140a8799258a854ef0efbda27d19de619e608599c0d870539c251c504c3a56999a60 languageName: node linkType: hard @@ -3921,19 +3924,19 @@ __metadata: languageName: node linkType: hard -"@smithy/signature-v4@npm:^5.1.2": - version: 5.1.2 - resolution: "@smithy/signature-v4@npm:5.1.2" +"@smithy/signature-v4@npm:^5.1.3": + version: 5.2.1 + resolution: "@smithy/signature-v4@npm:5.2.1" dependencies: - "@smithy/is-array-buffer": "npm:^4.0.0" - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/types": "npm:^4.3.1" - "@smithy/util-hex-encoding": "npm:^4.0.0" - "@smithy/util-middleware": "npm:^4.0.4" - "@smithy/util-uri-escape": "npm:^4.0.0" - "@smithy/util-utf8": "npm:^4.0.0" + "@smithy/is-array-buffer": "npm:^4.1.0" + "@smithy/protocol-http": "npm:^5.2.1" + "@smithy/types": "npm:^4.5.0" + "@smithy/util-hex-encoding": "npm:^4.1.0" + "@smithy/util-middleware": "npm:^4.1.1" + "@smithy/util-uri-escape": "npm:^4.1.0" + "@smithy/util-utf8": "npm:^4.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/83d3870668a6c080c1d0cbecf2e7d1a86c0298cc3a3df9fba21bd942e2a9bcae81eb50960c66bba00c6f9820ef9e5ab3e5ddba67b2d7914a09a82c7887621c0c + checksum: 10c0/d00cb14155b89016493e90e19d3406f5362d7ec4205cd82a4fba47521f87d88b372e1ebfa34ceb739704f2f21d7a7bbf4da699773f71fab58028d515b932d014 languageName: node linkType: hard @@ -3952,18 +3955,18 @@ __metadata: languageName: node linkType: hard -"@smithy/smithy-client@npm:^4.4.3": - version: 4.4.3 - resolution: "@smithy/smithy-client@npm:4.4.3" +"@smithy/smithy-client@npm:^4.5.2, @smithy/smithy-client@npm:^4.6.1": + version: 4.6.1 + resolution: "@smithy/smithy-client@npm:4.6.1" dependencies: - "@smithy/core": "npm:^3.5.3" - "@smithy/middleware-endpoint": "npm:^4.1.11" - "@smithy/middleware-stack": "npm:^4.0.4" - "@smithy/protocol-http": "npm:^5.1.2" - "@smithy/types": "npm:^4.3.1" - "@smithy/util-stream": "npm:^4.2.2" + "@smithy/core": "npm:^3.11.0" + "@smithy/middleware-endpoint": "npm:^4.2.1" + "@smithy/middleware-stack": "npm:^4.1.1" + "@smithy/protocol-http": "npm:^5.2.1" + "@smithy/types": "npm:^4.5.0" + "@smithy/util-stream": "npm:^4.3.1" tslib: "npm:^2.6.2" - checksum: 10c0/37f69c4af3883525cebe4ea648b05cd93de01742d7206e7613e65ec15f3bd06874b0d923a6ccfbdc3b7e01a2cb6dc6c961f7590f984eea4e55c68871dfb3b11a + checksum: 10c0/16c8aa6e44db638c7353e6e0068275cc30934650e8f67f1721e8adfcaad75dbe0eb4f2e9596e3a284f8f5528e1e26eab34f7ab9dab1398fae74d678b24446ef8 languageName: node linkType: hard @@ -3985,7 +3988,7 @@ __metadata: languageName: node linkType: hard -"@smithy/types@npm:^4.2.0, @smithy/types@npm:^4.3.1": +"@smithy/types@npm:^4.2.0": version: 4.3.1 resolution: "@smithy/types@npm:4.3.1" dependencies: @@ -3994,6 +3997,15 @@ __metadata: languageName: node linkType: hard +"@smithy/types@npm:^4.3.2, @smithy/types@npm:^4.5.0": + version: 4.5.0 + resolution: "@smithy/types@npm:4.5.0" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/7c765c9316893ab9e6575ba40e3d1569d43d7d1edd1110b505e190a4aa378a89e407b6f92de7bf0f22342ce05228ff0f1d37b14781e41c60c429fc22c8e5bae9 + languageName: node + linkType: hard + "@smithy/url-parser@npm:^3.0.11, @smithy/url-parser@npm:^3.0.3": version: 3.0.11 resolution: "@smithy/url-parser@npm:3.0.11" @@ -4005,14 +4017,14 @@ __metadata: languageName: node linkType: hard -"@smithy/url-parser@npm:^4.0.4": - version: 4.0.4 - resolution: "@smithy/url-parser@npm:4.0.4" +"@smithy/url-parser@npm:^4.0.5, @smithy/url-parser@npm:^4.1.1": + version: 4.1.1 + resolution: "@smithy/url-parser@npm:4.1.1" dependencies: - "@smithy/querystring-parser": "npm:^4.0.4" - "@smithy/types": "npm:^4.3.1" + "@smithy/querystring-parser": "npm:^4.1.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/5f4649d9ff618c683e339fa826b1d722419bf8e20d72726fc5fe3cd479ec8c161d4b09b6e24e49b0143a6fb4f9a950d35410db1834e143c28e377b9c529a3657 + checksum: 10c0/1f9e19d5d1e1a4874cf2f61df014715dc3685be385356758d3aed1a6b020b074af22961b12ae651faad74ed0460a102156471543031e74c726770820ede6f31c languageName: node linkType: hard @@ -4038,6 +4050,17 @@ __metadata: languageName: node linkType: hard +"@smithy/util-base64@npm:^4.1.0": + version: 4.1.0 + resolution: "@smithy/util-base64@npm:4.1.0" + dependencies: + "@smithy/util-buffer-from": "npm:^4.1.0" + "@smithy/util-utf8": "npm:^4.1.0" + tslib: "npm:^2.6.2" + checksum: 10c0/e2275e4a09c245b8a0c1c6ead4418333d037f6cbc29a01881b56fb5676ad46839058bbdb3f9f357898c8000feccac9344ee66c9c36e17dd321bda84a93f2c36f + 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" @@ -4056,6 +4079,15 @@ __metadata: languageName: node linkType: hard +"@smithy/util-body-length-browser@npm:^4.1.0": + version: 4.1.0 + resolution: "@smithy/util-body-length-browser@npm:4.1.0" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/e86c39696dca4ce4b58e393fb85263e31ee046d88fdbd0bd1ee121f5101faca5fc945a7da17432aa39e86c178c80ac183568edb3b7df323f1134172dc36192c6 + 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" @@ -4104,6 +4136,16 @@ __metadata: languageName: node linkType: hard +"@smithy/util-buffer-from@npm:^4.1.0": + version: 4.1.0 + resolution: "@smithy/util-buffer-from@npm:4.1.0" + dependencies: + "@smithy/is-array-buffer": "npm:^4.1.0" + tslib: "npm:^2.6.2" + checksum: 10c0/f19457df277e7125ffbf106c26c70ffbc550956afceede4e2c2eb13a32f6f304f9e3b7a37f4c717df3c5ce97f8b759ee59ceed0e3f649f236bbaf2bfe8f266ef + 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" @@ -4122,6 +4164,15 @@ __metadata: languageName: node linkType: hard +"@smithy/util-config-provider@npm:^4.1.0": + version: 4.1.0 + resolution: "@smithy/util-config-provider@npm:4.1.0" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/099add392d9f029dec36d3646af4a63145a13ed8014af11f507bffbdb113fc2bb2bfd71ee157e385320f4c8de4bd48557c98f40878f93022187d3fc3082e6713 + languageName: node + linkType: hard + "@smithy/util-defaults-mode-browser@npm:^3.0.13": version: 3.0.34 resolution: "@smithy/util-defaults-mode-browser@npm:3.0.34" @@ -4135,16 +4186,16 @@ __metadata: languageName: node linkType: hard -"@smithy/util-defaults-mode-browser@npm:^4.0.19": - version: 4.0.19 - resolution: "@smithy/util-defaults-mode-browser@npm:4.0.19" +"@smithy/util-defaults-mode-browser@npm:^4.0.29": + version: 4.1.1 + resolution: "@smithy/util-defaults-mode-browser@npm:4.1.1" dependencies: - "@smithy/property-provider": "npm:^4.0.4" - "@smithy/smithy-client": "npm:^4.4.3" - "@smithy/types": "npm:^4.3.1" + "@smithy/property-provider": "npm:^4.1.1" + "@smithy/smithy-client": "npm:^4.6.1" + "@smithy/types": "npm:^4.5.0" bowser: "npm:^2.11.0" tslib: "npm:^2.6.2" - checksum: 10c0/05998cf1481f1bc2467f2fba571faa9ebcaeb1cf58d5c411a1096320068a9467b100ee2491eb1d56458d56d723a0b28711a975fb186df60bf3165d2d8aa6a678 + checksum: 10c0/dd1e1e449ca44c50a7f6b0cfac51e40426f1034309921bcd6a591c9afdc09b5cb7d34685202a504cdded183297e4f455bb2404ebe012e912195ba32397ac7886 languageName: node linkType: hard @@ -4163,18 +4214,18 @@ __metadata: languageName: node linkType: hard -"@smithy/util-defaults-mode-node@npm:^4.0.19": - version: 4.0.19 - resolution: "@smithy/util-defaults-mode-node@npm:4.0.19" +"@smithy/util-defaults-mode-node@npm:^4.0.29": + version: 4.1.1 + resolution: "@smithy/util-defaults-mode-node@npm:4.1.1" dependencies: - "@smithy/config-resolver": "npm:^4.1.4" - "@smithy/credential-provider-imds": "npm:^4.0.6" - "@smithy/node-config-provider": "npm:^4.1.3" - "@smithy/property-provider": "npm:^4.0.4" - "@smithy/smithy-client": "npm:^4.4.3" - "@smithy/types": "npm:^4.3.1" + "@smithy/config-resolver": "npm:^4.2.1" + "@smithy/credential-provider-imds": "npm:^4.1.1" + "@smithy/node-config-provider": "npm:^4.2.1" + "@smithy/property-provider": "npm:^4.1.1" + "@smithy/smithy-client": "npm:^4.6.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/e12adbad9efa9f5604beb356d7b84de62df47cea6535e9835987a764c28602e341ea4909cd08daef6c0627bbcb921725bca524664ac00eb78ac27efbd0e924dd + checksum: 10c0/4296c76e2bf7af52a71bfa7811e4f0f070fd5e02da4b51ec35d23a2c3b32382a163d0c3d90a397cdcf4147fde1816e9b57081c9553b234b85159b0ddbed0d570 languageName: node linkType: hard @@ -4189,14 +4240,14 @@ __metadata: languageName: node linkType: hard -"@smithy/util-endpoints@npm:^3.0.6": - version: 3.0.6 - resolution: "@smithy/util-endpoints@npm:3.0.6" +"@smithy/util-endpoints@npm:^3.0.7": + version: 3.1.1 + resolution: "@smithy/util-endpoints@npm:3.1.1" dependencies: - "@smithy/node-config-provider": "npm:^4.1.3" - "@smithy/types": "npm:^4.3.1" + "@smithy/node-config-provider": "npm:^4.2.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/d7d583c73a0c1ce38188569616cd4d7c95c36c0393516117043962b932f8c743e8cd672d2edd23ea8a9da0e30b84ee0f0ced0709cc8024b70ea8e5f17f505811 + checksum: 10c0/bb1bcd08c217dc6a7a55f18fa2277af3d43d4072894cbba8d0af8edb3942ef50a276f011f670f6236010ab65d34b148f67c114d598944de433fa3496439c77fa languageName: node linkType: hard @@ -4218,12 +4269,12 @@ __metadata: languageName: node linkType: hard -"@smithy/util-hex-encoding@npm:^4.0.0": - version: 4.0.0 - resolution: "@smithy/util-hex-encoding@npm:4.0.0" +"@smithy/util-hex-encoding@npm:^4.1.0": + version: 4.1.0 + resolution: "@smithy/util-hex-encoding@npm:4.1.0" dependencies: tslib: "npm:^2.6.2" - checksum: 10c0/70dbb3aa1a79aff3329d07a66411ff26398df338bdd8a6d077b438231afe3dc86d9a7022204baddecd8bc633f059d5c841fa916d81dd7447ea79b64148f386d2 + checksum: 10c0/eefaa537612afd13e497353a1bd55f3d6f977cdc52360f91fcb3b83b68d6cdd9b9fc16ab82561375b509ed8d5735c47b263c4e64e96471d1662d4c7a8c88449d languageName: node linkType: hard @@ -4237,13 +4288,13 @@ __metadata: languageName: node linkType: hard -"@smithy/util-middleware@npm:^4.0.4": - version: 4.0.4 - resolution: "@smithy/util-middleware@npm:4.0.4" +"@smithy/util-middleware@npm:^4.0.5, @smithy/util-middleware@npm:^4.1.1": + version: 4.1.1 + resolution: "@smithy/util-middleware@npm:4.1.1" dependencies: - "@smithy/types": "npm:^4.3.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/39530add63ec13dac555846c30e98128316136f7f57bfd8fe876a8c15a7677cb64d0a33fd1f08b671096d769ab3f025d4d8c785a9d7a7cdf42fd0188236b0f32 + checksum: 10c0/47bee56b2fbf9fbe3c4be4e1daac247fea889848d43120c64895529bb92ef43b25cf07213792d1646622356a1572b91cc48b0976c39667a9020edfa5ec58d093 languageName: node linkType: hard @@ -4258,14 +4309,14 @@ __metadata: languageName: node linkType: hard -"@smithy/util-retry@npm:^4.0.5": - version: 4.0.5 - resolution: "@smithy/util-retry@npm:4.0.5" +"@smithy/util-retry@npm:^4.0.7, @smithy/util-retry@npm:^4.1.1": + version: 4.1.1 + resolution: "@smithy/util-retry@npm:4.1.1" dependencies: - "@smithy/service-error-classification": "npm:^4.0.5" - "@smithy/types": "npm:^4.3.1" + "@smithy/service-error-classification": "npm:^4.1.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/8e6c136f79c503c02e28b31bc43fce7a37282143c20aee13d2a7421b0502d5c478f2eb3cf3c3455739ed9e441e572e2725bf39339aa08ed53825129123dcfff0 + checksum: 10c0/25f07dbf9be8798d2792b2ebfd68506408797815fc4ef75a6f526f52d3c6e6f7a53723f6c46b6a44855ed3cebee4da5a49a86c4e8b2e8b923e39aff965b00e7d languageName: node linkType: hard @@ -4285,19 +4336,19 @@ __metadata: languageName: node linkType: hard -"@smithy/util-stream@npm:^4.2.2": - version: 4.2.2 - resolution: "@smithy/util-stream@npm:4.2.2" +"@smithy/util-stream@npm:^4.2.4, @smithy/util-stream@npm:^4.3.1": + version: 4.3.1 + resolution: "@smithy/util-stream@npm:4.3.1" dependencies: - "@smithy/fetch-http-handler": "npm:^5.0.4" - "@smithy/node-http-handler": "npm:^4.0.6" - "@smithy/types": "npm:^4.3.1" - "@smithy/util-base64": "npm:^4.0.0" - "@smithy/util-buffer-from": "npm:^4.0.0" - "@smithy/util-hex-encoding": "npm:^4.0.0" - "@smithy/util-utf8": "npm:^4.0.0" + "@smithy/fetch-http-handler": "npm:^5.2.1" + "@smithy/node-http-handler": "npm:^4.2.1" + "@smithy/types": "npm:^4.5.0" + "@smithy/util-base64": "npm:^4.1.0" + "@smithy/util-buffer-from": "npm:^4.1.0" + "@smithy/util-hex-encoding": "npm:^4.1.0" + "@smithy/util-utf8": "npm:^4.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/5e4ef783e41185d291a72e8503d02fd5a5f7bd23f3d30198f3d738c0f27dd6d7ea131fe6fbe36a6ac69b8bd4207f7dfc75a15329764e6aa52f62c45bc5442619 + checksum: 10c0/7fd8fde8b011fe3535799d9a60195fe8e1229c6976b76d3bf930dbb9d27204754acbf082816cdacaa00e77857ab9e4b673c331c6626aba7ef242cdb7e143b028 languageName: node linkType: hard @@ -4310,12 +4361,12 @@ __metadata: languageName: node linkType: hard -"@smithy/util-uri-escape@npm:^4.0.0": - version: 4.0.0 - resolution: "@smithy/util-uri-escape@npm:4.0.0" +"@smithy/util-uri-escape@npm:^4.1.0": + version: 4.1.0 + resolution: "@smithy/util-uri-escape@npm:4.1.0" dependencies: tslib: "npm:^2.6.2" - checksum: 10c0/23984624060756adba8aa4ab1693fe6b387ee5064d8ec4dfd39bb5908c4ee8b9c3f2dc755da9b07505d8e3ce1338c1867abfa74158931e4728bf3cfcf2c05c3d + checksum: 10c0/3ff56036ce93226b05e68d34c1691e51cdd82ac5f2ba635701ba76a36a2b384ce945bfe2d9c4992f7b500387a6fe1de4d5d0825cd7c73fa10165678d443d3acc languageName: node linkType: hard @@ -4359,6 +4410,16 @@ __metadata: languageName: node linkType: hard +"@smithy/util-utf8@npm:^4.1.0": + version: 4.1.0 + resolution: "@smithy/util-utf8@npm:4.1.0" + dependencies: + "@smithy/util-buffer-from": "npm:^4.1.0" + tslib: "npm:^2.6.2" + checksum: 10c0/4331c056b005647701609c42609c3bf0848fdaa01134d891327820c32cfcf7410d8bce1c15d534e5c75af79ea4527c3ca33bccfc104e19a94475fbfe125ecb86 + languageName: node + linkType: hard + "@smithy/util-waiter@npm:^3.1.2": version: 3.2.0 resolution: "@smithy/util-waiter@npm:3.2.0" @@ -4370,14 +4431,14 @@ __metadata: languageName: node linkType: hard -"@smithy/util-waiter@npm:^4.0.5": - version: 4.0.5 - resolution: "@smithy/util-waiter@npm:4.0.5" +"@smithy/util-waiter@npm:^4.0.7": + version: 4.1.1 + resolution: "@smithy/util-waiter@npm:4.1.1" dependencies: - "@smithy/abort-controller": "npm:^4.0.4" - "@smithy/types": "npm:^4.3.1" + "@smithy/abort-controller": "npm:^4.1.1" + "@smithy/types": "npm:^4.5.0" tslib: "npm:^2.6.2" - checksum: 10c0/c53b4ae929d37d8d8b3629b0c91005d48c8f788257eccbfb62b3b7f7a670934d8a44556456289c4a0a5fde957d87162c36318184b5e2df154deeeabe97bfd4b4 + checksum: 10c0/0ecdaa4b8a2036f753e0ad6c2a4f3c98b069b98f16525db9e8219aaceb189e78b46ebcd8829210874cc44a4693f9a83da9eb96315c2ed30f379065b821d6447c languageName: node linkType: hard @@ -4702,7 +4763,7 @@ __metadata: languageName: node linkType: hard -"@types/uuid@npm:^9.0.0": +"@types/uuid@npm:^9.0.0, @types/uuid@npm:^9.0.1": version: 9.0.8 resolution: "@types/uuid@npm:9.0.8" checksum: 10c0/b411b93054cb1d4361919579ef3508a1f12bf15b5fdd97337d3d351bece6c921b52b6daeef89b62340fd73fd60da407878432a1af777f40648cbe53a01723489 @@ -5879,6 +5940,17 @@ __metadata: 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: 10c0/d1057d2e790c327ccfc42b872b91786a4912a152d44f9507bf053f800102dfb07ece3da0a86b33ff6a0caa5a5cad86da3326744f6ae5efb0c6c571d754fe48cd + languageName: node + linkType: hard + "fast-xml-parser@npm:^4.4.1": version: 4.5.3 resolution: "fast-xml-parser@npm:4.5.3" @@ -8391,6 +8463,13 @@ __metadata: languageName: node linkType: hard +"strnum@npm:^2.1.0": + version: 2.1.1 + resolution: "strnum@npm:2.1.1" + checksum: 10c0/1f9bd1f9b4c68333f25c2b1f498ea529189f060cd50aa59f1876139c994d817056de3ce57c12c970f80568d75df2289725e218bd9e3cdf73cd1a876c9c102733 + languageName: node + linkType: hard + "strtok3@npm:^10.2.2": version: 10.3.4 resolution: "strtok3@npm:10.3.4"