@modern-js/upgrade-generator 3.7.22 → 3.7.23

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 +747 -102
  2. package/package.json +11 -12
package/dist/index.js CHANGED
@@ -75079,6 +75079,651 @@ var require_lodash7 = __commonJS({
75079
75079
  }
75080
75080
  });
75081
75081
 
75082
+ // ../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/common.js
75083
+ var require_common3 = __commonJS({
75084
+ "../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/common.js"(exports, module2) {
75085
+ "use strict";
75086
+ function setup(env) {
75087
+ createDebug.debug = createDebug;
75088
+ createDebug.default = createDebug;
75089
+ createDebug.coerce = coerce;
75090
+ createDebug.disable = disable;
75091
+ createDebug.enable = enable;
75092
+ createDebug.enabled = enabled;
75093
+ createDebug.humanize = require_ms();
75094
+ createDebug.destroy = destroy;
75095
+ Object.keys(env).forEach((key) => {
75096
+ createDebug[key] = env[key];
75097
+ });
75098
+ createDebug.names = [];
75099
+ createDebug.skips = [];
75100
+ createDebug.formatters = {};
75101
+ function selectColor(namespace) {
75102
+ let hash = 0;
75103
+ for (let i = 0; i < namespace.length; i++) {
75104
+ hash = (hash << 5) - hash + namespace.charCodeAt(i);
75105
+ hash |= 0;
75106
+ }
75107
+ return createDebug.colors[Math.abs(hash) % createDebug.colors.length];
75108
+ }
75109
+ createDebug.selectColor = selectColor;
75110
+ function createDebug(namespace) {
75111
+ let prevTime;
75112
+ let enableOverride = null;
75113
+ let namespacesCache;
75114
+ let enabledCache;
75115
+ function debug(...args) {
75116
+ if (!debug.enabled) {
75117
+ return;
75118
+ }
75119
+ const self3 = debug;
75120
+ const curr = Number(/* @__PURE__ */ new Date());
75121
+ const ms = curr - (prevTime || curr);
75122
+ self3.diff = ms;
75123
+ self3.prev = prevTime;
75124
+ self3.curr = curr;
75125
+ prevTime = curr;
75126
+ args[0] = createDebug.coerce(args[0]);
75127
+ if (typeof args[0] !== "string") {
75128
+ args.unshift("%O");
75129
+ }
75130
+ let index = 0;
75131
+ args[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => {
75132
+ if (match === "%%") {
75133
+ return "%";
75134
+ }
75135
+ index++;
75136
+ const formatter = createDebug.formatters[format];
75137
+ if (typeof formatter === "function") {
75138
+ const val = args[index];
75139
+ match = formatter.call(self3, val);
75140
+ args.splice(index, 1);
75141
+ index--;
75142
+ }
75143
+ return match;
75144
+ });
75145
+ createDebug.formatArgs.call(self3, args);
75146
+ const logFn = self3.log || createDebug.log;
75147
+ logFn.apply(self3, args);
75148
+ }
75149
+ debug.namespace = namespace;
75150
+ debug.useColors = createDebug.useColors();
75151
+ debug.color = createDebug.selectColor(namespace);
75152
+ debug.extend = extend2;
75153
+ debug.destroy = createDebug.destroy;
75154
+ Object.defineProperty(debug, "enabled", {
75155
+ enumerable: true,
75156
+ configurable: false,
75157
+ get: () => {
75158
+ if (enableOverride !== null) {
75159
+ return enableOverride;
75160
+ }
75161
+ if (namespacesCache !== createDebug.namespaces) {
75162
+ namespacesCache = createDebug.namespaces;
75163
+ enabledCache = createDebug.enabled(namespace);
75164
+ }
75165
+ return enabledCache;
75166
+ },
75167
+ set: (v) => {
75168
+ enableOverride = v;
75169
+ }
75170
+ });
75171
+ if (typeof createDebug.init === "function") {
75172
+ createDebug.init(debug);
75173
+ }
75174
+ return debug;
75175
+ }
75176
+ function extend2(namespace, delimiter) {
75177
+ const newDebug = createDebug(this.namespace + (typeof delimiter === "undefined" ? ":" : delimiter) + namespace);
75178
+ newDebug.log = this.log;
75179
+ return newDebug;
75180
+ }
75181
+ function enable(namespaces) {
75182
+ createDebug.save(namespaces);
75183
+ createDebug.namespaces = namespaces;
75184
+ createDebug.names = [];
75185
+ createDebug.skips = [];
75186
+ const split = (typeof namespaces === "string" ? namespaces : "").trim().replace(" ", ",").split(",").filter(Boolean);
75187
+ for (const ns of split) {
75188
+ if (ns[0] === "-") {
75189
+ createDebug.skips.push(ns.slice(1));
75190
+ } else {
75191
+ createDebug.names.push(ns);
75192
+ }
75193
+ }
75194
+ }
75195
+ function matchesTemplate(search, template) {
75196
+ let searchIndex = 0;
75197
+ let templateIndex = 0;
75198
+ let starIndex = -1;
75199
+ let matchIndex = 0;
75200
+ while (searchIndex < search.length) {
75201
+ if (templateIndex < template.length && (template[templateIndex] === search[searchIndex] || template[templateIndex] === "*")) {
75202
+ if (template[templateIndex] === "*") {
75203
+ starIndex = templateIndex;
75204
+ matchIndex = searchIndex;
75205
+ templateIndex++;
75206
+ } else {
75207
+ searchIndex++;
75208
+ templateIndex++;
75209
+ }
75210
+ } else if (starIndex !== -1) {
75211
+ templateIndex = starIndex + 1;
75212
+ matchIndex++;
75213
+ searchIndex = matchIndex;
75214
+ } else {
75215
+ return false;
75216
+ }
75217
+ }
75218
+ while (templateIndex < template.length && template[templateIndex] === "*") {
75219
+ templateIndex++;
75220
+ }
75221
+ return templateIndex === template.length;
75222
+ }
75223
+ function disable() {
75224
+ const namespaces = [
75225
+ ...createDebug.names,
75226
+ ...createDebug.skips.map((namespace) => "-" + namespace)
75227
+ ].join(",");
75228
+ createDebug.enable("");
75229
+ return namespaces;
75230
+ }
75231
+ function enabled(name) {
75232
+ for (const skip of createDebug.skips) {
75233
+ if (matchesTemplate(name, skip)) {
75234
+ return false;
75235
+ }
75236
+ }
75237
+ for (const ns of createDebug.names) {
75238
+ if (matchesTemplate(name, ns)) {
75239
+ return true;
75240
+ }
75241
+ }
75242
+ return false;
75243
+ }
75244
+ function coerce(val) {
75245
+ if (val instanceof Error) {
75246
+ return val.stack || val.message;
75247
+ }
75248
+ return val;
75249
+ }
75250
+ function destroy() {
75251
+ console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
75252
+ }
75253
+ createDebug.enable(createDebug.load());
75254
+ return createDebug;
75255
+ }
75256
+ module2.exports = setup;
75257
+ }
75258
+ });
75259
+
75260
+ // ../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/browser.js
75261
+ var require_browser2 = __commonJS({
75262
+ "../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/browser.js"(exports, module2) {
75263
+ "use strict";
75264
+ exports.formatArgs = formatArgs;
75265
+ exports.save = save;
75266
+ exports.load = load;
75267
+ exports.useColors = useColors;
75268
+ exports.storage = localstorage();
75269
+ exports.destroy = (() => {
75270
+ let warned = false;
75271
+ return () => {
75272
+ if (!warned) {
75273
+ warned = true;
75274
+ console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
75275
+ }
75276
+ };
75277
+ })();
75278
+ exports.colors = [
75279
+ "#0000CC",
75280
+ "#0000FF",
75281
+ "#0033CC",
75282
+ "#0033FF",
75283
+ "#0066CC",
75284
+ "#0066FF",
75285
+ "#0099CC",
75286
+ "#0099FF",
75287
+ "#00CC00",
75288
+ "#00CC33",
75289
+ "#00CC66",
75290
+ "#00CC99",
75291
+ "#00CCCC",
75292
+ "#00CCFF",
75293
+ "#3300CC",
75294
+ "#3300FF",
75295
+ "#3333CC",
75296
+ "#3333FF",
75297
+ "#3366CC",
75298
+ "#3366FF",
75299
+ "#3399CC",
75300
+ "#3399FF",
75301
+ "#33CC00",
75302
+ "#33CC33",
75303
+ "#33CC66",
75304
+ "#33CC99",
75305
+ "#33CCCC",
75306
+ "#33CCFF",
75307
+ "#6600CC",
75308
+ "#6600FF",
75309
+ "#6633CC",
75310
+ "#6633FF",
75311
+ "#66CC00",
75312
+ "#66CC33",
75313
+ "#9900CC",
75314
+ "#9900FF",
75315
+ "#9933CC",
75316
+ "#9933FF",
75317
+ "#99CC00",
75318
+ "#99CC33",
75319
+ "#CC0000",
75320
+ "#CC0033",
75321
+ "#CC0066",
75322
+ "#CC0099",
75323
+ "#CC00CC",
75324
+ "#CC00FF",
75325
+ "#CC3300",
75326
+ "#CC3333",
75327
+ "#CC3366",
75328
+ "#CC3399",
75329
+ "#CC33CC",
75330
+ "#CC33FF",
75331
+ "#CC6600",
75332
+ "#CC6633",
75333
+ "#CC9900",
75334
+ "#CC9933",
75335
+ "#CCCC00",
75336
+ "#CCCC33",
75337
+ "#FF0000",
75338
+ "#FF0033",
75339
+ "#FF0066",
75340
+ "#FF0099",
75341
+ "#FF00CC",
75342
+ "#FF00FF",
75343
+ "#FF3300",
75344
+ "#FF3333",
75345
+ "#FF3366",
75346
+ "#FF3399",
75347
+ "#FF33CC",
75348
+ "#FF33FF",
75349
+ "#FF6600",
75350
+ "#FF6633",
75351
+ "#FF9900",
75352
+ "#FF9933",
75353
+ "#FFCC00",
75354
+ "#FFCC33"
75355
+ ];
75356
+ function useColors() {
75357
+ if (typeof window !== "undefined" && window.process && (window.process.type === "renderer" || window.process.__nwjs)) {
75358
+ return true;
75359
+ }
75360
+ if (typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)) {
75361
+ return false;
75362
+ }
75363
+ let m;
75364
+ return typeof document !== "undefined" && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || // Is firebug? http://stackoverflow.com/a/398120/376773
75365
+ typeof window !== "undefined" && window.console && (window.console.firebug || window.console.exception && window.console.table) || // Is firefox >= v31?
75366
+ // https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages
75367
+ 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
75368
+ typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/);
75369
+ }
75370
+ function formatArgs(args) {
75371
+ args[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + args[0] + (this.useColors ? "%c " : " ") + "+" + module2.exports.humanize(this.diff);
75372
+ if (!this.useColors) {
75373
+ return;
75374
+ }
75375
+ const c = "color: " + this.color;
75376
+ args.splice(1, 0, c, "color: inherit");
75377
+ let index = 0;
75378
+ let lastC = 0;
75379
+ args[0].replace(/%[a-zA-Z%]/g, (match) => {
75380
+ if (match === "%%") {
75381
+ return;
75382
+ }
75383
+ index++;
75384
+ if (match === "%c") {
75385
+ lastC = index;
75386
+ }
75387
+ });
75388
+ args.splice(lastC, 0, c);
75389
+ }
75390
+ exports.log = console.debug || console.log || (() => {
75391
+ });
75392
+ function save(namespaces) {
75393
+ try {
75394
+ if (namespaces) {
75395
+ exports.storage.setItem("debug", namespaces);
75396
+ } else {
75397
+ exports.storage.removeItem("debug");
75398
+ }
75399
+ } catch (error) {
75400
+ }
75401
+ }
75402
+ function load() {
75403
+ let r;
75404
+ try {
75405
+ r = exports.storage.getItem("debug");
75406
+ } catch (error) {
75407
+ }
75408
+ if (!r && typeof process !== "undefined" && "env" in process) {
75409
+ r = process.env.DEBUG;
75410
+ }
75411
+ return r;
75412
+ }
75413
+ function localstorage() {
75414
+ try {
75415
+ return localStorage;
75416
+ } catch (error) {
75417
+ }
75418
+ }
75419
+ module2.exports = require_common3()(exports);
75420
+ var { formatters } = module2.exports;
75421
+ formatters.j = function(v) {
75422
+ try {
75423
+ return JSON.stringify(v);
75424
+ } catch (error) {
75425
+ return "[UnexpectedJSONParseError]: " + error.message;
75426
+ }
75427
+ };
75428
+ }
75429
+ });
75430
+
75431
+ // ../../../../node_modules/.pnpm/has-flag@3.0.0/node_modules/has-flag/index.js
75432
+ var require_has_flag2 = __commonJS({
75433
+ "../../../../node_modules/.pnpm/has-flag@3.0.0/node_modules/has-flag/index.js"(exports, module2) {
75434
+ "use strict";
75435
+ module2.exports = (flag, argv) => {
75436
+ argv = argv || process.argv;
75437
+ const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
75438
+ const pos = argv.indexOf(prefix + flag);
75439
+ const terminatorPos = argv.indexOf("--");
75440
+ return pos !== -1 && (terminatorPos === -1 ? true : pos < terminatorPos);
75441
+ };
75442
+ }
75443
+ });
75444
+
75445
+ // ../../../../node_modules/.pnpm/supports-color@5.5.0/node_modules/supports-color/index.js
75446
+ var require_supports_color2 = __commonJS({
75447
+ "../../../../node_modules/.pnpm/supports-color@5.5.0/node_modules/supports-color/index.js"(exports, module2) {
75448
+ "use strict";
75449
+ var os2 = require("os");
75450
+ var hasFlag = require_has_flag2();
75451
+ var env = process.env;
75452
+ var forceColor;
75453
+ if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false")) {
75454
+ forceColor = false;
75455
+ } else if (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) {
75456
+ forceColor = true;
75457
+ }
75458
+ if ("FORCE_COLOR" in env) {
75459
+ forceColor = env.FORCE_COLOR.length === 0 || parseInt(env.FORCE_COLOR, 10) !== 0;
75460
+ }
75461
+ function translateLevel(level) {
75462
+ if (level === 0) {
75463
+ return false;
75464
+ }
75465
+ return {
75466
+ level,
75467
+ hasBasic: true,
75468
+ has256: level >= 2,
75469
+ has16m: level >= 3
75470
+ };
75471
+ }
75472
+ function supportsColor(stream4) {
75473
+ if (forceColor === false) {
75474
+ return 0;
75475
+ }
75476
+ if (hasFlag("color=16m") || hasFlag("color=full") || hasFlag("color=truecolor")) {
75477
+ return 3;
75478
+ }
75479
+ if (hasFlag("color=256")) {
75480
+ return 2;
75481
+ }
75482
+ if (stream4 && !stream4.isTTY && forceColor !== true) {
75483
+ return 0;
75484
+ }
75485
+ const min = forceColor ? 1 : 0;
75486
+ if (process.platform === "win32") {
75487
+ const osRelease = os2.release().split(".");
75488
+ if (Number(process.versions.node.split(".")[0]) >= 8 && Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
75489
+ return Number(osRelease[2]) >= 14931 ? 3 : 2;
75490
+ }
75491
+ return 1;
75492
+ }
75493
+ if ("CI" in env) {
75494
+ if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI"].some((sign) => sign in env) || env.CI_NAME === "codeship") {
75495
+ return 1;
75496
+ }
75497
+ return min;
75498
+ }
75499
+ if ("TEAMCITY_VERSION" in env) {
75500
+ return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
75501
+ }
75502
+ if (env.COLORTERM === "truecolor") {
75503
+ return 3;
75504
+ }
75505
+ if ("TERM_PROGRAM" in env) {
75506
+ const version = parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
75507
+ switch (env.TERM_PROGRAM) {
75508
+ case "iTerm.app":
75509
+ return version >= 3 ? 3 : 2;
75510
+ case "Apple_Terminal":
75511
+ return 2;
75512
+ }
75513
+ }
75514
+ if (/-256(color)?$/i.test(env.TERM)) {
75515
+ return 2;
75516
+ }
75517
+ if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
75518
+ return 1;
75519
+ }
75520
+ if ("COLORTERM" in env) {
75521
+ return 1;
75522
+ }
75523
+ if (env.TERM === "dumb") {
75524
+ return min;
75525
+ }
75526
+ return min;
75527
+ }
75528
+ function getSupportLevel(stream4) {
75529
+ const level = supportsColor(stream4);
75530
+ return translateLevel(level);
75531
+ }
75532
+ module2.exports = {
75533
+ supportsColor: getSupportLevel,
75534
+ stdout: getSupportLevel(process.stdout),
75535
+ stderr: getSupportLevel(process.stderr)
75536
+ };
75537
+ }
75538
+ });
75539
+
75540
+ // ../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/node.js
75541
+ var require_node3 = __commonJS({
75542
+ "../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/node.js"(exports, module2) {
75543
+ "use strict";
75544
+ var tty = require("tty");
75545
+ var util3 = require("util");
75546
+ exports.init = init;
75547
+ exports.log = log;
75548
+ exports.formatArgs = formatArgs;
75549
+ exports.save = save;
75550
+ exports.load = load;
75551
+ exports.useColors = useColors;
75552
+ exports.destroy = util3.deprecate(
75553
+ () => {
75554
+ },
75555
+ "Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."
75556
+ );
75557
+ exports.colors = [6, 2, 3, 4, 5, 1];
75558
+ try {
75559
+ const supportsColor = require_supports_color2();
75560
+ if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
75561
+ exports.colors = [
75562
+ 20,
75563
+ 21,
75564
+ 26,
75565
+ 27,
75566
+ 32,
75567
+ 33,
75568
+ 38,
75569
+ 39,
75570
+ 40,
75571
+ 41,
75572
+ 42,
75573
+ 43,
75574
+ 44,
75575
+ 45,
75576
+ 56,
75577
+ 57,
75578
+ 62,
75579
+ 63,
75580
+ 68,
75581
+ 69,
75582
+ 74,
75583
+ 75,
75584
+ 76,
75585
+ 77,
75586
+ 78,
75587
+ 79,
75588
+ 80,
75589
+ 81,
75590
+ 92,
75591
+ 93,
75592
+ 98,
75593
+ 99,
75594
+ 112,
75595
+ 113,
75596
+ 128,
75597
+ 129,
75598
+ 134,
75599
+ 135,
75600
+ 148,
75601
+ 149,
75602
+ 160,
75603
+ 161,
75604
+ 162,
75605
+ 163,
75606
+ 164,
75607
+ 165,
75608
+ 166,
75609
+ 167,
75610
+ 168,
75611
+ 169,
75612
+ 170,
75613
+ 171,
75614
+ 172,
75615
+ 173,
75616
+ 178,
75617
+ 179,
75618
+ 184,
75619
+ 185,
75620
+ 196,
75621
+ 197,
75622
+ 198,
75623
+ 199,
75624
+ 200,
75625
+ 201,
75626
+ 202,
75627
+ 203,
75628
+ 204,
75629
+ 205,
75630
+ 206,
75631
+ 207,
75632
+ 208,
75633
+ 209,
75634
+ 214,
75635
+ 215,
75636
+ 220,
75637
+ 221
75638
+ ];
75639
+ }
75640
+ } catch (error) {
75641
+ }
75642
+ exports.inspectOpts = Object.keys(process.env).filter((key) => {
75643
+ return /^debug_/i.test(key);
75644
+ }).reduce((obj, key) => {
75645
+ const prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_, k) => {
75646
+ return k.toUpperCase();
75647
+ });
75648
+ let val = process.env[key];
75649
+ if (/^(yes|on|true|enabled)$/i.test(val)) {
75650
+ val = true;
75651
+ } else if (/^(no|off|false|disabled)$/i.test(val)) {
75652
+ val = false;
75653
+ } else if (val === "null") {
75654
+ val = null;
75655
+ } else {
75656
+ val = Number(val);
75657
+ }
75658
+ obj[prop] = val;
75659
+ return obj;
75660
+ }, {});
75661
+ function useColors() {
75662
+ return "colors" in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty.isatty(process.stderr.fd);
75663
+ }
75664
+ function formatArgs(args) {
75665
+ const { namespace: name, useColors: useColors2 } = this;
75666
+ if (useColors2) {
75667
+ const c = this.color;
75668
+ const colorCode = "\x1B[3" + (c < 8 ? c : "8;5;" + c);
75669
+ const prefix = ` ${colorCode};1m${name} \x1B[0m`;
75670
+ args[0] = prefix + args[0].split("\n").join("\n" + prefix);
75671
+ args.push(colorCode + "m+" + module2.exports.humanize(this.diff) + "\x1B[0m");
75672
+ } else {
75673
+ args[0] = getDate() + name + " " + args[0];
75674
+ }
75675
+ }
75676
+ function getDate() {
75677
+ if (exports.inspectOpts.hideDate) {
75678
+ return "";
75679
+ }
75680
+ return (/* @__PURE__ */ new Date()).toISOString() + " ";
75681
+ }
75682
+ function log(...args) {
75683
+ return process.stderr.write(util3.formatWithOptions(exports.inspectOpts, ...args) + "\n");
75684
+ }
75685
+ function save(namespaces) {
75686
+ if (namespaces) {
75687
+ process.env.DEBUG = namespaces;
75688
+ } else {
75689
+ delete process.env.DEBUG;
75690
+ }
75691
+ }
75692
+ function load() {
75693
+ return process.env.DEBUG;
75694
+ }
75695
+ function init(debug) {
75696
+ debug.inspectOpts = {};
75697
+ const keys = Object.keys(exports.inspectOpts);
75698
+ for (let i = 0; i < keys.length; i++) {
75699
+ debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];
75700
+ }
75701
+ }
75702
+ module2.exports = require_common3()(exports);
75703
+ var { formatters } = module2.exports;
75704
+ formatters.o = function(v) {
75705
+ this.inspectOpts.colors = this.useColors;
75706
+ return util3.inspect(v, this.inspectOpts).split("\n").map((str) => str.trim()).join(" ");
75707
+ };
75708
+ formatters.O = function(v) {
75709
+ this.inspectOpts.colors = this.useColors;
75710
+ return util3.inspect(v, this.inspectOpts);
75711
+ };
75712
+ }
75713
+ });
75714
+
75715
+ // ../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/index.js
75716
+ var require_src4 = __commonJS({
75717
+ "../../../../node_modules/.pnpm/debug@4.4.0_supports-color@5.5.0/node_modules/debug/src/index.js"(exports, module2) {
75718
+ "use strict";
75719
+ if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
75720
+ module2.exports = require_browser2();
75721
+ } else {
75722
+ module2.exports = require_node3();
75723
+ }
75724
+ }
75725
+ });
75726
+
75082
75727
  // ../../../../node_modules/.pnpm/declaration-update@0.0.2/node_modules/declaration-update/dist/utils/get-type.js
