diff --git a/.github/local-actions/branch-manager/main.js b/.github/local-actions/branch-manager/main.js index af76ec0e9..7b34be7ed 100644 --- a/.github/local-actions/branch-manager/main.js +++ b/.github/local-actions/branch-manager/main.js @@ -47608,7 +47608,7 @@ var require_sqlite_cache_store = __commonJS({ var { Writable } = __require("stream"); var { assertCacheKey, assertCacheValue } = require_cache2(); var DatabaseSync; - var VERSION13 = 3; + var VERSION14 = 3; var MAX_ENTRY_SIZE = 2 * 1e3 * 1e3 * 1e3; module.exports = class SqliteCacheStore { #maxEntrySize = MAX_ENTRY_SIZE; @@ -47647,7 +47647,7 @@ var require_sqlite_cache_store = __commonJS({ } this.#db = new DatabaseSync((opts == null ? void 0 : opts.location) ?? ":memory:"); this.#db.exec(` - CREATE TABLE IF NOT EXISTS cacheInterceptorV${VERSION13} ( + CREATE TABLE IF NOT EXISTS cacheInterceptorV${VERSION14} ( -- Data specific to us id INTEGER PRIMARY KEY AUTOINCREMENT, url TEXT NOT NULL, @@ -47666,9 +47666,9 @@ var require_sqlite_cache_store = __commonJS({ staleAt INTEGER NOT NULL ); - CREATE INDEX IF NOT EXISTS idx_cacheInterceptorV${VERSION13}_url ON cacheInterceptorV${VERSION13}(url); - CREATE INDEX IF NOT EXISTS idx_cacheInterceptorV${VERSION13}_method ON cacheInterceptorV${VERSION13}(method); - CREATE INDEX IF NOT EXISTS idx_cacheInterceptorV${VERSION13}_deleteAt ON cacheInterceptorV${VERSION13}(deleteAt); + CREATE INDEX IF NOT EXISTS idx_cacheInterceptorV${VERSION14}_url ON cacheInterceptorV${VERSION14}(url); + CREATE INDEX IF NOT EXISTS idx_cacheInterceptorV${VERSION14}_method ON cacheInterceptorV${VERSION14}(method); + CREATE INDEX IF NOT EXISTS idx_cacheInterceptorV${VERSION14}_deleteAt ON cacheInterceptorV${VERSION14}(deleteAt); `); this.#getValuesQuery = this.#db.prepare(` SELECT @@ -47683,7 +47683,7 @@ var require_sqlite_cache_store = __commonJS({ vary, cachedAt, staleAt - FROM cacheInterceptorV${VERSION13} + FROM cacheInterceptorV${VERSION14} WHERE url = ? AND method = ? @@ -47691,7 +47691,7 @@ var require_sqlite_cache_store = __commonJS({ deleteAt ASC `); this.#updateValueQuery = this.#db.prepare(` - UPDATE cacheInterceptorV${VERSION13} SET + UPDATE cacheInterceptorV${VERSION14} SET body = ?, deleteAt = ?, statusCode = ?, @@ -47705,7 +47705,7 @@ var require_sqlite_cache_store = __commonJS({ id = ? `); this.#insertValueQuery = this.#db.prepare(` - INSERT INTO cacheInterceptorV${VERSION13} ( + INSERT INTO cacheInterceptorV${VERSION14} ( url, method, body, @@ -47721,20 +47721,20 @@ var require_sqlite_cache_store = __commonJS({ ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) `); this.#deleteByUrlQuery = this.#db.prepare( - `DELETE FROM cacheInterceptorV${VERSION13} WHERE url = ?` + `DELETE FROM cacheInterceptorV${VERSION14} WHERE url = ?` ); this.#countEntriesQuery = this.#db.prepare( - `SELECT COUNT(*) AS total FROM cacheInterceptorV${VERSION13}` + `SELECT COUNT(*) AS total FROM cacheInterceptorV${VERSION14}` ); this.#deleteExpiredValuesQuery = this.#db.prepare( - `DELETE FROM cacheInterceptorV${VERSION13} WHERE deleteAt <= ?` + `DELETE FROM cacheInterceptorV${VERSION14} WHERE deleteAt <= ?` ); this.#deleteOldValuesQuery = this.#maxCount === Infinity ? null : this.#db.prepare(` - DELETE FROM cacheInterceptorV${VERSION13} + DELETE FROM cacheInterceptorV${VERSION14} WHERE id IN ( SELECT id - FROM cacheInterceptorV${VERSION13} + FROM cacheInterceptorV${VERSION14} ORDER BY cachedAt DESC LIMIT ? ) @@ -54382,9 +54382,9 @@ var require_dist_node3 = __commonJS({ endpoint: () => endpoint2 }); module.exports = __toCommonJS(dist_src_exports); - var import_universal_user_agent9 = require_dist_node2(); - var VERSION13 = "9.0.5"; - var userAgent2 = `octokit-endpoint.js/${VERSION13} ${(0, import_universal_user_agent9.getUserAgent)()}`; + var import_universal_user_agent10 = require_dist_node2(); + var VERSION14 = "9.0.5"; + var userAgent2 = `octokit-endpoint.js/${VERSION14} ${(0, import_universal_user_agent10.getUserAgent)()}`; var DEFAULTS2 = { method: "GET", baseUrl: "https://api.github.com", @@ -54690,17 +54690,17 @@ var require_dist_node3 = __commonJS({ function endpointWithDefaults2(defaults2, route, options) { return parse4(merge2(defaults2, route, options)); } - function withDefaults4(oldDefaults, newDefaults) { + function withDefaults5(oldDefaults, newDefaults) { const DEFAULTS22 = merge2(oldDefaults, newDefaults); const endpoint22 = endpointWithDefaults2.bind(null, DEFAULTS22); return Object.assign(endpoint22, { DEFAULTS: DEFAULTS22, - defaults: withDefaults4.bind(null, DEFAULTS22), + defaults: withDefaults5.bind(null, DEFAULTS22), merge: merge2.bind(null, DEFAULTS22), parse: parse4 }); } - var endpoint2 = withDefaults4(null, DEFAULTS2); + var endpoint2 = withDefaults5(null, DEFAULTS2); } }); @@ -54913,8 +54913,8 @@ var require_dist_node6 = __commonJS({ }); module.exports = __toCommonJS(dist_src_exports); var import_endpoint2 = require_dist_node3(); - var import_universal_user_agent9 = require_dist_node(); - var VERSION13 = "8.4.0"; + var import_universal_user_agent10 = require_dist_node(); + var VERSION14 = "8.4.0"; function isPlainObject4(value) { if (typeof value !== "object" || value === null) return false; @@ -55063,7 +55063,7 @@ var require_dist_node6 = __commonJS({ } return `Unknown error: ${JSON.stringify(data)}`; } - function withDefaults4(oldEndpoint, newDefaults) { + function withDefaults5(oldEndpoint, newDefaults) { const endpoint2 = oldEndpoint.defaults(newDefaults); const newApi = function(route, parameters) { const endpointOptions = endpoint2.merge(route, parameters); @@ -55077,18 +55077,18 @@ var require_dist_node6 = __commonJS({ }; Object.assign(request22, { endpoint: endpoint2, - defaults: withDefaults4.bind(null, endpoint2) + defaults: withDefaults5.bind(null, endpoint2) }); return endpointOptions.request.hook(request22, endpointOptions); }; return Object.assign(newApi, { endpoint: endpoint2, - defaults: withDefaults4.bind(null, endpoint2) + defaults: withDefaults5.bind(null, endpoint2) }); } - var request2 = withDefaults4(import_endpoint2.endpoint, { + var request2 = withDefaults5(import_endpoint2.endpoint, { headers: { - "user-agent": `octokit-request.js/${VERSION13} ${(0, import_universal_user_agent9.getUserAgent)()}` + "user-agent": `octokit-request.js/${VERSION14} ${(0, import_universal_user_agent10.getUserAgent)()}` } }); } @@ -55117,23 +55117,23 @@ var require_dist_node7 = __commonJS({ var __toCommonJS = (mod) => __copyProps2(__defProp2({}, "__esModule", { value: true }), mod); var dist_src_exports = {}; __export2(dist_src_exports, { - GraphqlResponseError: () => GraphqlResponseError2, - graphql: () => graphql22, + GraphqlResponseError: () => GraphqlResponseError3, + graphql: () => graphql23, withCustomRequest: () => withCustomRequest2 }); module.exports = __toCommonJS(dist_src_exports); var import_request32 = require_dist_node6(); - var import_universal_user_agent9 = require_dist_node(); - var VERSION13 = "7.1.0"; + var import_universal_user_agent10 = require_dist_node(); + var VERSION14 = "7.1.0"; var import_request22 = require_dist_node6(); - var import_request15 = require_dist_node6(); - function _buildMessageForResponseErrors2(data) { + var import_request16 = require_dist_node6(); + function _buildMessageForResponseErrors3(data) { return `Request failed due to following response errors: ` + data.errors.map((e) => ` - ${e.message}`).join("\n"); } - var GraphqlResponseError2 = class extends Error { + var GraphqlResponseError3 = class extends Error { constructor(request2, headers, response) { - super(_buildMessageForResponseErrors2(response)); + super(_buildMessageForResponseErrors3(response)); this.request = request2; this.headers = headers; this.response = response; @@ -55145,7 +55145,7 @@ var require_dist_node7 = __commonJS({ } } }; - var NON_VARIABLE_OPTIONS2 = [ + var NON_VARIABLE_OPTIONS3 = [ "method", "baseUrl", "url", @@ -55154,9 +55154,9 @@ var require_dist_node7 = __commonJS({ "query", "mediaType" ]; - var FORBIDDEN_VARIABLE_OPTIONS2 = ["query", "method", "url"]; - var GHES_V3_SUFFIX_REGEX2 = /\/api\/v3\/?$/; - function graphql3(request2, query2, options) { + var FORBIDDEN_VARIABLE_OPTIONS3 = ["query", "method", "url"]; + var GHES_V3_SUFFIX_REGEX3 = /\/api\/v3\/?$/; + function graphql4(request2, query2, options) { if (options) { if (typeof query2 === "string" && "query" in options) { return Promise.reject( @@ -55164,7 +55164,7 @@ var require_dist_node7 = __commonJS({ ); } for (const key in options) { - if (!FORBIDDEN_VARIABLE_OPTIONS2.includes(key)) + if (!FORBIDDEN_VARIABLE_OPTIONS3.includes(key)) continue; return Promise.reject( new Error( @@ -55177,7 +55177,7 @@ var require_dist_node7 = __commonJS({ const requestOptions = Object.keys( parsedOptions ).reduce((result, key) => { - if (NON_VARIABLE_OPTIONS2.includes(key)) { + if (NON_VARIABLE_OPTIONS3.includes(key)) { result[key] = parsedOptions[key]; return result; } @@ -55188,8 +55188,8 @@ var require_dist_node7 = __commonJS({ return result; }, {}); const baseUrl = parsedOptions.baseUrl || request2.endpoint.DEFAULTS.baseUrl; - if (GHES_V3_SUFFIX_REGEX2.test(baseUrl)) { - requestOptions.url = baseUrl.replace(GHES_V3_SUFFIX_REGEX2, "/api/graphql"); + if (GHES_V3_SUFFIX_REGEX3.test(baseUrl)) { + requestOptions.url = baseUrl.replace(GHES_V3_SUFFIX_REGEX3, "/api/graphql"); } return request2(requestOptions).then((response) => { if (response.data.errors) { @@ -55197,7 +55197,7 @@ var require_dist_node7 = __commonJS({ for (const key of Object.keys(response.headers)) { headers[key] = response.headers[key]; } - throw new GraphqlResponseError2( + throw new GraphqlResponseError3( requestOptions, headers, response.data @@ -55206,25 +55206,25 @@ var require_dist_node7 = __commonJS({ return response.data.data; }); } - function withDefaults4(request2, newDefaults) { + function withDefaults5(request2, newDefaults) { const newRequest = request2.defaults(newDefaults); const newApi = (query2, options) => { - return graphql3(newRequest, query2, options); + return graphql4(newRequest, query2, options); }; return Object.assign(newApi, { - defaults: withDefaults4.bind(null, newRequest), + defaults: withDefaults5.bind(null, newRequest), endpoint: newRequest.endpoint }); } - var graphql22 = withDefaults4(import_request32.request, { + var graphql23 = withDefaults5(import_request32.request, { headers: { - "user-agent": `octokit-graphql.js/${VERSION13} ${(0, import_universal_user_agent9.getUserAgent)()}` + "user-agent": `octokit-graphql.js/${VERSION14} ${(0, import_universal_user_agent10.getUserAgent)()}` }, method: "POST", url: "/graphql" }); function withCustomRequest2(customRequest) { - return withDefaults4(customRequest, { + return withDefaults5(customRequest, { method: "POST", url: "/graphql" }); @@ -55329,17 +55329,17 @@ var require_dist_node9 = __commonJS({ Octokit: () => Octokit3 }); module.exports = __toCommonJS(dist_src_exports); - var import_universal_user_agent9 = require_dist_node(); + var import_universal_user_agent10 = require_dist_node(); var import_before_after_hook2 = require_before_after_hook(); - var import_request15 = require_dist_node6(); + var import_request16 = require_dist_node6(); var import_graphql3 = require_dist_node7(); var import_auth_token2 = require_dist_node8(); - var VERSION13 = "5.2.0"; + var VERSION14 = "5.2.0"; var noop2 = () => { }; var consoleWarn2 = console.warn.bind(console); var consoleError2 = console.error.bind(console); - var userAgentTrail2 = `octokit-core.js/${VERSION13} ${(0, import_universal_user_agent9.getUserAgent)()}`; + var userAgentTrail2 = `octokit-core.js/${VERSION14} ${(0, import_universal_user_agent10.getUserAgent)()}`; var _a; var Octokit3 = (_a = class { static defaults(defaults2) { @@ -55378,7 +55378,7 @@ var require_dist_node9 = __commonJS({ constructor(options = {}) { const hook6 = new import_before_after_hook2.Collection(); const requestDefaults = { - baseUrl: import_request15.request.endpoint.DEFAULTS.baseUrl, + baseUrl: import_request16.request.endpoint.DEFAULTS.baseUrl, headers: {}, request: Object.assign({}, options.request, { hook: hook6.bind(null, "request") @@ -55398,7 +55398,7 @@ var require_dist_node9 = __commonJS({ if (options.timeZone) { requestDefaults.headers["time-zone"] = options.timeZone; } - this.request = import_request15.request.defaults(requestDefaults); + this.request = import_request16.request.defaults(requestDefaults); this.graphql = (0, import_graphql3.withCustomRequest)(this.request).defaults(requestDefaults); this.log = Object.assign( { @@ -55442,7 +55442,7 @@ var require_dist_node9 = __commonJS({ } } }, (() => { - _a.VERSION = VERSION13; + _a.VERSION = VERSION14; })(), (() => { _a.plugins = []; })(), _a); @@ -55476,7 +55476,7 @@ var require_dist_node10 = __commonJS({ restEndpointMethods: () => restEndpointMethods2 }); module.exports = __toCommonJS(dist_src_exports); - var VERSION13 = "10.4.1"; + var VERSION14 = "10.4.1"; var Endpoints2 = { actions: { addCustomLabelsToSelfHostedRunnerForOrg: [ @@ -57592,7 +57592,7 @@ var require_dist_node10 = __commonJS({ rest: api }; } - restEndpointMethods2.VERSION = VERSION13; + restEndpointMethods2.VERSION = VERSION14; function legacyRestEndpointMethods2(octokit) { const api = endpointsToMethods2(octokit); return { @@ -57600,7 +57600,7 @@ var require_dist_node10 = __commonJS({ rest: api }; } - legacyRestEndpointMethods2.VERSION = VERSION13; + legacyRestEndpointMethods2.VERSION = VERSION14; } }); @@ -57633,7 +57633,7 @@ var require_dist_node11 = __commonJS({ paginatingEndpoints: () => paginatingEndpoints }); module.exports = __toCommonJS(dist_src_exports); - var VERSION13 = "9.2.1"; + var VERSION14 = "9.2.1"; function normalizePaginatedListResponse2(response) { if (!response.data) { return { @@ -57979,7 +57979,7 @@ var require_dist_node11 = __commonJS({ }) }; } - paginateRest2.VERSION = VERSION13; + paginateRest2.VERSION = VERSION14; } }); @@ -60331,6 +60331,7 @@ function normalizeChoices(choices) { } var esm_default2 = createPrompt((config, done) => { const { instructions, pageSize = 7, loop = true, required, validate = () => true } = config; + const shortcuts = { all: "a", invert: "i", ...config.shortcuts }; const theme = makeTheme(checkboxTheme, config.theme); const firstRender = useRef(true); const [status, setStatus] = useState("idle"); @@ -60372,10 +60373,10 @@ var esm_default2 = createPrompt((config, done) => { setError(void 0); setShowHelpTip(false); setItems(items.map((choice, i) => i === active ? toggle(choice) : choice)); - } else if (key.name === "a") { + } else if (key.name === shortcuts.all) { const selectAll = items.some((choice) => isSelectable(choice) && !choice.checked); setItems(items.map(check(selectAll))); - } else if (key.name === "i") { + } else if (key.name === shortcuts.invert) { setItems(items.map(toggle)); } else if (isNumberKey(key)) { const position = Number(key.name) - 1; @@ -60423,11 +60424,11 @@ var esm_default2 = createPrompt((config, done) => { } else { const keys = [ `${theme.style.key("space")} to select`, - `${theme.style.key("a")} to toggle all`, - `${theme.style.key("i")} to invert selection`, + shortcuts.all ? `${theme.style.key(shortcuts.all)} to toggle all` : "", + shortcuts.invert ? `${theme.style.key(shortcuts.invert)} to invert selection` : "", `and ${theme.style.key("enter")} to proceed` ]; - helpTipTop = ` (Press ${keys.join(", ")})`; + helpTipTop = ` (Press ${keys.filter((key) => key !== "").join(", ")})`; } if (items.length > pageSize && (theme.helpMode === "always" || theme.helpMode === "auto" && firstRender.current)) { helpTipBottom = ` @@ -62127,12 +62128,6 @@ var graphql2 = withDefaults3(request, { method: "POST", url: "/graphql" }); -function withCustomRequest(customRequest) { - return withDefaults3(customRequest, { - method: "POST", - url: "/graphql" - }); -} // async function getPr(prSchema, prNumber, git) { @@ -64762,6 +64757,114 @@ function Collection() { } var before_after_hook_default = { Singular, Collection }; +// +var VERSION4 = "0.0.0-development"; +function _buildMessageForResponseErrors2(data) { + return `Request failed due to following response errors: +` + data.errors.map((e) => ` - ${e.message}`).join("\n"); +} +var GraphqlResponseError2 = class extends Error { + constructor(request2, headers, response) { + super(_buildMessageForResponseErrors2(response)); + this.request = request2; + this.headers = headers; + this.response = response; + this.errors = response.errors; + this.data = response.data; + if (Error.captureStackTrace) { + Error.captureStackTrace(this, this.constructor); + } + } + name = "GraphqlResponseError"; + errors; + data; +}; +var NON_VARIABLE_OPTIONS2 = [ + "method", + "baseUrl", + "url", + "headers", + "request", + "query", + "mediaType", + "operationName" +]; +var FORBIDDEN_VARIABLE_OPTIONS2 = ["query", "method", "url"]; +var GHES_V3_SUFFIX_REGEX2 = /\/api\/v3\/?$/; +function graphql3(request2, query2, options) { + if (options) { + if (typeof query2 === "string" && "query" in options) { + return Promise.reject( + new Error(`[@octokit/graphql] "query" cannot be used as variable name`) + ); + } + for (const key in options) { + if (!FORBIDDEN_VARIABLE_OPTIONS2.includes(key)) + continue; + return Promise.reject( + new Error( + `[@octokit/graphql] "${key}" cannot be used as variable name` + ) + ); + } + } + const parsedOptions = typeof query2 === "string" ? Object.assign({ query: query2 }, options) : query2; + const requestOptions = Object.keys( + parsedOptions + ).reduce((result, key) => { + if (NON_VARIABLE_OPTIONS2.includes(key)) { + result[key] = parsedOptions[key]; + return result; + } + if (!result.variables) { + result.variables = {}; + } + result.variables[key] = parsedOptions[key]; + return result; + }, {}); + const baseUrl = parsedOptions.baseUrl || request2.endpoint.DEFAULTS.baseUrl; + if (GHES_V3_SUFFIX_REGEX2.test(baseUrl)) { + requestOptions.url = baseUrl.replace(GHES_V3_SUFFIX_REGEX2, "/api/graphql"); + } + return request2(requestOptions).then((response) => { + if (response.data.errors) { + const headers = {}; + for (const key of Object.keys(response.headers)) { + headers[key] = response.headers[key]; + } + throw new GraphqlResponseError2( + requestOptions, + headers, + response.data + ); + } + return response.data.data; + }); +} +function withDefaults4(request2, newDefaults) { + const newRequest = request2.defaults(newDefaults); + const newApi = (query2, options) => { + return graphql3(newRequest, query2, options); + }; + return Object.assign(newApi, { + defaults: withDefaults4.bind(null, newRequest), + endpoint: newRequest.endpoint + }); +} +var graphql22 = withDefaults4(request, { + headers: { + "user-agent": `octokit-graphql.js/${VERSION4} ${getUserAgent()}` + }, + method: "POST", + url: "/graphql" +}); +function withCustomRequest(customRequest) { + return withDefaults4(customRequest, { + method: "POST", + url: "/graphql" + }); +} + // var b64url = "(?:[a-zA-Z0-9_-]+)"; var sep2 = "\\."; @@ -64808,14 +64911,14 @@ var createTokenAuth = function createTokenAuth2(token2) { }; // -var VERSION4 = "6.1.3"; +var VERSION5 = "6.1.3"; // var noop = () => { }; var consoleWarn = console.warn.bind(console); var consoleError = console.error.bind(console); -var userAgentTrail = `octokit-core.js/${VERSION4} ${getUserAgent()}`; +var userAgentTrail = `octokit-core.js/${VERSION5} ${getUserAgent()}`; var Octokit = class { static defaults(defaults2) { const OctokitWithDefaults = class extends this { @@ -64920,11 +65023,11 @@ var Octokit = class { hook; auth; }; -__publicField(Octokit, "VERSION", VERSION4); +__publicField(Octokit, "VERSION", VERSION5); __publicField(Octokit, "plugins", []); // -var VERSION5 = "5.3.1"; +var VERSION6 = "5.3.1"; // function requestLog(octokit) { @@ -64949,10 +65052,10 @@ function requestLog(octokit) { }); }); } -requestLog.VERSION = VERSION5; +requestLog.VERSION = VERSION6; // -var VERSION6 = "0.0.0-development"; +var VERSION7 = "0.0.0-development"; function normalizePaginatedListResponse(response) { if (!response.data) { return { @@ -65055,10 +65158,10 @@ function paginateRest(octokit) { }) }; } -paginateRest.VERSION = VERSION6; +paginateRest.VERSION = VERSION7; // -var VERSION7 = "13.3.0"; +var VERSION8 = "13.3.0"; // var Endpoints = { @@ -67257,7 +67360,7 @@ function restEndpointMethods(octokit) { rest: api }; } -restEndpointMethods.VERSION = VERSION7; +restEndpointMethods.VERSION = VERSION8; function legacyRestEndpointMethods(octokit) { const api = endpointsToMethods(octokit); return { @@ -67265,15 +67368,15 @@ function legacyRestEndpointMethods(octokit) { rest: api }; } -legacyRestEndpointMethods.VERSION = VERSION7; +legacyRestEndpointMethods.VERSION = VERSION8; // -var VERSION8 = "21.1.0"; +var VERSION9 = "21.1.0"; // var Octokit2 = Octokit.plugin(requestLog, legacyRestEndpointMethods, paginateRest).defaults( { - userAgent: `octokit-rest.js/${VERSION8}` + userAgent: `octokit-rest.js/${VERSION9}` } ); @@ -67847,11 +67950,11 @@ async function hook2(state, request2, route, parameters) { endpoint2.headers.authorization = `token ${token2}`; return request2(endpoint2); } -var VERSION9 = "0.0.0-development"; +var VERSION10 = "0.0.0-development"; function createOAuthDeviceAuth(options) { const requestWithDefaults = options.request || request.defaults({ headers: { - "user-agent": `octokit-auth-oauth-device.js/${VERSION9} ${getUserAgent()}` + "user-agent": `octokit-auth-oauth-device.js/${VERSION10} ${getUserAgent()}` } }); const { request: request2 = requestWithDefaults, ...otherOptions } = options; @@ -67881,7 +67984,7 @@ function createOAuthDeviceAuth(options) { } // -var VERSION10 = "0.0.0-development"; +var VERSION11 = "0.0.0-development"; async function getAuthentication(state) { if ("code" in state.strategyOptions) { const { authentication } = await exchangeWebFlowCode({ @@ -68040,7 +68143,7 @@ function createOAuthUserAuth({ clientType = "oauth-app", request: request2 = request.defaults({ headers: { - "user-agent": `octokit-auth-oauth-app.js/${VERSION10} ${getUserAgent()}` + "user-agent": `octokit-auth-oauth-app.js/${VERSION11} ${getUserAgent()}` } }), onTokenCreated, @@ -68058,7 +68161,7 @@ function createOAuthUserAuth({ hook: hook3.bind(null, state) }); } -createOAuthUserAuth.VERSION = VERSION10; +createOAuthUserAuth.VERSION = VERSION11; // async function auth4(state, authOptions) { @@ -68121,13 +68224,13 @@ async function hook4(state, request2, route, parameters) { throw error2; } } -var VERSION11 = "0.0.0-development"; +var VERSION12 = "0.0.0-development"; function createOAuthAppAuth(options) { const state = Object.assign( { request: request.defaults({ headers: { - "user-agent": `octokit-auth-oauth-app.js/${VERSION11} ${getUserAgent()}` + "user-agent": `octokit-auth-oauth-app.js/${VERSION12} ${getUserAgent()}` } }), clientType: "oauth-app" @@ -68774,7 +68877,7 @@ async function sendRequestWithRetries(state, request2, options, createdAt, retri return sendRequestWithRetries(state, request2, options, createdAt, retries); } } -var VERSION12 = "7.1.4"; +var VERSION13 = "7.1.4"; function createAppAuth(options) { if (!options.appId) { throw new Error("[@octokit/auth-app] appId option is required"); @@ -68795,7 +68898,7 @@ function createAppAuth(options) { ); const request2 = options.request || request.defaults({ headers: { - "user-agent": `octokit-auth-app.js/${VERSION12} ${getUserAgent()}` + "user-agent": `octokit-auth-app.js/${VERSION13} ${getUserAgent()}` } }); const state = Object.assign( diff --git a/.github/local-actions/labels-sync/main.js b/.github/local-actions/labels-sync/main.js index 20ff4fc99..3cd8420b9 100644 --- a/.github/local-actions/labels-sync/main.js +++ b/.github/local-actions/labels-sync/main.js @@ -43287,7 +43287,8 @@ var NON_VARIABLE_OPTIONS = [ "headers", "request", "query", - "mediaType" + "mediaType", + "operationName" ]; var FORBIDDEN_VARIABLE_OPTIONS = ["query", "method", "url"]; var GHES_V3_SUFFIX_REGEX = /\/api\/v3\/?$/; diff --git a/.github/local-actions/lock-closed/main.js b/.github/local-actions/lock-closed/main.js index 8749dd556..b5e6c98d2 100644 --- a/.github/local-actions/lock-closed/main.js +++ b/.github/local-actions/lock-closed/main.js @@ -43287,7 +43287,8 @@ var NON_VARIABLE_OPTIONS = [ "headers", "request", "query", - "mediaType" + "mediaType", + "operationName" ]; var FORBIDDEN_VARIABLE_OPTIONS = ["query", "method", "url"]; var GHES_V3_SUFFIX_REGEX = /\/api\/v3\/?$/; diff --git a/.github/ng-renovate/yarn.lock b/.github/ng-renovate/yarn.lock index 8355d343a..cc3e474da 100644 --- a/.github/ng-renovate/yarn.lock +++ b/.github/ng-renovate/yarn.lock @@ -1330,11 +1330,11 @@ __metadata: linkType: hard "@octokit/types@npm:^13.0.0, @octokit/types@npm:^13.1.0, @octokit/types@npm:^13.5.0": - version: 13.7.0 - resolution: "@octokit/types@npm:13.7.0" + version: 13.8.0 + resolution: "@octokit/types@npm:13.8.0" dependencies: "@octokit/openapi-types": "npm:^23.0.1" - checksum: 10c0/62ed4f00304360cc31e99a9dc97ac4f48075d1d5c09a272f09b1fd3dfcc7a6169b7fab109030319ef121b0cd880c85bdb20363f4992104e07a98bd8323beeeb5 + checksum: 10c0/e08c2fcf10e374f18e4c9fa12a6ada33a40f112d1209012a39f0ce40ae7aa9dcf0598b6007b467f63cc4a97e7b1388d6eed34ddef61494655e08b5a95afaad97 languageName: node linkType: hard @@ -2718,11 +2718,11 @@ __metadata: linkType: hard "@types/node@npm:*, @types/node@npm:>=13.7.0": - version: 22.12.0 - resolution: "@types/node@npm:22.12.0" + version: 22.13.0 + resolution: "@types/node@npm:22.13.0" dependencies: undici-types: "npm:~6.20.0" - checksum: 10c0/be220706732d95db2ed1c441c1e64cab90bf9a47519ce6f4c79cc5a9ec9d5c517131a149a9ac30afac1a30103e67e3a00d453ba7c1b0141608a3a7ba6397c303 + checksum: 10c0/9cf6358b2863ae7bf9588ca1cc3d87f6a6289c3880e95a046a188760666870e2c12502df8b0a473bec8aa8ffee85e025d60382a6104b10f197120793235b2c22 languageName: node linkType: hard @@ -3425,9 +3425,9 @@ __metadata: linkType: hard "cjs-module-lexer@npm:^1.2.2": - version: 1.4.1 - resolution: "cjs-module-lexer@npm:1.4.1" - checksum: 10c0/5a7d8279629c9ba8ccf38078c2fed75b7737973ced22b9b5a54180efa57fb2fe2bb7bec6aec55e3b8f3f5044f5d7b240347ad9bd285e7c3d0ee5b0a1d0504dfc + version: 1.4.3 + resolution: "cjs-module-lexer@npm:1.4.3" + checksum: 10c0/076b3af85adc4d65dbdab1b5b240fe5b45d44fcf0ef9d429044dd94d19be5589376805c44fb2d4b3e684e5fe6a9b7cf3e426476a6507c45283c5fc6ff95240be languageName: node linkType: hard @@ -4048,11 +4048,11 @@ __metadata: linkType: hard "fastq@npm:^1.6.0": - version: 1.18.0 - resolution: "fastq@npm:1.18.0" + version: 1.19.0 + resolution: "fastq@npm:1.19.0" dependencies: reusify: "npm:^1.0.4" - checksum: 10c0/7be87ecc41762adbddf558d24182f50a4b1a3ef3ee807d33b7623da7aee5faecdcc94fce5aa13fe91df93e269f383232bbcdb2dc5338cd1826503d6063221f36 + checksum: 10c0/d6a001638f1574a696660fcbba5300d017760432372c801632c325ca7c16819604841c92fd3ccadcdacec0966ca336363a5ff57bc5f0be335d8ea7ac6087b98f languageName: node linkType: hard @@ -4208,12 +4208,13 @@ __metadata: linkType: hard "gcp-metadata@npm:^6.1.0": - version: 6.1.0 - resolution: "gcp-metadata@npm:6.1.0" + version: 6.1.1 + resolution: "gcp-metadata@npm:6.1.1" dependencies: - gaxios: "npm:^6.0.0" + gaxios: "npm:^6.1.1" + google-logging-utils: "npm:^0.0.2" json-bigint: "npm:^1.0.0" - checksum: 10c0/0f84f8c0b974e79d0da0f3063023486e53d7982ce86c4b5871e4ee3b1fc4e7f76fcc05f6342aa0ded5023f1a499c21ab97743a498b31f3aa299905226d1f66ab + checksum: 10c0/71f6ad4800aa622c246ceec3955014c0c78cdcfe025971f9558b9379f4019f5e65772763428ee8c3244fa81b8631977316eaa71a823493f82e5c44d7259ffac8 languageName: node linkType: hard @@ -4413,6 +4414,13 @@ __metadata: languageName: node linkType: hard +"google-logging-utils@npm:^0.0.2": + version: 0.0.2 + resolution: "google-logging-utils@npm:0.0.2" + checksum: 10c0/9a4bbd470dd101c77405e450fffca8592d1d7114f245a121288d04a957aca08c9dea2dd1a871effe71e41540d1bb0494731a0b0f6fea4358e77f06645e4268c1 + languageName: node + linkType: hard + "gopd@npm:^1.0.1, gopd@npm:^1.2.0": version: 1.2.0 resolution: "gopd@npm:1.2.0" @@ -5845,11 +5853,11 @@ __metadata: linkType: soft "node-abi@npm:^3.3.0": - version: 3.73.0 - resolution: "node-abi@npm:3.73.0" + version: 3.74.0 + resolution: "node-abi@npm:3.74.0" dependencies: semver: "npm:^7.3.5" - checksum: 10c0/4cd237f2507f80048310f381198a07387b11cbaab7dfac61ccc40cdc83f2296c647df02b5ddfead9f40b845c696f0ce75fdaa01973d3f3f0686151e4f96d2c8c + checksum: 10c0/a6c83c448d5e8b591f749a0157c9ec02f653021cdf3415c1a44fcb5fc8afc124acad186bc1ec76cb4db2485cc2dcdda187aacd382c54b6e3093ffc0389603643 languageName: node linkType: hard diff --git a/github-actions/branch-manager/main.js b/github-actions/branch-manager/main.js index f7ca25d7b..444f551bb 100644 --- a/github-actions/branch-manager/main.js +++ b/github-actions/branch-manager/main.js @@ -43287,7 +43287,8 @@ var NON_VARIABLE_OPTIONS = [ "headers", "request", "query", - "mediaType" + "mediaType", + "operationName" ]; var FORBIDDEN_VARIABLE_OPTIONS = ["query", "method", "url"]; var GHES_V3_SUFFIX_REGEX = /\/api\/v3\/?$/; diff --git a/github-actions/commit-message-based-labels/main.js b/github-actions/commit-message-based-labels/main.js index 8a1bde054..fa6307222 100644 --- a/github-actions/commit-message-based-labels/main.js +++ b/github-actions/commit-message-based-labels/main.js @@ -43690,7 +43690,8 @@ var NON_VARIABLE_OPTIONS = [ "headers", "request", "query", - "mediaType" + "mediaType", + "operationName" ]; var FORBIDDEN_VARIABLE_OPTIONS = ["query", "method", "url"]; var GHES_V3_SUFFIX_REGEX = /\/api\/v3\/?$/; diff --git a/github-actions/create-pr-for-changes/main.js b/github-actions/create-pr-for-changes/main.js index 8a54193be..c6b2b84b6 100644 --- a/github-actions/create-pr-for-changes/main.js +++ b/github-actions/create-pr-for-changes/main.js @@ -44461,7 +44461,8 @@ var NON_VARIABLE_OPTIONS = [ "headers", "request", "query", - "mediaType" + "mediaType", + "operationName" ]; var FORBIDDEN_VARIABLE_OPTIONS = ["query", "method", "url"]; var GHES_V3_SUFFIX_REGEX = /\/api\/v3\/?$/; diff --git a/github-actions/feature-request/main.js b/github-actions/feature-request/main.js index fe91f6a64..85fe31a25 100644 --- a/github-actions/feature-request/main.js +++ b/github-actions/feature-request/main.js @@ -43290,7 +43290,8 @@ var NON_VARIABLE_OPTIONS = [ "headers", "request", "query", - "mediaType" + "mediaType", + "operationName" ]; var FORBIDDEN_VARIABLE_OPTIONS = ["query", "method", "url"]; var GHES_V3_SUFFIX_REGEX = /\/api\/v3\/?$/; diff --git a/github-actions/google-internal-tests/main.js b/github-actions/google-internal-tests/main.js index 40b340413..1f463bff7 100644 --- a/github-actions/google-internal-tests/main.js +++ b/github-actions/google-internal-tests/main.js @@ -45079,7 +45079,8 @@ var NON_VARIABLE_OPTIONS = [ "headers", "request", "query", - "mediaType" + "mediaType", + "operationName" ]; var FORBIDDEN_VARIABLE_OPTIONS = ["query", "method", "url"]; var GHES_V3_SUFFIX_REGEX = /\/api\/v3\/?$/; diff --git a/github-actions/org-file-sync/main.js b/github-actions/org-file-sync/main.js index 01d961fb7..3b1911b6c 100644 --- a/github-actions/org-file-sync/main.js +++ b/github-actions/org-file-sync/main.js @@ -43287,7 +43287,8 @@ var NON_VARIABLE_OPTIONS = [ "headers", "request", "query", - "mediaType" + "mediaType", + "operationName" ]; var FORBIDDEN_VARIABLE_OPTIONS = ["query", "method", "url"]; var GHES_V3_SUFFIX_REGEX = /\/api\/v3\/?$/; diff --git a/github-actions/post-approval-changes/main.js b/github-actions/post-approval-changes/main.js index 154e1c007..b1304e270 100644 --- a/github-actions/post-approval-changes/main.js +++ b/github-actions/post-approval-changes/main.js @@ -43287,7 +43287,8 @@ var NON_VARIABLE_OPTIONS = [ "headers", "request", "query", - "mediaType" + "mediaType", + "operationName" ]; var FORBIDDEN_VARIABLE_OPTIONS = ["query", "method", "url"]; var GHES_V3_SUFFIX_REGEX = /\/api\/v3\/?$/; 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 393cc4b01..33f2c3f36 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 @@ -801,7 +801,8 @@ var NON_VARIABLE_OPTIONS = [ "headers", "request", "query", - "mediaType" + "mediaType", + "operationName" ]; var FORBIDDEN_VARIABLE_OPTIONS = ["query", "method", "url"]; var GHES_V3_SUFFIX_REGEX = /\/api\/v3\/?$/; diff --git a/github-actions/unified-status-check/main.js b/github-actions/unified-status-check/main.js index 658350222..de0da38c4 100644 --- a/github-actions/unified-status-check/main.js +++ b/github-actions/unified-status-check/main.js @@ -43574,7 +43574,8 @@ var NON_VARIABLE_OPTIONS = [ "headers", "request", "query", - "mediaType" + "mediaType", + "operationName" ]; var FORBIDDEN_VARIABLE_OPTIONS = ["query", "method", "url"]; var GHES_V3_SUFFIX_REGEX = /\/api\/v3\/?$/; diff --git a/tools/ts_proto/yarn.lock b/tools/ts_proto/yarn.lock index 9d8af2e41..1e3dfe811 100644 --- a/tools/ts_proto/yarn.lock +++ b/tools/ts_proto/yarn.lock @@ -147,11 +147,11 @@ __metadata: linkType: hard "@types/node@npm:>=13.7.0": - version: 22.12.0 - resolution: "@types/node@npm:22.12.0" + version: 22.13.0 + resolution: "@types/node@npm:22.13.0" dependencies: undici-types: "npm:~6.20.0" - checksum: 10c0/be220706732d95db2ed1c441c1e64cab90bf9a47519ce6f4c79cc5a9ec9d5c517131a149a9ac30afac1a30103e67e3a00d453ba7c1b0141608a3a7ba6397c303 + checksum: 10c0/9cf6358b2863ae7bf9588ca1cc3d87f6a6289c3880e95a046a188760666870e2c12502df8b0a473bec8aa8ffee85e025d60382a6104b10f197120793235b2c22 languageName: node linkType: hard diff --git a/yarn.lock b/yarn.lock index 776aa971d..dca33ed4a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2323,22 +2323,25 @@ __metadata: languageName: node linkType: hard -"@inquirer/checkbox@npm:^4.0.7": - version: 4.0.7 - resolution: "@inquirer/checkbox@npm:4.0.7" +"@inquirer/checkbox@npm:^4.0.7, @inquirer/checkbox@npm:^4.1.1": + version: 4.1.1 + resolution: "@inquirer/checkbox@npm:4.1.1" dependencies: - "@inquirer/core": "npm:^10.1.5" + "@inquirer/core": "npm:^10.1.6" "@inquirer/figures": "npm:^1.0.10" - "@inquirer/type": "npm:^3.0.3" + "@inquirer/type": "npm:^3.0.4" ansi-escapes: "npm:^4.3.2" yoctocolors-cjs: "npm:^2.1.2" peerDependencies: "@types/node": ">=18" - checksum: 10c0/8ebca08b75492525ad770bb9c3c7cbbf44f08f5d7d3ebf75dc73bf9d0c16f562dea6e744f3258ed996d416c0f1d86149bb5d155716f7a05547a445cd77497575 + peerDependenciesMeta: + "@types/node": + optional: true + checksum: 10c0/4a5fe6aa4cf57c9ea7e865088d384b8b6f1ab953f65f59aa74214b2386093fbc44f15ec364d9980416c67aa4d47eba2699d1b30adc694f63cc8ed0e63517ce31 languageName: node linkType: hard -"@inquirer/confirm@npm:5.1.4, @inquirer/confirm@npm:^5.1.4": +"@inquirer/confirm@npm:5.1.4": version: 5.1.4 resolution: "@inquirer/confirm@npm:5.1.4" dependencies: @@ -2350,45 +2353,71 @@ __metadata: languageName: node linkType: hard -"@inquirer/core@npm:^10.1.5": - version: 10.1.5 - resolution: "@inquirer/core@npm:10.1.5" +"@inquirer/confirm@npm:^5.1.4, @inquirer/confirm@npm:^5.1.5": + version: 5.1.5 + resolution: "@inquirer/confirm@npm:5.1.5" + dependencies: + "@inquirer/core": "npm:^10.1.6" + "@inquirer/type": "npm:^3.0.4" + peerDependencies: + "@types/node": ">=18" + peerDependenciesMeta: + "@types/node": + optional: true + checksum: 10c0/142d834e8e7fb78698596b7f4114a1bafa96a2d177d4af35749d3c8381aee73b7cc5725cfb395c4c8fb06699f96aa0236c88d55d8bc3c81c6719954cca1dde67 + languageName: node + linkType: hard + +"@inquirer/core@npm:^10.1.5, @inquirer/core@npm:^10.1.6": + version: 10.1.6 + resolution: "@inquirer/core@npm:10.1.6" dependencies: "@inquirer/figures": "npm:^1.0.10" - "@inquirer/type": "npm:^3.0.3" + "@inquirer/type": "npm:^3.0.4" ansi-escapes: "npm:^4.3.2" cli-width: "npm:^4.1.0" mute-stream: "npm:^2.0.0" signal-exit: "npm:^4.1.0" wrap-ansi: "npm:^6.2.0" yoctocolors-cjs: "npm:^2.1.2" - checksum: 10c0/b759481dc9364886b1f76307955e37f1f7cf308141453efb07c30c8ed513e0f1d4eb756c74f764e71a91927cb4fe6f0f49d702a8aeb32bcf19c208d056cf4ff8 + peerDependencies: + "@types/node": ">=18" + peerDependenciesMeta: + "@types/node": + optional: true + checksum: 10c0/be16340bd064c7c389bfb429c350df4afc2da2e3275e9c350326d97a4eebab1444b4a866f7dda6aba43874dd7bbaed5cda0c27faf6c15709408b98e41d744d25 languageName: node linkType: hard -"@inquirer/editor@npm:^4.2.4": - version: 4.2.4 - resolution: "@inquirer/editor@npm:4.2.4" +"@inquirer/editor@npm:^4.2.4, @inquirer/editor@npm:^4.2.6": + version: 4.2.6 + resolution: "@inquirer/editor@npm:4.2.6" dependencies: - "@inquirer/core": "npm:^10.1.5" - "@inquirer/type": "npm:^3.0.3" + "@inquirer/core": "npm:^10.1.6" + "@inquirer/type": "npm:^3.0.4" external-editor: "npm:^3.1.0" peerDependencies: "@types/node": ">=18" - checksum: 10c0/97cecdf975c0e123ff9219d347e14c067904d820042002042cd5cba2c0892d8adc16a770e93b0ed9f7cc9e23ab56bfa6d318b4a5f3af0ec6fc4d1e5bf8af3ec9 + peerDependenciesMeta: + "@types/node": + optional: true + checksum: 10c0/287edf9887c9181143e0ff4bbddf18dc0d7ca3bf1f4e8e1857511d304b28d00e251a6e028368d1bc027f8644d55c06a20a7619f745f27a93500d732a432a83b3 languageName: node linkType: hard -"@inquirer/expand@npm:^4.0.7": - version: 4.0.7 - resolution: "@inquirer/expand@npm:4.0.7" +"@inquirer/expand@npm:^4.0.7, @inquirer/expand@npm:^4.0.8": + version: 4.0.8 + resolution: "@inquirer/expand@npm:4.0.8" dependencies: - "@inquirer/core": "npm:^10.1.5" - "@inquirer/type": "npm:^3.0.3" + "@inquirer/core": "npm:^10.1.6" + "@inquirer/type": "npm:^3.0.4" yoctocolors-cjs: "npm:^2.1.2" peerDependencies: "@types/node": ">=18" - checksum: 10c0/568b81e3c61c37355786af3acf7c3f9095887971e4c08020c47d1f0aa167d7e8fe4639ccc0bf4b6e2114d9d6e9f8f0b6955c14e2d4228e15c2aeac3a0307a5c1 + peerDependenciesMeta: + "@types/node": + optional: true + checksum: 10c0/07f97ab17323316cd4cda2282d7ad0f2b999cd2a059a651802833ef5520b0a6be9a6348133c49e9c259995443dad271d9a3beca3cdc011c0c5ba5392d77e4b64 languageName: node linkType: hard @@ -2399,44 +2428,53 @@ __metadata: languageName: node linkType: hard -"@inquirer/input@npm:^4.1.4": - version: 4.1.4 - resolution: "@inquirer/input@npm:4.1.4" +"@inquirer/input@npm:^4.1.4, @inquirer/input@npm:^4.1.5": + version: 4.1.5 + resolution: "@inquirer/input@npm:4.1.5" dependencies: - "@inquirer/core": "npm:^10.1.5" - "@inquirer/type": "npm:^3.0.3" + "@inquirer/core": "npm:^10.1.6" + "@inquirer/type": "npm:^3.0.4" peerDependencies: "@types/node": ">=18" - checksum: 10c0/c522f4e8be9de81015530ac35273ed211a47a3ff9e697c25fde85332cb9bc8758484522dc5b530e3c95d90334e581ad5601767146ba15e32e4b51a55f2839275 + peerDependenciesMeta: + "@types/node": + optional: true + checksum: 10c0/e67e192f96ea195786414e4bdc4b7d44c45a5d37422fda50d6710072f9b4a1d5e07744149112fd6a3c127b192ad33642e99c9b54e33b3ec59ef1c070253fe5dc languageName: node linkType: hard -"@inquirer/number@npm:^3.0.7": - version: 3.0.7 - resolution: "@inquirer/number@npm:3.0.7" +"@inquirer/number@npm:^3.0.7, @inquirer/number@npm:^3.0.8": + version: 3.0.8 + resolution: "@inquirer/number@npm:3.0.8" dependencies: - "@inquirer/core": "npm:^10.1.5" - "@inquirer/type": "npm:^3.0.3" + "@inquirer/core": "npm:^10.1.6" + "@inquirer/type": "npm:^3.0.4" peerDependencies: "@types/node": ">=18" - checksum: 10c0/d568a58f1640f44ae23d2b35709965ff4b2b7d71fb9eba9014099a0a8431ab318ae1c7229f9b4d62c23f1744759102f777c5370b84ce627fda8136d6cd57992d + peerDependenciesMeta: + "@types/node": + optional: true + checksum: 10c0/2a1b478b24a7ebedabf220352c3fd764f2a006c9400242e4077f666f453072936d0082b455c3c09729c2d30f9abcfeac2ff4e5d75de7f861ed2fe52da0620a3e languageName: node linkType: hard -"@inquirer/password@npm:^4.0.7": - version: 4.0.7 - resolution: "@inquirer/password@npm:4.0.7" +"@inquirer/password@npm:^4.0.7, @inquirer/password@npm:^4.0.8": + version: 4.0.8 + resolution: "@inquirer/password@npm:4.0.8" dependencies: - "@inquirer/core": "npm:^10.1.5" - "@inquirer/type": "npm:^3.0.3" + "@inquirer/core": "npm:^10.1.6" + "@inquirer/type": "npm:^3.0.4" ansi-escapes: "npm:^4.3.2" peerDependencies: "@types/node": ">=18" - checksum: 10c0/5710f1840a06a1d4a0d067879b313c6798985954c56a4271aae127b3dd0fda5172d6491ad20be1d64a8f57fec232f4f124ff37f4cc1a54dae86a7641911a1cd5 + peerDependenciesMeta: + "@types/node": + optional: true + checksum: 10c0/174962673d7a20f5f0811f70a3474f53d32234decee8aa653953b538af8a6fb5eb772bdf300c30a33d83c14d93992563de9934d642908a657cd8f21441811008 languageName: node linkType: hard -"@inquirer/prompts@npm:7.2.4, @inquirer/prompts@npm:^7.0.0": +"@inquirer/prompts@npm:7.2.4": version: 7.2.4 resolution: "@inquirer/prompts@npm:7.2.4" dependencies: @@ -2456,45 +2494,77 @@ __metadata: languageName: node linkType: hard -"@inquirer/rawlist@npm:^4.0.7": - version: 4.0.7 - resolution: "@inquirer/rawlist@npm:4.0.7" +"@inquirer/prompts@npm:^7.0.0": + version: 7.3.1 + resolution: "@inquirer/prompts@npm:7.3.1" dependencies: - "@inquirer/core": "npm:^10.1.5" - "@inquirer/type": "npm:^3.0.3" + "@inquirer/checkbox": "npm:^4.1.1" + "@inquirer/confirm": "npm:^5.1.5" + "@inquirer/editor": "npm:^4.2.6" + "@inquirer/expand": "npm:^4.0.8" + "@inquirer/input": "npm:^4.1.5" + "@inquirer/number": "npm:^3.0.8" + "@inquirer/password": "npm:^4.0.8" + "@inquirer/rawlist": "npm:^4.0.8" + "@inquirer/search": "npm:^3.0.8" + "@inquirer/select": "npm:^4.0.8" + peerDependencies: + "@types/node": ">=18" + peerDependenciesMeta: + "@types/node": + optional: true + checksum: 10c0/13114c82d94f20ad576a7fbfd2ba8b665d6980ad8e5a998f3030e3c0c3370d1f8b3330d48319ee52db2e58ffc237f5bda7f06cacb29085f3947f134990f46591 + languageName: node + linkType: hard + +"@inquirer/rawlist@npm:^4.0.7, @inquirer/rawlist@npm:^4.0.8": + version: 4.0.8 + resolution: "@inquirer/rawlist@npm:4.0.8" + dependencies: + "@inquirer/core": "npm:^10.1.6" + "@inquirer/type": "npm:^3.0.4" yoctocolors-cjs: "npm:^2.1.2" peerDependencies: "@types/node": ">=18" - checksum: 10c0/d254cb2712ee9eb4c0219ea6cd535d7223d7597b400f06628c0239191cc101fec715f32180c9145b947b83fbfca74515b0b1f6061abc74dde081a9736fbb467b + peerDependenciesMeta: + "@types/node": + optional: true + checksum: 10c0/9150f78e58b0309b327d559227553ba1c3dfdd7c418fdaa9d367c1fb00af3583d079fe32cd06201e1ae6966661988b3f735ff98fc3cdee14c7e534a52fd36d39 languageName: node linkType: hard -"@inquirer/search@npm:^3.0.7": - version: 3.0.7 - resolution: "@inquirer/search@npm:3.0.7" +"@inquirer/search@npm:^3.0.7, @inquirer/search@npm:^3.0.8": + version: 3.0.8 + resolution: "@inquirer/search@npm:3.0.8" dependencies: - "@inquirer/core": "npm:^10.1.5" + "@inquirer/core": "npm:^10.1.6" "@inquirer/figures": "npm:^1.0.10" - "@inquirer/type": "npm:^3.0.3" + "@inquirer/type": "npm:^3.0.4" yoctocolors-cjs: "npm:^2.1.2" peerDependencies: "@types/node": ">=18" - checksum: 10c0/3848279b233fa4292cf8e4bdc74ae24d5145ab31c1f4b33ea7584773cff22dfb704a86393826f8215db4e1763ecea7f0d419085fc64b704bfe5537ec53cfc817 + peerDependenciesMeta: + "@types/node": + optional: true + checksum: 10c0/408b68a8986f343e4d4e2e804b64525a23c0222c16ce523f5a93e4c6acb7c118c022315accd5fa40b3f3b2e8973974414b087ed20bc02cf5e96b3334f981af62 languageName: node linkType: hard -"@inquirer/select@npm:^4.0.7": - version: 4.0.7 - resolution: "@inquirer/select@npm:4.0.7" +"@inquirer/select@npm:^4.0.7, @inquirer/select@npm:^4.0.8": + version: 4.0.8 + resolution: "@inquirer/select@npm:4.0.8" dependencies: - "@inquirer/core": "npm:^10.1.5" + "@inquirer/core": "npm:^10.1.6" "@inquirer/figures": "npm:^1.0.10" - "@inquirer/type": "npm:^3.0.3" + "@inquirer/type": "npm:^3.0.4" ansi-escapes: "npm:^4.3.2" yoctocolors-cjs: "npm:^2.1.2" peerDependencies: "@types/node": ">=18" - checksum: 10c0/3e7a613f61b09eaa2b80fab23eccafc3852dcf7e18a10e9918a9747b71d6a3f039a3b356176f76c84ad70b05ff9f2fdba13961b80db845c8d322d4b06fc43ef6 + peerDependenciesMeta: + "@types/node": + optional: true + checksum: 10c0/da45822570ead39470df7b5d6d802ca73bb7b4bc766f42d5b77fe6c8f5a1225cf853ceb85e0a7ad491dded362b766fd80fd45623d7e1b512a0bec0e17fe3b246 languageName: node linkType: hard @@ -2507,12 +2577,15 @@ __metadata: languageName: node linkType: hard -"@inquirer/type@npm:^3.0.0, @inquirer/type@npm:^3.0.3": - version: 3.0.3 - resolution: "@inquirer/type@npm:3.0.3" +"@inquirer/type@npm:^3.0.0, @inquirer/type@npm:^3.0.3, @inquirer/type@npm:^3.0.4": + version: 3.0.4 + resolution: "@inquirer/type@npm:3.0.4" peerDependencies: "@types/node": ">=18" - checksum: 10c0/01a9b33aa88a47d3756fca6fae3d1a1bab88b8bdb5033ab8c3446963593be54173873f9fa63f6ea04c100bf950e88b62643042c5393ac3363d201be33c0b3eca + peerDependenciesMeta: + "@types/node": + optional: true + checksum: 10c0/d1db1833e879646ce1f31daff372e90ee099457cf7a2c09a62e8bbce47aced5f22599ef51aa8b82b5ffaeb624340c263cdd9d7a9eae8d3dfc9740efad080915e languageName: node linkType: hard @@ -2684,17 +2757,6 @@ __metadata: languageName: node linkType: hard -"@microsoft/api-extractor-model@npm:7.30.2": - version: 7.30.2 - resolution: "@microsoft/api-extractor-model@npm:7.30.2" - dependencies: - "@microsoft/tsdoc": "npm:~0.15.1" - "@microsoft/tsdoc-config": "npm:~0.17.1" - "@rushstack/node-core-library": "npm:5.10.2" - checksum: 10c0/89b86bc6898b3090857fc98dc986c91de2d61196c3b1a3d0a8e753b66089e73544b1cdee160f011b4ec9bd1e97ebaa5a301baf8afaca1126e21ace2a082994fa - languageName: node - linkType: hard - "@microsoft/api-extractor-model@npm:7.30.3": version: 7.30.3 resolution: "@microsoft/api-extractor-model@npm:7.30.3" @@ -2706,7 +2768,7 @@ __metadata: languageName: node linkType: hard -"@microsoft/api-extractor@npm:7.49.2": +"@microsoft/api-extractor@npm:7.49.2, @microsoft/api-extractor@npm:^7.24.2": version: 7.49.2 resolution: "@microsoft/api-extractor@npm:7.49.2" dependencies: @@ -2729,29 +2791,6 @@ __metadata: languageName: node linkType: hard -"@microsoft/api-extractor@npm:^7.24.2": - version: 7.49.1 - resolution: "@microsoft/api-extractor@npm:7.49.1" - dependencies: - "@microsoft/api-extractor-model": "npm:7.30.2" - "@microsoft/tsdoc": "npm:~0.15.1" - "@microsoft/tsdoc-config": "npm:~0.17.1" - "@rushstack/node-core-library": "npm:5.10.2" - "@rushstack/rig-package": "npm:0.5.3" - "@rushstack/terminal": "npm:0.14.5" - "@rushstack/ts-command-line": "npm:4.23.3" - lodash: "npm:~4.17.15" - minimatch: "npm:~3.0.3" - resolve: "npm:~1.22.1" - semver: "npm:~7.5.4" - source-map: "npm:~0.6.1" - typescript: "npm:5.7.2" - bin: - api-extractor: bin/api-extractor - checksum: 10c0/0cdd7d1936924113d91e061960e7db8d43b1b9c068b64c4b69ecd53c87b1bce44072dfdaaf0c765750685e41015e76cce1ba96f1a20f92e14c743caafc6e842a - languageName: node - linkType: hard - "@microsoft/tsdoc-config@npm:~0.17.1": version: 0.17.1 resolution: "@microsoft/tsdoc-config@npm:0.17.1" @@ -2814,8 +2853,8 @@ __metadata: linkType: hard "@mswjs/interceptors@npm:^0.37.3": - version: 0.37.5 - resolution: "@mswjs/interceptors@npm:0.37.5" + version: 0.37.6 + resolution: "@mswjs/interceptors@npm:0.37.6" dependencies: "@open-draft/deferred-promise": "npm:^2.2.0" "@open-draft/logger": "npm:^0.3.0" @@ -2823,7 +2862,7 @@ __metadata: is-node-process: "npm:^1.2.0" outvariant: "npm:^1.4.3" strict-event-emitter: "npm:^0.5.1" - checksum: 10c0/f618077be622069c44e046d99be12c7d51a77fb774f843f4f36875bce36653799721e5047f5e13c5fa2a3259560e648d0d00515f5daf56c824806aa98e849f2d + checksum: 10c0/74f52c09c84fcbba9f1a06e462aa25b1567cf078ed27d396c76a8059c002fa9c361e711dcada0ac2aad4298f247d8e236a4fcc861c08ddf6e2ce0889368596fd languageName: node linkType: hard @@ -3286,7 +3325,7 @@ __metadata: languageName: node linkType: hard -"@octokit/graphql@npm:8.1.2, @octokit/graphql@npm:^8.1.2": +"@octokit/graphql@npm:8.1.2": version: 8.1.2 resolution: "@octokit/graphql@npm:8.1.2" dependencies: @@ -3308,6 +3347,17 @@ __metadata: languageName: node linkType: hard +"@octokit/graphql@npm:^8.1.2": + version: 8.2.0 + resolution: "@octokit/graphql@npm:8.2.0" + dependencies: + "@octokit/request": "npm:^9.1.4" + "@octokit/types": "npm:^13.8.0" + universal-user-agent: "npm:^7.0.0" + checksum: 10c0/10c91490e191554bd611d80ae4678fc3887d3cb0f56258781e04c941d3373ccdb63b518a3e6ba7a08e2777b0cb22c60c62aaa6aa138bd9052624b364c886c1db + languageName: node + linkType: hard + "@octokit/oauth-authorization-url@npm:^7.0.0": version: 7.1.1 resolution: "@octokit/oauth-authorization-url@npm:7.1.1" @@ -3451,7 +3501,7 @@ __metadata: languageName: node linkType: hard -"@octokit/types@npm:13.8.0": +"@octokit/types@npm:13.8.0, @octokit/types@npm:^13.0.0, @octokit/types@npm:^13.1.0, @octokit/types@npm:^13.6.2, @octokit/types@npm:^13.7.0, @octokit/types@npm:^13.8.0": version: 13.8.0 resolution: "@octokit/types@npm:13.8.0" dependencies: @@ -3469,15 +3519,6 @@ __metadata: languageName: node linkType: hard -"@octokit/types@npm:^13.0.0, @octokit/types@npm:^13.1.0, @octokit/types@npm:^13.6.2, @octokit/types@npm:^13.7.0": - version: 13.7.0 - resolution: "@octokit/types@npm:13.7.0" - dependencies: - "@octokit/openapi-types": "npm:^23.0.1" - checksum: 10c0/62ed4f00304360cc31e99a9dc97ac4f48075d1d5c09a272f09b1fd3dfcc7a6169b7fab109030319ef121b0cd880c85bdb20363f4992104e07a98bd8323beeeb5 - languageName: node - linkType: hard - "@octokit/webhooks-definitions@npm:3.67.3": version: 3.67.3 resolution: "@octokit/webhooks-definitions@npm:3.67.3" @@ -3876,6 +3917,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-android-arm-eabi@npm:4.34.1": + version: 4.34.1 + resolution: "@rollup/rollup-android-arm-eabi@npm:4.34.1" + conditions: os=android & cpu=arm + 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" @@ -3883,6 +3931,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-android-arm64@npm:4.34.1": + version: 4.34.1 + resolution: "@rollup/rollup-android-arm64@npm:4.34.1" + conditions: os=android & 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" @@ -3890,6 +3945,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-darwin-arm64@npm:4.34.1": + version: 4.34.1 + resolution: "@rollup/rollup-darwin-arm64@npm:4.34.1" + conditions: os=darwin & cpu=arm64 + 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" @@ -3897,6 +3959,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-darwin-x64@npm:4.34.1": + version: 4.34.1 + resolution: "@rollup/rollup-darwin-x64@npm:4.34.1" + conditions: os=darwin & cpu=x64 + 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" @@ -3904,6 +3973,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-freebsd-arm64@npm:4.34.1": + version: 4.34.1 + resolution: "@rollup/rollup-freebsd-arm64@npm:4.34.1" + conditions: os=freebsd & cpu=arm64 + 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" @@ -3911,6 +3987,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-freebsd-x64@npm:4.34.1": + version: 4.34.1 + resolution: "@rollup/rollup-freebsd-x64@npm:4.34.1" + conditions: os=freebsd & cpu=x64 + 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" @@ -3918,6 +4001,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-linux-arm-gnueabihf@npm:4.34.1": + version: 4.34.1 + resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.34.1" + conditions: os=linux & cpu=arm & libc=glibc + 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" @@ -3925,6 +4015,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-linux-arm-musleabihf@npm:4.34.1": + version: 4.34.1 + resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.34.1" + conditions: os=linux & cpu=arm & libc=musl + 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" @@ -3932,6 +4029,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-linux-arm64-gnu@npm:4.34.1": + version: 4.34.1 + resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.34.1" + conditions: os=linux & cpu=arm64 & libc=glibc + 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" @@ -3939,6 +4043,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-linux-arm64-musl@npm:4.34.1": + version: 4.34.1 + resolution: "@rollup/rollup-linux-arm64-musl@npm:4.34.1" + conditions: os=linux & cpu=arm64 & libc=musl + 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" @@ -3946,6 +4057,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-linux-loongarch64-gnu@npm:4.34.1": + version: 4.34.1 + resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.34.1" + conditions: os=linux & cpu=loong64 & 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" @@ -3953,6 +4071,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.1": + version: 4.34.1 + resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.1" + conditions: os=linux & cpu=ppc64 & 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" @@ -3960,6 +4085,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-linux-riscv64-gnu@npm:4.34.1": + version: 4.34.1 + resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.34.1" + conditions: os=linux & cpu=riscv64 & 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" @@ -3967,6 +4099,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-linux-s390x-gnu@npm:4.34.1": + version: 4.34.1 + resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.34.1" + conditions: os=linux & cpu=s390x & 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" @@ -3974,6 +4113,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-linux-x64-gnu@npm:4.34.1": + version: 4.34.1 + resolution: "@rollup/rollup-linux-x64-gnu@npm:4.34.1" + conditions: os=linux & cpu=x64 & libc=glibc + 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" @@ -3981,6 +4127,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-linux-x64-musl@npm:4.34.1": + version: 4.34.1 + resolution: "@rollup/rollup-linux-x64-musl@npm:4.34.1" + conditions: os=linux & cpu=x64 & libc=musl + 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" @@ -3988,6 +4141,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-win32-arm64-msvc@npm:4.34.1": + version: 4.34.1 + resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.34.1" + conditions: os=win32 & cpu=arm64 + 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" @@ -3995,6 +4155,13 @@ __metadata: languageName: node linkType: hard +"@rollup/rollup-win32-ia32-msvc@npm:4.34.1": + version: 4.34.1 + resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.34.1" + conditions: os=win32 & cpu=ia32 + 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" @@ -4002,24 +4169,10 @@ __metadata: languageName: node linkType: hard -"@rushstack/node-core-library@npm:5.10.2": - version: 5.10.2 - resolution: "@rushstack/node-core-library@npm:5.10.2" - dependencies: - ajv: "npm:~8.13.0" - ajv-draft-04: "npm:~1.0.0" - ajv-formats: "npm:~3.0.1" - fs-extra: "npm:~7.0.1" - import-lazy: "npm:~4.0.0" - jju: "npm:~1.4.0" - resolve: "npm:~1.22.1" - semver: "npm:~7.5.4" - peerDependencies: - "@types/node": "*" - peerDependenciesMeta: - "@types/node": - optional: true - checksum: 10c0/0735138e6c023361fe675a03ed8b2e60fa6ee6801b697470dce303f582ee710521f83197736b982990b7e3aab8506244cfd84118d16f738a5f95f9645721dc51 +"@rollup/rollup-win32-x64-msvc@npm:4.34.1": + version: 4.34.1 + resolution: "@rollup/rollup-win32-x64-msvc@npm:4.34.1" + conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -4054,21 +4207,6 @@ __metadata: languageName: node linkType: hard -"@rushstack/terminal@npm:0.14.5": - version: 0.14.5 - resolution: "@rushstack/terminal@npm:0.14.5" - dependencies: - "@rushstack/node-core-library": "npm:5.10.2" - supports-color: "npm:~8.1.1" - peerDependencies: - "@types/node": "*" - peerDependenciesMeta: - "@types/node": - optional: true - checksum: 10c0/2850cd5b4acf60c4e02cb6b87a0218bd4057b18b66e1907508f24d395e717458b3f437d8b9a5c951aac85a1ed8bd8fbcbc83629e5977bc3884f6a76167531ba3 - languageName: node - linkType: hard - "@rushstack/terminal@npm:0.14.6": version: 0.14.6 resolution: "@rushstack/terminal@npm:0.14.6" @@ -4084,18 +4222,6 @@ __metadata: languageName: node linkType: hard -"@rushstack/ts-command-line@npm:4.23.3": - version: 4.23.3 - resolution: "@rushstack/ts-command-line@npm:4.23.3" - dependencies: - "@rushstack/terminal": "npm:0.14.5" - "@types/argparse": "npm:1.0.38" - argparse: "npm:~1.0.9" - string-argv: "npm:~0.3.1" - checksum: 10c0/d07c3316b6919c446dca186e5c2395ea18390a9c21a65ef84e1a7e93ff29ead463b295efd6b934a341c720a945e69bdeb8b51d2657e121aa6982da789290be2e - languageName: node - linkType: hard - "@rushstack/ts-command-line@npm:4.23.4": version: 4.23.4 resolution: "@rushstack/ts-command-line@npm:4.23.4" @@ -4598,11 +4724,11 @@ __metadata: 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.12.0 - resolution: "@types/node@npm:22.12.0" + version: 22.13.0 + resolution: "@types/node@npm:22.13.0" dependencies: undici-types: "npm:~6.20.0" - checksum: 10c0/be220706732d95db2ed1c441c1e64cab90bf9a47519ce6f4c79cc5a9ec9d5c517131a149a9ac30afac1a30103e67e3a00d453ba7c1b0141608a3a7ba6397c303 + checksum: 10c0/9cf6358b2863ae7bf9588ca1cc3d87f6a6289c3880e95a046a188760666870e2c12502df8b0a473bec8aa8ffee85e025d60382a6104b10f197120793235b2c22 languageName: node linkType: hard @@ -7044,9 +7170,9 @@ __metadata: linkType: hard "electron-to-chromium@npm:^1.5.73": - version: 1.5.88 - resolution: "electron-to-chromium@npm:1.5.88" - checksum: 10c0/25946ef310f8e14c763fcf0e62094e7eae2273d9ffe908969ddd97492c3df0198739295ba76388dc210c4503ab6b540130779cd83036f80520cb8efee53be8e4 + version: 1.5.90 + resolution: "electron-to-chromium@npm:1.5.90" + checksum: 10c0/864715adfebb5932a78f776c99f28a50942884302b42ee6de0ab64ca135891a5a43af3a7c719a7335687c0ee201561011e37d4994558a795f67b9e44f20fc6ee languageName: node linkType: hard @@ -7547,8 +7673,8 @@ __metadata: linkType: hard "exegesis@npm:^4.1.0, exegesis@npm:^4.2.0": - version: 4.2.0 - resolution: "exegesis@npm:4.2.0" + version: 4.3.0 + resolution: "exegesis@npm:4.3.0" dependencies: "@apidevtools/json-schema-ref-parser": "npm:^9.0.3" ajv: "npm:^8.3.0" @@ -7563,11 +7689,10 @@ __metadata: lodash: "npm:^4.17.11" openapi3-ts: "npm:^3.1.1" promise-breaker: "npm:^6.0.0" - pump: "npm:^3.0.0" qs: "npm:^6.6.0" raw-body: "npm:^2.3.3" semver: "npm:^7.0.0" - checksum: 10c0/248f570f24c7ab2b7a46bb4fa4bdcaed2bcb0ec5e8de7ad8c1eb39b5c417ba649e44113605306c7ab0e998ae0ec02014fb74ab1e7f7a07bdb15badfb54eb8533 + checksum: 10c0/944ec9df00378ef19eb37a52aff60244e3bb98878e5979d7efb98b8454b144d9bb7ec08ea8d23e54430d97e2d0bf9e59341f85a471e1288a607cf13ceabfdbe1 languageName: node linkType: hard @@ -7739,11 +7864,11 @@ __metadata: linkType: hard "fastq@npm:^1.6.0": - version: 1.18.0 - resolution: "fastq@npm:1.18.0" + version: 1.19.0 + resolution: "fastq@npm:1.19.0" dependencies: reusify: "npm:^1.0.4" - checksum: 10c0/7be87ecc41762adbddf558d24182f50a4b1a3ef3ee807d33b7623da7aee5faecdcc94fce5aa13fe91df93e269f383232bbcdb2dc5338cd1826503d6063221f36 + checksum: 10c0/d6a001638f1574a696660fcbba5300d017760432372c801632c325ca7c16819604841c92fd3ccadcdacec0966ca336363a5ff57bc5f0be335d8ea7ac6087b98f languageName: node linkType: hard @@ -7909,8 +8034,8 @@ __metadata: linkType: hard "firebase-functions@npm:^6.0.0": - version: 6.3.0 - resolution: "firebase-functions@npm:6.3.0" + version: 6.3.1 + resolution: "firebase-functions@npm:6.3.1" dependencies: "@types/cors": "npm:^2.8.5" "@types/express": "npm:^4.17.21" @@ -7921,7 +8046,7 @@ __metadata: firebase-admin: ^11.10.0 || ^12.0.0 || ^13.0.0 bin: firebase-functions: lib/bin/firebase-functions.js - checksum: 10c0/c8e12904b69ad6d65be73931e2588a76c78f1e1cbb261fd2da02d31b8d7e38f00958ac900ccf3851dfea16dd082ddb2bbec437878456b519161bd0c4498502db + checksum: 10c0/265f6dd874057bcf914454b17e29b92ab6b167ab8de964c63c5f985f2c5dbbc7d0bee64e2405f7f7eee676c6e7e70aa0a79f329331fb8937b4cb5adc8fb41388 languageName: node linkType: hard @@ -8212,17 +8337,6 @@ __metadata: languageName: node linkType: hard -"fs-extra@npm:~7.0.1": - version: 7.0.1 - resolution: "fs-extra@npm:7.0.1" - dependencies: - graceful-fs: "npm:^4.1.2" - jsonfile: "npm:^4.0.0" - universalify: "npm:^0.1.0" - checksum: 10c0/1943bb2150007e3739921b8d13d4109abdc3cc481e53b97b7ea7f77eda1c3c642e27ae49eac3af074e3496ea02fde30f411ef410c760c70a38b92e656e5da784 - languageName: node - linkType: hard - "fs-minipass@npm:^2.0.0": version: 2.1.0 resolution: "fs-minipass@npm:2.1.0" @@ -8327,12 +8441,13 @@ __metadata: linkType: hard "gcp-metadata@npm:^6.1.0": - version: 6.1.0 - resolution: "gcp-metadata@npm:6.1.0" + version: 6.1.1 + resolution: "gcp-metadata@npm:6.1.1" dependencies: - gaxios: "npm:^6.0.0" + gaxios: "npm:^6.1.1" + google-logging-utils: "npm:^0.0.2" json-bigint: "npm:^1.0.0" - checksum: 10c0/0f84f8c0b974e79d0da0f3063023486e53d7982ce86c4b5871e4ee3b1fc4e7f76fcc05f6342aa0ded5023f1a499c21ab97743a498b31f3aa299905226d1f66ab + checksum: 10c0/71f6ad4800aa622c246ceec3955014c0c78cdcfe025971f9558b9379f4019f5e65772763428ee8c3244fa81b8631977316eaa71a823493f82e5c44d7259ffac8 languageName: node linkType: hard @@ -8603,6 +8718,13 @@ __metadata: languageName: node linkType: hard +"google-logging-utils@npm:^0.0.2": + version: 0.0.2 + resolution: "google-logging-utils@npm:0.0.2" + checksum: 10c0/9a4bbd470dd101c77405e450fffca8592d1d7114f245a121288d04a957aca08c9dea2dd1a871effe71e41540d1bb0494731a0b0f6fea4358e77f06645e4268c1 + languageName: node + linkType: hard + "google-protobuf@npm:^3.6.1": version: 3.21.4 resolution: "google-protobuf@npm:3.21.4" @@ -9024,12 +9146,12 @@ __metadata: linkType: hard "import-fresh@npm:^3.3.0": - version: 3.3.0 - resolution: "import-fresh@npm:3.3.0" + version: 3.3.1 + resolution: "import-fresh@npm:3.3.1" dependencies: parent-module: "npm:^1.0.0" resolve-from: "npm:^4.0.0" - checksum: 10c0/7f882953aa6b740d1f0e384d0547158bc86efbf2eea0f1483b8900a6f65c5a5123c2cf09b0d542cc419d0b98a759ecaeb394237e97ea427f2da221dc3cd80cc3 + checksum: 10c0/bf8cc494872fef783249709385ae883b447e3eb09db0ebd15dcead7d9afe7224dad7bd7591c6b73b0b19b3c0f9640eb8ee884f01cfaf2887ab995b0b36a0cbec languageName: node linkType: hard @@ -12433,16 +12555,6 @@ __metadata: languageName: node linkType: hard -"pump@npm:^3.0.0": - version: 3.0.2 - resolution: "pump@npm:3.0.2" - dependencies: - end-of-stream: "npm:^1.1.0" - once: "npm:^1.3.1" - checksum: 10c0/5ad655cb2a7738b4bcf6406b24ad0970d680649d996b55ad20d1be8e0c02394034e4c45ff7cd105d87f1e9b96a0e3d06fd28e11fae8875da26e7f7a8e2c9726f - languageName: node - linkType: hard - "pumpify@npm:^1.3.5": version: 1.5.1 resolution: "pumpify@npm:1.5.1" @@ -12918,7 +13030,7 @@ __metadata: languageName: node linkType: hard -"rollup@npm:4.32.1, rollup@npm:^4.23.0": +"rollup@npm:4.32.1": version: 4.32.1 resolution: "rollup@npm:4.32.1" dependencies: @@ -12990,6 +13102,78 @@ __metadata: languageName: node linkType: hard +"rollup@npm:^4.23.0": + version: 4.34.1 + resolution: "rollup@npm:4.34.1" + dependencies: + "@rollup/rollup-android-arm-eabi": "npm:4.34.1" + "@rollup/rollup-android-arm64": "npm:4.34.1" + "@rollup/rollup-darwin-arm64": "npm:4.34.1" + "@rollup/rollup-darwin-x64": "npm:4.34.1" + "@rollup/rollup-freebsd-arm64": "npm:4.34.1" + "@rollup/rollup-freebsd-x64": "npm:4.34.1" + "@rollup/rollup-linux-arm-gnueabihf": "npm:4.34.1" + "@rollup/rollup-linux-arm-musleabihf": "npm:4.34.1" + "@rollup/rollup-linux-arm64-gnu": "npm:4.34.1" + "@rollup/rollup-linux-arm64-musl": "npm:4.34.1" + "@rollup/rollup-linux-loongarch64-gnu": "npm:4.34.1" + "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.34.1" + "@rollup/rollup-linux-riscv64-gnu": "npm:4.34.1" + "@rollup/rollup-linux-s390x-gnu": "npm:4.34.1" + "@rollup/rollup-linux-x64-gnu": "npm:4.34.1" + "@rollup/rollup-linux-x64-musl": "npm:4.34.1" + "@rollup/rollup-win32-arm64-msvc": "npm:4.34.1" + "@rollup/rollup-win32-ia32-msvc": "npm:4.34.1" + "@rollup/rollup-win32-x64-msvc": "npm:4.34.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/163c3e8488328ec415a78370e53ae35be0f260760032f57745aa030db4714d37b8930364f6fadf334e637c815ae0f898b45551ca3c955f665a3cd2c549617aba + languageName: node + linkType: hard + "router@npm:^2.0.0": version: 2.0.0 resolution: "router@npm:2.0.0" @@ -14115,12 +14299,12 @@ __metadata: linkType: hard "supports-hyperlinks@npm:^3.1.0": - version: 3.1.0 - resolution: "supports-hyperlinks@npm:3.1.0" + version: 3.2.0 + resolution: "supports-hyperlinks@npm:3.2.0" dependencies: has-flag: "npm:^4.0.0" supports-color: "npm:^7.0.0" - checksum: 10c0/78cc3e17eb27e6846fa355a8ebf343befe36272899cd409e45317a06c1997e95c23ff99d91080a517bd8c96508d4fa456e6ceb338c02ba5d7544277dbec0f10f + checksum: 10c0/bca527f38d4c45bc95d6a24225944675746c515ddb91e2456d00ae0b5c537658e9dd8155b996b191941b0c19036195a098251304b9082bbe00cd1781f3cd838e languageName: node linkType: hard @@ -14319,21 +14503,21 @@ __metadata: languageName: node linkType: hard -"tldts-core@npm:^6.1.75": - version: 6.1.75 - resolution: "tldts-core@npm:6.1.75" - checksum: 10c0/6a35db3a509bc003f86fe31f28334a3a1a56614f7ea3a3c93c91d771632d40a547d0313eb3882daea214e5441fa8b5902cc4ac96be6f7419a448310b8267a4cb +"tldts-core@npm:^6.1.76": + version: 6.1.76 + resolution: "tldts-core@npm:6.1.76" + checksum: 10c0/597a17715198f77cb8da98049d1cbb2684083c09c18e4957121009dea6aaa862dc1a2829f5d81a5306e49cd7b8f5316b5de82db64841acc9b570d7ada6e97f3e languageName: node linkType: hard "tldts@npm:^6.1.32": - version: 6.1.75 - resolution: "tldts@npm:6.1.75" + version: 6.1.76 + resolution: "tldts@npm:6.1.76" dependencies: - tldts-core: "npm:^6.1.75" + tldts-core: "npm:^6.1.76" bin: tldts: bin/cli.js - checksum: 10c0/cf25f05be4642cb0de070a0385e2dd24fea1b5ea4c10c679e763c095919fc2a41d6f445284d40e288802654ad919cb956687d2312a0352add23c4b7f5cb6abf9 + checksum: 10c0/86173db1b152c4b8468777ec3b78b1e811a4ac5eb3ac34d077f7d72b11e6f14637b540e21464a522403bf034d5dcb6a2d5ea21d69a3d0cd1e9ae05a0e77624ad languageName: node linkType: hard