diff --git a/.github/local-actions/branch-manager/main.js b/.github/local-actions/branch-manager/main.js index 3df59bea2..502df8d42 100644 --- a/.github/local-actions/branch-manager/main.js +++ b/.github/local-actions/branch-manager/main.js @@ -36984,6 +36984,9 @@ var require_connect2 = __commonJS({ }; }; function onConnectTimeout(socket, opts) { + if (socket == null) { + return; + } let message = "Connect Timeout Error"; if (Array.isArray(socket.autoSelectFamilyAttemptedAddresses)) { message += ` (attempted addresses: ${socket.autoSelectFamilyAttemptedAddresses.join(", ")},`; @@ -37915,6 +37918,7 @@ var require_webidl2 = __commonJS({ ""(exports, module) { "use strict"; var { types: types4, inspect } = __require("node:util"); + var { markAsUncloneable } = __require("node:worker_threads"); var { toUSVString } = require_util8(); var webidl = {}; webidl.converters = {}; @@ -37989,6 +37993,8 @@ var require_webidl2 = __commonJS({ } } }; + webidl.util.markAsUncloneable = markAsUncloneable || (() => { + }); webidl.util.ConvertToInt = function(V, bitLength, signedness, opts) { let upperBound; let lowerBound; @@ -39272,6 +39278,7 @@ var require_formdata2 = __commonJS({ var File = globalThis.File ?? NativeFile; var FormData = class { constructor(form) { + webidl.util.markAsUncloneable(this); if (form !== void 0) { throw webidl.errors.conversionFailed({ prefix: "FormData constructor", @@ -43238,7 +43245,7 @@ var require_retry_handler = __commonJS({ ); return false; } - const { start, size, end = size } = contentRange; + const { start, size, end = size - 1 } = contentRange; assert(this.start === start, "content-range mismatch"); assert(this.end == null || this.end === end, "content-range mismatch"); this.resume = resume; @@ -43255,7 +43262,7 @@ var require_retry_handler = __commonJS({ statusMessage ); } - const { start, size, end = size } = range; + const { start, size, end = size - 1 } = range; assert( start != null && Number.isFinite(start), "content-range mismatch" @@ -43266,7 +43273,7 @@ var require_retry_handler = __commonJS({ } if (this.end == null) { const contentLength = headers["content-length"]; - this.end = contentLength != null ? Number(contentLength) : null; + this.end = contentLength != null ? Number(contentLength) - 1 : null; } assert(Number.isFinite(this.start)); assert( @@ -45760,6 +45767,7 @@ var require_headers2 = __commonJS({ #guard; #headersList; constructor(init = void 0) { + webidl.util.markAsUncloneable(this); if (init === kConstruct) { return; } @@ -46021,6 +46029,7 @@ var require_response2 = __commonJS({ return responseObject; } constructor(body = null, init = {}) { + webidl.util.markAsUncloneable(this); if (body === kConstruct) { return; } @@ -46438,6 +46447,7 @@ var require_request4 = __commonJS({ var Request = class { constructor(input, init = {}) { var _a2, _b; + webidl.util.markAsUncloneable(this); if (input === kConstruct) { return; } @@ -47962,7 +47972,7 @@ var require_fetch2 = __commonJS({ const decoders = []; const willFollow = location && request2.redirect === "follow" && redirectStatusSet.has(status); if (codings.length !== 0 && request2.method !== "HEAD" && request2.method !== "CONNECT" && !nullBodyStatus.includes(status) && !willFollow) { - for (let i = 0; i < codings.length; ++i) { + for (let i = codings.length - 1; i >= 0; --i) { const coding = codings[i]; if (coding === "x-gzip" || coding === "gzip") { decoders.push(zlib.createGunzip({ @@ -48898,6 +48908,7 @@ var require_cache2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); this.#relevantRequestResponseList = arguments[1]; } async match(request2, options = {}) { @@ -49402,6 +49413,7 @@ var require_cachestorage2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); } async match(request2, options = {}) { webidl.brandCheck(this, CacheStorage); @@ -49914,6 +49926,7 @@ var require_events2 = __commonJS({ constructor(type, eventInitDict = {}) { if (type === kConstruct) { super(arguments[1], arguments[2]); + webidl.util.markAsUncloneable(this); return; } const prefix = "MessageEvent constructor"; @@ -49922,6 +49935,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.MessageEventInit(eventInitDict, prefix, "eventInitDict"); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get data() { webidl.brandCheck(this, MessageEvent); @@ -49981,6 +49995,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.CloseEventInit(eventInitDict); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get wasClean() { webidl.brandCheck(this, CloseEvent); @@ -50001,6 +50016,7 @@ var require_events2 = __commonJS({ const prefix = "ErrorEvent constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); super(type, eventInitDict); + webidl.util.markAsUncloneable(this); type = webidl.converters.DOMString(type, prefix, "type"); eventInitDict = webidl.converters.ErrorEventInit(eventInitDict ?? {}); this.#eventInit = eventInitDict; @@ -51103,6 +51119,7 @@ var require_websocket2 = __commonJS({ #sendQueue; constructor(url, protocols = []) { super(); + webidl.util.markAsUncloneable(this); const prefix = "WebSocket constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); const options = webidl.converters["DOMString or sequence or WebSocketInit"](protocols, prefix, "options"); @@ -51687,6 +51704,7 @@ var require_eventsource = __commonJS({ #state; constructor(url, eventSourceInitDict = {}) { super(); + webidl.util.markAsUncloneable(this); const prefix = "EventSource constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); if (!experimentalWarned) { @@ -57701,7 +57719,7 @@ function usePrefix({ status = "idle", theme }) { return spinner.frames[tick]; } const iconName = status === "loading" ? "idle" : status; - return typeof prefix === "string" ? prefix : prefix[iconName]; + return typeof prefix === "string" ? prefix : prefix[iconName] ?? prefix["idle"]; } // @@ -58395,7 +58413,7 @@ ${page}${helpTipBottom}${choiceDescription}${error2}${import_ansi_escapes2.defau var import_external_editor = __toESM(require_main2(), 1); import { AsyncResource as AsyncResource4 } from "node:async_hooks"; var esm_default3 = createPrompt((config, done) => { - const { waitForUseInput = true, postfix = ".txt", validate = () => true } = config; + const { waitForUseInput = true, file: { postfix = config.postfix ?? ".txt", ...fileProps } = {}, validate = () => true } = config; const theme = makeTheme(config.theme); const [status, setStatus] = useState("idle"); const [value, setValue] = useState(config.default || ""); @@ -58421,7 +58439,10 @@ var esm_default3 = createPrompt((config, done) => { } } }); - (0, import_external_editor.editAsync)(value, (error3, answer) => void editCallback(error3, answer), { postfix }); + (0, import_external_editor.editAsync)(value, (error3, answer) => void editCallback(error3, answer), { + postfix, + ...fileProps + }); } useEffect((rl) => { if (!waitForUseInput) { diff --git a/.github/local-actions/labels-sync/main.js b/.github/local-actions/labels-sync/main.js index b14198bbe..02f8d783a 100644 --- a/.github/local-actions/labels-sync/main.js +++ b/.github/local-actions/labels-sync/main.js @@ -21507,6 +21507,9 @@ var require_connect2 = __commonJS({ }; }; function onConnectTimeout(socket, opts) { + if (socket == null) { + return; + } let message = "Connect Timeout Error"; if (Array.isArray(socket.autoSelectFamilyAttemptedAddresses)) { message += ` (attempted addresses: ${socket.autoSelectFamilyAttemptedAddresses.join(", ")},`; @@ -22438,6 +22441,7 @@ var require_webidl2 = __commonJS({ ""(exports, module) { "use strict"; var { types, inspect } = __require("node:util"); + var { markAsUncloneable } = __require("node:worker_threads"); var { toUSVString } = require_util8(); var webidl = {}; webidl.converters = {}; @@ -22512,6 +22516,8 @@ var require_webidl2 = __commonJS({ } } }; + webidl.util.markAsUncloneable = markAsUncloneable || (() => { + }); webidl.util.ConvertToInt = function(V, bitLength, signedness, opts) { let upperBound; let lowerBound; @@ -23795,6 +23801,7 @@ var require_formdata2 = __commonJS({ var File = globalThis.File ?? NativeFile; var FormData = class { constructor(form) { + webidl.util.markAsUncloneable(this); if (form !== void 0) { throw webidl.errors.conversionFailed({ prefix: "FormData constructor", @@ -27761,7 +27768,7 @@ var require_retry_handler = __commonJS({ ); return false; } - const { start, size, end = size } = contentRange; + const { start, size, end = size - 1 } = contentRange; assert(this.start === start, "content-range mismatch"); assert(this.end == null || this.end === end, "content-range mismatch"); this.resume = resume; @@ -27778,7 +27785,7 @@ var require_retry_handler = __commonJS({ statusMessage ); } - const { start, size, end = size } = range; + const { start, size, end = size - 1 } = range; assert( start != null && Number.isFinite(start), "content-range mismatch" @@ -27789,7 +27796,7 @@ var require_retry_handler = __commonJS({ } if (this.end == null) { const contentLength = headers["content-length"]; - this.end = contentLength != null ? Number(contentLength) : null; + this.end = contentLength != null ? Number(contentLength) - 1 : null; } assert(Number.isFinite(this.start)); assert( @@ -30283,6 +30290,7 @@ var require_headers2 = __commonJS({ #guard; #headersList; constructor(init = void 0) { + webidl.util.markAsUncloneable(this); if (init === kConstruct) { return; } @@ -30544,6 +30552,7 @@ var require_response2 = __commonJS({ return responseObject; } constructor(body = null, init = {}) { + webidl.util.markAsUncloneable(this); if (body === kConstruct) { return; } @@ -30961,6 +30970,7 @@ var require_request4 = __commonJS({ var Request = class { constructor(input, init = {}) { var _a2, _b; + webidl.util.markAsUncloneable(this); if (input === kConstruct) { return; } @@ -32485,7 +32495,7 @@ var require_fetch2 = __commonJS({ const decoders = []; const willFollow = location && request2.redirect === "follow" && redirectStatusSet.has(status); if (codings.length !== 0 && request2.method !== "HEAD" && request2.method !== "CONNECT" && !nullBodyStatus.includes(status) && !willFollow) { - for (let i = 0; i < codings.length; ++i) { + for (let i = codings.length - 1; i >= 0; --i) { const coding = codings[i]; if (coding === "x-gzip" || coding === "gzip") { decoders.push(zlib.createGunzip({ @@ -33421,6 +33431,7 @@ var require_cache2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); this.#relevantRequestResponseList = arguments[1]; } async match(request2, options = {}) { @@ -33925,6 +33936,7 @@ var require_cachestorage2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); } async match(request2, options = {}) { webidl.brandCheck(this, CacheStorage); @@ -34437,6 +34449,7 @@ var require_events2 = __commonJS({ constructor(type, eventInitDict = {}) { if (type === kConstruct) { super(arguments[1], arguments[2]); + webidl.util.markAsUncloneable(this); return; } const prefix = "MessageEvent constructor"; @@ -34445,6 +34458,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.MessageEventInit(eventInitDict, prefix, "eventInitDict"); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get data() { webidl.brandCheck(this, MessageEvent); @@ -34504,6 +34518,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.CloseEventInit(eventInitDict); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get wasClean() { webidl.brandCheck(this, CloseEvent); @@ -34524,6 +34539,7 @@ var require_events2 = __commonJS({ const prefix = "ErrorEvent constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); super(type, eventInitDict); + webidl.util.markAsUncloneable(this); type = webidl.converters.DOMString(type, prefix, "type"); eventInitDict = webidl.converters.ErrorEventInit(eventInitDict ?? {}); this.#eventInit = eventInitDict; @@ -35626,6 +35642,7 @@ var require_websocket2 = __commonJS({ #sendQueue; constructor(url, protocols = []) { super(); + webidl.util.markAsUncloneable(this); const prefix = "WebSocket constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); const options = webidl.converters["DOMString or sequence or WebSocketInit"](protocols, prefix, "options"); @@ -36210,6 +36227,7 @@ var require_eventsource = __commonJS({ #state; constructor(url, eventSourceInitDict = {}) { super(); + webidl.util.markAsUncloneable(this); const prefix = "EventSource constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); if (!experimentalWarned) { diff --git a/.github/local-actions/lock-closed/main.js b/.github/local-actions/lock-closed/main.js index c3a0eff74..e63c36ecb 100644 --- a/.github/local-actions/lock-closed/main.js +++ b/.github/local-actions/lock-closed/main.js @@ -21507,6 +21507,9 @@ var require_connect2 = __commonJS({ }; }; function onConnectTimeout(socket, opts) { + if (socket == null) { + return; + } let message = "Connect Timeout Error"; if (Array.isArray(socket.autoSelectFamilyAttemptedAddresses)) { message += ` (attempted addresses: ${socket.autoSelectFamilyAttemptedAddresses.join(", ")},`; @@ -22438,6 +22441,7 @@ var require_webidl2 = __commonJS({ ""(exports, module) { "use strict"; var { types, inspect } = __require("node:util"); + var { markAsUncloneable } = __require("node:worker_threads"); var { toUSVString } = require_util8(); var webidl = {}; webidl.converters = {}; @@ -22512,6 +22516,8 @@ var require_webidl2 = __commonJS({ } } }; + webidl.util.markAsUncloneable = markAsUncloneable || (() => { + }); webidl.util.ConvertToInt = function(V, bitLength, signedness, opts) { let upperBound; let lowerBound; @@ -23795,6 +23801,7 @@ var require_formdata2 = __commonJS({ var File = globalThis.File ?? NativeFile; var FormData = class { constructor(form) { + webidl.util.markAsUncloneable(this); if (form !== void 0) { throw webidl.errors.conversionFailed({ prefix: "FormData constructor", @@ -27761,7 +27768,7 @@ var require_retry_handler = __commonJS({ ); return false; } - const { start, size, end = size } = contentRange; + const { start, size, end = size - 1 } = contentRange; assert(this.start === start, "content-range mismatch"); assert(this.end == null || this.end === end, "content-range mismatch"); this.resume = resume; @@ -27778,7 +27785,7 @@ var require_retry_handler = __commonJS({ statusMessage ); } - const { start, size, end = size } = range; + const { start, size, end = size - 1 } = range; assert( start != null && Number.isFinite(start), "content-range mismatch" @@ -27789,7 +27796,7 @@ var require_retry_handler = __commonJS({ } if (this.end == null) { const contentLength = headers["content-length"]; - this.end = contentLength != null ? Number(contentLength) : null; + this.end = contentLength != null ? Number(contentLength) - 1 : null; } assert(Number.isFinite(this.start)); assert( @@ -30283,6 +30290,7 @@ var require_headers2 = __commonJS({ #guard; #headersList; constructor(init = void 0) { + webidl.util.markAsUncloneable(this); if (init === kConstruct) { return; } @@ -30544,6 +30552,7 @@ var require_response2 = __commonJS({ return responseObject; } constructor(body = null, init = {}) { + webidl.util.markAsUncloneable(this); if (body === kConstruct) { return; } @@ -30961,6 +30970,7 @@ var require_request4 = __commonJS({ var Request = class { constructor(input, init = {}) { var _a2, _b; + webidl.util.markAsUncloneable(this); if (input === kConstruct) { return; } @@ -32485,7 +32495,7 @@ var require_fetch2 = __commonJS({ const decoders = []; const willFollow = location && request2.redirect === "follow" && redirectStatusSet.has(status); if (codings.length !== 0 && request2.method !== "HEAD" && request2.method !== "CONNECT" && !nullBodyStatus.includes(status) && !willFollow) { - for (let i = 0; i < codings.length; ++i) { + for (let i = codings.length - 1; i >= 0; --i) { const coding = codings[i]; if (coding === "x-gzip" || coding === "gzip") { decoders.push(zlib.createGunzip({ @@ -33421,6 +33431,7 @@ var require_cache2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); this.#relevantRequestResponseList = arguments[1]; } async match(request2, options = {}) { @@ -33925,6 +33936,7 @@ var require_cachestorage2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); } async match(request2, options = {}) { webidl.brandCheck(this, CacheStorage); @@ -34437,6 +34449,7 @@ var require_events2 = __commonJS({ constructor(type, eventInitDict = {}) { if (type === kConstruct) { super(arguments[1], arguments[2]); + webidl.util.markAsUncloneable(this); return; } const prefix = "MessageEvent constructor"; @@ -34445,6 +34458,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.MessageEventInit(eventInitDict, prefix, "eventInitDict"); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get data() { webidl.brandCheck(this, MessageEvent); @@ -34504,6 +34518,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.CloseEventInit(eventInitDict); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get wasClean() { webidl.brandCheck(this, CloseEvent); @@ -34524,6 +34539,7 @@ var require_events2 = __commonJS({ const prefix = "ErrorEvent constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); super(type, eventInitDict); + webidl.util.markAsUncloneable(this); type = webidl.converters.DOMString(type, prefix, "type"); eventInitDict = webidl.converters.ErrorEventInit(eventInitDict ?? {}); this.#eventInit = eventInitDict; @@ -35626,6 +35642,7 @@ var require_websocket2 = __commonJS({ #sendQueue; constructor(url, protocols = []) { super(); + webidl.util.markAsUncloneable(this); const prefix = "WebSocket constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); const options = webidl.converters["DOMString or sequence or WebSocketInit"](protocols, prefix, "options"); @@ -36210,6 +36227,7 @@ var require_eventsource = __commonJS({ #state; constructor(url, eventSourceInitDict = {}) { super(); + webidl.util.markAsUncloneable(this); const prefix = "EventSource constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); if (!experimentalWarned) { diff --git a/.github/ng-renovate/package.json b/.github/ng-renovate/package.json index 4a83f8871..128771ded 100644 --- a/.github/ng-renovate/package.json +++ b/.github/ng-renovate/package.json @@ -3,6 +3,6 @@ "packageManager": "yarn@4.5.1", "type": "commonjs", "dependencies": { - "renovate": "39.9.5" + "renovate": "39.12.0" } } diff --git a/.github/ng-renovate/yarn.lock b/.github/ng-renovate/yarn.lock index d1d85098e..3fe25c7fb 100644 --- a/.github/ng-renovate/yarn.lock +++ b/.github/ng-renovate/yarn.lock @@ -85,7 +85,7 @@ __metadata: languageName: node linkType: hard -"@aws-crypto/util@npm:^5.2.0": +"@aws-crypto/util@npm:5.2.0, @aws-crypto/util@npm:^5.2.0": version: 5.2.0 resolution: "@aws-crypto/util@npm:5.2.0" dependencies: @@ -96,856 +96,861 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-codecommit@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/client-codecommit@npm:3.658.1" +"@aws-sdk/client-codecommit@npm:3.687.0": + version: 3.687.0 + resolution: "@aws-sdk/client-codecommit@npm:3.687.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.658.1" - "@aws-sdk/client-sts": "npm:3.658.1" - "@aws-sdk/core": "npm:3.658.1" - "@aws-sdk/credential-provider-node": "npm:3.658.1" - "@aws-sdk/middleware-host-header": "npm:3.654.0" - "@aws-sdk/middleware-logger": "npm:3.654.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.654.0" - "@aws-sdk/middleware-user-agent": "npm:3.654.0" - "@aws-sdk/region-config-resolver": "npm:3.654.0" - "@aws-sdk/types": "npm:3.654.0" - "@aws-sdk/util-endpoints": "npm:3.654.0" - "@aws-sdk/util-user-agent-browser": "npm:3.654.0" - "@aws-sdk/util-user-agent-node": "npm:3.654.0" - "@smithy/config-resolver": "npm:^3.0.8" - "@smithy/core": "npm:^2.4.6" - "@smithy/fetch-http-handler": "npm:^3.2.8" - "@smithy/hash-node": "npm:^3.0.6" - "@smithy/invalid-dependency": "npm:^3.0.6" - "@smithy/middleware-content-length": "npm:^3.0.8" - "@smithy/middleware-endpoint": "npm:^3.1.3" - "@smithy/middleware-retry": "npm:^3.0.21" - "@smithy/middleware-serde": "npm:^3.0.6" - "@smithy/middleware-stack": "npm:^3.0.6" - "@smithy/node-config-provider": "npm:^3.1.7" - "@smithy/node-http-handler": "npm:^3.2.3" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/smithy-client": "npm:^3.3.5" - "@smithy/types": "npm:^3.4.2" - "@smithy/url-parser": "npm:^3.0.6" + "@aws-sdk/client-sso-oidc": "npm:3.687.0" + "@aws-sdk/client-sts": "npm:3.687.0" + "@aws-sdk/core": "npm:3.686.0" + "@aws-sdk/credential-provider-node": "npm:3.687.0" + "@aws-sdk/middleware-host-header": "npm:3.686.0" + "@aws-sdk/middleware-logger": "npm:3.686.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.686.0" + "@aws-sdk/middleware-user-agent": "npm:3.687.0" + "@aws-sdk/region-config-resolver": "npm:3.686.0" + "@aws-sdk/types": "npm:3.686.0" + "@aws-sdk/util-endpoints": "npm:3.686.0" + "@aws-sdk/util-user-agent-browser": "npm:3.686.0" + "@aws-sdk/util-user-agent-node": "npm:3.687.0" + "@smithy/config-resolver": "npm:^3.0.10" + "@smithy/core": "npm:^2.5.1" + "@smithy/fetch-http-handler": "npm:^4.0.0" + "@smithy/hash-node": "npm:^3.0.8" + "@smithy/invalid-dependency": "npm:^3.0.8" + "@smithy/middleware-content-length": "npm:^3.0.10" + "@smithy/middleware-endpoint": "npm:^3.2.1" + "@smithy/middleware-retry": "npm:^3.0.25" + "@smithy/middleware-serde": "npm:^3.0.8" + "@smithy/middleware-stack": "npm:^3.0.8" + "@smithy/node-config-provider": "npm:^3.1.9" + "@smithy/node-http-handler": "npm:^3.2.5" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/smithy-client": "npm:^3.4.2" + "@smithy/types": "npm:^3.6.0" + "@smithy/url-parser": "npm:^3.0.8" "@smithy/util-base64": "npm:^3.0.0" "@smithy/util-body-length-browser": "npm:^3.0.0" "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.21" - "@smithy/util-defaults-mode-node": "npm:^3.0.21" - "@smithy/util-endpoints": "npm:^2.1.2" - "@smithy/util-middleware": "npm:^3.0.6" - "@smithy/util-retry": "npm:^3.0.6" + "@smithy/util-defaults-mode-browser": "npm:^3.0.25" + "@smithy/util-defaults-mode-node": "npm:^3.0.25" + "@smithy/util-endpoints": "npm:^2.1.4" + "@smithy/util-middleware": "npm:^3.0.8" + "@smithy/util-retry": "npm:^3.0.8" "@smithy/util-utf8": "npm:^3.0.0" + "@types/uuid": "npm:^9.0.1" tslib: "npm:^2.6.2" uuid: "npm:^9.0.1" - checksum: 10c0/b2da38c380fc4f8c525c2b7c5fd2d284c2a72fb00aed54bdc4a9960d385c8b5467f13f98abf0b0ed38de8a3ab2c4c35f3ae24e09683a92c6316fca11bd6bac9a + checksum: 10c0/42c6cef942c73d1d5ebc1c35e1f0acb2b224616be86b3122051c90c2c879d960f9c104e746f1217f2de97eb0214279202d7bf78be575503bb0e64db1512c218b languageName: node linkType: hard -"@aws-sdk/client-cognito-identity@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/client-cognito-identity@npm:3.658.1" +"@aws-sdk/client-cognito-identity@npm:3.687.0": + version: 3.687.0 + resolution: "@aws-sdk/client-cognito-identity@npm:3.687.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.658.1" - "@aws-sdk/client-sts": "npm:3.658.1" - "@aws-sdk/core": "npm:3.658.1" - "@aws-sdk/credential-provider-node": "npm:3.658.1" - "@aws-sdk/middleware-host-header": "npm:3.654.0" - "@aws-sdk/middleware-logger": "npm:3.654.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.654.0" - "@aws-sdk/middleware-user-agent": "npm:3.654.0" - "@aws-sdk/region-config-resolver": "npm:3.654.0" - "@aws-sdk/types": "npm:3.654.0" - "@aws-sdk/util-endpoints": "npm:3.654.0" - "@aws-sdk/util-user-agent-browser": "npm:3.654.0" - "@aws-sdk/util-user-agent-node": "npm:3.654.0" - "@smithy/config-resolver": "npm:^3.0.8" - "@smithy/core": "npm:^2.4.6" - "@smithy/fetch-http-handler": "npm:^3.2.8" - "@smithy/hash-node": "npm:^3.0.6" - "@smithy/invalid-dependency": "npm:^3.0.6" - "@smithy/middleware-content-length": "npm:^3.0.8" - "@smithy/middleware-endpoint": "npm:^3.1.3" - "@smithy/middleware-retry": "npm:^3.0.21" - "@smithy/middleware-serde": "npm:^3.0.6" - "@smithy/middleware-stack": "npm:^3.0.6" - "@smithy/node-config-provider": "npm:^3.1.7" - "@smithy/node-http-handler": "npm:^3.2.3" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/smithy-client": "npm:^3.3.5" - "@smithy/types": "npm:^3.4.2" - "@smithy/url-parser": "npm:^3.0.6" + "@aws-sdk/client-sso-oidc": "npm:3.687.0" + "@aws-sdk/client-sts": "npm:3.687.0" + "@aws-sdk/core": "npm:3.686.0" + "@aws-sdk/credential-provider-node": "npm:3.687.0" + "@aws-sdk/middleware-host-header": "npm:3.686.0" + "@aws-sdk/middleware-logger": "npm:3.686.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.686.0" + "@aws-sdk/middleware-user-agent": "npm:3.687.0" + "@aws-sdk/region-config-resolver": "npm:3.686.0" + "@aws-sdk/types": "npm:3.686.0" + "@aws-sdk/util-endpoints": "npm:3.686.0" + "@aws-sdk/util-user-agent-browser": "npm:3.686.0" + "@aws-sdk/util-user-agent-node": "npm:3.687.0" + "@smithy/config-resolver": "npm:^3.0.10" + "@smithy/core": "npm:^2.5.1" + "@smithy/fetch-http-handler": "npm:^4.0.0" + "@smithy/hash-node": "npm:^3.0.8" + "@smithy/invalid-dependency": "npm:^3.0.8" + "@smithy/middleware-content-length": "npm:^3.0.10" + "@smithy/middleware-endpoint": "npm:^3.2.1" + "@smithy/middleware-retry": "npm:^3.0.25" + "@smithy/middleware-serde": "npm:^3.0.8" + "@smithy/middleware-stack": "npm:^3.0.8" + "@smithy/node-config-provider": "npm:^3.1.9" + "@smithy/node-http-handler": "npm:^3.2.5" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/smithy-client": "npm:^3.4.2" + "@smithy/types": "npm:^3.6.0" + "@smithy/url-parser": "npm:^3.0.8" "@smithy/util-base64": "npm:^3.0.0" "@smithy/util-body-length-browser": "npm:^3.0.0" "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.21" - "@smithy/util-defaults-mode-node": "npm:^3.0.21" - "@smithy/util-endpoints": "npm:^2.1.2" - "@smithy/util-middleware": "npm:^3.0.6" - "@smithy/util-retry": "npm:^3.0.6" + "@smithy/util-defaults-mode-browser": "npm:^3.0.25" + "@smithy/util-defaults-mode-node": "npm:^3.0.25" + "@smithy/util-endpoints": "npm:^2.1.4" + "@smithy/util-middleware": "npm:^3.0.8" + "@smithy/util-retry": "npm:^3.0.8" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/3249389b838e56dc1da26df84d72ba5ccf560cf6a534c6a0ea0e05e3e5baf4beed38dcb289baefc9b2f4870d980ada9956b07198f51b9be55eabc5346d22fdf4 + checksum: 10c0/090c1d7dddb34489d6133da3749f52833b81c82222dda82226bbb93b71dfc72cadaff6c51ab3cd6d83ece4d4a86506a9fd2faf265c25fa889cd358f124a08d9b languageName: node linkType: hard -"@aws-sdk/client-ec2@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/client-ec2@npm:3.658.1" +"@aws-sdk/client-ec2@npm:3.687.0": + version: 3.687.0 + resolution: "@aws-sdk/client-ec2@npm:3.687.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.658.1" - "@aws-sdk/client-sts": "npm:3.658.1" - "@aws-sdk/core": "npm:3.658.1" - "@aws-sdk/credential-provider-node": "npm:3.658.1" - "@aws-sdk/middleware-host-header": "npm:3.654.0" - "@aws-sdk/middleware-logger": "npm:3.654.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.654.0" - "@aws-sdk/middleware-sdk-ec2": "npm:3.658.1" - "@aws-sdk/middleware-user-agent": "npm:3.654.0" - "@aws-sdk/region-config-resolver": "npm:3.654.0" - "@aws-sdk/types": "npm:3.654.0" - "@aws-sdk/util-endpoints": "npm:3.654.0" - "@aws-sdk/util-user-agent-browser": "npm:3.654.0" - "@aws-sdk/util-user-agent-node": "npm:3.654.0" - "@smithy/config-resolver": "npm:^3.0.8" - "@smithy/core": "npm:^2.4.6" - "@smithy/fetch-http-handler": "npm:^3.2.8" - "@smithy/hash-node": "npm:^3.0.6" - "@smithy/invalid-dependency": "npm:^3.0.6" - "@smithy/middleware-content-length": "npm:^3.0.8" - "@smithy/middleware-endpoint": "npm:^3.1.3" - "@smithy/middleware-retry": "npm:^3.0.21" - "@smithy/middleware-serde": "npm:^3.0.6" - "@smithy/middleware-stack": "npm:^3.0.6" - "@smithy/node-config-provider": "npm:^3.1.7" - "@smithy/node-http-handler": "npm:^3.2.3" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/smithy-client": "npm:^3.3.5" - "@smithy/types": "npm:^3.4.2" - "@smithy/url-parser": "npm:^3.0.6" + "@aws-sdk/client-sso-oidc": "npm:3.687.0" + "@aws-sdk/client-sts": "npm:3.687.0" + "@aws-sdk/core": "npm:3.686.0" + "@aws-sdk/credential-provider-node": "npm:3.687.0" + "@aws-sdk/middleware-host-header": "npm:3.686.0" + "@aws-sdk/middleware-logger": "npm:3.686.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.686.0" + "@aws-sdk/middleware-sdk-ec2": "npm:3.686.0" + "@aws-sdk/middleware-user-agent": "npm:3.687.0" + "@aws-sdk/region-config-resolver": "npm:3.686.0" + "@aws-sdk/types": "npm:3.686.0" + "@aws-sdk/util-endpoints": "npm:3.686.0" + "@aws-sdk/util-user-agent-browser": "npm:3.686.0" + "@aws-sdk/util-user-agent-node": "npm:3.687.0" + "@smithy/config-resolver": "npm:^3.0.10" + "@smithy/core": "npm:^2.5.1" + "@smithy/fetch-http-handler": "npm:^4.0.0" + "@smithy/hash-node": "npm:^3.0.8" + "@smithy/invalid-dependency": "npm:^3.0.8" + "@smithy/middleware-content-length": "npm:^3.0.10" + "@smithy/middleware-endpoint": "npm:^3.2.1" + "@smithy/middleware-retry": "npm:^3.0.25" + "@smithy/middleware-serde": "npm:^3.0.8" + "@smithy/middleware-stack": "npm:^3.0.8" + "@smithy/node-config-provider": "npm:^3.1.9" + "@smithy/node-http-handler": "npm:^3.2.5" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/smithy-client": "npm:^3.4.2" + "@smithy/types": "npm:^3.6.0" + "@smithy/url-parser": "npm:^3.0.8" "@smithy/util-base64": "npm:^3.0.0" "@smithy/util-body-length-browser": "npm:^3.0.0" "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.21" - "@smithy/util-defaults-mode-node": "npm:^3.0.21" - "@smithy/util-endpoints": "npm:^2.1.2" - "@smithy/util-middleware": "npm:^3.0.6" - "@smithy/util-retry": "npm:^3.0.6" + "@smithy/util-defaults-mode-browser": "npm:^3.0.25" + "@smithy/util-defaults-mode-node": "npm:^3.0.25" + "@smithy/util-endpoints": "npm:^2.1.4" + "@smithy/util-middleware": "npm:^3.0.8" + "@smithy/util-retry": "npm:^3.0.8" "@smithy/util-utf8": "npm:^3.0.0" - "@smithy/util-waiter": "npm:^3.1.5" + "@smithy/util-waiter": "npm:^3.1.7" + "@types/uuid": "npm:^9.0.1" tslib: "npm:^2.6.2" uuid: "npm:^9.0.1" - checksum: 10c0/9fcdde8db652929b5dc2f6b1d9fd38537d928eff08e1be3da24d3e8d52761282641b81e09dea7a4cd976e02dbed05c53769e84f76ab22638abf3dce9dc119e18 + checksum: 10c0/147d0abbf0aaa029e223b0eeb903028a2e363613e84050ae378c58188d4a387526de9d4f2da6b63599ed3c4ce778ed6c7afd33663e5d1eaf6165c6cd1ae73bbf languageName: node linkType: hard -"@aws-sdk/client-ecr@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/client-ecr@npm:3.658.1" +"@aws-sdk/client-ecr@npm:3.687.0": + version: 3.687.0 + resolution: "@aws-sdk/client-ecr@npm:3.687.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.658.1" - "@aws-sdk/client-sts": "npm:3.658.1" - "@aws-sdk/core": "npm:3.658.1" - "@aws-sdk/credential-provider-node": "npm:3.658.1" - "@aws-sdk/middleware-host-header": "npm:3.654.0" - "@aws-sdk/middleware-logger": "npm:3.654.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.654.0" - "@aws-sdk/middleware-user-agent": "npm:3.654.0" - "@aws-sdk/region-config-resolver": "npm:3.654.0" - "@aws-sdk/types": "npm:3.654.0" - "@aws-sdk/util-endpoints": "npm:3.654.0" - "@aws-sdk/util-user-agent-browser": "npm:3.654.0" - "@aws-sdk/util-user-agent-node": "npm:3.654.0" - "@smithy/config-resolver": "npm:^3.0.8" - "@smithy/core": "npm:^2.4.6" - "@smithy/fetch-http-handler": "npm:^3.2.8" - "@smithy/hash-node": "npm:^3.0.6" - "@smithy/invalid-dependency": "npm:^3.0.6" - "@smithy/middleware-content-length": "npm:^3.0.8" - "@smithy/middleware-endpoint": "npm:^3.1.3" - "@smithy/middleware-retry": "npm:^3.0.21" - "@smithy/middleware-serde": "npm:^3.0.6" - "@smithy/middleware-stack": "npm:^3.0.6" - "@smithy/node-config-provider": "npm:^3.1.7" - "@smithy/node-http-handler": "npm:^3.2.3" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/smithy-client": "npm:^3.3.5" - "@smithy/types": "npm:^3.4.2" - "@smithy/url-parser": "npm:^3.0.6" + "@aws-sdk/client-sso-oidc": "npm:3.687.0" + "@aws-sdk/client-sts": "npm:3.687.0" + "@aws-sdk/core": "npm:3.686.0" + "@aws-sdk/credential-provider-node": "npm:3.687.0" + "@aws-sdk/middleware-host-header": "npm:3.686.0" + "@aws-sdk/middleware-logger": "npm:3.686.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.686.0" + "@aws-sdk/middleware-user-agent": "npm:3.687.0" + "@aws-sdk/region-config-resolver": "npm:3.686.0" + "@aws-sdk/types": "npm:3.686.0" + "@aws-sdk/util-endpoints": "npm:3.686.0" + "@aws-sdk/util-user-agent-browser": "npm:3.686.0" + "@aws-sdk/util-user-agent-node": "npm:3.687.0" + "@smithy/config-resolver": "npm:^3.0.10" + "@smithy/core": "npm:^2.5.1" + "@smithy/fetch-http-handler": "npm:^4.0.0" + "@smithy/hash-node": "npm:^3.0.8" + "@smithy/invalid-dependency": "npm:^3.0.8" + "@smithy/middleware-content-length": "npm:^3.0.10" + "@smithy/middleware-endpoint": "npm:^3.2.1" + "@smithy/middleware-retry": "npm:^3.0.25" + "@smithy/middleware-serde": "npm:^3.0.8" + "@smithy/middleware-stack": "npm:^3.0.8" + "@smithy/node-config-provider": "npm:^3.1.9" + "@smithy/node-http-handler": "npm:^3.2.5" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/smithy-client": "npm:^3.4.2" + "@smithy/types": "npm:^3.6.0" + "@smithy/url-parser": "npm:^3.0.8" "@smithy/util-base64": "npm:^3.0.0" "@smithy/util-body-length-browser": "npm:^3.0.0" "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.21" - "@smithy/util-defaults-mode-node": "npm:^3.0.21" - "@smithy/util-endpoints": "npm:^2.1.2" - "@smithy/util-middleware": "npm:^3.0.6" - "@smithy/util-retry": "npm:^3.0.6" + "@smithy/util-defaults-mode-browser": "npm:^3.0.25" + "@smithy/util-defaults-mode-node": "npm:^3.0.25" + "@smithy/util-endpoints": "npm:^2.1.4" + "@smithy/util-middleware": "npm:^3.0.8" + "@smithy/util-retry": "npm:^3.0.8" "@smithy/util-utf8": "npm:^3.0.0" - "@smithy/util-waiter": "npm:^3.1.5" + "@smithy/util-waiter": "npm:^3.1.7" tslib: "npm:^2.6.2" - checksum: 10c0/c979e9ff9082d574e7cb2ea658ddfd4a9d2c810824736772502b081872c9ac1ac4957f97d5a7dabe15ea2e927e9c5aef1efa36bcb978e9996d3ae0a8f86ff918 + checksum: 10c0/7ab7b7aef51c291d873ad8c27c99e3d14ae9d14d4dd901b972bbefe0c0c47a0fa07c0d845eda46c273578bba8cea3001f7b9b1ded7c945878816b522f981590f languageName: node linkType: hard -"@aws-sdk/client-rds@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/client-rds@npm:3.658.1" +"@aws-sdk/client-rds@npm:3.687.0": + version: 3.687.0 + resolution: "@aws-sdk/client-rds@npm:3.687.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.658.1" - "@aws-sdk/client-sts": "npm:3.658.1" - "@aws-sdk/core": "npm:3.658.1" - "@aws-sdk/credential-provider-node": "npm:3.658.1" - "@aws-sdk/middleware-host-header": "npm:3.654.0" - "@aws-sdk/middleware-logger": "npm:3.654.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.654.0" - "@aws-sdk/middleware-sdk-rds": "npm:3.658.1" - "@aws-sdk/middleware-user-agent": "npm:3.654.0" - "@aws-sdk/region-config-resolver": "npm:3.654.0" - "@aws-sdk/types": "npm:3.654.0" - "@aws-sdk/util-endpoints": "npm:3.654.0" - "@aws-sdk/util-user-agent-browser": "npm:3.654.0" - "@aws-sdk/util-user-agent-node": "npm:3.654.0" - "@smithy/config-resolver": "npm:^3.0.8" - "@smithy/core": "npm:^2.4.6" - "@smithy/fetch-http-handler": "npm:^3.2.8" - "@smithy/hash-node": "npm:^3.0.6" - "@smithy/invalid-dependency": "npm:^3.0.6" - "@smithy/middleware-content-length": "npm:^3.0.8" - "@smithy/middleware-endpoint": "npm:^3.1.3" - "@smithy/middleware-retry": "npm:^3.0.21" - "@smithy/middleware-serde": "npm:^3.0.6" - "@smithy/middleware-stack": "npm:^3.0.6" - "@smithy/node-config-provider": "npm:^3.1.7" - "@smithy/node-http-handler": "npm:^3.2.3" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/smithy-client": "npm:^3.3.5" - "@smithy/types": "npm:^3.4.2" - "@smithy/url-parser": "npm:^3.0.6" + "@aws-sdk/client-sso-oidc": "npm:3.687.0" + "@aws-sdk/client-sts": "npm:3.687.0" + "@aws-sdk/core": "npm:3.686.0" + "@aws-sdk/credential-provider-node": "npm:3.687.0" + "@aws-sdk/middleware-host-header": "npm:3.686.0" + "@aws-sdk/middleware-logger": "npm:3.686.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.686.0" + "@aws-sdk/middleware-sdk-rds": "npm:3.686.0" + "@aws-sdk/middleware-user-agent": "npm:3.687.0" + "@aws-sdk/region-config-resolver": "npm:3.686.0" + "@aws-sdk/types": "npm:3.686.0" + "@aws-sdk/util-endpoints": "npm:3.686.0" + "@aws-sdk/util-user-agent-browser": "npm:3.686.0" + "@aws-sdk/util-user-agent-node": "npm:3.687.0" + "@smithy/config-resolver": "npm:^3.0.10" + "@smithy/core": "npm:^2.5.1" + "@smithy/fetch-http-handler": "npm:^4.0.0" + "@smithy/hash-node": "npm:^3.0.8" + "@smithy/invalid-dependency": "npm:^3.0.8" + "@smithy/middleware-content-length": "npm:^3.0.10" + "@smithy/middleware-endpoint": "npm:^3.2.1" + "@smithy/middleware-retry": "npm:^3.0.25" + "@smithy/middleware-serde": "npm:^3.0.8" + "@smithy/middleware-stack": "npm:^3.0.8" + "@smithy/node-config-provider": "npm:^3.1.9" + "@smithy/node-http-handler": "npm:^3.2.5" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/smithy-client": "npm:^3.4.2" + "@smithy/types": "npm:^3.6.0" + "@smithy/url-parser": "npm:^3.0.8" "@smithy/util-base64": "npm:^3.0.0" "@smithy/util-body-length-browser": "npm:^3.0.0" "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.21" - "@smithy/util-defaults-mode-node": "npm:^3.0.21" - "@smithy/util-endpoints": "npm:^2.1.2" - "@smithy/util-middleware": "npm:^3.0.6" - "@smithy/util-retry": "npm:^3.0.6" + "@smithy/util-defaults-mode-browser": "npm:^3.0.25" + "@smithy/util-defaults-mode-node": "npm:^3.0.25" + "@smithy/util-endpoints": "npm:^2.1.4" + "@smithy/util-middleware": "npm:^3.0.8" + "@smithy/util-retry": "npm:^3.0.8" "@smithy/util-utf8": "npm:^3.0.0" - "@smithy/util-waiter": "npm:^3.1.5" + "@smithy/util-waiter": "npm:^3.1.7" tslib: "npm:^2.6.2" - checksum: 10c0/b5ac7a1352d625ba61728cabeee72c293f2d9c0f3e28dd049918add5b7376a94e2bf9564bcfe6555f0611c0bd854f4622ba53b513f2f0cd8000e679e63e01b73 + checksum: 10c0/40e35ea5b0d8ccd69a0bfcda7047c3c4721ec218d97a400394492754b16357b3333fe22a514292126d8e68ea981bc56c4a2ced7a8007a8ea691a13a731b3eef6 languageName: node linkType: hard -"@aws-sdk/client-s3@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/client-s3@npm:3.658.1" +"@aws-sdk/client-s3@npm:3.689.0": + version: 3.689.0 + resolution: "@aws-sdk/client-s3@npm:3.689.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/client-sso-oidc": "npm:3.658.1" - "@aws-sdk/client-sts": "npm:3.658.1" - "@aws-sdk/core": "npm:3.658.1" - "@aws-sdk/credential-provider-node": "npm:3.658.1" - "@aws-sdk/middleware-bucket-endpoint": "npm:3.654.0" - "@aws-sdk/middleware-expect-continue": "npm:3.654.0" - "@aws-sdk/middleware-flexible-checksums": "npm:3.658.1" - "@aws-sdk/middleware-host-header": "npm:3.654.0" - "@aws-sdk/middleware-location-constraint": "npm:3.654.0" - "@aws-sdk/middleware-logger": "npm:3.654.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.654.0" - "@aws-sdk/middleware-sdk-s3": "npm:3.658.1" - "@aws-sdk/middleware-ssec": "npm:3.654.0" - "@aws-sdk/middleware-user-agent": "npm:3.654.0" - "@aws-sdk/region-config-resolver": "npm:3.654.0" - "@aws-sdk/signature-v4-multi-region": "npm:3.658.1" - "@aws-sdk/types": "npm:3.654.0" - "@aws-sdk/util-endpoints": "npm:3.654.0" - "@aws-sdk/util-user-agent-browser": "npm:3.654.0" - "@aws-sdk/util-user-agent-node": "npm:3.654.0" - "@aws-sdk/xml-builder": "npm:3.654.0" - "@smithy/config-resolver": "npm:^3.0.8" - "@smithy/core": "npm:^2.4.6" - "@smithy/eventstream-serde-browser": "npm:^3.0.9" - "@smithy/eventstream-serde-config-resolver": "npm:^3.0.6" - "@smithy/eventstream-serde-node": "npm:^3.0.8" - "@smithy/fetch-http-handler": "npm:^3.2.8" - "@smithy/hash-blob-browser": "npm:^3.1.5" - "@smithy/hash-node": "npm:^3.0.6" - "@smithy/hash-stream-node": "npm:^3.1.5" - "@smithy/invalid-dependency": "npm:^3.0.6" - "@smithy/md5-js": "npm:^3.0.6" - "@smithy/middleware-content-length": "npm:^3.0.8" - "@smithy/middleware-endpoint": "npm:^3.1.3" - "@smithy/middleware-retry": "npm:^3.0.21" - "@smithy/middleware-serde": "npm:^3.0.6" - "@smithy/middleware-stack": "npm:^3.0.6" - "@smithy/node-config-provider": "npm:^3.1.7" - "@smithy/node-http-handler": "npm:^3.2.3" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/smithy-client": "npm:^3.3.5" - "@smithy/types": "npm:^3.4.2" - "@smithy/url-parser": "npm:^3.0.6" + "@aws-sdk/client-sso-oidc": "npm:3.687.0" + "@aws-sdk/client-sts": "npm:3.687.0" + "@aws-sdk/core": "npm:3.686.0" + "@aws-sdk/credential-provider-node": "npm:3.687.0" + "@aws-sdk/middleware-bucket-endpoint": "npm:3.686.0" + "@aws-sdk/middleware-expect-continue": "npm:3.686.0" + "@aws-sdk/middleware-flexible-checksums": "npm:3.689.0" + "@aws-sdk/middleware-host-header": "npm:3.686.0" + "@aws-sdk/middleware-location-constraint": "npm:3.686.0" + "@aws-sdk/middleware-logger": "npm:3.686.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.686.0" + "@aws-sdk/middleware-sdk-s3": "npm:3.687.0" + "@aws-sdk/middleware-ssec": "npm:3.686.0" + "@aws-sdk/middleware-user-agent": "npm:3.687.0" + "@aws-sdk/region-config-resolver": "npm:3.686.0" + "@aws-sdk/signature-v4-multi-region": "npm:3.687.0" + "@aws-sdk/types": "npm:3.686.0" + "@aws-sdk/util-endpoints": "npm:3.686.0" + "@aws-sdk/util-user-agent-browser": "npm:3.686.0" + "@aws-sdk/util-user-agent-node": "npm:3.687.0" + "@aws-sdk/xml-builder": "npm:3.686.0" + "@smithy/config-resolver": "npm:^3.0.10" + "@smithy/core": "npm:^2.5.1" + "@smithy/eventstream-serde-browser": "npm:^3.0.11" + "@smithy/eventstream-serde-config-resolver": "npm:^3.0.8" + "@smithy/eventstream-serde-node": "npm:^3.0.10" + "@smithy/fetch-http-handler": "npm:^4.0.0" + "@smithy/hash-blob-browser": "npm:^3.1.7" + "@smithy/hash-node": "npm:^3.0.8" + "@smithy/hash-stream-node": "npm:^3.1.7" + "@smithy/invalid-dependency": "npm:^3.0.8" + "@smithy/md5-js": "npm:^3.0.8" + "@smithy/middleware-content-length": "npm:^3.0.10" + "@smithy/middleware-endpoint": "npm:^3.2.1" + "@smithy/middleware-retry": "npm:^3.0.25" + "@smithy/middleware-serde": "npm:^3.0.8" + "@smithy/middleware-stack": "npm:^3.0.8" + "@smithy/node-config-provider": "npm:^3.1.9" + "@smithy/node-http-handler": "npm:^3.2.5" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/smithy-client": "npm:^3.4.2" + "@smithy/types": "npm:^3.6.0" + "@smithy/url-parser": "npm:^3.0.8" "@smithy/util-base64": "npm:^3.0.0" "@smithy/util-body-length-browser": "npm:^3.0.0" "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.21" - "@smithy/util-defaults-mode-node": "npm:^3.0.21" - "@smithy/util-endpoints": "npm:^2.1.2" - "@smithy/util-middleware": "npm:^3.0.6" - "@smithy/util-retry": "npm:^3.0.6" - "@smithy/util-stream": "npm:^3.1.8" + "@smithy/util-defaults-mode-browser": "npm:^3.0.25" + "@smithy/util-defaults-mode-node": "npm:^3.0.25" + "@smithy/util-endpoints": "npm:^2.1.4" + "@smithy/util-middleware": "npm:^3.0.8" + "@smithy/util-retry": "npm:^3.0.8" + "@smithy/util-stream": "npm:^3.2.1" "@smithy/util-utf8": "npm:^3.0.0" - "@smithy/util-waiter": "npm:^3.1.5" + "@smithy/util-waiter": "npm:^3.1.7" tslib: "npm:^2.6.2" - checksum: 10c0/861cce9d7c4e2fb210b289cdc6184b7ac12bb57c4266cc57be487e29e18d1df99aa27115affb79c8856182ef05620062437af298883c0ef620c7302932574fd4 + checksum: 10c0/002bd6285b33f2a78789aa83443712be3362b24db4ec592d5f15172186a69e5687a4450fda38c80f5fc7d2b7042515fca0bae60085e30848cc9c76aa418fa165 languageName: node linkType: hard -"@aws-sdk/client-sso-oidc@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/client-sso-oidc@npm:3.658.1" +"@aws-sdk/client-sso-oidc@npm:3.687.0": + version: 3.687.0 + resolution: "@aws-sdk/client-sso-oidc@npm:3.687.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.658.1" - "@aws-sdk/credential-provider-node": "npm:3.658.1" - "@aws-sdk/middleware-host-header": "npm:3.654.0" - "@aws-sdk/middleware-logger": "npm:3.654.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.654.0" - "@aws-sdk/middleware-user-agent": "npm:3.654.0" - "@aws-sdk/region-config-resolver": "npm:3.654.0" - "@aws-sdk/types": "npm:3.654.0" - "@aws-sdk/util-endpoints": "npm:3.654.0" - "@aws-sdk/util-user-agent-browser": "npm:3.654.0" - "@aws-sdk/util-user-agent-node": "npm:3.654.0" - "@smithy/config-resolver": "npm:^3.0.8" - "@smithy/core": "npm:^2.4.6" - "@smithy/fetch-http-handler": "npm:^3.2.8" - "@smithy/hash-node": "npm:^3.0.6" - "@smithy/invalid-dependency": "npm:^3.0.6" - "@smithy/middleware-content-length": "npm:^3.0.8" - "@smithy/middleware-endpoint": "npm:^3.1.3" - "@smithy/middleware-retry": "npm:^3.0.21" - "@smithy/middleware-serde": "npm:^3.0.6" - "@smithy/middleware-stack": "npm:^3.0.6" - "@smithy/node-config-provider": "npm:^3.1.7" - "@smithy/node-http-handler": "npm:^3.2.3" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/smithy-client": "npm:^3.3.5" - "@smithy/types": "npm:^3.4.2" - "@smithy/url-parser": "npm:^3.0.6" + "@aws-sdk/core": "npm:3.686.0" + "@aws-sdk/credential-provider-node": "npm:3.687.0" + "@aws-sdk/middleware-host-header": "npm:3.686.0" + "@aws-sdk/middleware-logger": "npm:3.686.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.686.0" + "@aws-sdk/middleware-user-agent": "npm:3.687.0" + "@aws-sdk/region-config-resolver": "npm:3.686.0" + "@aws-sdk/types": "npm:3.686.0" + "@aws-sdk/util-endpoints": "npm:3.686.0" + "@aws-sdk/util-user-agent-browser": "npm:3.686.0" + "@aws-sdk/util-user-agent-node": "npm:3.687.0" + "@smithy/config-resolver": "npm:^3.0.10" + "@smithy/core": "npm:^2.5.1" + "@smithy/fetch-http-handler": "npm:^4.0.0" + "@smithy/hash-node": "npm:^3.0.8" + "@smithy/invalid-dependency": "npm:^3.0.8" + "@smithy/middleware-content-length": "npm:^3.0.10" + "@smithy/middleware-endpoint": "npm:^3.2.1" + "@smithy/middleware-retry": "npm:^3.0.25" + "@smithy/middleware-serde": "npm:^3.0.8" + "@smithy/middleware-stack": "npm:^3.0.8" + "@smithy/node-config-provider": "npm:^3.1.9" + "@smithy/node-http-handler": "npm:^3.2.5" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/smithy-client": "npm:^3.4.2" + "@smithy/types": "npm:^3.6.0" + "@smithy/url-parser": "npm:^3.0.8" "@smithy/util-base64": "npm:^3.0.0" "@smithy/util-body-length-browser": "npm:^3.0.0" "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.21" - "@smithy/util-defaults-mode-node": "npm:^3.0.21" - "@smithy/util-endpoints": "npm:^2.1.2" - "@smithy/util-middleware": "npm:^3.0.6" - "@smithy/util-retry": "npm:^3.0.6" + "@smithy/util-defaults-mode-browser": "npm:^3.0.25" + "@smithy/util-defaults-mode-node": "npm:^3.0.25" + "@smithy/util-endpoints": "npm:^2.1.4" + "@smithy/util-middleware": "npm:^3.0.8" + "@smithy/util-retry": "npm:^3.0.8" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sts": ^3.658.1 - checksum: 10c0/497e79feb6d8342287ab1a7a08a7c7bd3c953ead8266bf042eaa385f8705f6f30bf0b865c19504cf7fb0db864b3f68b256a07dc86d8bf8b8d7b71628d71633c7 + "@aws-sdk/client-sts": ^3.687.0 + checksum: 10c0/6ade5a931ea7336d85334f10d1897f65e62e1f3af13201036b4022d59639a9bb6a223ad5ca5323b05fc6dca1b22935d31a4ca8fc6b09ab12d56623d496741c80 languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/client-sso@npm:3.658.1" +"@aws-sdk/client-sso@npm:3.687.0": + version: 3.687.0 + resolution: "@aws-sdk/client-sso@npm:3.687.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.658.1" - "@aws-sdk/middleware-host-header": "npm:3.654.0" - "@aws-sdk/middleware-logger": "npm:3.654.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.654.0" - "@aws-sdk/middleware-user-agent": "npm:3.654.0" - "@aws-sdk/region-config-resolver": "npm:3.654.0" - "@aws-sdk/types": "npm:3.654.0" - "@aws-sdk/util-endpoints": "npm:3.654.0" - "@aws-sdk/util-user-agent-browser": "npm:3.654.0" - "@aws-sdk/util-user-agent-node": "npm:3.654.0" - "@smithy/config-resolver": "npm:^3.0.8" - "@smithy/core": "npm:^2.4.6" - "@smithy/fetch-http-handler": "npm:^3.2.8" - "@smithy/hash-node": "npm:^3.0.6" - "@smithy/invalid-dependency": "npm:^3.0.6" - "@smithy/middleware-content-length": "npm:^3.0.8" - "@smithy/middleware-endpoint": "npm:^3.1.3" - "@smithy/middleware-retry": "npm:^3.0.21" - "@smithy/middleware-serde": "npm:^3.0.6" - "@smithy/middleware-stack": "npm:^3.0.6" - "@smithy/node-config-provider": "npm:^3.1.7" - "@smithy/node-http-handler": "npm:^3.2.3" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/smithy-client": "npm:^3.3.5" - "@smithy/types": "npm:^3.4.2" - "@smithy/url-parser": "npm:^3.0.6" + "@aws-sdk/core": "npm:3.686.0" + "@aws-sdk/middleware-host-header": "npm:3.686.0" + "@aws-sdk/middleware-logger": "npm:3.686.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.686.0" + "@aws-sdk/middleware-user-agent": "npm:3.687.0" + "@aws-sdk/region-config-resolver": "npm:3.686.0" + "@aws-sdk/types": "npm:3.686.0" + "@aws-sdk/util-endpoints": "npm:3.686.0" + "@aws-sdk/util-user-agent-browser": "npm:3.686.0" + "@aws-sdk/util-user-agent-node": "npm:3.687.0" + "@smithy/config-resolver": "npm:^3.0.10" + "@smithy/core": "npm:^2.5.1" + "@smithy/fetch-http-handler": "npm:^4.0.0" + "@smithy/hash-node": "npm:^3.0.8" + "@smithy/invalid-dependency": "npm:^3.0.8" + "@smithy/middleware-content-length": "npm:^3.0.10" + "@smithy/middleware-endpoint": "npm:^3.2.1" + "@smithy/middleware-retry": "npm:^3.0.25" + "@smithy/middleware-serde": "npm:^3.0.8" + "@smithy/middleware-stack": "npm:^3.0.8" + "@smithy/node-config-provider": "npm:^3.1.9" + "@smithy/node-http-handler": "npm:^3.2.5" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/smithy-client": "npm:^3.4.2" + "@smithy/types": "npm:^3.6.0" + "@smithy/url-parser": "npm:^3.0.8" "@smithy/util-base64": "npm:^3.0.0" "@smithy/util-body-length-browser": "npm:^3.0.0" "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.21" - "@smithy/util-defaults-mode-node": "npm:^3.0.21" - "@smithy/util-endpoints": "npm:^2.1.2" - "@smithy/util-middleware": "npm:^3.0.6" - "@smithy/util-retry": "npm:^3.0.6" + "@smithy/util-defaults-mode-browser": "npm:^3.0.25" + "@smithy/util-defaults-mode-node": "npm:^3.0.25" + "@smithy/util-endpoints": "npm:^2.1.4" + "@smithy/util-middleware": "npm:^3.0.8" + "@smithy/util-retry": "npm:^3.0.8" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/1059fcc40ec17b622a2755c728bce9dd674177ff58cf0d9ecf04e51e600d2db33eadff74bc96d0d31f7e29dd72d97e5cee819ec89b5280a904cc14fb00ebfa49 + checksum: 10c0/038e81cfcd320b5d4d165b94cb33f1dcee1338fd3b96bf6795168312eb9aae743c77d36765ff17ef66e659975c257aa8f9f15c4ce084fe712402e76c7f396e75 languageName: node linkType: hard -"@aws-sdk/client-sts@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/client-sts@npm:3.658.1" +"@aws-sdk/client-sts@npm:3.687.0": + version: 3.687.0 + resolution: "@aws-sdk/client-sts@npm:3.687.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.658.1" - "@aws-sdk/core": "npm:3.658.1" - "@aws-sdk/credential-provider-node": "npm:3.658.1" - "@aws-sdk/middleware-host-header": "npm:3.654.0" - "@aws-sdk/middleware-logger": "npm:3.654.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.654.0" - "@aws-sdk/middleware-user-agent": "npm:3.654.0" - "@aws-sdk/region-config-resolver": "npm:3.654.0" - "@aws-sdk/types": "npm:3.654.0" - "@aws-sdk/util-endpoints": "npm:3.654.0" - "@aws-sdk/util-user-agent-browser": "npm:3.654.0" - "@aws-sdk/util-user-agent-node": "npm:3.654.0" - "@smithy/config-resolver": "npm:^3.0.8" - "@smithy/core": "npm:^2.4.6" - "@smithy/fetch-http-handler": "npm:^3.2.8" - "@smithy/hash-node": "npm:^3.0.6" - "@smithy/invalid-dependency": "npm:^3.0.6" - "@smithy/middleware-content-length": "npm:^3.0.8" - "@smithy/middleware-endpoint": "npm:^3.1.3" - "@smithy/middleware-retry": "npm:^3.0.21" - "@smithy/middleware-serde": "npm:^3.0.6" - "@smithy/middleware-stack": "npm:^3.0.6" - "@smithy/node-config-provider": "npm:^3.1.7" - "@smithy/node-http-handler": "npm:^3.2.3" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/smithy-client": "npm:^3.3.5" - "@smithy/types": "npm:^3.4.2" - "@smithy/url-parser": "npm:^3.0.6" + "@aws-sdk/client-sso-oidc": "npm:3.687.0" + "@aws-sdk/core": "npm:3.686.0" + "@aws-sdk/credential-provider-node": "npm:3.687.0" + "@aws-sdk/middleware-host-header": "npm:3.686.0" + "@aws-sdk/middleware-logger": "npm:3.686.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.686.0" + "@aws-sdk/middleware-user-agent": "npm:3.687.0" + "@aws-sdk/region-config-resolver": "npm:3.686.0" + "@aws-sdk/types": "npm:3.686.0" + "@aws-sdk/util-endpoints": "npm:3.686.0" + "@aws-sdk/util-user-agent-browser": "npm:3.686.0" + "@aws-sdk/util-user-agent-node": "npm:3.687.0" + "@smithy/config-resolver": "npm:^3.0.10" + "@smithy/core": "npm:^2.5.1" + "@smithy/fetch-http-handler": "npm:^4.0.0" + "@smithy/hash-node": "npm:^3.0.8" + "@smithy/invalid-dependency": "npm:^3.0.8" + "@smithy/middleware-content-length": "npm:^3.0.10" + "@smithy/middleware-endpoint": "npm:^3.2.1" + "@smithy/middleware-retry": "npm:^3.0.25" + "@smithy/middleware-serde": "npm:^3.0.8" + "@smithy/middleware-stack": "npm:^3.0.8" + "@smithy/node-config-provider": "npm:^3.1.9" + "@smithy/node-http-handler": "npm:^3.2.5" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/smithy-client": "npm:^3.4.2" + "@smithy/types": "npm:^3.6.0" + "@smithy/url-parser": "npm:^3.0.8" "@smithy/util-base64": "npm:^3.0.0" "@smithy/util-body-length-browser": "npm:^3.0.0" "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.21" - "@smithy/util-defaults-mode-node": "npm:^3.0.21" - "@smithy/util-endpoints": "npm:^2.1.2" - "@smithy/util-middleware": "npm:^3.0.6" - "@smithy/util-retry": "npm:^3.0.6" + "@smithy/util-defaults-mode-browser": "npm:^3.0.25" + "@smithy/util-defaults-mode-node": "npm:^3.0.25" + "@smithy/util-endpoints": "npm:^2.1.4" + "@smithy/util-middleware": "npm:^3.0.8" + "@smithy/util-retry": "npm:^3.0.8" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/31319cc7a78e9ae559237d232ce1e4ed6f093f70ef25fd578115961851f86a0736b93da960df043ac7e4fce09bdaee0f6b5cc248501c7dd91d6eae3bc7673213 + checksum: 10c0/0ab5005043d2e194cdcdb070b78a9357f155772a9a42f1d0df90d7ec7935f9dce34ec4032974ea07f6fbf11026a1e32d38a496e6234056a298e751a363e7a719 languageName: node linkType: hard -"@aws-sdk/core@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/core@npm:3.658.1" +"@aws-sdk/core@npm:3.686.0": + version: 3.686.0 + resolution: "@aws-sdk/core@npm:3.686.0" dependencies: - "@smithy/core": "npm:^2.4.6" - "@smithy/node-config-provider": "npm:^3.1.7" - "@smithy/property-provider": "npm:^3.1.6" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/signature-v4": "npm:^4.1.4" - "@smithy/smithy-client": "npm:^3.3.5" - "@smithy/types": "npm:^3.4.2" - "@smithy/util-middleware": "npm:^3.0.6" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/core": "npm:^2.5.1" + "@smithy/node-config-provider": "npm:^3.1.9" + "@smithy/property-provider": "npm:^3.1.7" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/signature-v4": "npm:^4.2.0" + "@smithy/smithy-client": "npm:^3.4.2" + "@smithy/types": "npm:^3.6.0" + "@smithy/util-middleware": "npm:^3.0.8" fast-xml-parser: "npm:4.4.1" tslib: "npm:^2.6.2" - checksum: 10c0/d3b4efc79d640c4090bf65dbfc3a5143a393a99851194da7b5d3d580168659d040cb4a01c55e94f7b09c753d52290d3604019d2bb509a52d65222ae065c6f5b6 + checksum: 10c0/989e1cb11e1402c34ce2ce193de4b9100b3b1ffc4c4ff944f933595de8145afba6c7e65ba3c8c53599986d86591512084abd9c1dd636b0225384655c2f97c845 languageName: node linkType: hard -"@aws-sdk/credential-provider-cognito-identity@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.658.1" +"@aws-sdk/credential-provider-cognito-identity@npm:3.687.0": + version: 3.687.0 + resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.687.0" dependencies: - "@aws-sdk/client-cognito-identity": "npm:3.658.1" - "@aws-sdk/types": "npm:3.654.0" - "@smithy/property-provider": "npm:^3.1.6" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/client-cognito-identity": "npm:3.687.0" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/property-provider": "npm:^3.1.7" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" - checksum: 10c0/0d4128c807d760cc04e0a0f8a9d2319444b5efe375af00aa6b1162e4d3b5583d1ee4cd78c26873be4fc8779301cd6ee61342a34ad13f3c881dc4dd1a374e3c11 + checksum: 10c0/75496f6cec5b07e30fa608458a49a6444c8b0920e1f2c064ae70f41f7a1c9de7b74df480292f2aad51bc46abb7d0219d694bbac52e1b88a5b9301437f4d2bbb5 languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:3.654.0": - version: 3.654.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.654.0" +"@aws-sdk/credential-provider-env@npm:3.686.0": + version: 3.686.0 + resolution: "@aws-sdk/credential-provider-env@npm:3.686.0" dependencies: - "@aws-sdk/types": "npm:3.654.0" - "@smithy/property-provider": "npm:^3.1.6" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/core": "npm:3.686.0" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/property-provider": "npm:^3.1.7" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" - checksum: 10c0/2ecce2029c7b304450bd5564cb17934b71140fb8fe57bf990c49047b19c434ce820b6d6e169377029ab3260d0d03af2fa976e7cc157f34e50136b71b6f3543f7 + checksum: 10c0/39487ac057dfebd4cd8f87a5ef2a05ab1e6d220e32724019c31be9542cff0b7aa50a771af038e72b24c5184dfe450f314cc38a724682e6ec6e95a6c3dc3af5c9 languageName: node linkType: hard -"@aws-sdk/credential-provider-http@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/credential-provider-http@npm:3.658.1" +"@aws-sdk/credential-provider-http@npm:3.686.0": + version: 3.686.0 + resolution: "@aws-sdk/credential-provider-http@npm:3.686.0" dependencies: - "@aws-sdk/types": "npm:3.654.0" - "@smithy/fetch-http-handler": "npm:^3.2.8" - "@smithy/node-http-handler": "npm:^3.2.3" - "@smithy/property-provider": "npm:^3.1.6" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/smithy-client": "npm:^3.3.5" - "@smithy/types": "npm:^3.4.2" - "@smithy/util-stream": "npm:^3.1.8" + "@aws-sdk/core": "npm:3.686.0" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/fetch-http-handler": "npm:^4.0.0" + "@smithy/node-http-handler": "npm:^3.2.5" + "@smithy/property-provider": "npm:^3.1.7" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/smithy-client": "npm:^3.4.2" + "@smithy/types": "npm:^3.6.0" + "@smithy/util-stream": "npm:^3.2.1" tslib: "npm:^2.6.2" - checksum: 10c0/0c528a5cc3850d5900d873407d379232fce81ea047c6b6aa2d3cc612555cdd6fa6af40c6bc0efa678738793597a02ea4768663540a3014af955b718ce7e63cd7 + checksum: 10c0/b849af22a819753e292b21d22f7751e5f01ea0ebc1bc27630bcb018fc7583184487fe8ffbc32fccf0b53f1e34751b6a1516e4ece14192da887de662300b2a51a languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/credential-provider-ini@npm:3.658.1" +"@aws-sdk/credential-provider-ini@npm:3.687.0": + version: 3.687.0 + resolution: "@aws-sdk/credential-provider-ini@npm:3.687.0" dependencies: - "@aws-sdk/credential-provider-env": "npm:3.654.0" - "@aws-sdk/credential-provider-http": "npm:3.658.1" - "@aws-sdk/credential-provider-process": "npm:3.654.0" - "@aws-sdk/credential-provider-sso": "npm:3.658.1" - "@aws-sdk/credential-provider-web-identity": "npm:3.654.0" - "@aws-sdk/types": "npm:3.654.0" - "@smithy/credential-provider-imds": "npm:^3.2.3" - "@smithy/property-provider": "npm:^3.1.6" - "@smithy/shared-ini-file-loader": "npm:^3.1.7" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/core": "npm:3.686.0" + "@aws-sdk/credential-provider-env": "npm:3.686.0" + "@aws-sdk/credential-provider-http": "npm:3.686.0" + "@aws-sdk/credential-provider-process": "npm:3.686.0" + "@aws-sdk/credential-provider-sso": "npm:3.687.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.686.0" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/credential-provider-imds": "npm:^3.2.4" + "@smithy/property-provider": "npm:^3.1.7" + "@smithy/shared-ini-file-loader": "npm:^3.1.8" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sts": ^3.658.1 - checksum: 10c0/d6b5dfc89cca394653f9e08128b396a51bc47bc097aa6efe8cb4568fe5c57fb8a530891be03e401b3ddaabf17850850a6d8434a72d8cc0b431cfd85ea63d8f4f - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-node@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/credential-provider-node@npm:3.658.1" - dependencies: - "@aws-sdk/credential-provider-env": "npm:3.654.0" - "@aws-sdk/credential-provider-http": "npm:3.658.1" - "@aws-sdk/credential-provider-ini": "npm:3.658.1" - "@aws-sdk/credential-provider-process": "npm:3.654.0" - "@aws-sdk/credential-provider-sso": "npm:3.658.1" - "@aws-sdk/credential-provider-web-identity": "npm:3.654.0" - "@aws-sdk/types": "npm:3.654.0" - "@smithy/credential-provider-imds": "npm:^3.2.3" - "@smithy/property-provider": "npm:^3.1.6" - "@smithy/shared-ini-file-loader": "npm:^3.1.7" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/client-sts": ^3.687.0 + checksum: 10c0/4909d432dec9f290a1fe96cf6295f8b5786011245f19d3ea1f2b8cb2d736cc020285f34ac32e3c5f9691d86acbe0aa823ff8e73f3613262f51286679697bacf8 + languageName: node + linkType: hard + +"@aws-sdk/credential-provider-node@npm:3.687.0": + version: 3.687.0 + resolution: "@aws-sdk/credential-provider-node@npm:3.687.0" + dependencies: + "@aws-sdk/credential-provider-env": "npm:3.686.0" + "@aws-sdk/credential-provider-http": "npm:3.686.0" + "@aws-sdk/credential-provider-ini": "npm:3.687.0" + "@aws-sdk/credential-provider-process": "npm:3.686.0" + "@aws-sdk/credential-provider-sso": "npm:3.687.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.686.0" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/credential-provider-imds": "npm:^3.2.4" + "@smithy/property-provider": "npm:^3.1.7" + "@smithy/shared-ini-file-loader": "npm:^3.1.8" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" - checksum: 10c0/7b8754c00f055f96ab88d476d20b2f7c963c6a2f647c9637e4fb31bfaa7447a5e18344b470c258ff3b5df5756bfa816486426921a48609dcec3b479c737d23d9 + checksum: 10c0/a55fc666b49ec24a8441b2a7de5a335f1f15b6fa8330230a829a133e17befa02afbb3c56a1d40e763f4f4d2b42d1bf203b1de875af8cc5f552ccf0cbcb7618e0 languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.654.0": - version: 3.654.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.654.0" +"@aws-sdk/credential-provider-process@npm:3.686.0": + version: 3.686.0 + resolution: "@aws-sdk/credential-provider-process@npm:3.686.0" dependencies: - "@aws-sdk/types": "npm:3.654.0" - "@smithy/property-provider": "npm:^3.1.6" - "@smithy/shared-ini-file-loader": "npm:^3.1.7" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/core": "npm:3.686.0" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/property-provider": "npm:^3.1.7" + "@smithy/shared-ini-file-loader": "npm:^3.1.8" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" - checksum: 10c0/388f6dcf7522dd3fdec125e164414253b937513365ffe5a4274237e83990153f33014013562ca5d4aa38d9510d2fc747ccee81b369fca6461b0f926a049aeaef + checksum: 10c0/d4e9de75628b6ea50d1a04f035cc3238fb9650de03e73f5d5560866f86255b4d7c9249d913750ed5f3964b6b36c99943ee6f320e5e6a8c2730e5f15239c3c683 languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/credential-provider-sso@npm:3.658.1" +"@aws-sdk/credential-provider-sso@npm:3.687.0": + version: 3.687.0 + resolution: "@aws-sdk/credential-provider-sso@npm:3.687.0" dependencies: - "@aws-sdk/client-sso": "npm:3.658.1" - "@aws-sdk/token-providers": "npm:3.654.0" - "@aws-sdk/types": "npm:3.654.0" - "@smithy/property-provider": "npm:^3.1.6" - "@smithy/shared-ini-file-loader": "npm:^3.1.7" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/client-sso": "npm:3.687.0" + "@aws-sdk/core": "npm:3.686.0" + "@aws-sdk/token-providers": "npm:3.686.0" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/property-provider": "npm:^3.1.7" + "@smithy/shared-ini-file-loader": "npm:^3.1.8" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" - checksum: 10c0/110b3c5a11f3738a86fedcbf509c87f50bdd6577a74182a450087a35b0183fec89e5d2a1a6e64eef81e2b01bd3d5ab62db4bb2860f8f7997ac51fc89e416a0f0 + checksum: 10c0/d4d83d8da367997b06d413e560bb2bade9e48f1c7c166669b849ee6343c8fb175b181a90d81206596416a9a9cd05c2303134e721873d12c9e5433442dcf7f36c languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.654.0": - version: 3.654.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.654.0" +"@aws-sdk/credential-provider-web-identity@npm:3.686.0": + version: 3.686.0 + resolution: "@aws-sdk/credential-provider-web-identity@npm:3.686.0" dependencies: - "@aws-sdk/types": "npm:3.654.0" - "@smithy/property-provider": "npm:^3.1.6" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/core": "npm:3.686.0" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/property-provider": "npm:^3.1.7" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sts": ^3.654.0 - checksum: 10c0/6bafd02301ff2f5d030bb2242056be7fb02713d0ab70a43e18ac7a77d6d08460b36b7c833d9446388d93e16158fdcbb6b463754a131a962a8b14a639e01da3b2 - languageName: node - linkType: hard - -"@aws-sdk/credential-providers@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/credential-providers@npm:3.658.1" - dependencies: - "@aws-sdk/client-cognito-identity": "npm:3.658.1" - "@aws-sdk/client-sso": "npm:3.658.1" - "@aws-sdk/client-sts": "npm:3.658.1" - "@aws-sdk/credential-provider-cognito-identity": "npm:3.658.1" - "@aws-sdk/credential-provider-env": "npm:3.654.0" - "@aws-sdk/credential-provider-http": "npm:3.658.1" - "@aws-sdk/credential-provider-ini": "npm:3.658.1" - "@aws-sdk/credential-provider-node": "npm:3.658.1" - "@aws-sdk/credential-provider-process": "npm:3.654.0" - "@aws-sdk/credential-provider-sso": "npm:3.658.1" - "@aws-sdk/credential-provider-web-identity": "npm:3.654.0" - "@aws-sdk/types": "npm:3.654.0" - "@smithy/credential-provider-imds": "npm:^3.2.3" - "@smithy/property-provider": "npm:^3.1.6" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/client-sts": ^3.686.0 + checksum: 10c0/92e6b5b1ae9f290bcf811f245bbfe7fbbe241b701565f2f910992759d2d521119ef5a7bd1718880f1e8054146ae871b60fec8de387dc4d1444e479d565fe71b3 + languageName: node + linkType: hard + +"@aws-sdk/credential-providers@npm:3.687.0": + version: 3.687.0 + resolution: "@aws-sdk/credential-providers@npm:3.687.0" + dependencies: + "@aws-sdk/client-cognito-identity": "npm:3.687.0" + "@aws-sdk/client-sso": "npm:3.687.0" + "@aws-sdk/client-sts": "npm:3.687.0" + "@aws-sdk/core": "npm:3.686.0" + "@aws-sdk/credential-provider-cognito-identity": "npm:3.687.0" + "@aws-sdk/credential-provider-env": "npm:3.686.0" + "@aws-sdk/credential-provider-http": "npm:3.686.0" + "@aws-sdk/credential-provider-ini": "npm:3.687.0" + "@aws-sdk/credential-provider-node": "npm:3.687.0" + "@aws-sdk/credential-provider-process": "npm:3.686.0" + "@aws-sdk/credential-provider-sso": "npm:3.687.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.686.0" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/credential-provider-imds": "npm:^3.2.4" + "@smithy/property-provider": "npm:^3.1.7" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" - checksum: 10c0/29ae6dcf4f07e8bb9ffed87da9a04739621427b5e0def1889f294bd1dfde5cab93b0e45d38ef472be52b5d7fece8bad743df9d94049d918f926c8bd439ee7dc1 + checksum: 10c0/fc10833d5fbaa3e116ae63e5228eef92c0c2f44087856696b465832dcdae553ca5a02edf5ad318fee615ae12fd6554b2955d688f9dd364a097218382aad8f9d1 languageName: node linkType: hard -"@aws-sdk/middleware-bucket-endpoint@npm:3.654.0": - version: 3.654.0 - resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.654.0" +"@aws-sdk/middleware-bucket-endpoint@npm:3.686.0": + version: 3.686.0 + resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.686.0" dependencies: - "@aws-sdk/types": "npm:3.654.0" - "@aws-sdk/util-arn-parser": "npm:3.568.0" - "@smithy/node-config-provider": "npm:^3.1.7" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/types": "npm:3.686.0" + "@aws-sdk/util-arn-parser": "npm:3.679.0" + "@smithy/node-config-provider": "npm:^3.1.9" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/types": "npm:^3.6.0" "@smithy/util-config-provider": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/7e2ce6c7ac7e0556e8d5acb97e893758bd45225fa2b34983b6c6b266662124f161379fb7377ba3b282fca76919c85e2d64e040a5fc5baccbf6fe59ca679161a6 + checksum: 10c0/a443b0ad0aa7dd05927c6f20ab03bb0c2a4b97706c030ad476b234b891be67238b95cdcd04d255515667b46052ab33ef8047744ed25463b1e7d5b134ec1c3101 languageName: node linkType: hard -"@aws-sdk/middleware-expect-continue@npm:3.654.0": - version: 3.654.0 - resolution: "@aws-sdk/middleware-expect-continue@npm:3.654.0" +"@aws-sdk/middleware-expect-continue@npm:3.686.0": + version: 3.686.0 + resolution: "@aws-sdk/middleware-expect-continue@npm:3.686.0" dependencies: - "@aws-sdk/types": "npm:3.654.0" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" - checksum: 10c0/c15f81815b57876c4f8bfa7ea6f9f3185f11bcc096d08d62f109764b3be0a33d457393f658b03f093baa53eb46f356ecfa6b1f4064883509c053a9519567a536 + checksum: 10c0/153260b268faa8564d2c33737620af8770b857c8d1dcb7184da535d693bceec1314d89021032614c7ee4760710a6e69eb380b7af6a2f4dedcfb6641e3509b892 languageName: node linkType: hard -"@aws-sdk/middleware-flexible-checksums@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.658.1" +"@aws-sdk/middleware-flexible-checksums@npm:3.689.0": + version: 3.689.0 + resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.689.0" dependencies: "@aws-crypto/crc32": "npm:5.2.0" "@aws-crypto/crc32c": "npm:5.2.0" - "@aws-sdk/types": "npm:3.654.0" + "@aws-crypto/util": "npm:5.2.0" + "@aws-sdk/core": "npm:3.686.0" + "@aws-sdk/types": "npm:3.686.0" "@smithy/is-array-buffer": "npm:^3.0.0" - "@smithy/node-config-provider": "npm:^3.1.7" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/types": "npm:^3.4.2" - "@smithy/util-middleware": "npm:^3.0.6" + "@smithy/node-config-provider": "npm:^3.1.9" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/types": "npm:^3.6.0" + "@smithy/util-middleware": "npm:^3.0.8" + "@smithy/util-stream": "npm:^3.2.1" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/748aab0413e5d9f2324a3141bb4d578b5089102054d83f8105246f04116c32382e16b9e0f9bde21026150d613a1c87536d3d477e5eee44a2c66283634bb06f42 + checksum: 10c0/5bca4640456ede98f0a07f8cae6b00f27f531ab193277f4b88e2ede427ea71a448f55668cf76c70e3d1385420017ff14e458e9b3d9043979621881ba0aae767c languageName: node linkType: hard -"@aws-sdk/middleware-host-header@npm:3.654.0": - version: 3.654.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.654.0" +"@aws-sdk/middleware-host-header@npm:3.686.0": + version: 3.686.0 + resolution: "@aws-sdk/middleware-host-header@npm:3.686.0" dependencies: - "@aws-sdk/types": "npm:3.654.0" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" - checksum: 10c0/4d027e87f8ee18424ae326a7484bf1a52258cc89037641bc7fcd9e9e34bc936e754ec4cc6ccdfa545e1ec1e1ba5361dbd539de9b0e525161d7a70433ef475802 + checksum: 10c0/afc4151bf2425b3b0172f39fd9f29e48bd87038ec7f4e3389da4426f7fbfc394c8298eac30497a96f005b7dd3809ac49fff375f53969163e259587d15dd40d59 languageName: node linkType: hard -"@aws-sdk/middleware-location-constraint@npm:3.654.0": - version: 3.654.0 - resolution: "@aws-sdk/middleware-location-constraint@npm:3.654.0" +"@aws-sdk/middleware-location-constraint@npm:3.686.0": + version: 3.686.0 + resolution: "@aws-sdk/middleware-location-constraint@npm:3.686.0" dependencies: - "@aws-sdk/types": "npm:3.654.0" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" - checksum: 10c0/5b3e09667777048d53f50da237cffbef7d931b550d3a502460907f84542d30878f504cb39d4b830a7b34cbf6e9a42a14849fe8cf63d52facf23e50834d4dce8f + checksum: 10c0/d093e18ebc54be70d6eb945fac15a7c1617cdc96e51c9afa037d6fb479ad2345592bc7b078d594246e71ab9a716415efb18bb993f240f02f9c4bd6ed9650baa3 languageName: node linkType: hard -"@aws-sdk/middleware-logger@npm:3.654.0": - version: 3.654.0 - resolution: "@aws-sdk/middleware-logger@npm:3.654.0" +"@aws-sdk/middleware-logger@npm:3.686.0": + version: 3.686.0 + resolution: "@aws-sdk/middleware-logger@npm:3.686.0" dependencies: - "@aws-sdk/types": "npm:3.654.0" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" - checksum: 10c0/cab9e99eef8a205f6d9c0dc5db14797e8f983a32604658f517ad3f5f62f0d427784b9f11ed686024c7b2c4265d8ef3c346ccb65a7a2733449c142678b56dcaef + checksum: 10c0/17edfe0781035c2678ae878db56652c4de0d3a719d7912b7ce1d6e3dccc2848543152cc617ebdacd6ac46c6cc5d1ead4e65e2606bf5fd7431c4606b0fac72adc languageName: node linkType: hard -"@aws-sdk/middleware-recursion-detection@npm:3.654.0": - version: 3.654.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.654.0" +"@aws-sdk/middleware-recursion-detection@npm:3.686.0": + version: 3.686.0 + resolution: "@aws-sdk/middleware-recursion-detection@npm:3.686.0" dependencies: - "@aws-sdk/types": "npm:3.654.0" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" - checksum: 10c0/52752ca2cbc23fb29af27f58c6218b3714770898d06535da61586c4335b31b40d8c82fa05a5412aa731b65f149f496604fbe1615acdaaec989eba41116d5a48c + checksum: 10c0/0038b452d683b81ece9cbffdc5191a2eeef908bfefc41e87f61f96e177488255a5a03451e3c0f7b7afa319662d931b246fd319b46fee82b51b427f51228f1a8c languageName: node linkType: hard -"@aws-sdk/middleware-sdk-ec2@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/middleware-sdk-ec2@npm:3.658.1" +"@aws-sdk/middleware-sdk-ec2@npm:3.686.0": + version: 3.686.0 + resolution: "@aws-sdk/middleware-sdk-ec2@npm:3.686.0" dependencies: - "@aws-sdk/types": "npm:3.654.0" - "@aws-sdk/util-format-url": "npm:3.654.0" - "@smithy/middleware-endpoint": "npm:^3.1.3" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/signature-v4": "npm:^4.1.4" - "@smithy/smithy-client": "npm:^3.3.5" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/types": "npm:3.686.0" + "@aws-sdk/util-format-url": "npm:3.686.0" + "@smithy/middleware-endpoint": "npm:^3.2.1" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/signature-v4": "npm:^4.2.0" + "@smithy/smithy-client": "npm:^3.4.2" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" - checksum: 10c0/d9c848af87303a24880153c6f993236ca195e868bacee06d36e108946ee9d93307cf07f82abf0b9433b0ddc1689a87e231ee53dc5194ab8bedf69172fd87be48 + checksum: 10c0/d73016b7f9a66e99001ba97c04f7daad3efb432d4e05b0f635b93802a2bd458198fe227fddf6a1f27c88fc486b0c617658f60f1e92047da56da54a3c1eebd3bd languageName: node linkType: hard -"@aws-sdk/middleware-sdk-rds@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/middleware-sdk-rds@npm:3.658.1" +"@aws-sdk/middleware-sdk-rds@npm:3.686.0": + version: 3.686.0 + resolution: "@aws-sdk/middleware-sdk-rds@npm:3.686.0" dependencies: - "@aws-sdk/types": "npm:3.654.0" - "@aws-sdk/util-format-url": "npm:3.654.0" - "@smithy/middleware-endpoint": "npm:^3.1.3" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/signature-v4": "npm:^4.1.4" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/types": "npm:3.686.0" + "@aws-sdk/util-format-url": "npm:3.686.0" + "@smithy/middleware-endpoint": "npm:^3.2.1" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/signature-v4": "npm:^4.2.0" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" - checksum: 10c0/68ea5106941968d3240b9f0d2e59334d60a2016541d5835e33de97829bffbe3dc23400cee26f8eb801a863531fe002ef9f6d95de5fe6a51cc12e81d4c06f1427 + checksum: 10c0/44453427bce1e4f904394cbee035739eb2acd6421a7a7492b8a8d0600d1b95f46a66b570ef3a3e3986ddb78184fd3d3d299aced1801da22c2ac41bfdd6bb55be languageName: node linkType: hard -"@aws-sdk/middleware-sdk-s3@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/middleware-sdk-s3@npm:3.658.1" +"@aws-sdk/middleware-sdk-s3@npm:3.687.0": + version: 3.687.0 + resolution: "@aws-sdk/middleware-sdk-s3@npm:3.687.0" dependencies: - "@aws-sdk/core": "npm:3.658.1" - "@aws-sdk/types": "npm:3.654.0" - "@aws-sdk/util-arn-parser": "npm:3.568.0" - "@smithy/core": "npm:^2.4.6" - "@smithy/node-config-provider": "npm:^3.1.7" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/signature-v4": "npm:^4.1.4" - "@smithy/smithy-client": "npm:^3.3.5" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/core": "npm:3.686.0" + "@aws-sdk/types": "npm:3.686.0" + "@aws-sdk/util-arn-parser": "npm:3.679.0" + "@smithy/core": "npm:^2.5.1" + "@smithy/node-config-provider": "npm:^3.1.9" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/signature-v4": "npm:^4.2.0" + "@smithy/smithy-client": "npm:^3.4.2" + "@smithy/types": "npm:^3.6.0" "@smithy/util-config-provider": "npm:^3.0.0" - "@smithy/util-middleware": "npm:^3.0.6" - "@smithy/util-stream": "npm:^3.1.8" + "@smithy/util-middleware": "npm:^3.0.8" + "@smithy/util-stream": "npm:^3.2.1" "@smithy/util-utf8": "npm:^3.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/291c92dd850f2145b43cd28394928e8615f4d0d23b23dec8ce6be9475400f978e7dd3c93b59341359ccd9b40dee32ddffcb3eb56c71c4514588b29394a01de47 + checksum: 10c0/f3f8c7f473210a63e58b7a371bd06534b74a93af4a11fe58230ca757dc41d251baffb42e863c0f979133e5625e113b5627604eb7e1e814c942fe13ea649c3c22 languageName: node linkType: hard -"@aws-sdk/middleware-ssec@npm:3.654.0": - version: 3.654.0 - resolution: "@aws-sdk/middleware-ssec@npm:3.654.0" +"@aws-sdk/middleware-ssec@npm:3.686.0": + version: 3.686.0 + resolution: "@aws-sdk/middleware-ssec@npm:3.686.0" dependencies: - "@aws-sdk/types": "npm:3.654.0" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" - checksum: 10c0/cde203fbdabfffab478edb72f66b8f5f6d57f604b784219416f4c78e4e02265492f7ca7204aa20ca876b600325d0c58880dc10b062a8a9e8e1b21de532863b14 + checksum: 10c0/96851ec461ee6dc5c2e73612a0ab200f360d5c971d01c9e5ca045c53b2deeb9f3c184016f89cd94cf8db5785d4ab46543227b8e5953014ae0b2bc405347cf945 languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.654.0": - version: 3.654.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.654.0" +"@aws-sdk/middleware-user-agent@npm:3.687.0": + version: 3.687.0 + resolution: "@aws-sdk/middleware-user-agent@npm:3.687.0" dependencies: - "@aws-sdk/types": "npm:3.654.0" - "@aws-sdk/util-endpoints": "npm:3.654.0" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/core": "npm:3.686.0" + "@aws-sdk/types": "npm:3.686.0" + "@aws-sdk/util-endpoints": "npm:3.686.0" + "@smithy/core": "npm:^2.5.1" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" - checksum: 10c0/f6678b1d6bc045d97c52520c381e88bec6d449d7be4f2751d68cd26ed743045b5af60aa2e26326c9a86cec9045d6c7b8711ae31e611bff09b367aa70b5d14710 + checksum: 10c0/4c84af62eb3a8fdcdd5f2a2139fdae8b95dea7caf46f48f118ba3fa6071ff120c6421b152abf8c2eb205ceed9126b366b8e4e98a35f949d918c35d3d0f17f743 languageName: node linkType: hard -"@aws-sdk/region-config-resolver@npm:3.654.0": - version: 3.654.0 - resolution: "@aws-sdk/region-config-resolver@npm:3.654.0" +"@aws-sdk/region-config-resolver@npm:3.686.0": + version: 3.686.0 + resolution: "@aws-sdk/region-config-resolver@npm:3.686.0" dependencies: - "@aws-sdk/types": "npm:3.654.0" - "@smithy/node-config-provider": "npm:^3.1.7" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/node-config-provider": "npm:^3.1.9" + "@smithy/types": "npm:^3.6.0" "@smithy/util-config-provider": "npm:^3.0.0" - "@smithy/util-middleware": "npm:^3.0.6" + "@smithy/util-middleware": "npm:^3.0.8" tslib: "npm:^2.6.2" - checksum: 10c0/77daa7139977b991db77945a2b6fc5fc642ff780ee4dfa6269687a007730bd1af2e21a49bcd7f82ddd893d79fafccd5621d24324619588acca8fd66dd642946e + checksum: 10c0/0657085699a61cac3d84a1660e4b8396e928d2bb2e73c0968d1e924759be605383c4f5d12262ca1f28f28bdcd37900eee161a9b91225a3f98a13c8551f7a6cbc languageName: node linkType: hard -"@aws-sdk/signature-v4-multi-region@npm:3.658.1": - version: 3.658.1 - resolution: "@aws-sdk/signature-v4-multi-region@npm:3.658.1" +"@aws-sdk/signature-v4-multi-region@npm:3.687.0": + version: 3.687.0 + resolution: "@aws-sdk/signature-v4-multi-region@npm:3.687.0" dependencies: - "@aws-sdk/middleware-sdk-s3": "npm:3.658.1" - "@aws-sdk/types": "npm:3.654.0" - "@smithy/protocol-http": "npm:^4.1.3" - "@smithy/signature-v4": "npm:^4.1.4" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/middleware-sdk-s3": "npm:3.687.0" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/protocol-http": "npm:^4.1.5" + "@smithy/signature-v4": "npm:^4.2.0" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" - checksum: 10c0/10d30d22ea25fef2ba82142eccbf59fa4125c11f43155063e5636c70bca08acde1522b9d0eee64c6ebec24af18941ef986ef62600a89d49764028b40b1c21b61 + checksum: 10c0/641da5046f393f87c0a16d1258ebc8011b13873a6e877ce23cbad760f99868b114455096dfeab6deade4c895a46de2c015d4325cbba53f775cdcfcb2e1402dc3 languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.654.0": - version: 3.654.0 - resolution: "@aws-sdk/token-providers@npm:3.654.0" +"@aws-sdk/token-providers@npm:3.686.0": + version: 3.686.0 + resolution: "@aws-sdk/token-providers@npm:3.686.0" dependencies: - "@aws-sdk/types": "npm:3.654.0" - "@smithy/property-provider": "npm:^3.1.6" - "@smithy/shared-ini-file-loader": "npm:^3.1.7" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/property-provider": "npm:^3.1.7" + "@smithy/shared-ini-file-loader": "npm:^3.1.8" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-sso-oidc": ^3.654.0 - checksum: 10c0/b49c7eb1e6cde2c0c8728c46a9a0f9f55a4b54c14afeccf90aff72b30c1a7320bc472c5dd35a32d61734ba6533b745065194ef4fe18f69241b4d1b96532224c2 + "@aws-sdk/client-sso-oidc": ^3.686.0 + checksum: 10c0/daf2fbc88980c9576ed2affde3bb1bc2450ad0de1d3ab796f2be2620dfa1b365515b2502af87e70f8ce68b8e6f5a5e94eb45ea2740339698fa7a144bad42d878 languageName: node linkType: hard -"@aws-sdk/types@npm:3.654.0": - version: 3.654.0 - resolution: "@aws-sdk/types@npm:3.654.0" - dependencies: - "@smithy/types": "npm:^3.4.2" - tslib: "npm:^2.6.2" - checksum: 10c0/24c31b3685ada211a5a6ab35c95fdc6120189a8766fc02dafcf749febb895ee806a055c04c4a023146dc587bce3cf1053a23029285d6d3b3e8c197937d6a7843 - languageName: node - linkType: hard - -"@aws-sdk/types@npm:^3.222.0": +"@aws-sdk/types@npm:3.686.0, @aws-sdk/types@npm:^3.222.0": version: 3.686.0 resolution: "@aws-sdk/types@npm:3.686.0" dependencies: @@ -955,36 +960,36 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-arn-parser@npm:3.568.0": - version: 3.568.0 - resolution: "@aws-sdk/util-arn-parser@npm:3.568.0" +"@aws-sdk/util-arn-parser@npm:3.679.0": + version: 3.679.0 + resolution: "@aws-sdk/util-arn-parser@npm:3.679.0" dependencies: tslib: "npm:^2.6.2" - checksum: 10c0/4e6168b86a1ff4509f25b56e473c95bdcc0ecbaedcded29cbbd500eb7c156de63f2426282cd50489ac7f321a990056349974730f9e27ac3fe872ba3573b09fb6 + checksum: 10c0/401dc101c8c0c5057f8dc59d4a0acc06c6d81e35c4f37258c34d10be7148f5b6334c8dd6021224b897c7447f2a6650fa955e0c697bfb6f86dcfd55415b158544 languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.654.0": - version: 3.654.0 - resolution: "@aws-sdk/util-endpoints@npm:3.654.0" +"@aws-sdk/util-endpoints@npm:3.686.0": + version: 3.686.0 + resolution: "@aws-sdk/util-endpoints@npm:3.686.0" dependencies: - "@aws-sdk/types": "npm:3.654.0" - "@smithy/types": "npm:^3.4.2" - "@smithy/util-endpoints": "npm:^2.1.2" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/types": "npm:^3.6.0" + "@smithy/util-endpoints": "npm:^2.1.4" tslib: "npm:^2.6.2" - checksum: 10c0/12b06f3b9f46bb4a1c0a77baf4d5b295a835d46f5d8eacc7a148ce036013fb29109c458746457e88653a3d32db97fd655ec04e37abaa193c713d4d71e003f53c + checksum: 10c0/e9939316bc7555ea57b940d4e4a62f13bf774c1496dea9171cc7cabcd75449d2169a54f6cedfd7f8ef29e3bf047b9fce6df7f09c4092d3c9eee902865bfa45e3 languageName: node linkType: hard -"@aws-sdk/util-format-url@npm:3.654.0": - version: 3.654.0 - resolution: "@aws-sdk/util-format-url@npm:3.654.0" +"@aws-sdk/util-format-url@npm:3.686.0": + version: 3.686.0 + resolution: "@aws-sdk/util-format-url@npm:3.686.0" dependencies: - "@aws-sdk/types": "npm:3.654.0" - "@smithy/querystring-builder": "npm:^3.0.6" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/querystring-builder": "npm:^3.0.8" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" - checksum: 10c0/a9f1df6a9828ef4519db99675d333c33f1c93b4da777707c5bee3ccdf5cf54ec8306c05f146c306e36acc5df6a17da03442c9d30bb672923b6f00bfec6d34f69 + checksum: 10c0/936839c00d6722832b31abac1f305273638c81a6db9a68e2ea7d29ec9d45c0d00ff2814208d670492bdd08ee93e9067ea1af3a7ad317e62418789fa279ae6273 languageName: node linkType: hard @@ -997,42 +1002,43 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-user-agent-browser@npm:3.654.0": - version: 3.654.0 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.654.0" +"@aws-sdk/util-user-agent-browser@npm:3.686.0": + version: 3.686.0 + resolution: "@aws-sdk/util-user-agent-browser@npm:3.686.0" dependencies: - "@aws-sdk/types": "npm:3.654.0" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/types": "npm:^3.6.0" bowser: "npm:^2.11.0" tslib: "npm:^2.6.2" - checksum: 10c0/b3d317ffad06e5d3167699f5afe89339d6d51d8ce882e3db142f6da4331b485f0fa641dc0e80c4fe695643918cfa6ad5892f0412e368819e796f3fae19f5a811 + checksum: 10c0/e358e3a6e833985d8baa53f08718578337aa1635744bb6ea3976a8fb67d78d427985f95e873f7806db4c54f21a1fdfec5a019922dbe389b7a0cdd804fda51d3a languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.654.0": - version: 3.654.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.654.0" +"@aws-sdk/util-user-agent-node@npm:3.687.0": + version: 3.687.0 + resolution: "@aws-sdk/util-user-agent-node@npm:3.687.0" dependencies: - "@aws-sdk/types": "npm:3.654.0" - "@smithy/node-config-provider": "npm:^3.1.7" - "@smithy/types": "npm:^3.4.2" + "@aws-sdk/middleware-user-agent": "npm:3.687.0" + "@aws-sdk/types": "npm:3.686.0" + "@smithy/node-config-provider": "npm:^3.1.9" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" peerDependencies: aws-crt: ">=1.0.0" peerDependenciesMeta: aws-crt: optional: true - checksum: 10c0/3744c81a91f994a56ac8990729ea1560b0f5778917ddf38dacb5d3f28604aa8d6c595351225107852a49e3f47e4e9b274caec97a32ba6c91b87e807294f9218b + checksum: 10c0/1086dc84414702d6c0721db3db68c6be966614de8679556e134719a926d28a230c9ecd924a686b20a19cfaae314b2b5f5354ca56ae20b7cf14f97e5631ac1386 languageName: node linkType: hard -"@aws-sdk/xml-builder@npm:3.654.0": - version: 3.654.0 - resolution: "@aws-sdk/xml-builder@npm:3.654.0" +"@aws-sdk/xml-builder@npm:3.686.0": + version: 3.686.0 + resolution: "@aws-sdk/xml-builder@npm:3.686.0" dependencies: - "@smithy/types": "npm:^3.4.2" + "@smithy/types": "npm:^3.6.0" tslib: "npm:^2.6.2" - checksum: 10c0/bf67401ce24aaf989646c80e251e26fab40e3b60aea2d3ea03759d0185a9d8565e7b54ea1fd5a62bf188934304e4e38e7814f3941589b2d3aaaa3384f7af358b + checksum: 10c0/79e6af4cd4a464a792ac083a036c1bc2aa8e5799a646087bd5a06f68b35d8c58f6067fc135fc3cf3554e01bf89ae2ae0137798dcd1c872a2cb5e2ca2738731de languageName: node linkType: hard @@ -1298,12 +1304,12 @@ __metadata: languageName: node linkType: hard -"@opentelemetry/api-logs@npm:0.54.0": - version: 0.54.0 - resolution: "@opentelemetry/api-logs@npm:0.54.0" +"@opentelemetry/api-logs@npm:0.54.1": + version: 0.54.1 + resolution: "@opentelemetry/api-logs@npm:0.54.1" dependencies: "@opentelemetry/api": "npm:^1.3.0" - checksum: 10c0/877cf75fb6fe37cae9dde1fe9a38202af4d00246bfe3ac29b8c06da5e6e1818a27cb851a0f2c14b3cb7acdebb85ba847144f8523d84279fbb000e88685e66e3b + checksum: 10c0/68dcf75a80474d31c4c5925e03dc7885879f0a4e18e71a20135720b0eeb1b84f38994a71c0511fb567e6ff51b876feaba63c2f76ba57c20f8eaa6aa043a898cf languageName: node linkType: hard @@ -1343,18 +1349,18 @@ __metadata: languageName: node linkType: hard -"@opentelemetry/exporter-trace-otlp-http@npm:0.54.0": - version: 0.54.0 - resolution: "@opentelemetry/exporter-trace-otlp-http@npm:0.54.0" +"@opentelemetry/exporter-trace-otlp-http@npm:0.54.1": + version: 0.54.1 + resolution: "@opentelemetry/exporter-trace-otlp-http@npm:0.54.1" dependencies: "@opentelemetry/core": "npm:1.27.0" - "@opentelemetry/otlp-exporter-base": "npm:0.54.0" - "@opentelemetry/otlp-transformer": "npm:0.54.0" + "@opentelemetry/otlp-exporter-base": "npm:0.54.1" + "@opentelemetry/otlp-transformer": "npm:0.54.1" "@opentelemetry/resources": "npm:1.27.0" "@opentelemetry/sdk-trace-base": "npm:1.27.0" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/93191191f743734a6f69129e045c91ee310b5b5a6c45ea7372083982bb790798560084d604e4cd813b30ec0229149aec68dbe559a902ddca20d7354fb6bdfcd5 + checksum: 10c0/13b0b7b1a861407b6393acad61aed968f881cce19f3ff4096b82b85b70b4b0f62590c119a6e7f1900d65b171f6c07173bea0afa96b742e75a9a84f2f04ed5744 languageName: node linkType: hard @@ -1371,26 +1377,26 @@ __metadata: languageName: node linkType: hard -"@opentelemetry/instrumentation-http@npm:0.54.0": - version: 0.54.0 - resolution: "@opentelemetry/instrumentation-http@npm:0.54.0" +"@opentelemetry/instrumentation-http@npm:0.54.1": + version: 0.54.1 + resolution: "@opentelemetry/instrumentation-http@npm:0.54.1" dependencies: "@opentelemetry/core": "npm:1.27.0" - "@opentelemetry/instrumentation": "npm:0.54.0" + "@opentelemetry/instrumentation": "npm:0.54.1" "@opentelemetry/semantic-conventions": "npm:1.27.0" forwarded-parse: "npm:2.1.2" semver: "npm:^7.5.2" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/cb875328839e5773d058b29aca3f2e11b7c6b279aea4769c091a7cced66d394efb504c29f6d8ab8309a87931ab76a3eea9cc3700c25b75424176df98b6466734 + checksum: 10c0/8036df48e8c59422cf2c97fd74974a2e985cd27db51dcee5f30abf5427949b7d5a44b24dcaabdd57e2c5bc6b9d60e9bcd92e8ff21009928443938e6816ed9339 languageName: node linkType: hard -"@opentelemetry/instrumentation@npm:0.54.0": - version: 0.54.0 - resolution: "@opentelemetry/instrumentation@npm:0.54.0" +"@opentelemetry/instrumentation@npm:0.54.1": + version: 0.54.1 + resolution: "@opentelemetry/instrumentation@npm:0.54.1" dependencies: - "@opentelemetry/api-logs": "npm:0.54.0" + "@opentelemetry/api-logs": "npm:0.54.1" "@types/shimmer": "npm:^1.2.0" import-in-the-middle: "npm:^1.8.1" require-in-the-middle: "npm:^7.1.1" @@ -1398,7 +1404,7 @@ __metadata: shimmer: "npm:^1.2.1" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/3b80aac8bb64c53c91926b6b19cacea27b98ac3ababa2b36cf02451b168094d0894ef4682ddbd680117c1f748fd0104750a1e0e924f3ef4bcb9e9e1cad37a141 + checksum: 10c0/33b1b342ac43d0a3c96d3a73e332c529899ab40dd0760cfd2b8b55bc27ec1f040ac1aa6e5ca799bc851409bddd8332705d05e1c32c233e3b0a88152dbcc00ffd languageName: node linkType: hard @@ -1418,32 +1424,32 @@ __metadata: languageName: node linkType: hard -"@opentelemetry/otlp-exporter-base@npm:0.54.0": - version: 0.54.0 - resolution: "@opentelemetry/otlp-exporter-base@npm:0.54.0" +"@opentelemetry/otlp-exporter-base@npm:0.54.1": + version: 0.54.1 + resolution: "@opentelemetry/otlp-exporter-base@npm:0.54.1" dependencies: "@opentelemetry/core": "npm:1.27.0" - "@opentelemetry/otlp-transformer": "npm:0.54.0" + "@opentelemetry/otlp-transformer": "npm:0.54.1" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/a0400cc4ca470ea23004ea373c95506e84687be9d7083ce17ee77b2761098ee55d0d196be3f5106816928262d13079afa746f752c62d7f5f5a19bec0eb7cb680 + checksum: 10c0/d65e5da36b779945f765d6fff94a132ac58ae9cfaa3bafbec8ff5960f1008ebc206213e55ce35b68a9e8a54bb05428810e5f05d361b9fd523174b553295080ef languageName: node linkType: hard -"@opentelemetry/otlp-transformer@npm:0.54.0": - version: 0.54.0 - resolution: "@opentelemetry/otlp-transformer@npm:0.54.0" +"@opentelemetry/otlp-transformer@npm:0.54.1": + version: 0.54.1 + resolution: "@opentelemetry/otlp-transformer@npm:0.54.1" dependencies: - "@opentelemetry/api-logs": "npm:0.54.0" + "@opentelemetry/api-logs": "npm:0.54.1" "@opentelemetry/core": "npm:1.27.0" "@opentelemetry/resources": "npm:1.27.0" - "@opentelemetry/sdk-logs": "npm:0.54.0" + "@opentelemetry/sdk-logs": "npm:0.54.1" "@opentelemetry/sdk-metrics": "npm:1.27.0" "@opentelemetry/sdk-trace-base": "npm:1.27.0" protobufjs: "npm:^7.3.0" peerDependencies: "@opentelemetry/api": ^1.3.0 - checksum: 10c0/b64f7ee3a43d2d8a82a609fcb57909455620168903da72658046ff911aed560070ba26b46c275077941039f012400c05eaf1921a31db7279989a9f15e9c6625b + checksum: 10c0/07eb575dd9555fb670d3172c30f397c6056f65b92d3e1a62abd157d94469d605757314ae8895c8d99b87a5f568dee268b1743825f3b6143cc29d44f2d2d73ed0 languageName: node linkType: hard @@ -1481,16 +1487,16 @@ __metadata: languageName: node linkType: hard -"@opentelemetry/sdk-logs@npm:0.54.0": - version: 0.54.0 - resolution: "@opentelemetry/sdk-logs@npm:0.54.0" +"@opentelemetry/sdk-logs@npm:0.54.1": + version: 0.54.1 + resolution: "@opentelemetry/sdk-logs@npm:0.54.1" dependencies: - "@opentelemetry/api-logs": "npm:0.54.0" + "@opentelemetry/api-logs": "npm:0.54.1" "@opentelemetry/core": "npm:1.27.0" "@opentelemetry/resources": "npm:1.27.0" peerDependencies: "@opentelemetry/api": ">=1.4.0 <1.10.0" - checksum: 10c0/10219ec72d00a2ebac83d25cf545daf3e5a2af372a96400745472c0d940c605e5749f6004bc43d6cfa584fd6fd5019ac987019c1a0a75eb308e99ccee49491a1 + checksum: 10c0/f7baf35538df586f4e6f33294bbf3e7eeed5a9629750a3eda35090d224a3114604ca91f832d192ec7353b4261f21785b490fb8f7115bb120fa0702e293cc4b7d languageName: node linkType: hard @@ -1781,13 +1787,11 @@ __metadata: languageName: node linkType: hard -"@renovatebot/kbpgp@npm:3.0.1": - version: 3.0.1 - resolution: "@renovatebot/kbpgp@npm:3.0.1" +"@renovatebot/kbpgp@npm:4.0.0": + version: 4.0.0 + resolution: "@renovatebot/kbpgp@npm:4.0.0" dependencies: - bn: "npm:^1.0.5" bzip-deflate: "npm:^1.0.0" - deep-equal: "npm:^2.2.3" iced-error: "npm:0.0.13" iced-lock: "npm:^2.0.1" iced-runtime-3: "npm:^3.0.5" @@ -1798,7 +1802,7 @@ __metadata: purepack: "npm:^1.0.6" triplesec: "npm:^4.0.3" tweetnacl: "npm:^1.0.3" - checksum: 10c0/ae0f8a8073136c8e3e0569f9e314ec591b005cb2c845fbe045859ac279b18258df2ff855a3f2e5174baf4b471e91a31a8fe966a123b5a126d22bd43a58c95bfd + checksum: 10c0/e836e8db47b3e3fc12dc21bd8274e1101fc415da74865fa1ffcef1e899e8c71807fa09eaff76e40c7ca95142766d2668e5bbe1b51952551d30555e0db394acb0 languageName: node linkType: hard @@ -1826,17 +1830,17 @@ __metadata: languageName: node linkType: hard -"@renovatebot/pep440@npm:3.0.20": - version: 3.0.20 - resolution: "@renovatebot/pep440@npm:3.0.20" - checksum: 10c0/3940b87a0d025da493e1306b1a80b3b41daa1abd33cc066af70d1f5468a64f8ac06fc1ab652f10c3a92ac123b0d32fdeffc5044f8e79b0fadf500fdf60c90229 +"@renovatebot/pep440@npm:4.0.1": + version: 4.0.1 + resolution: "@renovatebot/pep440@npm:4.0.1" + checksum: 10c0/58f7faf946917c88a0af1eac6cab68ec44ee35d00106072d6cdedf4cd74a7f332b6818b26bc50ae506adfc9778332acce91318666a6b7a27fa994638b576bd7e languageName: node linkType: hard -"@renovatebot/ruby-semver@npm:3.0.23": - version: 3.0.23 - resolution: "@renovatebot/ruby-semver@npm:3.0.23" - checksum: 10c0/c40b6dff8f8e349e6fe0f9de0c7a64d9540b398001eacb215f613ec77af785b15687bf8eb859f217a775d1630aea439df94e738d0f02bb80f8b0d5c0654d48de +"@renovatebot/ruby-semver@npm:4.0.0": + version: 4.0.0 + resolution: "@renovatebot/ruby-semver@npm:4.0.0" + checksum: 10c0/2cb41075578856f8688b5a977118dc5622df70116d9fcc1749613a3daf34a5b3c6cf8378845d318aff4d3397f05252892d99b46a7a9d4a6d249452919287a86d languageName: node linkType: hard @@ -1894,7 +1898,7 @@ __metadata: languageName: node linkType: hard -"@smithy/config-resolver@npm:^3.0.10, @smithy/config-resolver@npm:^3.0.8": +"@smithy/config-resolver@npm:^3.0.10": version: 3.0.10 resolution: "@smithy/config-resolver@npm:3.0.10" dependencies: @@ -1907,7 +1911,7 @@ __metadata: languageName: node linkType: hard -"@smithy/core@npm:^2.4.6, @smithy/core@npm:^2.5.1": +"@smithy/core@npm:^2.5.1": version: 2.5.1 resolution: "@smithy/core@npm:2.5.1" dependencies: @@ -1923,7 +1927,7 @@ __metadata: languageName: node linkType: hard -"@smithy/credential-provider-imds@npm:^3.2.3, @smithy/credential-provider-imds@npm:^3.2.5": +"@smithy/credential-provider-imds@npm:^3.2.4, @smithy/credential-provider-imds@npm:^3.2.5": version: 3.2.5 resolution: "@smithy/credential-provider-imds@npm:3.2.5" dependencies: @@ -1948,7 +1952,7 @@ __metadata: languageName: node linkType: hard -"@smithy/eventstream-serde-browser@npm:^3.0.9": +"@smithy/eventstream-serde-browser@npm:^3.0.11": version: 3.0.11 resolution: "@smithy/eventstream-serde-browser@npm:3.0.11" dependencies: @@ -1959,7 +1963,7 @@ __metadata: languageName: node linkType: hard -"@smithy/eventstream-serde-config-resolver@npm:^3.0.6": +"@smithy/eventstream-serde-config-resolver@npm:^3.0.8": version: 3.0.8 resolution: "@smithy/eventstream-serde-config-resolver@npm:3.0.8" dependencies: @@ -1969,7 +1973,7 @@ __metadata: languageName: node linkType: hard -"@smithy/eventstream-serde-node@npm:^3.0.8": +"@smithy/eventstream-serde-node@npm:^3.0.10": version: 3.0.10 resolution: "@smithy/eventstream-serde-node@npm:3.0.10" dependencies: @@ -1991,19 +1995,6 @@ __metadata: languageName: node linkType: hard -"@smithy/fetch-http-handler@npm:^3.2.8": - version: 3.2.9 - resolution: "@smithy/fetch-http-handler@npm:3.2.9" - dependencies: - "@smithy/protocol-http": "npm:^4.1.4" - "@smithy/querystring-builder": "npm:^3.0.7" - "@smithy/types": "npm:^3.5.0" - "@smithy/util-base64": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/0427d47a86d8250aa21fe4a9ec6639e2b611173e7516077ca634a0a398d902152993624766c5411a527a07db12b5c131a351770a9357a346d79811a4939ccbc6 - languageName: node - linkType: hard - "@smithy/fetch-http-handler@npm:^4.0.0": version: 4.0.0 resolution: "@smithy/fetch-http-handler@npm:4.0.0" @@ -2017,7 +2008,7 @@ __metadata: languageName: node linkType: hard -"@smithy/hash-blob-browser@npm:^3.1.5": +"@smithy/hash-blob-browser@npm:^3.1.7": version: 3.1.7 resolution: "@smithy/hash-blob-browser@npm:3.1.7" dependencies: @@ -2029,7 +2020,7 @@ __metadata: languageName: node linkType: hard -"@smithy/hash-node@npm:^3.0.6": +"@smithy/hash-node@npm:^3.0.8": version: 3.0.8 resolution: "@smithy/hash-node@npm:3.0.8" dependencies: @@ -2041,7 +2032,7 @@ __metadata: languageName: node linkType: hard -"@smithy/hash-stream-node@npm:^3.1.5": +"@smithy/hash-stream-node@npm:^3.1.7": version: 3.1.7 resolution: "@smithy/hash-stream-node@npm:3.1.7" dependencies: @@ -2052,7 +2043,7 @@ __metadata: languageName: node linkType: hard -"@smithy/invalid-dependency@npm:^3.0.6": +"@smithy/invalid-dependency@npm:^3.0.8": version: 3.0.8 resolution: "@smithy/invalid-dependency@npm:3.0.8" dependencies: @@ -2080,7 +2071,7 @@ __metadata: languageName: node linkType: hard -"@smithy/md5-js@npm:^3.0.6": +"@smithy/md5-js@npm:^3.0.8": version: 3.0.8 resolution: "@smithy/md5-js@npm:3.0.8" dependencies: @@ -2091,7 +2082,7 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-content-length@npm:^3.0.8": +"@smithy/middleware-content-length@npm:^3.0.10": version: 3.0.10 resolution: "@smithy/middleware-content-length@npm:3.0.10" dependencies: @@ -2102,7 +2093,7 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-endpoint@npm:^3.1.3, @smithy/middleware-endpoint@npm:^3.2.1": +"@smithy/middleware-endpoint@npm:^3.2.1": version: 3.2.1 resolution: "@smithy/middleware-endpoint@npm:3.2.1" dependencies: @@ -2118,7 +2109,7 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-retry@npm:^3.0.21": +"@smithy/middleware-retry@npm:^3.0.25": version: 3.0.25 resolution: "@smithy/middleware-retry@npm:3.0.25" dependencies: @@ -2135,7 +2126,7 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-serde@npm:^3.0.6, @smithy/middleware-serde@npm:^3.0.8": +"@smithy/middleware-serde@npm:^3.0.8": version: 3.0.8 resolution: "@smithy/middleware-serde@npm:3.0.8" dependencies: @@ -2145,7 +2136,7 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-stack@npm:^3.0.6, @smithy/middleware-stack@npm:^3.0.8": +"@smithy/middleware-stack@npm:^3.0.8": version: 3.0.8 resolution: "@smithy/middleware-stack@npm:3.0.8" dependencies: @@ -2155,7 +2146,7 @@ __metadata: languageName: node linkType: hard -"@smithy/node-config-provider@npm:^3.1.7, @smithy/node-config-provider@npm:^3.1.9": +"@smithy/node-config-provider@npm:^3.1.9": version: 3.1.9 resolution: "@smithy/node-config-provider@npm:3.1.9" dependencies: @@ -2167,7 +2158,7 @@ __metadata: languageName: node linkType: hard -"@smithy/node-http-handler@npm:^3.2.3, @smithy/node-http-handler@npm:^3.2.5": +"@smithy/node-http-handler@npm:^3.2.5": version: 3.2.5 resolution: "@smithy/node-http-handler@npm:3.2.5" dependencies: @@ -2180,7 +2171,7 @@ __metadata: languageName: node linkType: hard -"@smithy/property-provider@npm:^3.1.6, @smithy/property-provider@npm:^3.1.8": +"@smithy/property-provider@npm:^3.1.7, @smithy/property-provider@npm:^3.1.8": version: 3.1.8 resolution: "@smithy/property-provider@npm:3.1.8" dependencies: @@ -2190,7 +2181,7 @@ __metadata: languageName: node linkType: hard -"@smithy/protocol-http@npm:^4.1.3, @smithy/protocol-http@npm:^4.1.4, @smithy/protocol-http@npm:^4.1.5": +"@smithy/protocol-http@npm:^4.1.5": version: 4.1.5 resolution: "@smithy/protocol-http@npm:4.1.5" dependencies: @@ -2200,7 +2191,7 @@ __metadata: languageName: node linkType: hard -"@smithy/querystring-builder@npm:^3.0.6, @smithy/querystring-builder@npm:^3.0.7, @smithy/querystring-builder@npm:^3.0.8": +"@smithy/querystring-builder@npm:^3.0.8": version: 3.0.8 resolution: "@smithy/querystring-builder@npm:3.0.8" dependencies: @@ -2230,7 +2221,7 @@ __metadata: languageName: node linkType: hard -"@smithy/shared-ini-file-loader@npm:^3.1.7, @smithy/shared-ini-file-loader@npm:^3.1.9": +"@smithy/shared-ini-file-loader@npm:^3.1.8, @smithy/shared-ini-file-loader@npm:^3.1.9": version: 3.1.9 resolution: "@smithy/shared-ini-file-loader@npm:3.1.9" dependencies: @@ -2240,7 +2231,7 @@ __metadata: languageName: node linkType: hard -"@smithy/signature-v4@npm:^4.1.4": +"@smithy/signature-v4@npm:^4.2.0": version: 4.2.1 resolution: "@smithy/signature-v4@npm:4.2.1" dependencies: @@ -2256,7 +2247,7 @@ __metadata: languageName: node linkType: hard -"@smithy/smithy-client@npm:^3.3.5, @smithy/smithy-client@npm:^3.4.2": +"@smithy/smithy-client@npm:^3.4.2": version: 3.4.2 resolution: "@smithy/smithy-client@npm:3.4.2" dependencies: @@ -2271,7 +2262,7 @@ __metadata: languageName: node linkType: hard -"@smithy/types@npm:^3.4.2, @smithy/types@npm:^3.5.0, @smithy/types@npm:^3.6.0": +"@smithy/types@npm:^3.6.0": version: 3.6.0 resolution: "@smithy/types@npm:3.6.0" dependencies: @@ -2280,7 +2271,7 @@ __metadata: languageName: node linkType: hard -"@smithy/url-parser@npm:^3.0.6, @smithy/url-parser@npm:^3.0.8": +"@smithy/url-parser@npm:^3.0.8": version: 3.0.8 resolution: "@smithy/url-parser@npm:3.0.8" dependencies: @@ -2349,7 +2340,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-defaults-mode-browser@npm:^3.0.21": +"@smithy/util-defaults-mode-browser@npm:^3.0.25": version: 3.0.25 resolution: "@smithy/util-defaults-mode-browser@npm:3.0.25" dependencies: @@ -2362,7 +2353,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-defaults-mode-node@npm:^3.0.21": +"@smithy/util-defaults-mode-node@npm:^3.0.25": version: 3.0.25 resolution: "@smithy/util-defaults-mode-node@npm:3.0.25" dependencies: @@ -2377,7 +2368,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-endpoints@npm:^2.1.2": +"@smithy/util-endpoints@npm:^2.1.4": version: 2.1.4 resolution: "@smithy/util-endpoints@npm:2.1.4" dependencies: @@ -2397,7 +2388,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-middleware@npm:^3.0.6, @smithy/util-middleware@npm:^3.0.8": +"@smithy/util-middleware@npm:^3.0.8": version: 3.0.8 resolution: "@smithy/util-middleware@npm:3.0.8" dependencies: @@ -2407,7 +2398,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-retry@npm:^3.0.6, @smithy/util-retry@npm:^3.0.8": +"@smithy/util-retry@npm:^3.0.8": version: 3.0.8 resolution: "@smithy/util-retry@npm:3.0.8" dependencies: @@ -2418,7 +2409,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-stream@npm:^3.1.8, @smithy/util-stream@npm:^3.2.1": +"@smithy/util-stream@npm:^3.2.1": version: 3.2.1 resolution: "@smithy/util-stream@npm:3.2.1" dependencies: @@ -2463,7 +2454,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-waiter@npm:^3.1.5": +"@smithy/util-waiter@npm:^3.1.7": version: 3.1.7 resolution: "@smithy/util-waiter@npm:3.1.7" dependencies: @@ -2685,6 +2676,13 @@ __metadata: languageName: node linkType: hard +"@types/uuid@npm:^9.0.1": + version: 9.0.8 + resolution: "@types/uuid@npm:9.0.8" + checksum: 10c0/b411b93054cb1d4361919579ef3508a1f12bf15b5fdd97337d3d351bece6c921b52b6daeef89b62340fd73fd60da407878432a1af777f40648cbe53a01723489 + languageName: node + linkType: hard + "@types/yauzl@npm:^2.9.1": version: 2.10.3 resolution: "@types/yauzl@npm:2.10.3" @@ -2884,16 +2882,6 @@ __metadata: languageName: node linkType: hard -"array-buffer-byte-length@npm:^1.0.0": - version: 1.0.1 - resolution: "array-buffer-byte-length@npm:1.0.1" - dependencies: - call-bind: "npm:^1.0.5" - is-array-buffer: "npm:^3.0.4" - checksum: 10c0/f5cdf54527cd18a3d2852ddf73df79efec03829e7373a8322ef5df2b4ef546fb365c19c71d6b42d641cb6bfe0f1a2f19bc0ece5b533295f86d7c3d522f228917 - languageName: node - linkType: hard - "arrify@npm:^1.0.0, arrify@npm:^1.0.1": version: 1.0.1 resolution: "arrify@npm:1.0.1" @@ -3035,7 +3023,7 @@ __metadata: languageName: node linkType: hard -"bn@npm:^1.0.4, bn@npm:^1.0.5": +"bn@npm:^1.0.4": version: 1.0.5 resolution: "bn@npm:1.0.5" checksum: 10c0/5b2ee80b4165adf68e5c64129afbc1385fa06f9bcbb52a9ca60597c6a2b9d0d0c55bda7e2c369ed300e3fb4ee46ef7f91d088bf41ae10c9d6713dd3f67e23e1c @@ -3194,7 +3182,7 @@ __metadata: languageName: node linkType: hard -"call-bind@npm:^1.0.2, call-bind@npm:^1.0.5, call-bind@npm:^1.0.7": +"call-bind@npm:^1.0.2, call-bind@npm:^1.0.7": version: 1.0.7 resolution: "call-bind@npm:1.0.7" dependencies: @@ -3512,32 +3500,6 @@ __metadata: languageName: node linkType: hard -"deep-equal@npm:^2.2.3": - version: 2.2.3 - resolution: "deep-equal@npm:2.2.3" - dependencies: - array-buffer-byte-length: "npm:^1.0.0" - call-bind: "npm:^1.0.5" - es-get-iterator: "npm:^1.1.3" - get-intrinsic: "npm:^1.2.2" - is-arguments: "npm:^1.1.1" - is-array-buffer: "npm:^3.0.2" - is-date-object: "npm:^1.0.5" - is-regex: "npm:^1.1.4" - is-shared-array-buffer: "npm:^1.0.2" - isarray: "npm:^2.0.5" - object-is: "npm:^1.1.5" - object-keys: "npm:^1.1.1" - object.assign: "npm:^4.1.4" - regexp.prototype.flags: "npm:^1.5.1" - side-channel: "npm:^1.0.4" - which-boxed-primitive: "npm:^1.0.2" - which-collection: "npm:^1.0.1" - which-typed-array: "npm:^1.1.13" - checksum: 10c0/a48244f90fa989f63ff5ef0cc6de1e4916b48ea0220a9c89a378561960814794a5800c600254482a2c8fd2e49d6c2e196131dc983976adb024c94a42dfe4949f - languageName: node - linkType: hard - "deep-extend@npm:^0.6.0": version: 0.6.0 resolution: "deep-extend@npm:0.6.0" @@ -3824,23 +3786,6 @@ __metadata: languageName: node linkType: hard -"es-get-iterator@npm:^1.1.3": - version: 1.1.3 - resolution: "es-get-iterator@npm:1.1.3" - dependencies: - call-bind: "npm:^1.0.2" - get-intrinsic: "npm:^1.1.3" - has-symbols: "npm:^1.0.3" - is-arguments: "npm:^1.1.1" - is-map: "npm:^2.0.2" - is-set: "npm:^2.0.2" - is-string: "npm:^1.0.7" - isarray: "npm:^2.0.5" - stop-iteration-iterator: "npm:^1.0.0" - checksum: 10c0/ebd11effa79851ea75d7f079405f9d0dc185559fd65d986c6afea59a0ff2d46c2ed8675f19f03dce7429d7f6c14ff9aede8d121fbab78d75cfda6a263030bac0 - languageName: node - linkType: hard - "es6-error@npm:^4.1.1": version: 4.1.1 resolution: "es6-error@npm:4.1.1" @@ -4084,13 +4029,6 @@ __metadata: languageName: node linkType: hard -"functions-have-names@npm:^1.2.3": - version: 1.2.3 - resolution: "functions-have-names@npm:1.2.3" - checksum: 10c0/33e77fd29bddc2d9bb78ab3eb854c165909201f88c75faa8272e35899e2d35a8a642a15e7420ef945e1f64a9670d6aa3ec744106b2aa42be68ca5114025954ca - languageName: node - linkType: hard - "gaxios@npm:^6.0.0, gaxios@npm:^6.1.1": version: 6.7.1 resolution: "gaxios@npm:6.7.1" @@ -4121,7 +4059,7 @@ __metadata: languageName: node linkType: hard -"get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.1, get-intrinsic@npm:^1.2.2, get-intrinsic@npm:^1.2.4": +"get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.4": version: 1.2.4 resolution: "get-intrinsic@npm:1.2.4" dependencies: @@ -4379,13 +4317,6 @@ __metadata: languageName: node linkType: hard -"has-bigints@npm:^1.0.1": - version: 1.0.2 - resolution: "has-bigints@npm:1.0.2" - checksum: 10c0/724eb1485bfa3cdff6f18d95130aa190561f00b3fcf9f19dc640baf8176b5917c143b81ec2123f8cddb6c05164a198c94b13e1377c497705ccc8e1a80306e83b - languageName: node - linkType: hard - "has-flag@npm:^4.0.0": version: 4.0.0 resolution: "has-flag@npm:4.0.0" @@ -4409,7 +4340,7 @@ __metadata: languageName: node linkType: hard -"has-symbols@npm:^1.0.2, has-symbols@npm:^1.0.3": +"has-symbols@npm:^1.0.3": version: 1.0.3 resolution: "has-symbols@npm:1.0.3" checksum: 10c0/e6922b4345a3f37069cdfe8600febbca791c94988c01af3394d86ca3360b4b93928bbf395859158f88099cb10b19d98e3bbab7c9ff2c1bd09cf665ee90afa2c3 @@ -4641,17 +4572,6 @@ __metadata: languageName: node linkType: hard -"internal-slot@npm:^1.0.4": - version: 1.0.7 - resolution: "internal-slot@npm:1.0.7" - dependencies: - es-errors: "npm:^1.3.0" - hasown: "npm:^2.0.0" - side-channel: "npm:^1.0.4" - checksum: 10c0/f8b294a4e6ea3855fc59551bbf35f2b832cf01fd5e6e2a97f5c201a071cc09b49048f856e484b67a6c721da5e55736c5b6ddafaf19e2dbeb4a3ff1821680de6c - languageName: node - linkType: hard - "ip-address@npm:^9.0.5": version: 9.0.5 resolution: "ip-address@npm:9.0.5" @@ -4679,7 +4599,7 @@ __metadata: languageName: node linkType: hard -"is-arguments@npm:^1.0.4, is-arguments@npm:^1.1.1": +"is-arguments@npm:^1.0.4": version: 1.1.1 resolution: "is-arguments@npm:1.1.1" dependencies: @@ -4689,16 +4609,6 @@ __metadata: languageName: node linkType: hard -"is-array-buffer@npm:^3.0.2, is-array-buffer@npm:^3.0.4": - version: 3.0.4 - resolution: "is-array-buffer@npm:3.0.4" - dependencies: - call-bind: "npm:^1.0.2" - get-intrinsic: "npm:^1.2.1" - checksum: 10c0/42a49d006cc6130bc5424eae113e948c146f31f9d24460fc0958f855d9d810e6fd2e4519bf19aab75179af9c298ea6092459d8cafdec523cd19e529b26eab860 - languageName: node - linkType: hard - "is-arrayish@npm:^0.2.1": version: 0.2.1 resolution: "is-arrayish@npm:0.2.1" @@ -4706,25 +4616,6 @@ __metadata: languageName: node linkType: hard -"is-bigint@npm:^1.0.1": - version: 1.0.4 - resolution: "is-bigint@npm:1.0.4" - dependencies: - has-bigints: "npm:^1.0.1" - checksum: 10c0/eb9c88e418a0d195ca545aff2b715c9903d9b0a5033bc5922fec600eb0c3d7b1ee7f882dbf2e0d5a6e694e42391be3683e4368737bd3c4a77f8ac293e7773696 - languageName: node - linkType: hard - -"is-boolean-object@npm:^1.1.0": - version: 1.1.2 - resolution: "is-boolean-object@npm:1.1.2" - dependencies: - call-bind: "npm:^1.0.2" - has-tostringtag: "npm:^1.0.0" - checksum: 10c0/6090587f8a8a8534c0f816da868bc94f32810f08807aa72fa7e79f7e11c466d281486ffe7a788178809c2aa71fe3e700b167fe80dd96dad68026bfff8ebf39f7 - languageName: node - linkType: hard - "is-buffer@npm:^2.0.0": version: 2.0.5 resolution: "is-buffer@npm:2.0.5" @@ -4748,15 +4639,6 @@ __metadata: languageName: node linkType: hard -"is-date-object@npm:^1.0.5": - version: 1.0.5 - resolution: "is-date-object@npm:1.0.5" - dependencies: - has-tostringtag: "npm:^1.0.0" - checksum: 10c0/eed21e5dcc619c48ccef804dfc83a739dbb2abee6ca202838ee1bd5f760fe8d8a93444f0d49012ad19bb7c006186e2884a1b92f6e1c056da7fd23d0a9ad5992e - languageName: node - linkType: hard - "is-decimal@npm:^1.0.0": version: 1.0.4 resolution: "is-decimal@npm:1.0.4" @@ -4810,22 +4692,6 @@ __metadata: languageName: node linkType: hard -"is-map@npm:^2.0.2, is-map@npm:^2.0.3": - version: 2.0.3 - resolution: "is-map@npm:2.0.3" - checksum: 10c0/2c4d431b74e00fdda7162cd8e4b763d6f6f217edf97d4f8538b94b8702b150610e2c64961340015fe8df5b1fcee33ccd2e9b62619c4a8a3a155f8de6d6d355fc - languageName: node - linkType: hard - -"is-number-object@npm:^1.0.4": - version: 1.0.7 - resolution: "is-number-object@npm:1.0.7" - dependencies: - has-tostringtag: "npm:^1.0.0" - checksum: 10c0/aad266da1e530f1804a2b7bd2e874b4869f71c98590b3964f9d06cc9869b18f8d1f4778f838ecd2a11011bce20aeecb53cb269ba916209b79c24580416b74b1b - languageName: node - linkType: hard - "is-number@npm:^7.0.0": version: 7.0.0 resolution: "is-number@npm:7.0.0" @@ -4847,32 +4713,6 @@ __metadata: languageName: node linkType: hard -"is-regex@npm:^1.1.4": - version: 1.1.4 - resolution: "is-regex@npm:1.1.4" - dependencies: - call-bind: "npm:^1.0.2" - has-tostringtag: "npm:^1.0.0" - checksum: 10c0/bb72aae604a69eafd4a82a93002058c416ace8cde95873589a97fc5dac96a6c6c78a9977d487b7b95426a8f5073969124dd228f043f9f604f041f32fcc465fc1 - languageName: node - linkType: hard - -"is-set@npm:^2.0.2, is-set@npm:^2.0.3": - version: 2.0.3 - resolution: "is-set@npm:2.0.3" - checksum: 10c0/f73732e13f099b2dc879c2a12341cfc22ccaca8dd504e6edae26484bd5707a35d503fba5b4daad530a9b088ced1ae6c9d8200fd92e09b428fe14ea79ce8080b7 - languageName: node - linkType: hard - -"is-shared-array-buffer@npm:^1.0.2": - version: 1.0.3 - resolution: "is-shared-array-buffer@npm:1.0.3" - dependencies: - call-bind: "npm:^1.0.7" - checksum: 10c0/adc11ab0acbc934a7b9e5e9d6c588d4ec6682f6fea8cda5180721704fa32927582ede5b123349e32517fdadd07958973d24716c80e7ab198970c47acc09e59c7 - languageName: node - linkType: hard - "is-ssh@npm:^1.4.0": version: 1.4.0 resolution: "is-ssh@npm:1.4.0" @@ -4889,24 +4729,6 @@ __metadata: languageName: node linkType: hard -"is-string@npm:^1.0.5, is-string@npm:^1.0.7": - version: 1.0.7 - resolution: "is-string@npm:1.0.7" - dependencies: - has-tostringtag: "npm:^1.0.0" - checksum: 10c0/905f805cbc6eedfa678aaa103ab7f626aac9ebbdc8737abb5243acaa61d9820f8edc5819106b8fcd1839e33db21de9f0116ae20de380c8382d16dc2a601921f6 - languageName: node - linkType: hard - -"is-symbol@npm:^1.0.3": - version: 1.0.4 - resolution: "is-symbol@npm:1.0.4" - dependencies: - has-symbols: "npm:^1.0.2" - checksum: 10c0/9381dd015f7c8906154dbcbf93fad769de16b4b961edc94f88d26eb8c555935caa23af88bda0c93a18e65560f6d7cca0fd5a3f8a8e1df6f1abbb9bead4502ef7 - languageName: node - linkType: hard - "is-typed-array@npm:^1.1.3": version: 1.1.13 resolution: "is-typed-array@npm:1.1.13" @@ -4923,23 +4745,6 @@ __metadata: languageName: node linkType: hard -"is-weakmap@npm:^2.0.2": - version: 2.0.2 - resolution: "is-weakmap@npm:2.0.2" - checksum: 10c0/443c35bb86d5e6cc5929cd9c75a4024bb0fff9586ed50b092f94e700b89c43a33b186b76dbc6d54f3d3d09ece689ab38dcdc1af6a482cbe79c0f2da0a17f1299 - languageName: node - linkType: hard - -"is-weakset@npm:^2.0.3": - version: 2.0.3 - resolution: "is-weakset@npm:2.0.3" - dependencies: - call-bind: "npm:^1.0.7" - get-intrinsic: "npm:^1.2.4" - checksum: 10c0/8ad6141b6a400e7ce7c7442a13928c676d07b1f315ab77d9912920bf5f4170622f43126f111615788f26c3b1871158a6797c862233124507db0bcc33a9537d1a - languageName: node - linkType: hard - "is-windows@npm:^1.0.2": version: 1.0.2 resolution: "is-windows@npm:1.0.2" @@ -4947,13 +4752,6 @@ __metadata: languageName: node linkType: hard -"isarray@npm:^2.0.5": - version: 2.0.5 - resolution: "isarray@npm:2.0.5" - checksum: 10c0/4199f14a7a13da2177c66c31080008b7124331956f47bca57dd0b6ea9f11687aa25e565a2c7a2b519bc86988d10398e3049a1f5df13c9f6b7664154690ae79fd - languageName: node - linkType: hard - "isarray@npm:~1.0.0": version: 1.0.0 resolution: "isarray@npm:1.0.0" @@ -5789,7 +5587,7 @@ __metadata: version: 0.0.0-use.local resolution: "ng-renovate@workspace:." dependencies: - renovate: "npm:39.9.5" + renovate: "npm:39.12.0" languageName: unknown linkType: soft @@ -5904,16 +5702,6 @@ __metadata: languageName: node linkType: hard -"object-is@npm:^1.1.5": - version: 1.1.6 - resolution: "object-is@npm:1.1.6" - dependencies: - call-bind: "npm:^1.0.7" - define-properties: "npm:^1.2.1" - checksum: 10c0/506af444c4dce7f8e31f34fc549e2fb8152d6b9c4a30c6e62852badd7f520b579c679af433e7a072f9d78eb7808d230dc12e1cf58da9154dfbf8813099ea0fe0 - languageName: node - linkType: hard - "object-keys@npm:^1.1.1": version: 1.1.1 resolution: "object-keys@npm:1.1.1" @@ -5921,18 +5709,6 @@ __metadata: languageName: node linkType: hard -"object.assign@npm:^4.1.4": - version: 4.1.5 - resolution: "object.assign@npm:4.1.5" - dependencies: - call-bind: "npm:^1.0.5" - define-properties: "npm:^1.2.1" - has-symbols: "npm:^1.0.3" - object-keys: "npm:^1.1.1" - checksum: 10c0/60108e1fa2706f22554a4648299b0955236c62b3685c52abf4988d14fffb0e7731e00aa8c6448397e3eb63d087dcc124a9f21e1980f36d0b2667f3c18bacd469 - languageName: node - linkType: hard - "once@npm:^1.3.0, once@npm:^1.3.1, once@npm:^1.4.0": version: 1.4.0 resolution: "once@npm:1.4.0" @@ -6472,18 +6248,6 @@ __metadata: languageName: node linkType: hard -"regexp.prototype.flags@npm:^1.5.1": - version: 1.5.3 - resolution: "regexp.prototype.flags@npm:1.5.3" - dependencies: - call-bind: "npm:^1.0.7" - define-properties: "npm:^1.2.1" - es-errors: "npm:^1.3.0" - set-function-name: "npm:^2.0.2" - checksum: 10c0/e1a7c7dc42cc91abf73e47a269c4b3a8f225321b7f617baa25821f6a123a91d23a73b5152f21872c566e699207e1135d075d2251cd3e84cc96d82a910adf6020 - languageName: node - linkType: hard - "remark-github@npm:10.1.0": version: 10.1.0 resolution: "remark-github@npm:10.1.0" @@ -6524,34 +6288,34 @@ __metadata: languageName: node linkType: hard -"renovate@npm:39.9.5": - version: 39.9.5 - resolution: "renovate@npm:39.9.5" +"renovate@npm:39.12.0": + version: 39.12.0 + resolution: "renovate@npm:39.12.0" dependencies: - "@aws-sdk/client-codecommit": "npm:3.658.1" - "@aws-sdk/client-ec2": "npm:3.658.1" - "@aws-sdk/client-ecr": "npm:3.658.1" - "@aws-sdk/client-rds": "npm:3.658.1" - "@aws-sdk/client-s3": "npm:3.658.1" - "@aws-sdk/credential-providers": "npm:3.658.1" + "@aws-sdk/client-codecommit": "npm:3.687.0" + "@aws-sdk/client-ec2": "npm:3.687.0" + "@aws-sdk/client-ecr": "npm:3.687.0" + "@aws-sdk/client-rds": "npm:3.687.0" + "@aws-sdk/client-s3": "npm:3.689.0" + "@aws-sdk/credential-providers": "npm:3.687.0" "@breejs/later": "npm:4.2.0" "@cdktf/hcl2json": "npm:0.20.9" "@opentelemetry/api": "npm:1.9.0" "@opentelemetry/context-async-hooks": "npm:1.27.0" - "@opentelemetry/exporter-trace-otlp-http": "npm:0.54.0" - "@opentelemetry/instrumentation": "npm:0.54.0" + "@opentelemetry/exporter-trace-otlp-http": "npm:0.54.1" + "@opentelemetry/instrumentation": "npm:0.54.1" "@opentelemetry/instrumentation-bunyan": "npm:0.42.0" - "@opentelemetry/instrumentation-http": "npm:0.54.0" + "@opentelemetry/instrumentation-http": "npm:0.54.1" "@opentelemetry/resources": "npm:1.27.0" "@opentelemetry/sdk-trace-base": "npm:1.27.0" "@opentelemetry/sdk-trace-node": "npm:1.27.0" "@opentelemetry/semantic-conventions": "npm:1.27.0" "@qnighy/marshal": "npm:0.1.3" "@renovatebot/detect-tools": "npm:1.1.0" - "@renovatebot/kbpgp": "npm:3.0.1" + "@renovatebot/kbpgp": "npm:4.0.0" "@renovatebot/osv-offline": "npm:1.5.10" - "@renovatebot/pep440": "npm:3.0.20" - "@renovatebot/ruby-semver": "npm:3.0.23" + "@renovatebot/pep440": "npm:4.0.1" + "@renovatebot/ruby-semver": "npm:4.0.0" "@sindresorhus/is": "npm:4.6.0" "@yarnpkg/core": "npm:4.1.4" "@yarnpkg/parsers": "npm:3.0.2" @@ -6649,7 +6413,7 @@ __metadata: bin: renovate: dist/renovate.js renovate-config-validator: dist/config-validator.js - checksum: 10c0/335c89f177a63ef5763b82842f9c097c19903a9a4ed316e097258987b0dc5d0cdb11a212387f5f1e2caa2dc321539b1f559f8e8c8974a9aa49d4b8efedb4599a + checksum: 10c0/981232a062578a214a3834386ba72faf8d24c17ecbe699e506630fe8f907860bf7ce214f79efd085f7eff0387c8e89ca4d00e3b64c7c0e320a643639c7bb50db languageName: node linkType: hard @@ -6876,18 +6640,6 @@ __metadata: languageName: node linkType: hard -"set-function-name@npm:^2.0.2": - version: 2.0.2 - resolution: "set-function-name@npm:2.0.2" - dependencies: - define-data-property: "npm:^1.1.4" - es-errors: "npm:^1.3.0" - functions-have-names: "npm:^1.2.3" - has-property-descriptors: "npm:^1.0.2" - checksum: 10c0/fce59f90696c450a8523e754abb305e2b8c73586452619c2bad5f7bf38c7b6b4651895c9db895679c5bef9554339cf3ef1c329b66ece3eda7255785fbe299316 - languageName: node - linkType: hard - "shebang-command@npm:^2.0.0": version: 2.0.0 resolution: "shebang-command@npm:2.0.0" @@ -6918,7 +6670,7 @@ __metadata: languageName: node linkType: hard -"side-channel@npm:^1.0.4, side-channel@npm:^1.0.6": +"side-channel@npm:^1.0.6": version: 1.0.6 resolution: "side-channel@npm:1.0.6" dependencies: @@ -7100,15 +6852,6 @@ __metadata: languageName: node linkType: hard -"stop-iteration-iterator@npm:^1.0.0": - version: 1.0.0 - resolution: "stop-iteration-iterator@npm:1.0.0" - dependencies: - internal-slot: "npm:^1.0.4" - checksum: 10c0/c4158d6188aac510d9e92925b58709207bd94699e9c31186a040c80932a687f84a51356b5895e6dc72710aad83addb9411c22171832c9ae0e6e11b7d61b0dfb9 - languageName: node - linkType: hard - "string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^4.1.0": version: 4.2.3 resolution: "string-width@npm:4.2.3" @@ -7674,32 +7417,7 @@ __metadata: languageName: node linkType: hard -"which-boxed-primitive@npm:^1.0.2": - version: 1.0.2 - resolution: "which-boxed-primitive@npm:1.0.2" - dependencies: - is-bigint: "npm:^1.0.1" - is-boolean-object: "npm:^1.1.0" - is-number-object: "npm:^1.0.4" - is-string: "npm:^1.0.5" - is-symbol: "npm:^1.0.3" - checksum: 10c0/0a62a03c00c91dd4fb1035b2f0733c341d805753b027eebd3a304b9cb70e8ce33e25317add2fe9b5fea6f53a175c0633ae701ff812e604410ddd049777cd435e - languageName: node - linkType: hard - -"which-collection@npm:^1.0.1": - version: 1.0.2 - resolution: "which-collection@npm:1.0.2" - dependencies: - is-map: "npm:^2.0.3" - is-set: "npm:^2.0.3" - is-weakmap: "npm:^2.0.2" - is-weakset: "npm:^2.0.3" - checksum: 10c0/3345fde20964525a04cdf7c4a96821f85f0cc198f1b2ecb4576e08096746d129eb133571998fe121c77782ac8f21cbd67745a3d35ce100d26d4e684c142ea1f2 - languageName: node - linkType: hard - -"which-typed-array@npm:^1.1.13, which-typed-array@npm:^1.1.14, which-typed-array@npm:^1.1.2": +"which-typed-array@npm:^1.1.14, which-typed-array@npm:^1.1.2": version: 1.1.15 resolution: "which-typed-array@npm:1.1.15" dependencies: diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 3be897472..6d3c5a76a 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -27,10 +27,10 @@ jobs: - name: Checkout repository uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Initialize CodeQL - uses: github/codeql-action/init@4f3212b61783c3c68e8309a0f18a699764811cda # v3.27.1 + uses: github/codeql-action/init@396bb3e45325a47dd9ef434068033c6d5bb0d11a # v3.27.3 with: languages: ${{ matrix.language }} - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@4f3212b61783c3c68e8309a0f18a699764811cda # v3.27.1 + uses: github/codeql-action/analyze@396bb3e45325a47dd9ef434068033c6d5bb0d11a # v3.27.3 with: category: '/language:${{matrix.language}}' diff --git a/github-actions/branch-manager/main.js b/github-actions/branch-manager/main.js index 49517e77c..dd4558058 100644 --- a/github-actions/branch-manager/main.js +++ b/github-actions/branch-manager/main.js @@ -21507,6 +21507,9 @@ var require_connect2 = __commonJS({ }; }; function onConnectTimeout(socket, opts) { + if (socket == null) { + return; + } let message = "Connect Timeout Error"; if (Array.isArray(socket.autoSelectFamilyAttemptedAddresses)) { message += ` (attempted addresses: ${socket.autoSelectFamilyAttemptedAddresses.join(", ")},`; @@ -22438,6 +22441,7 @@ var require_webidl2 = __commonJS({ ""(exports, module) { "use strict"; var { types, inspect } = __require("node:util"); + var { markAsUncloneable } = __require("node:worker_threads"); var { toUSVString } = require_util8(); var webidl = {}; webidl.converters = {}; @@ -22512,6 +22516,8 @@ var require_webidl2 = __commonJS({ } } }; + webidl.util.markAsUncloneable = markAsUncloneable || (() => { + }); webidl.util.ConvertToInt = function(V, bitLength, signedness, opts) { let upperBound; let lowerBound; @@ -23795,6 +23801,7 @@ var require_formdata2 = __commonJS({ var File = globalThis.File ?? NativeFile; var FormData = class { constructor(form) { + webidl.util.markAsUncloneable(this); if (form !== void 0) { throw webidl.errors.conversionFailed({ prefix: "FormData constructor", @@ -27761,7 +27768,7 @@ var require_retry_handler = __commonJS({ ); return false; } - const { start, size, end = size } = contentRange; + const { start, size, end = size - 1 } = contentRange; assert(this.start === start, "content-range mismatch"); assert(this.end == null || this.end === end, "content-range mismatch"); this.resume = resume; @@ -27778,7 +27785,7 @@ var require_retry_handler = __commonJS({ statusMessage ); } - const { start, size, end = size } = range; + const { start, size, end = size - 1 } = range; assert( start != null && Number.isFinite(start), "content-range mismatch" @@ -27789,7 +27796,7 @@ var require_retry_handler = __commonJS({ } if (this.end == null) { const contentLength = headers["content-length"]; - this.end = contentLength != null ? Number(contentLength) : null; + this.end = contentLength != null ? Number(contentLength) - 1 : null; } assert(Number.isFinite(this.start)); assert( @@ -30283,6 +30290,7 @@ var require_headers2 = __commonJS({ #guard; #headersList; constructor(init = void 0) { + webidl.util.markAsUncloneable(this); if (init === kConstruct) { return; } @@ -30544,6 +30552,7 @@ var require_response2 = __commonJS({ return responseObject; } constructor(body = null, init = {}) { + webidl.util.markAsUncloneable(this); if (body === kConstruct) { return; } @@ -30961,6 +30970,7 @@ var require_request4 = __commonJS({ var Request = class { constructor(input, init = {}) { var _a2, _b; + webidl.util.markAsUncloneable(this); if (input === kConstruct) { return; } @@ -32485,7 +32495,7 @@ var require_fetch2 = __commonJS({ const decoders = []; const willFollow = location && request2.redirect === "follow" && redirectStatusSet.has(status); if (codings.length !== 0 && request2.method !== "HEAD" && request2.method !== "CONNECT" && !nullBodyStatus.includes(status) && !willFollow) { - for (let i = 0; i < codings.length; ++i) { + for (let i = codings.length - 1; i >= 0; --i) { const coding = codings[i]; if (coding === "x-gzip" || coding === "gzip") { decoders.push(zlib.createGunzip({ @@ -33421,6 +33431,7 @@ var require_cache2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); this.#relevantRequestResponseList = arguments[1]; } async match(request2, options = {}) { @@ -33925,6 +33936,7 @@ var require_cachestorage2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); } async match(request2, options = {}) { webidl.brandCheck(this, CacheStorage); @@ -34437,6 +34449,7 @@ var require_events2 = __commonJS({ constructor(type, eventInitDict = {}) { if (type === kConstruct) { super(arguments[1], arguments[2]); + webidl.util.markAsUncloneable(this); return; } const prefix = "MessageEvent constructor"; @@ -34445,6 +34458,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.MessageEventInit(eventInitDict, prefix, "eventInitDict"); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get data() { webidl.brandCheck(this, MessageEvent); @@ -34504,6 +34518,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.CloseEventInit(eventInitDict); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get wasClean() { webidl.brandCheck(this, CloseEvent); @@ -34524,6 +34539,7 @@ var require_events2 = __commonJS({ const prefix = "ErrorEvent constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); super(type, eventInitDict); + webidl.util.markAsUncloneable(this); type = webidl.converters.DOMString(type, prefix, "type"); eventInitDict = webidl.converters.ErrorEventInit(eventInitDict ?? {}); this.#eventInit = eventInitDict; @@ -35626,6 +35642,7 @@ var require_websocket2 = __commonJS({ #sendQueue; constructor(url, protocols = []) { super(); + webidl.util.markAsUncloneable(this); const prefix = "WebSocket constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); const options = webidl.converters["DOMString or sequence or WebSocketInit"](protocols, prefix, "options"); @@ -36210,6 +36227,7 @@ var require_eventsource = __commonJS({ #state; constructor(url, eventSourceInitDict = {}) { super(); + webidl.util.markAsUncloneable(this); const prefix = "EventSource constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); if (!experimentalWarned) { diff --git a/github-actions/commit-message-based-labels/main.js b/github-actions/commit-message-based-labels/main.js index ece1cac69..7784f9a28 100644 --- a/github-actions/commit-message-based-labels/main.js +++ b/github-actions/commit-message-based-labels/main.js @@ -21507,6 +21507,9 @@ var require_connect2 = __commonJS({ }; }; function onConnectTimeout(socket, opts) { + if (socket == null) { + return; + } let message = "Connect Timeout Error"; if (Array.isArray(socket.autoSelectFamilyAttemptedAddresses)) { message += ` (attempted addresses: ${socket.autoSelectFamilyAttemptedAddresses.join(", ")},`; @@ -22438,6 +22441,7 @@ var require_webidl2 = __commonJS({ ""(exports, module) { "use strict"; var { types, inspect } = __require("node:util"); + var { markAsUncloneable } = __require("node:worker_threads"); var { toUSVString } = require_util8(); var webidl = {}; webidl.converters = {}; @@ -22512,6 +22516,8 @@ var require_webidl2 = __commonJS({ } } }; + webidl.util.markAsUncloneable = markAsUncloneable || (() => { + }); webidl.util.ConvertToInt = function(V, bitLength, signedness, opts) { let upperBound; let lowerBound; @@ -23795,6 +23801,7 @@ var require_formdata2 = __commonJS({ var File = globalThis.File ?? NativeFile; var FormData = class { constructor(form) { + webidl.util.markAsUncloneable(this); if (form !== void 0) { throw webidl.errors.conversionFailed({ prefix: "FormData constructor", @@ -27761,7 +27768,7 @@ var require_retry_handler = __commonJS({ ); return false; } - const { start, size, end = size } = contentRange; + const { start, size, end = size - 1 } = contentRange; assert(this.start === start, "content-range mismatch"); assert(this.end == null || this.end === end, "content-range mismatch"); this.resume = resume; @@ -27778,7 +27785,7 @@ var require_retry_handler = __commonJS({ statusMessage ); } - const { start, size, end = size } = range; + const { start, size, end = size - 1 } = range; assert( start != null && Number.isFinite(start), "content-range mismatch" @@ -27789,7 +27796,7 @@ var require_retry_handler = __commonJS({ } if (this.end == null) { const contentLength = headers["content-length"]; - this.end = contentLength != null ? Number(contentLength) : null; + this.end = contentLength != null ? Number(contentLength) - 1 : null; } assert(Number.isFinite(this.start)); assert( @@ -30283,6 +30290,7 @@ var require_headers2 = __commonJS({ #guard; #headersList; constructor(init = void 0) { + webidl.util.markAsUncloneable(this); if (init === kConstruct) { return; } @@ -30544,6 +30552,7 @@ var require_response2 = __commonJS({ return responseObject; } constructor(body = null, init = {}) { + webidl.util.markAsUncloneable(this); if (body === kConstruct) { return; } @@ -30961,6 +30970,7 @@ var require_request4 = __commonJS({ var Request = class { constructor(input, init = {}) { var _a3, _b; + webidl.util.markAsUncloneable(this); if (input === kConstruct) { return; } @@ -32485,7 +32495,7 @@ var require_fetch2 = __commonJS({ const decoders = []; const willFollow = location && request2.redirect === "follow" && redirectStatusSet.has(status); if (codings.length !== 0 && request2.method !== "HEAD" && request2.method !== "CONNECT" && !nullBodyStatus.includes(status) && !willFollow) { - for (let i = 0; i < codings.length; ++i) { + for (let i = codings.length - 1; i >= 0; --i) { const coding = codings[i]; if (coding === "x-gzip" || coding === "gzip") { decoders.push(zlib.createGunzip({ @@ -33421,6 +33431,7 @@ var require_cache2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); this.#relevantRequestResponseList = arguments[1]; } async match(request2, options = {}) { @@ -33925,6 +33936,7 @@ var require_cachestorage2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); } async match(request2, options = {}) { webidl.brandCheck(this, CacheStorage); @@ -34437,6 +34449,7 @@ var require_events2 = __commonJS({ constructor(type, eventInitDict = {}) { if (type === kConstruct) { super(arguments[1], arguments[2]); + webidl.util.markAsUncloneable(this); return; } const prefix = "MessageEvent constructor"; @@ -34445,6 +34458,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.MessageEventInit(eventInitDict, prefix, "eventInitDict"); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get data() { webidl.brandCheck(this, MessageEvent); @@ -34504,6 +34518,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.CloseEventInit(eventInitDict); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get wasClean() { webidl.brandCheck(this, CloseEvent); @@ -34524,6 +34539,7 @@ var require_events2 = __commonJS({ const prefix = "ErrorEvent constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); super(type, eventInitDict); + webidl.util.markAsUncloneable(this); type = webidl.converters.DOMString(type, prefix, "type"); eventInitDict = webidl.converters.ErrorEventInit(eventInitDict ?? {}); this.#eventInit = eventInitDict; @@ -35626,6 +35642,7 @@ var require_websocket2 = __commonJS({ #sendQueue; constructor(url, protocols = []) { super(); + webidl.util.markAsUncloneable(this); const prefix = "WebSocket constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); const options = webidl.converters["DOMString or sequence or WebSocketInit"](protocols, prefix, "options"); @@ -36210,6 +36227,7 @@ var require_eventsource = __commonJS({ #state; constructor(url, eventSourceInitDict = {}) { super(); + webidl.util.markAsUncloneable(this); const prefix = "EventSource constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); if (!experimentalWarned) { diff --git a/github-actions/create-pr-for-changes/main.js b/github-actions/create-pr-for-changes/main.js index 1f3706a14..b156b1ec9 100644 --- a/github-actions/create-pr-for-changes/main.js +++ b/github-actions/create-pr-for-changes/main.js @@ -21502,6 +21502,9 @@ var require_connect2 = __commonJS({ }; }; function onConnectTimeout(socket, opts) { + if (socket == null) { + return; + } let message = "Connect Timeout Error"; if (Array.isArray(socket.autoSelectFamilyAttemptedAddresses)) { message += ` (attempted addresses: ${socket.autoSelectFamilyAttemptedAddresses.join(", ")},`; @@ -22433,6 +22436,7 @@ var require_webidl2 = __commonJS({ ""(exports, module) { "use strict"; var { types: types2, inspect } = __require("node:util"); + var { markAsUncloneable } = __require("node:worker_threads"); var { toUSVString } = require_util8(); var webidl = {}; webidl.converters = {}; @@ -22507,6 +22511,8 @@ var require_webidl2 = __commonJS({ } } }; + webidl.util.markAsUncloneable = markAsUncloneable || (() => { + }); webidl.util.ConvertToInt = function(V, bitLength, signedness, opts) { let upperBound; let lowerBound; @@ -23790,6 +23796,7 @@ var require_formdata2 = __commonJS({ var File = globalThis.File ?? NativeFile; var FormData = class { constructor(form) { + webidl.util.markAsUncloneable(this); if (form !== void 0) { throw webidl.errors.conversionFailed({ prefix: "FormData constructor", @@ -27756,7 +27763,7 @@ var require_retry_handler = __commonJS({ ); return false; } - const { start, size, end = size } = contentRange; + const { start, size, end = size - 1 } = contentRange; assert(this.start === start, "content-range mismatch"); assert(this.end == null || this.end === end, "content-range mismatch"); this.resume = resume; @@ -27773,7 +27780,7 @@ var require_retry_handler = __commonJS({ statusMessage ); } - const { start, size, end = size } = range; + const { start, size, end = size - 1 } = range; assert( start != null && Number.isFinite(start), "content-range mismatch" @@ -27784,7 +27791,7 @@ var require_retry_handler = __commonJS({ } if (this.end == null) { const contentLength = headers["content-length"]; - this.end = contentLength != null ? Number(contentLength) : null; + this.end = contentLength != null ? Number(contentLength) - 1 : null; } assert(Number.isFinite(this.start)); assert( @@ -30278,6 +30285,7 @@ var require_headers2 = __commonJS({ #guard; #headersList; constructor(init = void 0) { + webidl.util.markAsUncloneable(this); if (init === kConstruct) { return; } @@ -30539,6 +30547,7 @@ var require_response2 = __commonJS({ return responseObject; } constructor(body = null, init = {}) { + webidl.util.markAsUncloneable(this); if (body === kConstruct) { return; } @@ -30956,6 +30965,7 @@ var require_request4 = __commonJS({ var Request = class { constructor(input, init = {}) { var _a, _b; + webidl.util.markAsUncloneable(this); if (input === kConstruct) { return; } @@ -32480,7 +32490,7 @@ var require_fetch2 = __commonJS({ const decoders = []; const willFollow = location && request2.redirect === "follow" && redirectStatusSet.has(status); if (codings.length !== 0 && request2.method !== "HEAD" && request2.method !== "CONNECT" && !nullBodyStatus.includes(status) && !willFollow) { - for (let i = 0; i < codings.length; ++i) { + for (let i = codings.length - 1; i >= 0; --i) { const coding = codings[i]; if (coding === "x-gzip" || coding === "gzip") { decoders.push(zlib.createGunzip({ @@ -33416,6 +33426,7 @@ var require_cache2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); this.#relevantRequestResponseList = arguments[1]; } async match(request2, options = {}) { @@ -33920,6 +33931,7 @@ var require_cachestorage2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); } async match(request2, options = {}) { webidl.brandCheck(this, CacheStorage); @@ -34432,6 +34444,7 @@ var require_events2 = __commonJS({ constructor(type, eventInitDict = {}) { if (type === kConstruct) { super(arguments[1], arguments[2]); + webidl.util.markAsUncloneable(this); return; } const prefix = "MessageEvent constructor"; @@ -34440,6 +34453,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.MessageEventInit(eventInitDict, prefix, "eventInitDict"); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get data() { webidl.brandCheck(this, MessageEvent); @@ -34499,6 +34513,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.CloseEventInit(eventInitDict); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get wasClean() { webidl.brandCheck(this, CloseEvent); @@ -34519,6 +34534,7 @@ var require_events2 = __commonJS({ const prefix = "ErrorEvent constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); super(type, eventInitDict); + webidl.util.markAsUncloneable(this); type = webidl.converters.DOMString(type, prefix, "type"); eventInitDict = webidl.converters.ErrorEventInit(eventInitDict ?? {}); this.#eventInit = eventInitDict; @@ -35621,6 +35637,7 @@ var require_websocket2 = __commonJS({ #sendQueue; constructor(url, protocols = []) { super(); + webidl.util.markAsUncloneable(this); const prefix = "WebSocket constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); const options = webidl.converters["DOMString or sequence or WebSocketInit"](protocols, prefix, "options"); @@ -36205,6 +36222,7 @@ var require_eventsource = __commonJS({ #state; constructor(url, eventSourceInitDict = {}) { super(); + webidl.util.markAsUncloneable(this); const prefix = "EventSource constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); if (!experimentalWarned) { diff --git a/github-actions/feature-request/main.js b/github-actions/feature-request/main.js index c7efcf244..074940d7f 100644 --- a/github-actions/feature-request/main.js +++ b/github-actions/feature-request/main.js @@ -21507,6 +21507,9 @@ var require_connect2 = __commonJS({ }; }; function onConnectTimeout(socket, opts) { + if (socket == null) { + return; + } let message = "Connect Timeout Error"; if (Array.isArray(socket.autoSelectFamilyAttemptedAddresses)) { message += ` (attempted addresses: ${socket.autoSelectFamilyAttemptedAddresses.join(", ")},`; @@ -22438,6 +22441,7 @@ var require_webidl2 = __commonJS({ ""(exports, module) { "use strict"; var { types, inspect } = __require("node:util"); + var { markAsUncloneable } = __require("node:worker_threads"); var { toUSVString } = require_util8(); var webidl = {}; webidl.converters = {}; @@ -22512,6 +22516,8 @@ var require_webidl2 = __commonJS({ } } }; + webidl.util.markAsUncloneable = markAsUncloneable || (() => { + }); webidl.util.ConvertToInt = function(V, bitLength, signedness, opts) { let upperBound; let lowerBound; @@ -23795,6 +23801,7 @@ var require_formdata2 = __commonJS({ var File = globalThis.File ?? NativeFile; var FormData = class { constructor(form) { + webidl.util.markAsUncloneable(this); if (form !== void 0) { throw webidl.errors.conversionFailed({ prefix: "FormData constructor", @@ -27761,7 +27768,7 @@ var require_retry_handler = __commonJS({ ); return false; } - const { start, size, end = size } = contentRange; + const { start, size, end = size - 1 } = contentRange; assert(this.start === start, "content-range mismatch"); assert(this.end == null || this.end === end, "content-range mismatch"); this.resume = resume; @@ -27778,7 +27785,7 @@ var require_retry_handler = __commonJS({ statusMessage ); } - const { start, size, end = size } = range; + const { start, size, end = size - 1 } = range; assert( start != null && Number.isFinite(start), "content-range mismatch" @@ -27789,7 +27796,7 @@ var require_retry_handler = __commonJS({ } if (this.end == null) { const contentLength = headers["content-length"]; - this.end = contentLength != null ? Number(contentLength) : null; + this.end = contentLength != null ? Number(contentLength) - 1 : null; } assert(Number.isFinite(this.start)); assert( @@ -30283,6 +30290,7 @@ var require_headers2 = __commonJS({ #guard; #headersList; constructor(init = void 0) { + webidl.util.markAsUncloneable(this); if (init === kConstruct) { return; } @@ -30544,6 +30552,7 @@ var require_response2 = __commonJS({ return responseObject; } constructor(body = null, init = {}) { + webidl.util.markAsUncloneable(this); if (body === kConstruct) { return; } @@ -30961,6 +30970,7 @@ var require_request4 = __commonJS({ var Request = class { constructor(input, init = {}) { var _a2, _b; + webidl.util.markAsUncloneable(this); if (input === kConstruct) { return; } @@ -32485,7 +32495,7 @@ var require_fetch2 = __commonJS({ const decoders = []; const willFollow = location && request2.redirect === "follow" && redirectStatusSet.has(status); if (codings.length !== 0 && request2.method !== "HEAD" && request2.method !== "CONNECT" && !nullBodyStatus.includes(status) && !willFollow) { - for (let i = 0; i < codings.length; ++i) { + for (let i = codings.length - 1; i >= 0; --i) { const coding = codings[i]; if (coding === "x-gzip" || coding === "gzip") { decoders.push(zlib.createGunzip({ @@ -33421,6 +33431,7 @@ var require_cache2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); this.#relevantRequestResponseList = arguments[1]; } async match(request2, options = {}) { @@ -33925,6 +33936,7 @@ var require_cachestorage2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); } async match(request2, options = {}) { webidl.brandCheck(this, CacheStorage); @@ -34437,6 +34449,7 @@ var require_events2 = __commonJS({ constructor(type, eventInitDict = {}) { if (type === kConstruct) { super(arguments[1], arguments[2]); + webidl.util.markAsUncloneable(this); return; } const prefix = "MessageEvent constructor"; @@ -34445,6 +34458,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.MessageEventInit(eventInitDict, prefix, "eventInitDict"); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get data() { webidl.brandCheck(this, MessageEvent); @@ -34504,6 +34518,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.CloseEventInit(eventInitDict); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get wasClean() { webidl.brandCheck(this, CloseEvent); @@ -34524,6 +34539,7 @@ var require_events2 = __commonJS({ const prefix = "ErrorEvent constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); super(type, eventInitDict); + webidl.util.markAsUncloneable(this); type = webidl.converters.DOMString(type, prefix, "type"); eventInitDict = webidl.converters.ErrorEventInit(eventInitDict ?? {}); this.#eventInit = eventInitDict; @@ -35626,6 +35642,7 @@ var require_websocket2 = __commonJS({ #sendQueue; constructor(url, protocols = []) { super(); + webidl.util.markAsUncloneable(this); const prefix = "WebSocket constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); const options = webidl.converters["DOMString or sequence or WebSocketInit"](protocols, prefix, "options"); @@ -36210,6 +36227,7 @@ var require_eventsource = __commonJS({ #state; constructor(url, eventSourceInitDict = {}) { super(); + webidl.util.markAsUncloneable(this); const prefix = "EventSource constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); if (!experimentalWarned) { diff --git a/github-actions/google-internal-tests/main.js b/github-actions/google-internal-tests/main.js index f9c79c7ca..324e9431c 100644 --- a/github-actions/google-internal-tests/main.js +++ b/github-actions/google-internal-tests/main.js @@ -21506,6 +21506,9 @@ var require_connect2 = __commonJS({ }; }; function onConnectTimeout(socket, opts) { + if (socket == null) { + return; + } let message = "Connect Timeout Error"; if (Array.isArray(socket.autoSelectFamilyAttemptedAddresses)) { message += ` (attempted addresses: ${socket.autoSelectFamilyAttemptedAddresses.join(", ")},`; @@ -22437,6 +22440,7 @@ var require_webidl2 = __commonJS({ ""(exports, module) { "use strict"; var { types: types2, inspect } = __require("node:util"); + var { markAsUncloneable } = __require("node:worker_threads"); var { toUSVString } = require_util8(); var webidl = {}; webidl.converters = {}; @@ -22511,6 +22515,8 @@ var require_webidl2 = __commonJS({ } } }; + webidl.util.markAsUncloneable = markAsUncloneable || (() => { + }); webidl.util.ConvertToInt = function(V, bitLength, signedness, opts) { let upperBound; let lowerBound; @@ -23794,6 +23800,7 @@ var require_formdata2 = __commonJS({ var File = globalThis.File ?? NativeFile; var FormData = class { constructor(form) { + webidl.util.markAsUncloneable(this); if (form !== void 0) { throw webidl.errors.conversionFailed({ prefix: "FormData constructor", @@ -27760,7 +27767,7 @@ var require_retry_handler = __commonJS({ ); return false; } - const { start, size, end = size } = contentRange; + const { start, size, end = size - 1 } = contentRange; assert(this.start === start, "content-range mismatch"); assert(this.end == null || this.end === end, "content-range mismatch"); this.resume = resume; @@ -27777,7 +27784,7 @@ var require_retry_handler = __commonJS({ statusMessage ); } - const { start, size, end = size } = range; + const { start, size, end = size - 1 } = range; assert( start != null && Number.isFinite(start), "content-range mismatch" @@ -27788,7 +27795,7 @@ var require_retry_handler = __commonJS({ } if (this.end == null) { const contentLength = headers["content-length"]; - this.end = contentLength != null ? Number(contentLength) : null; + this.end = contentLength != null ? Number(contentLength) - 1 : null; } assert(Number.isFinite(this.start)); assert( @@ -30282,6 +30289,7 @@ var require_headers2 = __commonJS({ #guard; #headersList; constructor(init = void 0) { + webidl.util.markAsUncloneable(this); if (init === kConstruct) { return; } @@ -30543,6 +30551,7 @@ var require_response2 = __commonJS({ return responseObject; } constructor(body = null, init = {}) { + webidl.util.markAsUncloneable(this); if (body === kConstruct) { return; } @@ -30960,6 +30969,7 @@ var require_request4 = __commonJS({ var Request = class { constructor(input, init = {}) { var _a, _b; + webidl.util.markAsUncloneable(this); if (input === kConstruct) { return; } @@ -32484,7 +32494,7 @@ var require_fetch2 = __commonJS({ const decoders = []; const willFollow = location && request2.redirect === "follow" && redirectStatusSet.has(status); if (codings.length !== 0 && request2.method !== "HEAD" && request2.method !== "CONNECT" && !nullBodyStatus.includes(status) && !willFollow) { - for (let i = 0; i < codings.length; ++i) { + for (let i = codings.length - 1; i >= 0; --i) { const coding = codings[i]; if (coding === "x-gzip" || coding === "gzip") { decoders.push(zlib.createGunzip({ @@ -33420,6 +33430,7 @@ var require_cache2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); this.#relevantRequestResponseList = arguments[1]; } async match(request2, options = {}) { @@ -33924,6 +33935,7 @@ var require_cachestorage2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); } async match(request2, options = {}) { webidl.brandCheck(this, CacheStorage); @@ -34436,6 +34448,7 @@ var require_events2 = __commonJS({ constructor(type, eventInitDict = {}) { if (type === kConstruct) { super(arguments[1], arguments[2]); + webidl.util.markAsUncloneable(this); return; } const prefix = "MessageEvent constructor"; @@ -34444,6 +34457,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.MessageEventInit(eventInitDict, prefix, "eventInitDict"); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get data() { webidl.brandCheck(this, MessageEvent); @@ -34503,6 +34517,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.CloseEventInit(eventInitDict); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get wasClean() { webidl.brandCheck(this, CloseEvent); @@ -34523,6 +34538,7 @@ var require_events2 = __commonJS({ const prefix = "ErrorEvent constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); super(type, eventInitDict); + webidl.util.markAsUncloneable(this); type = webidl.converters.DOMString(type, prefix, "type"); eventInitDict = webidl.converters.ErrorEventInit(eventInitDict ?? {}); this.#eventInit = eventInitDict; @@ -35625,6 +35641,7 @@ var require_websocket2 = __commonJS({ #sendQueue; constructor(url, protocols = []) { super(); + webidl.util.markAsUncloneable(this); const prefix = "WebSocket constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); const options = webidl.converters["DOMString or sequence or WebSocketInit"](protocols, prefix, "options"); @@ -36209,6 +36226,7 @@ var require_eventsource = __commonJS({ #state; constructor(url, eventSourceInitDict = {}) { super(); + webidl.util.markAsUncloneable(this); const prefix = "EventSource constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); if (!experimentalWarned) { diff --git a/github-actions/org-file-sync/main.js b/github-actions/org-file-sync/main.js index ec59bd523..31d2de0dc 100644 --- a/github-actions/org-file-sync/main.js +++ b/github-actions/org-file-sync/main.js @@ -21507,6 +21507,9 @@ var require_connect2 = __commonJS({ }; }; function onConnectTimeout(socket, opts) { + if (socket == null) { + return; + } let message = "Connect Timeout Error"; if (Array.isArray(socket.autoSelectFamilyAttemptedAddresses)) { message += ` (attempted addresses: ${socket.autoSelectFamilyAttemptedAddresses.join(", ")},`; @@ -22438,6 +22441,7 @@ var require_webidl2 = __commonJS({ ""(exports, module) { "use strict"; var { types, inspect } = __require("node:util"); + var { markAsUncloneable } = __require("node:worker_threads"); var { toUSVString } = require_util8(); var webidl = {}; webidl.converters = {}; @@ -22512,6 +22516,8 @@ var require_webidl2 = __commonJS({ } } }; + webidl.util.markAsUncloneable = markAsUncloneable || (() => { + }); webidl.util.ConvertToInt = function(V, bitLength, signedness, opts) { let upperBound; let lowerBound; @@ -23795,6 +23801,7 @@ var require_formdata2 = __commonJS({ var File = globalThis.File ?? NativeFile; var FormData = class { constructor(form) { + webidl.util.markAsUncloneable(this); if (form !== void 0) { throw webidl.errors.conversionFailed({ prefix: "FormData constructor", @@ -27761,7 +27768,7 @@ var require_retry_handler = __commonJS({ ); return false; } - const { start, size, end = size } = contentRange; + const { start, size, end = size - 1 } = contentRange; assert(this.start === start, "content-range mismatch"); assert(this.end == null || this.end === end, "content-range mismatch"); this.resume = resume; @@ -27778,7 +27785,7 @@ var require_retry_handler = __commonJS({ statusMessage ); } - const { start, size, end = size } = range; + const { start, size, end = size - 1 } = range; assert( start != null && Number.isFinite(start), "content-range mismatch" @@ -27789,7 +27796,7 @@ var require_retry_handler = __commonJS({ } if (this.end == null) { const contentLength = headers["content-length"]; - this.end = contentLength != null ? Number(contentLength) : null; + this.end = contentLength != null ? Number(contentLength) - 1 : null; } assert(Number.isFinite(this.start)); assert( @@ -30283,6 +30290,7 @@ var require_headers2 = __commonJS({ #guard; #headersList; constructor(init = void 0) { + webidl.util.markAsUncloneable(this); if (init === kConstruct) { return; } @@ -30544,6 +30552,7 @@ var require_response2 = __commonJS({ return responseObject; } constructor(body = null, init = {}) { + webidl.util.markAsUncloneable(this); if (body === kConstruct) { return; } @@ -30961,6 +30970,7 @@ var require_request4 = __commonJS({ var Request = class { constructor(input, init = {}) { var _a2, _b; + webidl.util.markAsUncloneable(this); if (input === kConstruct) { return; } @@ -32485,7 +32495,7 @@ var require_fetch2 = __commonJS({ const decoders = []; const willFollow = location && request2.redirect === "follow" && redirectStatusSet.has(status); if (codings.length !== 0 && request2.method !== "HEAD" && request2.method !== "CONNECT" && !nullBodyStatus.includes(status) && !willFollow) { - for (let i = 0; i < codings.length; ++i) { + for (let i = codings.length - 1; i >= 0; --i) { const coding = codings[i]; if (coding === "x-gzip" || coding === "gzip") { decoders.push(zlib.createGunzip({ @@ -33421,6 +33431,7 @@ var require_cache2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); this.#relevantRequestResponseList = arguments[1]; } async match(request2, options = {}) { @@ -33925,6 +33936,7 @@ var require_cachestorage2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); } async match(request2, options = {}) { webidl.brandCheck(this, CacheStorage); @@ -34437,6 +34449,7 @@ var require_events2 = __commonJS({ constructor(type, eventInitDict = {}) { if (type === kConstruct) { super(arguments[1], arguments[2]); + webidl.util.markAsUncloneable(this); return; } const prefix = "MessageEvent constructor"; @@ -34445,6 +34458,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.MessageEventInit(eventInitDict, prefix, "eventInitDict"); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get data() { webidl.brandCheck(this, MessageEvent); @@ -34504,6 +34518,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.CloseEventInit(eventInitDict); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get wasClean() { webidl.brandCheck(this, CloseEvent); @@ -34524,6 +34539,7 @@ var require_events2 = __commonJS({ const prefix = "ErrorEvent constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); super(type, eventInitDict); + webidl.util.markAsUncloneable(this); type = webidl.converters.DOMString(type, prefix, "type"); eventInitDict = webidl.converters.ErrorEventInit(eventInitDict ?? {}); this.#eventInit = eventInitDict; @@ -35626,6 +35642,7 @@ var require_websocket2 = __commonJS({ #sendQueue; constructor(url, protocols = []) { super(); + webidl.util.markAsUncloneable(this); const prefix = "WebSocket constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); const options = webidl.converters["DOMString or sequence or WebSocketInit"](protocols, prefix, "options"); @@ -36210,6 +36227,7 @@ var require_eventsource = __commonJS({ #state; constructor(url, eventSourceInitDict = {}) { super(); + webidl.util.markAsUncloneable(this); const prefix = "EventSource constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); if (!experimentalWarned) { diff --git a/github-actions/post-approval-changes/main.js b/github-actions/post-approval-changes/main.js index 57e85e3ca..992dc0863 100644 --- a/github-actions/post-approval-changes/main.js +++ b/github-actions/post-approval-changes/main.js @@ -21507,6 +21507,9 @@ var require_connect2 = __commonJS({ }; }; function onConnectTimeout(socket, opts) { + if (socket == null) { + return; + } let message = "Connect Timeout Error"; if (Array.isArray(socket.autoSelectFamilyAttemptedAddresses)) { message += ` (attempted addresses: ${socket.autoSelectFamilyAttemptedAddresses.join(", ")},`; @@ -22438,6 +22441,7 @@ var require_webidl2 = __commonJS({ ""(exports, module) { "use strict"; var { types, inspect } = __require("node:util"); + var { markAsUncloneable } = __require("node:worker_threads"); var { toUSVString } = require_util8(); var webidl = {}; webidl.converters = {}; @@ -22512,6 +22516,8 @@ var require_webidl2 = __commonJS({ } } }; + webidl.util.markAsUncloneable = markAsUncloneable || (() => { + }); webidl.util.ConvertToInt = function(V, bitLength, signedness, opts) { let upperBound; let lowerBound; @@ -23795,6 +23801,7 @@ var require_formdata2 = __commonJS({ var File = globalThis.File ?? NativeFile; var FormData = class { constructor(form) { + webidl.util.markAsUncloneable(this); if (form !== void 0) { throw webidl.errors.conversionFailed({ prefix: "FormData constructor", @@ -27761,7 +27768,7 @@ var require_retry_handler = __commonJS({ ); return false; } - const { start, size, end = size } = contentRange; + const { start, size, end = size - 1 } = contentRange; assert(this.start === start, "content-range mismatch"); assert(this.end == null || this.end === end, "content-range mismatch"); this.resume = resume; @@ -27778,7 +27785,7 @@ var require_retry_handler = __commonJS({ statusMessage ); } - const { start, size, end = size } = range; + const { start, size, end = size - 1 } = range; assert( start != null && Number.isFinite(start), "content-range mismatch" @@ -27789,7 +27796,7 @@ var require_retry_handler = __commonJS({ } if (this.end == null) { const contentLength = headers["content-length"]; - this.end = contentLength != null ? Number(contentLength) : null; + this.end = contentLength != null ? Number(contentLength) - 1 : null; } assert(Number.isFinite(this.start)); assert( @@ -30283,6 +30290,7 @@ var require_headers2 = __commonJS({ #guard; #headersList; constructor(init = void 0) { + webidl.util.markAsUncloneable(this); if (init === kConstruct) { return; } @@ -30544,6 +30552,7 @@ var require_response2 = __commonJS({ return responseObject; } constructor(body = null, init = {}) { + webidl.util.markAsUncloneable(this); if (body === kConstruct) { return; } @@ -30961,6 +30970,7 @@ var require_request4 = __commonJS({ var Request = class { constructor(input, init = {}) { var _a2, _b; + webidl.util.markAsUncloneable(this); if (input === kConstruct) { return; } @@ -32485,7 +32495,7 @@ var require_fetch2 = __commonJS({ const decoders = []; const willFollow = location && request2.redirect === "follow" && redirectStatusSet.has(status); if (codings.length !== 0 && request2.method !== "HEAD" && request2.method !== "CONNECT" && !nullBodyStatus.includes(status) && !willFollow) { - for (let i = 0; i < codings.length; ++i) { + for (let i = codings.length - 1; i >= 0; --i) { const coding = codings[i]; if (coding === "x-gzip" || coding === "gzip") { decoders.push(zlib.createGunzip({ @@ -33421,6 +33431,7 @@ var require_cache2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); this.#relevantRequestResponseList = arguments[1]; } async match(request2, options = {}) { @@ -33925,6 +33936,7 @@ var require_cachestorage2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); } async match(request2, options = {}) { webidl.brandCheck(this, CacheStorage); @@ -34437,6 +34449,7 @@ var require_events2 = __commonJS({ constructor(type, eventInitDict = {}) { if (type === kConstruct) { super(arguments[1], arguments[2]); + webidl.util.markAsUncloneable(this); return; } const prefix = "MessageEvent constructor"; @@ -34445,6 +34458,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.MessageEventInit(eventInitDict, prefix, "eventInitDict"); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get data() { webidl.brandCheck(this, MessageEvent); @@ -34504,6 +34518,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.CloseEventInit(eventInitDict); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get wasClean() { webidl.brandCheck(this, CloseEvent); @@ -34524,6 +34539,7 @@ var require_events2 = __commonJS({ const prefix = "ErrorEvent constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); super(type, eventInitDict); + webidl.util.markAsUncloneable(this); type = webidl.converters.DOMString(type, prefix, "type"); eventInitDict = webidl.converters.ErrorEventInit(eventInitDict ?? {}); this.#eventInit = eventInitDict; @@ -35626,6 +35642,7 @@ var require_websocket2 = __commonJS({ #sendQueue; constructor(url, protocols = []) { super(); + webidl.util.markAsUncloneable(this); const prefix = "WebSocket constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); const options = webidl.converters["DOMString or sequence or WebSocketInit"](protocols, prefix, "options"); @@ -36210,6 +36227,7 @@ var require_eventsource = __commonJS({ #state; constructor(url, eventSourceInitDict = {}) { super(); + webidl.util.markAsUncloneable(this); const prefix = "EventSource constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); if (!experimentalWarned) { diff --git a/github-actions/unified-status-check/main.js b/github-actions/unified-status-check/main.js index 30ffafe62..82315c60a 100644 --- a/github-actions/unified-status-check/main.js +++ b/github-actions/unified-status-check/main.js @@ -21507,6 +21507,9 @@ var require_connect2 = __commonJS({ }; }; function onConnectTimeout(socket, opts) { + if (socket == null) { + return; + } let message = "Connect Timeout Error"; if (Array.isArray(socket.autoSelectFamilyAttemptedAddresses)) { message += ` (attempted addresses: ${socket.autoSelectFamilyAttemptedAddresses.join(", ")},`; @@ -22438,6 +22441,7 @@ var require_webidl2 = __commonJS({ ""(exports, module) { "use strict"; var { types, inspect } = __require("node:util"); + var { markAsUncloneable } = __require("node:worker_threads"); var { toUSVString } = require_util8(); var webidl = {}; webidl.converters = {}; @@ -22512,6 +22516,8 @@ var require_webidl2 = __commonJS({ } } }; + webidl.util.markAsUncloneable = markAsUncloneable || (() => { + }); webidl.util.ConvertToInt = function(V, bitLength, signedness, opts) { let upperBound; let lowerBound; @@ -23795,6 +23801,7 @@ var require_formdata2 = __commonJS({ var File = globalThis.File ?? NativeFile; var FormData = class { constructor(form) { + webidl.util.markAsUncloneable(this); if (form !== void 0) { throw webidl.errors.conversionFailed({ prefix: "FormData constructor", @@ -27761,7 +27768,7 @@ var require_retry_handler = __commonJS({ ); return false; } - const { start, size, end = size } = contentRange; + const { start, size, end = size - 1 } = contentRange; assert(this.start === start, "content-range mismatch"); assert(this.end == null || this.end === end, "content-range mismatch"); this.resume = resume; @@ -27778,7 +27785,7 @@ var require_retry_handler = __commonJS({ statusMessage ); } - const { start, size, end = size } = range; + const { start, size, end = size - 1 } = range; assert( start != null && Number.isFinite(start), "content-range mismatch" @@ -27789,7 +27796,7 @@ var require_retry_handler = __commonJS({ } if (this.end == null) { const contentLength = headers["content-length"]; - this.end = contentLength != null ? Number(contentLength) : null; + this.end = contentLength != null ? Number(contentLength) - 1 : null; } assert(Number.isFinite(this.start)); assert( @@ -30283,6 +30290,7 @@ var require_headers2 = __commonJS({ #guard; #headersList; constructor(init = void 0) { + webidl.util.markAsUncloneable(this); if (init === kConstruct) { return; } @@ -30544,6 +30552,7 @@ var require_response2 = __commonJS({ return responseObject; } constructor(body = null, init = {}) { + webidl.util.markAsUncloneable(this); if (body === kConstruct) { return; } @@ -30961,6 +30970,7 @@ var require_request4 = __commonJS({ var Request = class { constructor(input, init = {}) { var _a2, _b; + webidl.util.markAsUncloneable(this); if (input === kConstruct) { return; } @@ -32485,7 +32495,7 @@ var require_fetch2 = __commonJS({ const decoders = []; const willFollow = location && request2.redirect === "follow" && redirectStatusSet.has(status); if (codings.length !== 0 && request2.method !== "HEAD" && request2.method !== "CONNECT" && !nullBodyStatus.includes(status) && !willFollow) { - for (let i = 0; i < codings.length; ++i) { + for (let i = codings.length - 1; i >= 0; --i) { const coding = codings[i]; if (coding === "x-gzip" || coding === "gzip") { decoders.push(zlib.createGunzip({ @@ -33421,6 +33431,7 @@ var require_cache2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); this.#relevantRequestResponseList = arguments[1]; } async match(request2, options = {}) { @@ -33925,6 +33936,7 @@ var require_cachestorage2 = __commonJS({ if (arguments[0] !== kConstruct) { webidl.illegalConstructor(); } + webidl.util.markAsUncloneable(this); } async match(request2, options = {}) { webidl.brandCheck(this, CacheStorage); @@ -34437,6 +34449,7 @@ var require_events2 = __commonJS({ constructor(type, eventInitDict = {}) { if (type === kConstruct) { super(arguments[1], arguments[2]); + webidl.util.markAsUncloneable(this); return; } const prefix = "MessageEvent constructor"; @@ -34445,6 +34458,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.MessageEventInit(eventInitDict, prefix, "eventInitDict"); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get data() { webidl.brandCheck(this, MessageEvent); @@ -34504,6 +34518,7 @@ var require_events2 = __commonJS({ eventInitDict = webidl.converters.CloseEventInit(eventInitDict); super(type, eventInitDict); this.#eventInit = eventInitDict; + webidl.util.markAsUncloneable(this); } get wasClean() { webidl.brandCheck(this, CloseEvent); @@ -34524,6 +34539,7 @@ var require_events2 = __commonJS({ const prefix = "ErrorEvent constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); super(type, eventInitDict); + webidl.util.markAsUncloneable(this); type = webidl.converters.DOMString(type, prefix, "type"); eventInitDict = webidl.converters.ErrorEventInit(eventInitDict ?? {}); this.#eventInit = eventInitDict; @@ -35626,6 +35642,7 @@ var require_websocket2 = __commonJS({ #sendQueue; constructor(url, protocols = []) { super(); + webidl.util.markAsUncloneable(this); const prefix = "WebSocket constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); const options = webidl.converters["DOMString or sequence or WebSocketInit"](protocols, prefix, "options"); @@ -36210,6 +36227,7 @@ var require_eventsource = __commonJS({ #state; constructor(url, eventSourceInitDict = {}) { super(); + webidl.util.markAsUncloneable(this); const prefix = "EventSource constructor"; webidl.argumentLengthCheck(arguments, 1, prefix); if (!experimentalWarned) { diff --git a/yarn.lock b/yarn.lock index ea7c3d352..f2af0e2a2 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2876,6 +2876,21 @@ __metadata: languageName: node linkType: hard +"@inquirer/checkbox@npm:^4.0.2": + version: 4.0.2 + resolution: "@inquirer/checkbox@npm:4.0.2" + dependencies: + "@inquirer/core": "npm:^10.1.0" + "@inquirer/figures": "npm:^1.0.8" + "@inquirer/type": "npm:^3.0.1" + ansi-escapes: "npm:^4.3.2" + yoctocolors-cjs: "npm:^2.1.2" + peerDependencies: + "@types/node": ">=18" + checksum: 10c0/a087984b5de252530246f40fa090cbd531c78cdf53f6eaef8653cfc69623480b3377916e31da81d097583ef1248a0508b199994c386a27cbad4c6ce536944a73 + languageName: node + linkType: hard + "@inquirer/confirm@npm:5.0.1, @inquirer/confirm@npm:^5.0.1": version: 5.0.1 resolution: "@inquirer/confirm@npm:5.0.1" @@ -2888,6 +2903,18 @@ __metadata: languageName: node linkType: hard +"@inquirer/confirm@npm:^5.0.2": + version: 5.0.2 + resolution: "@inquirer/confirm@npm:5.0.2" + dependencies: + "@inquirer/core": "npm:^10.1.0" + "@inquirer/type": "npm:^3.0.1" + peerDependencies: + "@types/node": ">=18" + checksum: 10c0/c121cfb0557b42dd6570b54dce707a048d85f328481d5230d21fede195902012ede06887aa478875cc83afa064c2e30953eb2cab0744f832195867b418865115 + languageName: node + linkType: hard + "@inquirer/core@npm:^10.0.1": version: 10.0.1 resolution: "@inquirer/core@npm:10.0.1" @@ -2905,6 +2932,23 @@ __metadata: languageName: node linkType: hard +"@inquirer/core@npm:^10.1.0": + version: 10.1.0 + resolution: "@inquirer/core@npm:10.1.0" + dependencies: + "@inquirer/figures": "npm:^1.0.8" + "@inquirer/type": "npm:^3.0.1" + ansi-escapes: "npm:^4.3.2" + cli-width: "npm:^4.1.0" + mute-stream: "npm:^2.0.0" + signal-exit: "npm:^4.1.0" + strip-ansi: "npm:^6.0.1" + wrap-ansi: "npm:^6.2.0" + yoctocolors-cjs: "npm:^2.1.2" + checksum: 10c0/ffd187edb210426c3e25ed564f7aa8844468c28dd2ba3c53dbe28d3359b519cdfae987b31bf927c1dd2e9f70a914fdefe319abe4c5f384e5e08410d11e0a7ce2 + languageName: node + linkType: hard + "@inquirer/editor@npm:^4.0.1": version: 4.0.1 resolution: "@inquirer/editor@npm:4.0.1" @@ -2918,6 +2962,19 @@ __metadata: languageName: node linkType: hard +"@inquirer/editor@npm:^4.1.0": + version: 4.1.0 + resolution: "@inquirer/editor@npm:4.1.0" + dependencies: + "@inquirer/core": "npm:^10.1.0" + "@inquirer/type": "npm:^3.0.1" + external-editor: "npm:^3.1.0" + peerDependencies: + "@types/node": ">=18" + checksum: 10c0/6ed7724e83a7f52b4bdd911f6878bc0a18b18f955bb7e8cd423820e8a0bc941a97321b07be88cea6b22a7027a9ed15f5e03ca8f9a6abe94d6af32504a98e6954 + languageName: node + linkType: hard + "@inquirer/expand@npm:^4.0.1": version: 4.0.1 resolution: "@inquirer/expand@npm:4.0.1" @@ -2931,6 +2988,19 @@ __metadata: languageName: node linkType: hard +"@inquirer/expand@npm:^4.0.2": + version: 4.0.2 + resolution: "@inquirer/expand@npm:4.0.2" + dependencies: + "@inquirer/core": "npm:^10.1.0" + "@inquirer/type": "npm:^3.0.1" + yoctocolors-cjs: "npm:^2.1.2" + peerDependencies: + "@types/node": ">=18" + checksum: 10c0/937c2597db14cd67b92386ff8e0eb248900ec4e98631503037b12d535a869b22e683010633f1bbf2c1fefe881b45d43a20b212a465bfd7406367fdcaa1723445 + languageName: node + linkType: hard + "@inquirer/figures@npm:^1.0.7": version: 1.0.7 resolution: "@inquirer/figures@npm:1.0.7" @@ -2938,6 +3008,13 @@ __metadata: languageName: node linkType: hard +"@inquirer/figures@npm:^1.0.8": + version: 1.0.8 + resolution: "@inquirer/figures@npm:1.0.8" + checksum: 10c0/34d287ff1fd16476c58bbd5b169db315f8319b5ffb09f81a1bb9aabd4165114e7406b1f418d021fd9cd48923008446e3eec274bb818f378ea132a0450bbc91d4 + languageName: node + linkType: hard + "@inquirer/input@npm:^4.0.1": version: 4.0.1 resolution: "@inquirer/input@npm:4.0.1" @@ -2950,6 +3027,18 @@ __metadata: languageName: node linkType: hard +"@inquirer/input@npm:^4.0.2": + version: 4.0.2 + resolution: "@inquirer/input@npm:4.0.2" + dependencies: + "@inquirer/core": "npm:^10.1.0" + "@inquirer/type": "npm:^3.0.1" + peerDependencies: + "@types/node": ">=18" + checksum: 10c0/9e160ae5011144058327af8a267d1b854edbc6f5cceb544188279e81a38e479e72b3ea9dc4c83b44d01b2b17c52d0617f6e3b5d63f82fffba07da92f97e1f889 + languageName: node + linkType: hard + "@inquirer/number@npm:^3.0.1": version: 3.0.1 resolution: "@inquirer/number@npm:3.0.1" @@ -2962,6 +3051,18 @@ __metadata: languageName: node linkType: hard +"@inquirer/number@npm:^3.0.2": + version: 3.0.2 + resolution: "@inquirer/number@npm:3.0.2" + dependencies: + "@inquirer/core": "npm:^10.1.0" + "@inquirer/type": "npm:^3.0.1" + peerDependencies: + "@types/node": ">=18" + checksum: 10c0/3b6f334a4ebb3019bc628b440be3c86fa1318fce693f55628ae95a47c388bdcb6eb06f3c226e3795752fa243ffd27508751bc82e623d2d4656163f2d1840bee7 + languageName: node + linkType: hard + "@inquirer/password@npm:^4.0.1": version: 4.0.1 resolution: "@inquirer/password@npm:4.0.1" @@ -2975,7 +3076,20 @@ __metadata: languageName: node linkType: hard -"@inquirer/prompts@npm:7.0.1, @inquirer/prompts@npm:^7.0.0": +"@inquirer/password@npm:^4.0.2": + version: 4.0.2 + resolution: "@inquirer/password@npm:4.0.2" + dependencies: + "@inquirer/core": "npm:^10.1.0" + "@inquirer/type": "npm:^3.0.1" + ansi-escapes: "npm:^4.3.2" + peerDependencies: + "@types/node": ">=18" + checksum: 10c0/2ef73fb3574805e35a88e7398845ee7f5f473662a8af580023d3d8e00bdc7452b724a262ca636eb729864d9af36376b3812739f38c22e94ebad9e68518d2a90a + languageName: node + linkType: hard + +"@inquirer/prompts@npm:7.0.1": version: 7.0.1 resolution: "@inquirer/prompts@npm:7.0.1" dependencies: @@ -2995,6 +3109,26 @@ __metadata: languageName: node linkType: hard +"@inquirer/prompts@npm:^7.0.0": + version: 7.1.0 + resolution: "@inquirer/prompts@npm:7.1.0" + dependencies: + "@inquirer/checkbox": "npm:^4.0.2" + "@inquirer/confirm": "npm:^5.0.2" + "@inquirer/editor": "npm:^4.1.0" + "@inquirer/expand": "npm:^4.0.2" + "@inquirer/input": "npm:^4.0.2" + "@inquirer/number": "npm:^3.0.2" + "@inquirer/password": "npm:^4.0.2" + "@inquirer/rawlist": "npm:^4.0.2" + "@inquirer/search": "npm:^3.0.2" + "@inquirer/select": "npm:^4.0.2" + peerDependencies: + "@types/node": ">=18" + checksum: 10c0/e6ed9c3eac059f5de6e233872d8e15f6ddc27e461be119ac1494c6ab74fd583b0cde00554be2be00601df8f9b6df6cd20876772a8148dd4bc5f1f5015e1d5549 + languageName: node + linkType: hard + "@inquirer/rawlist@npm:^4.0.1": version: 4.0.1 resolution: "@inquirer/rawlist@npm:4.0.1" @@ -3008,6 +3142,19 @@ __metadata: languageName: node linkType: hard +"@inquirer/rawlist@npm:^4.0.2": + version: 4.0.2 + resolution: "@inquirer/rawlist@npm:4.0.2" + dependencies: + "@inquirer/core": "npm:^10.1.0" + "@inquirer/type": "npm:^3.0.1" + yoctocolors-cjs: "npm:^2.1.2" + peerDependencies: + "@types/node": ">=18" + checksum: 10c0/f003c0c9e5bd0aec5bb3fbba10247c8da23ccdcfb1937f50b38e2ab6938be448773976303f43e1b518dff673aa82c5c08b4a3fba6e621622f6adb967eb39161a + languageName: node + linkType: hard + "@inquirer/search@npm:^3.0.1": version: 3.0.1 resolution: "@inquirer/search@npm:3.0.1" @@ -3022,6 +3169,20 @@ __metadata: languageName: node linkType: hard +"@inquirer/search@npm:^3.0.2": + version: 3.0.2 + resolution: "@inquirer/search@npm:3.0.2" + dependencies: + "@inquirer/core": "npm:^10.1.0" + "@inquirer/figures": "npm:^1.0.8" + "@inquirer/type": "npm:^3.0.1" + yoctocolors-cjs: "npm:^2.1.2" + peerDependencies: + "@types/node": ">=18" + checksum: 10c0/3fc7be27b86073f713efaf3ee07fb4a8a5526f80b57b68ed1bb1a31837ae85affee0637ff185688a6cc0a76e4dd970f66ffb059264a6cea667dab4e27d59561f + languageName: node + linkType: hard + "@inquirer/select@npm:^4.0.1": version: 4.0.1 resolution: "@inquirer/select@npm:4.0.1" @@ -3037,6 +3198,21 @@ __metadata: languageName: node linkType: hard +"@inquirer/select@npm:^4.0.2": + version: 4.0.2 + resolution: "@inquirer/select@npm:4.0.2" + dependencies: + "@inquirer/core": "npm:^10.1.0" + "@inquirer/figures": "npm:^1.0.8" + "@inquirer/type": "npm:^3.0.1" + ansi-escapes: "npm:^4.3.2" + yoctocolors-cjs: "npm:^2.1.2" + peerDependencies: + "@types/node": ">=18" + checksum: 10c0/abd23ba234c3489e76e96c444f97bb00913bdd3f278e2e3f4b060dfdd4c53e0ef78c0a8a3b303a111d35399e4dd366f2b23fb3e213d1b55ae10c02336e921445 + languageName: node + linkType: hard + "@inquirer/type@npm:^1.5.5": version: 1.5.5 resolution: "@inquirer/type@npm:1.5.5" @@ -3046,12 +3222,12 @@ __metadata: languageName: node linkType: hard -"@inquirer/type@npm:^3.0.0": - version: 3.0.0 - resolution: "@inquirer/type@npm:3.0.0" +"@inquirer/type@npm:^3.0.0, @inquirer/type@npm:^3.0.1": + version: 3.0.1 + resolution: "@inquirer/type@npm:3.0.1" peerDependencies: "@types/node": ">=18" - checksum: 10c0/4c26595749782e3dfbfea0c7a19b1db603485e0fce4a9d4fe52be1c9c05fcb2cc3afbc849d03bddbde47896786df93d6f02657eeeae5dbc8cdc78cd8a4f80123 + checksum: 10c0/c8612362d382114a318dbb523de7b1f54dc6bc6d3016c6eaf299b6a32486b92b0dfb1b4cfc6fe9d99496d15fbb721873a1bd66819f796c8bb09853a3b808812d languageName: node linkType: hard @@ -8531,8 +8707,8 @@ __metadata: linkType: hard "firebase-tools@npm:^13.0.0": - version: 13.24.2 - resolution: "firebase-tools@npm:13.24.2" + version: 13.25.0 + resolution: "firebase-tools@npm:13.25.0" dependencies: "@electric-sql/pglite": "npm:^0.2.0" "@google-cloud/cloud-sql-connector": "npm:^1.3.3" @@ -8602,7 +8778,7 @@ __metadata: yaml: "npm:^2.4.1" bin: firebase: lib/bin/firebase.js - checksum: 10c0/404d4d688ad9d096b5f3602338521233cc05aa060a3ac941dea8790a36552092bfb1f37034c04dca8dc1b96bd82523632bfb75a9e978d2619eeb88b7c29bb82b + checksum: 10c0/cba3e7f965cdeff8a141db0aa2d4afdd7f13b9501950ca1bb02d320aa1d41ce1355ee7f981fcb2c5f370a32cbd32e100af2412c82c92ccb52fbdd11aee712349 languageName: node linkType: hard @@ -15492,9 +15668,9 @@ __metadata: linkType: hard "undici@npm:^6.19.8": - version: 6.20.1 - resolution: "undici@npm:6.20.1" - checksum: 10c0/b2c8d5adcd226c53d02f9270e4cac277256a7147cf310af319369ec6f87651ca46b2960366cb1339a6dac84d937e01e8cdbec5cb468f1f1ce5e9490e438d7222 + version: 6.21.0 + resolution: "undici@npm:6.21.0" + checksum: 10c0/afa9bde6dcf8e0f5cf1ff2fa977ba73dd5510299ddfca0e1f37ff326554172ae31cb3d4a40b5a729601be1f21b96a2684f974d74dab53f9b6930fd47d1949246 languageName: node linkType: hard