diff --git a/packages/@uppy/companion/package.json b/packages/@uppy/companion/package.json index c6f1588a5..dd180da8f 100644 --- a/packages/@uppy/companion/package.json +++ b/packages/@uppy/companion/package.json @@ -86,12 +86,12 @@ "@types/eslint": "9.6.1", "@types/express-session": "1.19.0", "@types/http-proxy": "1.17.17", - "@types/jsonwebtoken": "8.3.7", + "@types/jsonwebtoken": "9.0.10", "@types/lodash": "4.17.24", "@types/mime-types": "3.0.1", "@types/morgan": "1.7.37", "@types/ms": "2.1.0", - "@types/node": "^20.19.0", + "@types/node": "20.19.41", "@types/node-schedule": "2.1.8", "@types/request": "2.48.13", "@types/serialize-javascript": "5.0.4", diff --git a/packages/@uppy/companion/src/server/helpers/jwt.ts b/packages/@uppy/companion/src/server/helpers/jwt.ts index 7d3ef4b0e..18b30c892 100644 --- a/packages/@uppy/companion/src/server/helpers/jwt.ts +++ b/packages/@uppy/companion/src/server/helpers/jwt.ts @@ -38,7 +38,7 @@ const verifyJwtToken = (token: string, secret: EncryptionSecret) => { if (!decoded || typeof decoded !== 'object' || !('data' in decoded)) { throw new Error('Invalid token payload') } - return decoded.data + return decoded['data'] } export const generateEncryptedToken = ( diff --git a/packages/@uppy/companion/src/server/helpers/request.ts b/packages/@uppy/companion/src/server/helpers/request.ts index babf5ff07..2f26afb9b 100644 --- a/packages/@uppy/companion/src/server/helpers/request.ts +++ b/packages/@uppy/companion/src/server/helpers/request.ts @@ -122,7 +122,7 @@ function getProtectedHttpAgent({ override createConnection( options: http.ClientRequestArgs, callback?: (err: Error | null, stream: Duplex) => void, - ): Duplex { + ): Duplex | null | undefined { if (!allowLocalIPs && shouldBlockHost(options.host)) { const socket = undefined as unknown as Duplex // not sure about this but it's how it always worked callback?.(new Error(FORBIDDEN_IP_ADDRESS), socket) @@ -140,7 +140,7 @@ function getProtectedHttpAgent({ override createConnection( options: http.ClientRequestArgs, callback?: (err: Error | null, stream: Duplex) => void, - ): Duplex { + ): Duplex | null | undefined { if (!allowLocalIPs && shouldBlockHost(options.host)) { const socket = undefined as unknown as Duplex // not sure about this but it's how it always worked callback?.(new Error(FORBIDDEN_IP_ADDRESS), socket) diff --git a/packages/@uppy/compressor/package.json b/packages/@uppy/compressor/package.json index 702a37d14..377db39bd 100644 --- a/packages/@uppy/compressor/package.json +++ b/packages/@uppy/compressor/package.json @@ -31,7 +31,7 @@ "./package.json": "./package.json" }, "dependencies": { - "@transloadit/prettier-bytes": "^0.3.4", + "@transloadit/prettier-bytes": "^1.1.0", "@uppy/utils": "workspace:^", "compressorjs": "^1.3.0", "preact": "^10.29.2", diff --git a/packages/@uppy/compressor/src/index.ts b/packages/@uppy/compressor/src/index.ts index 7fe262b72..9fb3f1293 100644 --- a/packages/@uppy/compressor/src/index.ts +++ b/packages/@uppy/compressor/src/index.ts @@ -1,4 +1,4 @@ -import prettierBytes from '@transloadit/prettier-bytes' +import { prettierBytes } from '@transloadit/prettier-bytes' import type { DefinePluginOpts, PluginOpts } from '@uppy/core' import { BasePlugin, type Uppy } from '@uppy/core' import type { Body, LocalUppyFile, Meta, UppyFile } from '@uppy/utils' diff --git a/packages/@uppy/core/package.json b/packages/@uppy/core/package.json index 7b5f06bd9..80492180a 100644 --- a/packages/@uppy/core/package.json +++ b/packages/@uppy/core/package.json @@ -41,7 +41,7 @@ "./package.json": "./package.json" }, "dependencies": { - "@transloadit/prettier-bytes": "^0.3.4", + "@transloadit/prettier-bytes": "^1.1.0", "@uppy/store-default": "workspace:^", "@uppy/utils": "workspace:^", "lodash": "^4.18.1", diff --git a/packages/@uppy/core/src/Restricter.ts b/packages/@uppy/core/src/Restricter.ts index 0a009c5fe..83931605b 100644 --- a/packages/@uppy/core/src/Restricter.ts +++ b/packages/@uppy/core/src/Restricter.ts @@ -1,4 +1,4 @@ -import prettierBytes from '@transloadit/prettier-bytes' +import { prettierBytes } from '@transloadit/prettier-bytes' import type { Body, I18n, Meta, UppyFile } from '@uppy/utils' // @ts-expect-error untyped import match from 'mime-match' diff --git a/packages/@uppy/core/src/Uppy.test.ts b/packages/@uppy/core/src/Uppy.test.ts index 9ec252d1c..b3a8afec2 100644 --- a/packages/@uppy/core/src/Uppy.test.ts +++ b/packages/@uppy/core/src/Uppy.test.ts @@ -1,7 +1,7 @@ import assert from 'node:assert' import fs from 'node:fs' import path from 'node:path' -import prettierBytes from '@transloadit/prettier-bytes' +import { prettierBytes } from '@transloadit/prettier-bytes' import type { Body, Meta } from '@uppy/core' import type { Locale } from '@uppy/utils' import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest' diff --git a/packages/@uppy/dashboard/package.json b/packages/@uppy/dashboard/package.json index 338dbe132..518ee7c34 100644 --- a/packages/@uppy/dashboard/package.json +++ b/packages/@uppy/dashboard/package.json @@ -44,7 +44,7 @@ "./package.json": "./package.json" }, "dependencies": { - "@transloadit/prettier-bytes": "^0.3.4", + "@transloadit/prettier-bytes": "^1.1.0", "@uppy/provider-views": "workspace:^", "@uppy/thumbnail-generator": "workspace:^", "@uppy/utils": "workspace:^", diff --git a/packages/@uppy/dashboard/src/components/FileItem/FileInfo/index.tsx b/packages/@uppy/dashboard/src/components/FileItem/FileInfo/index.tsx index 023ff770f..15b4c436e 100644 --- a/packages/@uppy/dashboard/src/components/FileItem/FileInfo/index.tsx +++ b/packages/@uppy/dashboard/src/components/FileItem/FileInfo/index.tsx @@ -1,4 +1,4 @@ -import prettierBytes from '@transloadit/prettier-bytes' +import { prettierBytes } from '@transloadit/prettier-bytes' import type { UppyFile } from '@uppy/core' import type { I18n } from '@uppy/utils' import { truncateString } from '@uppy/utils' diff --git a/packages/@uppy/dashboard/src/components/StatusBar/Components.tsx b/packages/@uppy/dashboard/src/components/StatusBar/Components.tsx index 4d1316e8f..c99c41d7e 100644 --- a/packages/@uppy/dashboard/src/components/StatusBar/Components.tsx +++ b/packages/@uppy/dashboard/src/components/StatusBar/Components.tsx @@ -1,4 +1,4 @@ -import prettierBytes from '@transloadit/prettier-bytes' +import { prettierBytes } from '@transloadit/prettier-bytes' import type { Body, Meta, State, Uppy } from '@uppy/core' import type { FileProcessingInfo, I18n } from '@uppy/utils' import { prettyETA } from '@uppy/utils' diff --git a/packages/@uppy/status-bar/package.json b/packages/@uppy/status-bar/package.json index 2a802adff..fdfa289c0 100644 --- a/packages/@uppy/status-bar/package.json +++ b/packages/@uppy/status-bar/package.json @@ -46,7 +46,7 @@ "./package.json": "./package.json" }, "dependencies": { - "@transloadit/prettier-bytes": "^0.3.4", + "@transloadit/prettier-bytes": "^1.1.0", "@uppy/utils": "workspace:^", "classnames": "^2.5.1", "preact": "^10.29.2" diff --git a/packages/@uppy/status-bar/src/Components.tsx b/packages/@uppy/status-bar/src/Components.tsx index 3361fe1cb..e8fc308da 100644 --- a/packages/@uppy/status-bar/src/Components.tsx +++ b/packages/@uppy/status-bar/src/Components.tsx @@ -1,4 +1,4 @@ -import prettierBytes from '@transloadit/prettier-bytes' +import { prettierBytes } from '@transloadit/prettier-bytes' import type { Body, Meta, State, Uppy } from '@uppy/core' import type { FileProcessingInfo, I18n } from '@uppy/utils' import { prettyETA } from '@uppy/utils' diff --git a/yarn.lock b/yarn.lock index 4f33f8a78..44e42ec58 100644 --- a/yarn.lock +++ b/yarn.lock @@ -543,7 +543,7 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-s3@npm:^3.1049.0": +"@aws-sdk/client-s3@npm:^3.1049.0, @aws-sdk/client-s3@npm:^3.338.0, @aws-sdk/client-s3@npm:^3.362.0": version: 3.1049.0 resolution: "@aws-sdk/client-s3@npm:3.1049.0" dependencies: @@ -569,115 +569,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-s3@npm:^3.338.0, @aws-sdk/client-s3@npm:^3.362.0": - version: 3.986.0 - resolution: "@aws-sdk/client-s3@npm:3.986.0" - dependencies: - "@aws-crypto/sha1-browser": "npm:5.2.0" - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:^3.973.7" - "@aws-sdk/credential-provider-node": "npm:^3.972.6" - "@aws-sdk/middleware-bucket-endpoint": "npm:^3.972.3" - "@aws-sdk/middleware-expect-continue": "npm:^3.972.3" - "@aws-sdk/middleware-flexible-checksums": "npm:^3.972.5" - "@aws-sdk/middleware-host-header": "npm:^3.972.3" - "@aws-sdk/middleware-location-constraint": "npm:^3.972.3" - "@aws-sdk/middleware-logger": "npm:^3.972.3" - "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" - "@aws-sdk/middleware-sdk-s3": "npm:^3.972.7" - "@aws-sdk/middleware-ssec": "npm:^3.972.3" - "@aws-sdk/middleware-user-agent": "npm:^3.972.7" - "@aws-sdk/region-config-resolver": "npm:^3.972.3" - "@aws-sdk/signature-v4-multi-region": "npm:3.986.0" - "@aws-sdk/types": "npm:^3.973.1" - "@aws-sdk/util-endpoints": "npm:3.986.0" - "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.5" - "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.1" - "@smithy/eventstream-serde-browser": "npm:^4.2.8" - "@smithy/eventstream-serde-config-resolver": "npm:^4.3.8" - "@smithy/eventstream-serde-node": "npm:^4.2.8" - "@smithy/fetch-http-handler": "npm:^5.3.9" - "@smithy/hash-blob-browser": "npm:^4.2.9" - "@smithy/hash-node": "npm:^4.2.8" - "@smithy/hash-stream-node": "npm:^4.2.8" - "@smithy/invalid-dependency": "npm:^4.2.8" - "@smithy/md5-js": "npm:^4.2.8" - "@smithy/middleware-content-length": "npm:^4.2.8" - "@smithy/middleware-endpoint": "npm:^4.4.13" - "@smithy/middleware-retry": "npm:^4.4.30" - "@smithy/middleware-serde": "npm:^4.2.9" - "@smithy/middleware-stack": "npm:^4.2.8" - "@smithy/node-config-provider": "npm:^4.3.8" - "@smithy/node-http-handler": "npm:^4.4.9" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.2" - "@smithy/types": "npm:^4.12.0" - "@smithy/url-parser": "npm:^4.2.8" - "@smithy/util-base64": "npm:^4.3.0" - "@smithy/util-body-length-browser": "npm:^4.2.0" - "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.29" - "@smithy/util-defaults-mode-node": "npm:^4.2.32" - "@smithy/util-endpoints": "npm:^3.2.8" - "@smithy/util-middleware": "npm:^4.2.8" - "@smithy/util-retry": "npm:^4.2.8" - "@smithy/util-stream": "npm:^4.5.11" - "@smithy/util-utf8": "npm:^4.2.0" - "@smithy/util-waiter": "npm:^4.2.8" - tslib: "npm:^2.6.2" - checksum: 10/b24dfba49270a33b6fc7738c8b8b64715cd568f8f953e85b88cf2234767d6e2abf465ddde4774a159770039f5f5c3b64b1d2ee1aa8b3206e2e2e4e421b788082 - languageName: node - linkType: hard - -"@aws-sdk/client-sso@npm:3.985.0": - version: 3.985.0 - resolution: "@aws-sdk/client-sso@npm:3.985.0" - dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:^3.973.7" - "@aws-sdk/middleware-host-header": "npm:^3.972.3" - "@aws-sdk/middleware-logger": "npm:^3.972.3" - "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" - "@aws-sdk/middleware-user-agent": "npm:^3.972.7" - "@aws-sdk/region-config-resolver": "npm:^3.972.3" - "@aws-sdk/types": "npm:^3.973.1" - "@aws-sdk/util-endpoints": "npm:3.985.0" - "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.5" - "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.1" - "@smithy/fetch-http-handler": "npm:^5.3.9" - "@smithy/hash-node": "npm:^4.2.8" - "@smithy/invalid-dependency": "npm:^4.2.8" - "@smithy/middleware-content-length": "npm:^4.2.8" - "@smithy/middleware-endpoint": "npm:^4.4.13" - "@smithy/middleware-retry": "npm:^4.4.30" - "@smithy/middleware-serde": "npm:^4.2.9" - "@smithy/middleware-stack": "npm:^4.2.8" - "@smithy/node-config-provider": "npm:^4.3.8" - "@smithy/node-http-handler": "npm:^4.4.9" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.2" - "@smithy/types": "npm:^4.12.0" - "@smithy/url-parser": "npm:^4.2.8" - "@smithy/util-base64": "npm:^4.3.0" - "@smithy/util-body-length-browser": "npm:^4.2.0" - "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.29" - "@smithy/util-defaults-mode-node": "npm:^4.2.32" - "@smithy/util-endpoints": "npm:^3.2.8" - "@smithy/util-middleware": "npm:^4.2.8" - "@smithy/util-retry": "npm:^4.2.8" - "@smithy/util-utf8": "npm:^4.2.0" - tslib: "npm:^2.6.2" - checksum: 10/f78ebb7430eeb2e9d707ea6da7c56743a8e33b5788af2acb2cccc9ed002b3cc84945272f66de846c50e2e5584c7ba54045c24afbf229dbef970af3107d3ecaf8 - languageName: node - linkType: hard - "@aws-sdk/client-sts@npm:3.1047.0": version: 3.1047.0 resolution: "@aws-sdk/client-sts@npm:3.1047.0" @@ -706,88 +597,25 @@ __metadata: linkType: hard "@aws-sdk/client-sts@npm:^3.338.0": - version: 3.986.0 - resolution: "@aws-sdk/client-sts@npm:3.986.0" + version: 3.1049.0 + resolution: "@aws-sdk/client-sts@npm:3.1049.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:^3.973.7" - "@aws-sdk/credential-provider-node": "npm:^3.972.6" - "@aws-sdk/middleware-host-header": "npm:^3.972.3" - "@aws-sdk/middleware-logger": "npm:^3.972.3" - "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" - "@aws-sdk/middleware-user-agent": "npm:^3.972.7" - "@aws-sdk/region-config-resolver": "npm:^3.972.3" - "@aws-sdk/types": "npm:^3.973.1" - "@aws-sdk/util-endpoints": "npm:3.986.0" - "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.5" - "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.1" - "@smithy/fetch-http-handler": "npm:^5.3.9" - "@smithy/hash-node": "npm:^4.2.8" - "@smithy/invalid-dependency": "npm:^4.2.8" - "@smithy/middleware-content-length": "npm:^4.2.8" - "@smithy/middleware-endpoint": "npm:^4.4.13" - "@smithy/middleware-retry": "npm:^4.4.30" - "@smithy/middleware-serde": "npm:^4.2.9" - "@smithy/middleware-stack": "npm:^4.2.8" - "@smithy/node-config-provider": "npm:^4.3.8" - "@smithy/node-http-handler": "npm:^4.4.9" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.2" - "@smithy/types": "npm:^4.12.0" - "@smithy/url-parser": "npm:^4.2.8" - "@smithy/util-base64": "npm:^4.3.0" - "@smithy/util-body-length-browser": "npm:^4.2.0" - "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.29" - "@smithy/util-defaults-mode-node": "npm:^4.2.32" - "@smithy/util-endpoints": "npm:^3.2.8" - "@smithy/util-middleware": "npm:^4.2.8" - "@smithy/util-retry": "npm:^4.2.8" - "@smithy/util-utf8": "npm:^4.2.0" - tslib: "npm:^2.6.2" - checksum: 10/e70daa6b0567ef4ae40b30f3d9380050d8a53a437ce374cb4157ce1f14f745fd8e38ddfee13c5941d89646612276d48bab1ba08fbf29212735f64156e9461276 - languageName: node - linkType: hard - -"@aws-sdk/core@npm:^3.973.7": - version: 3.973.7 - resolution: "@aws-sdk/core@npm:3.973.7" - dependencies: - "@aws-sdk/types": "npm:^3.973.1" - "@aws-sdk/xml-builder": "npm:^3.972.4" - "@smithy/core": "npm:^3.22.1" - "@smithy/node-config-provider": "npm:^4.3.8" - "@smithy/property-provider": "npm:^4.2.8" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/signature-v4": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.2" - "@smithy/types": "npm:^4.12.0" - "@smithy/util-base64": "npm:^4.3.0" - "@smithy/util-middleware": "npm:^4.2.8" - "@smithy/util-utf8": "npm:^4.2.0" - tslib: "npm:^2.6.2" - checksum: 10/550c1ef4fcf555e88e2c840179c68b9aae9d4e039a74d5980ed576d0da06142526c3094fa17d0ff8aa92f1d61fb4d446ef5ba189fb2de0831f0eafa16df51311 - languageName: node - linkType: hard - -"@aws-sdk/core@npm:^3.974.10": - version: 3.974.10 - resolution: "@aws-sdk/core@npm:3.974.10" - dependencies: + "@aws-sdk/core": "npm:^3.974.12" + "@aws-sdk/credential-provider-node": "npm:^3.972.43" + "@aws-sdk/signature-v4-multi-region": "npm:^3.996.27" "@aws-sdk/types": "npm:^3.973.8" - "@aws-sdk/xml-builder": "npm:^3.972.24" - "@smithy/core": "npm:^3.24.1" - "@smithy/signature-v4": "npm:^5.4.1" + "@smithy/core": "npm:^3.24.2" + "@smithy/fetch-http-handler": "npm:^5.4.2" + "@smithy/node-http-handler": "npm:^4.7.2" "@smithy/types": "npm:^4.14.1" tslib: "npm:^2.6.2" - checksum: 10/9ca6f7af88ad78e066bf22b66613bbf1b6d6252653143f9e804ea40f5ab6d2af3cf676957c447c1ef265fd8bedf0eb55a5c2580f2780f7b328277a9526f4b266 + checksum: 10/5858895b007c7831d6998d8b31b26cf73d9f3fcd54438a3a95500a15599eef91055321fa4ba3c267c55cecea8f6c737a696cff66f46d8f370e9a7a29f73d78fa languageName: node linkType: hard -"@aws-sdk/core@npm:^3.974.12": +"@aws-sdk/core@npm:^3.974.10, @aws-sdk/core@npm:^3.974.12": version: 3.974.12 resolution: "@aws-sdk/core@npm:3.974.12" dependencies: @@ -803,16 +631,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/crc64-nvme@npm:3.972.0": - version: 3.972.0 - resolution: "@aws-sdk/crc64-nvme@npm:3.972.0" - dependencies: - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/47d41dfbff4ed7664d1cc4565f4b190cdf6d87c7b550897a709894ba041c6d4c28171cf7089365af8441bf40234167df916f56bd4ea7c7cd6ba31cab56ed28b1 - languageName: node - linkType: hard - "@aws-sdk/crc64-nvme@npm:^3.972.8": version: 3.972.8 resolution: "@aws-sdk/crc64-nvme@npm:3.972.8" @@ -823,19 +641,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:^3.972.36": - version: 3.972.36 - resolution: "@aws-sdk/credential-provider-env@npm:3.972.36" - dependencies: - "@aws-sdk/core": "npm:^3.974.10" - "@aws-sdk/types": "npm:^3.973.8" - "@smithy/core": "npm:^3.24.1" - "@smithy/types": "npm:^4.14.1" - tslib: "npm:^2.6.2" - checksum: 10/657a03d2ef3be9e9956259f614a2dbbcfe35fc6e3bba0937e0dc90580d51ce19ee6481750beb258765bd8344d2542386d443765605551cd5569ec163e11826b9 - languageName: node - linkType: hard - "@aws-sdk/credential-provider-env@npm:^3.972.38": version: 3.972.38 resolution: "@aws-sdk/credential-provider-env@npm:3.972.38" @@ -849,34 +654,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:^3.972.5": - version: 3.972.5 - resolution: "@aws-sdk/credential-provider-env@npm:3.972.5" - dependencies: - "@aws-sdk/core": "npm:^3.973.7" - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/property-provider": "npm:^4.2.8" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/aecae20dee43bd4f02ace5c6e9fb8c12da3f33a2be8d069374826eb5b4974798f6460e75df8a41edf64b26177402ebd4f4b0e56234d1a6754d62a8a3116f3360 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-http@npm:^3.972.38": - version: 3.972.38 - resolution: "@aws-sdk/credential-provider-http@npm:3.972.38" - dependencies: - "@aws-sdk/core": "npm:^3.974.10" - "@aws-sdk/types": "npm:^3.973.8" - "@smithy/core": "npm:^3.24.1" - "@smithy/fetch-http-handler": "npm:^5.4.1" - "@smithy/node-http-handler": "npm:^4.7.1" - "@smithy/types": "npm:^4.14.1" - tslib: "npm:^2.6.2" - checksum: 10/f068ff64445b147946981dd9516166d45579a17ed64f146a8820a0829ed68b8950b3ad782a57d0ca5c20dd9850fd2668102340d5a0f5f6851af703b61fcd7818 - languageName: node - linkType: hard - "@aws-sdk/credential-provider-http@npm:^3.972.40": version: 3.972.40 resolution: "@aws-sdk/credential-provider-http@npm:3.972.40" @@ -892,45 +669,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-http@npm:^3.972.7": - version: 3.972.7 - resolution: "@aws-sdk/credential-provider-http@npm:3.972.7" - dependencies: - "@aws-sdk/core": "npm:^3.973.7" - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/fetch-http-handler": "npm:^5.3.9" - "@smithy/node-http-handler": "npm:^4.4.9" - "@smithy/property-provider": "npm:^4.2.8" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.2" - "@smithy/types": "npm:^4.12.0" - "@smithy/util-stream": "npm:^4.5.11" - tslib: "npm:^2.6.2" - checksum: 10/7a8d278a03674dee5cea9228c0f8cb55f9ad86ace318f0ce938b55470cf2dd0faebeb5faf042ce8e73eaff1f8c15a4b6e864e6cad305adaebdd608afbff8a039 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-ini@npm:^3.972.40": - version: 3.972.40 - resolution: "@aws-sdk/credential-provider-ini@npm:3.972.40" - dependencies: - "@aws-sdk/core": "npm:^3.974.10" - "@aws-sdk/credential-provider-env": "npm:^3.972.36" - "@aws-sdk/credential-provider-http": "npm:^3.972.38" - "@aws-sdk/credential-provider-login": "npm:^3.972.40" - "@aws-sdk/credential-provider-process": "npm:^3.972.36" - "@aws-sdk/credential-provider-sso": "npm:^3.972.40" - "@aws-sdk/credential-provider-web-identity": "npm:^3.972.40" - "@aws-sdk/nested-clients": "npm:^3.997.8" - "@aws-sdk/types": "npm:^3.973.8" - "@smithy/core": "npm:^3.24.1" - "@smithy/credential-provider-imds": "npm:^4.3.1" - "@smithy/types": "npm:^4.14.1" - tslib: "npm:^2.6.2" - checksum: 10/5082af14575fc51b022a31f34463115f01827e7f3e1519dba5dfce337f84dd427e5d6a4b3844e193b1afe816ca44b650ed7daf129ffbc342241669bc9cb8c4d9 - languageName: node - linkType: hard - "@aws-sdk/credential-provider-ini@npm:^3.972.42": version: 3.972.42 resolution: "@aws-sdk/credential-provider-ini@npm:3.972.42" @@ -952,42 +690,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:^3.972.5": - version: 3.972.5 - resolution: "@aws-sdk/credential-provider-ini@npm:3.972.5" - dependencies: - "@aws-sdk/core": "npm:^3.973.7" - "@aws-sdk/credential-provider-env": "npm:^3.972.5" - "@aws-sdk/credential-provider-http": "npm:^3.972.7" - "@aws-sdk/credential-provider-login": "npm:^3.972.5" - "@aws-sdk/credential-provider-process": "npm:^3.972.5" - "@aws-sdk/credential-provider-sso": "npm:^3.972.5" - "@aws-sdk/credential-provider-web-identity": "npm:^3.972.5" - "@aws-sdk/nested-clients": "npm:3.985.0" - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/credential-provider-imds": "npm:^4.2.8" - "@smithy/property-provider": "npm:^4.2.8" - "@smithy/shared-ini-file-loader": "npm:^4.4.3" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/d65cf23ed27349827cb1273f5a7cdc013c9419a9a48a0678960afefa04c43f322059635b5d909128a804816154b9362f2b026a81e7d76de7f47348e8694db800 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-login@npm:^3.972.40": - version: 3.972.40 - resolution: "@aws-sdk/credential-provider-login@npm:3.972.40" - dependencies: - "@aws-sdk/core": "npm:^3.974.10" - "@aws-sdk/nested-clients": "npm:^3.997.8" - "@aws-sdk/types": "npm:^3.973.8" - "@smithy/core": "npm:^3.24.1" - "@smithy/types": "npm:^4.14.1" - tslib: "npm:^2.6.2" - checksum: 10/6b30910e375e46e0d23006e4e4dfcd0b82d6cec836dd5540d68dd8eb1d698611ba670fe0f4719c6f0bb66b4ac70ca872707eb48f27411006fee68496bfbc21e1 - languageName: node - linkType: hard - "@aws-sdk/credential-provider-login@npm:^3.972.42": version: 3.972.42 resolution: "@aws-sdk/credential-provider-login@npm:3.972.42" @@ -1002,42 +704,7 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-login@npm:^3.972.5": - version: 3.972.5 - resolution: "@aws-sdk/credential-provider-login@npm:3.972.5" - dependencies: - "@aws-sdk/core": "npm:^3.973.7" - "@aws-sdk/nested-clients": "npm:3.985.0" - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/property-provider": "npm:^4.2.8" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/shared-ini-file-loader": "npm:^4.4.3" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/8890042b84049895a7a802c0ec6a9751580788018aa154600690a82d643a833cbe2a66e69f5a3236a28884cd0b8f4e0c2db8f79e391076e15848dc4d4672e174 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-node@npm:^3.972.41": - version: 3.972.41 - resolution: "@aws-sdk/credential-provider-node@npm:3.972.41" - dependencies: - "@aws-sdk/credential-provider-env": "npm:^3.972.36" - "@aws-sdk/credential-provider-http": "npm:^3.972.38" - "@aws-sdk/credential-provider-ini": "npm:^3.972.40" - "@aws-sdk/credential-provider-process": "npm:^3.972.36" - "@aws-sdk/credential-provider-sso": "npm:^3.972.40" - "@aws-sdk/credential-provider-web-identity": "npm:^3.972.40" - "@aws-sdk/types": "npm:^3.973.8" - "@smithy/core": "npm:^3.24.1" - "@smithy/credential-provider-imds": "npm:^4.3.1" - "@smithy/types": "npm:^4.14.1" - tslib: "npm:^2.6.2" - checksum: 10/72509436051e7737d4345c75f64d4c2621961fb3a631f330980433677dea3da3df4a0eeaf0eb7b9e8b074963fc91bf6c5dae667f350b9e02731dbaf766ca4232 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-node@npm:^3.972.43": +"@aws-sdk/credential-provider-node@npm:^3.972.41, @aws-sdk/credential-provider-node@npm:^3.972.43": version: 3.972.43 resolution: "@aws-sdk/credential-provider-node@npm:3.972.43" dependencies: @@ -1056,39 +723,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:^3.972.6": - version: 3.972.6 - resolution: "@aws-sdk/credential-provider-node@npm:3.972.6" - dependencies: - "@aws-sdk/credential-provider-env": "npm:^3.972.5" - "@aws-sdk/credential-provider-http": "npm:^3.972.7" - "@aws-sdk/credential-provider-ini": "npm:^3.972.5" - "@aws-sdk/credential-provider-process": "npm:^3.972.5" - "@aws-sdk/credential-provider-sso": "npm:^3.972.5" - "@aws-sdk/credential-provider-web-identity": "npm:^3.972.5" - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/credential-provider-imds": "npm:^4.2.8" - "@smithy/property-provider": "npm:^4.2.8" - "@smithy/shared-ini-file-loader": "npm:^4.4.3" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/c51c262ec01a0d87024e048515181b1ac328b9c4343cb17c2cf35308fa885045a1dd9aa0ede94ee1d9ca5651670f7fe43561ac3825a367e6c92368cf01cde4cd - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-process@npm:^3.972.36": - version: 3.972.36 - resolution: "@aws-sdk/credential-provider-process@npm:3.972.36" - dependencies: - "@aws-sdk/core": "npm:^3.974.10" - "@aws-sdk/types": "npm:^3.973.8" - "@smithy/core": "npm:^3.24.1" - "@smithy/types": "npm:^4.14.1" - tslib: "npm:^2.6.2" - checksum: 10/77f4e1d6512a49ea9f78c17766287df9883ce3f1f7451b6c3e6b1c57d3394244d9aa6874d0d119e8711b72ba70ffdc326030870e6db57510cd2d3f226793b8c8 - languageName: node - linkType: hard - "@aws-sdk/credential-provider-process@npm:^3.972.38": version: 3.972.38 resolution: "@aws-sdk/credential-provider-process@npm:3.972.38" @@ -1102,35 +736,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:^3.972.5": - version: 3.972.5 - resolution: "@aws-sdk/credential-provider-process@npm:3.972.5" - dependencies: - "@aws-sdk/core": "npm:^3.973.7" - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/property-provider": "npm:^4.2.8" - "@smithy/shared-ini-file-loader": "npm:^4.4.3" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/9f53abff305f8e70ecec5fe9997a42a039899158f3eba79603c7f0c986a8439c90ecebb22cf3f996d9eed469055b3b6ba92151e3b10e69a8c8289b79a457c379 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-sso@npm:^3.972.40": - version: 3.972.40 - resolution: "@aws-sdk/credential-provider-sso@npm:3.972.40" - dependencies: - "@aws-sdk/core": "npm:^3.974.10" - "@aws-sdk/nested-clients": "npm:^3.997.8" - "@aws-sdk/token-providers": "npm:3.1047.0" - "@aws-sdk/types": "npm:^3.973.8" - "@smithy/core": "npm:^3.24.1" - "@smithy/types": "npm:^4.14.1" - tslib: "npm:^2.6.2" - checksum: 10/f2e43c362d14f7ec0fbfd89860dbcf7d7a0f6fb8788f9fb774c21016b67da86187a6d6734cdd042c8a2423b614d4bd5f0d78409bbe88be57182c22cb14456bc5 - languageName: node - linkType: hard - "@aws-sdk/credential-provider-sso@npm:^3.972.42": version: 3.972.42 resolution: "@aws-sdk/credential-provider-sso@npm:3.972.42" @@ -1146,36 +751,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:^3.972.5": - version: 3.972.5 - resolution: "@aws-sdk/credential-provider-sso@npm:3.972.5" - dependencies: - "@aws-sdk/client-sso": "npm:3.985.0" - "@aws-sdk/core": "npm:^3.973.7" - "@aws-sdk/token-providers": "npm:3.985.0" - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/property-provider": "npm:^4.2.8" - "@smithy/shared-ini-file-loader": "npm:^4.4.3" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/5386b96415836a8b5a41b462cd67c8863c2a740d21847ddf01be299f422a27477191120a27944505fc00f44eab1e567a39c56eee5595fa1359c2a9ecbf9f75f1 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-web-identity@npm:^3.972.40": - version: 3.972.40 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.40" - dependencies: - "@aws-sdk/core": "npm:^3.974.10" - "@aws-sdk/nested-clients": "npm:^3.997.8" - "@aws-sdk/types": "npm:^3.973.8" - "@smithy/core": "npm:^3.24.1" - "@smithy/types": "npm:^4.14.1" - tslib: "npm:^2.6.2" - checksum: 10/166a68234616b4b00de4808dc6bd8d443c133c78ae6c1393d00557619ce600e89a3e9e58f3e48cd3c48fd532cd36bdbcad2949696447367b310d45a01cc4a2fa - languageName: node - linkType: hard - "@aws-sdk/credential-provider-web-identity@npm:^3.972.42": version: 3.972.42 resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.42" @@ -1190,21 +765,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:^3.972.5": - version: 3.972.5 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.5" - dependencies: - "@aws-sdk/core": "npm:^3.973.7" - "@aws-sdk/nested-clients": "npm:3.985.0" - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/property-provider": "npm:^4.2.8" - "@smithy/shared-ini-file-loader": "npm:^4.4.3" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/b6dd435933d34168d2a149a6838f2545e59627b706013f9c2a3351e47d9fdfca7cbd0d4010cbb673337402188f5dd1a0407379c31474b042c54034d1f41ff2e4 - languageName: node - linkType: hard - "@aws-sdk/lib-storage@npm:3.1047.0": version: 3.1047.0 resolution: "@aws-sdk/lib-storage@npm:3.1047.0" @@ -1221,20 +781,7 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-bucket-endpoint@npm:^3.972.12": - version: 3.972.12 - resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.972.12" - dependencies: - "@aws-sdk/core": "npm:^3.974.10" - "@aws-sdk/types": "npm:^3.973.8" - "@smithy/core": "npm:^3.24.1" - "@smithy/types": "npm:^4.14.1" - tslib: "npm:^2.6.2" - checksum: 10/3df27df729dc420716f17d62b25f35db101818322c8ce1060baa39fbc5ea134a594c56eb770840b4938d3d28bf654f0eab201f1ec5760e33ec177c578da881d3 - languageName: node - linkType: hard - -"@aws-sdk/middleware-bucket-endpoint@npm:^3.972.14": +"@aws-sdk/middleware-bucket-endpoint@npm:^3.972.12, @aws-sdk/middleware-bucket-endpoint@npm:^3.972.14": version: 3.972.14 resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.972.14" dependencies: @@ -1247,34 +794,7 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-bucket-endpoint@npm:^3.972.3": - version: 3.972.3 - resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.972.3" - dependencies: - "@aws-sdk/types": "npm:^3.973.1" - "@aws-sdk/util-arn-parser": "npm:^3.972.2" - "@smithy/node-config-provider": "npm:^4.3.8" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/types": "npm:^4.12.0" - "@smithy/util-config-provider": "npm:^4.2.0" - tslib: "npm:^2.6.2" - checksum: 10/5e0906a76ab6f200901759537fb69034546d228405b12b02b64e04f85aefacda0e0818f07d8595617b9956f135fc56545827624f9652858e27da231240cbb9b3 - languageName: node - linkType: hard - -"@aws-sdk/middleware-expect-continue@npm:^3.972.11": - version: 3.972.11 - resolution: "@aws-sdk/middleware-expect-continue@npm:3.972.11" - dependencies: - "@aws-sdk/types": "npm:^3.973.8" - "@smithy/core": "npm:^3.24.1" - "@smithy/types": "npm:^4.14.1" - tslib: "npm:^2.6.2" - checksum: 10/7b041e22cb4da0261635b0265f1e87530b78037475bb304aff44829af3eabc8c9577ddf0104e5b6be818f01df1ab408ad9348de392845588d15885ba03c9c76d - languageName: node - linkType: hard - -"@aws-sdk/middleware-expect-continue@npm:^3.972.12": +"@aws-sdk/middleware-expect-continue@npm:^3.972.11, @aws-sdk/middleware-expect-continue@npm:^3.972.12": version: 3.972.12 resolution: "@aws-sdk/middleware-expect-continue@npm:3.972.12" dependencies: @@ -1286,58 +806,7 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-expect-continue@npm:^3.972.3": - version: 3.972.3 - resolution: "@aws-sdk/middleware-expect-continue@npm:3.972.3" - dependencies: - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/96c2d64294e9482873345543a2d1c11a67941bde5dfdb32c1c05b578a394083583e53c6a1c2c3ccee41e4937391ae38878b7c03fd2b5ba08e06567926e34a248 - languageName: node - linkType: hard - -"@aws-sdk/middleware-flexible-checksums@npm:^3.972.5": - version: 3.972.5 - resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.972.5" - 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.973.7" - "@aws-sdk/crc64-nvme": "npm:3.972.0" - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/is-array-buffer": "npm:^4.2.0" - "@smithy/node-config-provider": "npm:^4.3.8" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/types": "npm:^4.12.0" - "@smithy/util-middleware": "npm:^4.2.8" - "@smithy/util-stream": "npm:^4.5.11" - "@smithy/util-utf8": "npm:^4.2.0" - tslib: "npm:^2.6.2" - checksum: 10/aa4245e0b146e59beb8e93cbf6fcc20c5ba2911f54e898b3c3b5dabb0b57d616a969863f4de3713be80c3a1ca764045192460e504ed9b7ba8baea1428633348c - languageName: node - linkType: hard - -"@aws-sdk/middleware-flexible-checksums@npm:^3.974.18": - version: 3.974.18 - resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.974.18" - 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.974.10" - "@aws-sdk/crc64-nvme": "npm:^3.972.8" - "@aws-sdk/types": "npm:^3.973.8" - "@smithy/core": "npm:^3.24.1" - "@smithy/types": "npm:^4.14.1" - tslib: "npm:^2.6.2" - checksum: 10/2d1e9dc8b234fe6384e3e7853aa008a4d2b18430c10aafb70d6e7395b1f12862b6fb5f93643d41301ce197bf822b728373ee1bd5a9d8bce4d337c435dcac1299 - languageName: node - linkType: hard - -"@aws-sdk/middleware-flexible-checksums@npm:^3.974.20": +"@aws-sdk/middleware-flexible-checksums@npm:^3.974.18, @aws-sdk/middleware-flexible-checksums@npm:^3.974.20": version: 3.974.20 resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.974.20" dependencies: @@ -1355,26 +824,12 @@ __metadata: linkType: hard "@aws-sdk/middleware-host-header@npm:^3.972.11": - version: 3.972.11 - resolution: "@aws-sdk/middleware-host-header@npm:3.972.11" + version: 3.972.13 + resolution: "@aws-sdk/middleware-host-header@npm:3.972.13" dependencies: - "@aws-sdk/types": "npm:^3.973.8" - "@smithy/core": "npm:^3.24.1" - "@smithy/types": "npm:^4.14.1" + "@aws-sdk/core": "npm:^3.974.12" tslib: "npm:^2.6.2" - checksum: 10/81efc4a858a964a9afb24e7b3de0d2f798538755fab8290ff21e40933e06adc01e47a00b46b1c75d35e94a224215917f979750ebe431f2564948a46699d67ba8 - languageName: node - linkType: hard - -"@aws-sdk/middleware-host-header@npm:^3.972.3": - version: 3.972.3 - resolution: "@aws-sdk/middleware-host-header@npm:3.972.3" - dependencies: - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/14b6e32f32f1c8b0e66a396b092785d3d597b27df696ed2daf8310d2a463416bcc89480043b6a5083698403fc85904caf5ebbcb0fbd12f89f05dbf10878d2cc7 + checksum: 10/b51dff5bee4f7b9c92812a5fc97ed6dc53240dff4e7f2886aa4d5ed3cf62f36e7cf98a09308f48685e69372bb9a475f61c33034740f469a323083d00b42d1546 languageName: node linkType: hard @@ -1389,81 +844,27 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-location-constraint@npm:^3.972.3": - version: 3.972.3 - resolution: "@aws-sdk/middleware-location-constraint@npm:3.972.3" - dependencies: - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/9c9677e07af9db00af5f748aae79321ec9fb3888b508704e1de0a1fbcf19e1f254037274324d17fc1c11f24ad60c075024560784f0e9958b4868da3e24e9460b - languageName: node - linkType: hard - "@aws-sdk/middleware-logger@npm:^3.972.10": - version: 3.972.10 - resolution: "@aws-sdk/middleware-logger@npm:3.972.10" + version: 3.972.12 + resolution: "@aws-sdk/middleware-logger@npm:3.972.12" dependencies: - "@aws-sdk/types": "npm:^3.973.8" - "@smithy/types": "npm:^4.14.1" + "@aws-sdk/core": "npm:^3.974.12" tslib: "npm:^2.6.2" - checksum: 10/a5ccf69d05be4288448d6285640b693c7c2182c63a8a8c4474c83b5c020011ae538ed6bf34928eea2ee9edae3a73b49f45b5db828d65f346e660609c8add739b - languageName: node - linkType: hard - -"@aws-sdk/middleware-logger@npm:^3.972.3": - version: 3.972.3 - resolution: "@aws-sdk/middleware-logger@npm:3.972.3" - dependencies: - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/abda3a05b73a2056fbe0d2aa139ee5ad590733d7ef96a18c2ca92b314795ba3fe83216668bd731b8a40f7951b1147eb1ed3566c1b33ee9b8ae9994089596e3b8 + checksum: 10/598a6777110d74850739ebff85ae1ab3dee1a363b569338e239538ed11bc27ce521f0b59adf40c7d073abe076099de835f6eb3eb2ddd104ca67b0da7737ca1c5 languageName: node linkType: hard "@aws-sdk/middleware-recursion-detection@npm:^3.972.12": - version: 3.972.12 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.12" + version: 3.972.14 + resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.14" dependencies: - "@aws-sdk/types": "npm:^3.973.8" - "@aws/lambda-invoke-store": "npm:^0.2.2" - "@smithy/core": "npm:^3.24.1" - "@smithy/types": "npm:^4.14.1" + "@aws-sdk/core": "npm:^3.974.12" tslib: "npm:^2.6.2" - checksum: 10/aa76d54bf393780fcc936b30ce87df579473a393059a5a183d27e152f8ebdbe83f46f3a4e289101558c966d40b9b5151337f841647b30bc5a6db5942a8883223 + checksum: 10/99e48172e3d23db7508364a626ed603db8ff6d55ab89aed5a46fa9102a180fa32e214a86ef5bde51abdb16be8a7e5abf8102ec5e3d7751ef5d25e39d70a2d0c6 languageName: node linkType: hard -"@aws-sdk/middleware-recursion-detection@npm:^3.972.3": - version: 3.972.3 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.3" - dependencies: - "@aws-sdk/types": "npm:^3.973.1" - "@aws/lambda-invoke-store": "npm:^0.2.2" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/8308e8eb1344669bca86613f160768dd39640ca3ed37730b579a6f71be14f6deed7acdb4f3d195a7f8c5a130afb82411dc18c8a361f7dc1f769c9dc240aaa16f - languageName: node - linkType: hard - -"@aws-sdk/middleware-sdk-s3@npm:^3.972.39": - version: 3.972.39 - resolution: "@aws-sdk/middleware-sdk-s3@npm:3.972.39" - dependencies: - "@aws-sdk/core": "npm:^3.974.10" - "@aws-sdk/signature-v4-multi-region": "npm:^3.996.26" - "@aws-sdk/types": "npm:^3.973.8" - "@smithy/core": "npm:^3.24.1" - "@smithy/signature-v4": "npm:^5.4.1" - "@smithy/types": "npm:^4.14.1" - tslib: "npm:^2.6.2" - checksum: 10/e93277d74baac47dbd863e98c1904eff77d7fb3d3029ee2970fbc0fd803e16437d4b26714b21307a0a5558483d79aea665391f6d7220f3807ca3987cca4910e7 - languageName: node - linkType: hard - -"@aws-sdk/middleware-sdk-s3@npm:^3.972.41": +"@aws-sdk/middleware-sdk-s3@npm:^3.972.39, @aws-sdk/middleware-sdk-s3@npm:^3.972.41": version: 3.972.41 resolution: "@aws-sdk/middleware-sdk-s3@npm:3.972.41" dependencies: @@ -1478,28 +879,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-sdk-s3@npm:^3.972.7": - version: 3.972.7 - resolution: "@aws-sdk/middleware-sdk-s3@npm:3.972.7" - dependencies: - "@aws-sdk/core": "npm:^3.973.7" - "@aws-sdk/types": "npm:^3.973.1" - "@aws-sdk/util-arn-parser": "npm:^3.972.2" - "@smithy/core": "npm:^3.22.1" - "@smithy/node-config-provider": "npm:^4.3.8" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/signature-v4": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.2" - "@smithy/types": "npm:^4.12.0" - "@smithy/util-config-provider": "npm:^4.2.0" - "@smithy/util-middleware": "npm:^4.2.8" - "@smithy/util-stream": "npm:^4.5.11" - "@smithy/util-utf8": "npm:^4.2.0" - tslib: "npm:^2.6.2" - checksum: 10/b66b6ffac392ed5e04c36c5e7e5e4dfad28e48cdfcc0c48c789c6ea87f4bd579fa8b0370beaf4b549cbaf791da38944ff2d8d9ae5ddf8b2c6b3e97336242151d - languageName: node - linkType: hard - "@aws-sdk/middleware-ssec@npm:^3.972.10": version: 3.972.10 resolution: "@aws-sdk/middleware-ssec@npm:3.972.10" @@ -1511,89 +890,13 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-ssec@npm:^3.972.3": - version: 3.972.3 - resolution: "@aws-sdk/middleware-ssec@npm:3.972.3" - dependencies: - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/6510039afd2f1dce5b9b4870123fb269b6315246a58111d7b08849fff1dd4312f10f39ca69dc5838406c3b7063923fc182dd746cb6543934b41f6f4a29f61980 - languageName: node - linkType: hard - "@aws-sdk/middleware-user-agent@npm:^3.972.40": - version: 3.972.40 - resolution: "@aws-sdk/middleware-user-agent@npm:3.972.40" + version: 3.972.42 + resolution: "@aws-sdk/middleware-user-agent@npm:3.972.42" dependencies: - "@aws-sdk/core": "npm:^3.974.10" - "@aws-sdk/types": "npm:^3.973.8" - "@aws-sdk/util-endpoints": "npm:^3.996.9" - "@smithy/core": "npm:^3.24.1" - "@smithy/types": "npm:^4.14.1" + "@aws-sdk/core": "npm:^3.974.12" tslib: "npm:^2.6.2" - checksum: 10/15851233be92fd40e01a5d7150d98511f981dd1ca8b437f25d6f260b8aeb49482d18ca689f7fa81eba71f0d3804af42b1209f9d51fa08df67706c8192143c322 - languageName: node - linkType: hard - -"@aws-sdk/middleware-user-agent@npm:^3.972.7": - version: 3.972.7 - resolution: "@aws-sdk/middleware-user-agent@npm:3.972.7" - dependencies: - "@aws-sdk/core": "npm:^3.973.7" - "@aws-sdk/types": "npm:^3.973.1" - "@aws-sdk/util-endpoints": "npm:3.985.0" - "@smithy/core": "npm:^3.22.1" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/539843b3b3d2bbeb552063f50d8ad727b0b2af4e13459b48f5050c6bbc380900bebbc9fc8f6fba254bc5f429d3a8e06ed9bb2e047a09f1be8a7177cecd59d695 - languageName: node - linkType: hard - -"@aws-sdk/nested-clients@npm:3.985.0": - version: 3.985.0 - resolution: "@aws-sdk/nested-clients@npm:3.985.0" - dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:^3.973.7" - "@aws-sdk/middleware-host-header": "npm:^3.972.3" - "@aws-sdk/middleware-logger": "npm:^3.972.3" - "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" - "@aws-sdk/middleware-user-agent": "npm:^3.972.7" - "@aws-sdk/region-config-resolver": "npm:^3.972.3" - "@aws-sdk/types": "npm:^3.973.1" - "@aws-sdk/util-endpoints": "npm:3.985.0" - "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.5" - "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.1" - "@smithy/fetch-http-handler": "npm:^5.3.9" - "@smithy/hash-node": "npm:^4.2.8" - "@smithy/invalid-dependency": "npm:^4.2.8" - "@smithy/middleware-content-length": "npm:^4.2.8" - "@smithy/middleware-endpoint": "npm:^4.4.13" - "@smithy/middleware-retry": "npm:^4.4.30" - "@smithy/middleware-serde": "npm:^4.2.9" - "@smithy/middleware-stack": "npm:^4.2.8" - "@smithy/node-config-provider": "npm:^4.3.8" - "@smithy/node-http-handler": "npm:^4.4.9" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.2" - "@smithy/types": "npm:^4.12.0" - "@smithy/url-parser": "npm:^4.2.8" - "@smithy/util-base64": "npm:^4.3.0" - "@smithy/util-body-length-browser": "npm:^4.2.0" - "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.29" - "@smithy/util-defaults-mode-node": "npm:^4.2.32" - "@smithy/util-endpoints": "npm:^3.2.8" - "@smithy/util-middleware": "npm:^4.2.8" - "@smithy/util-retry": "npm:^4.2.8" - "@smithy/util-utf8": "npm:^4.2.0" - tslib: "npm:^2.6.2" - checksum: 10/272ca27426419ae36b8fa48cebbae4a31591ab93584315381cd8b811306b54996b8a72bc2ffca050b62da05a8ef0358004696f9606f0e771629a4afd0c433032 + checksum: 10/9992e3d65de3e87e980b1b2ddaea0ac6004c59bfaf0cbcf9a816ad875c2e027a28b8bc03858b036b5cfb7cc53769689dabc1cc58ddf64931ed548afbac821220 languageName: node linkType: hard @@ -1615,54 +918,13 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/nested-clients@npm:^3.997.8": - version: 3.997.8 - resolution: "@aws-sdk/nested-clients@npm:3.997.8" - dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:^3.974.10" - "@aws-sdk/middleware-host-header": "npm:^3.972.11" - "@aws-sdk/middleware-logger": "npm:^3.972.10" - "@aws-sdk/middleware-recursion-detection": "npm:^3.972.12" - "@aws-sdk/middleware-user-agent": "npm:^3.972.40" - "@aws-sdk/region-config-resolver": "npm:^3.972.14" - "@aws-sdk/signature-v4-multi-region": "npm:^3.996.26" - "@aws-sdk/types": "npm:^3.973.8" - "@aws-sdk/util-endpoints": "npm:^3.996.9" - "@aws-sdk/util-user-agent-browser": "npm:^3.972.11" - "@aws-sdk/util-user-agent-node": "npm:^3.973.26" - "@smithy/core": "npm:^3.24.1" - "@smithy/fetch-http-handler": "npm:^5.4.1" - "@smithy/node-http-handler": "npm:^4.7.1" - "@smithy/types": "npm:^4.14.1" - tslib: "npm:^2.6.2" - checksum: 10/854c375b13e0c114997fc9912a769b343cfa5df60e2d55ec5194a63219181318e28fd2e74f5361562222b1841c8e778a349031cd89f7c42e51b867fb13970700 - languageName: node - linkType: hard - "@aws-sdk/region-config-resolver@npm:^3.972.14": - version: 3.972.14 - resolution: "@aws-sdk/region-config-resolver@npm:3.972.14" + version: 3.972.16 + resolution: "@aws-sdk/region-config-resolver@npm:3.972.16" dependencies: - "@aws-sdk/types": "npm:^3.973.8" - "@smithy/core": "npm:^3.24.1" - "@smithy/types": "npm:^4.14.1" + "@aws-sdk/core": "npm:^3.974.12" tslib: "npm:^2.6.2" - checksum: 10/d85c1a9f471e9f06aab3d08f13f4dd03ff96c93e589b81c55c81578e641c627489544a5a2f9b9f952954f3d65e245b40136011fc709d07b091c55177be678db9 - languageName: node - linkType: hard - -"@aws-sdk/region-config-resolver@npm:^3.972.3": - version: 3.972.3 - resolution: "@aws-sdk/region-config-resolver@npm:3.972.3" - dependencies: - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/node-config-provider": "npm:^4.3.8" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/8512a573492a990b028d9f0058d6034d54fb186af20d1da9529ac3d5f8d435c43fa16ef7d3dc0b3ffa679bb90529b55b0d00619160a3549839a136cc698fefb8 + checksum: 10/a1a3ce50f9d88fc18587c844465adf85eef41407b1f70fa03290ab9ca8ade6298a27ca4645b0556bb52206233addc87689360a67ed04612ec7b7679e2e32e47a languageName: node linkType: hard @@ -1696,49 +958,20 @@ __metadata: linkType: hard "@aws-sdk/s3-request-presigner@npm:^3.338.0, @aws-sdk/s3-request-presigner@npm:^3.362.0": - version: 3.986.0 - resolution: "@aws-sdk/s3-request-presigner@npm:3.986.0" - dependencies: - "@aws-sdk/signature-v4-multi-region": "npm:3.986.0" - "@aws-sdk/types": "npm:^3.973.1" - "@aws-sdk/util-format-url": "npm:^3.972.3" - "@smithy/middleware-endpoint": "npm:^4.4.13" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.2" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/bdaacae533e17f917125601a656005fc7e0e5a1ffff6e95f8e1d993f80852f747c38da0f1efd8d64e1b3c284928891d3ec1f0795f7890b7c42898e1aa3a84b62 - languageName: node - linkType: hard - -"@aws-sdk/signature-v4-multi-region@npm:3.986.0": - version: 3.986.0 - resolution: "@aws-sdk/signature-v4-multi-region@npm:3.986.0" - dependencies: - "@aws-sdk/middleware-sdk-s3": "npm:^3.972.7" - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/signature-v4": "npm:^5.3.8" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/e4757e4577fdfb0e12174d1b943c4c84dd9a950baabb3ee7a8d6e6602930da255bfb2bae1bc3260faca0374aef37ede033a2c0c18f01376ede69088621da064e - languageName: node - linkType: hard - -"@aws-sdk/signature-v4-multi-region@npm:^3.996.26": - version: 3.996.26 - resolution: "@aws-sdk/signature-v4-multi-region@npm:3.996.26" + version: 3.1049.0 + resolution: "@aws-sdk/s3-request-presigner@npm:3.1049.0" dependencies: + "@aws-sdk/core": "npm:^3.974.12" + "@aws-sdk/signature-v4-multi-region": "npm:^3.996.27" "@aws-sdk/types": "npm:^3.973.8" - "@smithy/core": "npm:^3.24.1" - "@smithy/signature-v4": "npm:^5.4.1" + "@smithy/core": "npm:^3.24.2" "@smithy/types": "npm:^4.14.1" tslib: "npm:^2.6.2" - checksum: 10/ef957b448433880e2222a183bd70b4f11857bfaa6038602369ebc0738db0daa0140390700cf4aad38acd4bf6325ac4eaa35887c8e106070ed429fbabf0cca603 + checksum: 10/ab0bb71c7a9dc0b27ba1ba28c94c041a762b96dc70b236d2caebc123a74cf1267534b48c941b6ca53396b9d8ab3ff50ff65501f733a026555a33e53c51b9c9a8 languageName: node linkType: hard -"@aws-sdk/signature-v4-multi-region@npm:^3.996.27": +"@aws-sdk/signature-v4-multi-region@npm:^3.996.26, @aws-sdk/signature-v4-multi-region@npm:^3.996.27": version: 3.996.27 resolution: "@aws-sdk/signature-v4-multi-region@npm:3.996.27" dependencies: @@ -1751,20 +984,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.1047.0": - version: 3.1047.0 - resolution: "@aws-sdk/token-providers@npm:3.1047.0" - dependencies: - "@aws-sdk/core": "npm:^3.974.10" - "@aws-sdk/nested-clients": "npm:^3.997.8" - "@aws-sdk/types": "npm:^3.973.8" - "@smithy/core": "npm:^3.24.1" - "@smithy/types": "npm:^4.14.1" - tslib: "npm:^2.6.2" - checksum: 10/a580c81a5ced77a46ee48f58fd516eac50f1ef501f9dcad9930e7aed433fa5f55a1b11772ad95b42c69b1c103d774402604ea1095a0cbe5d8852607ea6a95a48 - languageName: node - linkType: hard - "@aws-sdk/token-providers@npm:3.1049.0": version: 3.1049.0 resolution: "@aws-sdk/token-providers@npm:3.1049.0" @@ -1779,22 +998,7 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.985.0": - version: 3.985.0 - resolution: "@aws-sdk/token-providers@npm:3.985.0" - dependencies: - "@aws-sdk/core": "npm:^3.973.7" - "@aws-sdk/nested-clients": "npm:3.985.0" - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/property-provider": "npm:^4.2.8" - "@smithy/shared-ini-file-loader": "npm:^4.4.3" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/1adc739847ffe2311e0c34b8de25b61c43707dc135e1e2e7f536eeb96a1cc1431a935419e5a92bafa1185e5bbb43a93e14a21fa104242daa81fa80497c4dae17 - languageName: node - linkType: hard - -"@aws-sdk/types@npm:^3.222.0, @aws-sdk/types@npm:^3.973.1": +"@aws-sdk/types@npm:^3.222.0": version: 3.973.1 resolution: "@aws-sdk/types@npm:3.973.1" dependencies: @@ -1814,62 +1018,14 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-arn-parser@npm:^3.972.2": - version: 3.972.2 - resolution: "@aws-sdk/util-arn-parser@npm:3.972.2" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10/6c09725259187615199b44c21cc9aaf6e61c4d1f326535fd36cf1e95d9842bd58084542c72a9facbca47c5846c5bd8fed7b179e86a036ee142d4a171a6098092 - languageName: node - linkType: hard - -"@aws-sdk/util-endpoints@npm:3.985.0": - version: 3.985.0 - resolution: "@aws-sdk/util-endpoints@npm:3.985.0" - dependencies: - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/types": "npm:^4.12.0" - "@smithy/url-parser": "npm:^4.2.8" - "@smithy/util-endpoints": "npm:^3.2.8" - tslib: "npm:^2.6.2" - checksum: 10/9aee47338aea80f93ccf85273e06081a544c1221fa4928bf581e75c61ca129bb60918a3cfc551101b314b4cc8c8eb8396528817de1eca24f7867e79301a71ddc - languageName: node - linkType: hard - -"@aws-sdk/util-endpoints@npm:3.986.0": - version: 3.986.0 - resolution: "@aws-sdk/util-endpoints@npm:3.986.0" - dependencies: - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/types": "npm:^4.12.0" - "@smithy/url-parser": "npm:^4.2.8" - "@smithy/util-endpoints": "npm:^3.2.8" - tslib: "npm:^2.6.2" - checksum: 10/5ded37a405b351a637e00b2c469fc606914eb32b26c45b6c4f264b2963a28b63d771dac95cd0633ffe6fddd6ae68f14ebd66768f914e6f984ebfdf697337578c - languageName: node - linkType: hard - "@aws-sdk/util-endpoints@npm:^3.996.9": - version: 3.996.9 - resolution: "@aws-sdk/util-endpoints@npm:3.996.9" + version: 3.996.11 + resolution: "@aws-sdk/util-endpoints@npm:3.996.11" dependencies: - "@aws-sdk/types": "npm:^3.973.8" - "@smithy/core": "npm:^3.24.1" - "@smithy/types": "npm:^4.14.1" + "@aws-sdk/core": "npm:^3.974.12" + "@smithy/core": "npm:^3.24.2" tslib: "npm:^2.6.2" - checksum: 10/31ae9cfa931e2d50f426b5b00ef63b3666d0da6de5e49aea380ec1110a2ba4ef7ee9ca91d62c3726ab5f91041608a7f439505201a68a3fe3405bfa02620c487c - languageName: node - linkType: hard - -"@aws-sdk/util-format-url@npm:^3.972.3": - version: 3.972.3 - resolution: "@aws-sdk/util-format-url@npm:3.972.3" - dependencies: - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/querystring-builder": "npm:^4.2.8" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/3d128ba22efc0d58406dd9e9503e62d75ae0dea22ed0276f9755acf598236918d0c2802947e0031ac924a14e8b21c387520e08515bedf56ee00fe83f4747b795 + checksum: 10/a7db41f98542127cef1bda6abf4aac82db9a3be33b8895370dabba32b00edb47ebde4684e168ee912bae745c0ed563913ccdb9cb9246791d8c1de49a9e2b8517 languageName: node linkType: hard @@ -1883,62 +1039,22 @@ __metadata: linkType: hard "@aws-sdk/util-user-agent-browser@npm:^3.972.11": - version: 3.972.11 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.972.11" + version: 3.972.13 + resolution: "@aws-sdk/util-user-agent-browser@npm:3.972.13" dependencies: - "@aws-sdk/types": "npm:^3.973.8" - "@smithy/types": "npm:^4.14.1" - bowser: "npm:^2.11.0" + "@aws-sdk/core": "npm:^3.974.12" tslib: "npm:^2.6.2" - checksum: 10/f61443463f810e57719aae99179b03d77741cb2ae3b085972e904172a737f86f1f1b1eee18713306a74cb1456770e421eb03fdf88e4976b757f8e8537826b35b - languageName: node - linkType: hard - -"@aws-sdk/util-user-agent-browser@npm:^3.972.3": - version: 3.972.3 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.972.3" - dependencies: - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/types": "npm:^4.12.0" - bowser: "npm:^2.11.0" - tslib: "npm:^2.6.2" - checksum: 10/fb51d6ae56ba2a69a1239fc1f83a739c468c78ff678cf336b923273237e861b8ff4bfb296b7a250f5980dc2ef6741492a802432243313daf9a03a5332199f7aa - languageName: node - linkType: hard - -"@aws-sdk/util-user-agent-node@npm:^3.972.5": - version: 3.972.5 - resolution: "@aws-sdk/util-user-agent-node@npm:3.972.5" - dependencies: - "@aws-sdk/middleware-user-agent": "npm:^3.972.7" - "@aws-sdk/types": "npm:^3.973.1" - "@smithy/node-config-provider": "npm:^4.3.8" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - peerDependencies: - aws-crt: ">=1.0.0" - peerDependenciesMeta: - aws-crt: - optional: true - checksum: 10/5f292e65da1e44b3aab435017f52d29511bb829a4381e8ad2868b359412ad271c5e983738ba4f9da73de054c07d2b8f3dd9e550d16cbe7088b972d8ebed96e8f + checksum: 10/00d9a93e706360b615d4f050abfb33e2ec890a5ba3f862f7f55b657e0c3e7efdd15bdba92468929345bb9fe78613ddce81aaa4c90dd298065e1961ab30630355 languageName: node linkType: hard "@aws-sdk/util-user-agent-node@npm:^3.973.26": - version: 3.973.26 - resolution: "@aws-sdk/util-user-agent-node@npm:3.973.26" + version: 3.973.28 + resolution: "@aws-sdk/util-user-agent-node@npm:3.973.28" dependencies: - "@aws-sdk/middleware-user-agent": "npm:^3.972.40" - "@aws-sdk/types": "npm:^3.973.8" - "@smithy/core": "npm:^3.24.1" - "@smithy/types": "npm:^4.14.1" + "@aws-sdk/core": "npm:^3.974.12" tslib: "npm:^2.6.2" - peerDependencies: - aws-crt: ">=1.0.0" - peerDependenciesMeta: - aws-crt: - optional: true - checksum: 10/2a7efdfbe1e0da21747c3bb0f16596f297ebab63b77d7092ca330fd10052f3cfead7f37a92cf51d118975e391fef51cc133a9d69d2e64c0ebc4caca40b27203e + checksum: 10/ef8102b995c5b0432bccc6d006391da2fa569f7f2ac295c84f026eb40b993f8430bf574f85aa1ba3bc3fe67fd3b31e580e7b48dfa3f5eabf81031203be8ba95e languageName: node linkType: hard @@ -1954,17 +1070,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/xml-builder@npm:^3.972.4": - version: 3.972.4 - resolution: "@aws-sdk/xml-builder@npm:3.972.4" - dependencies: - "@smithy/types": "npm:^4.12.0" - fast-xml-parser: "npm:5.3.4" - tslib: "npm:^2.6.2" - checksum: 10/f0a1a9b3344a33a619d76a3597d23b28efe41c61e4858b7f65e1d5e40f0290ddc1f45961b3e2fa7ed41a71a29e1f7d91a9f64c0274280f5f1004cb1be9a03e11 - languageName: node - linkType: hard - "@aws/lambda-invoke-store@npm:^0.2.2": version: 0.2.3 resolution: "@aws/lambda-invoke-store@npm:0.2.3" @@ -6137,6 +5242,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-android-arm-eabi@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-android-arm-eabi@npm:4.60.4" + conditions: os=android & cpu=arm + languageName: node + linkType: hard + "@rollup/rollup-android-arm64@npm:4.34.8": version: 4.34.8 resolution: "@rollup/rollup-android-arm64@npm:4.34.8" @@ -6151,6 +5263,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-android-arm64@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-android-arm64@npm:4.60.4" + conditions: os=android & cpu=arm64 + languageName: node + linkType: hard + "@rollup/rollup-darwin-arm64@npm:4.34.8": version: 4.34.8 resolution: "@rollup/rollup-darwin-arm64@npm:4.34.8" @@ -6165,6 +5284,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-darwin-arm64@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-darwin-arm64@npm:4.60.4" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + "@rollup/rollup-darwin-x64@npm:4.34.8": version: 4.34.8 resolution: "@rollup/rollup-darwin-x64@npm:4.34.8" @@ -6179,6 +5305,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-darwin-x64@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-darwin-x64@npm:4.60.4" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + "@rollup/rollup-freebsd-arm64@npm:4.34.8": version: 4.34.8 resolution: "@rollup/rollup-freebsd-arm64@npm:4.34.8" @@ -6193,6 +5326,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-freebsd-arm64@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-freebsd-arm64@npm:4.60.4" + conditions: os=freebsd & cpu=arm64 + languageName: node + linkType: hard + "@rollup/rollup-freebsd-x64@npm:4.34.8": version: 4.34.8 resolution: "@rollup/rollup-freebsd-x64@npm:4.34.8" @@ -6207,6 +5347,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-freebsd-x64@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-freebsd-x64@npm:4.60.4" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + "@rollup/rollup-linux-arm-gnueabihf@npm:4.34.8": version: 4.34.8 resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.34.8" @@ -6221,6 +5368,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-linux-arm-gnueabihf@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.60.4" + conditions: os=linux & cpu=arm & libc=glibc + languageName: node + linkType: hard + "@rollup/rollup-linux-arm-musleabihf@npm:4.34.8": version: 4.34.8 resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.34.8" @@ -6235,6 +5389,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-linux-arm-musleabihf@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.60.4" + conditions: os=linux & cpu=arm & libc=musl + languageName: node + linkType: hard + "@rollup/rollup-linux-arm64-gnu@npm:4.34.8": version: 4.34.8 resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.34.8" @@ -6249,6 +5410,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-linux-arm64-gnu@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.60.4" + conditions: os=linux & cpu=arm64 & libc=glibc + languageName: node + linkType: hard + "@rollup/rollup-linux-arm64-musl@npm:4.34.8": version: 4.34.8 resolution: "@rollup/rollup-linux-arm64-musl@npm:4.34.8" @@ -6263,6 +5431,27 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-linux-arm64-musl@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-arm64-musl@npm:4.60.4" + conditions: os=linux & cpu=arm64 & libc=musl + languageName: node + linkType: hard + +"@rollup/rollup-linux-loong64-gnu@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-loong64-gnu@npm:4.60.4" + conditions: os=linux & cpu=loong64 & libc=glibc + languageName: node + linkType: hard + +"@rollup/rollup-linux-loong64-musl@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-loong64-musl@npm:4.60.4" + conditions: os=linux & cpu=loong64 & libc=musl + languageName: node + linkType: hard + "@rollup/rollup-linux-loongarch64-gnu@npm:4.34.8": version: 4.34.8 resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.34.8" @@ -6291,6 +5480,20 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-linux-ppc64-gnu@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.60.4" + conditions: os=linux & cpu=ppc64 & libc=glibc + languageName: node + linkType: hard + +"@rollup/rollup-linux-ppc64-musl@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-ppc64-musl@npm:4.60.4" + conditions: os=linux & cpu=ppc64 & libc=musl + languageName: node + linkType: hard + "@rollup/rollup-linux-riscv64-gnu@npm:4.34.8": version: 4.34.8 resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.34.8" @@ -6305,6 +5508,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-linux-riscv64-gnu@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.60.4" + conditions: os=linux & cpu=riscv64 & libc=glibc + languageName: node + linkType: hard + "@rollup/rollup-linux-riscv64-musl@npm:4.50.1": version: 4.50.1 resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.50.1" @@ -6312,6 +5522,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-linux-riscv64-musl@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.60.4" + conditions: os=linux & cpu=riscv64 & libc=musl + languageName: node + linkType: hard + "@rollup/rollup-linux-s390x-gnu@npm:4.34.8": version: 4.34.8 resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.34.8" @@ -6326,6 +5543,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-linux-s390x-gnu@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.60.4" + conditions: os=linux & cpu=s390x & libc=glibc + languageName: node + linkType: hard + "@rollup/rollup-linux-x64-gnu@npm:4.34.8": version: 4.34.8 resolution: "@rollup/rollup-linux-x64-gnu@npm:4.34.8" @@ -6340,6 +5564,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-linux-x64-gnu@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-x64-gnu@npm:4.60.4" + conditions: os=linux & cpu=x64 & libc=glibc + languageName: node + linkType: hard + "@rollup/rollup-linux-x64-musl@npm:4.34.8": version: 4.34.8 resolution: "@rollup/rollup-linux-x64-musl@npm:4.34.8" @@ -6354,6 +5585,20 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-linux-x64-musl@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-x64-musl@npm:4.60.4" + conditions: os=linux & cpu=x64 & libc=musl + languageName: node + linkType: hard + +"@rollup/rollup-openbsd-x64@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-openbsd-x64@npm:4.60.4" + conditions: os=openbsd & cpu=x64 + languageName: node + linkType: hard + "@rollup/rollup-openharmony-arm64@npm:4.50.1": version: 4.50.1 resolution: "@rollup/rollup-openharmony-arm64@npm:4.50.1" @@ -6361,6 +5606,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-openharmony-arm64@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-openharmony-arm64@npm:4.60.4" + conditions: os=openharmony & cpu=arm64 + languageName: node + linkType: hard + "@rollup/rollup-win32-arm64-msvc@npm:4.34.8": version: 4.34.8 resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.34.8" @@ -6375,6 +5627,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-win32-arm64-msvc@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.60.4" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + "@rollup/rollup-win32-ia32-msvc@npm:4.34.8": version: 4.34.8 resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.34.8" @@ -6389,6 +5648,20 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-win32-ia32-msvc@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.60.4" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + +"@rollup/rollup-win32-x64-gnu@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-win32-x64-gnu@npm:4.60.4" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + "@rollup/rollup-win32-x64-msvc@npm:4.34.8": version: 4.34.8 resolution: "@rollup/rollup-win32-x64-msvc@npm:4.34.8" @@ -6403,6 +5676,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-win32-x64-msvc@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-win32-x64-msvc@npm:4.60.4" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + "@rollup/wasm-node@npm:^4.24.0": version: 4.39.0 resolution: "@rollup/wasm-node@npm:4.39.0" @@ -6515,67 +5795,6 @@ __metadata: languageName: node linkType: hard -"@smithy/abort-controller@npm:^4.2.8": - version: 4.2.8 - resolution: "@smithy/abort-controller@npm:4.2.8" - dependencies: - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/17d5beb1c86227ced459e6abbb03d6a3f205bd6f535a4bca2a10e9b4838292c533be78dbf39cdbf1f8f4af0c2fc3fec2f3081b3d4a1bf4e12a2a2aa52e298173 - languageName: node - linkType: hard - -"@smithy/chunked-blob-reader-native@npm:^4.2.1": - version: 4.2.1 - resolution: "@smithy/chunked-blob-reader-native@npm:4.2.1" - dependencies: - "@smithy/util-base64": "npm:^4.3.0" - tslib: "npm:^2.6.2" - checksum: 10/491cd1fbf74c53cc8c63abef1d9c0e93d1c0773db2c4458d4d3bd08217ea58872e413191b56259fd8081653ee07628e3ffcf7ff594d124378401fc3637794474 - languageName: node - linkType: hard - -"@smithy/chunked-blob-reader@npm:^5.2.0": - version: 5.2.0 - resolution: "@smithy/chunked-blob-reader@npm:5.2.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10/c2f3b93343daba9a71e2f00fb93ae527a03c0adb6c6c6e194834bf4a67111e87f0694e2d9dd9b70bca87e9eb9da1d905d4450147e54e4cd27c6703dd98d58e0c - languageName: node - linkType: hard - -"@smithy/config-resolver@npm:^4.4.6": - version: 4.4.6 - resolution: "@smithy/config-resolver@npm:4.4.6" - dependencies: - "@smithy/node-config-provider": "npm:^4.3.8" - "@smithy/types": "npm:^4.12.0" - "@smithy/util-config-provider": "npm:^4.2.0" - "@smithy/util-endpoints": "npm:^3.2.8" - "@smithy/util-middleware": "npm:^4.2.8" - tslib: "npm:^2.6.2" - checksum: 10/6440612a9e9a29b74f3420244f3e416d2c2ff0ed4956af323cd39eb4b8efe22a01e791e8cf465c5b0230a778a825290d6b935e3c6d4ca5a92336b48a2b2b4dbd - languageName: node - linkType: hard - -"@smithy/core@npm:^3.22.1, @smithy/core@npm:^3.23.0": - version: 3.23.0 - resolution: "@smithy/core@npm:3.23.0" - dependencies: - "@smithy/middleware-serde": "npm:^4.2.9" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/types": "npm:^4.12.0" - "@smithy/util-base64": "npm:^4.3.0" - "@smithy/util-body-length-browser": "npm:^4.2.0" - "@smithy/util-middleware": "npm:^4.2.8" - "@smithy/util-stream": "npm:^4.5.12" - "@smithy/util-utf8": "npm:^4.2.0" - "@smithy/uuid": "npm:^1.1.0" - tslib: "npm:^2.6.2" - checksum: 10/47c33b0b25fb5f67c14c1b713cddf5bd57a54d4b6c056de1011e90c1b6975e87fd6db89be64594d7e81554ab7da66afc8e65968c9c7402f4726144ad584c9b86 - languageName: node - linkType: hard - "@smithy/core@npm:^3.24.1, @smithy/core@npm:^3.24.2, @smithy/core@npm:^3.24.3": version: 3.24.3 resolution: "@smithy/core@npm:3.24.3" @@ -6587,20 +5806,7 @@ __metadata: languageName: node linkType: hard -"@smithy/credential-provider-imds@npm:^4.2.8": - version: 4.2.8 - resolution: "@smithy/credential-provider-imds@npm:4.2.8" - dependencies: - "@smithy/node-config-provider": "npm:^4.3.8" - "@smithy/property-provider": "npm:^4.2.8" - "@smithy/types": "npm:^4.12.0" - "@smithy/url-parser": "npm:^4.2.8" - tslib: "npm:^2.6.2" - checksum: 10/f0d7abbe28a8244cacf65a453f132e38902e8e912b284b8371165b94ce6ae183acedc430d84ab466ef2d6930867f44d6aeaa4bb877e53a06a8f2dbd42c145d69 - languageName: node - linkType: hard - -"@smithy/credential-provider-imds@npm:^4.3.1, @smithy/credential-provider-imds@npm:^4.3.2": +"@smithy/credential-provider-imds@npm:^4.3.2": version: 4.3.3 resolution: "@smithy/credential-provider-imds@npm:4.3.3" dependencies: @@ -6611,74 +5817,6 @@ __metadata: languageName: node linkType: hard -"@smithy/eventstream-codec@npm:^4.2.8": - version: 4.2.8 - resolution: "@smithy/eventstream-codec@npm:4.2.8" - dependencies: - "@aws-crypto/crc32": "npm:5.2.0" - "@smithy/types": "npm:^4.12.0" - "@smithy/util-hex-encoding": "npm:^4.2.0" - tslib: "npm:^2.6.2" - checksum: 10/45e027b320056dc82ce23928a09d29baa5d080c89008874f409c557228923ce216940990bbe53204d8628a0ca4d1e774cbb5aaceb4b5ba6237b89c108ce39a32 - languageName: node - linkType: hard - -"@smithy/eventstream-serde-browser@npm:^4.2.8": - version: 4.2.8 - resolution: "@smithy/eventstream-serde-browser@npm:4.2.8" - dependencies: - "@smithy/eventstream-serde-universal": "npm:^4.2.8" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/10aef5211bb360b67861f672084a1270caa8b5c1ab5ccbb388d507080387d65b714239e997e8851ec8a38082144ebca316af0db963b1aae15f5160c5c36a1315 - languageName: node - linkType: hard - -"@smithy/eventstream-serde-config-resolver@npm:^4.3.8": - version: 4.3.8 - resolution: "@smithy/eventstream-serde-config-resolver@npm:4.3.8" - dependencies: - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/fbd4b1278c047a7b8bde7181a17c46ee17c93c8d907d54f8122312bed16a6ef835914962746ec4cb11154a09c9eec166e7ffd3bdc65af0a38a62ab7083902418 - languageName: node - linkType: hard - -"@smithy/eventstream-serde-node@npm:^4.2.8": - version: 4.2.8 - resolution: "@smithy/eventstream-serde-node@npm:4.2.8" - dependencies: - "@smithy/eventstream-serde-universal": "npm:^4.2.8" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/603840ac95222293b7b5db6201249b08c2dd9ee343a66fde5a5025b1f3bab130be6b4f6ddd7b657a440b422a2f16868a2f30553eb1a27aafabcf8a0aab1729c9 - languageName: node - linkType: hard - -"@smithy/eventstream-serde-universal@npm:^4.2.8": - version: 4.2.8 - resolution: "@smithy/eventstream-serde-universal@npm:4.2.8" - dependencies: - "@smithy/eventstream-codec": "npm:^4.2.8" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/814366a4184ed28e51edeeee43c46b3a8e7153d1136e0802e86c6ff9143c73bf6137617b67c7763d374ed921d673f54fd950bf0fdc09aebaf07977eeb0c60e63 - languageName: node - linkType: hard - -"@smithy/fetch-http-handler@npm:^5.3.9": - version: 5.3.9 - resolution: "@smithy/fetch-http-handler@npm:5.3.9" - dependencies: - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/querystring-builder": "npm:^4.2.8" - "@smithy/types": "npm:^4.12.0" - "@smithy/util-base64": "npm:^4.3.0" - tslib: "npm:^2.6.2" - checksum: 10/7e350c6a4f49e9c913367791f2fb48bc160ae60ad2a6f314baf384623aed2ee5b50996b4ffcc8ddf8abb0ba9489bb524dedb1769756431c45e3ab7bfc41b7994 - languageName: node - linkType: hard - "@smithy/fetch-http-handler@npm:^5.4.1, @smithy/fetch-http-handler@npm:^5.4.2": version: 5.4.3 resolution: "@smithy/fetch-http-handler@npm:5.4.3" @@ -6690,51 +5828,6 @@ __metadata: languageName: node linkType: hard -"@smithy/hash-blob-browser@npm:^4.2.9": - version: 4.2.9 - resolution: "@smithy/hash-blob-browser@npm:4.2.9" - dependencies: - "@smithy/chunked-blob-reader": "npm:^5.2.0" - "@smithy/chunked-blob-reader-native": "npm:^4.2.1" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/de9641b7b66085e35a2896304216419fb7f073609f12686d7df775b0df8c83066e778a757e664be37c07ed4c2f87cce7754878213a2e4cd6f80cc208e61aa42f - languageName: node - linkType: hard - -"@smithy/hash-node@npm:^4.2.8": - version: 4.2.8 - resolution: "@smithy/hash-node@npm:4.2.8" - dependencies: - "@smithy/types": "npm:^4.12.0" - "@smithy/util-buffer-from": "npm:^4.2.0" - "@smithy/util-utf8": "npm:^4.2.0" - tslib: "npm:^2.6.2" - checksum: 10/db765b8f338e4109aab1d7032175c74673bfedff10cae2241e91034efa42cf01a657f5c0494ef79fc9d7aa2da9ab01981c64583d0a736baf5e6b3038a69a0c1f - languageName: node - linkType: hard - -"@smithy/hash-stream-node@npm:^4.2.8": - version: 4.2.8 - resolution: "@smithy/hash-stream-node@npm:4.2.8" - dependencies: - "@smithy/types": "npm:^4.12.0" - "@smithy/util-utf8": "npm:^4.2.0" - tslib: "npm:^2.6.2" - checksum: 10/154583e9f39508aad8250d121bb6810a480db6428319b12a10465b83cc87246c74cbef65ec71953c7a80d626fb55e38506b294d93a082fabf9217be7c7d35cda - languageName: node - linkType: hard - -"@smithy/invalid-dependency@npm:^4.2.8": - version: 4.2.8 - resolution: "@smithy/invalid-dependency@npm:4.2.8" - dependencies: - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/e1c1d0a654e096f74dfec32e48492075f4d96f7f3694a1c5b530c575e402eb605f381748f321ae7b491b97142d3bfbd55f269b1b3257dcc0d3aa38508e227e2b - languageName: node - linkType: hard - "@smithy/is-array-buffer@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/is-array-buffer@npm:2.2.0" @@ -6744,116 +5837,6 @@ __metadata: languageName: node linkType: hard -"@smithy/is-array-buffer@npm:^4.2.0": - version: 4.2.0 - resolution: "@smithy/is-array-buffer@npm:4.2.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10/fdc097ce6a8b241565e2d56460ec289730bcd734dcde17c23d1eaaa0996337f897217166276a3fd82491fe9fd17447aadf62e8d9056b3d2b9daf192b4b668af9 - languageName: node - linkType: hard - -"@smithy/md5-js@npm:^4.2.8": - version: 4.2.8 - resolution: "@smithy/md5-js@npm:4.2.8" - dependencies: - "@smithy/types": "npm:^4.12.0" - "@smithy/util-utf8": "npm:^4.2.0" - tslib: "npm:^2.6.2" - checksum: 10/bc5478f5918c9c9bb7f6f3b62c2a374b20c3f7e0a01df25edf1f8b0832778a0625d69df50bf01c9434e9d8002561c28bc20a2d151cfc7a89d157a79bd900e199 - languageName: node - linkType: hard - -"@smithy/middleware-content-length@npm:^4.2.8": - version: 4.2.8 - resolution: "@smithy/middleware-content-length@npm:4.2.8" - dependencies: - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/9077c99f263843d347c847057ba3f7c270a8f71d96018f123fd78f1a0439f076e5ae989e7ce83e158f94b45afc7e8665f67d33e4c2cb66d7bbb88495ae9f1785 - languageName: node - linkType: hard - -"@smithy/middleware-endpoint@npm:^4.4.13, @smithy/middleware-endpoint@npm:^4.4.14": - version: 4.4.14 - resolution: "@smithy/middleware-endpoint@npm:4.4.14" - dependencies: - "@smithy/core": "npm:^3.23.0" - "@smithy/middleware-serde": "npm:^4.2.9" - "@smithy/node-config-provider": "npm:^4.3.8" - "@smithy/shared-ini-file-loader": "npm:^4.4.3" - "@smithy/types": "npm:^4.12.0" - "@smithy/url-parser": "npm:^4.2.8" - "@smithy/util-middleware": "npm:^4.2.8" - tslib: "npm:^2.6.2" - checksum: 10/08d573d1da0c1cb900e1539ab4539b827f806b18299a8ac80de059554e991d9f643fb53df10c980719ec442e20eca65bbb28bafd431823acabdef05f06bd50cf - languageName: node - linkType: hard - -"@smithy/middleware-retry@npm:^4.4.30": - version: 4.4.31 - resolution: "@smithy/middleware-retry@npm:4.4.31" - dependencies: - "@smithy/node-config-provider": "npm:^4.3.8" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/service-error-classification": "npm:^4.2.8" - "@smithy/smithy-client": "npm:^4.11.3" - "@smithy/types": "npm:^4.12.0" - "@smithy/util-middleware": "npm:^4.2.8" - "@smithy/util-retry": "npm:^4.2.8" - "@smithy/uuid": "npm:^1.1.0" - tslib: "npm:^2.6.2" - checksum: 10/f82122dc690504468697c5386e51cf34989866d4020ac6d775e192b34d3e571cedd8352c700578c235f43ba339c4ce3757d974d3d5b7eca12e1b42cd1e614737 - languageName: node - linkType: hard - -"@smithy/middleware-serde@npm:^4.2.9": - version: 4.2.9 - resolution: "@smithy/middleware-serde@npm:4.2.9" - dependencies: - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/490e9ab6ce6664812e30975d3f24d769c8ba59f153c97a5095516f8fd22ed6d948cd4838cfdb253b020b3ec8914b4ec3cb31f1d6ca84ece7639381d5dec6c463 - languageName: node - linkType: hard - -"@smithy/middleware-stack@npm:^4.2.8": - version: 4.2.8 - resolution: "@smithy/middleware-stack@npm:4.2.8" - dependencies: - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/c4b8dc4e466e31e4adc36a52af5e7f5bdc9adf3cc31e825947a2f73f5e1beb5ef87b72624427e6f3a18951407878d7f0ef33990c210aa7df5143c028f0ef8740 - languageName: node - linkType: hard - -"@smithy/node-config-provider@npm:^4.3.8": - version: 4.3.8 - resolution: "@smithy/node-config-provider@npm:4.3.8" - dependencies: - "@smithy/property-provider": "npm:^4.2.8" - "@smithy/shared-ini-file-loader": "npm:^4.4.3" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/e954b98ad121e76174453bf67bf9824b661de61865d3e92e845d6e0656b3d8c41ebc90a176428d3732a14dd8cfe5795644864d17470a5af37599c2c4b3c221fd - languageName: node - linkType: hard - -"@smithy/node-http-handler@npm:^4.4.10, @smithy/node-http-handler@npm:^4.4.9": - version: 4.4.10 - resolution: "@smithy/node-http-handler@npm:4.4.10" - dependencies: - "@smithy/abort-controller": "npm:^4.2.8" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/querystring-builder": "npm:^4.2.8" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/9653d587b493769966bea777e6c31c967cc56ab458fb1fbe3543aa2905e0216d3c9d2c3fa648ecbd768ab0c5eb72fbca7e61a4ee8eb3514a77c38090ba554bfd - languageName: node - linkType: hard - "@smithy/node-http-handler@npm:^4.7.1, @smithy/node-http-handler@npm:^4.7.2": version: 4.7.3 resolution: "@smithy/node-http-handler@npm:4.7.3" @@ -6865,82 +5848,6 @@ __metadata: languageName: node linkType: hard -"@smithy/property-provider@npm:^4.2.8": - version: 4.2.8 - resolution: "@smithy/property-provider@npm:4.2.8" - dependencies: - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/d50f51bf029f72ec3679c7945cbb77f71d53fa5f53a20adcbc0ab25f53587add46d1ed1dd90becb1bdf0c97c9caf7f8a45d868eefe3951a4e68bc3ce5ed1eb29 - languageName: node - linkType: hard - -"@smithy/protocol-http@npm:^5.3.8": - version: 5.3.8 - resolution: "@smithy/protocol-http@npm:5.3.8" - dependencies: - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/6465375d9feff2c2718e5b30d358f3d63f007574b2338c6b08dde11d11a98371697b9ec047455fa71be6ede9770e7e53ee5d9715ed7033dbfb825ec4d029066e - languageName: node - linkType: hard - -"@smithy/querystring-builder@npm:^4.2.8": - version: 4.2.8 - resolution: "@smithy/querystring-builder@npm:4.2.8" - dependencies: - "@smithy/types": "npm:^4.12.0" - "@smithy/util-uri-escape": "npm:^4.2.0" - tslib: "npm:^2.6.2" - checksum: 10/13bd560936d31f51006174f962260526c21df1cdb821f83cc3f7e6424c1a37f2b6b76a92bef1241174eebbdd5ef06f050752460ad638f7814f23f499e0a847fa - languageName: node - linkType: hard - -"@smithy/querystring-parser@npm:^4.2.8": - version: 4.2.8 - resolution: "@smithy/querystring-parser@npm:4.2.8" - dependencies: - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/26e5a3fc8d1623980f9a03662b6b2349a4a4e6f0ecb9af4df9f11a2cc83a58d4ef3571d104e5ff1a10973a4e297b3aa8327f261d647ffc6f5ee871008a740580 - languageName: node - linkType: hard - -"@smithy/service-error-classification@npm:^4.2.8": - version: 4.2.8 - resolution: "@smithy/service-error-classification@npm:4.2.8" - dependencies: - "@smithy/types": "npm:^4.12.0" - checksum: 10/ffcbaa6fa3536642dc03f3c7feb762a3b4acfa5d45ff74e401634f472549fce2608a5b1ebd339de5fc0ba2e0f6296b5fa8e49258cb1b675aa298aed631728542 - languageName: node - linkType: hard - -"@smithy/shared-ini-file-loader@npm:^4.4.3": - version: 4.4.3 - resolution: "@smithy/shared-ini-file-loader@npm:4.4.3" - dependencies: - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/70cf7db0e24768d5e6a019de29d194ca4516e9177cbd9cd97ce7800889ee2bd3d8cfd71958d11cd026f79223cb34c64176234443d464cf6146562e0385f7daea - languageName: node - linkType: hard - -"@smithy/signature-v4@npm:^5.3.8": - version: 5.3.8 - resolution: "@smithy/signature-v4@npm:5.3.8" - dependencies: - "@smithy/is-array-buffer": "npm:^4.2.0" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/types": "npm:^4.12.0" - "@smithy/util-hex-encoding": "npm:^4.2.0" - "@smithy/util-middleware": "npm:^4.2.8" - "@smithy/util-uri-escape": "npm:^4.2.0" - "@smithy/util-utf8": "npm:^4.2.0" - tslib: "npm:^2.6.2" - checksum: 10/88bd0b507bf1a567519208d5b5fb923142bf63bd9b7bfd8b0d4485a8225a80c4274956770127ef471ace96dbb00f1e0bee0bafeb365c5f5346e5419e6ed882fc - languageName: node - linkType: hard - "@smithy/signature-v4@npm:^5.4.1, @smithy/signature-v4@npm:^5.4.2": version: 5.4.3 resolution: "@smithy/signature-v4@npm:5.4.3" @@ -6952,21 +5859,6 @@ __metadata: languageName: node linkType: hard -"@smithy/smithy-client@npm:^4.11.2, @smithy/smithy-client@npm:^4.11.3": - version: 4.11.3 - resolution: "@smithy/smithy-client@npm:4.11.3" - dependencies: - "@smithy/core": "npm:^3.23.0" - "@smithy/middleware-endpoint": "npm:^4.4.14" - "@smithy/middleware-stack": "npm:^4.2.8" - "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/types": "npm:^4.12.0" - "@smithy/util-stream": "npm:^4.5.12" - tslib: "npm:^2.6.2" - checksum: 10/d3a435a096cab94a5ff656ab7cfa26f9fe22be2880126617e0d01efa9915c9e01b5c1d29e62f44c625a7dbb8e3c16c77606638dec374cce6bb31cef3073fe03c - languageName: node - linkType: hard - "@smithy/types@npm:^4.12.0": version: 4.12.0 resolution: "@smithy/types@npm:4.12.0" @@ -6985,46 +5877,6 @@ __metadata: languageName: node linkType: hard -"@smithy/url-parser@npm:^4.2.8": - version: 4.2.8 - resolution: "@smithy/url-parser@npm:4.2.8" - dependencies: - "@smithy/querystring-parser": "npm:^4.2.8" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/8e99b893502f219e5bd9c17f6f974a433f3e56c6dc899cb753281c7701c19126f202766dcee69c4e5ecb1b941daa68bc5d6ea603dd5121bce0de5135268664d4 - languageName: node - linkType: hard - -"@smithy/util-base64@npm:^4.3.0": - version: 4.3.0 - resolution: "@smithy/util-base64@npm:4.3.0" - dependencies: - "@smithy/util-buffer-from": "npm:^4.2.0" - "@smithy/util-utf8": "npm:^4.2.0" - tslib: "npm:^2.6.2" - checksum: 10/87065ca13e3745858e0bb0ab6374433b258c378ee2a5ef865b74f6a4208c56db7db2b9ee5f888e021de0107fae49e9957662c4c6847fe10529e2f6cc882426b4 - languageName: node - linkType: hard - -"@smithy/util-body-length-browser@npm:^4.2.0": - version: 4.2.0 - resolution: "@smithy/util-body-length-browser@npm:4.2.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10/deeb689b52652651c11530a324e07725805533899215ad1f93c5e9a14931443e22b313491a3c2a6d7f61d6dd1e84f9154d0d32de62bf61e0bd8e6ab7bf5f81ed - languageName: node - linkType: hard - -"@smithy/util-body-length-node@npm:^4.2.1": - version: 4.2.1 - resolution: "@smithy/util-body-length-node@npm:4.2.1" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10/efb1333d35120124ec0c751b7b7d5657eb9ad6d0bf6171ff61fde2504639883d36e9562613c70eca623b726193b22601c8ff60e40a8156102d4c5b12fae222f8 - languageName: node - linkType: hard - "@smithy/util-buffer-from@npm:^2.2.0": version: 2.2.0 resolution: "@smithy/util-buffer-from@npm:2.2.0" @@ -7035,118 +5887,6 @@ __metadata: languageName: node linkType: hard -"@smithy/util-buffer-from@npm:^4.2.0": - version: 4.2.0 - resolution: "@smithy/util-buffer-from@npm:4.2.0" - dependencies: - "@smithy/is-array-buffer": "npm:^4.2.0" - tslib: "npm:^2.6.2" - checksum: 10/6a81e658554d7123fe089426a840b5e691aee4aa4f0d72b79af19dcf57ccb212dca518acb447714792d48c2dc99bda5e0e823dab05e450ee2393146706d476f9 - languageName: node - linkType: hard - -"@smithy/util-config-provider@npm:^4.2.0": - version: 4.2.0 - resolution: "@smithy/util-config-provider@npm:4.2.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10/d65f36401c7a085660cf201a1b317d271e390258b619179fff88248c2db64fc35e6c62fe055f1e55be8935b06eb600379824dabf634fb26d528f54fe60c9d77b - languageName: node - linkType: hard - -"@smithy/util-defaults-mode-browser@npm:^4.3.29": - version: 4.3.30 - resolution: "@smithy/util-defaults-mode-browser@npm:4.3.30" - dependencies: - "@smithy/property-provider": "npm:^4.2.8" - "@smithy/smithy-client": "npm:^4.11.3" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/87ee6a471a0ee56542f749ea5d315089254ce5f427c7b13b08612591c0c5341f01bb0d1faec1b570a7a7e53fe70ac4273b5c672de1c22dc291e153505442797c - languageName: node - linkType: hard - -"@smithy/util-defaults-mode-node@npm:^4.2.32": - version: 4.2.33 - resolution: "@smithy/util-defaults-mode-node@npm:4.2.33" - dependencies: - "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/credential-provider-imds": "npm:^4.2.8" - "@smithy/node-config-provider": "npm:^4.3.8" - "@smithy/property-provider": "npm:^4.2.8" - "@smithy/smithy-client": "npm:^4.11.3" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/e2e3f0b3d743981c297b9f03e8fa82abf751b6bae7186211b6e8f36b2baeb7c45cdd10b78f0d491e89386db14e1f6d6ff305c0fe6f817f52162a07863da0e36b - languageName: node - linkType: hard - -"@smithy/util-endpoints@npm:^3.2.8": - version: 3.2.8 - resolution: "@smithy/util-endpoints@npm:3.2.8" - dependencies: - "@smithy/node-config-provider": "npm:^4.3.8" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/65ea9b1d5abaa944290d6cc4106f74909dafb832616187c17b6c6705f4cb3aa9ea33068595cf161418020a01724716e3c3e1534e78983e92a656f3b85cac02bf - languageName: node - linkType: hard - -"@smithy/util-hex-encoding@npm:^4.2.0": - version: 4.2.0 - resolution: "@smithy/util-hex-encoding@npm:4.2.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10/478773d73690e39167b67481116c4fd47cecfc97c3a935d88db9271fb0718627bec1cbc143efbf0cd49d1ac417bde7e76aa74139ea07e365b51e66797f63a45d - languageName: node - linkType: hard - -"@smithy/util-middleware@npm:^4.2.8": - version: 4.2.8 - resolution: "@smithy/util-middleware@npm:4.2.8" - dependencies: - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/a675f1968ad4a674cc70833be14e8f0e99b09626db9c5764e1d92c76e663d83ba64af4aac5d03112726436cad045cc817d19a71addc5aca6d363b1964ff51d31 - languageName: node - linkType: hard - -"@smithy/util-retry@npm:^4.2.8": - version: 4.2.8 - resolution: "@smithy/util-retry@npm:4.2.8" - dependencies: - "@smithy/service-error-classification": "npm:^4.2.8" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/c725368bafc63cc54a2fad528d5667998986699ca87c87c30e12354f45008b0664f7d1b2afb0e310190227a1e99aa4c44dcb27e8663431ca3b37659c44ec339b - languageName: node - linkType: hard - -"@smithy/util-stream@npm:^4.5.11, @smithy/util-stream@npm:^4.5.12": - version: 4.5.12 - resolution: "@smithy/util-stream@npm:4.5.12" - dependencies: - "@smithy/fetch-http-handler": "npm:^5.3.9" - "@smithy/node-http-handler": "npm:^4.4.10" - "@smithy/types": "npm:^4.12.0" - "@smithy/util-base64": "npm:^4.3.0" - "@smithy/util-buffer-from": "npm:^4.2.0" - "@smithy/util-hex-encoding": "npm:^4.2.0" - "@smithy/util-utf8": "npm:^4.2.0" - tslib: "npm:^2.6.2" - checksum: 10/6ee2b97d5ca2548e464bd94ea3b68765c4e37a39df6af79c4f2f5b4c5f539e86a0fe6a1ef6bd1f7d97ac6865e2afa3acad213d76881a69808e8aa2d6fccfd9e1 - languageName: node - linkType: hard - -"@smithy/util-uri-escape@npm:^4.2.0": - version: 4.2.0 - resolution: "@smithy/util-uri-escape@npm:4.2.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10/a838a3afe557d7087d4500735c79d5da72e0cd5a08f95d1a1c450ba29d9cd85c950228eedbd9b2494156f4eb8658afb0a9a5bd2df3fc4f297faed886c396242b - languageName: node - linkType: hard - "@smithy/util-utf8@npm:^2.0.0": version: 2.3.0 resolution: "@smithy/util-utf8@npm:2.3.0" @@ -7157,36 +5897,6 @@ __metadata: languageName: node linkType: hard -"@smithy/util-utf8@npm:^4.2.0": - version: 4.2.0 - resolution: "@smithy/util-utf8@npm:4.2.0" - dependencies: - "@smithy/util-buffer-from": "npm:^4.2.0" - tslib: "npm:^2.6.2" - checksum: 10/d49f58fc6681255eecc3dee39c657b80ef8a4c5617e361bdaf6aaa22f02e378622376153cafc9f0655fb80162e88fc98bbf459f8dd5ba6d7c4b9a59e6eaa05f8 - languageName: node - linkType: hard - -"@smithy/util-waiter@npm:^4.2.8": - version: 4.2.8 - resolution: "@smithy/util-waiter@npm:4.2.8" - dependencies: - "@smithy/abort-controller": "npm:^4.2.8" - "@smithy/types": "npm:^4.12.0" - tslib: "npm:^2.6.2" - checksum: 10/d492ed07fc9b1147660d99b142c4db150d730f2155ba3027363894c97c3d6a539cb69ae6952cf25cb5f79b870e4ce13a30d8fcd7346b3a358d223ae1b080188a - languageName: node - linkType: hard - -"@smithy/uuid@npm:^1.1.0": - version: 1.1.0 - resolution: "@smithy/uuid@npm:1.1.0" - dependencies: - tslib: "npm:^2.6.2" - checksum: 10/fe77b1cebbbf2d541ee2f07eec6d4573af16e08dd3228758f59dcbe85a504112cefe81b971818cf39e2e3fa0ed1fcc61d392cddc50fca13d9dc9bd835e366db0 - languageName: node - linkType: hard - "@socket.io/component-emitter@npm:~3.1.0": version: 3.1.2 resolution: "@socket.io/component-emitter@npm:3.1.2" @@ -7230,41 +5940,7 @@ __metadata: languageName: node linkType: hard -"@sveltejs/kit@npm:^2.49.5": - version: 2.49.5 - resolution: "@sveltejs/kit@npm:2.49.5" - dependencies: - "@standard-schema/spec": "npm:^1.0.0" - "@sveltejs/acorn-typescript": "npm:^1.0.5" - "@types/cookie": "npm:^0.6.0" - acorn: "npm:^8.14.1" - cookie: "npm:^0.6.0" - devalue: "npm:^5.6.2" - esm-env: "npm:^1.2.2" - kleur: "npm:^4.1.5" - magic-string: "npm:^0.30.5" - mrmime: "npm:^2.0.0" - sade: "npm:^1.8.1" - set-cookie-parser: "npm:^2.6.0" - sirv: "npm:^3.0.0" - peerDependencies: - "@opentelemetry/api": ^1.0.0 - "@sveltejs/vite-plugin-svelte": ^3.0.0 || ^4.0.0-next.1 || ^5.0.0 || ^6.0.0-next.0 - svelte: ^4.0.0 || ^5.0.0-next.0 - typescript: ^5.3.3 - vite: ^5.0.3 || ^6.0.0 || ^7.0.0-beta.0 - peerDependenciesMeta: - "@opentelemetry/api": - optional: true - typescript: - optional: true - bin: - svelte-kit: svelte-kit.js - checksum: 10/592f47d7c66dc1a66bde6551813a02d653e9bcbcaa533130c9a010b053b83420857c0093a16c3f255ad80e80922d486c0fb42f96803f73f9bc83bc76f3d17a88 - languageName: node - linkType: hard - -"@sveltejs/kit@npm:^2.60.1": +"@sveltejs/kit@npm:^2.49.5, @sveltejs/kit@npm:^2.60.1": version: 2.60.1 resolution: "@sveltejs/kit@npm:2.60.1" dependencies: @@ -7328,19 +6004,19 @@ __metadata: linkType: hard "@sveltejs/vite-plugin-svelte@npm:^5.0.0": - version: 5.0.3 - resolution: "@sveltejs/vite-plugin-svelte@npm:5.0.3" + version: 5.1.1 + resolution: "@sveltejs/vite-plugin-svelte@npm:5.1.1" dependencies: "@sveltejs/vite-plugin-svelte-inspector": "npm:^4.0.1" - debug: "npm:^4.4.0" + debug: "npm:^4.4.1" deepmerge: "npm:^4.3.1" kleur: "npm:^4.1.5" - magic-string: "npm:^0.30.15" - vitefu: "npm:^1.0.4" + magic-string: "npm:^0.30.17" + vitefu: "npm:^1.0.6" peerDependencies: svelte: ^5.0.0 vite: ^6.0.0 - checksum: 10/305757f173b5d7c01e2ab1cd1016fc3a78644ca2ccff2bdd670200cab723c68759c0490d915c1606717d749c472e5dd705abbe1863a9d88c5a3643cc4bbccdcd + checksum: 10/81ad848edc69fb55f30cedcf4d928eccc1149bfbb661bad3810884aa56a6d0fb81b01ecc7eb8c5ecc3541594d8fba365f61978abd24970e1d06f0c513a64bda3 languageName: node linkType: hard @@ -7942,10 +6618,10 @@ __metadata: languageName: node linkType: hard -"@transloadit/prettier-bytes@npm:^0.3.4": - version: 0.3.4 - resolution: "@transloadit/prettier-bytes@npm:0.3.4" - checksum: 10/abd6b7a12f57d5db3e744cbfa793e1fbb2aa15943b55901882eed8f32fd95cb72a2805db4e8251862192d8ebaa889a696657f46c9cd41347538d377dea731d58 +"@transloadit/prettier-bytes@npm:^1.1.0": + version: 1.1.0 + resolution: "@transloadit/prettier-bytes@npm:1.1.0" + checksum: 10/93b70acdac989e8bf361424cfa63a0ca33b55b56a96858b1d36eb839f2d3de4175e71f35024f02b6eafe7ad5a585cde836d3365793e481e7ea882cb038ee36e7 languageName: node linkType: hard @@ -8410,12 +7086,13 @@ __metadata: languageName: node linkType: hard -"@types/jsonwebtoken@npm:8.3.7": - version: 8.3.7 - resolution: "@types/jsonwebtoken@npm:8.3.7" +"@types/jsonwebtoken@npm:9.0.10": + version: 9.0.10 + resolution: "@types/jsonwebtoken@npm:9.0.10" dependencies: + "@types/ms": "npm:*" "@types/node": "npm:*" - checksum: 10/646fbcfc2f4979e0ccfffbe0c942afdf9763d40dfc25d1118edf7f507e1061de12e139b35506f4c39fcd8471ebf082068c0d3362660033cd56e3e99be186ea22 + checksum: 10/d7960d995ad815511c7f4e7f09d91522dfe16e7e800cdd6226c8b1b624c534e0f3b8f8f3beb60e3189865269f028002f1a490189beca5afd02bc96ef1d68f21f languageName: node linkType: hard @@ -8463,7 +7140,7 @@ __metadata: languageName: node linkType: hard -"@types/ms@npm:2.1.0": +"@types/ms@npm:*, @types/ms@npm:2.1.0": version: 2.1.0 resolution: "@types/ms@npm:2.1.0" checksum: 10/532d2ebb91937ccc4a89389715e5b47d4c66e708d15942fe6cc25add6dc37b2be058230a327dd50f43f89b8b6d5d52b74685a9e8f70516edfc9bdd6be910eff4 @@ -8488,7 +7165,7 @@ __metadata: languageName: node linkType: hard -"@types/node@npm:*, @types/node@npm:>=10.0.0, @types/node@npm:^20, @types/node@npm:^20.19.0": +"@types/node@npm:*, @types/node@npm:>=10.0.0": version: 20.19.11 resolution: "@types/node@npm:20.19.11" dependencies: @@ -8497,6 +7174,15 @@ __metadata: languageName: node linkType: hard +"@types/node@npm:20.19.41, @types/node@npm:^20": + version: 20.19.41 + resolution: "@types/node@npm:20.19.41" + dependencies: + undici-types: "npm:~6.21.0" + checksum: 10/5eb38cabe687130093681fe35e2ee2230c0717ee44a784881229c8ea9ecfb3626be87edb3940c9b60886dc93b5cb5c66a58a4ff44f1de3936e6af92b65a029b2 + languageName: node + linkType: hard + "@types/node@npm:^12.7.1": version: 12.20.55 resolution: "@types/node@npm:12.20.55" @@ -8857,12 +7543,12 @@ __metadata: "@types/eslint": "npm:9.6.1" "@types/express-session": "npm:1.19.0" "@types/http-proxy": "npm:1.17.17" - "@types/jsonwebtoken": "npm:8.3.7" + "@types/jsonwebtoken": "npm:9.0.10" "@types/lodash": "npm:4.17.24" "@types/mime-types": "npm:3.0.1" "@types/morgan": "npm:1.7.37" "@types/ms": "npm:2.1.0" - "@types/node": "npm:^20.19.0" + "@types/node": "npm:20.19.41" "@types/node-schedule": "npm:2.1.8" "@types/request": "npm:2.48.13" "@types/serialize-javascript": "npm:5.0.4" @@ -8952,7 +7638,7 @@ __metadata: version: 0.0.0-use.local resolution: "@uppy/compressor@workspace:packages/@uppy/compressor" dependencies: - "@transloadit/prettier-bytes": "npm:^0.3.4" + "@transloadit/prettier-bytes": "npm:^1.1.0" "@uppy/utils": "workspace:^" compressorjs: "npm:^1.3.0" jsdom: "npm:^26.1.0" @@ -8969,7 +7655,7 @@ __metadata: version: 0.0.0-use.local resolution: "@uppy/core@workspace:packages/@uppy/core" dependencies: - "@transloadit/prettier-bytes": "npm:^0.3.4" + "@transloadit/prettier-bytes": "npm:^1.1.0" "@types/deep-freeze": "npm:^0" "@uppy/store-default": "workspace:^" "@uppy/utils": "workspace:^" @@ -8993,7 +7679,7 @@ __metadata: version: 0.0.0-use.local resolution: "@uppy/dashboard@workspace:packages/@uppy/dashboard" dependencies: - "@transloadit/prettier-bytes": "npm:^0.3.4" + "@transloadit/prettier-bytes": "npm:^1.1.0" "@uppy/core": "workspace:^" "@uppy/dropbox": "workspace:^" "@uppy/google-drive": "workspace:^" @@ -9327,7 +8013,7 @@ __metadata: version: 0.0.0-use.local resolution: "@uppy/status-bar@workspace:packages/@uppy/status-bar" dependencies: - "@transloadit/prettier-bytes": "npm:^0.3.4" + "@transloadit/prettier-bytes": "npm:^1.1.0" "@uppy/utils": "workspace:^" classnames: "npm:^2.5.1" cssnano: "npm:^7.0.7" @@ -10358,7 +9044,7 @@ __metadata: languageName: node linkType: hard -"aria-query@npm:^5.0.0, aria-query@npm:^5.3.1": +"aria-query@npm:^5.0.0": version: 5.3.2 resolution: "aria-query@npm:5.3.2" checksum: 10/b2fe9bc98bd401bc322ccb99717c1ae2aaf53ea0d468d6e7aebdc02fac736e4a99b46971ee05b783b08ade23c675b2d8b60e4a1222a95f6e27bc4d2a0bfdcc03 @@ -12254,13 +10940,6 @@ __metadata: languageName: node linkType: hard -"devalue@npm:^5.6.2": - version: 5.6.2 - resolution: "devalue@npm:5.6.2" - checksum: 10/734b57d917e45b534007e3b5055c031e4e3fcf3c3a44e1b4177e998f30e077e4d280b59abe0cc0ca9055a18e90266e31f578129e83e105e63e9680998a3c2a8a - languageName: node - linkType: hard - "devalue@npm:^5.8.1": version: 5.8.1 resolution: "devalue@npm:5.8.1" @@ -13060,15 +11739,6 @@ __metadata: languageName: node linkType: hard -"esrap@npm:^1.4.6": - version: 1.4.6 - resolution: "esrap@npm:1.4.6" - dependencies: - "@jridgewell/sourcemap-codec": "npm:^1.4.15" - checksum: 10/0fc113a930512af470cf9ed2d49950f3b4b3456ab1f3cce56f69322a9815fbe1fbe33713dd5bafff6ed957767afce49d427043d680768727c6ca1e2c11692e5f - languageName: node - linkType: hard - "esrap@npm:^2.2.4": version: 2.2.9 resolution: "esrap@npm:2.2.9" @@ -13752,17 +12422,6 @@ __metadata: languageName: node linkType: hard -"fast-xml-parser@npm:5.3.4": - version: 5.3.4 - resolution: "fast-xml-parser@npm:5.3.4" - dependencies: - strnum: "npm:^2.1.0" - bin: - fxparser: src/cli/cli.js - checksum: 10/0d7e6872fed7c3065641400d43cdf24c03177f05c343bfb31df53b79f0900b085c103f647852d0b00693125aa3f0e9d8b8cfc4273b168d4da0308f857dafe830 - languageName: node - linkType: hard - "fast-xml-parser@npm:5.7.3": version: 5.7.3 resolution: "fast-xml-parser@npm:5.7.3" @@ -15041,9 +13700,9 @@ __metadata: linkType: hard "import-meta-resolve@npm:^4.1.0": - version: 4.1.0 - resolution: "import-meta-resolve@npm:4.1.0" - checksum: 10/40162f67eb406c8d5d49266206ef12ff07b54f5fad8cfd806db9efe3a055958e9969be51d6efaf82e34b8bea6758113dcc17bb79ff148292a4badcabc3472f22 + version: 4.2.0 + resolution: "import-meta-resolve@npm:4.2.0" + checksum: 10/3499ee8b7eddb79be77067b368bcdf39e6f144306dea4686d08071ae7e65a2e3bdca3f98f2a0f4babdcd4ba9d9e7d379ae7e27c4b9bf8b08c1e812a28c674bf3 languageName: node linkType: hard @@ -16972,7 +15631,7 @@ __metadata: languageName: node linkType: hard -"magic-string@npm:0.30.17, magic-string@npm:^0.30.11, magic-string@npm:^0.30.15, magic-string@npm:^0.30.17, magic-string@npm:^0.30.5": +"magic-string@npm:0.30.17, magic-string@npm:^0.30.11, magic-string@npm:^0.30.17, magic-string@npm:^0.30.5": version: 0.30.17 resolution: "magic-string@npm:0.30.17" dependencies: @@ -20559,7 +19218,7 @@ __metadata: languageName: node linkType: hard -"rollup@npm:^4.24.0, rollup@npm:^4.30.1, rollup@npm:^4.34.9, rollup@npm:^4.43.0": +"rollup@npm:^4.24.0, rollup@npm:^4.30.1, rollup@npm:^4.43.0": version: 4.50.1 resolution: "rollup@npm:4.50.1" dependencies: @@ -20637,6 +19296,96 @@ __metadata: languageName: node linkType: hard +"rollup@npm:^4.34.9": + version: 4.60.4 + resolution: "rollup@npm:4.60.4" + dependencies: + "@rollup/rollup-android-arm-eabi": "npm:4.60.4" + "@rollup/rollup-android-arm64": "npm:4.60.4" + "@rollup/rollup-darwin-arm64": "npm:4.60.4" + "@rollup/rollup-darwin-x64": "npm:4.60.4" + "@rollup/rollup-freebsd-arm64": "npm:4.60.4" + "@rollup/rollup-freebsd-x64": "npm:4.60.4" + "@rollup/rollup-linux-arm-gnueabihf": "npm:4.60.4" + "@rollup/rollup-linux-arm-musleabihf": "npm:4.60.4" + "@rollup/rollup-linux-arm64-gnu": "npm:4.60.4" + "@rollup/rollup-linux-arm64-musl": "npm:4.60.4" + "@rollup/rollup-linux-loong64-gnu": "npm:4.60.4" + "@rollup/rollup-linux-loong64-musl": "npm:4.60.4" + "@rollup/rollup-linux-ppc64-gnu": "npm:4.60.4" + "@rollup/rollup-linux-ppc64-musl": "npm:4.60.4" + "@rollup/rollup-linux-riscv64-gnu": "npm:4.60.4" + "@rollup/rollup-linux-riscv64-musl": "npm:4.60.4" + "@rollup/rollup-linux-s390x-gnu": "npm:4.60.4" + "@rollup/rollup-linux-x64-gnu": "npm:4.60.4" + "@rollup/rollup-linux-x64-musl": "npm:4.60.4" + "@rollup/rollup-openbsd-x64": "npm:4.60.4" + "@rollup/rollup-openharmony-arm64": "npm:4.60.4" + "@rollup/rollup-win32-arm64-msvc": "npm:4.60.4" + "@rollup/rollup-win32-ia32-msvc": "npm:4.60.4" + "@rollup/rollup-win32-x64-gnu": "npm:4.60.4" + "@rollup/rollup-win32-x64-msvc": "npm:4.60.4" + "@types/estree": "npm:1.0.8" + fsevents: "npm:~2.3.2" + dependenciesMeta: + "@rollup/rollup-android-arm-eabi": + optional: true + "@rollup/rollup-android-arm64": + optional: true + "@rollup/rollup-darwin-arm64": + optional: true + "@rollup/rollup-darwin-x64": + optional: true + "@rollup/rollup-freebsd-arm64": + optional: true + "@rollup/rollup-freebsd-x64": + optional: true + "@rollup/rollup-linux-arm-gnueabihf": + optional: true + "@rollup/rollup-linux-arm-musleabihf": + optional: true + "@rollup/rollup-linux-arm64-gnu": + optional: true + "@rollup/rollup-linux-arm64-musl": + optional: true + "@rollup/rollup-linux-loong64-gnu": + optional: true + "@rollup/rollup-linux-loong64-musl": + optional: true + "@rollup/rollup-linux-ppc64-gnu": + optional: true + "@rollup/rollup-linux-ppc64-musl": + optional: true + "@rollup/rollup-linux-riscv64-gnu": + optional: true + "@rollup/rollup-linux-riscv64-musl": + optional: true + "@rollup/rollup-linux-s390x-gnu": + optional: true + "@rollup/rollup-linux-x64-gnu": + optional: true + "@rollup/rollup-linux-x64-musl": + optional: true + "@rollup/rollup-openbsd-x64": + optional: true + "@rollup/rollup-openharmony-arm64": + optional: true + "@rollup/rollup-win32-arm64-msvc": + optional: true + "@rollup/rollup-win32-ia32-msvc": + optional: true + "@rollup/rollup-win32-x64-gnu": + optional: true + "@rollup/rollup-win32-x64-msvc": + optional: true + fsevents: + optional: true + bin: + rollup: dist/bin/rollup + checksum: 10/514d970e68f869c1869caca6027e2beff9e41846817c0ce06bd27e9325ac3d0e45c84a45700451e36e48449cf27ce72354db6c7fd108426448806b0e8fc8ec46 + languageName: node + linkType: hard + "router@npm:^2.2.0": version: 2.2.0 resolution: "router@npm:2.2.0" @@ -21893,13 +20642,6 @@ __metadata: languageName: node linkType: hard -"strnum@npm:^2.1.0": - version: 2.1.1 - resolution: "strnum@npm:2.1.1" - checksum: 10/d5fe6e4333cddc17569331048e403e876ffcf629989815f0359b0caf05dae9441b7eef3d7dd07427313ac8b3f05a8f60abc1f61efc15f97245dbc24028362bc9 - languageName: node - linkType: hard - "strnum@npm:^2.2.3, strnum@npm:^2.3.0": version: 2.3.0 resolution: "strnum@npm:2.3.0" @@ -22004,25 +20746,7 @@ __metadata: languageName: node linkType: hard -"svelte-check@npm:^4.0.0": - version: 4.1.6 - resolution: "svelte-check@npm:4.1.6" - dependencies: - "@jridgewell/trace-mapping": "npm:^0.3.25" - chokidar: "npm:^4.0.1" - fdir: "npm:^6.2.0" - picocolors: "npm:^1.0.0" - sade: "npm:^1.7.4" - peerDependencies: - svelte: ^4.0.0 || ^5.0.0-next.0 - typescript: ">=5.0.0" - bin: - svelte-check: bin/svelte-check - checksum: 10/30cf10b2e4487a35b604d7271997323ef47557b7785b82c7e494b8669757dcb681e0c4615a377f103ad56b6732437d948c5277d19960ceeb421dfc740e6863be - languageName: node - linkType: hard - -"svelte-check@npm:^4.4.8": +"svelte-check@npm:^4.0.0, svelte-check@npm:^4.4.8": version: 4.4.8 resolution: "svelte-check@npm:4.4.8" dependencies: @@ -22053,29 +20777,7 @@ __metadata: languageName: node linkType: hard -"svelte@npm:^5.0.0": - version: 5.27.0 - resolution: "svelte@npm:5.27.0" - dependencies: - "@ampproject/remapping": "npm:^2.3.0" - "@jridgewell/sourcemap-codec": "npm:^1.5.0" - "@sveltejs/acorn-typescript": "npm:^1.0.5" - "@types/estree": "npm:^1.0.5" - acorn: "npm:^8.12.1" - aria-query: "npm:^5.3.1" - axobject-query: "npm:^4.1.0" - clsx: "npm:^2.1.1" - esm-env: "npm:^1.2.1" - esrap: "npm:^1.4.6" - is-reference: "npm:^3.0.3" - locate-character: "npm:^3.0.0" - magic-string: "npm:^0.30.11" - zimmerframe: "npm:^1.1.2" - checksum: 10/5f2b4825e45fa70e6dd38e8c29c937cbd02b4bc89b307f8a39425df15b4c36ce6503750c016afa18f691c54ac0d39b390561dbfeac0fbcff2a0a01229ee4abe5 - languageName: node - linkType: hard - -"svelte@npm:^5.55.8": +"svelte@npm:^5.0.0, svelte@npm:^5.55.8": version: 5.55.8 resolution: "svelte@npm:5.55.8" dependencies: @@ -22281,7 +20983,7 @@ __metadata: languageName: node linkType: hard -"tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.13, tinyglobby@npm:^0.2.14, tinyglobby@npm:^0.2.15": +"tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.14, tinyglobby@npm:^0.2.15": version: 0.2.15 resolution: "tinyglobby@npm:0.2.15" dependencies: @@ -22291,7 +20993,7 @@ __metadata: languageName: node linkType: hard -"tinyglobby@npm:^0.2.16": +"tinyglobby@npm:^0.2.13, tinyglobby@npm:^0.2.16": version: 0.2.16 resolution: "tinyglobby@npm:0.2.16" dependencies: @@ -23136,7 +21838,7 @@ __metadata: languageName: node linkType: hard -"vite@npm:^5.0.0 || ^6.0.0 || ^7.0.0-0, vite@npm:^7.1.11": +"vite@npm:^5.0.0 || ^6.0.0 || ^7.0.0-0": version: 7.1.11 resolution: "vite@npm:7.1.11" dependencies: @@ -23249,8 +21951,8 @@ __metadata: linkType: hard "vite@npm:^6.2.5, vite@npm:^6.3.6": - version: 6.3.6 - resolution: "vite@npm:6.3.6" + version: 6.4.2 + resolution: "vite@npm:6.4.2" dependencies: esbuild: "npm:^0.25.0" fdir: "npm:^6.4.4" @@ -23299,23 +22001,66 @@ __metadata: optional: true bin: vite: bin/vite.js - checksum: 10/8b8b6fe12318ca457396bf2053df7056cf4810f1d4a43b36b6afe59860e32b749c0685a290fe8a973b0d3da179ceec4c30cebbd3c91d0c47fbcf6436b17bdeef + checksum: 10/d6622843fb367065c2459c8d972d1f0d302844bdb329602c4bfb3c149607744f74fbfcbb3d170a4f58fa494012ad74a88e3a63df236845840d50475b89786796 languageName: node linkType: hard -"vitefu@npm:^1.0.4": - version: 1.1.1 - resolution: "vitefu@npm:1.1.1" +"vite@npm:^7.1.11": + version: 7.3.3 + resolution: "vite@npm:7.3.3" + dependencies: + esbuild: "npm:^0.27.0" + fdir: "npm:^6.5.0" + fsevents: "npm:~2.3.3" + picomatch: "npm:^4.0.3" + postcss: "npm:^8.5.6" + rollup: "npm:^4.43.0" + tinyglobby: "npm:^0.2.15" peerDependencies: - vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0 - peerDependenciesMeta: - vite: + "@types/node": ^20.19.0 || >=22.12.0 + jiti: ">=1.21.0" + less: ^4.0.0 + lightningcss: ^1.21.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: ">=0.54.8" + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + dependenciesMeta: + fsevents: optional: true - checksum: 10/bdfb7c009f89c34174636aafb3ff37d909aaac243eaeb291cc3a251ba6fb29264ee7f905d1adce5dcf5b9570f248828cad87f6f6934150086fabeaa771fa51a5 + peerDependenciesMeta: + "@types/node": + optional: true + jiti: + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + bin: + vite: bin/vite.js + checksum: 10/c7fa17bc0aa530313417a28a144edcf910466b936cb192ce2c8cf7d6075e4b8e481b08a55ef71a7486757b03465b054d8c2cb49473d6fc9a0db8ac1dd641edff languageName: node linkType: hard -"vitefu@npm:^1.1.2": +"vitefu@npm:^1.0.6, vitefu@npm:^1.1.2": version: 1.1.3 resolution: "vitefu@npm:1.1.3" peerDependencies: