@modern-js/bff-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 +748 -103
  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((key2) => {
75096
+ createDebug[key2] = env[key2];
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 c2 = "color: " + this.color;
75376
+ args.splice(1, 0, c2, "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, c2);
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 pos2 = argv.indexOf(prefix + flag);
75439
+ const terminatorPos = argv.indexOf("--");
75440
+ return pos2 !== -1 && (terminatorPos === -1 ? true : pos2 < 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 os = 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 = os.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((sign2) => sign2 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 util4 = 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 = util4.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((key2) => {
75643
+ return /^debug_/i.test(key2);
75644
+ }).reduce((obj, key2) => {
75645
+ const prop = key2.substring(6).toLowerCase().replace(/_([a-z])/g, (_, k) => {
75646
+ return k.toUpperCase();
75647
+ });
75648
+ let val = process.env[key2];
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 c2 = this.color;
75668
+ const colorCode = "\x1B[3" + (c2 < 8 ? c2 : "8;5;" + c2);
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(util4.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 util4.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 util4.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,16 +76596,16 @@ __export(src_exports, {
75951
76596
  module.exports = __toCommonJS(src_exports);
75952
76597
  var import_path6 = __toESM(require("path"));
75953
76598
 
75954
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/chalk.js
76599
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/chalk.js
75955
76600
  var import_chalk = __toESM(require_source());
75956
76601
 
75957
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/fs-extra.js
76602
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/fs-extra.js
75958
76603
  var import_fs_extra = __toESM(require_lib());
75959
76604
 
75960
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/materials/FsResource.js
76605
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/materials/FsResource.js
75961
76606
  var FS_RESOURCE = "_codesmith_core_fs_resource";
75962
76607
 
75963
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/fsExists.js
76608
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/fsExists.js
75964
76609
  function fsExists(path6) {
75965
76610
  return __async(this, null, function* () {
75966
76611
  try {
@@ -75972,10 +76617,10 @@ function fsExists(path6) {
75972
76617
  });
75973
76618
  }
75974
76619
 
75975
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/execa.js
76620
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/execa.js
75976
76621
  var import_execa = __toESM(require_execa());
75977
76622
 
75978
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/timeoutPromise.js
76623
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/timeoutPromise.js
75979
76624
  function timeoutPromise(promise, ms, reason = "Operation") {
75980
76625
  return __async(this, null, function* () {
75981
76626
  let timeoutId = null;
@@ -75999,21 +76644,21 @@ function timeoutPromise(promise, ms, reason = "Operation") {
75999
76644
  });
76000
76645
  }
76001
76646
 
76002
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/constants.js
76647
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/constants.js
76003
76648
  var NPM_API_TIMEOUT = 3e4;
76004
76649
  var CATCHE_VALIDITY_PREIOD = 7 * 24 * 3600 * 1e3;
76005
76650
 
76006
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/semver.js
76651
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/semver.js
76007
76652
  var import_semver = __toESM(require_semver2());
76008
76653
 
76009
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/bind.js
76654
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/bind.js
76010
76655
  function bind(fn, thisArg) {
76011
76656
  return function wrap() {
76012
76657
  return fn.apply(thisArg, arguments);
76013
76658
  };
76014
76659
  }
76015
76660
 
76016
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/utils.js
76661
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/utils.js
76017
76662
  var { toString } = Object.prototype;
76018
76663
  var { getPrototypeOf } = Object;
76019
76664
  var kindOf = ((cache) => (thing) => {
@@ -76381,7 +77026,7 @@ var utils_default = {
76381
77026
  asap
76382
77027
  };
76383
77028
 
76384
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/AxiosError.js
77029
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/AxiosError.js
76385
77030
  function AxiosError(message, code, config, request, response) {
76386
77031
  Error.call(this);
76387
77032
  if (Error.captureStackTrace) {
@@ -76456,11 +77101,11 @@ AxiosError.from = (error, code, config, request, response, customProps) => {
76456
77101
  };
76457
77102
  var AxiosError_default = AxiosError;
76458
77103
 
76459
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/node/classes/FormData.js
77104
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/node/classes/FormData.js
76460
77105
  var import_form_data = __toESM(require_form_data());
76461
77106
  var FormData_default = import_form_data.default;
76462
77107
 
76463
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/toFormData.js
77108
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/toFormData.js
76464
77109
  function isVisitable(thing) {
76465
77110
  return utils_default.isPlainObject(thing) || utils_default.isArray(thing);
76466
77111
  }
@@ -76575,7 +77220,7 @@ function toFormData(obj, formData, options) {
76575
77220
  }
76576
77221
  var toFormData_default = toFormData;
76577
77222
 
76578
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js
77223
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js
76579
77224
  function encode(str) {
76580
77225
  const charMap = {
76581
77226
  "!": "%21",
@@ -76608,7 +77253,7 @@ prototype2.toString = function toString2(encoder) {
76608
77253
  };
76609
77254
  var AxiosURLSearchParams_default = AxiosURLSearchParams;
76610
77255
 
76611
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/buildURL.js
77256
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/buildURL.js
76612
77257
  function encode2(val) {
76613
77258
  return encodeURIComponent(val).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
76614
77259
  }
@@ -76639,7 +77284,7 @@ function buildURL(url2, params, options) {
76639
77284
  return url2;
76640
77285
  }
76641
77286
 
76642
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/InterceptorManager.js
77287
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/InterceptorManager.js
76643
77288
  var InterceptorManager = class {
76644
77289
  constructor() {
76645
77290
  this.handlers = [];
@@ -76703,21 +77348,21 @@ var InterceptorManager = class {
76703
77348
  };
76704
77349
  var InterceptorManager_default = InterceptorManager;
76705
77350
 
76706
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/defaults/transitional.js
77351
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/defaults/transitional.js
76707
77352
  var transitional_default = {
76708
77353
  silentJSONParsing: true,
76709
77354
  forcedJSONParsing: true,
76710
77355
  clarifyTimeoutError: false
76711
77356
  };
76712
77357
 
76713
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
77358
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
76714
77359
  var import_crypto = __toESM(require("crypto"));
76715
77360
 
76716
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/node/classes/URLSearchParams.js
77361
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/node/classes/URLSearchParams.js
76717
77362
  var import_url = __toESM(require("url"));
76718
77363
  var URLSearchParams_default = import_url.default.URLSearchParams;
76719
77364
 
76720
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
77365
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
76721
77366
  var ALPHA = "abcdefghijklmnopqrstuvwxyz";
76722
77367
  var DIGIT = "0123456789";
76723
77368
  var ALPHABET = {
@@ -76747,7 +77392,7 @@ var node_default = {
76747
77392
  protocols: ["http", "https", "file", "data"]
76748
77393
  };
76749
77394
 
76750
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/common/utils.js
77395
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/common/utils.js
76751
77396
  var utils_exports = {};
76752
77397
  __export(utils_exports, {
76753
77398
  hasBrowserEnv: () => hasBrowserEnv,
@@ -76765,10 +77410,10 @@ var hasStandardBrowserWebWorkerEnv = (() => {
76765
77410
  })();
76766
77411
  var origin = hasBrowserEnv && window.location.href || "http://localhost";
76767
77412
 
76768
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/platform/index.js
77413
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/index.js
76769
77414
  var platform_default = __spreadValues(__spreadValues({}, utils_exports), node_default);
76770
77415
 
76771
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/toURLEncodedForm.js
77416
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/toURLEncodedForm.js
76772
77417
  function toURLEncodedForm(data, options) {
76773
77418
  return toFormData_default(data, new platform_default.classes.URLSearchParams(), Object.assign({
76774
77419
  visitor: function(value, key2, path6, helpers) {
@@ -76781,7 +77426,7 @@ function toURLEncodedForm(data, options) {
76781
77426
  }, options));
76782
77427
  }
76783
77428
 
76784
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/formDataToJSON.js
77429
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/formDataToJSON.js
76785
77430
  function parsePropPath(name) {
76786
77431
  return utils_default.matchAll(/\w+|\[(\w*)]/g, name).map((match) => {
76787
77432
  return match[0] === "[]" ? "" : match[1] || match[0];
@@ -76835,7 +77480,7 @@ function formDataToJSON(formData) {
76835
77480
  }
76836
77481
  var formDataToJSON_default = formDataToJSON;
76837
77482
 
76838
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/defaults/index.js
77483
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/defaults/index.js
76839
77484
  function stringifySafely(rawValue, parser, encoder) {
76840
77485
  if (utils_default.isString(rawValue)) {
76841
77486
  try {
@@ -76944,7 +77589,7 @@ utils_default.forEach(["delete", "get", "head", "post", "put", "patch"], (method
76944
77589
  });
76945
77590
  var defaults_default = defaults;
76946
77591
 
76947
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/parseHeaders.js
77592
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/parseHeaders.js
76948
77593
  var ignoreDuplicateOf = utils_default.toObjectSet([
76949
77594
  "age",
76950
77595
  "authorization",
@@ -76989,7 +77634,7 @@ var parseHeaders_default = (rawHeaders) => {
76989
77634
  return parsed;
76990
77635
  };
76991
77636
 
76992
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/AxiosHeaders.js
77637
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/AxiosHeaders.js
76993
77638
  var $internals = Symbol("internals");
76994
77639
  function normalizeHeader(header) {
76995
77640
  return header && String(header).trim().toLowerCase();
@@ -77211,7 +77856,7 @@ utils_default.reduceDescriptors(AxiosHeaders.prototype, ({ value }, key2) => {
77211
77856
  utils_default.freezeMethods(AxiosHeaders);
77212
77857
  var AxiosHeaders_default = AxiosHeaders;
77213
77858
 
77214
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/transformData.js
77859
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/transformData.js
77215
77860
  function transformData(fns, response) {
77216
77861
  const config = this || defaults_default;
77217
77862
  const context = response || config;
@@ -77224,12 +77869,12 @@ function transformData(fns, response) {
77224
77869
  return data;
77225
77870
  }
77226
77871
 
77227
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/cancel/isCancel.js
77872
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/cancel/isCancel.js
77228
77873
  function isCancel(value) {
77229
77874
  return !!(value && value.__CANCEL__);
77230
77875
  }
77231
77876
 
77232
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/cancel/CanceledError.js
77877
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/cancel/CanceledError.js
77233
77878
  function CanceledError(message, config, request) {
77234
77879
  AxiosError_default.call(this, message == null ? "canceled" : message, AxiosError_default.ERR_CANCELED, config, request);
77235
77880
  this.name = "CanceledError";
@@ -77239,7 +77884,7 @@ utils_default.inherits(CanceledError, AxiosError_default, {
77239
77884
  });
77240
77885
  var CanceledError_default = CanceledError;
77241
77886
 
77242
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/settle.js
77887
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/settle.js
77243
77888
  function settle(resolve, reject, response) {
77244
77889
  const validateStatus2 = response.config.validateStatus;
77245
77890
  if (!response.status || !validateStatus2 || validateStatus2(response.status)) {
@@ -77255,17 +77900,17 @@ function settle(resolve, reject, response) {
77255
77900
  }
77256
77901
  }
77257
77902
 
77258
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/isAbsoluteURL.js
77903
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/isAbsoluteURL.js
77259
77904
  function isAbsoluteURL(url2) {
77260
77905
  return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url2);
77261
77906
  }
77262
77907
 
77263
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/combineURLs.js
77908
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/combineURLs.js
77264
77909
  function combineURLs(baseURL, relativeURL) {
77265
77910
  return relativeURL ? baseURL.replace(/\/?\/$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
77266
77911
  }
77267
77912
 
77268
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/buildFullPath.js
77913
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/buildFullPath.js
77269
77914
  function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
77270
77915
  let isRelativeUrl = !isAbsoluteURL(requestedURL);
77271
77916
  if (baseURL && isRelativeUrl || allowAbsoluteUrls == false) {
@@ -77274,7 +77919,7 @@ function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
77274
77919
  return requestedURL;
77275
77920
  }
77276
77921
 
77277
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77922
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77278
77923
  var import_proxy_from_env = __toESM(require_proxy_from_env());
77279
77924
  var import_http = __toESM(require("http"));
77280
77925
  var import_https = __toESM(require("https"));
@@ -77282,16 +77927,16 @@ var import_util2 = __toESM(require("util"));
77282
77927
  var import_follow_redirects = __toESM(require_follow_redirects());
77283
77928
  var import_zlib = __toESM(require("zlib"));
77284
77929
 
77285
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/env/data.js
77286
- var VERSION = "1.8.2";
77930
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/env/data.js
77931
+ var VERSION = "1.8.3";
77287
77932
 
77288
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/parseProtocol.js
77933
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/parseProtocol.js
77289
77934
  function parseProtocol(url2) {
77290
77935
  const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url2);
77291
77936
  return match && match[1] || "";
77292
77937
  }
77293
77938
 
77294
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/fromDataURI.js
77939
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/fromDataURI.js
77295
77940
  var DATA_URL_PATTERN = /^(?:([^;]+);)?(?:[^;]+;)?(base64|),([\s\S]*)$/;
77296
77941
  function fromDataURI(uri, asBlob, options) {
77297
77942
  const _Blob = options && options.Blob || platform_default.classes.Blob;
@@ -77320,10 +77965,10 @@ function fromDataURI(uri, asBlob, options) {
77320
77965
  throw new AxiosError_default("Unsupported protocol " + protocol, AxiosError_default.ERR_NOT_SUPPORT);
77321
77966
  }
77322
77967
 
77323
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77968
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77324
77969
  var import_stream4 = __toESM(require("stream"));
77325
77970
 
77326
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/AxiosTransformStream.js
77971
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/AxiosTransformStream.js
77327
77972
  var import_stream = __toESM(require("stream"));
77328
77973
  var kInternals = Symbol("internals");
77329
77974
  var AxiosTransformStream = class extends import_stream.default.Transform {
@@ -77438,14 +78083,14 @@ var AxiosTransformStream = class extends import_stream.default.Transform {
77438
78083
  };
77439
78084
  var AxiosTransformStream_default = AxiosTransformStream;
77440
78085
 
77441
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/http.js
78086
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77442
78087
  var import_events = require("events");
77443
78088
 
77444
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
78089
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
77445
78090
  var import_util = __toESM(require("util"));
77446
78091
  var import_stream2 = require("stream");
77447
78092
 
77448
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/readBlob.js
78093
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/readBlob.js
77449
78094
  var { asyncIterator } = Symbol;
77450
78095
  var readBlob = function(blob) {
77451
78096
  return __asyncGenerator(this, null, function* () {
@@ -77462,7 +78107,7 @@ var readBlob = function(blob) {
77462
78107
  };
77463
78108
  var readBlob_default = readBlob;
77464
78109
 
77465
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
78110
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
77466
78111
  var BOUNDARY_ALPHABET = platform_default.ALPHABET.ALPHA_DIGIT + "-_";
77467
78112
  var textEncoder = typeof TextEncoder === "function" ? new TextEncoder() : new import_util.default.TextEncoder();
77468
78113
  var CRLF = "\r\n";
@@ -77545,7 +78190,7 @@ var formDataToStream = (form, headersHandler, options) => {
77545
78190
  };
77546
78191
  var formDataToStream_default = formDataToStream;
77547
78192
 
77548
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js
78193
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js
77549
78194
  var import_stream3 = __toESM(require("stream"));
77550
78195
  var ZlibHeaderTransformStream = class extends import_stream3.default.Transform {
77551
78196
  __transform(chunk, encoding, callback) {
@@ -77567,7 +78212,7 @@ var ZlibHeaderTransformStream = class extends import_stream3.default.Transform {
77567
78212
  };
77568
78213
  var ZlibHeaderTransformStream_default = ZlibHeaderTransformStream;
77569
78214
 
77570
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/callbackify.js
78215
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/callbackify.js
77571
78216
  var callbackify = (fn, reducer) => {
77572
78217
  return utils_default.isAsyncFn(fn) ? function(...args) {
77573
78218
  const cb = args.pop();
@@ -77582,7 +78227,7 @@ var callbackify = (fn, reducer) => {
77582
78227
  };
77583
78228
  var callbackify_default = callbackify;
77584
78229
 
77585
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/speedometer.js
78230
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/speedometer.js
77586
78231
  function speedometer(samplesCount, min) {
77587
78232
  samplesCount = samplesCount || 10;
77588
78233
  const bytes = new Array(samplesCount);
@@ -77618,7 +78263,7 @@ function speedometer(samplesCount, min) {
77618
78263
  }
77619
78264
  var speedometer_default = speedometer;
77620
78265
 
77621
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/throttle.js
78266
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/throttle.js
77622
78267
  function throttle(fn, freq) {
77623
78268
  let timestamp = 0;
77624
78269
  let threshold = 1e3 / freq;
@@ -77653,7 +78298,7 @@ function throttle(fn, freq) {
77653
78298
  }
77654
78299
  var throttle_default = throttle;
77655
78300
 
77656
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/progressEventReducer.js
78301
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/progressEventReducer.js
77657
78302
  var progressEventReducer = (listener, isDownloadStream, freq = 3) => {
77658
78303
  let bytesNotified = 0;
77659
78304
  const _speedometer = speedometer_default(50, 250);
@@ -77688,7 +78333,7 @@ var progressEventDecorator = (total, throttled) => {
77688
78333
  };
77689
78334
  var asyncDecorator = (fn) => (...args) => utils_default.asap(() => fn(...args));
77690
78335
 
77691
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/http.js
78336
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/http.js
77692
78337
  var zlibOptions = {
77693
78338
  flush: import_zlib.default.constants.Z_SYNC_FLUSH,
77694
78339
  finishFlush: import_zlib.default.constants.Z_SYNC_FLUSH
@@ -78194,7 +78839,7 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
78194
78839
  });
78195
78840
  };
78196
78841
 
78197
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/isURLSameOrigin.js
78842
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/isURLSameOrigin.js
78198
78843
  var isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? ((origin2, isMSIE) => (url2) => {
78199
78844
  url2 = new URL(url2, platform_default.origin);
78200
78845
  return origin2.protocol === url2.protocol && origin2.host === url2.host && (isMSIE || origin2.port === url2.port);
@@ -78203,7 +78848,7 @@ var isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? ((origin2
78203
78848
  platform_default.navigator && /(msie|trident)/i.test(platform_default.navigator.userAgent)
78204
78849
  ) : () => true;
78205
78850
 
78206
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/cookies.js
78851
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/cookies.js
78207
78852
  var cookies_default = platform_default.hasStandardBrowserEnv ? (
78208
78853
  // Standard browser envs support document.cookie
78209
78854
  {
@@ -78236,7 +78881,7 @@ var cookies_default = platform_default.hasStandardBrowserEnv ? (
78236
78881
  }
78237
78882
  );
78238
78883
 
78239
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/mergeConfig.js
78884
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/mergeConfig.js
78240
78885
  var headersToObject = (thing) => thing instanceof AxiosHeaders_default ? __spreadValues({}, thing) : thing;
78241
78886
  function mergeConfig(config1, config2) {
78242
78887
  config2 = config2 || {};
@@ -78316,12 +78961,12 @@ function mergeConfig(config1, config2) {
78316
78961
  return config;
78317
78962
  }
78318
78963
 
78319
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/resolveConfig.js
78964
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/resolveConfig.js
78320
78965
  var resolveConfig_default = (config) => {
78321
78966
  const newConfig = mergeConfig({}, config);
78322
78967
  let { data, withXSRFToken, xsrfHeaderName, xsrfCookieName, headers, auth } = newConfig;
78323
78968
  newConfig.headers = headers = AxiosHeaders_default.from(headers);
78324
- newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url), config.params, config.paramsSerializer);
78969
+ newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url, newConfig.allowAbsoluteUrls), config.params, config.paramsSerializer);
78325
78970
  if (auth) {
78326
78971
  headers.set(
78327
78972
  "Authorization",
@@ -78349,7 +78994,7 @@ var resolveConfig_default = (config) => {
78349
78994
  return newConfig;
78350
78995
  };
78351
78996
 
78352
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/xhr.js
78997
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/xhr.js
78353
78998
  var isXHRAdapterSupported = typeof XMLHttpRequest !== "undefined";
78354
78999
  var xhr_default = isXHRAdapterSupported && function(config) {
78355
79000
  return new Promise(function dispatchXhrRequest(resolve, reject) {
@@ -78476,7 +79121,7 @@ var xhr_default = isXHRAdapterSupported && function(config) {
78476
79121
  });
78477
79122
  };
78478
79123
 
78479
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/composeSignals.js
79124
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/composeSignals.js
78480
79125
  var composeSignals = (signals, timeout) => {
78481
79126
  const { length } = signals = signals ? signals.filter(Boolean) : [];
78482
79127
  if (timeout || length) {
@@ -78512,7 +79157,7 @@ var composeSignals = (signals, timeout) => {
78512
79157
  };
78513
79158
  var composeSignals_default = composeSignals;
78514
79159
 
78515
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/trackStream.js
79160
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/trackStream.js
78516
79161
  var streamChunk = function* (chunk, chunkSize) {
78517
79162
  let len = chunk.byteLength;
78518
79163
  if (!chunkSize || len < chunkSize) {
@@ -78607,7 +79252,7 @@ var trackStream = (stream4, chunkSize, onProgress, onFinish) => {
78607
79252
  });
78608
79253
  };
78609
79254
 
78610
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/fetch.js
79255
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/fetch.js
78611
79256
  var isFetchSupported = typeof fetch === "function" && typeof Request === "function" && typeof Response === "function";
78612
79257
  var isReadableStreamSupported = isFetchSupported && typeof ReadableStream === "function";
78613
79258
  var encodeText = isFetchSupported && (typeof TextEncoder === "function" ? ((encoder) => (str) => encoder.encode(str))(new TextEncoder()) : (str) => __async(void 0, null, function* () {
@@ -78772,7 +79417,7 @@ var fetch_default = isFetchSupported && ((config) => __async(void 0, null, funct
78772
79417
  }
78773
79418
  }));
78774
79419
 
78775
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/adapters/adapters.js
79420
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/adapters.js
78776
79421
  var knownAdapters = {
78777
79422
  http: http_default,
78778
79423
  xhr: xhr_default,
@@ -78826,7 +79471,7 @@ var adapters_default = {
78826
79471
  adapters: knownAdapters
78827
79472
  };
78828
79473
 
78829
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/dispatchRequest.js
79474
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/dispatchRequest.js
78830
79475
  function throwIfCancellationRequested(config) {
78831
79476
  if (config.cancelToken) {
78832
79477
  config.cancelToken.throwIfRequested();
@@ -78871,7 +79516,7 @@ function dispatchRequest(config) {
78871
79516
  });
78872
79517
  }
78873
79518
 
78874
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/validator.js
79519
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/validator.js
78875
79520
  var validators = {};
78876
79521
  ["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => {
78877
79522
  validators[type] = function validator(thing) {
@@ -78935,7 +79580,7 @@ var validator_default = {
78935
79580
  validators
78936
79581
  };
78937
79582
 
78938
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/core/Axios.js
79583
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/Axios.js
78939
79584
  var validators2 = validator_default.validators;
78940
79585
  var Axios = class {
78941
79586
  constructor(instanceConfig) {
@@ -79110,7 +79755,7 @@ utils_default.forEach(["post", "put", "patch"], function forEachMethodWithData(m
79110
79755
  });
79111
79756
  var Axios_default = Axios;
79112
79757
 
79113
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/cancel/CancelToken.js
79758
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/cancel/CancelToken.js
79114
79759
  var CancelToken = class _CancelToken {
79115
79760
  constructor(executor) {
79116
79761
  if (typeof executor !== "function") {
@@ -79209,19 +79854,19 @@ var CancelToken = class _CancelToken {
79209
79854
  };
79210
79855
  var CancelToken_default = CancelToken;
79211
79856
 
79212
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/spread.js
79857
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/spread.js
79213
79858
  function spread(callback) {
79214
79859
  return function wrap(arr) {
79215
79860
  return callback.apply(null, arr);
79216
79861
  };
79217
79862
  }
79218
79863
 
79219
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/isAxiosError.js
79864
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/isAxiosError.js
79220
79865
  function isAxiosError(payload) {
79221
79866
  return utils_default.isObject(payload) && payload.isAxiosError === true;
79222
79867
  }
79223
79868
 
79224
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/helpers/HttpStatusCode.js
79869
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/HttpStatusCode.js
79225
79870
  var HttpStatusCode = {
79226
79871
  Continue: 100,
79227
79872
  SwitchingProtocols: 101,
@@ -79292,7 +79937,7 @@ Object.entries(HttpStatusCode).forEach(([key2, value]) => {
79292
79937
  });
79293
79938
  var HttpStatusCode_default = HttpStatusCode;
79294
79939
 
79295
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/lib/axios.js
79940
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/axios.js
79296
79941
  function createInstance(defaultConfig) {
79297
79942
  const context = new Axios_default(defaultConfig);
79298
79943
  const instance = bind(Axios_default.prototype.request, context);
@@ -79325,7 +79970,7 @@ axios.HttpStatusCode = HttpStatusCode_default;
79325
79970
  axios.default = axios;
79326
79971
  var axios_default = axios;
79327
79972
 
79328
- // ../../../../node_modules/.pnpm/axios@1.8.2_debug@4.3.7/node_modules/axios/index.js
79973
+ // ../../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/index.js
79329
79974
  var {
79330
79975
  Axios: Axios2,
79331
79976
  AxiosError: AxiosError2,
@@ -79345,7 +79990,7 @@ var {
79345
79990
  mergeConfig: mergeConfig2
79346
79991
  } = axios_default;
79347
79992
 
79348
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmRegistry.js
79993
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmRegistry.js
79349
79994
  function getNpmRegistry() {
79350
79995
  return __async(this, null, function* () {
79351
79996
  const { stdout } = yield (0, import_execa.default)("npm", [
@@ -79357,7 +80002,7 @@ function getNpmRegistry() {
79357
80002
  });
79358
80003
  }
79359
80004
 
79360
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmPackageInfo.js
80005
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmPackageInfo.js
79361
80006
  var NpmPackageInfoCache = /* @__PURE__ */ new Map();
79362
80007
  function getNpmPackageInfoWithCommand(pkgName, pkgVersion, options) {
79363
80008
  return __async(this, null, function* () {
@@ -79408,7 +80053,7 @@ function getNpmPackageInfo(pkgName, pkgVersion, options) {
79408
80053
  });
79409
80054
  }
79410
80055
 
79411
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmVersion.js
80056
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/getNpmVersion.js
79412
80057
  function getNpmVersion(packageName, options) {
79413
80058
  return __async(this, null, function* () {
79414
80059
  const { version = "latest" } = options || {};
@@ -79417,7 +80062,7 @@ function getNpmVersion(packageName, options) {
79417
80062
  });
79418
80063
  }
79419
80064
 
79420
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.6/node_modules/@modern-js/codesmith/dist/esm-node/utils/getPackageInfo.js
80065
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.6.7/node_modules/@modern-js/codesmith/dist/esm-node/utils/getPackageInfo.js
79421
80066
  function getPackageInfo(packageName) {
79422
80067
  if (!packageName) {
79423
80068
  throw new Error("package is not exisit");
@@ -79441,16 +80086,16 @@ function getPackageInfo(packageName) {
79441
80086
  };
79442
80087
  }
79443
80088
 
79444
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/ora.js
80089
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/ora.js
79445
80090
  var import_ora = __toESM(require_ora());
79446
80091
 
79447
- // ../../../../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
80092
+ // ../../../../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
79448
80093
  var import_ejs = __toESM(require_ejs());
79449
80094
  function renderString(template, fullData) {
79450
80095
  return import_ejs.default.render(template, fullData) || "";
79451
80096
  }
79452
80097
 
79453
- // ../../../../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
80098
+ // ../../../../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
79454
80099
  var EjsAPI = class {
79455
80100
  renderTemplate(_0, _1) {
79456
80101
  return __async(this, arguments, function* (templateResource, target, parameters = {}) {
@@ -79485,7 +80130,7 @@ var EjsAPI = class {
79485
80130
  }
79486
80131
  };
79487
80132
 
79488
- // ../../../../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
80133
+ // ../../../../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
79489
80134
  var import_path = __toESM(require("path"));
79490
80135
  var FsAPI = class {
79491
80136
  renderFile(resource, target) {
@@ -79514,7 +80159,7 @@ var FsAPI = class {
79514
80159
  }
79515
80160
  };
79516
80161
 
79517
- // ../../../../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
80162
+ // ../../../../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
79518
80163
  function canUseGit() {
79519
80164
  return __async(this, null, function* () {
79520
80165
  try {
@@ -79598,7 +80243,7 @@ function gitCommit(cwd, commitMessage) {
79598
80243
  });
79599
80244
  }
79600
80245
 
79601
- // ../../../../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
80246
+ // ../../../../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
79602
80247
  var GitAPI = class {
79603
80248
  isInGitRepo() {
79604
80249
  return __async(this, arguments, function* (cwd = this.generatorCore.outputPath) {
@@ -79654,7 +80299,7 @@ var GitAPI = class {
79654
80299
  }
79655
80300
  };
79656
80301
 
79657
- // ../../../../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
80302
+ // ../../../../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
79658
80303
  var import_handlebars = __toESM(require_lib2());
79659
80304
  function renderString2(template, fullData, registers) {
79660
80305
  const helpers = __spreadValues({}, registers === null || registers === void 0 ? void 0 : registers.helpers);
@@ -79664,7 +80309,7 @@ function renderString2(template, fullData, registers) {
79664
80309
  return import_handlebars.default.compile(template)(fullData) || "";
79665
80310
  }
79666
80311
 
79667
- // ../../../../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
80312
+ // ../../../../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
79668
80313
  var HandlebarsAPI = class {
79669
80314
  registerHelp(helpers) {
79670
80315
  return __async(this, null, function* () {
@@ -79821,7 +80466,7 @@ function __generator(thisArg, body) {
79821
80466
  }
79822
80467
  }
79823
80468
 
79824
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/npm.js
80469
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/npm.js
79825
80470
  var import_execa5 = __toESM(require_execa());
79826
80471
  function canUseNvm() {
79827
80472
  return _canUseNvm.apply(this, arguments);
@@ -80042,7 +80687,7 @@ function _canUsePnpm() {
80042
80687
  return _canUsePnpm.apply(this, arguments);
80043
80688
  }
80044
80689
 
80045
- // ../../../../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
80690
+ // ../../../../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
80046
80691
  function execaWithStreamLog(command, args, options) {
80047
80692
  const promise = (0, import_execa.default)(command, args, __spreadProps(__spreadValues({}, options), {
80048
80693
  stdin: "inherit",
@@ -80143,7 +80788,7 @@ function pnpmInstall(_0) {
80143
80788
  });
80144
80789
  }
80145
80790
 
80146
- // ../../../../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
80791
+ // ../../../../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
80147
80792
  var NpmAPI = class {
80148
80793
  npmInstall({ cwd, registryUrl, ignoreScripts }) {
80149
80794
  return npmInstall({
@@ -80171,7 +80816,7 @@ var NpmAPI = class {
80171
80816
  }
80172
80817
  };
80173
80818
 
80174
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.6/node_modules/@modern-js/codesmith-utils/dist/esm/lodash.js
80819
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.7/node_modules/@modern-js/codesmith-utils/dist/esm/lodash.js
80175
80820
  var import_lodash = __toESM(require_lodash());
80176
80821
  var import_lodash2 = __toESM(require_lodash2());
80177
80822
  var import_lodash3 = __toESM(require_lodash3());
@@ -85938,10 +86583,10 @@ var Schema = (
85938
86583
  }()
85939
86584
  );
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/prompt.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/prompt.js
85942
86587
  var import_inquirer = __toESM(require_inquirer());
85943
86588
 
85944
- // ../../../../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
86589
+ // ../../../../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
85945
86590
  function validateSchema(schema) {
85946
86591
  const { type, properties } = schema;
85947
86592
  if (type !== "object") {
@@ -86028,7 +86673,7 @@ function transformForm(schema, configValue = {}, validateMap, initValue) {
86028
86673
  return getQuestionFromSchema(schema, configValue, validateMap, initValue);
86029
86674
  }
86030
86675
 
86031
- // ../../../../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
86676
+ // ../../../../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
86032
86677
  var compileRule = (rule, scope) => {
86033
86678
  const state = Schema.compile(rule, __spreadValues({
86034
86679
  $self: {},
@@ -86128,7 +86773,7 @@ function prompt(_0) {
86128
86773
  });
86129
86774
  }
86130
86775
 
86131
- // ../../../../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
86776
+ // ../../../../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
86132
86777
  var CLIReader = class {
86133
86778
  getAnswers() {
86134
86779
  return this.answers;
@@ -86156,7 +86801,7 @@ var CLIReader = class {
86156
86801
  }
86157
86802
  };
86158
86803
 
86159
- // ../../../../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
86804
+ // ../../../../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
86160
86805
  var import_comment_json = __toESM(require_src3());
86161
86806
  var import_inquirer2 = __toESM(require_inquirer2());
86162
86807
 
@@ -86223,7 +86868,7 @@ var I18n = class {
86223
86868
  }
86224
86869
  };
86225
86870
 
86226
- // ../../../../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
86871
+ // ../../../../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
86227
86872
  var EN_LOCALE = {
86228
86873
  environment: {
86229
86874
  node_version: "The version of Node.js is too low. Please upgrade to the LTS version: https://nodejs.org/",
@@ -86250,7 +86895,7 @@ var EN_LOCALE = {
86250
86895
  }
86251
86896
  };
86252
86897
 
86253
- // ../../../../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
86898
+ // ../../../../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
86254
86899
  var ZH_LOCALE = {
86255
86900
  environment: {
86256
86901
  node_version: "Node.js 版本太低,请升级至 LTS 版本: https://nodejs.org/",
@@ -86277,14 +86922,14 @@ var ZH_LOCALE = {
86277
86922
  }
86278
86923
  };
86279
86924
 
86280
- // ../../../../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
86925
+ // ../../../../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
86281
86926
  var i18n = new I18n();
86282
86927
  var localeKeys = i18n.init("zh", {
86283
86928
  zh: ZH_LOCALE,
86284
86929
  en: EN_LOCALE
86285
86930
  });
86286
86931
 
86287
- // ../../../../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
86932
+ // ../../../../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
86288
86933
  var import_path3 = __toESM(require("path"));
86289
86934
  var NODE_MAJOR_VERSION_MAP = {
86290
86935
  "lts/*": 18,
@@ -86335,7 +86980,7 @@ function checkUseNvm(cwd, logger) {
86335
86980
  });
86336
86981
  }
86337
86982
 
86338
- // ../../../../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
86983
+ // ../../../../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
86339
86984
  function transformInquirerSchema(questions, configValue = {}, validateMap = {}, initValue = {}) {
86340
86985
  for (const question of questions) {
86341
86986
  question.default = initValue[question.name] || question.default;
@@ -86362,7 +87007,7 @@ function transformInquirerSchema(questions, configValue = {}, validateMap = {},
86362
87007
  return questions;
86363
87008
  }
86364
87009
 
86365
- // ../../../../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
87010
+ // ../../../../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
86366
87011
  var AppAPI = class {
86367
87012
  checkEnvironment(nodeVersion) {
86368
87013
  return __async(this, null, function* () {
@@ -86605,11 +87250,11 @@ var AppAPI = class {
86605
87250
  }
86606
87251
  };
86607
87252
 
86608
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.6/node_modules/@modern-js/codesmith-api-json/dist/esm-node/index.js
87253
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.7/node_modules/@modern-js/codesmith-api-json/dist/esm-node/index.js
86609
87254
  var import_comment_json2 = __toESM(require_src3());
86610
87255
  var declarationUpdate = __toESM(require_dist());
86611
87256
 
86612
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.6/node_modules/@modern-js/codesmith-api-json/dist/esm-node/utils/index.js
87257
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.7/node_modules/@modern-js/codesmith-api-json/dist/esm-node/utils/index.js
86613
87258
  function editJson(generatorCore, resource, getNewJsonValue) {
86614
87259
  return __async(this, null, function* () {
86615
87260
  const originJsonValue = yield resource.value();
@@ -86624,7 +87269,7 @@ function editJson(generatorCore, resource, getNewJsonValue) {
86624
87269
  });
86625
87270
  }
86626
87271
 
86627
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.6/node_modules/@modern-js/codesmith-api-json/dist/esm-node/index.js
87272
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-json@2.6.7/node_modules/@modern-js/codesmith-api-json/dist/esm-node/index.js
86628
87273
  var JsonAPI = class {
86629
87274
  get(resource) {
86630
87275
  return __async(this, null, function* () {