diff --git a/.github/local-actions/branch-manager/main.js b/.github/local-actions/branch-manager/main.js index 8040fca76..af76ec0e9 100644 --- a/.github/local-actions/branch-manager/main.js +++ b/.github/local-actions/branch-manager/main.js @@ -34220,15 +34220,15 @@ var require_jsonc_parser = __commonJS({ throw earlyReturnException; } }, - onSeparator: (sep2, offset, length) => { + onSeparator: (sep3, offset, length) => { if (position <= offset) { throw earlyReturnException; } - if (sep2 === ":" && previousNode && previousNode.type === "property") { + if (sep3 === ":" && previousNode && previousNode.type === "property") { previousNode.colonOffset = offset; isAtPropertyKey = false; previousNode = void 0; - } else if (sep2 === ",") { + } else if (sep3 === ",") { const last = segments[segments.length - 1]; if (typeof last === "number") { segments[segments.length - 1] = last + 1; @@ -34343,11 +34343,11 @@ var require_jsonc_parser = __commonJS({ onValue({ type: getNodeType(value), offset, length, parent: currentParent, value }); ensurePropertyComplete(offset + length); }, - onSeparator: (sep2, offset, length) => { + onSeparator: (sep3, offset, length) => { if (currentParent.type === "property") { - if (sep2 === ":") { + if (sep3 === ":") { currentParent.colonOffset = offset; - } else if (sep2 === ",") { + } else if (sep3 === ",") { ensurePropertyComplete(offset); } } @@ -55258,13 +55258,13 @@ var require_dist_node8 = __commonJS({ createTokenAuth: () => createTokenAuth3 }); module.exports = __toCommonJS(dist_src_exports); - var REGEX_IS_INSTALLATION_LEGACY2 = /^v1\./; - var REGEX_IS_INSTALLATION2 = /^ghs_/; - var REGEX_IS_USER_TO_SERVER2 = /^ghu_/; + var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; + var REGEX_IS_INSTALLATION = /^ghs_/; + var REGEX_IS_USER_TO_SERVER = /^ghu_/; async function auth6(token2) { const isApp = token2.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY2.test(token2) || REGEX_IS_INSTALLATION2.test(token2); - const isUserToServer = REGEX_IS_USER_TO_SERVER2.test(token2); + const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token2) || REGEX_IS_INSTALLATION.test(token2); + const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token2); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", @@ -61972,7 +61972,7 @@ async function getResponseData(response) { return response.text().catch(() => ""); } const mimetype = (0, import_fast_content_type_parse.safeParse)(contentType); - if (mimetype.type === "application/json") { + if (isJSONResponse(mimetype)) { let text = ""; try { text = await response.text(); @@ -61986,6 +61986,9 @@ async function getResponseData(response) { return response.arrayBuffer().catch(() => new ArrayBuffer(0)); } } +function isJSONResponse(mimetype) { + return mimetype.type === "application/json" || mimetype.type === "application/scim+json"; +} function toErrorMessage(data) { if (typeof data === "string") { return data; @@ -64760,13 +64763,14 @@ function Collection() { var before_after_hook_default = { Singular, Collection }; // -var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; -var REGEX_IS_INSTALLATION = /^ghs_/; -var REGEX_IS_USER_TO_SERVER = /^ghu_/; +var b64url = "(?:[a-zA-Z0-9_-]+)"; +var sep2 = "\\."; +var jwtRE = new RegExp(`^${b64url}${sep2}${b64url}${sep2}${b64url}$`); +var isJWT = jwtRE.test.bind(jwtRE); async function auth(token2) { - const isApp = token2.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token2) || REGEX_IS_INSTALLATION.test(token2); - const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token2); + const isApp = isJWT(token2); + const isInstallation = token2.startsWith("v1.") || token2.startsWith("ghs_"); + const isUserToServer = token2.startsWith("ghu_"); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", diff --git a/.github/local-actions/labels-sync/main.js b/.github/local-actions/labels-sync/main.js index 5375b12f4..20ff4fc99 100644 --- a/.github/local-actions/labels-sync/main.js +++ b/.github/local-actions/labels-sync/main.js @@ -39672,13 +39672,13 @@ var require_dist_node8 = __commonJS({ createTokenAuth: () => createTokenAuth3 }); module.exports = __toCommonJS(dist_src_exports); - var REGEX_IS_INSTALLATION_LEGACY2 = /^v1\./; - var REGEX_IS_INSTALLATION2 = /^ghs_/; - var REGEX_IS_USER_TO_SERVER2 = /^ghu_/; + var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; + var REGEX_IS_INSTALLATION = /^ghs_/; + var REGEX_IS_USER_TO_SERVER = /^ghu_/; async function auth6(token) { const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY2.test(token) || REGEX_IS_INSTALLATION2.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER2.test(token); + const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); + const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", @@ -43203,7 +43203,7 @@ async function getResponseData(response) { return response.text().catch(() => ""); } const mimetype = (0, import_fast_content_type_parse.safeParse)(contentType); - if (mimetype.type === "application/json") { + if (isJSONResponse(mimetype)) { let text = ""; try { text = await response.text(); @@ -43217,6 +43217,9 @@ async function getResponseData(response) { return response.arrayBuffer().catch(() => new ArrayBuffer(0)); } } +function isJSONResponse(mimetype) { + return mimetype.type === "application/json" || mimetype.type === "application/scim+json"; +} function toErrorMessage(data) { if (typeof data === "string") { return data; @@ -43363,13 +43366,14 @@ function withCustomRequest(customRequest) { } // -var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; -var REGEX_IS_INSTALLATION = /^ghs_/; -var REGEX_IS_USER_TO_SERVER = /^ghu_/; +var b64url = "(?:[a-zA-Z0-9_-]+)"; +var sep = "\\."; +var jwtRE = new RegExp(`^${b64url}${sep}${b64url}${sep}${b64url}$`); +var isJWT = jwtRE.test.bind(jwtRE); async function auth(token) { - const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); + const isApp = isJWT(token); + const isInstallation = token.startsWith("v1.") || token.startsWith("ghs_"); + const isUserToServer = token.startsWith("ghu_"); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", diff --git a/.github/local-actions/lock-closed/main.js b/.github/local-actions/lock-closed/main.js index f43852ee0..8749dd556 100644 --- a/.github/local-actions/lock-closed/main.js +++ b/.github/local-actions/lock-closed/main.js @@ -39672,13 +39672,13 @@ var require_dist_node8 = __commonJS({ createTokenAuth: () => createTokenAuth3 }); module.exports = __toCommonJS(dist_src_exports); - var REGEX_IS_INSTALLATION_LEGACY2 = /^v1\./; - var REGEX_IS_INSTALLATION2 = /^ghs_/; - var REGEX_IS_USER_TO_SERVER2 = /^ghu_/; + var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; + var REGEX_IS_INSTALLATION = /^ghs_/; + var REGEX_IS_USER_TO_SERVER = /^ghu_/; async function auth6(token) { const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY2.test(token) || REGEX_IS_INSTALLATION2.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER2.test(token); + const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); + const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", @@ -43203,7 +43203,7 @@ async function getResponseData(response) { return response.text().catch(() => ""); } const mimetype = (0, import_fast_content_type_parse.safeParse)(contentType); - if (mimetype.type === "application/json") { + if (isJSONResponse(mimetype)) { let text = ""; try { text = await response.text(); @@ -43217,6 +43217,9 @@ async function getResponseData(response) { return response.arrayBuffer().catch(() => new ArrayBuffer(0)); } } +function isJSONResponse(mimetype) { + return mimetype.type === "application/json" || mimetype.type === "application/scim+json"; +} function toErrorMessage(data) { if (typeof data === "string") { return data; @@ -43363,13 +43366,14 @@ function withCustomRequest(customRequest) { } // -var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; -var REGEX_IS_INSTALLATION = /^ghs_/; -var REGEX_IS_USER_TO_SERVER = /^ghu_/; +var b64url = "(?:[a-zA-Z0-9_-]+)"; +var sep = "\\."; +var jwtRE = new RegExp(`^${b64url}${sep}${b64url}${sep}${b64url}$`); +var isJWT = jwtRE.test.bind(jwtRE); async function auth(token) { - const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); + const isApp = isJWT(token); + const isInstallation = token.startsWith("v1.") || token.startsWith("ghs_"); + const isUserToServer = token.startsWith("ghu_"); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", diff --git a/.github/ng-renovate/yarn.lock b/.github/ng-renovate/yarn.lock index c091d297f..8eae78c65 100644 --- a/.github/ng-renovate/yarn.lock +++ b/.github/ng-renovate/yarn.lock @@ -950,7 +950,7 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/types@npm:3.723.0, @aws-sdk/types@npm:^3.222.0": +"@aws-sdk/types@npm:3.723.0": version: 3.723.0 resolution: "@aws-sdk/types@npm:3.723.0" dependencies: @@ -960,6 +960,16 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/types@npm:^3.222.0": + version: 3.734.0 + resolution: "@aws-sdk/types@npm:3.734.0" + dependencies: + "@smithy/types": "npm:^4.1.0" + tslib: "npm:^2.6.2" + checksum: 10c0/74313849619b8bce9e6a52c70fcdaa212574a443503c78bccdba77cdc7bc66b8cecefe461852e0bab7376cc2ec3e1891730b1a027be63efb47394115c8ddb856 + languageName: node + linkType: hard + "@aws-sdk/util-arn-parser@npm:3.723.0": version: 3.723.0 resolution: "@aws-sdk/util-arn-parser@npm:3.723.0" @@ -1061,12 +1071,12 @@ __metadata: linkType: hard "@babel/runtime-corejs3@npm:^7.14.9": - version: 7.26.0 - resolution: "@babel/runtime-corejs3@npm:7.26.0" + version: 7.26.7 + resolution: "@babel/runtime-corejs3@npm:7.26.7" dependencies: core-js-pure: "npm:^3.30.2" regenerator-runtime: "npm:^0.14.0" - checksum: 10c0/921fa27c004cf2b92f0d49efc2006cfc1a72d2a35c7374da8ec88d8b63543963e6ef29d4820e068a7892a7d553dc2bac7208aef8fef30642bc843b63255b650b + checksum: 10c0/399855ab2a1ef21364683a1a40a3280be71dbfee587c90fb57fce4508a783a846f925b7d5509bba3521674f44f76b4f8d31eb8a32e13dc333cdacd34c31f5119 languageName: node linkType: hard @@ -1335,16 +1345,7 @@ __metadata: languageName: node linkType: hard -"@opentelemetry/api-logs@npm:0.57.0, @opentelemetry/api-logs@npm:^0.57.0": - version: 0.57.0 - resolution: "@opentelemetry/api-logs@npm:0.57.0" - dependencies: - "@opentelemetry/api": "npm:^1.3.0" - checksum: 10c0/4aa333a1cd942d0905b4ceae369fabfd9785fc6879f38a9835ab09dd9c03f72eac06250d55c96f7ce83c088a8e8bcfc200f38b5e3313a0e9096add44b68bc92b - languageName: node - linkType: hard - -"@opentelemetry/api-logs@npm:0.57.1": +"@opentelemetry/api-logs@npm:0.57.1, @opentelemetry/api-logs@npm:^0.57.0": version: 0.57.1 resolution: "@opentelemetry/api-logs@npm:0.57.1" dependencies: @@ -1423,7 +1424,7 @@ __metadata: languageName: node linkType: hard -"@opentelemetry/instrumentation@npm:0.57.1": +"@opentelemetry/instrumentation@npm:0.57.1, @opentelemetry/instrumentation@npm:^0.57.0": version: 0.57.1 resolution: "@opentelemetry/instrumentation@npm:0.57.1" dependencies: @@ -1439,22 +1440,6 @@ __metadata: languageName: node linkType: hard -"@opentelemetry/instrumentation@npm:^0.57.0": - version: 0.57.0 - resolution: "@opentelemetry/instrumentation@npm:0.57.0" - dependencies: - "@opentelemetry/api-logs": "npm:0.57.0" - "@types/shimmer": "npm:^1.2.0" - import-in-the-middle: "npm:^1.8.1" - require-in-the-middle: "npm:^7.1.1" - semver: "npm:^7.5.2" - shimmer: "npm:^1.2.1" - peerDependencies: - "@opentelemetry/api": ^1.3.0 - checksum: 10c0/8bceabc6c47376760d46275f0adba711efa4015f46c9d502dc9b2c6fea10bcf8dab196e38080ce41829685075bcfad71de713ef71ddbfd542a92bf46f1f78dcd - languageName: node - linkType: hard - "@opentelemetry/otlp-exporter-base@npm:0.57.1": version: 0.57.1 resolution: "@opentelemetry/otlp-exporter-base@npm:0.57.1" @@ -2020,19 +2005,19 @@ __metadata: languageName: node linkType: hard -"@smithy/core@npm:^3.0.0, @smithy/core@npm:^3.1.0": - version: 3.1.0 - resolution: "@smithy/core@npm:3.1.0" +"@smithy/core@npm:^3.0.0, @smithy/core@npm:^3.1.2": + version: 3.1.2 + resolution: "@smithy/core@npm:3.1.2" dependencies: - "@smithy/middleware-serde": "npm:^4.0.1" + "@smithy/middleware-serde": "npm:^4.0.2" "@smithy/protocol-http": "npm:^5.0.1" "@smithy/types": "npm:^4.1.0" "@smithy/util-body-length-browser": "npm:^4.0.0" "@smithy/util-middleware": "npm:^4.0.1" - "@smithy/util-stream": "npm:^4.0.1" + "@smithy/util-stream": "npm:^4.0.2" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/94695aaa98b58431b255cb8f6f603d049a1fdad2995db69b13105e9d69b8a5a978885d879f09a4df6cbb0fd5cbcbbd912ba6515bf86736ce5c1d98b88df1eb77 + checksum: 10c0/971f6459041a088a9f571f5264e958c6b252f9d56aee210a2a4d4e6a2932a1f8754e48c37ef7c04c2c5e4073465cd6a2be255240c1bd45c30c7ff0669250f382 languageName: node linkType: hard @@ -2202,46 +2187,46 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-endpoint@npm:^4.0.0, @smithy/middleware-endpoint@npm:^4.0.1": - version: 4.0.1 - resolution: "@smithy/middleware-endpoint@npm:4.0.1" +"@smithy/middleware-endpoint@npm:^4.0.0, @smithy/middleware-endpoint@npm:^4.0.3": + version: 4.0.3 + resolution: "@smithy/middleware-endpoint@npm:4.0.3" dependencies: - "@smithy/core": "npm:^3.1.0" - "@smithy/middleware-serde": "npm:^4.0.1" + "@smithy/core": "npm:^3.1.2" + "@smithy/middleware-serde": "npm:^4.0.2" "@smithy/node-config-provider": "npm:^4.0.1" "@smithy/shared-ini-file-loader": "npm:^4.0.1" "@smithy/types": "npm:^4.1.0" "@smithy/url-parser": "npm:^4.0.1" "@smithy/util-middleware": "npm:^4.0.1" tslib: "npm:^2.6.2" - checksum: 10c0/b47425491804adbe1264a8d8fc1769104aa29a9951f77f1979d142ef46e436dd88901c72ee9d53276c6593bbb4f6d191c558ddc142653536cc61e80cc3c5ba34 + checksum: 10c0/9248c2faedb2249c9bd70cedd3fb07be6b739b3ac544a87a9be22c9e61795fcff420f53b81f223d7b0d83156dad2acfe10e614a3d92bffebf57bd93252533d31 languageName: node linkType: hard "@smithy/middleware-retry@npm:^4.0.0": - version: 4.0.1 - resolution: "@smithy/middleware-retry@npm:4.0.1" + version: 4.0.4 + resolution: "@smithy/middleware-retry@npm:4.0.4" dependencies: "@smithy/node-config-provider": "npm:^4.0.1" "@smithy/protocol-http": "npm:^5.0.1" "@smithy/service-error-classification": "npm:^4.0.1" - "@smithy/smithy-client": "npm:^4.1.0" + "@smithy/smithy-client": "npm:^4.1.3" "@smithy/types": "npm:^4.1.0" "@smithy/util-middleware": "npm:^4.0.1" "@smithy/util-retry": "npm:^4.0.1" tslib: "npm:^2.6.2" uuid: "npm:^9.0.1" - checksum: 10c0/582aedcad5938f1372eb8200dd1be0b58f0aeadea2f13eac03cb0ed7f6264408fae0d004138dc32739a9077a49b64043ac2bd41bac3e40e7635ead906eea9622 + checksum: 10c0/d15fecaca5758f0877cecd7de8f9434450850ada42e1e4ac871a181b90e4186dc6d6a912e5e7a4778bf637673823b24922de11cd4e3bbfb75036eef8152bb918 languageName: node linkType: hard -"@smithy/middleware-serde@npm:^4.0.0, @smithy/middleware-serde@npm:^4.0.1": - version: 4.0.1 - resolution: "@smithy/middleware-serde@npm:4.0.1" +"@smithy/middleware-serde@npm:^4.0.0, @smithy/middleware-serde@npm:^4.0.2": + version: 4.0.2 + resolution: "@smithy/middleware-serde@npm:4.0.2" dependencies: "@smithy/types": "npm:^4.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/b133aa4b5c98da47a38225310ba2e6feea712d98f8ccae81825c1eec5a006214dbbb4b89415b9ad644f9cbcabe5461f84032cf4a3d0d68b705b9a73e29af80e2 + checksum: 10c0/b1efee86ecc37a063bdfdb89cf691c9b9627502473f2caa0c964c0648f7b550b7a49755a9b13cdfc11aebf1641cf3ae6f8b5f1895a20241960504936da9b3138 languageName: node linkType: hard @@ -2267,16 +2252,16 @@ __metadata: languageName: node linkType: hard -"@smithy/node-http-handler@npm:^4.0.0, @smithy/node-http-handler@npm:^4.0.1": - version: 4.0.1 - resolution: "@smithy/node-http-handler@npm:4.0.1" +"@smithy/node-http-handler@npm:^4.0.0, @smithy/node-http-handler@npm:^4.0.2": + version: 4.0.2 + resolution: "@smithy/node-http-handler@npm:4.0.2" dependencies: "@smithy/abort-controller": "npm:^4.0.1" "@smithy/protocol-http": "npm:^5.0.1" "@smithy/querystring-builder": "npm:^4.0.1" "@smithy/types": "npm:^4.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/ab6181d6b4754f3c417abe5494807ac74a29fccd6a321d1240ba8ea9699df3d78ff204fa1a447d6415d8c523bf94ffa744d23e5f2608c63ae9cf827b6369c9d8 + checksum: 10c0/6a3446dcf3bf006cf55b065edfbe7636f2aa13073f2937e224890902de44b191a5214dce4cb61e98b1ad53889bdbb35386e8810a338bc75ea3743f8d4550a2ad languageName: node linkType: hard @@ -2356,18 +2341,18 @@ __metadata: languageName: node linkType: hard -"@smithy/smithy-client@npm:^4.0.0, @smithy/smithy-client@npm:^4.1.0": - version: 4.1.0 - resolution: "@smithy/smithy-client@npm:4.1.0" +"@smithy/smithy-client@npm:^4.0.0, @smithy/smithy-client@npm:^4.1.3": + version: 4.1.3 + resolution: "@smithy/smithy-client@npm:4.1.3" dependencies: - "@smithy/core": "npm:^3.1.0" - "@smithy/middleware-endpoint": "npm:^4.0.1" + "@smithy/core": "npm:^3.1.2" + "@smithy/middleware-endpoint": "npm:^4.0.3" "@smithy/middleware-stack": "npm:^4.0.1" "@smithy/protocol-http": "npm:^5.0.1" "@smithy/types": "npm:^4.1.0" - "@smithy/util-stream": "npm:^4.0.1" + "@smithy/util-stream": "npm:^4.0.2" tslib: "npm:^2.6.2" - checksum: 10c0/14a8f52dba92eb324604ba9abc78f03eb79e64d77fc6df720cb6d01e06eaa7d27c71e8485b32103945cdcf12cb81baf8dc9986dde5d1c8d20855b032fade57a6 + checksum: 10c0/d02044c4ff9e5e6d4c9fbc04b18c4718b1394c72ea5a926e2b6ea47da10a69b87dc27cd48da6c1a0272cc3f4c797591b4016d01bbba1b26397aab404231eda6c languageName: node linkType: hard @@ -2450,30 +2435,30 @@ __metadata: linkType: hard "@smithy/util-defaults-mode-browser@npm:^4.0.0": - version: 4.0.1 - resolution: "@smithy/util-defaults-mode-browser@npm:4.0.1" + version: 4.0.4 + resolution: "@smithy/util-defaults-mode-browser@npm:4.0.4" dependencies: "@smithy/property-provider": "npm:^4.0.1" - "@smithy/smithy-client": "npm:^4.1.0" + "@smithy/smithy-client": "npm:^4.1.3" "@smithy/types": "npm:^4.1.0" bowser: "npm:^2.11.0" tslib: "npm:^2.6.2" - checksum: 10c0/4aa00a339095e9651d34950aadddc474c46c15e48b14e1835bd58ee95aa235584118bf5a626d8934021dd2a7a485ba3b5ef2e3126c49ca4df3d8044150fb76c6 + checksum: 10c0/20c23f94a50d807abaa7dc00e5ec6adb3179672fc967018075e88b5c725ae8d87d8569c9987108b022b856428d55a7abb667d478f8756ad57159d7e65651d3b6 languageName: node linkType: hard "@smithy/util-defaults-mode-node@npm:^4.0.0": - version: 4.0.1 - resolution: "@smithy/util-defaults-mode-node@npm:4.0.1" + version: 4.0.4 + resolution: "@smithy/util-defaults-mode-node@npm:4.0.4" dependencies: "@smithy/config-resolver": "npm:^4.0.1" "@smithy/credential-provider-imds": "npm:^4.0.1" "@smithy/node-config-provider": "npm:^4.0.1" "@smithy/property-provider": "npm:^4.0.1" - "@smithy/smithy-client": "npm:^4.1.0" + "@smithy/smithy-client": "npm:^4.1.3" "@smithy/types": "npm:^4.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/e8d846194042cd49f377e78feafc20e4aa5840a4340b54b46a5fd95975cf42aae07606f796855be9e5b0e0569343031f388b098f398d015423f9ee3291e2609b + checksum: 10c0/90c213b09c694f1f2d71b147dbbd398be7283a30b0071e85ec968713073e4d5a4cac283426682ee2c09ee50a279a9a6f7f738c45887ba8005eb3a0d4f33d2b11 languageName: node linkType: hard @@ -2518,19 +2503,19 @@ __metadata: languageName: node linkType: hard -"@smithy/util-stream@npm:^4.0.0, @smithy/util-stream@npm:^4.0.1": - version: 4.0.1 - resolution: "@smithy/util-stream@npm:4.0.1" +"@smithy/util-stream@npm:^4.0.0, @smithy/util-stream@npm:^4.0.2": + version: 4.0.2 + resolution: "@smithy/util-stream@npm:4.0.2" dependencies: "@smithy/fetch-http-handler": "npm:^5.0.1" - "@smithy/node-http-handler": "npm:^4.0.1" + "@smithy/node-http-handler": "npm:^4.0.2" "@smithy/types": "npm:^4.1.0" "@smithy/util-base64": "npm:^4.0.0" "@smithy/util-buffer-from": "npm:^4.0.0" "@smithy/util-hex-encoding": "npm:^4.0.0" "@smithy/util-utf8": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/066d54981bc2d4aa5aa4026b88a5bfd79605c57c86c279c1811735d9f7fdd0e0fecacaecb727679d360101d5f31f5d68b463ce76fd8f25a38b274bfa62a6c7a5 + checksum: 10c0/f9c9afc51189e4d3d33e119fd639970e7abbb598c50ce20f493a2656a469177be4e8a52aa9b8c42ce1f86dd5d71333364a18d179e515e6cc7d28d636cc985f55 languageName: node linkType: hard @@ -2687,9 +2672,9 @@ __metadata: linkType: hard "@types/emscripten@npm:^1.39.6": - version: 1.39.13 - resolution: "@types/emscripten@npm:1.39.13" - checksum: 10c0/99c314418b6fbe113c4c81dc89501bdf723020d1de262a36a4e45236b268dcec3deab104e3a7d3569e6d7c5c942de30c9c6d77b93170c1bcaa85620c7ee4c2ba + version: 1.40.0 + resolution: "@types/emscripten@npm:1.40.0" + checksum: 10c0/2c809da43cb42396a78bc1bf1f8bb1eb23874b22425ccc0efd2dff80522318739fc38e845d98983948ca271fe1a551f68043094d20df14e745aff8db2123a0e5 languageName: node linkType: hard @@ -2733,11 +2718,11 @@ __metadata: linkType: hard "@types/node@npm:*, @types/node@npm:>=13.7.0": - version: 22.10.5 - resolution: "@types/node@npm:22.10.5" + version: 22.12.0 + resolution: "@types/node@npm:22.12.0" dependencies: undici-types: "npm:~6.20.0" - checksum: 10c0/6a0e7d1fe6a86ef6ee19c3c6af4c15542e61aea2f4cee655b6252efb356795f1f228bc8299921e82924e80ff8eca29b74d9dd0dd5cc1a90983f892f740b480df + checksum: 10c0/be220706732d95db2ed1c441c1e64cab90bf9a47519ce6f4c79cc5a9ec9d5c517131a149a9ac30afac1a30103e67e3a00d453ba7c1b0141608a3a7ba6397c303 languageName: node linkType: hard @@ -2899,6 +2884,13 @@ __metadata: languageName: node linkType: hard +"abbrev@npm:^3.0.0": + version: 3.0.0 + resolution: "abbrev@npm:3.0.0" + checksum: 10c0/049704186396f571650eb7b22ed3627b77a5aedf98bb83caf2eac81ca2a3e25e795394b0464cfb2d6076df3db6a5312139eac5b6a126ca296ac53c5008069c28 + languageName: node + linkType: hard + "acorn-import-attributes@npm:^1.9.5": version: 1.9.5 resolution: "acorn-import-attributes@npm:1.9.5" @@ -3940,11 +3932,11 @@ __metadata: linkType: hard "es-object-atoms@npm:^1.0.0": - version: 1.0.0 - resolution: "es-object-atoms@npm:1.0.0" + version: 1.1.1 + resolution: "es-object-atoms@npm:1.1.1" dependencies: es-errors: "npm:^1.3.0" - checksum: 10c0/1fed3d102eb27ab8d983337bb7c8b159dd2a1e63ff833ec54eea1311c96d5b08223b433060ba240541ca8adba9eee6b0a60cdbf2f80634b784febc9cc8b687b4 + checksum: 10c0/65364812ca4daf48eb76e2a3b7a89b3f6a2e62a1c420766ce9f692665a29d94fe41fe88b65f24106f449859549711e4b40d9fb8002d862dfd7eb1c512d10be0c languageName: node linkType: hard @@ -4123,11 +4115,11 @@ __metadata: linkType: hard "for-each@npm:^0.3.3": - version: 0.3.3 - resolution: "for-each@npm:0.3.3" + version: 0.3.4 + resolution: "for-each@npm:0.3.4" dependencies: - is-callable: "npm:^1.1.3" - checksum: 10c0/22330d8a2db728dbf003ec9182c2d421fbcd2969b02b4f97ec288721cda63eb28f2c08585ddccd0f77cb2930af8d958005c9e72f47141dc51816127a118f39aa + is-callable: "npm:^1.2.7" + checksum: 10c0/6b2016c0a0fe3107c70a233923cac74f07bedb5a1847636039fa6bcc3df09aefa554cfec23c3342ad365acac1f95e799d9f8e220cb82a4c7b8a84f969234302f languageName: node linkType: hard @@ -4155,7 +4147,7 @@ __metadata: languageName: node linkType: hard -"fs-extra@npm:11.2.0, fs-extra@npm:^11.2.0": +"fs-extra@npm:11.2.0": version: 11.2.0 resolution: "fs-extra@npm:11.2.0" dependencies: @@ -4166,7 +4158,7 @@ __metadata: languageName: node linkType: hard -"fs-extra@npm:11.3.0, fs-extra@npm:^11.3.0": +"fs-extra@npm:11.3.0, fs-extra@npm:^11.2.0, fs-extra@npm:^11.3.0": version: 11.3.0 resolution: "fs-extra@npm:11.3.0" dependencies: @@ -4802,7 +4794,7 @@ __metadata: languageName: node linkType: hard -"is-callable@npm:^1.1.3": +"is-callable@npm:^1.2.7": version: 1.2.7 resolution: "is-callable@npm:1.2.7" checksum: 10c0/ceebaeb9d92e8adee604076971dd6000d38d6afc40bb843ea8e45c5579b57671c3f3b50d7f04869618242c6cee08d1b67806a8cb8edaaaf7c0748b3720d6066f @@ -5800,10 +5792,10 @@ __metadata: languageName: node linkType: hard -"napi-build-utils@npm:^1.0.1": - version: 1.0.2 - resolution: "napi-build-utils@npm:1.0.2" - checksum: 10c0/37fd2cd0ff2ad20073ce78d83fd718a740d568b225924e753ae51cb69d68f330c80544d487e5e5bd18e28702ed2ca469c2424ad948becd1862c1b0209542b2e9 +"napi-build-utils@npm:^2.0.0": + version: 2.0.0 + resolution: "napi-build-utils@npm:2.0.0" + checksum: 10c0/5833aaeb5cc5c173da47a102efa4680a95842c13e0d9cc70428bd3ee8d96bb2172f8860d2811799b5daa5cbeda779933601492a2028a6a5351c6d0fcf6de83db languageName: node linkType: hard @@ -5853,11 +5845,11 @@ __metadata: linkType: soft "node-abi@npm:^3.3.0": - version: 3.71.0 - resolution: "node-abi@npm:3.71.0" + version: 3.73.0 + resolution: "node-abi@npm:3.73.0" dependencies: semver: "npm:^7.3.5" - checksum: 10c0/dbd0792ea729329cd9d099f28a5681ff9e8a6db48cf64e1437bf6a7fd669009d1e758a784619a1c4cc8bfd1ed17162f042c787654edf19a1f64b5018457c9c1f + checksum: 10c0/4cd237f2507f80048310f381198a07387b11cbaab7dfac61ccc40cdc83f2296c647df02b5ddfead9f40b845c696f0ce75fdaa01973d3f3f0686151e4f96d2c8c languageName: node linkType: hard @@ -5937,13 +5929,13 @@ __metadata: linkType: hard "nopt@npm:^8.0.0": - version: 8.0.0 - resolution: "nopt@npm:8.0.0" + version: 8.1.0 + resolution: "nopt@npm:8.1.0" dependencies: - abbrev: "npm:^2.0.0" + abbrev: "npm:^3.0.0" bin: nopt: bin/nopt.js - checksum: 10c0/19cb986f79abaca2d0f0b560021da7b32ee6fcc3de48f3eaeb0c324d36755c17754f886a754c091f01f740c17caf7d6aea8237b7fbaf39f476ae5e30a249f18f + checksum: 10c0/62e9ea70c7a3eb91d162d2c706b6606c041e4e7b547cbbb48f8b3695af457dd6479904d7ace600856bf923dd8d1ed0696f06195c8c20f02ac87c1da0e1d315ef languageName: node linkType: hard @@ -6289,15 +6281,15 @@ __metadata: linkType: hard "prebuild-install@npm:^7.1.1": - version: 7.1.2 - resolution: "prebuild-install@npm:7.1.2" + version: 7.1.3 + resolution: "prebuild-install@npm:7.1.3" dependencies: detect-libc: "npm:^2.0.0" expand-template: "npm:^2.0.3" github-from-package: "npm:0.0.0" minimist: "npm:^1.2.3" mkdirp-classic: "npm:^0.5.3" - napi-build-utils: "npm:^1.0.1" + napi-build-utils: "npm:^2.0.0" node-abi: "npm:^3.3.0" pump: "npm:^3.0.0" rc: "npm:^1.2.7" @@ -6306,7 +6298,7 @@ __metadata: tunnel-agent: "npm:^0.6.0" bin: prebuild-install: bin.js - checksum: 10c0/e64868ba9ef2068fd7264f5b03e5298a901e02a450acdb1f56258d88c09dea601eefdb3d1dfdff8513fdd230a92961712be0676192626a3b4d01ba154d48bdd3 + checksum: 10c0/25919a42b52734606a4036ab492d37cfe8b601273d8dfb1fa3c84e141a0a475e7bad3ab848c741d2f810cef892fcf6059b8c7fe5b29f98d30e0c29ad009bedff languageName: node linkType: hard @@ -6416,11 +6408,11 @@ __metadata: linkType: hard "qs@npm:^6.10.3": - version: 6.13.1 - resolution: "qs@npm:6.13.1" + version: 6.14.0 + resolution: "qs@npm:6.14.0" dependencies: - side-channel: "npm:^1.0.6" - checksum: 10c0/5ef527c0d62ffca5501322f0832d800ddc78eeb00da3b906f1b260ca0492721f8cdc13ee4b8fd8ac314a6ec37b948798c7b603ccc167e954088df392092f160c + side-channel: "npm:^1.1.0" + checksum: 10c0/8ea5d91bf34f440598ee389d4a7d95820e3b837d3fd9f433871f7924801becaa0cd3b3b4628d49a7784d06a8aea9bc4554d2b6d8d584e2d221dc06238a42909c languageName: node linkType: hard @@ -6739,13 +6731,13 @@ __metadata: linkType: hard "require-in-the-middle@npm:^7.1.1": - version: 7.4.0 - resolution: "require-in-the-middle@npm:7.4.0" + version: 7.5.0 + resolution: "require-in-the-middle@npm:7.5.0" dependencies: debug: "npm:^4.3.5" module-details-from-path: "npm:^1.0.3" resolve: "npm:^1.22.8" - checksum: 10c0/67c2242ea5b059c2a10c01d4f409233c67278051b47b9bf83198ab7e3ea591ffe3fa1d97912180d7d3d9a5e44490c00c55882b702849d61ac4db87d2c3823cb0 + checksum: 10c0/3712ac2008feb01aa49bebbe9aa188b9d7ecca96efc7c83993193c8271ea8434c5120eae64f6f1d97228b606dc2d799d0c7b6728ffc540ed60cfefda4e2911bb languageName: node linkType: hard @@ -6935,7 +6927,7 @@ __metadata: languageName: node linkType: hard -"semver@npm:7.6.3, semver@npm:^7.0.0, semver@npm:^7.1.2, semver@npm:^7.3.2, semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.5.2, semver@npm:^7.5.3": +"semver@npm:7.6.3": version: 7.6.3 resolution: "semver@npm:7.6.3" bin: @@ -6953,6 +6945,15 @@ __metadata: languageName: node linkType: hard +"semver@npm:^7.0.0, semver@npm:^7.1.2, semver@npm:^7.3.2, semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.5.2, semver@npm:^7.5.3": + version: 7.7.0 + resolution: "semver@npm:7.7.0" + bin: + semver: bin/semver.js + checksum: 10c0/bcd1c03209b4be7d8ca86c976a0410beba7d4ec1d49d846a4be154b958db1ff5eaee50760c1d4f4070b19dee3236b8672d3e09642c53ea23740398bba2538a2d + languageName: node + linkType: hard + "serialize-error@npm:^7.0.1": version: 7.0.1 resolution: "serialize-error@npm:7.0.1" @@ -7041,7 +7042,7 @@ __metadata: languageName: node linkType: hard -"side-channel@npm:^1.0.6": +"side-channel@npm:^1.1.0": version: 1.1.0 resolution: "side-channel@npm:1.1.0" dependencies: @@ -7186,9 +7187,9 @@ __metadata: linkType: hard "spdx-license-ids@npm:^3.0.0": - version: 3.0.20 - resolution: "spdx-license-ids@npm:3.0.20" - checksum: 10c0/bdff7534fad6ef59be49becda1edc3fb7f5b3d6f296a715516ab9d972b8ad59af2c34b2003e01db8970d4c673d185ff696ba74c6b61d3bf327e2b3eac22c297c + version: 3.0.21 + resolution: "spdx-license-ids@npm:3.0.21" + checksum: 10c0/ecb24c698d8496aa9efe23e0b1f751f8a7a89faedcdfcbfabae772b546c2db46ccde8f3bc447a238eb86bbcd4f73fea88720ef3b8394f7896381bec3d7736411 languageName: node linkType: hard diff --git a/github-actions/branch-manager/main.js b/github-actions/branch-manager/main.js index 54d74a15d..f7ca25d7b 100644 --- a/github-actions/branch-manager/main.js +++ b/github-actions/branch-manager/main.js @@ -39672,13 +39672,13 @@ var require_dist_node8 = __commonJS({ createTokenAuth: () => createTokenAuth3 }); module.exports = __toCommonJS(dist_src_exports); - var REGEX_IS_INSTALLATION_LEGACY2 = /^v1\./; - var REGEX_IS_INSTALLATION2 = /^ghs_/; - var REGEX_IS_USER_TO_SERVER2 = /^ghu_/; + var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; + var REGEX_IS_INSTALLATION = /^ghs_/; + var REGEX_IS_USER_TO_SERVER = /^ghu_/; async function auth6(token) { const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY2.test(token) || REGEX_IS_INSTALLATION2.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER2.test(token); + const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); + const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", @@ -43203,7 +43203,7 @@ async function getResponseData(response) { return response.text().catch(() => ""); } const mimetype = (0, import_fast_content_type_parse.safeParse)(contentType); - if (mimetype.type === "application/json") { + if (isJSONResponse(mimetype)) { let text = ""; try { text = await response.text(); @@ -43217,6 +43217,9 @@ async function getResponseData(response) { return response.arrayBuffer().catch(() => new ArrayBuffer(0)); } } +function isJSONResponse(mimetype) { + return mimetype.type === "application/json" || mimetype.type === "application/scim+json"; +} function toErrorMessage(data) { if (typeof data === "string") { return data; @@ -43363,13 +43366,14 @@ function withCustomRequest(customRequest) { } // -var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; -var REGEX_IS_INSTALLATION = /^ghs_/; -var REGEX_IS_USER_TO_SERVER = /^ghu_/; +var b64url = "(?:[a-zA-Z0-9_-]+)"; +var sep = "\\."; +var jwtRE = new RegExp(`^${b64url}${sep}${b64url}${sep}${b64url}$`); +var isJWT = jwtRE.test.bind(jwtRE); async function auth(token) { - const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); + const isApp = isJWT(token); + const isInstallation = token.startsWith("v1.") || token.startsWith("ghs_"); + const isUserToServer = token.startsWith("ghu_"); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", diff --git a/github-actions/commit-message-based-labels/main.js b/github-actions/commit-message-based-labels/main.js index 325da43dd..8a1bde054 100644 --- a/github-actions/commit-message-based-labels/main.js +++ b/github-actions/commit-message-based-labels/main.js @@ -39672,13 +39672,13 @@ var require_dist_node8 = __commonJS({ createTokenAuth: () => createTokenAuth3 }); module.exports = __toCommonJS(dist_src_exports); - var REGEX_IS_INSTALLATION_LEGACY2 = /^v1\./; - var REGEX_IS_INSTALLATION2 = /^ghs_/; - var REGEX_IS_USER_TO_SERVER2 = /^ghu_/; + var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; + var REGEX_IS_INSTALLATION = /^ghs_/; + var REGEX_IS_USER_TO_SERVER = /^ghu_/; async function auth6(token) { const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY2.test(token) || REGEX_IS_INSTALLATION2.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER2.test(token); + const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); + const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", @@ -43606,7 +43606,7 @@ async function getResponseData(response) { return response.text().catch(() => ""); } const mimetype = (0, import_fast_content_type_parse.safeParse)(contentType); - if (mimetype.type === "application/json") { + if (isJSONResponse(mimetype)) { let text = ""; try { text = await response.text(); @@ -43620,6 +43620,9 @@ async function getResponseData(response) { return response.arrayBuffer().catch(() => new ArrayBuffer(0)); } } +function isJSONResponse(mimetype) { + return mimetype.type === "application/json" || mimetype.type === "application/scim+json"; +} function toErrorMessage(data) { if (typeof data === "string") { return data; @@ -43766,13 +43769,14 @@ function withCustomRequest(customRequest) { } // -var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; -var REGEX_IS_INSTALLATION = /^ghs_/; -var REGEX_IS_USER_TO_SERVER = /^ghu_/; +var b64url = "(?:[a-zA-Z0-9_-]+)"; +var sep = "\\."; +var jwtRE = new RegExp(`^${b64url}${sep}${b64url}${sep}${b64url}$`); +var isJWT = jwtRE.test.bind(jwtRE); async function auth(token) { - const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); + const isApp = isJWT(token); + const isInstallation = token.startsWith("v1.") || token.startsWith("ghs_"); + const isUserToServer = token.startsWith("ghu_"); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", diff --git a/github-actions/create-pr-for-changes/main.js b/github-actions/create-pr-for-changes/main.js index e7e66e3d2..8a54193be 100644 --- a/github-actions/create-pr-for-changes/main.js +++ b/github-actions/create-pr-for-changes/main.js @@ -39667,13 +39667,13 @@ var require_dist_node8 = __commonJS({ createTokenAuth: () => createTokenAuth3 }); module.exports = __toCommonJS(dist_src_exports); - var REGEX_IS_INSTALLATION_LEGACY2 = /^v1\./; - var REGEX_IS_INSTALLATION2 = /^ghs_/; - var REGEX_IS_USER_TO_SERVER2 = /^ghu_/; + var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; + var REGEX_IS_INSTALLATION = /^ghs_/; + var REGEX_IS_USER_TO_SERVER = /^ghu_/; async function auth2(token) { const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY2.test(token) || REGEX_IS_INSTALLATION2.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER2.test(token); + const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); + const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", @@ -44377,7 +44377,7 @@ async function getResponseData(response) { return response.text().catch(() => ""); } const mimetype = (0, import_fast_content_type_parse.safeParse)(contentType); - if (mimetype.type === "application/json") { + if (isJSONResponse(mimetype)) { let text = ""; try { text = await response.text(); @@ -44391,6 +44391,9 @@ async function getResponseData(response) { return response.arrayBuffer().catch(() => new ArrayBuffer(0)); } } +function isJSONResponse(mimetype) { + return mimetype.type === "application/json" || mimetype.type === "application/scim+json"; +} function toErrorMessage(data) { if (typeof data === "string") { return data; @@ -44537,13 +44540,14 @@ function withCustomRequest(customRequest) { } // -var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; -var REGEX_IS_INSTALLATION = /^ghs_/; -var REGEX_IS_USER_TO_SERVER = /^ghu_/; +var b64url = "(?:[a-zA-Z0-9_-]+)"; +var sep = "\\."; +var jwtRE = new RegExp(`^${b64url}${sep}${b64url}${sep}${b64url}$`); +var isJWT = jwtRE.test.bind(jwtRE); async function auth(token) { - const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); + const isApp = isJWT(token); + const isInstallation = token.startsWith("v1.") || token.startsWith("ghs_"); + const isUserToServer = token.startsWith("ghu_"); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", diff --git a/github-actions/feature-request/main.js b/github-actions/feature-request/main.js index f61bb75d6..fe91f6a64 100644 --- a/github-actions/feature-request/main.js +++ b/github-actions/feature-request/main.js @@ -39672,13 +39672,13 @@ var require_dist_node8 = __commonJS({ createTokenAuth: () => createTokenAuth3 }); module.exports = __toCommonJS(dist_src_exports); - var REGEX_IS_INSTALLATION_LEGACY2 = /^v1\./; - var REGEX_IS_INSTALLATION2 = /^ghs_/; - var REGEX_IS_USER_TO_SERVER2 = /^ghu_/; + var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; + var REGEX_IS_INSTALLATION = /^ghs_/; + var REGEX_IS_USER_TO_SERVER = /^ghu_/; async function auth6(token) { const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY2.test(token) || REGEX_IS_INSTALLATION2.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER2.test(token); + const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); + const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", @@ -43206,7 +43206,7 @@ async function getResponseData(response) { return response.text().catch(() => ""); } const mimetype = (0, import_fast_content_type_parse.safeParse)(contentType); - if (mimetype.type === "application/json") { + if (isJSONResponse(mimetype)) { let text = ""; try { text = await response.text(); @@ -43220,6 +43220,9 @@ async function getResponseData(response) { return response.arrayBuffer().catch(() => new ArrayBuffer(0)); } } +function isJSONResponse(mimetype) { + return mimetype.type === "application/json" || mimetype.type === "application/scim+json"; +} function toErrorMessage(data) { if (typeof data === "string") { return data; @@ -43366,13 +43369,14 @@ function withCustomRequest(customRequest) { } // -var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; -var REGEX_IS_INSTALLATION = /^ghs_/; -var REGEX_IS_USER_TO_SERVER = /^ghu_/; +var b64url = "(?:[a-zA-Z0-9_-]+)"; +var sep = "\\."; +var jwtRE = new RegExp(`^${b64url}${sep}${b64url}${sep}${b64url}$`); +var isJWT = jwtRE.test.bind(jwtRE); async function auth(token) { - const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); + const isApp = isJWT(token); + const isInstallation = token.startsWith("v1.") || token.startsWith("ghs_"); + const isUserToServer = token.startsWith("ghu_"); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", diff --git a/github-actions/google-internal-tests/main.js b/github-actions/google-internal-tests/main.js index 9516a16c8..40b340413 100644 --- a/github-actions/google-internal-tests/main.js +++ b/github-actions/google-internal-tests/main.js @@ -39671,13 +39671,13 @@ var require_dist_node8 = __commonJS({ createTokenAuth: () => createTokenAuth3 }); module.exports = __toCommonJS(dist_src_exports); - var REGEX_IS_INSTALLATION_LEGACY2 = /^v1\./; - var REGEX_IS_INSTALLATION2 = /^ghs_/; - var REGEX_IS_USER_TO_SERVER2 = /^ghu_/; + var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; + var REGEX_IS_INSTALLATION = /^ghs_/; + var REGEX_IS_USER_TO_SERVER = /^ghu_/; async function auth2(token) { const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY2.test(token) || REGEX_IS_INSTALLATION2.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER2.test(token); + const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); + const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", @@ -43609,15 +43609,15 @@ var require_jsonc_parser = __commonJS({ throw earlyReturnException; } }, - onSeparator: (sep2, offset, length) => { + onSeparator: (sep3, offset, length) => { if (position <= offset) { throw earlyReturnException; } - if (sep2 === ":" && previousNode && previousNode.type === "property") { + if (sep3 === ":" && previousNode && previousNode.type === "property") { previousNode.colonOffset = offset; isAtPropertyKey = false; previousNode = void 0; - } else if (sep2 === ",") { + } else if (sep3 === ",") { const last = segments[segments.length - 1]; if (typeof last === "number") { segments[segments.length - 1] = last + 1; @@ -43732,11 +43732,11 @@ var require_jsonc_parser = __commonJS({ onValue({ type: getNodeType(value), offset, length, parent: currentParent, value }); ensurePropertyComplete(offset + length); }, - onSeparator: (sep2, offset, length) => { + onSeparator: (sep3, offset, length) => { if (currentParent.type === "property") { - if (sep2 === ":") { + if (sep3 === ":") { currentParent.colonOffset = offset; - } else if (sep2 === ",") { + } else if (sep3 === ",") { ensurePropertyComplete(offset); } } @@ -44995,7 +44995,7 @@ async function getResponseData(response) { return response.text().catch(() => ""); } const mimetype = (0, import_fast_content_type_parse.safeParse)(contentType); - if (mimetype.type === "application/json") { + if (isJSONResponse(mimetype)) { let text = ""; try { text = await response.text(); @@ -45009,6 +45009,9 @@ async function getResponseData(response) { return response.arrayBuffer().catch(() => new ArrayBuffer(0)); } } +function isJSONResponse(mimetype) { + return mimetype.type === "application/json" || mimetype.type === "application/scim+json"; +} function toErrorMessage(data) { if (typeof data === "string") { return data; @@ -45155,13 +45158,14 @@ function withCustomRequest(customRequest) { } // -var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; -var REGEX_IS_INSTALLATION = /^ghs_/; -var REGEX_IS_USER_TO_SERVER = /^ghu_/; +var b64url = "(?:[a-zA-Z0-9_-]+)"; +var sep = "\\."; +var jwtRE = new RegExp(`^${b64url}${sep}${b64url}${sep}${b64url}$`); +var isJWT = jwtRE.test.bind(jwtRE); async function auth(token) { - const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); + const isApp = isJWT(token); + const isInstallation = token.startsWith("v1.") || token.startsWith("ghs_"); + const isUserToServer = token.startsWith("ghu_"); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", @@ -48290,8 +48294,8 @@ var path = { win32: { sep: "\\" }, posix: { sep: "/" } }; -var sep = defaultPlatform === "win32" ? path.win32.sep : path.posix.sep; -minimatch.sep = sep; +var sep2 = defaultPlatform === "win32" ? path.win32.sep : path.posix.sep; +minimatch.sep = sep2; var GLOBSTAR = Symbol("globstar **"); minimatch.GLOBSTAR = GLOBSTAR; var qmark2 = "[^/]"; diff --git a/github-actions/org-file-sync/main.js b/github-actions/org-file-sync/main.js index 74a786734..01d961fb7 100644 --- a/github-actions/org-file-sync/main.js +++ b/github-actions/org-file-sync/main.js @@ -39672,13 +39672,13 @@ var require_dist_node8 = __commonJS({ createTokenAuth: () => createTokenAuth3 }); module.exports = __toCommonJS(dist_src_exports); - var REGEX_IS_INSTALLATION_LEGACY2 = /^v1\./; - var REGEX_IS_INSTALLATION2 = /^ghs_/; - var REGEX_IS_USER_TO_SERVER2 = /^ghu_/; + var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; + var REGEX_IS_INSTALLATION = /^ghs_/; + var REGEX_IS_USER_TO_SERVER = /^ghu_/; async function auth6(token) { const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY2.test(token) || REGEX_IS_INSTALLATION2.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER2.test(token); + const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); + const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", @@ -43203,7 +43203,7 @@ async function getResponseData(response) { return response.text().catch(() => ""); } const mimetype = (0, import_fast_content_type_parse.safeParse)(contentType); - if (mimetype.type === "application/json") { + if (isJSONResponse(mimetype)) { let text = ""; try { text = await response.text(); @@ -43217,6 +43217,9 @@ async function getResponseData(response) { return response.arrayBuffer().catch(() => new ArrayBuffer(0)); } } +function isJSONResponse(mimetype) { + return mimetype.type === "application/json" || mimetype.type === "application/scim+json"; +} function toErrorMessage(data) { if (typeof data === "string") { return data; @@ -43363,13 +43366,14 @@ function withCustomRequest(customRequest) { } // -var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; -var REGEX_IS_INSTALLATION = /^ghs_/; -var REGEX_IS_USER_TO_SERVER = /^ghu_/; +var b64url = "(?:[a-zA-Z0-9_-]+)"; +var sep = "\\."; +var jwtRE = new RegExp(`^${b64url}${sep}${b64url}${sep}${b64url}$`); +var isJWT = jwtRE.test.bind(jwtRE); async function auth(token) { - const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); + const isApp = isJWT(token); + const isInstallation = token.startsWith("v1.") || token.startsWith("ghs_"); + const isUserToServer = token.startsWith("ghu_"); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", diff --git a/github-actions/post-approval-changes/main.js b/github-actions/post-approval-changes/main.js index f3f7de2db..154e1c007 100644 --- a/github-actions/post-approval-changes/main.js +++ b/github-actions/post-approval-changes/main.js @@ -39672,13 +39672,13 @@ var require_dist_node8 = __commonJS({ createTokenAuth: () => createTokenAuth3 }); module.exports = __toCommonJS(dist_src_exports); - var REGEX_IS_INSTALLATION_LEGACY2 = /^v1\./; - var REGEX_IS_INSTALLATION2 = /^ghs_/; - var REGEX_IS_USER_TO_SERVER2 = /^ghu_/; + var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; + var REGEX_IS_INSTALLATION = /^ghs_/; + var REGEX_IS_USER_TO_SERVER = /^ghu_/; async function auth6(token) { const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY2.test(token) || REGEX_IS_INSTALLATION2.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER2.test(token); + const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); + const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", @@ -43203,7 +43203,7 @@ async function getResponseData(response) { return response.text().catch(() => ""); } const mimetype = (0, import_fast_content_type_parse.safeParse)(contentType); - if (mimetype.type === "application/json") { + if (isJSONResponse(mimetype)) { let text = ""; try { text = await response.text(); @@ -43217,6 +43217,9 @@ async function getResponseData(response) { return response.arrayBuffer().catch(() => new ArrayBuffer(0)); } } +function isJSONResponse(mimetype) { + return mimetype.type === "application/json" || mimetype.type === "application/scim+json"; +} function toErrorMessage(data) { if (typeof data === "string") { return data; @@ -43363,13 +43366,14 @@ function withCustomRequest(customRequest) { } // -var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; -var REGEX_IS_INSTALLATION = /^ghs_/; -var REGEX_IS_USER_TO_SERVER = /^ghu_/; +var b64url = "(?:[a-zA-Z0-9_-]+)"; +var sep = "\\."; +var jwtRE = new RegExp(`^${b64url}${sep}${b64url}${sep}${b64url}$`); +var isJWT = jwtRE.test.bind(jwtRE); async function auth(token) { - const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); + const isApp = isJWT(token); + const isInstallation = token.startsWith("v1.") || token.startsWith("ghs_"); + const isUserToServer = token.startsWith("ghu_"); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", diff --git a/github-actions/previews/upload-artifacts-to-firebase/fetch-workflow-artifact.js b/github-actions/previews/upload-artifacts-to-firebase/fetch-workflow-artifact.js index c31402210..393cc4b01 100644 --- a/github-actions/previews/upload-artifacts-to-firebase/fetch-workflow-artifact.js +++ b/github-actions/previews/upload-artifacts-to-firebase/fetch-workflow-artifact.js @@ -717,7 +717,7 @@ async function getResponseData(response) { return response.text().catch(() => ""); } const mimetype = (0, import_fast_content_type_parse.safeParse)(contentType); - if (mimetype.type === "application/json") { + if (isJSONResponse(mimetype)) { let text = ""; try { text = await response.text(); @@ -731,6 +731,9 @@ async function getResponseData(response) { return response.arrayBuffer().catch(() => new ArrayBuffer(0)); } } +function isJSONResponse(mimetype) { + return mimetype.type === "application/json" || mimetype.type === "application/scim+json"; +} function toErrorMessage(data) { if (typeof data === "string") { return data; @@ -877,13 +880,14 @@ function withCustomRequest(customRequest) { } // -var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; -var REGEX_IS_INSTALLATION = /^ghs_/; -var REGEX_IS_USER_TO_SERVER = /^ghu_/; +var b64url = "(?:[a-zA-Z0-9_-]+)"; +var sep = "\\."; +var jwtRE = new RegExp(`^${b64url}${sep}${b64url}${sep}${b64url}$`); +var isJWT = jwtRE.test.bind(jwtRE); async function auth(token) { - const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); + const isApp = isJWT(token); + const isInstallation = token.startsWith("v1.") || token.startsWith("ghs_"); + const isUserToServer = token.startsWith("ghu_"); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", diff --git a/github-actions/unified-status-check/main.js b/github-actions/unified-status-check/main.js index 4154a80ea..658350222 100644 --- a/github-actions/unified-status-check/main.js +++ b/github-actions/unified-status-check/main.js @@ -39768,13 +39768,13 @@ var require_dist_node8 = __commonJS({ createTokenAuth: () => createTokenAuth3 }); module.exports = __toCommonJS(dist_src_exports); - var REGEX_IS_INSTALLATION_LEGACY2 = /^v1\./; - var REGEX_IS_INSTALLATION2 = /^ghs_/; - var REGEX_IS_USER_TO_SERVER2 = /^ghu_/; + var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; + var REGEX_IS_INSTALLATION = /^ghs_/; + var REGEX_IS_USER_TO_SERVER = /^ghu_/; async function auth6(token) { const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY2.test(token) || REGEX_IS_INSTALLATION2.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER2.test(token); + const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); + const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", @@ -43490,7 +43490,7 @@ async function getResponseData(response) { return response.text().catch(() => ""); } const mimetype = (0, import_fast_content_type_parse.safeParse)(contentType); - if (mimetype.type === "application/json") { + if (isJSONResponse(mimetype)) { let text = ""; try { text = await response.text(); @@ -43504,6 +43504,9 @@ async function getResponseData(response) { return response.arrayBuffer().catch(() => new ArrayBuffer(0)); } } +function isJSONResponse(mimetype) { + return mimetype.type === "application/json" || mimetype.type === "application/scim+json"; +} function toErrorMessage(data) { if (typeof data === "string") { return data; @@ -43650,13 +43653,14 @@ function withCustomRequest(customRequest) { } // -var REGEX_IS_INSTALLATION_LEGACY = /^v1\./; -var REGEX_IS_INSTALLATION = /^ghs_/; -var REGEX_IS_USER_TO_SERVER = /^ghu_/; +var b64url = "(?:[a-zA-Z0-9_-]+)"; +var sep = "\\."; +var jwtRE = new RegExp(`^${b64url}${sep}${b64url}${sep}${b64url}$`); +var isJWT = jwtRE.test.bind(jwtRE); async function auth(token) { - const isApp = token.split(/\./).length === 3; - const isInstallation = REGEX_IS_INSTALLATION_LEGACY.test(token) || REGEX_IS_INSTALLATION.test(token); - const isUserToServer = REGEX_IS_USER_TO_SERVER.test(token); + const isApp = isJWT(token); + const isInstallation = token.startsWith("v1.") || token.startsWith("ghs_"); + const isUserToServer = token.startsWith("ghu_"); const tokenType = isApp ? "app" : isInstallation ? "installation" : isUserToServer ? "user-to-server" : "oauth"; return { type: "token", diff --git a/tools/ts_proto/yarn.lock b/tools/ts_proto/yarn.lock index 54d395475..9d8af2e41 100644 --- a/tools/ts_proto/yarn.lock +++ b/tools/ts_proto/yarn.lock @@ -20,23 +20,23 @@ __metadata: linkType: hard "@babel/parser@npm:^7.20.15": - version: 7.26.5 - resolution: "@babel/parser@npm:7.26.5" + version: 7.26.7 + resolution: "@babel/parser@npm:7.26.7" dependencies: - "@babel/types": "npm:^7.26.5" + "@babel/types": "npm:^7.26.7" bin: parser: ./bin/babel-parser.js - checksum: 10c0/2e77dd99ee028ee3c10fa03517ae1169f2432751adf71315e4dc0d90b61639d51760d622f418f6ac665ae4ea65f8485232a112ea0e76f18e5900225d3d19a61e + checksum: 10c0/dcb08a4f2878ece33caffefe43b71488d753324bae7ca58d64bca3bc4af34dcfa1b58abdf9972516d76af760fceb25bb9294ca33461d56b31c5059ccfe32001f languageName: node linkType: hard -"@babel/types@npm:^7.26.5": - version: 7.26.5 - resolution: "@babel/types@npm:7.26.5" +"@babel/types@npm:^7.26.7": + version: 7.26.7 + resolution: "@babel/types@npm:7.26.7" dependencies: "@babel/helper-string-parser": "npm:^7.25.9" "@babel/helper-validator-identifier": "npm:^7.25.9" - checksum: 10c0/0278053b69d7c2b8573aa36dc5242cad95f0d965e1c0ed21ccacac6330092e59ba5949753448f6d6eccf6ad59baaef270295cc05218352e060ea8c68388638c4 + checksum: 10c0/7810a2bca97b13c253f07a0863a628d33dbe76ee3c163367f24be93bfaf4c8c0a325f73208abaaa050a6b36059efc2950c2e4b71fb109c0f07fa62221d8473d4 languageName: node linkType: hard @@ -147,11 +147,11 @@ __metadata: linkType: hard "@types/node@npm:>=13.7.0": - version: 22.10.5 - resolution: "@types/node@npm:22.10.5" + version: 22.12.0 + resolution: "@types/node@npm:22.12.0" dependencies: undici-types: "npm:~6.20.0" - checksum: 10c0/6a0e7d1fe6a86ef6ee19c3c6af4c15542e61aea2f4cee655b6252efb356795f1f228bc8299921e82924e80ff8eca29b74d9dd0dd5cc1a90983f892f740b480df + checksum: 10c0/be220706732d95db2ed1c441c1e64cab90bf9a47519ce6f4c79cc5a9ec9d5c517131a149a9ac30afac1a30103e67e3a00d453ba7c1b0141608a3a7ba6397c303 languageName: node linkType: hard @@ -627,11 +627,11 @@ __metadata: linkType: hard "semver@npm:^7.1.2": - version: 7.6.3 - resolution: "semver@npm:7.6.3" + version: 7.7.0 + resolution: "semver@npm:7.7.0" bin: semver: bin/semver.js - checksum: 10c0/88f33e148b210c153873cb08cfe1e281d518aaa9a666d4d148add6560db5cd3c582f3a08ccb91f38d5f379ead256da9931234ed122057f40bb5766e65e58adaf + checksum: 10c0/bcd1c03209b4be7d8ca86c976a0410beba7d4ec1d49d846a4be154b958db1ff5eaee50760c1d4f4070b19dee3236b8672d3e09642c53ea23740398bba2538a2d languageName: node linkType: hard diff --git a/yarn.lock b/yarn.lock index f23ab581e..030ee4aec 100644 --- a/yarn.lock +++ b/yarn.lock @@ -73,9 +73,9 @@ __metadata: languageName: node linkType: hard -"@angular-devkit/core@npm:19.0.7": - version: 19.0.7 - resolution: "@angular-devkit/core@npm:19.0.7" +"@angular-devkit/core@npm:19.1.5": + version: 19.1.5 + resolution: "@angular-devkit/core@npm:19.1.5" dependencies: ajv: "npm:8.17.1" ajv-formats: "npm:3.0.1" @@ -85,15 +85,10 @@ __metadata: source-map: "npm:0.7.4" peerDependencies: chokidar: ^4.0.0 - dependenciesMeta: - esbuild: - built: true - puppeteer: - built: true peerDependenciesMeta: chokidar: optional: true - checksum: 10c0/f35477d774f7e9e9a611d1e8efc7224164f0567ec01eb3ee06ce52e4384a8e5604bba2a47ac4030cbcd6ec4a948d04998f89b23ee9a01bbb61e180848a4e904f + checksum: 10c0/5ed2f73f85e7c1936f8dce9e109ea2d95d76258a2e298371723ea0b2b6b9c6077f02c7b1fdea734c4416037a7eb771dc13809fdf5201b601bcbf1be967104db1 languageName: node linkType: hard @@ -116,21 +111,16 @@ __metadata: languageName: node linkType: hard -"@angular-devkit/schematics@npm:19.0.7, @angular-devkit/schematics@npm:^19.0.0": - version: 19.0.7 - resolution: "@angular-devkit/schematics@npm:19.0.7" +"@angular-devkit/schematics@npm:19.1.5, @angular-devkit/schematics@npm:^19.0.0": + version: 19.1.5 + resolution: "@angular-devkit/schematics@npm:19.1.5" dependencies: - "@angular-devkit/core": "npm:19.0.7" + "@angular-devkit/core": "npm:19.1.5" jsonc-parser: "npm:3.3.1" - magic-string: "npm:0.30.12" + magic-string: "npm:0.30.17" ora: "npm:5.4.1" rxjs: "npm:7.8.1" - dependenciesMeta: - esbuild: - built: true - puppeteer: - built: true - checksum: 10c0/b9a6f84d45a8bb69fc12f1f6230d982fc588a60eaade53b8bab3da9377d39e1c80c8d17b54d379cbc9ad87a4a7d778f7245481127c0e1a9690037b56e3b354b4 + checksum: 10c0/0b27ef7eddd9ecbbb8c33cbf5f8bda503a4716b08de632e47467d56ed426e42c5ebb7cff240d63044a8eb291121fe81a51c1e9dc3d49f41ba5327ab40dd0a86c languageName: node linkType: hard @@ -547,12 +537,12 @@ __metadata: linkType: hard "@angular/fire@npm:^19.0.0-rc": - version: 19.0.0-rc.5 - resolution: "@angular/fire@npm:19.0.0-rc.5" + version: 19.0.0 + resolution: "@angular/fire@npm:19.0.0" dependencies: "@angular-devkit/schematics": "npm:^19.0.0" "@schematics/angular": "npm:^19.0.0" - firebase: "npm:^11.0.2" + firebase: "npm:^11.2.0" rxfire: "npm:^6.1.0" tslib: "npm:^2.3.0" peerDependencies: @@ -568,7 +558,7 @@ __metadata: optional: true firebase-tools: optional: true - checksum: 10c0/5f1078f7c3cac60b8890ad535fed24546347536b684307c99054777d616a8c1db48087dde9b316c03aa5ca29a87a72fe8454f5c643fe2bf9d6266cfd86e70144 + checksum: 10c0/cc38f1d6910d74eed9ac074dd9730436e458ec632c5843a38ffd49cafd86fbd0e1eb1380824885880a0d965f3ebd1e9ac1c5af395e2e64e7fffb4c5a599708ef languageName: node linkType: hard @@ -660,15 +650,15 @@ __metadata: linkType: hard "@asamuzakjp/css-color@npm:^2.8.2": - version: 2.8.2 - resolution: "@asamuzakjp/css-color@npm:2.8.2" + version: 2.8.3 + resolution: "@asamuzakjp/css-color@npm:2.8.3" dependencies: "@csstools/css-calc": "npm:^2.1.1" "@csstools/css-color-parser": "npm:^3.0.7" "@csstools/css-parser-algorithms": "npm:^3.0.4" "@csstools/css-tokenizer": "npm:^3.0.3" - lru-cache: "npm:^11.0.2" - checksum: 10c0/352b91ca7741876e459cd3cb350a969e842da1e532577157d38365a6da89b7d6e6944249489366ee61b8a225ede1b521e7ab305b70ad4c688b01404061eecca8 + lru-cache: "npm:^10.4.3" + checksum: 10c0/e108c92ee5de6d8510c9aaca8375c0aeab730dc9b6d4bd287aea2a0379cfbaa09f0814dcacb3e2ddc5c79d7deedf3f82ec8d1ce0effd4a8fac8415b1fe553798 languageName: node linkType: hard @@ -864,17 +854,7 @@ __metadata: languageName: node linkType: hard -"@babel/helpers@npm:^7.26.0": - version: 7.26.0 - resolution: "@babel/helpers@npm:7.26.0" - dependencies: - "@babel/template": "npm:^7.25.9" - "@babel/types": "npm:^7.26.0" - checksum: 10c0/343333cced6946fe46617690a1d0789346960910225ce359021a88a60a65bc0d791f0c5d240c0ed46cf8cc63b5fd7df52734ff14e43b9c32feae2b61b1647097 - languageName: node - linkType: hard - -"@babel/helpers@npm:^7.26.7": +"@babel/helpers@npm:^7.26.0, @babel/helpers@npm:^7.26.7": version: 7.26.7 resolution: "@babel/helpers@npm:7.26.7" dependencies: @@ -884,18 +864,7 @@ __metadata: languageName: node linkType: hard -"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.0, @babel/parser@npm:^7.26.5": - version: 7.26.5 - resolution: "@babel/parser@npm:7.26.5" - dependencies: - "@babel/types": "npm:^7.26.5" - bin: - parser: ./bin/babel-parser.js - checksum: 10c0/2e77dd99ee028ee3c10fa03517ae1169f2432751adf71315e4dc0d90b61639d51760d622f418f6ac665ae4ea65f8485232a112ea0e76f18e5900225d3d19a61e - languageName: node - linkType: hard - -"@babel/parser@npm:^7.26.7": +"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.0, @babel/parser@npm:^7.26.5, @babel/parser@npm:^7.26.7": version: 7.26.7 resolution: "@babel/parser@npm:7.26.7" dependencies: @@ -953,22 +922,7 @@ __metadata: languageName: node linkType: hard -"@babel/traverse@npm:^7.25.9": - version: 7.26.5 - resolution: "@babel/traverse@npm:7.26.5" - dependencies: - "@babel/code-frame": "npm:^7.26.2" - "@babel/generator": "npm:^7.26.5" - "@babel/parser": "npm:^7.26.5" - "@babel/template": "npm:^7.25.9" - "@babel/types": "npm:^7.26.5" - debug: "npm:^4.3.1" - globals: "npm:^11.1.0" - checksum: 10c0/0779059ecf63e31446564cf31adf170e701e8017ef02c819c57924a9a83d6b2ce41dbff3ef295589da9410497a3e575655bb8084ca470e0ab1bc193128afa9fe - languageName: node - linkType: hard - -"@babel/traverse@npm:^7.26.7": +"@babel/traverse@npm:^7.25.9, @babel/traverse@npm:^7.26.7": version: 7.26.7 resolution: "@babel/traverse@npm:7.26.7" dependencies: @@ -983,17 +937,7 @@ __metadata: languageName: node linkType: hard -"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.24.7, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.0, @babel/types@npm:^7.26.5": - version: 7.26.5 - resolution: "@babel/types@npm:7.26.5" - dependencies: - "@babel/helper-string-parser": "npm:^7.25.9" - "@babel/helper-validator-identifier": "npm:^7.25.9" - checksum: 10c0/0278053b69d7c2b8573aa36dc5242cad95f0d965e1c0ed21ccacac6330092e59ba5949753448f6d6eccf6ad59baaef270295cc05218352e060ea8c68388638c4 - languageName: node - linkType: hard - -"@babel/types@npm:^7.26.7": +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.24.7, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.0, @babel/types@npm:^7.26.5, @babel/types@npm:^7.26.7": version: 7.26.7 resolution: "@babel/types@npm:7.26.7" dependencies: @@ -1262,9 +1206,9 @@ __metadata: linkType: hard "@electric-sql/pglite@npm:^0.2.0": - version: 0.2.15 - resolution: "@electric-sql/pglite@npm:0.2.15" - checksum: 10c0/26908b12097350a89106cdb6720d3c0991102b56efcc7a7131e761a1ce74fd8e845ef20ceaefdc853d2ac4f613ec07570cd9fc822928902707c4e0bd1e4f184c + version: 0.2.16 + resolution: "@electric-sql/pglite@npm:0.2.16" + checksum: 10c0/192abb00f3eb9fd2ec6bf12a71954b70c0f85fb551f2989cde4893a8e667ca564b9092533d73edb511cb0a0dc569970517cb92e568b1960a201610de9174cf37 languageName: node linkType: hard @@ -1625,21 +1569,6 @@ __metadata: languageName: node linkType: hard -"@firebase/analytics-compat@npm:0.2.16": - version: 0.2.16 - resolution: "@firebase/analytics-compat@npm:0.2.16" - dependencies: - "@firebase/analytics": "npm:0.10.10" - "@firebase/analytics-types": "npm:0.8.3" - "@firebase/component": "npm:0.6.11" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app-compat": 0.x - checksum: 10c0/c4a91732827cb16c91bb2f19a77d85c274a0a1de20fd2ae2fcb92a55d6fe5cd60fe66ef687f80467f75aeaa49c3a2c68d485616b98a5f5c7f3a3f7960eb9b2a6 - languageName: node - linkType: hard - "@firebase/analytics-compat@npm:0.2.17": version: 0.2.17 resolution: "@firebase/analytics-compat@npm:0.2.17" @@ -1662,21 +1591,6 @@ __metadata: languageName: node linkType: hard -"@firebase/analytics@npm:0.10.10": - version: 0.10.10 - resolution: "@firebase/analytics@npm:0.10.10" - dependencies: - "@firebase/component": "npm:0.6.11" - "@firebase/installations": "npm:0.6.11" - "@firebase/logger": "npm:0.4.4" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app": 0.x - checksum: 10c0/909f191e1ff8046088387a6fca901834fb0378b4e75314d27a605011559a9d06cd0bbb04826e552907ecce459d158c56c982e032b5383f1dabe8d8c906ce9f01 - languageName: node - linkType: hard - "@firebase/analytics@npm:0.10.11": version: 0.10.11 resolution: "@firebase/analytics@npm:0.10.11" @@ -1692,22 +1606,6 @@ __metadata: languageName: node linkType: hard -"@firebase/app-check-compat@npm:0.3.17": - version: 0.3.17 - resolution: "@firebase/app-check-compat@npm:0.3.17" - dependencies: - "@firebase/app-check": "npm:0.8.10" - "@firebase/app-check-types": "npm:0.5.3" - "@firebase/component": "npm:0.6.11" - "@firebase/logger": "npm:0.4.4" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app-compat": 0.x - checksum: 10c0/3e89e78d044c66c1d036f6f078eb27e6738c0a017cd1e71edb9e3b40efdd61fe36a2c6c4de755ff0cef15574f70c178c8874f95f709ace68013934f6c160a235 - languageName: node - linkType: hard - "@firebase/app-check-compat@npm:0.3.18": version: 0.3.18 resolution: "@firebase/app-check-compat@npm:0.3.18" @@ -1738,20 +1636,6 @@ __metadata: languageName: node linkType: hard -"@firebase/app-check@npm:0.8.10": - version: 0.8.10 - resolution: "@firebase/app-check@npm:0.8.10" - dependencies: - "@firebase/component": "npm:0.6.11" - "@firebase/logger": "npm:0.4.4" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app": 0.x - checksum: 10c0/0e189362413b7592f13dcd0dc471cad2d94b3927272d6b0e839c7020c3427ae22d92f57246b49e88d2d952c6651cb1bd4c1c7fb0b9b5134eb7928dcc3aa02468 - languageName: node - linkType: hard - "@firebase/app-check@npm:0.8.11": version: 0.8.11 resolution: "@firebase/app-check@npm:0.8.11" @@ -1766,19 +1650,6 @@ __metadata: languageName: node linkType: hard -"@firebase/app-compat@npm:0.2.47": - version: 0.2.47 - resolution: "@firebase/app-compat@npm:0.2.47" - dependencies: - "@firebase/app": "npm:0.10.17" - "@firebase/component": "npm:0.6.11" - "@firebase/logger": "npm:0.4.4" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - checksum: 10c0/e126992792c0cc1231336e8289e38b239920fe2db65fe2f895c1d9ef078a1b357b6f0a00dc9f94f6fe961ed59e916ce577b22f8ffeef508e2794348ffab1adaa - languageName: node - linkType: hard - "@firebase/app-compat@npm:0.2.48": version: 0.2.48 resolution: "@firebase/app-compat@npm:0.2.48" @@ -1799,19 +1670,6 @@ __metadata: languageName: node linkType: hard -"@firebase/app@npm:0.10.17": - version: 0.10.17 - resolution: "@firebase/app@npm:0.10.17" - dependencies: - "@firebase/component": "npm:0.6.11" - "@firebase/logger": "npm:0.4.4" - "@firebase/util": "npm:1.10.2" - idb: "npm:7.1.1" - tslib: "npm:^2.1.0" - checksum: 10c0/942fad056b3f42e2a4943c85324cee86fc0be484da670cf032b25e09de81f449d253068362dac6078cac739b4126f936493664e9d40031fa08285785eda452e5 - languageName: node - linkType: hard - "@firebase/app@npm:0.10.18": version: 0.10.18 resolution: "@firebase/app@npm:0.10.18" @@ -1825,21 +1683,6 @@ __metadata: languageName: node linkType: hard -"@firebase/auth-compat@npm:0.5.16": - version: 0.5.16 - resolution: "@firebase/auth-compat@npm:0.5.16" - dependencies: - "@firebase/auth": "npm:1.8.1" - "@firebase/auth-types": "npm:0.12.3" - "@firebase/component": "npm:0.6.11" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app-compat": 0.x - checksum: 10c0/01ebf2251c5d995f2b7d87523875da10a813f76af4d13fef2fb4be3dcd407252e65f8c48af9c9b2d8cc0cdda8294de27674489e21b431f8b82a8b2c38d82067b - languageName: node - linkType: hard - "@firebase/auth-compat@npm:0.5.17": version: 0.5.17 resolution: "@firebase/auth-compat@npm:0.5.17" @@ -1872,24 +1715,6 @@ __metadata: languageName: node linkType: hard -"@firebase/auth@npm:1.8.1": - version: 1.8.1 - resolution: "@firebase/auth@npm:1.8.1" - dependencies: - "@firebase/component": "npm:0.6.11" - "@firebase/logger": "npm:0.4.4" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app": 0.x - "@react-native-async-storage/async-storage": ^1.18.1 - peerDependenciesMeta: - "@react-native-async-storage/async-storage": - optional: true - checksum: 10c0/01755c08fda1fea7b50ba22a5cb0e3663be62c9096d0d48201e54ad5d96c4a24259b45117163a150a20cecdf606133b14b939cb5219c28b0c4bd4f003db978e4 - languageName: node - linkType: hard - "@firebase/auth@npm:1.8.2": version: 1.8.2 resolution: "@firebase/auth@npm:1.8.2" @@ -1908,16 +1733,6 @@ __metadata: languageName: node linkType: hard -"@firebase/component@npm:0.6.11": - version: 0.6.11 - resolution: "@firebase/component@npm:0.6.11" - dependencies: - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - checksum: 10c0/788d66a0acb506507042173d1906edaf533ca68405f84aed16f33d8f2a130a8796e2f5c2d80177fc6c1826b74ea510da4541df9c381f6bf0f2b5417d3527797c - languageName: node - linkType: hard - "@firebase/component@npm:0.6.12": version: 0.6.12 resolution: "@firebase/component@npm:0.6.12" @@ -1928,21 +1743,6 @@ __metadata: languageName: node linkType: hard -"@firebase/data-connect@npm:0.1.3": - version: 0.1.3 - resolution: "@firebase/data-connect@npm:0.1.3" - dependencies: - "@firebase/auth-interop-types": "npm:0.2.4" - "@firebase/component": "npm:0.6.11" - "@firebase/logger": "npm:0.4.4" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app": 0.x - checksum: 10c0/6919efd9506d6f0f69635765996b301f117675c4df514aefe20a2c9f4066f2fb5bdecad89a443eb94eacc464713422b32378862ab291b2bdf108c0cbc4d50154 - languageName: node - linkType: hard - "@firebase/data-connect@npm:0.2.0": version: 0.2.0 resolution: "@firebase/data-connect@npm:0.2.0" @@ -1958,21 +1758,7 @@ __metadata: languageName: node linkType: hard -"@firebase/database-compat@npm:2.0.1, @firebase/database-compat@npm:^2.0.0": - version: 2.0.1 - resolution: "@firebase/database-compat@npm:2.0.1" - dependencies: - "@firebase/component": "npm:0.6.11" - "@firebase/database": "npm:1.0.10" - "@firebase/database-types": "npm:1.0.7" - "@firebase/logger": "npm:0.4.4" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - checksum: 10c0/e63c3f432d49c0cebc7f36da97d497ece86fa7d1d68bc59020395f96a3e10a16acf299d6299127a4ef8b8abd5f08ea257c5de3e9af44640f4517021a21495a4f - languageName: node - linkType: hard - -"@firebase/database-compat@npm:2.0.2": +"@firebase/database-compat@npm:2.0.2, @firebase/database-compat@npm:^2.0.0": version: 2.0.2 resolution: "@firebase/database-compat@npm:2.0.2" dependencies: @@ -1986,17 +1772,7 @@ __metadata: languageName: node linkType: hard -"@firebase/database-types@npm:1.0.7, @firebase/database-types@npm:^1.0.6": - version: 1.0.7 - resolution: "@firebase/database-types@npm:1.0.7" - dependencies: - "@firebase/app-types": "npm:0.9.3" - "@firebase/util": "npm:1.10.2" - checksum: 10c0/12c1f6b489d662f1191b65c1cd08cea1c60591f24867241d8861cf5c21e0b6402f7af2e832e35bc43cdc94dd00658da0d124009d4b3ab036f188299fbb8561d8 - languageName: node - linkType: hard - -"@firebase/database-types@npm:1.0.8": +"@firebase/database-types@npm:1.0.8, @firebase/database-types@npm:^1.0.6": version: 1.0.8 resolution: "@firebase/database-types@npm:1.0.8" dependencies: @@ -2006,21 +1782,6 @@ __metadata: languageName: node linkType: hard -"@firebase/database@npm:1.0.10": - version: 1.0.10 - resolution: "@firebase/database@npm:1.0.10" - dependencies: - "@firebase/app-check-interop-types": "npm:0.3.3" - "@firebase/auth-interop-types": "npm:0.2.4" - "@firebase/component": "npm:0.6.11" - "@firebase/logger": "npm:0.4.4" - "@firebase/util": "npm:1.10.2" - faye-websocket: "npm:0.11.4" - tslib: "npm:^2.1.0" - checksum: 10c0/c159b14f91824ce37c59630ac8333befb63e223289a0fbed4f8a6551a39090dc9893a5a34b89034888d18fa80a1831567688273a07d08f4a101bb206a02daf9a - languageName: node - linkType: hard - "@firebase/database@npm:1.0.11": version: 1.0.11 resolution: "@firebase/database@npm:1.0.11" @@ -2036,21 +1797,6 @@ __metadata: languageName: node linkType: hard -"@firebase/firestore-compat@npm:0.3.40": - version: 0.3.40 - resolution: "@firebase/firestore-compat@npm:0.3.40" - dependencies: - "@firebase/component": "npm:0.6.11" - "@firebase/firestore": "npm:4.7.5" - "@firebase/firestore-types": "npm:3.0.3" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app-compat": 0.x - checksum: 10c0/3cdaf8789e860d7460d36265516bb5516d252307c0cb58b00272c51f856973c347c13e119c258c5b2eb39071409c16fa84f583b8396d39248668cec0a164991d - languageName: node - linkType: hard - "@firebase/firestore-compat@npm:0.3.41": version: 0.3.41 resolution: "@firebase/firestore-compat@npm:0.3.41" @@ -2076,23 +1822,6 @@ __metadata: languageName: node linkType: hard -"@firebase/firestore@npm:4.7.5": - version: 4.7.5 - resolution: "@firebase/firestore@npm:4.7.5" - dependencies: - "@firebase/component": "npm:0.6.11" - "@firebase/logger": "npm:0.4.4" - "@firebase/util": "npm:1.10.2" - "@firebase/webchannel-wrapper": "npm:1.0.3" - "@grpc/grpc-js": "npm:~1.9.0" - "@grpc/proto-loader": "npm:^0.7.8" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app": 0.x - checksum: 10c0/e176609c492b39231514f31c1f68c42cc7093a781d05124c68cf6aaf29d82bf9129a0ac6d02325d5408d34a092368128bd7e073fe490f93c72c9f6c3bf4851aa - languageName: node - linkType: hard - "@firebase/firestore@npm:4.7.6": version: 4.7.6 resolution: "@firebase/firestore@npm:4.7.6" @@ -2110,21 +1839,6 @@ __metadata: languageName: node linkType: hard -"@firebase/functions-compat@npm:0.3.17": - version: 0.3.17 - resolution: "@firebase/functions-compat@npm:0.3.17" - dependencies: - "@firebase/component": "npm:0.6.11" - "@firebase/functions": "npm:0.12.0" - "@firebase/functions-types": "npm:0.6.3" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app-compat": 0.x - checksum: 10c0/dff84d87a34916396217de802630ee02273b3321957d8a90f56888e80fcbc725cf4ea2311e6bc8f5fb072ce2f9440b784f4879430ec18118f6c3c0c8b1d605a7 - languageName: node - linkType: hard - "@firebase/functions-compat@npm:0.3.18": version: 0.3.18 resolution: "@firebase/functions-compat@npm:0.3.18" @@ -2147,22 +1861,6 @@ __metadata: languageName: node linkType: hard -"@firebase/functions@npm:0.12.0": - version: 0.12.0 - resolution: "@firebase/functions@npm:0.12.0" - dependencies: - "@firebase/app-check-interop-types": "npm:0.3.3" - "@firebase/auth-interop-types": "npm:0.2.4" - "@firebase/component": "npm:0.6.11" - "@firebase/messaging-interop-types": "npm:0.2.3" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app": 0.x - checksum: 10c0/ce0c204aa54b54e4dbe9fbc6ebaeb086a584edda5a46df4e4f38c919abc1e38c6d12d2af67b408e3618079b4164646646cb5158e279abef8ff56c39e35c8e28f - languageName: node - linkType: hard - "@firebase/functions@npm:0.12.1": version: 0.12.1 resolution: "@firebase/functions@npm:0.12.1" @@ -2179,21 +1877,6 @@ __metadata: languageName: node linkType: hard -"@firebase/installations-compat@npm:0.2.11": - version: 0.2.11 - resolution: "@firebase/installations-compat@npm:0.2.11" - dependencies: - "@firebase/component": "npm:0.6.11" - "@firebase/installations": "npm:0.6.11" - "@firebase/installations-types": "npm:0.5.3" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app-compat": 0.x - checksum: 10c0/3cab30c2c9c8db37e34d9b6b79022145fe2ae5ad71edff6ca880e6dbe020bb06c03757f5a69642b73c25242d2d1b92d14f65f8a2ab10b6f29c20602fff7faa4e - languageName: node - linkType: hard - "@firebase/installations-compat@npm:0.2.12": version: 0.2.12 resolution: "@firebase/installations-compat@npm:0.2.12" @@ -2218,20 +1901,6 @@ __metadata: languageName: node linkType: hard -"@firebase/installations@npm:0.6.11": - version: 0.6.11 - resolution: "@firebase/installations@npm:0.6.11" - dependencies: - "@firebase/component": "npm:0.6.11" - "@firebase/util": "npm:1.10.2" - idb: "npm:7.1.1" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app": 0.x - checksum: 10c0/4af7d5d7d9c4a0792a3ecfef510410b426beec085ae8cc6ae71b79fec47c68976239744c004d0239f5c759005f32cd5fb35d80c0f4725d8b47b4970ec5745ce0 - languageName: node - linkType: hard - "@firebase/installations@npm:0.6.12": version: 0.6.12 resolution: "@firebase/installations@npm:0.6.12" @@ -2255,20 +1924,6 @@ __metadata: languageName: node linkType: hard -"@firebase/messaging-compat@npm:0.2.15": - version: 0.2.15 - resolution: "@firebase/messaging-compat@npm:0.2.15" - dependencies: - "@firebase/component": "npm:0.6.11" - "@firebase/messaging": "npm:0.12.15" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app-compat": 0.x - checksum: 10c0/dc91420e63a6a0bfaeb8d58d15dae572aa0f2bbd3c579d62eb9061fae7513738a159170990e54cd980ee194eb7a5b100cbbaf5a431b935638ecf7b5962076490 - languageName: node - linkType: hard - "@firebase/messaging-compat@npm:0.2.16": version: 0.2.16 resolution: "@firebase/messaging-compat@npm:0.2.16" @@ -2290,22 +1945,6 @@ __metadata: languageName: node linkType: hard -"@firebase/messaging@npm:0.12.15": - version: 0.12.15 - resolution: "@firebase/messaging@npm:0.12.15" - dependencies: - "@firebase/component": "npm:0.6.11" - "@firebase/installations": "npm:0.6.11" - "@firebase/messaging-interop-types": "npm:0.2.3" - "@firebase/util": "npm:1.10.2" - idb: "npm:7.1.1" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app": 0.x - checksum: 10c0/d3922785d8cbc83f5656250a75911e10d74c05337d67b79188dd8049917de97bd73ad7e15b335dd9680b2c0813dadf52e29864dcaf50f465f2a551223abb9231 - languageName: node - linkType: hard - "@firebase/messaging@npm:0.12.16": version: 0.12.16 resolution: "@firebase/messaging@npm:0.12.16" @@ -2322,22 +1961,6 @@ __metadata: languageName: node linkType: hard -"@firebase/performance-compat@npm:0.2.11": - version: 0.2.11 - resolution: "@firebase/performance-compat@npm:0.2.11" - dependencies: - "@firebase/component": "npm:0.6.11" - "@firebase/logger": "npm:0.4.4" - "@firebase/performance": "npm:0.6.11" - "@firebase/performance-types": "npm:0.2.3" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app-compat": 0.x - checksum: 10c0/6a84e73d6a92cd892b0d6f6feaf0f65198f2660c8c0774d1d5202680563858ba44a4467d0d8ad688e9cbba77e58b9a731cb5756efccf3db6622a2b42265cde1a - languageName: node - linkType: hard - "@firebase/performance-compat@npm:0.2.12": version: 0.2.12 resolution: "@firebase/performance-compat@npm:0.2.12" @@ -2361,21 +1984,6 @@ __metadata: languageName: node linkType: hard -"@firebase/performance@npm:0.6.11": - version: 0.6.11 - resolution: "@firebase/performance@npm:0.6.11" - dependencies: - "@firebase/component": "npm:0.6.11" - "@firebase/installations": "npm:0.6.11" - "@firebase/logger": "npm:0.4.4" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app": 0.x - checksum: 10c0/4a4788d212e0cd7cdd2fe5623d71b7feac177fb4567f750ed23f0994ea960f77f8beb7051721e77fc44b6f40194aca33567c6c2139aa576736df36ea4934a608 - languageName: node - linkType: hard - "@firebase/performance@npm:0.6.12": version: 0.6.12 resolution: "@firebase/performance@npm:0.6.12" @@ -2391,22 +1999,6 @@ __metadata: languageName: node linkType: hard -"@firebase/remote-config-compat@npm:0.2.11": - version: 0.2.11 - resolution: "@firebase/remote-config-compat@npm:0.2.11" - dependencies: - "@firebase/component": "npm:0.6.11" - "@firebase/logger": "npm:0.4.4" - "@firebase/remote-config": "npm:0.4.11" - "@firebase/remote-config-types": "npm:0.3.3" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app-compat": 0.x - checksum: 10c0/49e8ee380c7d20b98b5ea533fddb8125dbdb0f123ea40ceb17ad5a7148f432effeb2ac613c6f4ac2ec966eb6f00501da0d4c26594d414274774a99d60e9c733e - languageName: node - linkType: hard - "@firebase/remote-config-compat@npm:0.2.12": version: 0.2.12 resolution: "@firebase/remote-config-compat@npm:0.2.12" @@ -2423,13 +2015,6 @@ __metadata: languageName: node linkType: hard -"@firebase/remote-config-types@npm:0.3.3": - version: 0.3.3 - resolution: "@firebase/remote-config-types@npm:0.3.3" - checksum: 10c0/936ee3a5b673e424142d00e7a22788c3c6b28d068cc4fa690b203019f3f7586d1c5fe3cd520ea07744bf9ab93f25df44d0283efdb69611f6b8e02f102cdfd3eb - languageName: node - linkType: hard - "@firebase/remote-config-types@npm:0.4.0": version: 0.4.0 resolution: "@firebase/remote-config-types@npm:0.4.0" @@ -2437,21 +2022,6 @@ __metadata: languageName: node linkType: hard -"@firebase/remote-config@npm:0.4.11": - version: 0.4.11 - resolution: "@firebase/remote-config@npm:0.4.11" - dependencies: - "@firebase/component": "npm:0.6.11" - "@firebase/installations": "npm:0.6.11" - "@firebase/logger": "npm:0.4.4" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app": 0.x - checksum: 10c0/6115001a7f5bd22aa1f8bb2e8c18321c53acccd7d7808555c0b414d44e26d99014a9d6f33d38e23d9949edcb6fd8bb23787326ba7fdb92b7a146841867629ed8 - languageName: node - linkType: hard - "@firebase/remote-config@npm:0.5.0": version: 0.5.0 resolution: "@firebase/remote-config@npm:0.5.0" @@ -2467,21 +2037,6 @@ __metadata: languageName: node linkType: hard -"@firebase/storage-compat@npm:0.3.14": - version: 0.3.14 - resolution: "@firebase/storage-compat@npm:0.3.14" - dependencies: - "@firebase/component": "npm:0.6.11" - "@firebase/storage": "npm:0.13.4" - "@firebase/storage-types": "npm:0.8.3" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app-compat": 0.x - checksum: 10c0/e48b147e886ae7985f16c819756306664204b9dfcff7f08545ee7446bc1490d65935b11739c125a968e8462a8302b55d2f3189afc48ef0bb3b2d49256fe6df6e - languageName: node - linkType: hard - "@firebase/storage-compat@npm:0.3.15": version: 0.3.15 resolution: "@firebase/storage-compat@npm:0.3.15" @@ -2507,19 +2062,6 @@ __metadata: languageName: node linkType: hard -"@firebase/storage@npm:0.13.4": - version: 0.13.4 - resolution: "@firebase/storage@npm:0.13.4" - dependencies: - "@firebase/component": "npm:0.6.11" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app": 0.x - checksum: 10c0/65d9286867a878f60271a5a51f8d6fa54a72672d741b7cb5b3263226b963c94986e976e0bd5b8aa82d9c5fe7d9a751e6f793a58a1f46130ab2d3d613379af9a8 - languageName: node - linkType: hard - "@firebase/storage@npm:0.13.5": version: 0.13.5 resolution: "@firebase/storage@npm:0.13.5" @@ -2533,15 +2075,6 @@ __metadata: languageName: node linkType: hard -"@firebase/util@npm:1.10.2": - version: 1.10.2 - resolution: "@firebase/util@npm:1.10.2" - dependencies: - tslib: "npm:^2.1.0" - checksum: 10c0/d6abb471948517cc9c560ebbb44e9e135716829c3abcd248a1af8aa111e48311ab410b693adc8f3bfe3b564896da7000dd7e26e34ecf59326f3b204a6a8b123c - languageName: node - linkType: hard - "@firebase/util@npm:1.10.3": version: 1.10.3 resolution: "@firebase/util@npm:1.10.3" @@ -2551,22 +2084,6 @@ __metadata: languageName: node linkType: hard -"@firebase/vertexai@npm:1.0.2": - version: 1.0.2 - resolution: "@firebase/vertexai@npm:1.0.2" - dependencies: - "@firebase/app-check-interop-types": "npm:0.3.3" - "@firebase/component": "npm:0.6.11" - "@firebase/logger": "npm:0.4.4" - "@firebase/util": "npm:1.10.2" - tslib: "npm:^2.1.0" - peerDependencies: - "@firebase/app": 0.x - "@firebase/app-types": 0.x - checksum: 10c0/65bf3482aafcd85be75b23be6edfd89d8d4d2ac7681524e961ec4df31e9df33e6d17696b6d829e01ff6d71b5410a858f89148198a03ed3c7fe8ad8c8c79bcffc - languageName: node - linkType: hard - "@firebase/vertexai@npm:1.0.3": version: 1.0.3 resolution: "@firebase/vertexai@npm:1.0.3" @@ -2591,14 +2108,14 @@ __metadata: linkType: hard "@google-cloud/cloud-sql-connector@npm:^1.3.3": - version: 1.5.0 - resolution: "@google-cloud/cloud-sql-connector@npm:1.5.0" + version: 1.6.0 + resolution: "@google-cloud/cloud-sql-connector@npm:1.6.0" dependencies: "@googleapis/sqladmin": "npm:^24.0.0" gaxios: "npm:^6.1.1" google-auth-library: "npm:^9.2.0" p-throttle: "npm:^7.0.0" - checksum: 10c0/cbce689742515360f4520b3849f5795615166fe22768239428773169b6fd68e76e8eb227e3a35f791515f4b2ca31d8b28e8961a0313672d696f09e54e6c37302 + checksum: 10c0/5c4ce7b1fb02fa47439a183ba5304ef8afec38f3630838f3393e4be0672c1a998d89187b86fb300fb9eee4e4e86894089bb39f37fde2003fcb4f5ff5df508c0f languageName: node linkType: hard @@ -2664,15 +2181,15 @@ __metadata: linkType: hard "@google-cloud/pubsub@npm:^4.5.0": - version: 4.9.0 - resolution: "@google-cloud/pubsub@npm:4.9.0" + version: 4.10.0 + resolution: "@google-cloud/pubsub@npm:4.10.0" dependencies: "@google-cloud/paginator": "npm:^5.0.0" "@google-cloud/precise-date": "npm:^4.0.0" "@google-cloud/projectify": "npm:^4.0.0" "@google-cloud/promisify": "npm:^4.0.0" "@opentelemetry/api": "npm:~1.9.0" - "@opentelemetry/semantic-conventions": "npm:~1.26.0" + "@opentelemetry/semantic-conventions": "npm:~1.28.0" arrify: "npm:^2.0.0" extend: "npm:^3.0.2" google-auth-library: "npm:^9.3.0" @@ -2681,7 +2198,7 @@ __metadata: is-stream-ended: "npm:^0.1.4" lodash.snakecase: "npm:^4.1.1" p-defer: "npm:^3.0.0" - checksum: 10c0/575e0a890623e99932fed9ebfde75bc66eb97218e249c8bb090b29fa6f24489d8cd25f36de794aebcabfb1a1e7e2c7c39cb2f38dc60f125ea94f21968bf9441c + checksum: 10c0/01248613cadd55fcebbc1a263469483db88a6cef42e9e0a0701bbaab8c65bce1aec9f3aba949a2872263b7c5a77a0fb0537631eeccd898e006c1c9da88e8ba4a languageName: node linkType: hard @@ -3553,17 +3070,17 @@ __metadata: linkType: hard "@npmcli/package-json@npm:^6.0.0": - version: 6.1.0 - resolution: "@npmcli/package-json@npm:6.1.0" + version: 6.1.1 + resolution: "@npmcli/package-json@npm:6.1.1" dependencies: "@npmcli/git": "npm:^6.0.0" glob: "npm:^10.2.2" hosted-git-info: "npm:^8.0.0" json-parse-even-better-errors: "npm:^4.0.0" - normalize-package-data: "npm:^7.0.0" proc-log: "npm:^5.0.0" semver: "npm:^7.5.3" - checksum: 10c0/95cc97f2382084e71a33d2739f0b1e659e32a8449d134d4264ecc2b5ada548069122d95887fe692373e2703b7a296a17e7296a4ce955dfa80c6ce3e00b5fab53 + validate-npm-package-license: "npm:^3.0.4" + checksum: 10c0/ec24e6dc4ade64de205f7964e325de31ee0c2dd7d70c2321a2b822481bf97505fffbe23ec05672fc61862ae68bbae3e9b44d4640439081dbc8f8b2dcdeda2aa3 languageName: node linkType: hard @@ -3577,9 +3094,9 @@ __metadata: linkType: hard "@npmcli/redact@npm:^3.0.0": - version: 3.0.0 - resolution: "@npmcli/redact@npm:3.0.0" - checksum: 10c0/34823f0d6a3301b310921b9f849f3c9814339bb9cde9555ddd1d51167c51e8b08ca40160eeb86b54041779805502e51251e0fbe0702fb7ab10173901e5d1d28c + version: 3.1.1 + resolution: "@npmcli/redact@npm:3.1.1" + checksum: 10c0/0653d1acbad34c78a372ac581429c3a257849bc761322cad088a202dc6639f5a61912cae0a678e2f53fdf5a4b6e9353cc2d528155d3cad2c7d5e89486aed081c languageName: node linkType: hard @@ -3659,9 +3176,9 @@ __metadata: linkType: hard "@octokit/auth-token@npm:^5.0.0": - version: 5.1.1 - resolution: "@octokit/auth-token@npm:5.1.1" - checksum: 10c0/1e6117c5170de9a5532ffb85e0bda153f4dffdd66871c42de952828eddd9029fe5161a2a8bf20b57f0d45c80f8fb9ddc69aa639e0fa6b776829efb1b0881b154 + version: 5.1.2 + resolution: "@octokit/auth-token@npm:5.1.2" + checksum: 10c0/bd4952571d9c559ede1f6ef8f7756900256d19df0180db04da88886a05484c7e6a4397611422e4804465a82addc8c2daa21d0bb4f450403552ee81041a4046d1 languageName: node linkType: hard @@ -3876,15 +3393,15 @@ __metadata: linkType: hard "@octokit/request@npm:^9.1.4": - version: 9.1.4 - resolution: "@octokit/request@npm:9.1.4" + version: 9.2.0 + resolution: "@octokit/request@npm:9.2.0" dependencies: "@octokit/endpoint": "npm:^10.0.0" "@octokit/request-error": "npm:^6.0.1" "@octokit/types": "npm:^13.6.2" fast-content-type-parse: "npm:^2.0.0" universal-user-agent: "npm:^7.0.2" - checksum: 10c0/a5ebfeb1ed185aed5422f5d407153f9c43450051cf99b7da0c4d185926af84efc5ff9b3338a58c7229b4e69b9b4c951045212ef13516433e5e2c21cb1a4cbb54 + checksum: 10c0/025bcb0a1abf1290d5131919e5c7db9cee3df3a271524efd43ac6b9a66abb00d5893fa25ad11cb0546bd3f80096a58dca99fa7b6a06c23c9811bc644d3eb6fa2 languageName: node linkType: hard @@ -3978,147 +3495,140 @@ __metadata: linkType: hard "@opentelemetry/context-async-hooks@npm:^1.26.0": - version: 1.30.0 - resolution: "@opentelemetry/context-async-hooks@npm:1.30.0" + version: 1.30.1 + resolution: "@opentelemetry/context-async-hooks@npm:1.30.1" peerDependencies: "@opentelemetry/api": ">=1.0.0 <1.10.0" - checksum: 10c0/46fef8f3af37227c16cf4e3d9264bfc7cfbe7357cb4266fa10ef32aa3256da6782110bea997d7a6b6815afb540da0a937fb5ecbaaed248c0234f8872bf25e8df + checksum: 10c0/3e8114d360060a5225226d2fcd8df08cd542246003790a7f011c0774bc60b8a931f46f4c6673f3977a7d9bba717de6ee028cae51b752c2567053d7f46ed3eba3 languageName: node linkType: hard "@opentelemetry/core@npm:^1.27.0": - version: 1.30.0 - resolution: "@opentelemetry/core@npm:1.30.0" + version: 1.30.1 + resolution: "@opentelemetry/core@npm:1.30.1" dependencies: "@opentelemetry/semantic-conventions": "npm:1.28.0" peerDependencies: "@opentelemetry/api": ">=1.0.0 <1.10.0" - checksum: 10c0/52d17b5ddb06ab4241b977ff89b81f69f140edb5c2a78b2188d95fa7bdfdd1aa2dcafb1e2830ab77d557876682ab8f08727ba8f165ea3c39fbb6bf3b86ef33c8 + checksum: 10c0/4c25ba50a6137c2ba9ca563fb269378f3c9ca6fd1b3f15dbb6eff78eebf5656f281997cbb7be8e51c01649fd6ad091083fcd8a42dd9b5dfac907dc06d7cfa092 languageName: node linkType: hard -"@opentelemetry/semantic-conventions@npm:1.28.0, @opentelemetry/semantic-conventions@npm:^1.25.1": +"@opentelemetry/semantic-conventions@npm:1.28.0, @opentelemetry/semantic-conventions@npm:^1.25.1, @opentelemetry/semantic-conventions@npm:~1.28.0": version: 1.28.0 resolution: "@opentelemetry/semantic-conventions@npm:1.28.0" checksum: 10c0/deb8a0f744198071e70fea27143cf7c9f7ecb7e4d7b619488c917834ea09b31543c1c2bcea4ec5f3cf68797f0ef3549609c14e859013d9376400ac1499c2b9cb languageName: node linkType: hard -"@opentelemetry/semantic-conventions@npm:~1.26.0": - version: 1.26.0 - resolution: "@opentelemetry/semantic-conventions@npm:1.26.0" - checksum: 10c0/99068641898e1db1ce84d8f6b83a3d16acc1f395498c2215316be71b58aa280267a67fee1196f553a91d31b6853fe3452e12b26bd802c7d599b9387ee00fb41c - languageName: node - linkType: hard - -"@parcel/watcher-android-arm64@npm:2.5.0": - version: 2.5.0 - resolution: "@parcel/watcher-android-arm64@npm:2.5.0" +"@parcel/watcher-android-arm64@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-android-arm64@npm:2.5.1" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@parcel/watcher-darwin-arm64@npm:2.5.0": - version: 2.5.0 - resolution: "@parcel/watcher-darwin-arm64@npm:2.5.0" +"@parcel/watcher-darwin-arm64@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-darwin-arm64@npm:2.5.1" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@parcel/watcher-darwin-x64@npm:2.5.0": - version: 2.5.0 - resolution: "@parcel/watcher-darwin-x64@npm:2.5.0" +"@parcel/watcher-darwin-x64@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-darwin-x64@npm:2.5.1" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@parcel/watcher-freebsd-x64@npm:2.5.0": - version: 2.5.0 - resolution: "@parcel/watcher-freebsd-x64@npm:2.5.0" +"@parcel/watcher-freebsd-x64@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-freebsd-x64@npm:2.5.1" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@parcel/watcher-linux-arm-glibc@npm:2.5.0": - version: 2.5.0 - resolution: "@parcel/watcher-linux-arm-glibc@npm:2.5.0" +"@parcel/watcher-linux-arm-glibc@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-linux-arm-glibc@npm:2.5.1" conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard -"@parcel/watcher-linux-arm-musl@npm:2.5.0": - version: 2.5.0 - resolution: "@parcel/watcher-linux-arm-musl@npm:2.5.0" +"@parcel/watcher-linux-arm-musl@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-linux-arm-musl@npm:2.5.1" conditions: os=linux & cpu=arm & libc=musl languageName: node linkType: hard -"@parcel/watcher-linux-arm64-glibc@npm:2.5.0": - version: 2.5.0 - resolution: "@parcel/watcher-linux-arm64-glibc@npm:2.5.0" +"@parcel/watcher-linux-arm64-glibc@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-linux-arm64-glibc@npm:2.5.1" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@parcel/watcher-linux-arm64-musl@npm:2.5.0": - version: 2.5.0 - resolution: "@parcel/watcher-linux-arm64-musl@npm:2.5.0" +"@parcel/watcher-linux-arm64-musl@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-linux-arm64-musl@npm:2.5.1" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@parcel/watcher-linux-x64-glibc@npm:2.5.0": - version: 2.5.0 - resolution: "@parcel/watcher-linux-x64-glibc@npm:2.5.0" +"@parcel/watcher-linux-x64-glibc@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-linux-x64-glibc@npm:2.5.1" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@parcel/watcher-linux-x64-musl@npm:2.5.0": - version: 2.5.0 - resolution: "@parcel/watcher-linux-x64-musl@npm:2.5.0" +"@parcel/watcher-linux-x64-musl@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-linux-x64-musl@npm:2.5.1" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@parcel/watcher-win32-arm64@npm:2.5.0": - version: 2.5.0 - resolution: "@parcel/watcher-win32-arm64@npm:2.5.0" +"@parcel/watcher-win32-arm64@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-win32-arm64@npm:2.5.1" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@parcel/watcher-win32-ia32@npm:2.5.0": - version: 2.5.0 - resolution: "@parcel/watcher-win32-ia32@npm:2.5.0" +"@parcel/watcher-win32-ia32@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-win32-ia32@npm:2.5.1" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@parcel/watcher-win32-x64@npm:2.5.0": - version: 2.5.0 - resolution: "@parcel/watcher-win32-x64@npm:2.5.0" +"@parcel/watcher-win32-x64@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-win32-x64@npm:2.5.1" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@parcel/watcher@npm:^2.4.1": - version: 2.5.0 - resolution: "@parcel/watcher@npm:2.5.0" - dependencies: - "@parcel/watcher-android-arm64": "npm:2.5.0" - "@parcel/watcher-darwin-arm64": "npm:2.5.0" - "@parcel/watcher-darwin-x64": "npm:2.5.0" - "@parcel/watcher-freebsd-x64": "npm:2.5.0" - "@parcel/watcher-linux-arm-glibc": "npm:2.5.0" - "@parcel/watcher-linux-arm-musl": "npm:2.5.0" - "@parcel/watcher-linux-arm64-glibc": "npm:2.5.0" - "@parcel/watcher-linux-arm64-musl": "npm:2.5.0" - "@parcel/watcher-linux-x64-glibc": "npm:2.5.0" - "@parcel/watcher-linux-x64-musl": "npm:2.5.0" - "@parcel/watcher-win32-arm64": "npm:2.5.0" - "@parcel/watcher-win32-ia32": "npm:2.5.0" - "@parcel/watcher-win32-x64": "npm:2.5.0" + version: 2.5.1 + resolution: "@parcel/watcher@npm:2.5.1" + dependencies: + "@parcel/watcher-android-arm64": "npm:2.5.1" + "@parcel/watcher-darwin-arm64": "npm:2.5.1" + "@parcel/watcher-darwin-x64": "npm:2.5.1" + "@parcel/watcher-freebsd-x64": "npm:2.5.1" + "@parcel/watcher-linux-arm-glibc": "npm:2.5.1" + "@parcel/watcher-linux-arm-musl": "npm:2.5.1" + "@parcel/watcher-linux-arm64-glibc": "npm:2.5.1" + "@parcel/watcher-linux-arm64-musl": "npm:2.5.1" + "@parcel/watcher-linux-x64-glibc": "npm:2.5.1" + "@parcel/watcher-linux-x64-musl": "npm:2.5.1" + "@parcel/watcher-win32-arm64": "npm:2.5.1" + "@parcel/watcher-win32-ia32": "npm:2.5.1" + "@parcel/watcher-win32-x64": "npm:2.5.1" detect-libc: "npm:^1.0.3" is-glob: "npm:^4.0.3" micromatch: "npm:^4.0.5" @@ -4151,7 +3661,7 @@ __metadata: optional: true "@parcel/watcher-win32-x64": optional: true - checksum: 10c0/9bad727d8b11e5d150ec47459254544c583adaa47d047b8ef65e1c74aede1a0767dc7fc6b8997649dae07318d6ef39caba6a1c405d306398d5bcd47074ec5d29 + checksum: 10c0/8f35073d0c0b34a63d4c8d2213482f0ebc6a25de7b2cdd415d19cb929964a793cb285b68d1d50bfb732b070b3c82a2fdb4eb9c250eab709a1cd9d63345455a82 languageName: node linkType: hard @@ -4316,13 +3826,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-android-arm-eabi@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-android-arm-eabi@npm:4.30.1" - conditions: os=android & cpu=arm - languageName: node - linkType: hard - "@rollup/rollup-android-arm-eabi@npm:4.32.1": version: 4.32.1 resolution: "@rollup/rollup-android-arm-eabi@npm:4.32.1" @@ -4330,13 +3833,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-android-arm64@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-android-arm64@npm:4.30.1" - conditions: os=android & cpu=arm64 - languageName: node - linkType: hard - "@rollup/rollup-android-arm64@npm:4.32.1": version: 4.32.1 resolution: "@rollup/rollup-android-arm64@npm:4.32.1" @@ -4344,13 +3840,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-darwin-arm64@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-darwin-arm64@npm:4.30.1" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - "@rollup/rollup-darwin-arm64@npm:4.32.1": version: 4.32.1 resolution: "@rollup/rollup-darwin-arm64@npm:4.32.1" @@ -4358,13 +3847,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-darwin-x64@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-darwin-x64@npm:4.30.1" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - "@rollup/rollup-darwin-x64@npm:4.32.1": version: 4.32.1 resolution: "@rollup/rollup-darwin-x64@npm:4.32.1" @@ -4372,13 +3854,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-freebsd-arm64@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-freebsd-arm64@npm:4.30.1" - conditions: os=freebsd & cpu=arm64 - languageName: node - linkType: hard - "@rollup/rollup-freebsd-arm64@npm:4.32.1": version: 4.32.1 resolution: "@rollup/rollup-freebsd-arm64@npm:4.32.1" @@ -4386,13 +3861,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-freebsd-x64@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-freebsd-x64@npm:4.30.1" - conditions: os=freebsd & cpu=x64 - languageName: node - linkType: hard - "@rollup/rollup-freebsd-x64@npm:4.32.1": version: 4.32.1 resolution: "@rollup/rollup-freebsd-x64@npm:4.32.1" @@ -4400,13 +3868,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-arm-gnueabihf@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.30.1" - conditions: os=linux & cpu=arm & libc=glibc - languageName: node - linkType: hard - "@rollup/rollup-linux-arm-gnueabihf@npm:4.32.1": version: 4.32.1 resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.32.1" @@ -4414,13 +3875,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-arm-musleabihf@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.30.1" - conditions: os=linux & cpu=arm & libc=musl - languageName: node - linkType: hard - "@rollup/rollup-linux-arm-musleabihf@npm:4.32.1": version: 4.32.1 resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.32.1" @@ -4428,13 +3882,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-arm64-gnu@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.30.1" - conditions: os=linux & cpu=arm64 & libc=glibc - languageName: node - linkType: hard - "@rollup/rollup-linux-arm64-gnu@npm:4.32.1": version: 4.32.1 resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.32.1" @@ -4442,13 +3889,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-arm64-musl@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-linux-arm64-musl@npm:4.30.1" - conditions: os=linux & cpu=arm64 & libc=musl - languageName: node - linkType: hard - "@rollup/rollup-linux-arm64-musl@npm:4.32.1": version: 4.32.1 resolution: "@rollup/rollup-linux-arm64-musl@npm:4.32.1" @@ -4456,13 +3896,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-loongarch64-gnu@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.30.1" - conditions: os=linux & cpu=loong64 & libc=glibc - languageName: node - linkType: hard - "@rollup/rollup-linux-loongarch64-gnu@npm:4.32.1": version: 4.32.1 resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.32.1" @@ -4470,13 +3903,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-powerpc64le-gnu@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.30.1" - conditions: os=linux & cpu=ppc64 & libc=glibc - languageName: node - linkType: hard - "@rollup/rollup-linux-powerpc64le-gnu@npm:4.32.1": version: 4.32.1 resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.32.1" @@ -4484,13 +3910,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-gnu@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.30.1" - conditions: os=linux & cpu=riscv64 & libc=glibc - languageName: node - linkType: hard - "@rollup/rollup-linux-riscv64-gnu@npm:4.32.1": version: 4.32.1 resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.32.1" @@ -4498,13 +3917,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-s390x-gnu@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.30.1" - conditions: os=linux & cpu=s390x & libc=glibc - languageName: node - linkType: hard - "@rollup/rollup-linux-s390x-gnu@npm:4.32.1": version: 4.32.1 resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.32.1" @@ -4512,13 +3924,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-x64-gnu@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-linux-x64-gnu@npm:4.30.1" - conditions: os=linux & cpu=x64 & libc=glibc - languageName: node - linkType: hard - "@rollup/rollup-linux-x64-gnu@npm:4.32.1": version: 4.32.1 resolution: "@rollup/rollup-linux-x64-gnu@npm:4.32.1" @@ -4526,13 +3931,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-x64-musl@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-linux-x64-musl@npm:4.30.1" - conditions: os=linux & cpu=x64 & libc=musl - languageName: node - linkType: hard - "@rollup/rollup-linux-x64-musl@npm:4.32.1": version: 4.32.1 resolution: "@rollup/rollup-linux-x64-musl@npm:4.32.1" @@ -4540,13 +3938,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-win32-arm64-msvc@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.30.1" - conditions: os=win32 & cpu=arm64 - languageName: node - linkType: hard - "@rollup/rollup-win32-arm64-msvc@npm:4.32.1": version: 4.32.1 resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.32.1" @@ -4554,13 +3945,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-win32-ia32-msvc@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.30.1" - conditions: os=win32 & cpu=ia32 - languageName: node - linkType: hard - "@rollup/rollup-win32-ia32-msvc@npm:4.32.1": version: 4.32.1 resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.32.1" @@ -4568,13 +3952,6 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-win32-x64-msvc@npm:4.30.1": - version: 4.30.1 - resolution: "@rollup/rollup-win32-x64-msvc@npm:4.30.1" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - "@rollup/rollup-win32-x64-msvc@npm:4.32.1": version: 4.32.1 resolution: "@rollup/rollup-win32-x64-msvc@npm:4.32.1" @@ -4652,18 +4029,13 @@ __metadata: linkType: hard "@schematics/angular@npm:^19.0.0": - version: 19.0.7 - resolution: "@schematics/angular@npm:19.0.7" + version: 19.1.5 + resolution: "@schematics/angular@npm:19.1.5" dependencies: - "@angular-devkit/core": "npm:19.0.7" - "@angular-devkit/schematics": "npm:19.0.7" + "@angular-devkit/core": "npm:19.1.5" + "@angular-devkit/schematics": "npm:19.1.5" jsonc-parser: "npm:3.3.1" - dependenciesMeta: - esbuild: - built: true - puppeteer: - built: true - checksum: 10c0/89eb3c8db3c7bc2401d69de00d5d57855ec85c324759815679813cacb6317a25ccfcd9b69afd96eb720205f72b38335ab178ca12402a1b9416f1ea121b201b0b + checksum: 10c0/28a491445ace5f76ae272e27ac93548aed339247ee12f26b9d6b6a46c108beb4701bca6ca78a2ce771113fa5f9041881f958504bae02070d80ee7e9b99165251 languageName: node linkType: hard @@ -4707,9 +4079,9 @@ __metadata: linkType: hard "@sigstore/protobuf-specs@npm:^0.3.2": - version: 0.3.2 - resolution: "@sigstore/protobuf-specs@npm:0.3.2" - checksum: 10c0/108eed419181ff599763f2d28ff5087e7bce9d045919de548677520179fe77fb2e2b7290216c93c7a01bdb2972b604bf44599273c991bbdf628fbe1b9b70aacb + version: 0.3.3 + resolution: "@sigstore/protobuf-specs@npm:0.3.3" + checksum: 10c0/e0a68795fa19e437fca2c3993e5a57e989642d65434beda54b29017c1629176cc8abeb81bb1e0923259cdfb19fe1fee6f1b8680a8f8240dc14c7a7de2bbae7af languageName: node linkType: hard @@ -4939,13 +4311,6 @@ __metadata: languageName: node linkType: hard -"@types/cookie@npm:^0.4.1": - version: 0.4.1 - resolution: "@types/cookie@npm:0.4.1" - checksum: 10c0/f96afe12bd51be1ec61410b0641243d93fa3a494702407c787a4c872b5c8bcd39b224471452055e44a9ce42af1a636e87d161994226eaf4c2be9c30f60418409 - languageName: node - linkType: hard - "@types/cors@npm:^2.8.1, @types/cors@npm:^2.8.12, @types/cors@npm:^2.8.5": version: 2.8.17 resolution: "@types/cors@npm:2.8.17" @@ -5095,11 +4460,12 @@ __metadata: linkType: hard "@types/jsonwebtoken@npm:^9.0.2": - version: 9.0.7 - resolution: "@types/jsonwebtoken@npm:9.0.7" + version: 9.0.8 + resolution: "@types/jsonwebtoken@npm:9.0.8" dependencies: + "@types/ms": "npm:*" "@types/node": "npm:*" - checksum: 10c0/e1cd0e48fcae21b1d4378887a23453bd7212b480a131b11bcda2cdeb0687d03c9646ee5ba592e04cfaf76f7cc80f179950e627cdb3ebc90a5923bce49a35631a + checksum: 10c0/dd3ccea05115ad9c4458d0c2a487179b1abf8886eaa8cc77d64031a8ef47abd3ff038cdde26e76893372238c8612e4f5fd578b3400e525b65c0e8d3abefe5282 languageName: node linkType: hard @@ -5133,12 +4499,19 @@ __metadata: languageName: node linkType: hard +"@types/ms@npm:*": + version: 2.1.0 + resolution: "@types/ms@npm:2.1.0" + checksum: 10c0/5ce692ffe1549e1b827d99ef8ff71187457e0eb44adbae38fdf7b9a74bae8d20642ee963c14516db1d35fa2652e65f47680fdf679dcbde52bbfadd021f497225 + languageName: node + linkType: hard + "@types/node@npm:*, @types/node@npm:>=10.0.0, @types/node@npm:>=12.12.47, @types/node@npm:>=13.7.0, @types/node@npm:^22.8.7": - version: 22.10.5 - resolution: "@types/node@npm:22.10.5" + version: 22.12.0 + resolution: "@types/node@npm:22.12.0" dependencies: undici-types: "npm:~6.20.0" - checksum: 10c0/6a0e7d1fe6a86ef6ee19c3c6af4c15542e61aea2f4cee655b6252efb356795f1f228bc8299921e82924e80ff8eca29b74d9dd0dd5cc1a90983f892f740b480df + checksum: 10c0/be220706732d95db2ed1c441c1e64cab90bf9a47519ce6f4c79cc5a9ec9d5c517131a149a9ac30afac1a30103e67e3a00d453ba7c1b0141608a3a7ba6397c303 languageName: node linkType: hard @@ -5150,11 +4523,11 @@ __metadata: linkType: hard "@types/node@npm:^18.19.21": - version: 18.19.70 - resolution: "@types/node@npm:18.19.70" + version: 18.19.74 + resolution: "@types/node@npm:18.19.74" dependencies: undici-types: "npm:~5.26.4" - checksum: 10c0/68866e53b92be60d8840f5c93232d3ae39c71663101decc1d4f1870d9236c3c89e74177b616c2a2cabce116b1356f3e89c57df3e969c9f9b0e0b5c59b5f790f7 + checksum: 10c0/365d9cc2af934965aa6a8471e24ae80add815c15dc094e42a320c57c1ea5416032f0b7ef6f23e32174c34811fbb8d89ea8eaa1396548610fbb8ba317b6e93fbf languageName: node linkType: hard @@ -5199,9 +4572,9 @@ __metadata: linkType: hard "@types/qs@npm:*": - version: 6.9.17 - resolution: "@types/qs@npm:6.9.17" - checksum: 10c0/a183fa0b3464267f8f421e2d66d960815080e8aab12b9aadab60479ba84183b1cdba8f4eff3c06f76675a8e42fe6a3b1313ea76c74f2885c3e25d32499c17d1b + version: 6.9.18 + resolution: "@types/qs@npm:6.9.18" + checksum: 10c0/790b9091348e06dde2c8e4118b5771ab386a8c22a952139a2eb0675360a2070d0b155663bf6f75b23f258fd0a1f7ffc0ba0f059d99a719332c03c40d9e9cd63b languageName: node linkType: hard @@ -5334,16 +4707,7 @@ __metadata: languageName: node linkType: hard -"@types/ws@npm:*": - version: 8.5.13 - resolution: "@types/ws@npm:8.5.13" - dependencies: - "@types/node": "npm:*" - checksum: 10c0/a5430aa479bde588e69cb9175518d72f9338b6999e3b2ae16fc03d3bdcff8347e486dc031e4ed14601260463c07e1f9a0d7511dfc653712b047c439c680b0b34 - languageName: node - linkType: hard - -"@types/ws@npm:8.5.14": +"@types/ws@npm:*, @types/ws@npm:8.5.14": version: 8.5.14 resolution: "@types/ws@npm:8.5.14" dependencies: @@ -5417,6 +4781,13 @@ __metadata: languageName: node linkType: hard +"abbrev@npm:^3.0.0": + version: 3.0.0 + resolution: "abbrev@npm:3.0.0" + checksum: 10c0/049704186396f571650eb7b22ed3627b77a5aedf98bb83caf2eac81ca2a3e25e795394b0464cfb2d6076df3db6a5312139eac5b6a126ca296ac53c5008069c28 + languageName: node + linkType: hard + "abort-controller@npm:^3.0.0": version: 3.0.0 resolution: "abort-controller@npm:3.0.0" @@ -6348,13 +5719,13 @@ __metadata: languageName: node linkType: hard -"cacheable@npm:^1.8.7": - version: 1.8.7 - resolution: "cacheable@npm:1.8.7" +"cacheable@npm:^1.8.8": + version: 1.8.8 + resolution: "cacheable@npm:1.8.8" dependencies: - hookified: "npm:^1.6.0" + hookified: "npm:^1.7.0" keyv: "npm:^5.2.3" - checksum: 10c0/3403c2afe9f8bb804b2371e2aa45f10c1f817945ce20b3da2338d2f0b099c9a9d28e59939592e832ba0e6b1d932f8555cc0a0d815ca7bd68a086e1ad131ae40a + checksum: 10c0/24e0f93782015be75b1ec9fe3fb151b2921f61c282091b873f78a0efeb141e95a21d8aa5f4c6bd99a8acb0b485deb5801aa32b4ecf4b666efa7446739368588b languageName: node linkType: hard @@ -6407,9 +5778,9 @@ __metadata: linkType: hard "caniuse-lite@npm:^1.0.30001688": - version: 1.0.30001692 - resolution: "caniuse-lite@npm:1.0.30001692" - checksum: 10c0/fca5105561ea12f3de593f3b0f062af82f7d07519e8dbcb97f34e7fd23349bcef1b1622a9a6cd2164d98e3d2f20059ef7e271edae46567aef88caf4c16c7708a + version: 1.0.30001696 + resolution: "caniuse-lite@npm:1.0.30001696" + checksum: 10c0/8060584c612b2bc232995a6e31153432de7946b5417d3b3505a3ab76e632e5568ccc7bae38f1a977f21d4fc214f9e64be829213f810694172c9109e258cb5be8 languageName: node linkType: hard @@ -6454,7 +5825,7 @@ __metadata: languageName: node linkType: hard -"chalk@npm:^5.0.1, chalk@npm:^5.3.0": +"chalk@npm:^5.0.1, chalk@npm:^5.4.1": version: 5.4.1 resolution: "chalk@npm:5.4.1" checksum: 10c0/b23e88132c702f4855ca6d25cb5538b1114343e41472d5263ee8a37cccfccd9c4216d111e1097c6a27830407a1dc81fecdf2a56f2c63033d4dbbd88c10b0dcef @@ -7249,9 +6620,9 @@ __metadata: linkType: hard "decimal.js@npm:^10.4.3": - version: 10.4.3 - resolution: "decimal.js@npm:10.4.3" - checksum: 10c0/6d60206689ff0911f0ce968d40f163304a6c1bc739927758e6efc7921cfa630130388966f16bf6ef6b838cb33679fbe8e7a78a2f3c478afce841fd55ac8fb8ee + version: 10.5.0 + resolution: "decimal.js@npm:10.5.0" + checksum: 10c0/785c35279df32762143914668df35948920b6c1c259b933e0519a69b7003fc0a5ed2a766b1e1dda02574450c566b21738a45f15e274b47c2ac02072c0d1f3ac3 languageName: node linkType: hard @@ -7582,9 +6953,9 @@ __metadata: linkType: hard "electron-to-chromium@npm:^1.5.73": - version: 1.5.80 - resolution: "electron-to-chromium@npm:1.5.80" - checksum: 10c0/6aaf1891e1b05251efac6f4a63c0ddccf567f0f76506cf0cb284f11413762423fddd7786558066f74c3a95e2a533dad7a97bebe38779b46b7a799d8dd20cea53 + version: 1.5.88 + resolution: "electron-to-chromium@npm:1.5.88" + checksum: 10c0/25946ef310f8e14c763fcf0e62094e7eae2273d9ffe908969ddd97492c3df0198739295ba76388dc210c4503ab6b540130779cd83036f80520cb8efee53be8e4 languageName: node linkType: hard @@ -7656,15 +7027,15 @@ __metadata: linkType: hard "engine.io-client@npm:~6.6.1": - version: 6.6.2 - resolution: "engine.io-client@npm:6.6.2" + version: 6.6.3 + resolution: "engine.io-client@npm:6.6.3" dependencies: "@socket.io/component-emitter": "npm:~3.1.0" debug: "npm:~4.3.1" engine.io-parser: "npm:~5.2.1" ws: "npm:~8.17.1" xmlhttprequest-ssl: "npm:~2.1.1" - checksum: 10c0/a1a0995df1ce2425b43c7dd396cf4ef12d3ca85973b63e1b7bd3933d0292459e922d6be25d14013c9608dc7159ae1e10cd7005754b02bc42d40450381f691859 + checksum: 10c0/ebe0b1da6831d5a68564f9ffb80efe682da4f0538488eaffadf0bcf5177a8b4472cdb01d18a9f20dece2f8de30e2df951eb4635bef2f1b492e9f08a523db91a0 languageName: node linkType: hard @@ -7676,10 +7047,9 @@ __metadata: linkType: hard "engine.io@npm:~6.6.0": - version: 6.6.2 - resolution: "engine.io@npm:6.6.2" + version: 6.6.4 + resolution: "engine.io@npm:6.6.4" dependencies: - "@types/cookie": "npm:^0.4.1" "@types/cors": "npm:^2.8.12" "@types/node": "npm:>=10.0.0" accepts: "npm:~1.3.4" @@ -7689,7 +7059,7 @@ __metadata: debug: "npm:~4.3.1" engine.io-parser: "npm:~5.2.1" ws: "npm:~8.17.1" - checksum: 10c0/e9ac3cba49badb6905259df3b019fbcbe53e2a389c930fb9fbc10eebc8839554b189706206bba2509a4a3a7d78a32f7e027f73230f31662c7efd215276432dad + checksum: 10c0/845761163f8ea7962c049df653b75dafb6b3693ad6f59809d4474751d7b0392cbf3dc2730b8a902ff93677a91fd28711d34ab29efd348a8a4b49c6b0724021ab languageName: node linkType: hard @@ -7757,11 +7127,11 @@ __metadata: linkType: hard "es-object-atoms@npm:^1.0.0": - version: 1.0.0 - resolution: "es-object-atoms@npm:1.0.0" + version: 1.1.1 + resolution: "es-object-atoms@npm:1.1.1" dependencies: es-errors: "npm:^1.3.0" - checksum: 10c0/1fed3d102eb27ab8d983337bb7c8b159dd2a1e63ff833ec54eea1311c96d5b08223b433060ba240541ca8adba9eee6b0a60cdbf2f80634b784febc9cc8b687b4 + checksum: 10c0/65364812ca4daf48eb76e2a3b7a89b3f6a2e62a1c420766ce9f692665a29d94fe41fe88b65f24106f449859549711e4b40d9fb8002d862dfd7eb1c512d10be0c languageName: node linkType: hard @@ -8244,9 +7614,9 @@ __metadata: linkType: hard "fast-uri@npm:^3.0.1": - version: 3.0.5 - resolution: "fast-uri@npm:3.0.5" - checksum: 10c0/f5501fd849e02f16f1730d2c8628078718c492b5bc00198068bc5c2880363ae948287fdc8cebfff47465229b517dbeaf668866fbabdff829b4138a899e5c2ba3 + version: 3.0.6 + resolution: "fast-uri@npm:3.0.6" + checksum: 10c0/74a513c2af0584448aee71ce56005185f81239eab7a2343110e5bad50c39ad4fb19c5a6f99783ead1cac7ccaf3461a6034fda89fffa2b30b6d99b9f21c2f9d29 languageName: node linkType: hard @@ -8296,14 +7666,14 @@ __metadata: linkType: hard "fdir@npm:^6.2.0": - version: 6.4.2 - resolution: "fdir@npm:6.4.2" + version: 6.4.3 + resolution: "fdir@npm:6.4.3" peerDependencies: picomatch: ^3 || ^4 peerDependenciesMeta: picomatch: optional: true - checksum: 10c0/34829886f34a3ca4170eca7c7180ec4de51a3abb4d380344063c0ae2e289b11d2ba8b724afee974598c83027fea363ff598caf2b51bc4e6b1e0d8b80cc530573 + checksum: 10c0/d13c10120e9625adf21d8d80481586200759928c19405a816b77dd28eaeb80e7c59c5def3e2941508045eb06d34eb47fad865ccc8bf98e6ab988bb0ed160fb6f languageName: node linkType: hard @@ -8324,11 +7694,11 @@ __metadata: linkType: hard "file-entry-cache@npm:^10.0.5": - version: 10.0.5 - resolution: "file-entry-cache@npm:10.0.5" + version: 10.0.6 + resolution: "file-entry-cache@npm:10.0.6" dependencies: - flat-cache: "npm:^6.1.5" - checksum: 10c0/c7d9bd537d1862db5357ecc688a22dc9287c2590e9eba04e85e0601d6143905eaa5edc5534f1dd92e24713f230ee69d99e150d7b6120c6d940f40beccdd5caf3 + flat-cache: "npm:^6.1.6" + checksum: 10c0/4e7226a5dbe7b5130c848c5fd3a352bb16e4ddb1de10cb4b3ea8375f6ab6085ed10da4db2db8119c61fc7e56fc59a40eeb837a4ae1a3a7c8357a17e69004f113 languageName: node linkType: hard @@ -8542,7 +7912,7 @@ __metadata: languageName: node linkType: hard -"firebase@npm:11.2.0": +"firebase@npm:11.2.0, firebase@npm:^11.2.0": version: 11.2.0 resolution: "firebase@npm:11.2.0" dependencies: @@ -8578,50 +7948,14 @@ __metadata: languageName: node linkType: hard -"firebase@npm:^11.0.2": - version: 11.1.0 - resolution: "firebase@npm:11.1.0" - dependencies: - "@firebase/analytics": "npm:0.10.10" - "@firebase/analytics-compat": "npm:0.2.16" - "@firebase/app": "npm:0.10.17" - "@firebase/app-check": "npm:0.8.10" - "@firebase/app-check-compat": "npm:0.3.17" - "@firebase/app-compat": "npm:0.2.47" - "@firebase/app-types": "npm:0.9.3" - "@firebase/auth": "npm:1.8.1" - "@firebase/auth-compat": "npm:0.5.16" - "@firebase/data-connect": "npm:0.1.3" - "@firebase/database": "npm:1.0.10" - "@firebase/database-compat": "npm:2.0.1" - "@firebase/firestore": "npm:4.7.5" - "@firebase/firestore-compat": "npm:0.3.40" - "@firebase/functions": "npm:0.12.0" - "@firebase/functions-compat": "npm:0.3.17" - "@firebase/installations": "npm:0.6.11" - "@firebase/installations-compat": "npm:0.2.11" - "@firebase/messaging": "npm:0.12.15" - "@firebase/messaging-compat": "npm:0.2.15" - "@firebase/performance": "npm:0.6.11" - "@firebase/performance-compat": "npm:0.2.11" - "@firebase/remote-config": "npm:0.4.11" - "@firebase/remote-config-compat": "npm:0.2.11" - "@firebase/storage": "npm:0.13.4" - "@firebase/storage-compat": "npm:0.3.14" - "@firebase/util": "npm:1.10.2" - "@firebase/vertexai": "npm:1.0.2" - checksum: 10c0/d1bbd880331700a85ee24d2409fd0c06a50d2c3b1c348e492848360bda3f9ede3358b8c793faaf69729bd0e2d19ddd08db51128e5286d65cb57a993351a966d5 - languageName: node - linkType: hard - -"flat-cache@npm:^6.1.5": - version: 6.1.5 - resolution: "flat-cache@npm:6.1.5" - dependencies: - cacheable: "npm:^1.8.7" +"flat-cache@npm:^6.1.6": + version: 6.1.6 + resolution: "flat-cache@npm:6.1.6" + dependencies: + cacheable: "npm:^1.8.8" flatted: "npm:^3.3.2" - hookified: "npm:^1.6.0" - checksum: 10c0/b107edc1c24a8fabe89645001fb8b1479016177d92be45dc6ba739e688131fe35fffbf13516d2f7bb3dc5c1256ff8721f16ec1858c4ee77e46f93c9093c53689 + hookified: "npm:^1.7.0" + checksum: 10c0/2aeba555b61d32d7f0803e6b6b3ba959610cdc0e5b591ed0f80a3ad70c4e80e81afb6853c495cafdcbc3a02386d76a1522babcf04e50c4a1e81df2decfd02e9f languageName: node linkType: hard @@ -8957,11 +8291,11 @@ __metadata: linkType: hard "get-tsconfig@npm:^4.7.5": - version: 4.8.1 - resolution: "get-tsconfig@npm:4.8.1" + version: 4.10.0 + resolution: "get-tsconfig@npm:4.10.0" dependencies: resolve-pkg-maps: "npm:^1.0.0" - checksum: 10c0/536ee85d202f604f4b5fb6be81bcd6e6d9a96846811e83e9acc6de4a04fb49506edea0e1b8cf1d5ee7af33e469916ec2809d4c5445ab8ae015a7a51fbd1572f9 + checksum: 10c0/c9b5572c5118923c491c04285c73bd55b19e214992af957c502a3be0fc0043bb421386ffd45ca3433c0a7fba81221ca300479e8393960acf15d0ed4563f38a86 languageName: node linkType: hard @@ -9134,8 +8468,8 @@ __metadata: linkType: hard "google-auth-library@npm:^9.0.0, google-auth-library@npm:^9.11.0, google-auth-library@npm:^9.14.2, google-auth-library@npm:^9.2.0, google-auth-library@npm:^9.3.0, google-auth-library@npm:^9.6.3, google-auth-library@npm:^9.7.0": - version: 9.15.0 - resolution: "google-auth-library@npm:9.15.0" + version: 9.15.1 + resolution: "google-auth-library@npm:9.15.1" dependencies: base64-js: "npm:^1.3.0" ecdsa-sig-formatter: "npm:^1.0.11" @@ -9143,7 +8477,7 @@ __metadata: gcp-metadata: "npm:^6.1.0" gtoken: "npm:^7.0.0" jws: "npm:^4.0.0" - checksum: 10c0/f5a9a46e939147b181bac9b254f11dd8c2d05c15a65c9d3f2180252bef21c12af37d9893bc3caacafd226d6531a960535dbb5222ef869143f393c6a97639cc06 + checksum: 10c0/6eef36d9a9cb7decd11e920ee892579261c6390104b3b24d3e0f3889096673189fe2ed0ee43fd563710e2560de98e63ad5aa4967b91e7f4e69074a422d5f7b65 languageName: node linkType: hard @@ -9332,10 +8666,10 @@ __metadata: languageName: node linkType: hard -"hookified@npm:^1.6.0": - version: 1.6.0 - resolution: "hookified@npm:1.6.0" - checksum: 10c0/00ae9502315a21b559c2d057e02d1418a812e015df701b89f590ddbce135e422058e6e97b1047ef4b0b96477bf08e36f3f572fe247c8f3370a126555800ae46f +"hookified@npm:^1.7.0": + version: 1.7.0 + resolution: "hookified@npm:1.7.0" + checksum: 10c0/039424cbeb8cc55cd9bd6b17e9fb48c5d619899f49d560abf39a4cd3ae3d9197e434732218641ebaec22ff0a0b195fdb96fc4c42df12477f464bfe63a35a4b66 languageName: node linkType: hard @@ -11115,20 +10449,13 @@ __metadata: languageName: node linkType: hard -"lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0": +"lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0, lru-cache@npm:^10.4.3": version: 10.4.3 resolution: "lru-cache@npm:10.4.3" checksum: 10c0/ebd04fbca961e6c1d6c0af3799adcc966a1babe798f685bb84e6599266599cd95d94630b10262f5424539bc4640107e8a33aa28585374abf561d30d16f4b39fb languageName: node linkType: hard -"lru-cache@npm:^11.0.2": - version: 11.0.2 - resolution: "lru-cache@npm:11.0.2" - checksum: 10c0/c993b8e06ead0b24b969c1dbb5b301716aed66e320e9014a80012f5febe280b438f28ff50046b2c55ff404e889351ccb332ff91f8dd175a21f5eae80e3fb155f - languageName: node - linkType: hard - "lru-cache@npm:^5.1.1": version: 5.1.1 resolution: "lru-cache@npm:5.1.1" @@ -11165,15 +10492,6 @@ __metadata: languageName: node linkType: hard -"magic-string@npm:0.30.12": - version: 0.30.12 - resolution: "magic-string@npm:0.30.12" - dependencies: - "@jridgewell/sourcemap-codec": "npm:^1.5.0" - checksum: 10c0/469f457d18af37dfcca8617086ea8a65bcd8b60ba8a1182cb024ce43e470ace3c9d1cb6bee58d3b311768fb16bc27bd50bdeebcaa63dadd0fd46cac4d2e11d5f - languageName: node - linkType: hard - "magic-string@npm:0.30.17, magic-string@npm:^0.30.3": version: 0.30.17 resolution: "magic-string@npm:0.30.17" @@ -11248,19 +10566,19 @@ __metadata: linkType: hard "marked-terminal@npm:^7.0.0": - version: 7.2.1 - resolution: "marked-terminal@npm:7.2.1" + version: 7.3.0 + resolution: "marked-terminal@npm:7.3.0" dependencies: ansi-escapes: "npm:^7.0.0" ansi-regex: "npm:^6.1.0" - chalk: "npm:^5.3.0" + chalk: "npm:^5.4.1" cli-highlight: "npm:^2.1.11" cli-table3: "npm:^0.6.5" - node-emoji: "npm:^2.1.3" + node-emoji: "npm:^2.2.0" supports-hyperlinks: "npm:^3.1.0" peerDependencies: - marked: ">=1 <15" - checksum: 10c0/33e7901fd7ded6062440582a84d0896b96faf3e9b15ad54d92b7792a3e5533e925f170a905e9ac719a73f83dd3e08f71dfd9f2f75924fdb6c358beceece49450 + marked: ">=1 <16" + checksum: 10c0/59d23c2ed9488c40856d828f431ae1d5d57426e791bbce8f05ec5a7d3a1f848cdb3b8d8880d76ae45570415f8b48ae459f50bbbd88ece5a31306f1e3de57f021 languageName: node linkType: hard @@ -11775,7 +11093,7 @@ __metadata: languageName: node linkType: hard -"nanoid@npm:^3.3.7, nanoid@npm:^3.3.8": +"nanoid@npm:^3.3.8": version: 3.3.8 resolution: "nanoid@npm:3.3.8" bin: @@ -11858,7 +11176,7 @@ __metadata: languageName: node linkType: hard -"node-emoji@npm:^2.1.3": +"node-emoji@npm:^2.2.0": version: 2.2.0 resolution: "node-emoji@npm:2.2.0" dependencies: @@ -11963,24 +11281,13 @@ __metadata: linkType: hard "nopt@npm:^8.0.0": - version: 8.0.0 - resolution: "nopt@npm:8.0.0" + version: 8.1.0 + resolution: "nopt@npm:8.1.0" dependencies: - abbrev: "npm:^2.0.0" + abbrev: "npm:^3.0.0" bin: nopt: bin/nopt.js - checksum: 10c0/19cb986f79abaca2d0f0b560021da7b32ee6fcc3de48f3eaeb0c324d36755c17754f886a754c091f01f740c17caf7d6aea8237b7fbaf39f476ae5e30a249f18f - languageName: node - linkType: hard - -"normalize-package-data@npm:^7.0.0": - version: 7.0.0 - resolution: "normalize-package-data@npm:7.0.0" - dependencies: - hosted-git-info: "npm:^8.0.0" - semver: "npm:^7.3.5" - validate-npm-package-license: "npm:^3.0.4" - checksum: 10c0/d492cbc4cdd92e99cba517b08cec6adf40ff37f2e97ecf4484ccb2da1ef5bd81c6dfbd8b434d3bdc749df639492ecdc71f4a61de1a8b99fe97fdf4faac13e7f1 + checksum: 10c0/62e9ea70c7a3eb91d162d2c706b6606c041e4e7b547cbbb48f8b3695af457dd6479904d7ace600856bf923dd8d1ed0696f06195c8c20f02ac87c1da0e1d315ef languageName: node linkType: hard @@ -12770,18 +12077,7 @@ __metadata: languageName: node linkType: hard -"postcss@npm:^8.4.49": - version: 8.4.49 - resolution: "postcss@npm:8.4.49" - dependencies: - nanoid: "npm:^3.3.7" - picocolors: "npm:^1.1.1" - source-map-js: "npm:^1.2.1" - checksum: 10c0/f1b3f17aaf36d136f59ec373459f18129908235e65dbdc3aee5eef8eba0756106f52de5ec4682e29a2eab53eb25170e7e871b3e4b52a8f1de3d344a514306be3 - languageName: node - linkType: hard - -"postcss@npm:^8.5.1": +"postcss@npm:^8.4.49, postcss@npm:^8.5.1": version: 8.5.1 resolution: "postcss@npm:8.5.1" dependencies: @@ -13110,11 +12406,11 @@ __metadata: linkType: hard "qs@npm:^6.6.0, qs@npm:^6.7.0": - version: 6.13.1 - resolution: "qs@npm:6.13.1" + version: 6.14.0 + resolution: "qs@npm:6.14.0" dependencies: - side-channel: "npm:^1.0.6" - checksum: 10c0/5ef527c0d62ffca5501322f0832d800ddc78eeb00da3b906f1b260ca0492721f8cdc13ee4b8fd8ac314a6ec37b948798c7b603ccc167e954088df392092f160c + side-channel: "npm:^1.1.0" + checksum: 10c0/8ea5d91bf34f440598ee389d4a7d95820e3b837d3fd9f433871f7924801becaa0cd3b3b4628d49a7784d06a8aea9bc4554d2b6d8d584e2d221dc06238a42909c languageName: node linkType: hard @@ -13132,13 +12428,6 @@ __metadata: languageName: node linkType: hard -"queue-tick@npm:^1.0.1": - version: 1.0.1 - resolution: "queue-tick@npm:1.0.1" - checksum: 10c0/0db998e2c9b15215317dbcf801e9b23e6bcde4044e115155dae34f8e7454b9a783f737c9a725528d677b7a66c775eb7a955cf144fe0b87f62b575ce5bfd515a9 - languageName: node - linkType: hard - "railroad-diagrams@npm:^1.0.0": version: 1.0.0 resolution: "railroad-diagrams@npm:1.0.0" @@ -13527,7 +12816,7 @@ __metadata: languageName: node linkType: hard -"rollup@npm:4.32.1": +"rollup@npm:4.32.1, rollup@npm:^4.23.0": version: 4.32.1 resolution: "rollup@npm:4.32.1" dependencies: @@ -13599,78 +12888,6 @@ __metadata: languageName: node linkType: hard -"rollup@npm:^4.23.0": - version: 4.30.1 - resolution: "rollup@npm:4.30.1" - dependencies: - "@rollup/rollup-android-arm-eabi": "npm:4.30.1" - "@rollup/rollup-android-arm64": "npm:4.30.1" - "@rollup/rollup-darwin-arm64": "npm:4.30.1" - "@rollup/rollup-darwin-x64": "npm:4.30.1" - "@rollup/rollup-freebsd-arm64": "npm:4.30.1" - "@rollup/rollup-freebsd-x64": "npm:4.30.1" - "@rollup/rollup-linux-arm-gnueabihf": "npm:4.30.1" - "@rollup/rollup-linux-arm-musleabihf": "npm:4.30.1" - "@rollup/rollup-linux-arm64-gnu": "npm:4.30.1" - "@rollup/rollup-linux-arm64-musl": "npm:4.30.1" - "@rollup/rollup-linux-loongarch64-gnu": "npm:4.30.1" - "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.30.1" - "@rollup/rollup-linux-riscv64-gnu": "npm:4.30.1" - "@rollup/rollup-linux-s390x-gnu": "npm:4.30.1" - "@rollup/rollup-linux-x64-gnu": "npm:4.30.1" - "@rollup/rollup-linux-x64-musl": "npm:4.30.1" - "@rollup/rollup-win32-arm64-msvc": "npm:4.30.1" - "@rollup/rollup-win32-ia32-msvc": "npm:4.30.1" - "@rollup/rollup-win32-x64-msvc": "npm:4.30.1" - "@types/estree": "npm:1.0.6" - fsevents: "npm:~2.3.2" - dependenciesMeta: - "@rollup/rollup-android-arm-eabi": - optional: true - "@rollup/rollup-android-arm64": - optional: true - "@rollup/rollup-darwin-arm64": - optional: true - "@rollup/rollup-darwin-x64": - optional: true - "@rollup/rollup-freebsd-arm64": - optional: true - "@rollup/rollup-freebsd-x64": - optional: true - "@rollup/rollup-linux-arm-gnueabihf": - optional: true - "@rollup/rollup-linux-arm-musleabihf": - optional: true - "@rollup/rollup-linux-arm64-gnu": - optional: true - "@rollup/rollup-linux-arm64-musl": - optional: true - "@rollup/rollup-linux-loongarch64-gnu": - optional: true - "@rollup/rollup-linux-powerpc64le-gnu": - optional: true - "@rollup/rollup-linux-riscv64-gnu": - optional: true - "@rollup/rollup-linux-s390x-gnu": - optional: true - "@rollup/rollup-linux-x64-gnu": - optional: true - "@rollup/rollup-linux-x64-musl": - optional: true - "@rollup/rollup-win32-arm64-msvc": - optional: true - "@rollup/rollup-win32-ia32-msvc": - optional: true - "@rollup/rollup-win32-x64-msvc": - optional: true - fsevents: - optional: true - bin: - rollup: dist/bin/rollup - checksum: 10c0/a318c57e2ca9741e1503bcd75483949c6e83edd72234a468010a3098a34248f523e44f7ad4fde90dc5c2da56abc1b78ac42a9329e1dbd708682728adbd8df7cc - languageName: node - linkType: hard - "router@npm:^2.0.0": version: 2.0.0 resolution: "router@npm:2.0.0" @@ -14093,7 +13310,7 @@ __metadata: languageName: node linkType: hard -"side-channel@npm:^1.0.6": +"side-channel@npm:^1.0.6, side-channel@npm:^1.1.0": version: 1.1.0 resolution: "side-channel@npm:1.1.0" dependencies: @@ -14359,9 +13576,9 @@ __metadata: linkType: hard "spdx-license-ids@npm:^3.0.0": - version: 3.0.20 - resolution: "spdx-license-ids@npm:3.0.20" - checksum: 10c0/bdff7534fad6ef59be49becda1edc3fb7f5b3d6f296a715516ab9d972b8ad59af2c34b2003e01db8970d4c673d185ff696ba74c6b61d3bf327e2b3eac22c297c + version: 3.0.21 + resolution: "spdx-license-ids@npm:3.0.21" + checksum: 10c0/ecb24c698d8496aa9efe23e0b1f751f8a7a89faedcdfcbfabae772b546c2db46ccde8f3bc447a238eb86bbcd4f73fea88720ef3b8394f7896381bec3d7736411 languageName: node linkType: hard @@ -14406,15 +13623,15 @@ __metadata: linkType: hard "sql-formatter@npm:^15.3.0": - version: 15.4.9 - resolution: "sql-formatter@npm:15.4.9" + version: 15.4.10 + resolution: "sql-formatter@npm:15.4.10" dependencies: argparse: "npm:^2.0.1" get-stdin: "npm:=8.0.0" nearley: "npm:^2.20.1" bin: sql-formatter: bin/sql-formatter-cli.cjs - checksum: 10c0/3d31dd8d7ecd166b91e6545d9b78e5c8e728f9bad48cf189ea25126a1a58dbf55c02225c17e233f7ea05c09f1c3da58f22a9e5721f50ac53eb8e3238995ae27f + checksum: 10c0/bc522ba288f1bfd0d634aa572972621cb77d91c63a403a98f5dd3fc61377b17cd2e2485e0ada02d007c67ce135be13d78f72e546ed4077a3a9ac91de19fd88ae languageName: node linkType: hard @@ -14541,17 +13758,16 @@ __metadata: linkType: hard "streamx@npm:^2.15.0": - version: 2.21.1 - resolution: "streamx@npm:2.21.1" + version: 2.22.0 + resolution: "streamx@npm:2.22.0" dependencies: bare-events: "npm:^2.2.0" fast-fifo: "npm:^1.3.2" - queue-tick: "npm:^1.0.1" text-decoder: "npm:^1.1.0" dependenciesMeta: bare-events: optional: true - checksum: 10c0/752297e877bdeba4a4c180335564c446636c3a33f1c8733b4773746dab6212266e97cd71be8cade9748bbb1b9e2fee61f81e46bcdaf1ff396b79c9cb9355f26e + checksum: 10c0/f5017998a5b6360ba652599d20ef308c8c8ab0e26c8e5f624f0706f0ea12624e94fdf1ec18318124498529a1b106a1ab1c94a1b1e1ad6c2eec7cb9c8ac1b9198 languageName: node linkType: hard @@ -15001,21 +14217,21 @@ __metadata: languageName: node linkType: hard -"tldts-core@npm:^6.1.71": - version: 6.1.71 - resolution: "tldts-core@npm:6.1.71" - checksum: 10c0/68c4e9ea7f02f14f811f5be5b50b176b099bc8385cae177b8265c1bb0c45215efecf54195a267326848024a24e204bba6d9f47cb899da1d81fd00da0c7f661b7 +"tldts-core@npm:^6.1.75": + version: 6.1.75 + resolution: "tldts-core@npm:6.1.75" + checksum: 10c0/6a35db3a509bc003f86fe31f28334a3a1a56614f7ea3a3c93c91d771632d40a547d0313eb3882daea214e5441fa8b5902cc4ac96be6f7419a448310b8267a4cb languageName: node linkType: hard "tldts@npm:^6.1.32": - version: 6.1.71 - resolution: "tldts@npm:6.1.71" + version: 6.1.75 + resolution: "tldts@npm:6.1.75" dependencies: - tldts-core: "npm:^6.1.71" + tldts-core: "npm:^6.1.75" bin: tldts: bin/cli.js - checksum: 10c0/fb1bfb6ec78ce334b9d7b0c8813ab553a9f9f8759d681e6f109dd55caced45f901a19d162d8bc2f12b37afc366e438154248ae1dab67ad091565146b8e57d217 + checksum: 10c0/cf25f05be4642cb0de070a0385e2dd24fea1b5ea4c10c679e763c095919fc2a41d6f445284d40e288802654ad919cb956687d2312a0352add23c4b7f5cb6abf9 languageName: node linkType: hard