@modern-js/upgrade-generator 3.7.22 → 3.7.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +779 -165
  2. package/package.json +11 -12
package/dist/index.js CHANGED
@@ -1802,9 +1802,9 @@ var require_ms = __commonJS({
1802
1802
  }
1803
1803
  });
1804
1804
 
1805
- // ../../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/common.js
1805
+ // ../../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/common.js
1806
1806
  var require_common = __commonJS({
1807
- "../../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/common.js"(exports, module2) {
1807
+ "../../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/common.js"(exports, module2) {
1808
1808
  "use strict";
1809
1809
  function setup(env) {
1810
1810
  createDebug.debug = createDebug;
@@ -1966,9 +1966,9 @@ var require_common = __commonJS({
1966
1966
  }
1967
1967
  });
1968
1968
 
1969
- // ../../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/browser.js
1969
+ // ../../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/browser.js
1970
1970
  var require_browser = __commonJS({
1971
- "../../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/browser.js"(exports, module2) {
1971
+ "../../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/browser.js"(exports, module2) {
1972
1972
  "use strict";
1973
1973
  exports.formatArgs = formatArgs;
1974
1974
  exports.save = save;
@@ -2137,9 +2137,118 @@ var require_browser = __commonJS({
2137
2137
  }
2138
2138
  });
2139
2139
 
2140
- // ../../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/node.js
2140
+ // ../../../../node_modules/.pnpm/has-flag@3.0.0/node_modules/has-flag/index.js
2141
+ var require_has_flag2 = __commonJS({
2142
+ "../../../../node_modules/.pnpm/has-flag@3.0.0/node_modules/has-flag/index.js"(exports, module2) {
2143
+ "use strict";
2144
+ module2.exports = (flag, argv) => {
2145
+ argv = argv || process.argv;
2146
+ const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
2147
+ const pos = argv.indexOf(prefix + flag);
2148
+ const terminatorPos = argv.indexOf("--");
2149
+ return pos !== -1 && (terminatorPos === -1 ? true : pos < terminatorPos);
2150
+ };
2151
+ }
2152
+ });
2153
+
2154
+ // ../../../../node_modules/.pnpm/supports-color@5.5.0/node_modules/supports-color/index.js
2155
+ var require_supports_color2 = __commonJS({
2156
+ "../../../../node_modules/.pnpm/supports-color@5.5.0/node_modules/supports-color/index.js"(exports, module2) {
2157
+ "use strict";
2158
+ var os2 = require("os");
2159
+ var hasFlag = require_has_flag2();
2160
+ var env = process.env;
2161
+ var forceColor;
2162
+ if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false")) {
2163
+ forceColor = false;
2164
+ } else if (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) {
2165
+ forceColor = true;
2166
+ }
2167
+ if ("FORCE_COLOR" in env) {
2168
+ forceColor = env.FORCE_COLOR.length === 0 || parseInt(env.FORCE_COLOR, 10) !== 0;
2169
+ }
2170
+ function translateLevel(level) {
2171
+ if (level === 0) {
2172
+ return false;
2173
+ }
2174
+ return {
2175
+ level,
2176
+ hasBasic: true,
2177
+ has256: level >= 2,
2178
+ has16m: level >= 3
2179
+ };
2180
+ }
2181
+ function supportsColor(stream4) {
2182
+ if (forceColor === false) {
2183
+ return 0;
2184
+ }
2185
+ if (hasFlag("color=16m") || hasFlag("color=full") || hasFlag("color=truecolor")) {
2186
+ return 3;
2187
+ }
2188
+ if (hasFlag("color=256")) {
2189
+ return 2;
2190
+ }
2191
+ if (stream4 && !stream4.isTTY && forceColor !== true) {
2192
+ return 0;
2193
+ }
2194
+ const min = forceColor ? 1 : 0;
2195
+ if (process.platform === "win32") {
2196
+ const osRelease = os2.release().split(".");
2197
+ if (Number(process.versions.node.split(".")[0]) >= 8 && Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
2198
+ return Number(osRelease[2]) >= 14931 ? 3 : 2;
2199
+ }
2200
+ return 1;
2201
+ }
2202
+ if ("CI" in env) {
2203
+ if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI"].some((sign) => sign in env) || env.CI_NAME === "codeship") {
2204
+ return 1;
2205
+ }
2206
+ return min;
2207
+ }
2208
+ if ("TEAMCITY_VERSION" in env) {
2209
+ return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
2210
+ }
2211
+ if (env.COLORTERM === "truecolor") {
2212
+ return 3;
2213
+ }
2214
+ if ("TERM_PROGRAM" in env) {
2215
+ const version = parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
2216
+ switch (env.TERM_PROGRAM) {
2217
+ case "iTerm.app":
2218
+ return version >= 3 ? 3 : 2;
2219
+ case "Apple_Terminal":
2220
+ return 2;
2221
+ }
2222
+ }
2223
+ if (/-256(color)?$/i.test(env.TERM)) {
2224
+ return 2;
2225
+ }
2226
+ if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
2227
+ return 1;
2228
+ }
2229
+ if ("COLORTERM" in env) {
2230
+ return 1;
2231
+ }
2232
+ if (env.TERM === "dumb") {
2233
+ return min;
2234
+ }
2235
+ return min;
2236
+ }
2237
+ function getSupportLevel(stream4) {
2238
+ const level = supportsColor(stream4);
2239
+ return translateLevel(level);
2240
+ }
2241
+ module2.exports = {
2242
+ supportsColor: getSupportLevel,
2243
+ stdout: getSupportLevel(process.stdout),
2244
+ stderr: getSupportLevel(process.stderr)
2245
+ };
2246
+ }
2247
+ });
2248
+
2249
+ // ../../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/node.js
2141
2250
  var require_node = __commonJS({
2142
- "../../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/node.js"(exports, module2) {
2251
+ "../../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/node.js"(exports, module2) {
2143
2252
  "use strict";
2144
2253
  var tty = require("tty");
2145
2254
  var util3 = require("util");
@@ -2156,7 +2265,7 @@ var require_node = __commonJS({
2156
2265
  );
2157
2266
  exports.colors = [6, 2, 3, 4, 5, 1];
2158
2267
  try {
2159
- const supportsColor = require_supports_color();
2268
+ const supportsColor = require_supports_color2();
2160
2269
  if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
2161
2270
  exports.colors = [
2162
2271
  20,
@@ -2312,9 +2421,9 @@ var require_node = __commonJS({
2312
2421
  }
2313
2422
  });
2314
2423
 
2315
- // ../../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/index.js
2424
+ // ../../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/index.js
2316
2425
  var require_src = __commonJS({
2317
- "../../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/index.js"(exports, module2) {
2426
+ "../../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/index.js"(exports, module2) {
2318
2427
  "use strict";
2319
2428
  if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
2320
2429
  module2.exports = require_browser();
@@ -4570,37 +4679,6 @@ var require_ensure = __commonJS({
4570
4679
  }
4571
4680
  });
4572
4681
 
4573
- // ../../../../node_modules/.pnpm/universalify@2.0.0/node_modules/universalify/index.js
4574
- var require_universalify2 = __commonJS({
4575
- "../../../../node_modules/.pnpm/universalify@2.0.0/node_modules/universalify/index.js"(exports) {
4576
- "use strict";
4577
- exports.fromCallback = function(fn) {
4578
- return Object.defineProperty(function(...args) {
4579
- if (typeof args[args.length - 1] === "function")
4580
- fn.apply(this, args);
4581
- else {
4582
- return new Promise((resolve, reject) => {
4583
- fn.call(
4584
- this,
4585
- ...args,
4586
- (err, res) => err != null ? reject(err) : resolve(res)
4587
- );
4588
- });
4589
- }
4590
- }, "name", { value: fn.name });
4591
- };
4592
- exports.fromPromise = function(fn) {
4593
- return Object.defineProperty(function(...args) {
4594
- const cb = args[args.length - 1];
4595
- if (typeof cb !== "function")
4596
- return fn.apply(this, args);
4597
- else
4598
- fn.apply(this, args.slice(0, -1)).then((r) => cb(null, r), cb);
4599
- }, "name", { value: fn.name });
4600
- };
4601
- }
4602
- });
4603
-
4604
4682
  // ../../../../node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/utils.js
4605
4683
  var require_utils2 = __commonJS({
4606
4684
  "../../../../node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/utils.js"(exports, module2) {
@@ -4629,7 +4707,7 @@ var require_jsonfile = __commonJS({
4629
4707
  } catch (_) {
4630
4708
  _fs = require("fs");
4631
4709
  }
4632
- var universalify = require_universalify2();
4710
+ var universalify = require_universalify();
4633
4711
  var { stringify: stringify2, stripBom } = require_utils2();
4634
4712
  function _readFile(_0) {
4635
4713
  return __async(this, arguments, function* (file, options = {}) {
@@ -5204,9 +5282,9 @@ var require_path_key = __commonJS({
5204
5282
  }
5205
5283
  });
5206
5284
 
5207
- // ../../../../node_modules/.pnpm/cross-spawn@7.0.3/node_modules/cross-spawn/lib/util/resolveCommand.js
5285
+ // ../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/lib/util/resolveCommand.js
5208
5286
  var require_resolveCommand = __commonJS({
5209
- "../../../../node_modules/.pnpm/cross-spawn@7.0.3/node_modules/cross-spawn/lib/util/resolveCommand.js"(exports, module2) {
5287
+ "../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/lib/util/resolveCommand.js"(exports, module2) {
5210
5288
  "use strict";
5211
5289
  var path5 = require("path");
5212
5290
  var which = require_which();
@@ -5246,9 +5324,9 @@ var require_resolveCommand = __commonJS({
5246
5324
  }
5247
5325
  });
5248
5326
 
5249
- // ../../../../node_modules/.pnpm/cross-spawn@7.0.3/node_modules/cross-spawn/lib/util/escape.js
5327
+ // ../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/lib/util/escape.js
5250
5328
  var require_escape = __commonJS({
5251
- "../../../../node_modules/.pnpm/cross-spawn@7.0.3/node_modules/cross-spawn/lib/util/escape.js"(exports, module2) {
5329
+ "../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/lib/util/escape.js"(exports, module2) {
5252
5330
  "use strict";
5253
5331
  var metaCharsRegExp = /([()\][%!^"`<>&|;, *?])/g;
5254
5332
  function escapeCommand(arg) {
@@ -5257,8 +5335,8 @@ var require_escape = __commonJS({
5257
5335
  }
5258
5336
  function escapeArgument(arg, doubleEscapeMetaChars) {
5259
5337
  arg = `${arg}`;
5260
- arg = arg.replace(/(\\*)"/g, '$1$1\\"');
5261
- arg = arg.replace(/(\\*)$/, "$1$1");
5338
+ arg = arg.replace(/(?=(\\+?)?)\1"/g, '$1$1\\"');
5339
+ arg = arg.replace(/(?=(\\+?)?)\1$/, "$1$1");
5262
5340
  arg = `"${arg}"`;
5263
5341
  arg = arg.replace(metaCharsRegExp, "^$1");
5264
5342
  if (doubleEscapeMetaChars) {
@@ -5299,9 +5377,9 @@ var require_shebang_command = __commonJS({
5299
5377
  }
5300
5378
  });
5301
5379
 
5302
- // ../../../../node_modules/.pnpm/cross-spawn@7.0.3/node_modules/cross-spawn/lib/util/readShebang.js
5380
+ // ../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/lib/util/readShebang.js
5303
5381
  var require_readShebang = __commonJS({
5304
- "../../../../node_modules/.pnpm/cross-spawn@7.0.3/node_modules/cross-spawn/lib/util/readShebang.js"(exports, module2) {
5382
+ "../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/lib/util/readShebang.js"(exports, module2) {
5305
5383
  "use strict";
5306
5384
  var fs2 = require("fs");
5307
5385
  var shebangCommand = require_shebang_command();
@@ -5321,9 +5399,9 @@ var require_readShebang = __commonJS({
5321
5399
  }
5322
5400
  });
5323
5401
 
5324
- // ../../../../node_modules/.pnpm/cross-spawn@7.0.3/node_modules/cross-spawn/lib/parse.js
5402
+ // ../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/lib/parse.js
5325
5403
  var require_parse = __commonJS({
5326
- "../../../../node_modules/.pnpm/cross-spawn@7.0.3/node_modules/cross-spawn/lib/parse.js"(exports, module2) {
5404
+ "../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/lib/parse.js"(exports, module2) {
5327
5405
  "use strict";
5328
5406
  var path5 = require("path");
5329
5407
  var resolveCommand = require_resolveCommand();
@@ -5383,9 +5461,9 @@ var require_parse = __commonJS({
5383
5461
  }
5384
5462
  });
5385
5463
 
5386
- // ../../../../node_modules/.pnpm/cross-spawn@7.0.3/node_modules/cross-spawn/lib/enoent.js
5464
+ // ../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/lib/enoent.js
5387
5465
  var require_enoent = __commonJS({
5388
- "../../../../node_modules/.pnpm/cross-spawn@7.0.3/node_modules/cross-spawn/lib/enoent.js"(exports, module2) {
5466
+ "../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/lib/enoent.js"(exports, module2) {
5389
5467
  "use strict";
5390
5468
  var isWin = process.platform === "win32";
5391
5469
  function notFoundError(original, syscall) {
@@ -5404,7 +5482,7 @@ var require_enoent = __commonJS({
5404
5482
  const originalEmit = cp.emit;
5405
5483
  cp.emit = function(name, arg1) {
5406
5484
  if (name === "exit") {
5407
- const err = verifyENOENT(arg1, parsed, "spawn");
5485
+ const err = verifyENOENT(arg1, parsed);
5408
5486
  if (err) {
5409
5487
  return originalEmit.call(cp, "error", err);
5410
5488
  }
@@ -5433,9 +5511,9 @@ var require_enoent = __commonJS({
5433
5511
  }
5434
5512
  });
5435
5513
 
5436
- // ../../../../node_modules/.pnpm/cross-spawn@7.0.3/node_modules/cross-spawn/index.js
5514
+ // ../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/index.js
5437
5515
  var require_cross_spawn = __commonJS({
5438
- "../../../../node_modules/.pnpm/cross-spawn@7.0.3/node_modules/cross-spawn/index.js"(exports, module2) {
5516
+ "../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/index.js"(exports, module2) {
5439
5517
  "use strict";
5440
5518
  var cp = require("child_process");
5441
5519
  var parse3 = require_parse();
@@ -75079,6 +75157,542 @@ var require_lodash7 = __commonJS({
75079
75157
  }
75080
75158
  });
75081
75159
 
75160
+ // ../../../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/common.js
75161
+ var require_common3 = __commonJS({
75162
+ "../../../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/common.js"(exports, module2) {
75163
+ "use strict";
75164
+ function setup(env) {
75165
+ createDebug.debug = createDebug;
75166
+ createDebug.default = createDebug;
75167
+ createDebug.coerce = coerce;
75168
+ createDebug.disable = disable;
75169
+ createDebug.enable = enable;
75170
+ createDebug.enabled = enabled;
75171
+ createDebug.humanize = require_ms();
75172
+ createDebug.destroy = destroy;
75173
+ Object.keys(env).forEach((key) => {
75174
+ createDebug[key] = env[key];
75175
+ });
75176
+ createDebug.names = [];
75177
+ createDebug.skips = [];
75178
+ createDebug.formatters = {};
75179
+ function selectColor(namespace) {
75180
+ let hash = 0;
75181
+ for (let i = 0; i < namespace.length; i++) {
75182
+ hash = (hash << 5) - hash + namespace.charCodeAt(i);
75183
+ hash |= 0;
75184
+ }
75185
+ return createDebug.colors[Math.abs(hash) % createDebug.colors.length];
75186
+ }
75187
+ createDebug.selectColor = selectColor;
75188
+ function createDebug(namespace) {
75189
+ let prevTime;
75190
+ let enableOverride = null;
75191
+ let namespacesCache;
75192
+ let enabledCache;
75193
+ function debug(...args) {
75194
+ if (!debug.enabled) {
75195
+ return;
75196
+ }
75197
+ const self3 = debug;
75198
+ const curr = Number(/* @__PURE__ */ new Date());
75199
+ const ms = curr - (prevTime || curr);
75200
+ self3.diff = ms;
75201
+ self3.prev = prevTime;
75202
+ self3.curr = curr;
75203
+ prevTime = curr;
75204
+ args[0] = createDebug.coerce(args[0]);
75205
+ if (typeof args[0] !== "string") {
75206
+ args.unshift("%O");
75207
+ }
75208
+ let index = 0;
75209
+ args[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => {
75210
+ if (match === "%%") {
75211
+ return "%";
75212
+ }
75213
+ index++;
75214
+ const formatter = createDebug.formatters[format];
75215
+ if (typeof formatter === "function") {
75216
+ const val = args[index];
75217
+ match = formatter.call(self3, val);
75218
+ args.splice(index, 1);
75219
+ index--;
75220
+ }
75221
+ return match;
75222
+ });
75223
+ createDebug.formatArgs.call(self3, args);
75224
+ const logFn = self3.log || createDebug.log;
75225
+ logFn.apply(self3, args);
75226
+ }
75227
+ debug.namespace = namespace;
75228
+ debug.useColors = createDebug.useColors();
75229
+ debug.color = createDebug.selectColor(namespace);
75230
+ debug.extend = extend2;
75231
+ debug.destroy = createDebug.destroy;
75232
+ Object.defineProperty(debug, "enabled", {
75233
+ enumerable: true,
75234
+ configurable: false,
75235
+ get: () => {
75236
+ if (enableOverride !== null) {
75237
+ return enableOverride;
75238
+ }
75239
+ if (namespacesCache !== createDebug.namespaces) {
75240
+ namespacesCache = createDebug.namespaces;
75241
+ enabledCache = createDebug.enabled(namespace);
75242
+ }
75243
+ return enabledCache;
75244
+ },
75245
+ set: (v) => {
75246
+ enableOverride = v;
75247
+ }
75248
+ });
75249
+ if (typeof createDebug.init === "function") {
75250
+ createDebug.init(debug);
75251
+ }
75252
+ return debug;
75253
+ }
75254
+ function extend2(namespace, delimiter) {
75255
+ const newDebug = createDebug(this.namespace + (typeof delimiter === "undefined" ? ":" : delimiter) + namespace);
75256
+ newDebug.log = this.log;
75257
+ return newDebug;
75258
+ }
75259
+ function enable(namespaces) {
75260
+ createDebug.save(namespaces);
75261
+ createDebug.namespaces = namespaces;
75262
+ createDebug.names = [];
75263
+ createDebug.skips = [];
75264
+ const split = (typeof namespaces === "string" ? namespaces : "").trim().replace(" ", ",").split(",").filter(Boolean);
75265
+ for (const ns of split) {
75266
+ if (ns[0] === "-") {
75267
+ createDebug.skips.push(ns.slice(1));
75268
+ } else {
75269
+ createDebug.names.push(ns);
75270
+ }
75271
+ }
75272
+ }
75273
+ function matchesTemplate(search, template) {
75274
+ let searchIndex = 0;
75275
+ let templateIndex = 0;
75276
+ let starIndex = -1;
75277
+ let matchIndex = 0;
75278
+ while (searchIndex < search.length) {
75279
+ if (templateIndex < template.length && (template[templateIndex] === search[searchIndex] || template[templateIndex] === "*")) {
75280
+ if (template[templateIndex] === "*") {
75281
+ starIndex = templateIndex;
75282
+ matchIndex = searchIndex;
75283
+ templateIndex++;
75284
+ } else {
75285
+ searchIndex++;
75286
+ templateIndex++;
75287
+ }
75288
+ } else if (starIndex !== -1) {
75289
+ templateIndex = starIndex + 1;
75290
+ matchIndex++;
75291
+ searchIndex = matchIndex;
75292
+ } else {
75293
+ return false;
75294
+ }
75295
+ }
75296
+ while (templateIndex < template.length && template[templateIndex] === "*") {
75297
+ templateIndex++;
75298
+ }
75299
+ return templateIndex === template.length;
75300
+ }
75301
+ function disable() {
75302
+ const namespaces = [
75303
+ ...createDebug.names,
75304
+ ...createDebug.skips.map((namespace) => "-" + namespace)
75305
+ ].join(",");
75306
+ createDebug.enable("");
75307
+ return namespaces;
75308
+ }
75309
+ function enabled(name) {
75310
+ for (const skip of createDebug.skips) {
75311
+ if (matchesTemplate(name, skip)) {
75312
+ return false;
75313
+ }
75314
+ }
75315
+ for (const ns of createDebug.names) {
75316
+ if (matchesTemplate(name, ns)) {
75317
+ return true;
75318
+ }
75319
+ }
75320
+ return false;
75321
+ }
75322
+ function coerce(val) {
75323
+ if (val instanceof Error) {
75324
+ return val.stack || val.message;
75325
+ }
75326
+ return val;
75327
+ }
75328
+ function destroy() {
75329
+ console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
75330
+ }
75331
+ createDebug.enable(createDebug.load());
75332
+ return createDebug;
75333
+ }
75334
+ module2.exports = setup;
75335
+ }
75336
+ });
75337
+
75338
+ // ../../../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/browser.js
75339
+ var require_browser2 = __commonJS({
75340
+ "../../../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/browser.js"(exports, module2) {
75341
+ "use strict";
75342
+ exports.formatArgs = formatArgs;
75343
+ exports.save = save;
75344
+ exports.load = load;
75345
+ exports.useColors = useColors;
75346
+ exports.storage = localstorage();
75347
+ exports.destroy = (() => {
75348
+ let warned = false;
75349
+ return () => {
75350
+ if (!warned) {
75351
+ warned = true;
75352
+ console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
75353
+ }
75354
+ };
75355
+ })();
75356
+ exports.colors = [
75357
+ "#0000CC",
75358
+ "#0000FF",
75359
+ "#0033CC",
75360
+ "#0033FF",
75361
+ "#0066CC",
75362
+ "#0066FF",
75363
+ "#0099CC",
75364
+ "#0099FF",
75365
+ "#00CC00",
75366
+ "#00CC33",
75367
+ "#00CC66",
75368
+ "#00CC99",
75369
+ "#00CCCC",
75370
+ "#00CCFF",
75371
+ "#3300CC",
75372
+ "#3300FF",
75373
+ "#3333CC",
75374
+ "#3333FF",
75375
+ "#3366CC",
75376
+ "#3366FF",
75377
+ "#3399CC",
75378
+ "#3399FF",
75379
+ "#33CC00",
75380
+ "#33CC33",
75381
+ "#33CC66",
75382
+ "#33CC99",
75383
+ "#33CCCC",
75384
+ "#33CCFF",
75385
+ "#6600CC",
75386
+ "#6600FF",
75387
+ "#6633CC",
75388
+ "#6633FF",
75389
+ "#66CC00",
75390
+ "#66CC33",
75391
+ "#9900CC",
75392
+ "#9900FF",
75393
+ "#9933CC",
75394
+ "#9933FF",
75395
+ "#99CC00",
75396
+ "#99CC33",
75397
+ "#CC0000",
75398
+ "#CC0033",
75399
+ "#CC0066",
75400
+ "#CC0099",
75401
+ "#CC00CC",
75402
+ "#CC00FF",
75403
+ "#CC3300",
75404
+ "#CC3333",
75405
+ "#CC3366",
75406
+ "#CC3399",
75407
+ "#CC33CC",
75408
+ "#CC33FF",
75409
+ "#CC6600",
75410
+ "#CC6633",
75411
+ "#CC9900",
75412
+ "#CC9933",
75413
+ "#CCCC00",
75414
+ "#CCCC33",
75415
+ "#FF0000",
75416
+ "#FF0033",
75417
+ "#FF0066",
75418
+ "#FF0099",
75419
+ "#FF00CC",
75420
+ "#FF00FF",
75421
+ "#FF3300",
75422
+ "#FF3333",
75423
+ "#FF3366",
75424
+ "#FF3399",
75425
+ "#FF33CC",
75426
+ "#FF33FF",
75427
+ "#FF6600",
75428
+ "#FF6633",
75429
+ "#FF9900",
75430
+ "#FF9933",
75431
+ "#FFCC00",
75432
+ "#FFCC33"
75433
+ ];
75434
+ function useColors() {
75435
+ if (typeof window !== "undefined" && window.process && (window.process.type === "renderer" || window.process.__nwjs)) {
75436
+ return true;
75437
+ }
75438
+ if (typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)) {
75439
+ return false;
75440
+ }
75441
+ let m;
75442
+ return typeof document !== "undefined" && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || // Is firebug? http://stackoverflow.com/a/398120/376773
75443
+ typeof window !== "undefined" && window.console && (window.console.firebug || window.console.exception && window.console.table) || // Is firefox >= v31?
75444
+ // https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages
75445
+ typeof navigator !== "undefined" && navigator.userAgent && (m = navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)) && parseInt(m[1], 10) >= 31 || // Double check webkit in userAgent just in case we are in a worker
75446
+ typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/);
75447
+ }
75448
+ function formatArgs(args) {
75449
+ args[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + args[0] + (this.useColors ? "%c " : " ") + "+" + module2.exports.humanize(this.diff);
75450
+ if (!this.useColors) {
75451
+ return;
75452
+ }
75453
+ const c = "color: " + this.color;
75454
+ args.splice(1, 0, c, "color: inherit");
75455
+ let index = 0;
75456
+ let lastC = 0;
75457
+ args[0].replace(/%[a-zA-Z%]/g, (match) => {
75458
+ if (match === "%%") {
75459
+ return;
75460
+ }
75461
+ index++;
75462
+ if (match === "%c") {
75463
+ lastC = index;
75464
+ }
75465
+ });
75466
+ args.splice(lastC, 0, c);
75467
+ }
75468
+ exports.log = console.debug || console.log || (() => {
75469
+ });
75470
+ function save(namespaces) {
75471
+ try {
75472
+ if (namespaces) {
75473
+ exports.storage.setItem("debug", namespaces);
75474
+ } else {
75475
+ exports.storage.removeItem("debug");
75476
+ }
75477
+ } catch (error) {
75478
+ }
75479
+ }
75480
+ function load() {
75481
+ let r;
75482
+ try {
75483
+ r = exports.storage.getItem("debug");
75484
+ } catch (error) {
75485
+ }
75486
+ if (!r && typeof process !== "undefined" && "env" in process) {
75487
+ r = process.env.DEBUG;
75488
+ }
75489
+ return r;
75490
+ }
75491
+ function localstorage() {
75492
+ try {
75493
+ return localStorage;
75494
+ } catch (error) {
75495
+ }
75496
+ }
75497
+ module2.exports = require_common3()(exports);
75498
+ var { formatters } = module2.exports;
75499
+ formatters.j = function(v) {
75500
+ try {
75501
+ return JSON.stringify(v);
75502
+ } catch (error) {
75503
+ return "[UnexpectedJSONParseError]: " + error.message;
75504
+ }
75505
+ };
75506
+ }
75507
+ });
75508
+
75509
+ // ../../../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/node.js
75510
+ var require_node3 = __commonJS({
75511
+ "../../../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/node.js"(exports, module2) {
75512
+ "use strict";
75513
+ var tty = require("tty");
75514
+ var util3 = require("util");
75515
+ exports.init = init;
75516
+ exports.log = log;
75517
+ exports.formatArgs = formatArgs;
75518
+ exports.save = save;
75519
+ exports.load = load;
75520
+ exports.useColors = useColors;
75521
+ exports.destroy = util3.deprecate(
75522
+ () => {
75523
+ },
75524
+ "Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."
75525
+ );
75526
+ exports.colors = [6, 2, 3, 4, 5, 1];
75527
+ try {
75528
+ const supportsColor = require_supports_color();
75529
+ if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
75530
+ exports.colors = [
75531
+ 20,
75532
+ 21,
75533
+ 26,
75534
+ 27,
75535
+ 32,
75536
+ 33,
75537
+ 38,
75538
+ 39,
75539
+ 40,
75540
+ 41,
75541
+ 42,
75542
+ 43,
75543
+ 44,
75544
+ 45,
75545
+ 56,
75546
+ 57,
75547
+ 62,
75548
+ 63,
75549
+ 68,
75550
+ 69,
75551
+ 74,
75552
+ 75,
75553
+ 76,
75554
+ 77,
75555
+ 78,
75556
+ 79,
75557
+ 80,
75558
+ 81,
75559
+ 92,
75560
+ 93,
75561
+ 98,
75562
+ 99,
75563
+ 112,
75564
+ 113,
75565
+ 128,
75566
+ 129,
75567
+ 134,
75568
+ 135,
75569
+ 148,
75570
+ 149,
75571
+ 160,
75572
+ 161,
75573
+ 162,
75574
+ 163,
75575
+ 164,
75576
+ 165,
75577
+ 166,
75578
+ 167,
75579
+ 168,
75580
+ 169,
75581
+ 170,
75582
+ 171,
75583
+ 172,
75584
+ 173,
75585
+ 178,
75586
+ 179,
75587
+ 184,
75588
+ 185,
75589
+ 196,
75590
+ 197,
75591
+ 198,
75592
+ 199,
75593
+ 200,
75594
+ 201,
75595
+ 202,
75596
+ 203,
75597
+ 204,
75598
+ 205,
75599
+ 206,
75600
+ 207,
75601
+ 208,
75602
+ 209,
75603
+ 214,
75604
+ 215,
75605
+ 220,
75606
+ 221
75607
+ ];
75608
+ }
75609
+ } catch (error) {
75610
+ }
75611
+ exports.inspectOpts = Object.keys(process.env).filter((key) => {
75612
+ return /^debug_/i.test(key);
75613
+ }).reduce((obj, key) => {
75614
+ const prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_, k) => {
75615
+ return k.toUpperCase();
75616
+ });
75617
+ let val = process.env[key];
75618
+ if (/^(yes|on|true|enabled)$/i.test(val)) {
75619
+ val = true;
75620
+ } else if (/^(no|off|false|disabled)$/i.test(val)) {
75621
+ val = false;
75622
+ } else if (val === "null") {
75623
+ val = null;
75624
+ } else {
75625
+ val = Number(val);
75626
+ }
75627
+ obj[prop] = val;
75628
+ return obj;
75629
+ }, {});
75630
+ function useColors() {
75631
+ return "colors" in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty.isatty(process.stderr.fd);
75632
+ }
75633
+ function formatArgs(args) {
75634
+ const { namespace: name, useColors: useColors2 } = this;
75635
+ if (useColors2) {
75636
+ const c = this.color;
75637
+ const colorCode = "\x1B[3" + (c < 8 ? c : "8;5;" + c);
75638
+ const prefix = ` ${colorCode};1m${name} \x1B[0m`;
75639
+ args[0] = prefix + args[0].split("\n").join("\n" + prefix);
75640
+ args.push(colorCode + "m+" + module2.exports.humanize(this.diff) + "\x1B[0m");
75641
+ } else {
75642
+ args[0] = getDate() + name + " " + args[0];
75643
+ }
75644
+ }
75645
+ function getDate() {
75646
+ if (exports.inspectOpts.hideDate) {
75647
+ return "";
75648
+ }
75649
+ return (/* @__PURE__ */ new Date()).toISOString() + " ";
75650
+ }
75651
+ function log(...args) {
75652
+ return process.stderr.write(util3.formatWithOptions(exports.inspectOpts, ...args) + "\n");
75653
+ }
75654
+ function save(namespaces) {
75655
+ if (namespaces) {
75656
+ process.env.DEBUG = namespaces;
75657
+ } else {
75658
+ delete process.env.DEBUG;
75659
+ }
75660
+ }
75661
+ function load() {
75662
+ return process.env.DEBUG;
75663
+ }
75664
+ function init(debug) {
75665
+ debug.inspectOpts = {};
75666
+ const keys = Object.keys(exports.inspectOpts);
75667
+ for (let i = 0; i < keys.length; i++) {
75668
+ debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];
75669
+ }
75670
+ }
75671
+ module2.exports = require_common3()(exports);
75672
+ var { formatters } = module2.exports;
75673
+ formatters.o = function(v) {
75674
+ this.inspectOpts.colors = this.useColors;
75675
+ return util3.inspect(v, this.inspectOpts).split("\n").map((str) => str.trim()).join(" ");
75676
+ };
75677
+ formatters.O = function(v) {
75678
+ this.inspectOpts.colors = this.useColors;
75679
+ return util3.inspect(v, this.inspectOpts);
75680
+ };
75681
+ }
75682
+ });
75683
+
75684
+ // ../../../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/index.js
75685
+ var require_src4 = __commonJS({
75686
+ "../../../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/index.js"(exports, module2) {
75687
+ "use strict";
75688
+ if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
75689
+ module2.exports = require_browser2();
75690
+ } else {
75691
+ module2.exports = require_node3();
75692
+ }
75693
+ }
75694
+ });
75695
+
75082
75696
  // ../../../../node_modules/.pnpm/declaration-update@0.0.2/node_modules/declaration-update/dist/utils/get-type.js
75083
75697
  var require_get_type = __commonJS({
75084
75698
  "../../../../node_modules/.pnpm/declaration-update@0.0.2/node_modules/declaration-update/dist/utils/get-type.js"(exports) {
@@ -75231,7 +75845,7 @@ var require_filter3 = __commonJS({
75231
75845
  return r;
75232
75846
  };
75233
75847
  Object.defineProperty(exports, "__esModule", { value: true });
75234
- var debug_1 = require_src();
75848
+ var debug_1 = require_src4();
75235
75849
  var mongo_eql_1 = require_mongo_eql();
75236
75850
  var ops = require_ops();
75237
75851
  var get_type_1 = require_get_type();
@@ -75391,7 +76005,7 @@ var require_mods = __commonJS({
75391
76005
  return r;
75392
76006
  };
75393
76007
  Object.defineProperty(exports, "__esModule", { value: true });
75394
- var debug_1 = require_src();
76008
+ var debug_1 = require_src4();
75395
76009
  var mongoDot = require_mongo_dot();
75396
76010
  var mongo_eql_1 = require_mongo_eql();
75397
76011
  var get_type_1 = require_get_type();
@@ -75852,7 +76466,7 @@ var require_query = __commonJS({
75852
76466
  "../../../../node_modules/.pnpm/declaration-update@0.0.2/node_modules/declaration-update/dist/query.js"(exports) {
75853
76467
  "use strict";
75854
76468
  Object.defineProperty(exports, "__esModule", { value: true });
75855
- var debug_1 = require_src();
76469
+ var debug_1 = require_src4();
75856
76470
  var filter_1 = require_filter3();
75857
76471
  var mods = require_mods();
75858
76472
  var mongoDot = require_mongo_dot();
@@ -75951,13 +76565,13 @@ __export(src_exports, {
75951
76565
  module.exports = __toCommonJS(src_exports);
75952
76566
  var import_path5 = __toESM(require("path"));
75953
76567
 
75954
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/fs-extra.js
76568
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/fs-extra.js
75955
76569
  var import_fs_extra = __toESM(require_lib());
75956
76570
 
75957
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/materials/FsResource.js
76571
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/materials/FsResource.js
75958
76572
  var FS_RESOURCE = "_codesmith_core_fs_resource";
75959
76573
 
75960
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/fsExists.js
76574
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/fsExists.js
75961
76575
  function fsExists(path5) {
75962
76576
  return __async(this, null, function* () {
75963
76577
  try {
@@ -75969,10 +76583,10 @@ function fsExists(path5) {
75969
76583
  });
75970
76584
  }
75971
76585
 
75972
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/execa.js
76586
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/execa.js
75973
76587
  var import_execa = __toESM(require_execa());
75974
76588
 
75975
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/timeoutPromise.js
76589
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/timeoutPromise.js
75976
76590
  function timeoutPromise(promise, ms, reason = "Operation") {
75977
76591
  return __async(this, null, function* () {
75978
76592
  let timeoutId = null;
@@ -75996,21 +76610,21 @@ function timeoutPromise(promise, ms, reason = "Operation") {
75996
76610
  });
75997
76611
  }
75998
76612
 
75999
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/constants.js
76613
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/constants.js
76000
76614
  var NPM_API_TIMEOUT = 3e4;
76001
76615
  var CATCHE_VALIDITY_PREIOD = 7 * 24 * 3600 * 1e3;
76002
76616
 
76003
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/semver.js
76617
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/semver.js
76004
76618
  var import_semver = __toESM(require_semver2());
76005
76619
 
76006
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/bind.js
76620
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/bind.js
76007
76621
  function bind(fn, thisArg) {
76008
76622
  return function wrap() {
76009
76623
  return fn.apply(thisArg, arguments);
76010
76624
  };
76011
76625
  }
76012
76626
 
76013
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/utils.js
76627
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/utils.js
76014
76628
  var { toString } = Object.prototype;
76015
76629
  var { getPrototypeOf } = Object;
76016
76630
  var kindOf = ((cache) => (thing) => {
@@ -76378,7 +76992,7 @@ var utils_default = {
76378
76992
  asap
76379
76993
  };
76380
76994
 
76381
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/AxiosError.js
76995
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/core/AxiosError.js
76382
76996
  function AxiosError(message, code, config, request, response) {
76383
76997
  Error.call(this);
76384
76998
  if (Error.captureStackTrace) {
@@ -76453,11 +77067,11 @@ AxiosError.from = (error, code, config, request, response, customProps) => {
76453
77067
  };
76454
77068
  var AxiosError_default = AxiosError;
76455
77069
 
76456
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/node/classes/FormData.js
77070
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/platform/node/classes/FormData.js
76457
77071
  var import_form_data = __toESM(require_form_data());
76458
77072
  var FormData_default = import_form_data.default;
76459
77073
 
76460
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/toFormData.js
77074
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/toFormData.js
76461
77075
  function isVisitable(thing) {
76462
77076
  return utils_default.isPlainObject(thing) || utils_default.isArray(thing);
76463
77077
  }
@@ -76572,7 +77186,7 @@ function toFormData(obj, formData, options) {
76572
77186
  }
76573
77187
  var toFormData_default = toFormData;
76574
77188
 
76575
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js
77189
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js
76576
77190
  function encode(str) {
76577
77191
  const charMap = {
76578
77192
  "!": "%21",
@@ -76605,7 +77219,7 @@ prototype2.toString = function toString2(encoder) {
76605
77219
  };
76606
77220
  var AxiosURLSearchParams_default = AxiosURLSearchParams;
76607
77221
 
76608
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/buildURL.js
77222
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/buildURL.js
76609
77223
  function encode2(val) {
76610
77224
  return encodeURIComponent(val).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
76611
77225
  }
@@ -76636,7 +77250,7 @@ function buildURL(url2, params, options) {
76636
77250
  return url2;
76637
77251
  }
76638
77252
 
76639
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/InterceptorManager.js
77253
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/core/InterceptorManager.js
76640
77254
  var InterceptorManager = class {
76641
77255
  constructor() {
76642
77256
  this.handlers = [];
@@ -76700,21 +77314,21 @@ var InterceptorManager = class {
76700
77314
  };
76701
77315
  var InterceptorManager_default = InterceptorManager;
76702
77316
 
76703
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/defaults/transitional.js
77317
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/defaults/transitional.js
76704
77318
  var transitional_default = {
76705
77319
  silentJSONParsing: true,
76706
77320
  forcedJSONParsing: true,
76707
77321
  clarifyTimeoutError: false
76708
77322
  };
76709
77323
 
76710
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
77324
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
76711
77325
  var import_crypto = __toESM(require("crypto"));
76712
77326
 
76713
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/node/classes/URLSearchParams.js
77327
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/platform/node/classes/URLSearchParams.js
76714
77328
  var import_url = __toESM(require("url"));
76715
77329
  var URLSearchParams_default = import_url.default.URLSearchParams;
76716
77330
 
76717
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
77331
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
76718
77332
  var ALPHA = "abcdefghijklmnopqrstuvwxyz";
76719
77333
  var DIGIT = "0123456789";
76720
77334
  var ALPHABET = {
@@ -76744,7 +77358,7 @@ var node_default = {
76744
77358
  protocols: ["http", "https", "file", "data"]
76745
77359
  };
76746
77360
 
76747
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/common/utils.js
77361
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/platform/common/utils.js
76748
77362
  var utils_exports = {};
76749
77363
  __export(utils_exports, {
76750
77364
  hasBrowserEnv: () => hasBrowserEnv,
@@ -76762,10 +77376,10 @@ var hasStandardBrowserWebWorkerEnv = (() => {
76762
77376
  })();
76763
77377
  var origin = hasBrowserEnv && window.location.href || "http://localhost";
76764
77378
 
76765
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/index.js
77379
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/platform/index.js
76766
77380
  var platform_default = __spreadValues(__spreadValues({}, utils_exports), node_default);
76767
77381
 
76768
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/toURLEncodedForm.js
77382
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/toURLEncodedForm.js
76769
77383
  function toURLEncodedForm(data, options) {
76770
77384
  return toFormData_default(data, new platform_default.classes.URLSearchParams(), Object.assign({
76771
77385
  visitor: function(value, key, path5, helpers) {
@@ -76778,7 +77392,7 @@ function toURLEncodedForm(data, options) {
76778
77392
  }, options));
76779
77393
  }
76780
77394
 
76781
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/formDataToJSON.js
77395
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/formDataToJSON.js
76782
77396
  function parsePropPath(name) {
76783
77397
  return utils_default.matchAll(/\w+|\[(\w*)]/g, name).map((match) => {
76784
77398
  return match[0] === "[]" ? "" : match[1] || match[0];
@@ -76832,7 +77446,7 @@ function formDataToJSON(formData) {
76832
77446
  }
76833
77447
  var formDataToJSON_default = formDataToJSON;
76834
77448
 
76835
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/defaults/index.js
77449
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/defaults/index.js
76836
77450
  function stringifySafely(rawValue, parser, encoder) {
76837
77451
  if (utils_default.isString(rawValue)) {
76838
77452
  try {
@@ -76941,7 +77555,7 @@ utils_default.forEach(["delete", "get", "head", "post", "put", "patch"], (method
76941
77555
  });
76942
77556
  var defaults_default = defaults;
76943
77557
 
76944
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/parseHeaders.js
77558
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/parseHeaders.js
76945
77559
  var ignoreDuplicateOf = utils_default.toObjectSet([
76946
77560
  "age",
76947
77561
  "authorization",
@@ -76986,7 +77600,7 @@ var parseHeaders_default = (rawHeaders) => {
76986
77600
  return parsed;
76987
77601
  };
76988
77602
 
76989
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/AxiosHeaders.js
77603
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/core/AxiosHeaders.js
76990
77604
  var $internals = Symbol("internals");
76991
77605
  function normalizeHeader(header) {
76992
77606
  return header && String(header).trim().toLowerCase();
@@ -77208,7 +77822,7 @@ utils_default.reduceDescriptors(AxiosHeaders.prototype, ({ value }, key) => {
77208
77822
  utils_default.freezeMethods(AxiosHeaders);
77209
77823
  var AxiosHeaders_default = AxiosHeaders;
77210
77824
 
77211
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/transformData.js
77825
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/core/transformData.js
77212
77826
  function transformData(fns, response) {
77213
77827
  const config = this || defaults_default;
77214
77828
  const context = response || config;
@@ -77221,12 +77835,12 @@ function transformData(fns, response) {
77221
77835
  return data;
77222
77836
  }
77223
77837
 
77224
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/cancel/isCancel.js
77838
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/cancel/isCancel.js
77225
77839
  function isCancel(value) {
77226
77840
  return !!(value && value.__CANCEL__);
77227
77841
  }
77228
77842
 
77229
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/cancel/CanceledError.js
77843
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/cancel/CanceledError.js
77230
77844
  function CanceledError(message, config, request) {
77231
77845
  AxiosError_default.call(this, message == null ? "canceled" : message, AxiosError_default.ERR_CANCELED, config, request);
77232
77846
  this.name = "CanceledError";
@@ -77236,7 +77850,7 @@ utils_default.inherits(CanceledError, AxiosError_default, {
77236
77850
  });
77237
77851
  var CanceledError_default = CanceledError;
77238
77852
 
77239
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/settle.js
77853
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/core/settle.js
77240
77854
  function settle(resolve, reject, response) {
77241
77855
  const validateStatus2 = response.config.validateStatus;
77242
77856
  if (!response.status || !validateStatus2 || validateStatus2(response.status)) {
@@ -77252,26 +77866,26 @@ function settle(resolve, reject, response) {
77252
77866
  }
77253
77867
  }
77254
77868
 
77255
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/isAbsoluteURL.js
77869
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/isAbsoluteURL.js
77256
77870
  function isAbsoluteURL(url2) {
77257
77871
  return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url2);
77258
77872
  }
77259
77873
 
77260
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/combineURLs.js
77874
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/combineURLs.js
77261
77875
  function combineURLs(baseURL, relativeURL) {
77262
77876
  return relativeURL ? baseURL.replace(/\/?\/$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
77263
77877
  }
77264
77878
 
77265
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/buildFullPath.js
77879
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/core/buildFullPath.js
77266
77880
  function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
77267
77881
  let isRelativeUrl = !isAbsoluteURL(requestedURL);
77268
- if (baseURL && isRelativeUrl || allowAbsoluteUrls == false) {
77882
+ if (baseURL && (isRelativeUrl || allowAbsoluteUrls == false)) {
77269
77883
  return combineURLs(baseURL, requestedURL);
77270
77884
  }
77271
77885
  return requestedURL;
77272
77886
  }
77273
77887
 
77274
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77888
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77275
77889
  var import_proxy_from_env = __toESM(require_proxy_from_env());
77276
77890
  var import_http = __toESM(require("http"));
77277
77891
  var import_https = __toESM(require("https"));
@@ -77279,16 +77893,16 @@ var import_util2 = __toESM(require("util"));
77279
77893
  var import_follow_redirects = __toESM(require_follow_redirects());
77280
77894
  var import_zlib = __toESM(require("zlib"));
77281
77895
 
77282
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/env/data.js
77283
- var VERSION = "1.8.2";
77896
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/env/data.js
77897
+ var VERSION = "1.8.4";
77284
77898
 
77285
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/parseProtocol.js
77899
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/parseProtocol.js
77286
77900
  function parseProtocol(url2) {
77287
77901
  const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url2);
77288
77902
  return match && match[1] || "";
77289
77903
  }
77290
77904
 
77291
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/fromDataURI.js
77905
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/fromDataURI.js
77292
77906
  var DATA_URL_PATTERN = /^(?:([^;]+);)?(?:[^;]+;)?(base64|),([\s\S]*)$/;
77293
77907
  function fromDataURI(uri, asBlob, options) {
77294
77908
  const _Blob = options && options.Blob || platform_default.classes.Blob;
@@ -77317,10 +77931,10 @@ function fromDataURI(uri, asBlob, options) {
77317
77931
  throw new AxiosError_default("Unsupported protocol " + protocol, AxiosError_default.ERR_NOT_SUPPORT);
77318
77932
  }
77319
77933
 
77320
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77934
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77321
77935
  var import_stream4 = __toESM(require("stream"));
77322
77936
 
77323
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/AxiosTransformStream.js
77937
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/AxiosTransformStream.js
77324
77938
  var import_stream = __toESM(require("stream"));
77325
77939
  var kInternals = Symbol("internals");
77326
77940
  var AxiosTransformStream = class extends import_stream.default.Transform {
@@ -77435,14 +78049,14 @@ var AxiosTransformStream = class extends import_stream.default.Transform {
77435
78049
  };
77436
78050
  var AxiosTransformStream_default = AxiosTransformStream;
77437
78051
 
77438
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/http.js
78052
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77439
78053
  var import_events = require("events");
77440
78054
 
77441
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
78055
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
77442
78056
  var import_util = __toESM(require("util"));
77443
78057
  var import_stream2 = require("stream");
77444
78058
 
77445
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/readBlob.js
78059
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/readBlob.js
77446
78060
  var { asyncIterator } = Symbol;
77447
78061
  var readBlob = function(blob) {
77448
78062
  return __asyncGenerator(this, null, function* () {
@@ -77459,7 +78073,7 @@ var readBlob = function(blob) {
77459
78073
  };
77460
78074
  var readBlob_default = readBlob;
77461
78075
 
77462
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
78076
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
77463
78077
  var BOUNDARY_ALPHABET = platform_default.ALPHABET.ALPHA_DIGIT + "-_";
77464
78078
  var textEncoder = typeof TextEncoder === "function" ? new TextEncoder() : new import_util.default.TextEncoder();
77465
78079
  var CRLF = "\r\n";
@@ -77542,7 +78156,7 @@ var formDataToStream = (form, headersHandler, options) => {
77542
78156
  };
77543
78157
  var formDataToStream_default = formDataToStream;
77544
78158
 
77545
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js
78159
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js
77546
78160
  var import_stream3 = __toESM(require("stream"));
77547
78161
  var ZlibHeaderTransformStream = class extends import_stream3.default.Transform {
77548
78162
  __transform(chunk, encoding, callback) {
@@ -77564,7 +78178,7 @@ var ZlibHeaderTransformStream = class extends import_stream3.default.Transform {
77564
78178
  };
77565
78179
  var ZlibHeaderTransformStream_default = ZlibHeaderTransformStream;
77566
78180
 
77567
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/callbackify.js
78181
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/callbackify.js
77568
78182
  var callbackify = (fn, reducer) => {
77569
78183
  return utils_default.isAsyncFn(fn) ? function(...args) {
77570
78184
  const cb = args.pop();
@@ -77579,7 +78193,7 @@ var callbackify = (fn, reducer) => {
77579
78193
  };
77580
78194
  var callbackify_default = callbackify;
77581
78195
 
77582
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/speedometer.js
78196
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/speedometer.js
77583
78197
  function speedometer(samplesCount, min) {
77584
78198
  samplesCount = samplesCount || 10;
77585
78199
  const bytes = new Array(samplesCount);
@@ -77615,7 +78229,7 @@ function speedometer(samplesCount, min) {
77615
78229
  }
77616
78230
  var speedometer_default = speedometer;
77617
78231
 
77618
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/throttle.js
78232
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/throttle.js
77619
78233
  function throttle(fn, freq) {
77620
78234
  let timestamp = 0;
77621
78235
  let threshold = 1e3 / freq;
@@ -77650,7 +78264,7 @@ function throttle(fn, freq) {
77650
78264
  }
77651
78265
  var throttle_default = throttle;
77652
78266
 
77653
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/progressEventReducer.js
78267
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/progressEventReducer.js
77654
78268
  var progressEventReducer = (listener, isDownloadStream, freq = 3) => {
77655
78269
  let bytesNotified = 0;
77656
78270
  const _speedometer = speedometer_default(50, 250);
@@ -77685,7 +78299,7 @@ var progressEventDecorator = (total, throttled) => {
77685
78299
  };
77686
78300
  var asyncDecorator = (fn) => (...args) => utils_default.asap(() => fn(...args));
77687
78301
 
77688
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/http.js
78302
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77689
78303
  var zlibOptions = {
77690
78304
  flush: import_zlib.default.constants.Z_SYNC_FLUSH,
77691
78305
  finishFlush: import_zlib.default.constants.Z_SYNC_FLUSH
@@ -78191,7 +78805,7 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
78191
78805
  });
78192
78806
  };
78193
78807
 
78194
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/isURLSameOrigin.js
78808
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/isURLSameOrigin.js
78195
78809
  var isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? ((origin2, isMSIE) => (url2) => {
78196
78810
  url2 = new URL(url2, platform_default.origin);
78197
78811
  return origin2.protocol === url2.protocol && origin2.host === url2.host && (isMSIE || origin2.port === url2.port);
@@ -78200,7 +78814,7 @@ var isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? ((origin2
78200
78814
  platform_default.navigator && /(msie|trident)/i.test(platform_default.navigator.userAgent)
78201
78815
  ) : () => true;
78202
78816
 
78203
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/cookies.js
78817
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/cookies.js
78204
78818
  var cookies_default = platform_default.hasStandardBrowserEnv ? (
78205
78819
  // Standard browser envs support document.cookie
78206
78820
  {
@@ -78233,7 +78847,7 @@ var cookies_default = platform_default.hasStandardBrowserEnv ? (
78233
78847
  }
78234
78848
  );
78235
78849
 
78236
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/mergeConfig.js
78850
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/core/mergeConfig.js
78237
78851
  var headersToObject = (thing) => thing instanceof AxiosHeaders_default ? __spreadValues({}, thing) : thing;
78238
78852
  function mergeConfig(config1, config2) {
78239
78853
  config2 = config2 || {};
@@ -78313,12 +78927,12 @@ function mergeConfig(config1, config2) {
78313
78927
  return config;
78314
78928
  }
78315
78929
 
78316
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/resolveConfig.js
78930
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/resolveConfig.js
78317
78931
  var resolveConfig_default = (config) => {
78318
78932
  const newConfig = mergeConfig({}, config);
78319
78933
  let { data, withXSRFToken, xsrfHeaderName, xsrfCookieName, headers, auth } = newConfig;
78320
78934
  newConfig.headers = headers = AxiosHeaders_default.from(headers);
78321
- newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url), config.params, config.paramsSerializer);
78935
+ newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url, newConfig.allowAbsoluteUrls), config.params, config.paramsSerializer);
78322
78936
  if (auth) {
78323
78937
  headers.set(
78324
78938
  "Authorization",
@@ -78346,7 +78960,7 @@ var resolveConfig_default = (config) => {
78346
78960
  return newConfig;
78347
78961
  };
78348
78962
 
78349
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/xhr.js
78963
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/adapters/xhr.js
78350
78964
  var isXHRAdapterSupported = typeof XMLHttpRequest !== "undefined";
78351
78965
  var xhr_default = isXHRAdapterSupported && function(config) {
78352
78966
  return new Promise(function dispatchXhrRequest(resolve, reject) {
@@ -78473,7 +79087,7 @@ var xhr_default = isXHRAdapterSupported && function(config) {
78473
79087
  });
78474
79088
  };
78475
79089
 
78476
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/composeSignals.js
79090
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/composeSignals.js
78477
79091
  var composeSignals = (signals, timeout) => {
78478
79092
  const { length } = signals = signals ? signals.filter(Boolean) : [];
78479
79093
  if (timeout || length) {
@@ -78509,7 +79123,7 @@ var composeSignals = (signals, timeout) => {
78509
79123
  };
78510
79124
  var composeSignals_default = composeSignals;
78511
79125
 
78512
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/trackStream.js
79126
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/trackStream.js
78513
79127
  var streamChunk = function* (chunk, chunkSize) {
78514
79128
  let len = chunk.byteLength;
78515
79129
  if (!chunkSize || len < chunkSize) {
@@ -78604,7 +79218,7 @@ var trackStream = (stream4, chunkSize, onProgress, onFinish) => {
78604
79218
  });
78605
79219
  };
78606
79220
 
78607
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/fetch.js
79221
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/adapters/fetch.js
78608
79222
  var isFetchSupported = typeof fetch === "function" && typeof Request === "function" && typeof Response === "function";
78609
79223
  var isReadableStreamSupported = isFetchSupported && typeof ReadableStream === "function";
78610
79224
  var encodeText = isFetchSupported && (typeof TextEncoder === "function" ? ((encoder) => (str) => encoder.encode(str))(new TextEncoder()) : (str) => __async(void 0, null, function* () {
@@ -78769,7 +79383,7 @@ var fetch_default = isFetchSupported && ((config) => __async(void 0, null, funct
78769
79383
  }
78770
79384
  }));
78771
79385
 
78772
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/adapters.js
79386
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/adapters/adapters.js
78773
79387
  var knownAdapters = {
78774
79388
  http: http_default,
78775
79389
  xhr: xhr_default,
@@ -78823,7 +79437,7 @@ var adapters_default = {
78823
79437
  adapters: knownAdapters
78824
79438
  };
78825
79439
 
78826
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/dispatchRequest.js
79440
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/core/dispatchRequest.js
78827
79441
  function throwIfCancellationRequested(config) {
78828
79442
  if (config.cancelToken) {
78829
79443
  config.cancelToken.throwIfRequested();
@@ -78868,7 +79482,7 @@ function dispatchRequest(config) {
78868
79482
  });
78869
79483
  }
78870
79484
 
78871
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/validator.js
79485
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/validator.js
78872
79486
  var validators = {};
78873
79487
  ["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => {
78874
79488
  validators[type] = function validator(thing) {
@@ -78932,7 +79546,7 @@ var validator_default = {
78932
79546
  validators
78933
79547
  };
78934
79548
 
78935
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/Axios.js
79549
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/core/Axios.js
78936
79550
  var validators2 = validator_default.validators;
78937
79551
  var Axios = class {
78938
79552
  constructor(instanceConfig) {
@@ -79107,7 +79721,7 @@ utils_default.forEach(["post", "put", "patch"], function forEachMethodWithData(m
79107
79721
  });
79108
79722
  var Axios_default = Axios;
79109
79723
 
79110
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/cancel/CancelToken.js
79724
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/cancel/CancelToken.js
79111
79725
  var CancelToken = class _CancelToken {
79112
79726
  constructor(executor) {
79113
79727
  if (typeof executor !== "function") {
@@ -79206,19 +79820,19 @@ var CancelToken = class _CancelToken {
79206
79820
  };
79207
79821
  var CancelToken_default = CancelToken;
79208
79822
 
79209
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/spread.js
79823
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/spread.js
79210
79824
  function spread(callback) {
79211
79825
  return function wrap(arr) {
79212
79826
  return callback.apply(null, arr);
79213
79827
  };
79214
79828
  }
79215
79829
 
79216
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/isAxiosError.js
79830
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/isAxiosError.js
79217
79831
  function isAxiosError(payload) {
79218
79832
  return utils_default.isObject(payload) && payload.isAxiosError === true;
79219
79833
  }
79220
79834
 
79221
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/HttpStatusCode.js
79835
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/helpers/HttpStatusCode.js
79222
79836
  var HttpStatusCode = {
79223
79837
  Continue: 100,
79224
79838
  SwitchingProtocols: 101,
@@ -79289,7 +79903,7 @@ Object.entries(HttpStatusCode).forEach(([key, value]) => {
79289
79903
  });
79290
79904
  var HttpStatusCode_default = HttpStatusCode;
79291
79905
 
79292
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/axios.js
79906
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/lib/axios.js
79293
79907
  function createInstance(defaultConfig) {
79294
79908
  const context = new Axios_default(defaultConfig);
79295
79909
  const instance = bind(Axios_default.prototype.request, context);
@@ -79322,7 +79936,7 @@ axios.HttpStatusCode = HttpStatusCode_default;
79322
79936
  axios.default = axios;
79323
79937
  var axios_default = axios;
79324
79938
 
79325
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/index.js
79939
+ // ../../../../node_modules/.pnpm/axios@1.8.4_debug@4.3.7/node_modules/axios/index.js
79326
79940
  var {
79327
79941
  Axios: Axios2,
79328
79942
  AxiosError: AxiosError2,
@@ -79342,7 +79956,7 @@ var {
79342
79956
  mergeConfig: mergeConfig2
79343
79957
  } = axios_default;
79344
79958
 
79345
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmRegistry.js
79959
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmRegistry.js
79346
79960
  function getNpmRegistry() {
79347
79961
  return __async(this, null, function* () {
79348
79962
  const { stdout } = yield (0, import_execa.default)("npm", [
@@ -79354,7 +79968,7 @@ function getNpmRegistry() {
79354
79968
  });
79355
79969
  }
79356
79970
 
79357
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmPackageInfo.js
79971
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmPackageInfo.js
79358
79972
  var NpmPackageInfoCache = /* @__PURE__ */ new Map();
79359
79973
  function getNpmPackageInfoWithCommand(pkgName, pkgVersion, options) {
79360
79974
  return __async(this, null, function* () {
@@ -79405,7 +80019,7 @@ function getNpmPackageInfo(pkgName, pkgVersion, options) {
79405
80019
  });
79406
80020
  }
79407
80021
 
79408
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmVersion.js
80022
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmVersion.js
79409
80023
  function getNpmVersion(packageName, options) {
79410
80024
  return __async(this, null, function* () {
79411
80025
  const { version = "latest" } = options || {};
@@ -79414,7 +80028,7 @@ function getNpmVersion(packageName, options) {
79414
80028
  });
79415
80029
  }
79416
80030
 
79417
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/getPackageInfo.js
80031
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/getPackageInfo.js
79418
80032
  function getPackageInfo(packageName) {
79419
80033
  if (!packageName) {
79420
80034
  throw new Error("package is not exisit");
@@ -79438,16 +80052,16 @@ function getPackageInfo(packageName) {
79438
80052
  };
79439
80053
  }
79440
80054
 
79441
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/ora.js
80055
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/ora.js
79442
80056
  var import_ora = __toESM(require_ora());
79443
80057
 
79444
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-ejs@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-ejs/dist/esm-node/utils/renderString.js
80058
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-ejs@2.6.7_@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith-api-ejs/dist/esm-node/utils/renderString.js
79445
80059
  var import_ejs = __toESM(require_ejs());
79446
80060
  function renderString(template, fullData) {
79447
80061
  return import_ejs.default.render(template, fullData) || "";
79448
80062
  }
79449
80063
 
79450
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-ejs@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-ejs/dist/esm-node/index.js
80064
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-ejs@2.6.7_@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith-api-ejs/dist/esm-node/index.js
79451
80065
  var EjsAPI = class {
79452
80066
  renderTemplate(_0, _1) {
79453
80067
  return __async(this, arguments, function* (templateResource, target, parameters = {}) {
@@ -79482,7 +80096,7 @@ var EjsAPI = class {
79482
80096
  }
79483
80097
  };
79484
80098
 
79485
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-fs@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-fs/dist/esm-node/index.js
80099
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-fs@2.6.7_@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith-api-fs/dist/esm-node/index.js
79486
80100
  var import_path = __toESM(require("path"));
79487
80101
  var FsAPI = class {
79488
80102
  renderFile(resource, target) {
@@ -79511,7 +80125,7 @@ var FsAPI = class {
79511
80125
  }
79512
80126
  };
79513
80127
 
79514
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-git@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-git/dist/esm-node/utils/index.js
80128
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-git@2.6.7_@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith-api-git/dist/esm-node/utils/index.js
79515
80129
  function canUseGit() {
79516
80130
  return __async(this, null, function* () {
79517
80131
  try {
@@ -79595,7 +80209,7 @@ function gitCommit(cwd, commitMessage) {
79595
80209
  });
79596
80210
  }
79597
80211
 
79598
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-git@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-git/dist/esm-node/index.js
80212
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-git@2.6.7_@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith-api-git/dist/esm-node/index.js
79599
80213
  var GitAPI = class {
79600
80214
  isInGitRepo() {
79601
80215
  return __async(this, arguments, function* (cwd = this.generatorCore.outputPath) {
@@ -79651,7 +80265,7 @@ var GitAPI = class {
79651
80265
  }
79652
80266
  };
79653
80267
 
79654
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-handlebars@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-handlebars/dist/esm-node/utils/renderString.js
80268
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-handlebars@2.6.7_@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith-api-handlebars/dist/esm-node/utils/renderString.js
79655
80269
  var import_handlebars = __toESM(require_lib2());
79656
80270
  function renderString2(template, fullData, registers) {
79657
80271
  const helpers = __spreadValues({}, registers === null || registers === void 0 ? void 0 : registers.helpers);
@@ -79661,7 +80275,7 @@ function renderString2(template, fullData, registers) {
79661
80275
  return import_handlebars.default.compile(template)(fullData) || "";
79662
80276
  }
79663
80277
 
79664
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-handlebars@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-handlebars/dist/esm-node/index.js
80278
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-handlebars@2.6.7_@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith-api-handlebars/dist/esm-node/index.js
79665
80279
  var HandlebarsAPI = class {
79666
80280
  registerHelp(helpers) {
79667
80281
  return __async(this, null, function* () {
@@ -79818,7 +80432,7 @@ function __generator(thisArg, body) {
79818
80432
  }
79819
80433
  }
79820
80434
 
79821
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/npm.js
80435
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/npm.js
79822
80436
  var import_execa5 = __toESM(require_execa());
79823
80437
  function canUseNvm() {
79824
80438
  return _canUseNvm.apply(this, arguments);
@@ -80039,7 +80653,7 @@ function _canUsePnpm() {
80039
80653
  return _canUsePnpm.apply(this, arguments);
80040
80654
  }
80041
80655
 
80042
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-npm@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-npm/dist/esm-node/utils/install.js
80656
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-npm@2.6.7_@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith-api-npm/dist/esm-node/utils/install.js
80043
80657
  function execaWithStreamLog(command, args, options) {
80044
80658
  const promise = (0, import_execa.default)(command, args, __spreadProps(__spreadValues({}, options), {
80045
80659
  stdin: "inherit",
@@ -80140,7 +80754,7 @@ function pnpmInstall(_0) {
80140
80754
  });
80141
80755
  }
80142
80756
 
80143
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-npm@2.6.6_@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith-api-npm/dist/esm-node/index.js
80757
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-npm@2.6.7_@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith-api-npm/dist/esm-node/index.js
80144
80758
  var NpmAPI = class {
80145
80759
  npmInstall({ cwd, registryUrl, ignoreScripts }) {
80146
80760
  return npmInstall({
@@ -80168,7 +80782,7 @@ var NpmAPI = class {
80168
80782
  }
80169
80783
  };
80170
80784
 
80171
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/lodash.js
80785
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/lodash.js
80172
80786
  var import_lodash = __toESM(require_lodash());
80173
80787
  var import_lodash2 = __toESM(require_lodash2());
80174
80788
  var import_lodash3 = __toESM(require_lodash3());
@@ -83719,7 +84333,7 @@ autorun.effect = function(callback, dependencies) {
83719
84333
  }
83720
84334
  };
83721
84335
 
83722
- // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.24_typescript@5.3.3/node_modules/@formily/json-schema/esm/shared.js
84336
+ // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.24_typescript@5.6.3/node_modules/@formily/json-schema/esm/shared.js
83723
84337
  var REVA_ACTIONS_KEY = Symbol.for("__REVA_ACTIONS");
83724
84338
  var SchemaNestedMap = {
83725
84339
  parent: true,
@@ -83906,7 +84520,7 @@ var patchStateFormSchema = function(targetState, pattern, compiled) {
83906
84520
  });
83907
84521
  };
83908
84522
 
83909
- // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.24_typescript@5.3.3/node_modules/@formily/json-schema/esm/compiler.js
84523
+ // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.24_typescript@5.6.3/node_modules/@formily/json-schema/esm/compiler.js
83910
84524
  var ExpRE = /^\s*\{\{([\s\S]*)\}\}\s*$/;
83911
84525
  var Registry = {
83912
84526
  silent: false,
@@ -85268,7 +85882,7 @@ function onFieldInit(pattern, callback) {
85268
85882
  }
85269
85883
  }
85270
85884
 
85271
- // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.24_typescript@5.3.3/node_modules/@formily/json-schema/esm/transformer.js
85885
+ // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.24_typescript@5.6.3/node_modules/@formily/json-schema/esm/transformer.js
85272
85886
  var __read5 = function(o, n) {
85273
85887
  var m = typeof Symbol === "function" && o[Symbol.iterator];
85274
85888
  if (!m)
@@ -85493,7 +86107,7 @@ var transformFieldProps = function(schema, options) {
85493
86107
  };
85494
86108
  };
85495
86109
 
85496
- // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.24_typescript@5.3.3/node_modules/@formily/json-schema/esm/patches.js
86110
+ // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.24_typescript@5.6.3/node_modules/@formily/json-schema/esm/patches.js
85497
86111
  var __assign5 = function() {
85498
86112
  __assign5 = Object.assign || function(t) {
85499
86113
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -85542,7 +86156,7 @@ var enablePolyfills = function(versions) {
85542
86156
  }
85543
86157
  };
85544
86158
 
85545
- // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.24_typescript@5.3.3/node_modules/@formily/json-schema/esm/polyfills/SPECIFICATION_1_0.js
86159
+ // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.24_typescript@5.6.3/node_modules/@formily/json-schema/esm/polyfills/SPECIFICATION_1_0.js
85546
86160
  var __assign6 = function() {
85547
86161
  __assign6 = Object.assign || function(t) {
85548
86162
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -85699,7 +86313,7 @@ var registerTypeDefaultComponents = function(maps) {
85699
86313
  Object.assign(TYPE_DEFAULT_COMPONENTS, maps);
85700
86314
  };
85701
86315
 
85702
- // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.24_typescript@5.3.3/node_modules/@formily/json-schema/esm/schema.js
86316
+ // ../../../../node_modules/.pnpm/@formily+json-schema@2.2.24_typescript@5.6.3/node_modules/@formily/json-schema/esm/schema.js
85703
86317
  var Schema = (
85704
86318
  /** @class */
85705
86319
  function() {
@@ -85935,10 +86549,10 @@ var Schema = (
85935
86549
  }()
85936
86550
  );
85937
86551
 
85938
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/prompt.js
86552
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.6.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/prompt.js
85939
86553
  var import_inquirer = __toESM(require_inquirer());
85940
86554
 
85941
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/transform.js
86555
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.6.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/transform.js
85942
86556
  function validateSchema(schema) {
85943
86557
  const { type, properties } = schema;
85944
86558
  if (type !== "object") {
@@ -86025,7 +86639,7 @@ function transformForm(schema, configValue = {}, validateMap, initValue) {
86025
86639
  return getQuestionFromSchema(schema, configValue, validateMap, initValue);
86026
86640
  }
86027
86641
 
86028
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/prompt.js
86642
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.6.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/prompt.js
86029
86643
  var compileRule = (rule, scope) => {
86030
86644
  const state = Schema.compile(rule, __spreadValues({
86031
86645
  $self: {},
@@ -86125,7 +86739,7 @@ function prompt(_0) {
86125
86739
  });
86126
86740
  }
86127
86741
 
86128
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/inquirer.js
86742
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.6.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/inquirer.js
86129
86743
  var CLIReader = class {
86130
86744
  getAnswers() {
86131
86745
  return this.answers;
@@ -86153,7 +86767,7 @@ var CLIReader = class {
86153
86767
  }
86154
86768
  };
86155
86769
 
86156
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/index.js
86770
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.6.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/index.js
86157
86771
  var import_comment_json = __toESM(require_src3());
86158
86772
  var import_inquirer2 = __toESM(require_inquirer2());
86159
86773
 
@@ -86220,7 +86834,7 @@ var I18n = class {
86220
86834
  }
86221
86835
  };
86222
86836
 
86223
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/locale/en.js
86837
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.6.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/locale/en.js
86224
86838
  var EN_LOCALE = {
86225
86839
  environment: {
86226
86840
  node_version: "The version of Node.js is too low. Please upgrade to the LTS version: https://nodejs.org/",
@@ -86247,7 +86861,7 @@ var EN_LOCALE = {
86247
86861
  }
86248
86862
  };
86249
86863
 
86250
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/locale/zh.js
86864
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.6.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/locale/zh.js
86251
86865
  var ZH_LOCALE = {
86252
86866
  environment: {
86253
86867
  node_version: "Node.js 版本太低,请升级至 LTS 版本: https://nodejs.org/",
@@ -86274,14 +86888,14 @@ var ZH_LOCALE = {
86274
86888
  }
86275
86889
  };
86276
86890
 
86277
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/locale/index.js
86891
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.6.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/locale/index.js
86278
86892
  var i18n = new I18n();
86279
86893
  var localeKeys = i18n.init("zh", {
86280
86894
  zh: ZH_LOCALE,
86281
86895
  en: EN_LOCALE
86282
86896
  });
86283
86897
 
86284
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/utils/checkUseNvm.js
86898
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.6.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/utils/checkUseNvm.js
86285
86899
  var import_path3 = __toESM(require("path"));
86286
86900
  var NODE_MAJOR_VERSION_MAP = {
86287
86901
  "lts/*": 18,
@@ -86332,7 +86946,7 @@ function checkUseNvm(cwd, logger) {
86332
86946
  });
86333
86947
  }
86334
86948
 
86335
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/utils/transform.js
86949
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.6.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/utils/transform.js
86336
86950
  function transformInquirerSchema(questions, configValue = {}, validateMap = {}, initValue = {}) {
86337
86951
  for (const question of questions) {
86338
86952
  question.default = initValue[question.name] || question.default;
@@ -86359,7 +86973,7 @@ function transformInquirerSchema(questions, configValue = {}, validateMap = {},
86359
86973
  return questions;
86360
86974
  }
86361
86975
 
86362
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.6_@modern-js+codesmith@2.6.6_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/index.js
86976
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.6.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/index.js
86363
86977
  var AppAPI = class {
86364
86978
  checkEnvironment(nodeVersion) {
86365
86979
  return __async(this, null, function* () {
@@ -86602,11 +87216,11 @@ var AppAPI = class {
86602
87216
  }
86603
87217
  };
86604
87218
 
86605
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.6/node_modules/@modern-js/codesmith-api-json/dist/esm-node/index.js
87219
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.7/node_modules/@modern-js/codesmith-api-json/dist/esm-node/index.js
86606
87220
  var import_comment_json2 = __toESM(require_src3());
86607
87221
  var declarationUpdate = __toESM(require_dist());
86608
87222
 
86609
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.6/node_modules/@modern-js/codesmith-api-json/dist/esm-node/utils/index.js
87223
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.7/node_modules/@modern-js/codesmith-api-json/dist/esm-node/utils/index.js
86610
87224
  function editJson(generatorCore, resource, getNewJsonValue) {
86611
87225
  return __async(this, null, function* () {
86612
87226
  const originJsonValue = yield resource.value();
@@ -86621,7 +87235,7 @@ function editJson(generatorCore, resource, getNewJsonValue) {
86621
87235
  });
86622
87236
  }
86623
87237
 
86624
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.6/node_modules/@modern-js/codesmith-api-json/dist/esm-node/index.js
87238
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.7/node_modules/@modern-js/codesmith-api-json/dist/esm-node/index.js
86625
87239
  var JsonAPI = class {
86626
87240
  get(resource) {
86627
87241
  return __async(this, null, function* () {