75083
75728
  var require_get_type = __commonJS({
75084
75729
  "../../../../node_modules/.pnpm/declaration-update@0.0.2/node_modules/declaration-update/dist/utils/get-type.js"(exports) {
@@ -75231,7 +75876,7 @@ var require_filter3 = __commonJS({
75231
75876
  return r;
75232
75877
  };
75233
75878
  Object.defineProperty(exports, "__esModule", { value: true });
75234
- var debug_1 = require_src();
75879
+ var debug_1 = require_src4();
75235
75880
  var mongo_eql_1 = require_mongo_eql();
75236
75881
  var ops = require_ops();
75237
75882
  var get_type_1 = require_get_type();
@@ -75391,7 +76036,7 @@ var require_mods = __commonJS({
75391
76036
  return r;
75392
76037
  };
75393
76038
  Object.defineProperty(exports, "__esModule", { value: true });
75394
- var debug_1 = require_src();
76039
+ var debug_1 = require_src4();
75395
76040
  var mongoDot = require_mongo_dot();
75396
76041
  var mongo_eql_1 = require_mongo_eql();
75397
76042
  var get_type_1 = require_get_type();
@@ -75852,7 +76497,7 @@ var require_query = __commonJS({
75852
76497
  "../../../../node_modules/.pnpm/declaration-update@0.0.2/node_modules/declaration-update/dist/query.js"(exports) {
75853
76498
  "use strict";
75854
76499
  Object.defineProperty(exports, "__esModule", { value: true });
75855
- var debug_1 = require_src();
76500
+ var debug_1 = require_src4();
75856
76501
  var filter_1 = require_filter3();
75857
76502
  var mods = require_mods();
75858
76503
  var mongoDot = require_mongo_dot();
@@ -75951,13 +76596,13 @@ __export(src_exports, {
75951
76596
  module.exports = __toCommonJS(src_exports);
75952
76597
  var import_path5 = __toESM(require("path"));
75953
76598
 
75954
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/fs-extra.js
76599
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/fs-extra.js
75955
76600
  var import_fs_extra = __toESM(require_lib());
75956
76601
 
75957
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/materials/FsResource.js
76602
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/materials/FsResource.js
75958
76603
  var FS_RESOURCE = "_codesmith_core_fs_resource";
75959
76604
 
75960
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/fsExists.js
76605
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/fsExists.js
75961
76606
  function fsExists(path5) {
75962
76607
  return __async(this, null, function* () {
75963
76608
  try {
@@ -75969,10 +76614,10 @@ function fsExists(path5) {
75969
76614
  });
75970
76615
  }
75971
76616
 
75972
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/execa.js
76617
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/execa.js
75973
76618
  var import_execa = __toESM(require_execa());
75974
76619
 
75975
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/timeoutPromise.js
76620
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/timeoutPromise.js
75976
76621
  function timeoutPromise(promise, ms, reason = "Operation") {
75977
76622
  return __async(this, null, function* () {
75978
76623
  let timeoutId = null;
@@ -75996,21 +76641,21 @@ function timeoutPromise(promise, ms, reason = "Operation") {
75996
76641
  });
75997
76642
  }
75998
76643
 
75999
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/constants.js
76644
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/constants.js
76000
76645
  var NPM_API_TIMEOUT = 3e4;
76001
76646
  var CATCHE_VALIDITY_PREIOD = 7 * 24 * 3600 * 1e3;
76002
76647
 
76003
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/semver.js
76648
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/semver.js
76004
76649
  var import_semver = __toESM(require_semver2());
76005
76650
 
76006
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/bind.js
76651
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/bind.js
76007
76652
  function bind(fn, thisArg) {
76008
76653
  return function wrap() {
76009
76654
  return fn.apply(thisArg, arguments);
76010
76655
  };
76011
76656
  }
76012
76657
 
76013
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/utils.js
76658
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/utils.js
76014
76659
  var { toString } = Object.prototype;
76015
76660
  var { getPrototypeOf } = Object;
76016
76661
  var kindOf = ((cache) => (thing) => {
@@ -76378,7 +77023,7 @@ var utils_default = {
76378
77023
  asap
76379
77024
  };
76380
77025
 
76381
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/AxiosError.js
77026
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/AxiosError.js
76382
77027
  function AxiosError(message, code, config, request, response) {
76383
77028
  Error.call(this);
76384
77029
  if (Error.captureStackTrace) {
@@ -76453,11 +77098,11 @@ AxiosError.from = (error, code, config, request, response, customProps) => {
76453
77098
  };
76454
77099
  var AxiosError_default = AxiosError;
76455
77100
 
76456
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/node/classes/FormData.js
77101
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/node/classes/FormData.js
76457
77102
  var import_form_data = __toESM(require_form_data());
76458
77103
  var FormData_default = import_form_data.default;
76459
77104
 
76460
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/toFormData.js
77105
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/toFormData.js
76461
77106
  function isVisitable(thing) {
76462
77107
  return utils_default.isPlainObject(thing) || utils_default.isArray(thing);
76463
77108
  }
@@ -76572,7 +77217,7 @@ function toFormData(obj, formData, options) {
76572
77217
  }
76573
77218
  var toFormData_default = toFormData;
76574
77219
 
76575
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js
77220
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js
76576
77221
  function encode(str) {
76577
77222
  const charMap = {
76578
77223
  "!": "%21",
@@ -76605,7 +77250,7 @@ prototype2.toString = function toString2(encoder) {
76605
77250
  };
76606
77251
  var AxiosURLSearchParams_default = AxiosURLSearchParams;
76607
77252
 
76608
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/buildURL.js
77253
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/buildURL.js
76609
77254
  function encode2(val) {
76610
77255
  return encodeURIComponent(val).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
76611
77256
  }
@@ -76636,7 +77281,7 @@ function buildURL(url2, params, options) {
76636
77281
  return url2;
76637
77282
  }
76638
77283
 
76639
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/InterceptorManager.js
77284
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/InterceptorManager.js
76640
77285
  var InterceptorManager = class {
76641
77286
  constructor() {
76642
77287
  this.handlers = [];
@@ -76700,21 +77345,21 @@ var InterceptorManager = class {
76700
77345
  };
76701
77346
  var InterceptorManager_default = InterceptorManager;
76702
77347
 
76703
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/defaults/transitional.js
77348
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/defaults/transitional.js
76704
77349
  var transitional_default = {
76705
77350
  silentJSONParsing: true,
76706
77351
  forcedJSONParsing: true,
76707
77352
  clarifyTimeoutError: false
76708
77353
  };
76709
77354
 
76710
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
77355
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
76711
77356
  var import_crypto = __toESM(require("crypto"));
76712
77357
 
76713
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/node/classes/URLSearchParams.js
77358
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/node/classes/URLSearchParams.js
76714
77359
  var import_url = __toESM(require("url"));
76715
77360
  var URLSearchParams_default = import_url.default.URLSearchParams;
76716
77361
 
76717
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
77362
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
76718
77363
  var ALPHA = "abcdefghijklmnopqrstuvwxyz";
76719
77364
  var DIGIT = "0123456789";
76720
77365
  var ALPHABET = {
@@ -76744,7 +77389,7 @@ var node_default = {
76744
77389
  protocols: ["http", "https", "file", "data"]
76745
77390
  };
76746
77391
 
76747
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/common/utils.js
77392
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/common/utils.js
76748
77393
  var utils_exports = {};
76749
77394
  __export(utils_exports, {
76750
77395
  hasBrowserEnv: () => hasBrowserEnv,
@@ -76762,10 +77407,10 @@ var hasStandardBrowserWebWorkerEnv = (() => {
76762
77407
  })();
76763
77408
  var origin = hasBrowserEnv && window.location.href || "http://localhost";
76764
77409
 
76765
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/index.js
77410
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/index.js
76766
77411
  var platform_default = __spreadValues(__spreadValues({}, utils_exports), node_default);
76767
77412
 
76768
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/toURLEncodedForm.js
77413
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/toURLEncodedForm.js
76769
77414
  function toURLEncodedForm(data, options) {
76770
77415
  return toFormData_default(data, new platform_default.classes.URLSearchParams(), Object.assign({
76771
77416
  visitor: function(value, key, path5, helpers) {
@@ -76778,7 +77423,7 @@ function toURLEncodedForm(data, options) {
76778
77423
  }, options));
76779
77424
  }
76780
77425
 
76781
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/formDataToJSON.js
77426
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/formDataToJSON.js
76782
77427
  function parsePropPath(name) {
76783
77428
  return utils_default.matchAll(/\w+|\[(\w*)]/g, name).map((match) => {
76784
77429
  return match[0] === "[]" ? "" : match[1] || match[0];
@@ -76832,7 +77477,7 @@ function formDataToJSON(formData) {
76832
77477
  }
76833
77478
  var formDataToJSON_default = formDataToJSON;
76834
77479
 
76835
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/defaults/index.js
77480
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/defaults/index.js
76836
77481
  function stringifySafely(rawValue, parser, encoder) {
76837
77482
  if (utils_default.isString(rawValue)) {
76838
77483
  try {
@@ -76941,7 +77586,7 @@ utils_default.forEach(["delete", "get", "head", "post", "put", "patch"], (method
76941
77586
  });
76942
77587
  var defaults_default = defaults;
76943
77588
 
76944
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/parseHeaders.js
77589
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/parseHeaders.js
76945
77590
  var ignoreDuplicateOf = utils_default.toObjectSet([
76946
77591
  "age",
76947
77592
  "authorization",
@@ -76986,7 +77631,7 @@ var parseHeaders_default = (rawHeaders) => {
76986
77631
  return parsed;
76987
77632
  };
76988
77633
 
76989
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/AxiosHeaders.js
77634
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/AxiosHeaders.js
76990
77635
  var $internals = Symbol("internals");
76991
77636
  function normalizeHeader(header) {
76992
77637
  return header && String(header).trim().toLowerCase();
@@ -77208,7 +77853,7 @@ utils_default.reduceDescriptors(AxiosHeaders.prototype, ({ value }, key) => {
77208
77853
  utils_default.freezeMethods(AxiosHeaders);
77209
77854
  var AxiosHeaders_default = AxiosHeaders;
77210
77855
 
77211
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/transformData.js
77856
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/transformData.js
77212
77857
  function transformData(fns, response) {
77213
77858
  const config = this || defaults_default;
77214
77859
  const context = response || config;
@@ -77221,12 +77866,12 @@ function transformData(fns, response) {
77221
77866
  return data;
77222
77867
  }
77223
77868
 
77224
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/cancel/isCancel.js
77869
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/cancel/isCancel.js
77225
77870
  function isCancel(value) {
77226
77871
  return !!(value && value.__CANCEL__);
77227
77872
  }
77228
77873
 
77229
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/cancel/CanceledError.js
77874
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/cancel/CanceledError.js
77230
77875
  function CanceledError(message, config, request) {
77231
77876
  AxiosError_default.call(this, message == null ? "canceled" : message, AxiosError_default.ERR_CANCELED, config, request);
77232
77877
  this.name = "CanceledError";
@@ -77236,7 +77881,7 @@ utils_default.inherits(CanceledError, AxiosError_default, {
77236
77881
  });
77237
77882
  var CanceledError_default = CanceledError;
77238
77883
 
77239
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/settle.js
77884
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/settle.js
77240
77885
  function settle(resolve, reject, response) {
77241
77886
  const validateStatus2 = response.config.validateStatus;
77242
77887
  if (!response.status || !validateStatus2 || validateStatus2(response.status)) {
@@ -77252,17 +77897,17 @@ function settle(resolve, reject, response) {
77252
77897
  }
77253
77898
  }
77254
77899
 
77255
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/isAbsoluteURL.js
77900
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/isAbsoluteURL.js
77256
77901
  function isAbsoluteURL(url2) {
77257
77902
  return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url2);
77258
77903
  }
77259
77904
 
77260
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/combineURLs.js
77905
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/combineURLs.js
77261
77906
  function combineURLs(baseURL, relativeURL) {
77262
77907
  return relativeURL ? baseURL.replace(/\/?\/$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
77263
77908
  }
77264
77909
 
77265
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/buildFullPath.js
77910
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/buildFullPath.js
77266
77911
  function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
77267
77912
  let isRelativeUrl = !isAbsoluteURL(requestedURL);
77268
77913
  if (baseURL && isRelativeUrl || allowAbsoluteUrls == false) {
@@ -77271,7 +77916,7 @@ function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
77271
77916
  return requestedURL;
77272
77917
  }
77273
77918
 
77274
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77919
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77275
77920
  var import_proxy_from_env = __toESM(require_proxy_from_env());
77276
77921
  var import_http = __toESM(require("http"));
77277
77922
  var import_https = __toESM(require("https"));
@@ -77279,16 +77924,16 @@ var import_util2 = __toESM(require("util"));
77279
77924
  var import_follow_redirects = __toESM(require_follow_redirects());
77280
77925
  var import_zlib = __toESM(require("zlib"));
77281
77926
 
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";
77927
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/env/data.js
77928
+ var VERSION = "1.8.3";
77284
77929
 
77285
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/parseProtocol.js
77930
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/parseProtocol.js
77286
77931
  function parseProtocol(url2) {
77287
77932
  const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url2);
77288
77933
  return match && match[1] || "";
77289
77934
  }
77290
77935
 
77291
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/fromDataURI.js
77936
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/fromDataURI.js
77292
77937
  var DATA_URL_PATTERN = /^(?:([^;]+);)?(?:[^;]+;)?(base64|),([\s\S]*)$/;
77293
77938
  function fromDataURI(uri, asBlob, options) {
77294
77939
  const _Blob = options && options.Blob || platform_default.classes.Blob;
@@ -77317,10 +77962,10 @@ function fromDataURI(uri, asBlob, options) {
77317
77962
  throw new AxiosError_default("Unsupported protocol " + protocol, AxiosError_default.ERR_NOT_SUPPORT);
77318
77963
  }
77319
77964
 
77320
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77965
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77321
77966
  var import_stream4 = __toESM(require("stream"));
77322
77967
 
77323
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/AxiosTransformStream.js
77968
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/AxiosTransformStream.js
77324
77969
  var import_stream = __toESM(require("stream"));
77325
77970
  var kInternals = Symbol("internals");
77326
77971
  var AxiosTransformStream = class extends import_stream.default.Transform {
@@ -77435,14 +78080,14 @@ var AxiosTransformStream = class extends import_stream.default.Transform {
77435
78080
  };
77436
78081
  var AxiosTransformStream_default = AxiosTransformStream;
77437
78082
 
77438
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/http.js
78083
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77439
78084
  var import_events = require("events");
77440
78085
 
77441
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
78086
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
77442
78087
  var import_util = __toESM(require("util"));
77443
78088
  var import_stream2 = require("stream");
77444
78089
 
77445
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/readBlob.js
78090
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/readBlob.js
77446
78091
  var { asyncIterator } = Symbol;
77447
78092
  var readBlob = function(blob) {
77448
78093
  return __asyncGenerator(this, null, function* () {
@@ -77459,7 +78104,7 @@ var readBlob = function(blob) {
77459
78104
  };
77460
78105
  var readBlob_default = readBlob;
77461
78106
 
77462
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
78107
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
77463
78108
  var BOUNDARY_ALPHABET = platform_default.ALPHABET.ALPHA_DIGIT + "-_";
77464
78109
  var textEncoder = typeof TextEncoder === "function" ? new TextEncoder() : new import_util.default.TextEncoder();
77465
78110
  var CRLF = "\r\n";
@@ -77542,7 +78187,7 @@ var formDataToStream = (form, headersHandler, options) => {
77542
78187
  };
77543
78188
  var formDataToStream_default = formDataToStream;
77544
78189
 
77545
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js
78190
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js
77546
78191
  var import_stream3 = __toESM(require("stream"));
77547
78192
  var ZlibHeaderTransformStream = class extends import_stream3.default.Transform {
77548
78193
  __transform(chunk, encoding, callback) {
@@ -77564,7 +78209,7 @@ var ZlibHeaderTransformStream = class extends import_stream3.default.Transform {
77564
78209
  };
77565
78210
  var ZlibHeaderTransformStream_default = ZlibHeaderTransformStream;
77566
78211
 
77567
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/callbackify.js
78212
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/callbackify.js
77568
78213
  var callbackify = (fn, reducer) => {
77569
78214
  return utils_default.isAsyncFn(fn) ? function(...args) {
77570
78215
  const cb = args.pop();
@@ -77579,7 +78224,7 @@ var callbackify = (fn, reducer) => {
77579
78224
  };
77580
78225
  var callbackify_default = callbackify;
77581
78226
 
77582
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/speedometer.js
78227
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/speedometer.js
77583
78228
  function speedometer(samplesCount, min) {
77584
78229
  samplesCount = samplesCount || 10;
77585
78230
  const bytes = new Array(samplesCount);
@@ -77615,7 +78260,7 @@ function speedometer(samplesCount, min) {
77615
78260
  }
77616
78261
  var speedometer_default = speedometer;
77617
78262
 
77618
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/throttle.js
78263
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/throttle.js
77619
78264
  function throttle(fn, freq) {
77620
78265
  let timestamp = 0;
77621
78266
  let threshold = 1e3 / freq;
@@ -77650,7 +78295,7 @@ function throttle(fn, freq) {
77650
78295
  }
77651
78296
  var throttle_default = throttle;
77652
78297
 
77653
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/progressEventReducer.js
78298
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/progressEventReducer.js
77654
78299
  var progressEventReducer = (listener, isDownloadStream, freq = 3) => {
77655
78300
  let bytesNotified = 0;
77656
78301
  const _speedometer = speedometer_default(50, 250);
@@ -77685,7 +78330,7 @@ var progressEventDecorator = (total, throttled) => {
77685
78330
  };
77686
78331
  var asyncDecorator = (fn) => (...args) => utils_default.asap(() => fn(...args));
77687
78332
 
77688
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/http.js
78333
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77689
78334
  var zlibOptions = {
77690
78335
  flush: import_zlib.default.constants.Z_SYNC_FLUSH,
77691
78336
  finishFlush: import_zlib.default.constants.Z_SYNC_FLUSH
@@ -78191,7 +78836,7 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
78191
78836
  });
78192
78837
  };
78193
78838
 
78194
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/isURLSameOrigin.js
78839
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/isURLSameOrigin.js
78195
78840
  var isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? ((origin2, isMSIE) => (url2) => {
78196
78841
  url2 = new URL(url2, platform_default.origin);
78197
78842
  return origin2.protocol === url2.protocol && origin2.host === url2.host && (isMSIE || origin2.port === url2.port);
@@ -78200,7 +78845,7 @@ var isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? ((origin2
78200
78845
  platform_default.navigator && /(msie|trident)/i.test(platform_default.navigator.userAgent)
78201
78846
  ) : () => true;
78202
78847
 
78203
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/cookies.js
78848
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/cookies.js
78204
78849
  var cookies_default = platform_default.hasStandardBrowserEnv ? (
78205
78850
  // Standard browser envs support document.cookie
78206
78851
  {
@@ -78233,7 +78878,7 @@ var cookies_default = platform_default.hasStandardBrowserEnv ? (
78233
78878
  }
78234
78879
  );
78235
78880
 
78236
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/mergeConfig.js
78881
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/mergeConfig.js
78237
78882
  var headersToObject = (thing) => thing instanceof AxiosHeaders_default ? __spreadValues({}, thing) : thing;
78238
78883
  function mergeConfig(config1, config2) {
78239
78884
  config2 = config2 || {};
@@ -78313,12 +78958,12 @@ function mergeConfig(config1, config2) {
78313
78958
  return config;
78314
78959
  }
78315
78960
 
78316
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/resolveConfig.js
78961
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/resolveConfig.js
78317
78962
  var resolveConfig_default = (config) => {
78318
78963
  const newConfig = mergeConfig({}, config);
78319
78964
  let { data, withXSRFToken, xsrfHeaderName, xsrfCookieName, headers, auth } = newConfig;
78320
78965
  newConfig.headers = headers = AxiosHeaders_default.from(headers);
78321
- newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url), config.params, config.paramsSerializer);
78966
+ newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url, newConfig.allowAbsoluteUrls), config.params, config.paramsSerializer);
78322
78967
  if (auth) {
78323
78968
  headers.set(
78324
78969
  "Authorization",
@@ -78346,7 +78991,7 @@ var resolveConfig_default = (config) => {
78346
78991
  return newConfig;
78347
78992
  };
78348
78993
 
78349
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/xhr.js
78994
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/xhr.js
78350
78995
  var isXHRAdapterSupported = typeof XMLHttpRequest !== "undefined";
78351
78996
  var xhr_default = isXHRAdapterSupported && function(config) {
78352
78997
  return new Promise(function dispatchXhrRequest(resolve, reject) {
@@ -78473,7 +79118,7 @@ var xhr_default = isXHRAdapterSupported && function(config) {
78473
79118
  });
78474
79119
  };
78475
79120
 
78476
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/composeSignals.js
79121
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/composeSignals.js
78477
79122
  var composeSignals = (signals, timeout) => {
78478
79123
  const { length } = signals = signals ? signals.filter(Boolean) : [];
78479
79124
  if (timeout || length) {
@@ -78509,7 +79154,7 @@ var composeSignals = (signals, timeout) => {
78509
79154
  };
78510
79155
  var composeSignals_default = composeSignals;
78511
79156
 
78512
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/trackStream.js
79157
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/trackStream.js
78513
79158
  var streamChunk = function* (chunk, chunkSize) {
78514
79159
  let len = chunk.byteLength;
78515
79160
  if (!chunkSize || len < chunkSize) {
@@ -78604,7 +79249,7 @@ var trackStream = (stream4, chunkSize, onProgress, onFinish) => {
78604
79249
  });
78605
79250
  };
78606
79251
 
78607
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/fetch.js
79252
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/fetch.js
78608
79253
  var isFetchSupported = typeof fetch === "function" && typeof Request === "function" && typeof Response === "function";
78609
79254
  var isReadableStreamSupported = isFetchSupported && typeof ReadableStream === "function";
78610
79255
  var encodeText = isFetchSupported && (typeof TextEncoder === "function" ? ((encoder) => (str) => encoder.encode(str))(new TextEncoder()) : (str) => __async(void 0, null, function* () {
@@ -78769,7 +79414,7 @@ var fetch_default = isFetchSupported && ((config) => __async(void 0, null, funct
78769
79414
  }
78770
79415
  }));
78771
79416
 
78772
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/adapters.js
79417
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/adapters.js
78773
79418
  var knownAdapters = {
78774
79419
  http: http_default,
78775
79420
  xhr: xhr_default,
@@ -78823,7 +79468,7 @@ var adapters_default = {
78823
79468
  adapters: knownAdapters
78824
79469
  };
78825
79470
 
78826
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/dispatchRequest.js
79471
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/dispatchRequest.js
78827
79472
  function throwIfCancellationRequested(config) {
78828
79473
  if (config.cancelToken) {
78829
79474
  config.cancelToken.throwIfRequested();
@@ -78868,7 +79513,7 @@ function dispatchRequest(config) {
78868
79513
  });
78869
79514
  }
78870
79515
 
78871
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/validator.js
79516
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/validator.js
78872
79517
  var validators = {};
78873
79518
  ["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => {
78874
79519
  validators[type] = function validator(thing) {
@@ -78932,7 +79577,7 @@ var validator_default = {
78932
79577
  validators
78933
79578
  };
78934
79579
 
78935
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/Axios.js
79580
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/Axios.js
78936
79581
  var validators2 = validator_default.validators;
78937
79582
  var Axios = class {
78938
79583
  constructor(instanceConfig) {
@@ -79107,7 +79752,7 @@ utils_default.forEach(["post", "put", "patch"], function forEachMethodWithData(m
79107
79752
  });
79108
79753
  var Axios_default = Axios;
79109
79754
 
79110
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/cancel/CancelToken.js
79755
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/cancel/CancelToken.js
79111
79756
  var CancelToken = class _CancelToken {
79112
79757
  constructor(executor) {
79113
79758
  if (typeof executor !== "function") {
@@ -79206,19 +79851,19 @@ var CancelToken = class _CancelToken {
79206
79851
  };
79207
79852
  var CancelToken_default = CancelToken;
79208
79853
 
79209
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/spread.js
79854
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/spread.js
79210
79855
  function spread(callback) {
79211
79856
  return function wrap(arr) {
79212
79857
  return callback.apply(null, arr);
79213
79858
  };
79214
79859
  }
79215
79860
 
79216
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/isAxiosError.js
79861
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/isAxiosError.js
79217
79862
  function isAxiosError(payload) {
79218
79863
  return utils_default.isObject(payload) && payload.isAxiosError === true;
79219
79864
  }
79220
79865
 
79221
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/HttpStatusCode.js
79866
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/HttpStatusCode.js
79222
79867
  var HttpStatusCode = {
79223
79868
  Continue: 100,
79224
79869
  SwitchingProtocols: 101,
@@ -79289,7 +79934,7 @@ Object.entries(HttpStatusCode).forEach(([key, value]) => {
79289
79934
  });
79290
79935
  var HttpStatusCode_default = HttpStatusCode;
79291
79936
 
79292
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/axios.js
79937
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/axios.js
79293
79938
  function createInstance(defaultConfig) {
79294
79939
  const context = new Axios_default(defaultConfig);
79295
79940
  const instance = bind(Axios_default.prototype.request, context);
@@ -79322,7 +79967,7 @@ axios.HttpStatusCode = HttpStatusCode_default;
79322
79967
  axios.default = axios;
79323
79968
  var axios_default = axios;
79324
79969
 
79325
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/index.js
79970
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/index.js
79326
79971
  var {
79327
79972
  Axios: Axios2,
79328
79973
  AxiosError: AxiosError2,
@@ -79342,7 +79987,7 @@ var {
79342
79987
  mergeConfig: mergeConfig2
79343
79988
  } = axios_default;
79344
79989
 
79345
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmRegistry.js
79990
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmRegistry.js
79346
79991
  function getNpmRegistry() {
79347
79992
  return __async(this, null, function* () {
79348
79993
  const { stdout } = yield (0, import_execa.default)("npm", [
@@ -79354,7 +79999,7 @@ function getNpmRegistry() {
79354
79999
  });
79355
80000
  }
79356
80001
 
79357
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmPackageInfo.js
80002
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmPackageInfo.js
79358
80003
  var NpmPackageInfoCache = /* @__PURE__ */ new Map();
79359
80004
  function getNpmPackageInfoWithCommand(pkgName, pkgVersion, options) {
79360
80005
  return __async(this, null, function* () {
@@ -79405,7 +80050,7 @@ function getNpmPackageInfo(pkgName, pkgVersion, options) {
79405
80050
  });
79406
80051
  }
79407
80052
 
79408
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmVersion.js
80053
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmVersion.js
79409
80054
  function getNpmVersion(packageName, options) {
79410
80055
  return __async(this, null, function* () {
79411
80056
  const { version = "latest" } = options || {};
@@ -79414,7 +80059,7 @@ function getNpmVersion(packageName, options) {
79414
80059
  });
79415
80060
  }
79416
80061
 
79417
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/getPackageInfo.js
80062
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/getPackageInfo.js
79418
80063
  function getPackageInfo(packageName) {
79419
80064
  if (!packageName) {
79420
80065
  throw new Error("package is not exisit");
@@ -79438,16 +80083,16 @@ function getPackageInfo(packageName) {
79438
80083
  };
79439
80084
  }
79440
80085
 
79441
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/ora.js
80086
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/ora.js
79442
80087
  var import_ora = __toESM(require_ora());
79443
80088
 
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
80089
+ // ../../../../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
80090
  var import_ejs = __toESM(require_ejs());
79446
80091
  function renderString(template, fullData) {
79447
80092
  return import_ejs.default.render(template, fullData) || "";
79448
80093
  }
79449
80094
 
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
80095
+ // ../../../../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
80096
  var EjsAPI = class {
79452
80097
  renderTemplate(_0, _1) {
79453
80098
  return __async(this, arguments, function* (templateResource, target, parameters = {}) {
@@ -79482,7 +80127,7 @@ var EjsAPI = class {
79482
80127
  }
79483
80128
  };
79484
80129
 
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
80130
+ // ../../../../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
80131
  var import_path = __toESM(require("path"));
79487
80132
  var FsAPI = class {
79488
80133
  renderFile(resource, target) {
@@ -79511,7 +80156,7 @@ var FsAPI = class {
79511
80156
  }
79512
80157
  };
79513
80158
 
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
80159
+ // ../../../../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
80160
  function canUseGit() {
79516
80161
  return __async(this, null, function* () {
79517
80162
  try {
@@ -79595,7 +80240,7 @@ function gitCommit(cwd, commitMessage) {
79595
80240
  });
79596
80241
  }
79597
80242
 
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
80243
+ // ../../../../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
80244
  var GitAPI = class {
79600
80245
  isInGitRepo() {
79601
80246
  return __async(this, arguments, function* (cwd = this.generatorCore.outputPath) {
@@ -79651,7 +80296,7 @@ var GitAPI = class {
79651
80296
  }
79652
80297
  };
79653
80298
 
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
80299
+ // ../../../../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
80300
  var import_handlebars = __toESM(require_lib2());
79656
80301
  function renderString2(template, fullData, registers) {
79657
80302
  const helpers = __spreadValues({}, registers === null || registers === void 0 ? void 0 : registers.helpers);
@@ -79661,7 +80306,7 @@ function renderString2(template, fullData, registers) {
79661
80306
  return import_handlebars.default.compile(template)(fullData) || "";
79662
80307
  }
79663
80308
 
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
80309
+ // ../../../../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
80310
  var HandlebarsAPI = class {
79666
80311
  registerHelp(helpers) {
79667
80312
  return __async(this, null, function* () {
@@ -79818,7 +80463,7 @@ function __generator(thisArg, body) {
79818
80463
  }
79819
80464
  }
79820
80465
 
79821
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/npm.js
80466
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/npm.js
79822
80467
  var import_execa5 = __toESM(require_execa());
79823
80468
  function canUseNvm() {
79824
80469
  return _canUseNvm.apply(this, arguments);
@@ -80039,7 +80684,7 @@ function _canUsePnpm() {
80039
80684
  return _canUsePnpm.apply(this, arguments);
80040
80685
  }
80041
80686
 
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
80687
+ // ../../../../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
80688
  function execaWithStreamLog(command, args, options) {
80044
80689
  const promise = (0, import_execa.default)(command, args, __spreadProps(__spreadValues({}, options), {
80045
80690
  stdin: "inherit",
@@ -80140,7 +80785,7 @@ function pnpmInstall(_0) {
80140
80785
  });
80141
80786
  }
80142
80787
 
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
80788
+ // ../../../../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
80789
  var NpmAPI = class {
80145
80790
  npmInstall({ cwd, registryUrl, ignoreScripts }) {
80146
80791
  return npmInstall({
@@ -80168,7 +80813,7 @@ var NpmAPI = class {
80168
80813
  }
80169
80814
  };
80170
80815
 
80171
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/lodash.js
80816
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/lodash.js
80172
80817
  var import_lodash = __toESM(require_lodash());
80173
80818
  var import_lodash2 = __toESM(require_lodash2());
80174
80819
  var import_lodash3 = __toESM(require_lodash3());
@@ -85935,10 +86580,10 @@ var Schema = (
85935
86580
  }()
85936
86581
  );
85937
86582
 
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
86583
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/prompt.js
85939
86584
  var import_inquirer = __toESM(require_inquirer());
85940
86585
 
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
86586
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/transform.js
85942
86587
  function validateSchema(schema) {
85943
86588
  const { type, properties } = schema;
85944
86589
  if (type !== "object") {
@@ -86025,7 +86670,7 @@ function transformForm(schema, configValue = {}, validateMap, initValue) {
86025
86670
  return getQuestionFromSchema(schema, configValue, validateMap, initValue);
86026
86671
  }
86027
86672
 
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
86673
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/prompt.js
86029
86674
  var compileRule = (rule, scope) => {
86030
86675
  const state = Schema.compile(rule, __spreadValues({
86031
86676
  $self: {},
@@ -86125,7 +86770,7 @@ function prompt(_0) {
86125
86770
  });
86126
86771
  }
86127
86772
 
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
86773
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-formily/dist/esm-node/inquirer.js
86129
86774
  var CLIReader = class {
86130
86775
  getAnswers() {
86131
86776
  return this.answers;
@@ -86153,7 +86798,7 @@ var CLIReader = class {
86153
86798
  }
86154
86799
  };
86155
86800
 
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
86801
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/index.js
86157
86802
  var import_comment_json = __toESM(require_src3());
86158
86803
  var import_inquirer2 = __toESM(require_inquirer2());
86159
86804
 
@@ -86220,7 +86865,7 @@ var I18n = class {
86220
86865
  }
86221
86866
  };
86222
86867
 
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
86868
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/locale/en.js
86224
86869
  var EN_LOCALE = {
86225
86870
  environment: {
86226
86871
  node_version: "The version of Node.js is too low. Please upgrade to the LTS version: https://nodejs.org/",
@@ -86247,7 +86892,7 @@ var EN_LOCALE = {
86247
86892
  }
86248
86893
  };
86249
86894
 
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
86895
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/locale/zh.js
86251
86896
  var ZH_LOCALE = {
86252
86897
  environment: {
86253
86898
  node_version: "Node.js 版本太低,请升级至 LTS 版本: https://nodejs.org/",
@@ -86274,14 +86919,14 @@ var ZH_LOCALE = {
86274
86919
  }
86275
86920
  };
86276
86921
 
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
86922
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/locale/index.js
86278
86923
  var i18n = new I18n();
86279
86924
  var localeKeys = i18n.init("zh", {
86280
86925
  zh: ZH_LOCALE,
86281
86926
  en: EN_LOCALE
86282
86927
  });
86283
86928
 
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
86929
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/utils/checkUseNvm.js
86285
86930
  var import_path3 = __toESM(require("path"));
86286
86931
  var NODE_MAJOR_VERSION_MAP = {
86287
86932
  "lts/*": 18,
@@ -86332,7 +86977,7 @@ function checkUseNvm(cwd, logger) {
86332
86977
  });
86333
86978
  }
86334
86979
 
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
86980
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/utils/transform.js
86336
86981
  function transformInquirerSchema(questions, configValue = {}, validateMap = {}, initValue = {}) {
86337
86982
  for (const question of questions) {
86338
86983
  question.default = initValue[question.name] || question.default;
@@ -86359,7 +87004,7 @@ function transformInquirerSchema(questions, configValue = {}, validateMap = {},
86359
87004
  return questions;
86360
87005
  }
86361
87006
 
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
87007
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.6.7_@modern-js+codesmith@2.6.7_typescript@5.3.3/node_modules/@modern-js/codesmith-api-app/dist/esm-node/index.js
86363
87008
  var AppAPI = class {
86364
87009
  checkEnvironment(nodeVersion) {
86365
87010
  return __async(this, null, function* () {
@@ -86602,11 +87247,11 @@ var AppAPI = class {
86602
87247
  }
86603
87248
  };
86604
87249
 
86605
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.6/node_modules/@modern-js/codesmith-api-json/dist/esm-node/index.js
87250
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.7/node_modules/@modern-js/codesmith-api-json/dist/esm-node/index.js
86606
87251
  var import_comment_json2 = __toESM(require_src3());
86607
87252
  var declarationUpdate = __toESM(require_dist());
86608
87253
 
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
87254
+ // ../../../../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
87255
  function editJson(generatorCore, resource, getNewJsonValue) {
86611
87256
  return __async(this, null, function* () {
86612
87257
  const originJsonValue = yield resource.value();
@@ -86621,7 +87266,7 @@ function editJson(generatorCore, resource, getNewJsonValue) {
86621
87266
  });
86622
87267
  }
86623
87268
 
86624
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.6/node_modules/@modern-js/codesmith-api-json/dist/esm-node/index.js
87269
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.7/node_modules/@modern-js/codesmith-api-json/dist/esm-node/index.js
86625
87270
  var JsonAPI = class {
86626
87271
  get(resource) {
86627
87272
  return __async(this, null, function* () {