@modern-js/upgrade 2.63.0 → 2.63.2
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.
- package/dist/index.js +375 -419
- package/package.json +5 -5
package/dist/index.js
CHANGED
@@ -1040,7 +1040,7 @@ var require_command = __commonJS({
|
|
1040
1040
|
var childProcess = require("child_process");
|
1041
1041
|
var path8 = require("path");
|
1042
1042
|
var fs2 = require("fs");
|
1043
|
-
var
|
1043
|
+
var process2 = require("process");
|
1044
1044
|
var { Argument: Argument2, humanReadableArgName } = require_argument();
|
1045
1045
|
var { CommanderError: CommanderError2 } = require_error();
|
1046
1046
|
var { Help: Help2 } = require_help();
|
@@ -1085,10 +1085,10 @@ var require_command = __commonJS({
|
|
1085
1085
|
this._showHelpAfterError = false;
|
1086
1086
|
this._showSuggestionAfterError = true;
|
1087
1087
|
this._outputConfiguration = {
|
1088
|
-
writeOut: (str) =>
|
1089
|
-
writeErr: (str) =>
|
1090
|
-
getOutHelpWidth: () =>
|
1091
|
-
getErrHelpWidth: () =>
|
1088
|
+
writeOut: (str) => process2.stdout.write(str),
|
1089
|
+
writeErr: (str) => process2.stderr.write(str),
|
1090
|
+
getOutHelpWidth: () => process2.stdout.isTTY ? process2.stdout.columns : void 0,
|
1091
|
+
getErrHelpWidth: () => process2.stderr.isTTY ? process2.stderr.columns : void 0,
|
1092
1092
|
outputError: (str, write) => write(str)
|
1093
1093
|
};
|
1094
1094
|
this._hidden = false;
|
@@ -1442,7 +1442,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
1442
1442
|
if (this._exitCallback) {
|
1443
1443
|
this._exitCallback(new CommanderError2(exitCode, code, message));
|
1444
1444
|
}
|
1445
|
-
|
1445
|
+
process2.exit(exitCode);
|
1446
1446
|
}
|
1447
1447
|
/**
|
1448
1448
|
* Register callback `fn` for the command.
|
@@ -1789,8 +1789,8 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
1789
1789
|
}
|
1790
1790
|
parseOptions = parseOptions || {};
|
1791
1791
|
if (argv === void 0) {
|
1792
|
-
argv =
|
1793
|
-
if (
|
1792
|
+
argv = process2.argv;
|
1793
|
+
if (process2.versions && process2.versions.electron) {
|
1794
1794
|
parseOptions.from = "electron";
|
1795
1795
|
}
|
1796
1796
|
}
|
@@ -1803,7 +1803,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
1803
1803
|
userArgs = argv.slice(2);
|
1804
1804
|
break;
|
1805
1805
|
case "electron":
|
1806
|
-
if (
|
1806
|
+
if (process2.defaultApp) {
|
1807
1807
|
this._scriptPath = argv[1];
|
1808
1808
|
userArgs = argv.slice(2);
|
1809
1809
|
} else {
|
@@ -1912,23 +1912,23 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
1912
1912
|
}
|
1913
1913
|
launchWithNode = sourceExt.includes(path8.extname(executableFile));
|
1914
1914
|
let proc;
|
1915
|
-
if (
|
1915
|
+
if (process2.platform !== "win32") {
|
1916
1916
|
if (launchWithNode) {
|
1917
1917
|
args.unshift(executableFile);
|
1918
|
-
args = incrementNodeInspectorPort(
|
1919
|
-
proc = childProcess.spawn(
|
1918
|
+
args = incrementNodeInspectorPort(process2.execArgv).concat(args);
|
1919
|
+
proc = childProcess.spawn(process2.argv[0], args, { stdio: "inherit" });
|
1920
1920
|
} else {
|
1921
1921
|
proc = childProcess.spawn(executableFile, args, { stdio: "inherit" });
|
1922
1922
|
}
|
1923
1923
|
} else {
|
1924
1924
|
args.unshift(executableFile);
|
1925
|
-
args = incrementNodeInspectorPort(
|
1926
|
-
proc = childProcess.spawn(
|
1925
|
+
args = incrementNodeInspectorPort(process2.execArgv).concat(args);
|
1926
|
+
proc = childProcess.spawn(process2.execPath, args, { stdio: "inherit" });
|
1927
1927
|
}
|
1928
1928
|
if (!proc.killed) {
|
1929
1929
|
const signals = ["SIGUSR1", "SIGUSR2", "SIGTERM", "SIGINT", "SIGHUP"];
|
1930
1930
|
signals.forEach((signal) => {
|
1931
|
-
|
1931
|
+
process2.on(signal, () => {
|
1932
1932
|
if (proc.killed === false && proc.exitCode === null) {
|
1933
1933
|
proc.kill(signal);
|
1934
1934
|
}
|
@@ -1937,10 +1937,10 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
1937
1937
|
}
|
1938
1938
|
const exitCallback = this._exitCallback;
|
1939
1939
|
if (!exitCallback) {
|
1940
|
-
proc.on("close",
|
1940
|
+
proc.on("close", process2.exit.bind(process2));
|
1941
1941
|
} else {
|
1942
1942
|
proc.on("close", () => {
|
1943
|
-
exitCallback(new CommanderError2(
|
1943
|
+
exitCallback(new CommanderError2(process2.exitCode || 0, "commander.executeSubCommandAsync", "(close)"));
|
1944
1944
|
});
|
1945
1945
|
}
|
1946
1946
|
proc.on("error", (err) => {
|
@@ -1955,7 +1955,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
1955
1955
|
throw new Error(`'${executableFile}' not executable`);
|
1956
1956
|
}
|
1957
1957
|
if (!exitCallback) {
|
1958
|
-
|
1958
|
+
process2.exit(1);
|
1959
1959
|
} else {
|
1960
1960
|
const wrappedError = new CommanderError2(1, "commander.executeSubCommandAsync", "(error)");
|
1961
1961
|
wrappedError.nestedError = err;
|
@@ -2421,11 +2421,11 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
2421
2421
|
*/
|
2422
2422
|
_parseOptionsEnv() {
|
2423
2423
|
this.options.forEach((option) => {
|
2424
|
-
if (option.envVar && option.envVar in
|
2424
|
+
if (option.envVar && option.envVar in process2.env) {
|
2425
2425
|
const optionKey = option.attributeName();
|
2426
2426
|
if (this.getOptionValue(optionKey) === void 0 || ["default", "config", "env"].includes(this.getOptionValueSource(optionKey))) {
|
2427
2427
|
if (option.required || option.optional) {
|
2428
|
-
this.emit(`optionEnv:${option.name()}`,
|
2428
|
+
this.emit(`optionEnv:${option.name()}`, process2.env[option.envVar]);
|
2429
2429
|
} else {
|
2430
2430
|
this.emit(`optionEnv:${option.name()}`);
|
2431
2431
|
}
|
@@ -2812,7 +2812,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
2812
2812
|
*/
|
2813
2813
|
help(contextOptions) {
|
2814
2814
|
this.outputHelp(contextOptions);
|
2815
|
-
let exitCode =
|
2815
|
+
let exitCode = process2.exitCode || 0;
|
2816
2816
|
if (exitCode === 0 && contextOptions && typeof contextOptions !== "function" && contextOptions.error) {
|
2817
2817
|
exitCode = 1;
|
2818
2818
|
}
|
@@ -9545,26 +9545,26 @@ var require_has_flag = __commonJS({
|
|
9545
9545
|
var require_supports_color = __commonJS({
|
9546
9546
|
"../../../node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color/index.js"(exports, module2) {
|
9547
9547
|
"use strict";
|
9548
|
-
var
|
9549
|
-
var
|
9550
|
-
var
|
9551
|
-
var { env
|
9548
|
+
var os2 = require("os");
|
9549
|
+
var tty = require("tty");
|
9550
|
+
var hasFlag = require_has_flag();
|
9551
|
+
var { env } = process;
|
9552
9552
|
var forceColor;
|
9553
|
-
if (
|
9553
|
+
if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false") || hasFlag("color=never")) {
|
9554
9554
|
forceColor = 0;
|
9555
|
-
} else if (
|
9555
|
+
} else if (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) {
|
9556
9556
|
forceColor = 1;
|
9557
9557
|
}
|
9558
|
-
if ("FORCE_COLOR" in
|
9559
|
-
if (
|
9558
|
+
if ("FORCE_COLOR" in env) {
|
9559
|
+
if (env.FORCE_COLOR === "true") {
|
9560
9560
|
forceColor = 1;
|
9561
|
-
} else if (
|
9561
|
+
} else if (env.FORCE_COLOR === "false") {
|
9562
9562
|
forceColor = 0;
|
9563
9563
|
} else {
|
9564
|
-
forceColor =
|
9564
|
+
forceColor = env.FORCE_COLOR.length === 0 ? 1 : Math.min(parseInt(env.FORCE_COLOR, 10), 3);
|
9565
9565
|
}
|
9566
9566
|
}
|
9567
|
-
function
|
9567
|
+
function translateLevel(level) {
|
9568
9568
|
if (level === 0) {
|
9569
9569
|
return false;
|
9570
9570
|
}
|
@@ -9575,70 +9575,70 @@ var require_supports_color = __commonJS({
|
|
9575
9575
|
has16m: level >= 3
|
9576
9576
|
};
|
9577
9577
|
}
|
9578
|
-
function
|
9578
|
+
function supportsColor(haveStream, streamIsTTY) {
|
9579
9579
|
if (forceColor === 0) {
|
9580
9580
|
return 0;
|
9581
9581
|
}
|
9582
|
-
if (
|
9582
|
+
if (hasFlag("color=16m") || hasFlag("color=full") || hasFlag("color=truecolor")) {
|
9583
9583
|
return 3;
|
9584
9584
|
}
|
9585
|
-
if (
|
9585
|
+
if (hasFlag("color=256")) {
|
9586
9586
|
return 2;
|
9587
9587
|
}
|
9588
9588
|
if (haveStream && !streamIsTTY && forceColor === void 0) {
|
9589
9589
|
return 0;
|
9590
9590
|
}
|
9591
9591
|
const min = forceColor || 0;
|
9592
|
-
if (
|
9592
|
+
if (env.TERM === "dumb") {
|
9593
9593
|
return min;
|
9594
9594
|
}
|
9595
9595
|
if (process.platform === "win32") {
|
9596
|
-
const osRelease =
|
9596
|
+
const osRelease = os2.release().split(".");
|
9597
9597
|
if (Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
|
9598
9598
|
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
9599
9599
|
}
|
9600
9600
|
return 1;
|
9601
9601
|
}
|
9602
|
-
if ("CI" in
|
9603
|
-
if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI", "GITHUB_ACTIONS", "BUILDKITE"].some((sign) => sign in
|
9602
|
+
if ("CI" in env) {
|
9603
|
+
if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI", "GITHUB_ACTIONS", "BUILDKITE"].some((sign) => sign in env) || env.CI_NAME === "codeship") {
|
9604
9604
|
return 1;
|
9605
9605
|
}
|
9606
9606
|
return min;
|
9607
9607
|
}
|
9608
|
-
if ("TEAMCITY_VERSION" in
|
9609
|
-
return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(
|
9608
|
+
if ("TEAMCITY_VERSION" in env) {
|
9609
|
+
return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
|
9610
9610
|
}
|
9611
|
-
if (
|
9611
|
+
if (env.COLORTERM === "truecolor") {
|
9612
9612
|
return 3;
|
9613
9613
|
}
|
9614
|
-
if ("TERM_PROGRAM" in
|
9615
|
-
const version = parseInt((
|
9616
|
-
switch (
|
9614
|
+
if ("TERM_PROGRAM" in env) {
|
9615
|
+
const version = parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
|
9616
|
+
switch (env.TERM_PROGRAM) {
|
9617
9617
|
case "iTerm.app":
|
9618
9618
|
return version >= 3 ? 3 : 2;
|
9619
9619
|
case "Apple_Terminal":
|
9620
9620
|
return 2;
|
9621
9621
|
}
|
9622
9622
|
}
|
9623
|
-
if (/-256(color)?$/i.test(
|
9623
|
+
if (/-256(color)?$/i.test(env.TERM)) {
|
9624
9624
|
return 2;
|
9625
9625
|
}
|
9626
|
-
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(
|
9626
|
+
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
|
9627
9627
|
return 1;
|
9628
9628
|
}
|
9629
|
-
if ("COLORTERM" in
|
9629
|
+
if ("COLORTERM" in env) {
|
9630
9630
|
return 1;
|
9631
9631
|
}
|
9632
9632
|
return min;
|
9633
9633
|
}
|
9634
9634
|
function getSupportLevel(stream4) {
|
9635
|
-
const level =
|
9636
|
-
return
|
9635
|
+
const level = supportsColor(stream4, stream4 && stream4.isTTY);
|
9636
|
+
return translateLevel(level);
|
9637
9637
|
}
|
9638
9638
|
module2.exports = {
|
9639
9639
|
supportsColor: getSupportLevel,
|
9640
|
-
stdout:
|
9641
|
-
stderr:
|
9640
|
+
stdout: translateLevel(supportsColor(true, tty.isatty(1))),
|
9641
|
+
stderr: translateLevel(supportsColor(true, tty.isatty(2)))
|
9642
9642
|
};
|
9643
9643
|
}
|
9644
9644
|
});
|
@@ -10099,11 +10099,11 @@ var require_ms = __commonJS({
|
|
10099
10099
|
}
|
10100
10100
|
});
|
10101
10101
|
|
10102
|
-
// ../../../node_modules/.pnpm/debug@4.3.7_supports-color@
|
10102
|
+
// ../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/common.js
|
10103
10103
|
var require_common = __commonJS({
|
10104
|
-
"../../../node_modules/.pnpm/debug@4.3.7_supports-color@
|
10104
|
+
"../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/common.js"(exports, module2) {
|
10105
10105
|
"use strict";
|
10106
|
-
function setup(
|
10106
|
+
function setup(env) {
|
10107
10107
|
createDebug.debug = createDebug;
|
10108
10108
|
createDebug.default = createDebug;
|
10109
10109
|
createDebug.coerce = coerce;
|
@@ -10112,8 +10112,8 @@ var require_common = __commonJS({
|
|
10112
10112
|
createDebug.enabled = enabled;
|
10113
10113
|
createDebug.humanize = require_ms();
|
10114
10114
|
createDebug.destroy = destroy;
|
10115
|
-
Object.keys(
|
10116
|
-
createDebug[key] =
|
10115
|
+
Object.keys(env).forEach((key) => {
|
10116
|
+
createDebug[key] = env[key];
|
10117
10117
|
});
|
10118
10118
|
createDebug.names = [];
|
10119
10119
|
createDebug.skips = [];
|
@@ -10263,9 +10263,9 @@ var require_common = __commonJS({
|
|
10263
10263
|
}
|
10264
10264
|
});
|
10265
10265
|
|
10266
|
-
// ../../../node_modules/.pnpm/debug@4.3.7_supports-color@
|
10266
|
+
// ../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/browser.js
|
10267
10267
|
var require_browser = __commonJS({
|
10268
|
-
"../../../node_modules/.pnpm/debug@4.3.7_supports-color@
|
10268
|
+
"../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/browser.js"(exports, module2) {
|
10269
10269
|
"use strict";
|
10270
10270
|
exports.formatArgs = formatArgs;
|
10271
10271
|
exports.save = save;
|
@@ -10434,162 +10434,136 @@ var require_browser = __commonJS({
|
|
10434
10434
|
}
|
10435
10435
|
});
|
10436
10436
|
|
10437
|
-
// ../../../node_modules/.pnpm/
|
10438
|
-
var
|
10439
|
-
|
10440
|
-
|
10441
|
-
|
10442
|
-
|
10443
|
-
|
10444
|
-
|
10445
|
-
|
10446
|
-
|
10447
|
-
|
10448
|
-
}
|
10449
|
-
function envForceColor() {
|
10450
|
-
if ("FORCE_COLOR" in env) {
|
10451
|
-
if (env.FORCE_COLOR === "true") {
|
10452
|
-
return 1;
|
10453
|
-
}
|
10454
|
-
if (env.FORCE_COLOR === "false") {
|
10455
|
-
return 0;
|
10456
|
-
}
|
10457
|
-
return env.FORCE_COLOR.length === 0 ? 1 : Math.min(Number.parseInt(env.FORCE_COLOR, 10), 3);
|
10458
|
-
}
|
10459
|
-
}
|
10460
|
-
function translateLevel(level) {
|
10461
|
-
if (level === 0) {
|
10462
|
-
return false;
|
10463
|
-
}
|
10464
|
-
return {
|
10465
|
-
level,
|
10466
|
-
hasBasic: true,
|
10467
|
-
has256: level >= 2,
|
10468
|
-
has16m: level >= 3
|
10469
|
-
};
|
10470
|
-
}
|
10471
|
-
function _supportsColor(haveStream, { streamIsTTY, sniffFlags = true } = {}) {
|
10472
|
-
const noFlagForceColor = envForceColor();
|
10473
|
-
if (noFlagForceColor !== void 0) {
|
10474
|
-
flagForceColor = noFlagForceColor;
|
10475
|
-
}
|
10476
|
-
const forceColor = sniffFlags ? flagForceColor : noFlagForceColor;
|
10477
|
-
if (forceColor === 0) {
|
10478
|
-
return 0;
|
10479
|
-
}
|
10480
|
-
if (sniffFlags) {
|
10481
|
-
if (hasFlag("color=16m") || hasFlag("color=full") || hasFlag("color=truecolor")) {
|
10482
|
-
return 3;
|
10483
|
-
}
|
10484
|
-
if (hasFlag("color=256")) {
|
10485
|
-
return 2;
|
10486
|
-
}
|
10487
|
-
}
|
10488
|
-
if ("TF_BUILD" in env && "AGENT_NAME" in env) {
|
10489
|
-
return 1;
|
10490
|
-
}
|
10491
|
-
if (haveStream && !streamIsTTY && forceColor === void 0) {
|
10492
|
-
return 0;
|
10493
|
-
}
|
10494
|
-
const min = forceColor || 0;
|
10495
|
-
if (env.TERM === "dumb") {
|
10496
|
-
return min;
|
10437
|
+
// ../../../node_modules/.pnpm/has-flag@3.0.0/node_modules/has-flag/index.js
|
10438
|
+
var require_has_flag2 = __commonJS({
|
10439
|
+
"../../../node_modules/.pnpm/has-flag@3.0.0/node_modules/has-flag/index.js"(exports, module2) {
|
10440
|
+
"use strict";
|
10441
|
+
module2.exports = (flag, argv) => {
|
10442
|
+
argv = argv || process.argv;
|
10443
|
+
const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
|
10444
|
+
const pos = argv.indexOf(prefix + flag);
|
10445
|
+
const terminatorPos = argv.indexOf("--");
|
10446
|
+
return pos !== -1 && (terminatorPos === -1 ? true : pos < terminatorPos);
|
10447
|
+
};
|
10497
10448
|
}
|
10498
|
-
|
10499
|
-
|
10500
|
-
|
10501
|
-
|
10449
|
+
});
|
10450
|
+
|
10451
|
+
// ../../../node_modules/.pnpm/supports-color@5.5.0/node_modules/supports-color/index.js
|
10452
|
+
var require_supports_color2 = __commonJS({
|
10453
|
+
"../../../node_modules/.pnpm/supports-color@5.5.0/node_modules/supports-color/index.js"(exports, module2) {
|
10454
|
+
"use strict";
|
10455
|
+
var os2 = require("os");
|
10456
|
+
var hasFlag = require_has_flag2();
|
10457
|
+
var env = process.env;
|
10458
|
+
var forceColor;
|
10459
|
+
if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false")) {
|
10460
|
+
forceColor = false;
|
10461
|
+
} else if (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) {
|
10462
|
+
forceColor = true;
|
10502
10463
|
}
|
10503
|
-
|
10504
|
-
|
10505
|
-
if ("CI" in env) {
|
10506
|
-
if ("GITHUB_ACTIONS" in env) {
|
10507
|
-
return 3;
|
10464
|
+
if ("FORCE_COLOR" in env) {
|
10465
|
+
forceColor = env.FORCE_COLOR.length === 0 || parseInt(env.FORCE_COLOR, 10) !== 0;
|
10508
10466
|
}
|
10509
|
-
|
10510
|
-
|
10467
|
+
function translateLevel(level) {
|
10468
|
+
if (level === 0) {
|
10469
|
+
return false;
|
10470
|
+
}
|
10471
|
+
return {
|
10472
|
+
level,
|
10473
|
+
hasBasic: true,
|
10474
|
+
has256: level >= 2,
|
10475
|
+
has16m: level >= 3
|
10476
|
+
};
|
10511
10477
|
}
|
10512
|
-
|
10513
|
-
|
10514
|
-
|
10515
|
-
|
10516
|
-
|
10517
|
-
|
10518
|
-
|
10519
|
-
|
10520
|
-
|
10521
|
-
|
10522
|
-
|
10523
|
-
|
10524
|
-
|
10525
|
-
|
10526
|
-
|
10527
|
-
|
10478
|
+
function supportsColor(stream4) {
|
10479
|
+
if (forceColor === false) {
|
10480
|
+
return 0;
|
10481
|
+
}
|
10482
|
+
if (hasFlag("color=16m") || hasFlag("color=full") || hasFlag("color=truecolor")) {
|
10483
|
+
return 3;
|
10484
|
+
}
|
10485
|
+
if (hasFlag("color=256")) {
|
10486
|
+
return 2;
|
10487
|
+
}
|
10488
|
+
if (stream4 && !stream4.isTTY && forceColor !== true) {
|
10489
|
+
return 0;
|
10490
|
+
}
|
10491
|
+
const min = forceColor ? 1 : 0;
|
10492
|
+
if (process.platform === "win32") {
|
10493
|
+
const osRelease = os2.release().split(".");
|
10494
|
+
if (Number(process.versions.node.split(".")[0]) >= 8 && Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
|
10495
|
+
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
10496
|
+
}
|
10497
|
+
return 1;
|
10498
|
+
}
|
10499
|
+
if ("CI" in env) {
|
10500
|
+
if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI"].some((sign) => sign in env) || env.CI_NAME === "codeship") {
|
10501
|
+
return 1;
|
10502
|
+
}
|
10503
|
+
return min;
|
10504
|
+
}
|
10505
|
+
if ("TEAMCITY_VERSION" in env) {
|
10506
|
+
return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
|
10507
|
+
}
|
10508
|
+
if (env.COLORTERM === "truecolor") {
|
10509
|
+
return 3;
|
10510
|
+
}
|
10511
|
+
if ("TERM_PROGRAM" in env) {
|
10512
|
+
const version = parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
|
10513
|
+
switch (env.TERM_PROGRAM) {
|
10514
|
+
case "iTerm.app":
|
10515
|
+
return version >= 3 ? 3 : 2;
|
10516
|
+
case "Apple_Terminal":
|
10517
|
+
return 2;
|
10518
|
+
}
|
10528
10519
|
}
|
10529
|
-
|
10520
|
+
if (/-256(color)?$/i.test(env.TERM)) {
|
10530
10521
|
return 2;
|
10531
10522
|
}
|
10523
|
+
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
|
10524
|
+
return 1;
|
10525
|
+
}
|
10526
|
+
if ("COLORTERM" in env) {
|
10527
|
+
return 1;
|
10528
|
+
}
|
10529
|
+
if (env.TERM === "dumb") {
|
10530
|
+
return min;
|
10531
|
+
}
|
10532
|
+
return min;
|
10532
10533
|
}
|
10533
|
-
|
10534
|
-
|
10535
|
-
|
10536
|
-
}
|
10537
|
-
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
|
10538
|
-
return 1;
|
10539
|
-
}
|
10540
|
-
if ("COLORTERM" in env) {
|
10541
|
-
return 1;
|
10542
|
-
}
|
10543
|
-
return min;
|
10544
|
-
}
|
10545
|
-
function createSupportsColor(stream4, options = {}) {
|
10546
|
-
const level = _supportsColor(stream4, __spreadValues({
|
10547
|
-
streamIsTTY: stream4 && stream4.isTTY
|
10548
|
-
}, options));
|
10549
|
-
return translateLevel(level);
|
10550
|
-
}
|
10551
|
-
var import_node_process, import_node_os, import_node_tty, env, flagForceColor, supportsColor, supports_color_default;
|
10552
|
-
var init_supports_color = __esm({
|
10553
|
-
"../../../node_modules/.pnpm/supports-color@9.3.1/node_modules/supports-color/index.js"() {
|
10554
|
-
"use strict";
|
10555
|
-
import_node_process = __toESM(require("process"));
|
10556
|
-
import_node_os = __toESM(require("os"));
|
10557
|
-
import_node_tty = __toESM(require("tty"));
|
10558
|
-
({ env } = import_node_process.default);
|
10559
|
-
if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false") || hasFlag("color=never")) {
|
10560
|
-
flagForceColor = 0;
|
10561
|
-
} else if (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) {
|
10562
|
-
flagForceColor = 1;
|
10534
|
+
function getSupportLevel(stream4) {
|
10535
|
+
const level = supportsColor(stream4);
|
10536
|
+
return translateLevel(level);
|
10563
10537
|
}
|
10564
|
-
|
10565
|
-
|
10566
|
-
|
10538
|
+
module2.exports = {
|
10539
|
+
supportsColor: getSupportLevel,
|
10540
|
+
stdout: getSupportLevel(process.stdout),
|
10541
|
+
stderr: getSupportLevel(process.stderr)
|
10567
10542
|
};
|
10568
|
-
supports_color_default = supportsColor;
|
10569
10543
|
}
|
10570
10544
|
});
|
10571
10545
|
|
10572
|
-
// ../../../node_modules/.pnpm/debug@4.3.7_supports-color@
|
10546
|
+
// ../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/node.js
|
10573
10547
|
var require_node = __commonJS({
|
10574
|
-
"../../../node_modules/.pnpm/debug@4.3.7_supports-color@
|
10548
|
+
"../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/node.js"(exports, module2) {
|
10575
10549
|
"use strict";
|
10576
|
-
var
|
10577
|
-
var
|
10550
|
+
var tty = require("tty");
|
10551
|
+
var util3 = require("util");
|
10578
10552
|
exports.init = init;
|
10579
10553
|
exports.log = log;
|
10580
10554
|
exports.formatArgs = formatArgs;
|
10581
10555
|
exports.save = save;
|
10582
10556
|
exports.load = load;
|
10583
10557
|
exports.useColors = useColors;
|
10584
|
-
exports.destroy =
|
10558
|
+
exports.destroy = util3.deprecate(
|
10585
10559
|
() => {
|
10586
10560
|
},
|
10587
10561
|
"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."
|
10588
10562
|
);
|
10589
10563
|
exports.colors = [6, 2, 3, 4, 5, 1];
|
10590
10564
|
try {
|
10591
|
-
const
|
10592
|
-
if (
|
10565
|
+
const supportsColor = require_supports_color2();
|
10566
|
+
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
10593
10567
|
exports.colors = [
|
10594
10568
|
20,
|
10595
10569
|
21,
|
@@ -10691,7 +10665,7 @@ var require_node = __commonJS({
|
|
10691
10665
|
return obj;
|
10692
10666
|
}, {});
|
10693
10667
|
function useColors() {
|
10694
|
-
return "colors" in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) :
|
10668
|
+
return "colors" in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty.isatty(process.stderr.fd);
|
10695
10669
|
}
|
10696
10670
|
function formatArgs(args) {
|
10697
10671
|
const { namespace: name, useColors: useColors2 } = this;
|
@@ -10712,7 +10686,7 @@ var require_node = __commonJS({
|
|
10712
10686
|
return (/* @__PURE__ */ new Date()).toISOString() + " ";
|
10713
10687
|
}
|
10714
10688
|
function log(...args) {
|
10715
|
-
return process.stderr.write(
|
10689
|
+
return process.stderr.write(util3.formatWithOptions(exports.inspectOpts, ...args) + "\n");
|
10716
10690
|
}
|
10717
10691
|
function save(namespaces) {
|
10718
10692
|
if (namespaces) {
|
@@ -10735,18 +10709,18 @@ var require_node = __commonJS({
|
|
10735
10709
|
var { formatters } = module2.exports;
|
10736
10710
|
formatters.o = function(v) {
|
10737
10711
|
this.inspectOpts.colors = this.useColors;
|
10738
|
-
return
|
10712
|
+
return util3.inspect(v, this.inspectOpts).split("\n").map((str) => str.trim()).join(" ");
|
10739
10713
|
};
|
10740
10714
|
formatters.O = function(v) {
|
10741
10715
|
this.inspectOpts.colors = this.useColors;
|
10742
|
-
return
|
10716
|
+
return util3.inspect(v, this.inspectOpts);
|
10743
10717
|
};
|
10744
10718
|
}
|
10745
10719
|
});
|
10746
10720
|
|
10747
|
-
// ../../../node_modules/.pnpm/debug@4.3.7_supports-color@
|
10721
|
+
// ../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/index.js
|
10748
10722
|
var require_src = __commonJS({
|
10749
|
-
"../../../node_modules/.pnpm/debug@4.3.7_supports-color@
|
10723
|
+
"../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/index.js"(exports, module2) {
|
10750
10724
|
"use strict";
|
10751
10725
|
if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
|
10752
10726
|
module2.exports = require_browser();
|
@@ -11951,14 +11925,14 @@ var require_inherits = __commonJS({
|
|
11951
11925
|
"../../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits.js"(exports, module2) {
|
11952
11926
|
"use strict";
|
11953
11927
|
try {
|
11954
|
-
|
11955
|
-
if (typeof
|
11928
|
+
util3 = require("util");
|
11929
|
+
if (typeof util3.inherits !== "function")
|
11956
11930
|
throw "";
|
11957
|
-
module2.exports =
|
11931
|
+
module2.exports = util3.inherits;
|
11958
11932
|
} catch (e) {
|
11959
11933
|
module2.exports = require_inherits_browser();
|
11960
11934
|
}
|
11961
|
-
var
|
11935
|
+
var util3;
|
11962
11936
|
}
|
11963
11937
|
});
|
11964
11938
|
|
@@ -12186,7 +12160,7 @@ var require_sync = __commonJS({
|
|
12186
12160
|
var minimatch = require_minimatch();
|
12187
12161
|
var Minimatch = minimatch.Minimatch;
|
12188
12162
|
var Glob = require_glob().Glob;
|
12189
|
-
var
|
12163
|
+
var util3 = require("util");
|
12190
12164
|
var path8 = require("path");
|
12191
12165
|
var assert = require("assert");
|
12192
12166
|
var isAbsolute = require_path_is_absolute();
|
@@ -12671,7 +12645,7 @@ var require_glob = __commonJS({
|
|
12671
12645
|
var setopts = common.setopts;
|
12672
12646
|
var ownProp = common.ownProp;
|
12673
12647
|
var inflight = require_inflight();
|
12674
|
-
var
|
12648
|
+
var util3 = require("util");
|
12675
12649
|
var childrenIgnored = common.childrenIgnored;
|
12676
12650
|
var isIgnored = common.isIgnored;
|
12677
12651
|
var once = require_once();
|
@@ -13695,7 +13669,7 @@ var require_graceful_fs = __commonJS({
|
|
13695
13669
|
var polyfills = require_polyfills();
|
13696
13670
|
var legacy = require_legacy_streams();
|
13697
13671
|
var clone = require_clone();
|
13698
|
-
var
|
13672
|
+
var util3 = require("util");
|
13699
13673
|
var gracefulQueue;
|
13700
13674
|
var previousSymbol;
|
13701
13675
|
if (typeof Symbol === "function" && typeof Symbol.for === "function") {
|
@@ -13715,11 +13689,11 @@ var require_graceful_fs = __commonJS({
|
|
13715
13689
|
});
|
13716
13690
|
}
|
13717
13691
|
var debug2 = noop2;
|
13718
|
-
if (
|
13719
|
-
debug2 =
|
13692
|
+
if (util3.debuglog)
|
13693
|
+
debug2 = util3.debuglog("gfs4");
|
13720
13694
|
else if (/\bgfs4\b/i.test(process.env.NODE_DEBUG || ""))
|
13721
13695
|
debug2 = function() {
|
13722
|
-
var m =
|
13696
|
+
var m = util3.format.apply(util3, arguments);
|
13723
13697
|
m = "GFS4: " + m.split(/\n/).join("\nGFS4: ");
|
13724
13698
|
console.error(m);
|
13725
13699
|
};
|
@@ -14273,7 +14247,7 @@ var require_stat = __commonJS({
|
|
14273
14247
|
"use strict";
|
14274
14248
|
var fs2 = require_fs2();
|
14275
14249
|
var path8 = require("path");
|
14276
|
-
var
|
14250
|
+
var util3 = require("util");
|
14277
14251
|
function getStats(src, dest, opts) {
|
14278
14252
|
const statFunc = opts.dereference ? (file) => fs2.stat(file, { bigint: true }) : (file) => fs2.lstat(file, { bigint: true });
|
14279
14253
|
return Promise.all([
|
@@ -14299,7 +14273,7 @@ var require_stat = __commonJS({
|
|
14299
14273
|
return { srcStat, destStat };
|
14300
14274
|
}
|
14301
14275
|
function checkPaths(src, dest, funcName, opts, cb) {
|
14302
|
-
|
14276
|
+
util3.callbackify(getStats)(src, dest, opts, (err, stats) => {
|
14303
14277
|
if (err)
|
14304
14278
|
return cb(err);
|
14305
14279
|
const { srcStat, destStat } = stats;
|
@@ -16214,7 +16188,7 @@ var require_resolveCommand = __commonJS({
|
|
16214
16188
|
var which = require_which();
|
16215
16189
|
var getPathKey = require_path_key();
|
16216
16190
|
function resolveCommandAttempt(parsed, withoutPathExt) {
|
16217
|
-
const
|
16191
|
+
const env = parsed.options.env || process.env;
|
16218
16192
|
const cwd = process.cwd();
|
16219
16193
|
const hasCustomCwd = parsed.options.cwd != null;
|
16220
16194
|
const shouldSwitchCwd = hasCustomCwd && process.chdir !== void 0 && !process.chdir.disabled;
|
@@ -16227,7 +16201,7 @@ var require_resolveCommand = __commonJS({
|
|
16227
16201
|
let resolved;
|
16228
16202
|
try {
|
16229
16203
|
resolved = which.sync(parsed.command, {
|
16230
|
-
path:
|
16204
|
+
path: env[getPathKey({ env })],
|
16231
16205
|
pathExt: withoutPathExt ? path8.delimiter : void 0
|
16232
16206
|
});
|
16233
16207
|
} catch (e) {
|
@@ -16510,11 +16484,11 @@ var require_npm_run_path = __commonJS({
|
|
16510
16484
|
options = __spreadValues({
|
16511
16485
|
env: process.env
|
16512
16486
|
}, options);
|
16513
|
-
const
|
16514
|
-
const path9 = pathKey({ env
|
16515
|
-
options.path =
|
16516
|
-
|
16517
|
-
return
|
16487
|
+
const env = __spreadValues({}, options.env);
|
16488
|
+
const path9 = pathKey({ env });
|
16489
|
+
options.path = env[path9];
|
16490
|
+
env[path9] = module2.exports(options);
|
16491
|
+
return env;
|
16518
16492
|
};
|
16519
16493
|
}
|
16520
16494
|
});
|
@@ -17130,11 +17104,11 @@ var require_signals2 = __commonJS({
|
|
17130
17104
|
var require_signal_exit = __commonJS({
|
17131
17105
|
"../../../node_modules/.pnpm/signal-exit@3.0.7/node_modules/signal-exit/index.js"(exports, module2) {
|
17132
17106
|
"use strict";
|
17133
|
-
var
|
17134
|
-
var processOk = function(
|
17135
|
-
return
|
17107
|
+
var process2 = global.process;
|
17108
|
+
var processOk = function(process3) {
|
17109
|
+
return process3 && typeof process3 === "object" && typeof process3.removeListener === "function" && typeof process3.emit === "function" && typeof process3.reallyExit === "function" && typeof process3.listeners === "function" && typeof process3.kill === "function" && typeof process3.pid === "number" && typeof process3.on === "function";
|
17136
17110
|
};
|
17137
|
-
if (!processOk(
|
17111
|
+
if (!processOk(process2)) {
|
17138
17112
|
module2.exports = function() {
|
17139
17113
|
return function() {
|
17140
17114
|
};
|
@@ -17142,15 +17116,15 @@ var require_signal_exit = __commonJS({
|
|
17142
17116
|
} else {
|
17143
17117
|
assert = require("assert");
|
17144
17118
|
signals = require_signals2();
|
17145
|
-
isWin = /^win/i.test(
|
17119
|
+
isWin = /^win/i.test(process2.platform);
|
17146
17120
|
EE = require("events");
|
17147
17121
|
if (typeof EE !== "function") {
|
17148
17122
|
EE = EE.EventEmitter;
|
17149
17123
|
}
|
17150
|
-
if (
|
17151
|
-
emitter =
|
17124
|
+
if (process2.__signal_exit_emitter__) {
|
17125
|
+
emitter = process2.__signal_exit_emitter__;
|
17152
17126
|
} else {
|
17153
|
-
emitter =
|
17127
|
+
emitter = process2.__signal_exit_emitter__ = new EE();
|
17154
17128
|
emitter.count = 0;
|
17155
17129
|
emitter.emitted = {};
|
17156
17130
|
}
|
@@ -17187,12 +17161,12 @@ var require_signal_exit = __commonJS({
|
|
17187
17161
|
loaded = false;
|
17188
17162
|
signals.forEach(function(sig) {
|
17189
17163
|
try {
|
17190
|
-
|
17164
|
+
process2.removeListener(sig, sigListeners[sig]);
|
17191
17165
|
} catch (er) {
|
17192
17166
|
}
|
17193
17167
|
});
|
17194
|
-
|
17195
|
-
|
17168
|
+
process2.emit = originalProcessEmit;
|
17169
|
+
process2.reallyExit = originalProcessReallyExit;
|
17196
17170
|
emitter.count -= 1;
|
17197
17171
|
};
|
17198
17172
|
module2.exports.unload = unload;
|
@@ -17209,7 +17183,7 @@ var require_signal_exit = __commonJS({
|
|
17209
17183
|
if (!processOk(global.process)) {
|
17210
17184
|
return;
|
17211
17185
|
}
|
17212
|
-
var listeners =
|
17186
|
+
var listeners = process2.listeners(sig);
|
17213
17187
|
if (listeners.length === emitter.count) {
|
17214
17188
|
unload();
|
17215
17189
|
emit("exit", null, sig);
|
@@ -17217,7 +17191,7 @@ var require_signal_exit = __commonJS({
|
|
17217
17191
|
if (isWin && sig === "SIGHUP") {
|
17218
17192
|
sig = "SIGINT";
|
17219
17193
|
}
|
17220
|
-
|
17194
|
+
process2.kill(process2.pid, sig);
|
17221
17195
|
}
|
17222
17196
|
};
|
17223
17197
|
});
|
@@ -17233,36 +17207,36 @@ var require_signal_exit = __commonJS({
|
|
17233
17207
|
emitter.count += 1;
|
17234
17208
|
signals = signals.filter(function(sig) {
|
17235
17209
|
try {
|
17236
|
-
|
17210
|
+
process2.on(sig, sigListeners[sig]);
|
17237
17211
|
return true;
|
17238
17212
|
} catch (er) {
|
17239
17213
|
return false;
|
17240
17214
|
}
|
17241
17215
|
});
|
17242
|
-
|
17243
|
-
|
17216
|
+
process2.emit = processEmit;
|
17217
|
+
process2.reallyExit = processReallyExit;
|
17244
17218
|
};
|
17245
17219
|
module2.exports.load = load;
|
17246
|
-
originalProcessReallyExit =
|
17220
|
+
originalProcessReallyExit = process2.reallyExit;
|
17247
17221
|
processReallyExit = function processReallyExit2(code) {
|
17248
17222
|
if (!processOk(global.process)) {
|
17249
17223
|
return;
|
17250
17224
|
}
|
17251
|
-
|
17225
|
+
process2.exitCode = code || /* istanbul ignore next */
|
17252
17226
|
0;
|
17253
|
-
emit("exit",
|
17254
|
-
emit("afterexit",
|
17255
|
-
originalProcessReallyExit.call(
|
17227
|
+
emit("exit", process2.exitCode, null);
|
17228
|
+
emit("afterexit", process2.exitCode, null);
|
17229
|
+
originalProcessReallyExit.call(process2, process2.exitCode);
|
17256
17230
|
};
|
17257
|
-
originalProcessEmit =
|
17231
|
+
originalProcessEmit = process2.emit;
|
17258
17232
|
processEmit = function processEmit2(ev, arg) {
|
17259
17233
|
if (ev === "exit" && processOk(global.process)) {
|
17260
17234
|
if (arg !== void 0) {
|
17261
|
-
|
17235
|
+
process2.exitCode = arg;
|
17262
17236
|
}
|
17263
17237
|
var ret = originalProcessEmit.apply(this, arguments);
|
17264
|
-
emit("exit",
|
17265
|
-
emit("afterexit",
|
17238
|
+
emit("exit", process2.exitCode, null);
|
17239
|
+
emit("afterexit", process2.exitCode, null);
|
17266
17240
|
return ret;
|
17267
17241
|
} else {
|
17268
17242
|
return originalProcessEmit.apply(this, arguments);
|
@@ -17290,7 +17264,7 @@ var require_signal_exit = __commonJS({
|
|
17290
17264
|
var require_kill = __commonJS({
|
17291
17265
|
"../../../node_modules/.pnpm/execa@5.1.1/node_modules/execa/lib/kill.js"(exports, module2) {
|
17292
17266
|
"use strict";
|
17293
|
-
var
|
17267
|
+
var os2 = require("os");
|
17294
17268
|
var onExit = require_signal_exit();
|
17295
17269
|
var DEFAULT_FORCE_KILL_TIMEOUT = 1e3 * 5;
|
17296
17270
|
var spawnedKill = (kill, signal = "SIGTERM", options = {}) => {
|
@@ -17314,7 +17288,7 @@ var require_kill = __commonJS({
|
|
17314
17288
|
return isSigterm(signal) && forceKillAfterTimeout !== false && killResult;
|
17315
17289
|
};
|
17316
17290
|
var isSigterm = (signal) => {
|
17317
|
-
return signal ===
|
17291
|
+
return signal === os2.constants.signals.SIGTERM || typeof signal === "string" && signal.toUpperCase() === "SIGTERM";
|
17318
17292
|
};
|
17319
17293
|
var getForceKillAfterTimeout = ({ forceKillAfterTimeout = true }) => {
|
17320
17294
|
if (forceKillAfterTimeout === true) {
|
@@ -17711,11 +17685,11 @@ var require_execa = __commonJS({
|
|
17711
17685
|
var { joinCommand, parseCommand, getEscapedCommand } = require_command2();
|
17712
17686
|
var DEFAULT_MAX_BUFFER = 1e3 * 1e3 * 100;
|
17713
17687
|
var getEnv = ({ env: envOption, extendEnv, preferLocal, localDir, execPath }) => {
|
17714
|
-
const
|
17688
|
+
const env = extendEnv ? __spreadValues(__spreadValues({}, process.env), envOption) : envOption;
|
17715
17689
|
if (preferLocal) {
|
17716
|
-
return npmRunPath.env({ env
|
17690
|
+
return npmRunPath.env({ env, cwd: localDir, execPath });
|
17717
17691
|
}
|
17718
|
-
return
|
17692
|
+
return env;
|
17719
17693
|
};
|
17720
17694
|
var handleArguments = (file, args, options = {}) => {
|
17721
17695
|
const parsed = crossSpawn._parse(file, args, options);
|
@@ -20554,19 +20528,19 @@ var init_semver = __esm({
|
|
20554
20528
|
}
|
20555
20529
|
});
|
20556
20530
|
|
20557
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
20531
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/bind.js
|
20558
20532
|
function bind(fn, thisArg) {
|
20559
20533
|
return function wrap() {
|
20560
20534
|
return fn.apply(thisArg, arguments);
|
20561
20535
|
};
|
20562
20536
|
}
|
20563
20537
|
var init_bind = __esm({
|
20564
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
20538
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/bind.js"() {
|
20565
20539
|
"use strict";
|
20566
20540
|
}
|
20567
20541
|
});
|
20568
20542
|
|
20569
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
20543
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/utils.js
|
20570
20544
|
function isBuffer(val) {
|
20571
20545
|
return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor) && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val);
|
20572
20546
|
}
|
@@ -20640,7 +20614,7 @@ function isSpecCompliantForm(thing) {
|
|
20640
20614
|
}
|
20641
20615
|
var toString, getPrototypeOf, kindOf, kindOfTest, typeOfTest, isArray, isUndefined, isArrayBuffer, isString2, isFunction, isNumber, isObject2, isBoolean, isPlainObject, isDate, isFile, isBlob, isFileList, isStream, isFormData, isURLSearchParams, isReadableStream, isRequest, isResponse, isHeaders, trim, _global, isContextDefined, extend, stripBOM, inherits, toFlatObject, endsWith, toArray, isTypedArray, forEachEntry, matchAll, isHTMLForm, toCamelCase, hasOwnProperty, isRegExp, reduceDescriptors, freezeMethods, toObjectSet, noop, toFiniteNumber, ALPHA, DIGIT, ALPHABET, generateString, toJSONObject, isAsyncFn, isThenable, _setImmediate, asap, utils_default;
|
20642
20616
|
var init_utils = __esm({
|
20643
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
20617
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/utils.js"() {
|
20644
20618
|
"use strict";
|
20645
20619
|
init_bind();
|
20646
20620
|
({ toString } = Object.prototype);
|
@@ -20958,7 +20932,7 @@ var init_utils = __esm({
|
|
20958
20932
|
}
|
20959
20933
|
});
|
20960
20934
|
|
20961
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
20935
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/AxiosError.js
|
20962
20936
|
function AxiosError(message, code, config, request, response) {
|
20963
20937
|
Error.call(this);
|
20964
20938
|
if (Error.captureStackTrace) {
|
@@ -20978,7 +20952,7 @@ function AxiosError(message, code, config, request, response) {
|
|
20978
20952
|
}
|
20979
20953
|
var prototype, descriptors, AxiosError_default;
|
20980
20954
|
var init_AxiosError = __esm({
|
20981
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
20955
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/AxiosError.js"() {
|
20982
20956
|
"use strict";
|
20983
20957
|
init_utils();
|
20984
20958
|
utils_default.inherits(AxiosError, Error, {
|
@@ -21045,7 +21019,7 @@ var require_delayed_stream = __commonJS({
|
|
21045
21019
|
"../../../node_modules/.pnpm/delayed-stream@1.0.0/node_modules/delayed-stream/lib/delayed_stream.js"(exports, module2) {
|
21046
21020
|
"use strict";
|
21047
21021
|
var Stream = require("stream").Stream;
|
21048
|
-
var
|
21022
|
+
var util3 = require("util");
|
21049
21023
|
module2.exports = DelayedStream;
|
21050
21024
|
function DelayedStream() {
|
21051
21025
|
this.source = null;
|
@@ -21056,7 +21030,7 @@ var require_delayed_stream = __commonJS({
|
|
21056
21030
|
this._released = false;
|
21057
21031
|
this._bufferedEvents = [];
|
21058
21032
|
}
|
21059
|
-
|
21033
|
+
util3.inherits(DelayedStream, Stream);
|
21060
21034
|
DelayedStream.create = function(source, options) {
|
21061
21035
|
var delayedStream = new this();
|
21062
21036
|
options = options || {};
|
@@ -21136,7 +21110,7 @@ var require_delayed_stream = __commonJS({
|
|
21136
21110
|
var require_combined_stream = __commonJS({
|
21137
21111
|
"../../../node_modules/.pnpm/combined-stream@1.0.8/node_modules/combined-stream/lib/combined_stream.js"(exports, module2) {
|
21138
21112
|
"use strict";
|
21139
|
-
var
|
21113
|
+
var util3 = require("util");
|
21140
21114
|
var Stream = require("stream").Stream;
|
21141
21115
|
var DelayedStream = require_delayed_stream();
|
21142
21116
|
module2.exports = CombinedStream;
|
@@ -21152,7 +21126,7 @@ var require_combined_stream = __commonJS({
|
|
21152
21126
|
this._insideLoop = false;
|
21153
21127
|
this._pendingNext = false;
|
21154
21128
|
}
|
21155
|
-
|
21129
|
+
util3.inherits(CombinedStream, Stream);
|
21156
21130
|
CombinedStream.create = function(options) {
|
21157
21131
|
var combinedStream = new this();
|
21158
21132
|
options = options || {};
|
@@ -30147,9 +30121,9 @@ var require_asynckit = __commonJS({
|
|
30147
30121
|
}
|
30148
30122
|
});
|
30149
30123
|
|
30150
|
-
// ../../../node_modules/.pnpm/form-data@4.0.
|
30124
|
+
// ../../../node_modules/.pnpm/form-data@4.0.1/node_modules/form-data/lib/populate.js
|
30151
30125
|
var require_populate = __commonJS({
|
30152
|
-
"../../../node_modules/.pnpm/form-data@4.0.
|
30126
|
+
"../../../node_modules/.pnpm/form-data@4.0.1/node_modules/form-data/lib/populate.js"(exports, module2) {
|
30153
30127
|
"use strict";
|
30154
30128
|
module2.exports = function(dst, src) {
|
30155
30129
|
Object.keys(src).forEach(function(prop) {
|
@@ -30160,12 +30134,12 @@ var require_populate = __commonJS({
|
|
30160
30134
|
}
|
30161
30135
|
});
|
30162
30136
|
|
30163
|
-
// ../../../node_modules/.pnpm/form-data@4.0.
|
30137
|
+
// ../../../node_modules/.pnpm/form-data@4.0.1/node_modules/form-data/lib/form_data.js
|
30164
30138
|
var require_form_data = __commonJS({
|
30165
|
-
"../../../node_modules/.pnpm/form-data@4.0.
|
30139
|
+
"../../../node_modules/.pnpm/form-data@4.0.1/node_modules/form-data/lib/form_data.js"(exports, module2) {
|
30166
30140
|
"use strict";
|
30167
30141
|
var CombinedStream = require_combined_stream();
|
30168
|
-
var
|
30142
|
+
var util3 = require("util");
|
30169
30143
|
var path8 = require("path");
|
30170
30144
|
var http2 = require("http");
|
30171
30145
|
var https2 = require("https");
|
@@ -30176,7 +30150,7 @@ var require_form_data = __commonJS({
|
|
30176
30150
|
var asynckit = require_asynckit();
|
30177
30151
|
var populate = require_populate();
|
30178
30152
|
module2.exports = FormData3;
|
30179
|
-
|
30153
|
+
util3.inherits(FormData3, CombinedStream);
|
30180
30154
|
function FormData3(options) {
|
30181
30155
|
if (!(this instanceof FormData3)) {
|
30182
30156
|
return new FormData3(options);
|
@@ -30201,7 +30175,7 @@ var require_form_data = __commonJS({
|
|
30201
30175
|
if (typeof value == "number") {
|
30202
30176
|
value = "" + value;
|
30203
30177
|
}
|
30204
|
-
if (
|
30178
|
+
if (Array.isArray(value)) {
|
30205
30179
|
this._error(new Error("Arrays are not supported."));
|
30206
30180
|
return;
|
30207
30181
|
}
|
@@ -30476,17 +30450,17 @@ var require_form_data = __commonJS({
|
|
30476
30450
|
}
|
30477
30451
|
});
|
30478
30452
|
|
30479
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
30453
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/platform/node/classes/FormData.js
|
30480
30454
|
var import_form_data, FormData_default;
|
30481
30455
|
var init_FormData = __esm({
|
30482
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
30456
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/platform/node/classes/FormData.js"() {
|
30483
30457
|
"use strict";
|
30484
30458
|
import_form_data = __toESM(require_form_data());
|
30485
30459
|
FormData_default = import_form_data.default;
|
30486
30460
|
}
|
30487
30461
|
});
|
30488
30462
|
|
30489
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
30463
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/toFormData.js
|
30490
30464
|
function isVisitable(thing) {
|
30491
30465
|
return utils_default.isPlainObject(thing) || utils_default.isArray(thing);
|
30492
30466
|
}
|
@@ -30598,7 +30572,7 @@ function toFormData(obj, formData, options) {
|
|
30598
30572
|
}
|
30599
30573
|
var predicates, toFormData_default;
|
30600
30574
|
var init_toFormData = __esm({
|
30601
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
30575
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/toFormData.js"() {
|
30602
30576
|
"use strict";
|
30603
30577
|
init_utils();
|
30604
30578
|
init_AxiosError();
|
@@ -30610,7 +30584,7 @@ var init_toFormData = __esm({
|
|
30610
30584
|
}
|
30611
30585
|
});
|
30612
30586
|
|
30613
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
30587
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js
|
30614
30588
|
function encode(str) {
|
30615
30589
|
const charMap = {
|
30616
30590
|
"!": "%21",
|
@@ -30631,7 +30605,7 @@ function AxiosURLSearchParams(params, options) {
|
|
30631
30605
|
}
|
30632
30606
|
var prototype2, AxiosURLSearchParams_default;
|
30633
30607
|
var init_AxiosURLSearchParams = __esm({
|
30634
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
30608
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js"() {
|
30635
30609
|
"use strict";
|
30636
30610
|
init_toFormData();
|
30637
30611
|
prototype2 = AxiosURLSearchParams.prototype;
|
@@ -30650,7 +30624,7 @@ var init_AxiosURLSearchParams = __esm({
|
|
30650
30624
|
}
|
30651
30625
|
});
|
30652
30626
|
|
30653
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
30627
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/buildURL.js
|
30654
30628
|
function encode2(val) {
|
30655
30629
|
return encodeURIComponent(val).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
|
30656
30630
|
}
|
@@ -30659,6 +30633,11 @@ function buildURL(url2, params, options) {
|
|
30659
30633
|
return url2;
|
30660
30634
|
}
|
30661
30635
|
const _encode = options && options.encode || encode2;
|
30636
|
+
if (utils_default.isFunction(options)) {
|
30637
|
+
options = {
|
30638
|
+
serialize: options
|
30639
|
+
};
|
30640
|
+
}
|
30662
30641
|
const serializeFn = options && options.serialize;
|
30663
30642
|
let serializedParams;
|
30664
30643
|
if (serializeFn) {
|
@@ -30676,17 +30655,17 @@ function buildURL(url2, params, options) {
|
|
30676
30655
|
return url2;
|
30677
30656
|
}
|
30678
30657
|
var init_buildURL = __esm({
|
30679
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
30658
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/buildURL.js"() {
|
30680
30659
|
"use strict";
|
30681
30660
|
init_utils();
|
30682
30661
|
init_AxiosURLSearchParams();
|
30683
30662
|
}
|
30684
30663
|
});
|
30685
30664
|
|
30686
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
30665
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/InterceptorManager.js
|
30687
30666
|
var InterceptorManager, InterceptorManager_default;
|
30688
30667
|
var init_InterceptorManager = __esm({
|
30689
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
30668
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/InterceptorManager.js"() {
|
30690
30669
|
"use strict";
|
30691
30670
|
init_utils();
|
30692
30671
|
InterceptorManager = class {
|
@@ -30754,10 +30733,10 @@ var init_InterceptorManager = __esm({
|
|
30754
30733
|
}
|
30755
30734
|
});
|
30756
30735
|
|
30757
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
30736
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/defaults/transitional.js
|
30758
30737
|
var transitional_default;
|
30759
30738
|
var init_transitional = __esm({
|
30760
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
30739
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/defaults/transitional.js"() {
|
30761
30740
|
"use strict";
|
30762
30741
|
transitional_default = {
|
30763
30742
|
silentJSONParsing: true,
|
@@ -30767,20 +30746,20 @@ var init_transitional = __esm({
|
|
30767
30746
|
}
|
30768
30747
|
});
|
30769
30748
|
|
30770
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
30749
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/platform/node/classes/URLSearchParams.js
|
30771
30750
|
var import_url, URLSearchParams_default;
|
30772
30751
|
var init_URLSearchParams = __esm({
|
30773
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
30752
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/platform/node/classes/URLSearchParams.js"() {
|
30774
30753
|
"use strict";
|
30775
30754
|
import_url = __toESM(require("url"));
|
30776
30755
|
URLSearchParams_default = import_url.default.URLSearchParams;
|
30777
30756
|
}
|
30778
30757
|
});
|
30779
30758
|
|
30780
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
30759
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
|
30781
30760
|
var node_default;
|
30782
30761
|
var init_node = __esm({
|
30783
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
30762
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/platform/node/index.js"() {
|
30784
30763
|
"use strict";
|
30785
30764
|
init_URLSearchParams();
|
30786
30765
|
init_FormData();
|
@@ -30796,7 +30775,7 @@ var init_node = __esm({
|
|
30796
30775
|
}
|
30797
30776
|
});
|
30798
30777
|
|
30799
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
30778
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/platform/common/utils.js
|
30800
30779
|
var utils_exports = {};
|
30801
30780
|
__export(utils_exports, {
|
30802
30781
|
hasBrowserEnv: () => hasBrowserEnv,
|
@@ -30807,7 +30786,7 @@ __export(utils_exports, {
|
|
30807
30786
|
});
|
30808
30787
|
var hasBrowserEnv, _navigator, hasStandardBrowserEnv, hasStandardBrowserWebWorkerEnv, origin;
|
30809
30788
|
var init_utils2 = __esm({
|
30810
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
30789
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/platform/common/utils.js"() {
|
30811
30790
|
"use strict";
|
30812
30791
|
hasBrowserEnv = typeof window !== "undefined" && typeof document !== "undefined";
|
30813
30792
|
_navigator = typeof navigator === "object" && navigator || void 0;
|
@@ -30820,10 +30799,10 @@ var init_utils2 = __esm({
|
|
30820
30799
|
}
|
30821
30800
|
});
|
30822
30801
|
|
30823
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
30802
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/platform/index.js
|
30824
30803
|
var platform_default;
|
30825
30804
|
var init_platform = __esm({
|
30826
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
30805
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/platform/index.js"() {
|
30827
30806
|
"use strict";
|
30828
30807
|
init_node();
|
30829
30808
|
init_utils2();
|
@@ -30831,7 +30810,7 @@ var init_platform = __esm({
|
|
30831
30810
|
}
|
30832
30811
|
});
|
30833
30812
|
|
30834
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
30813
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/toURLEncodedForm.js
|
30835
30814
|
function toURLEncodedForm(data, options) {
|
30836
30815
|
return toFormData_default(data, new platform_default.classes.URLSearchParams(), Object.assign({
|
30837
30816
|
visitor: function(value, key, path8, helpers) {
|
@@ -30844,7 +30823,7 @@ function toURLEncodedForm(data, options) {
|
|
30844
30823
|
}, options));
|
30845
30824
|
}
|
30846
30825
|
var init_toURLEncodedForm = __esm({
|
30847
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
30826
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/toURLEncodedForm.js"() {
|
30848
30827
|
"use strict";
|
30849
30828
|
init_utils();
|
30850
30829
|
init_toFormData();
|
@@ -30852,7 +30831,7 @@ var init_toURLEncodedForm = __esm({
|
|
30852
30831
|
}
|
30853
30832
|
});
|
30854
30833
|
|
30855
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
30834
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/formDataToJSON.js
|
30856
30835
|
function parsePropPath(name) {
|
30857
30836
|
return utils_default.matchAll(/\w+|\[(\w*)]/g, name).map((match) => {
|
30858
30837
|
return match[0] === "[]" ? "" : match[1] || match[0];
|
@@ -30906,14 +30885,14 @@ function formDataToJSON(formData) {
|
|
30906
30885
|
}
|
30907
30886
|
var formDataToJSON_default;
|
30908
30887
|
var init_formDataToJSON = __esm({
|
30909
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
30888
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/formDataToJSON.js"() {
|
30910
30889
|
"use strict";
|
30911
30890
|
init_utils();
|
30912
30891
|
formDataToJSON_default = formDataToJSON;
|
30913
30892
|
}
|
30914
30893
|
});
|
30915
30894
|
|
30916
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
30895
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/defaults/index.js
|
30917
30896
|
function stringifySafely(rawValue, parser, encoder) {
|
30918
30897
|
if (utils_default.isString(rawValue)) {
|
30919
30898
|
try {
|
@@ -30929,7 +30908,7 @@ function stringifySafely(rawValue, parser, encoder) {
|
|
30929
30908
|
}
|
30930
30909
|
var defaults, defaults_default;
|
30931
30910
|
var init_defaults = __esm({
|
30932
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
30911
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/defaults/index.js"() {
|
30933
30912
|
"use strict";
|
30934
30913
|
init_utils();
|
30935
30914
|
init_AxiosError();
|
@@ -31035,10 +31014,10 @@ var init_defaults = __esm({
|
|
31035
31014
|
}
|
31036
31015
|
});
|
31037
31016
|
|
31038
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
31017
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/parseHeaders.js
|
31039
31018
|
var ignoreDuplicateOf, parseHeaders_default;
|
31040
31019
|
var init_parseHeaders = __esm({
|
31041
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
31020
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/parseHeaders.js"() {
|
31042
31021
|
"use strict";
|
31043
31022
|
init_utils();
|
31044
31023
|
ignoreDuplicateOf = utils_default.toObjectSet([
|
@@ -31087,7 +31066,7 @@ var init_parseHeaders = __esm({
|
|
31087
31066
|
}
|
31088
31067
|
});
|
31089
31068
|
|
31090
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
31069
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/AxiosHeaders.js
|
31091
31070
|
function normalizeHeader(header) {
|
31092
31071
|
return header && String(header).trim().toLowerCase();
|
31093
31072
|
}
|
@@ -31140,7 +31119,7 @@ function buildAccessors(obj, header) {
|
|
31140
31119
|
}
|
31141
31120
|
var $internals, isValidHeaderName, AxiosHeaders, AxiosHeaders_default;
|
31142
31121
|
var init_AxiosHeaders = __esm({
|
31143
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
31122
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/AxiosHeaders.js"() {
|
31144
31123
|
"use strict";
|
31145
31124
|
init_utils();
|
31146
31125
|
init_parseHeaders();
|
@@ -31317,7 +31296,7 @@ var init_AxiosHeaders = __esm({
|
|
31317
31296
|
}
|
31318
31297
|
});
|
31319
31298
|
|
31320
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
31299
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/transformData.js
|
31321
31300
|
function transformData(fns, response) {
|
31322
31301
|
const config = this || defaults_default;
|
31323
31302
|
const context = response || config;
|
@@ -31330,7 +31309,7 @@ function transformData(fns, response) {
|
|
31330
31309
|
return data;
|
31331
31310
|
}
|
31332
31311
|
var init_transformData = __esm({
|
31333
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
31312
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/transformData.js"() {
|
31334
31313
|
"use strict";
|
31335
31314
|
init_utils();
|
31336
31315
|
init_defaults();
|
@@ -31338,24 +31317,24 @@ var init_transformData = __esm({
|
|
31338
31317
|
}
|
31339
31318
|
});
|
31340
31319
|
|
31341
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
31320
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/cancel/isCancel.js
|
31342
31321
|
function isCancel(value) {
|
31343
31322
|
return !!(value && value.__CANCEL__);
|
31344
31323
|
}
|
31345
31324
|
var init_isCancel = __esm({
|
31346
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
31325
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/cancel/isCancel.js"() {
|
31347
31326
|
"use strict";
|
31348
31327
|
}
|
31349
31328
|
});
|
31350
31329
|
|
31351
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
31330
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/cancel/CanceledError.js
|
31352
31331
|
function CanceledError(message, config, request) {
|
31353
31332
|
AxiosError_default.call(this, message == null ? "canceled" : message, AxiosError_default.ERR_CANCELED, config, request);
|
31354
31333
|
this.name = "CanceledError";
|
31355
31334
|
}
|
31356
31335
|
var CanceledError_default;
|
31357
31336
|
var init_CanceledError = __esm({
|
31358
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
31337
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/cancel/CanceledError.js"() {
|
31359
31338
|
"use strict";
|
31360
31339
|
init_AxiosError();
|
31361
31340
|
init_utils();
|
@@ -31366,7 +31345,7 @@ var init_CanceledError = __esm({
|
|
31366
31345
|
}
|
31367
31346
|
});
|
31368
31347
|
|
31369
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
31348
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/settle.js
|
31370
31349
|
function settle(resolve, reject, response) {
|
31371
31350
|
const validateStatus2 = response.config.validateStatus;
|
31372
31351
|
if (!response.status || !validateStatus2 || validateStatus2(response.status)) {
|
@@ -31382,33 +31361,33 @@ function settle(resolve, reject, response) {
|
|
31382
31361
|
}
|
31383
31362
|
}
|
31384
31363
|
var init_settle = __esm({
|
31385
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
31364
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/settle.js"() {
|
31386
31365
|
"use strict";
|
31387
31366
|
init_AxiosError();
|
31388
31367
|
}
|
31389
31368
|
});
|
31390
31369
|
|
31391
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
31370
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/isAbsoluteURL.js
|
31392
31371
|
function isAbsoluteURL(url2) {
|
31393
31372
|
return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url2);
|
31394
31373
|
}
|
31395
31374
|
var init_isAbsoluteURL = __esm({
|
31396
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
31375
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/isAbsoluteURL.js"() {
|
31397
31376
|
"use strict";
|
31398
31377
|
}
|
31399
31378
|
});
|
31400
31379
|
|
31401
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
31380
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/combineURLs.js
|
31402
31381
|
function combineURLs(baseURL, relativeURL) {
|
31403
31382
|
return relativeURL ? baseURL.replace(/\/?\/$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
|
31404
31383
|
}
|
31405
31384
|
var init_combineURLs = __esm({
|
31406
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
31385
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/combineURLs.js"() {
|
31407
31386
|
"use strict";
|
31408
31387
|
}
|
31409
31388
|
});
|
31410
31389
|
|
31411
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
31390
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/buildFullPath.js
|
31412
31391
|
function buildFullPath(baseURL, requestedURL) {
|
31413
31392
|
if (baseURL && !isAbsoluteURL(requestedURL)) {
|
31414
31393
|
return combineURLs(baseURL, requestedURL);
|
@@ -31416,7 +31395,7 @@ function buildFullPath(baseURL, requestedURL) {
|
|
31416
31395
|
return requestedURL;
|
31417
31396
|
}
|
31418
31397
|
var init_buildFullPath = __esm({
|
31419
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
31398
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/buildFullPath.js"() {
|
31420
31399
|
"use strict";
|
31421
31400
|
init_isAbsoluteURL();
|
31422
31401
|
init_combineURLs();
|
@@ -31439,7 +31418,7 @@ var require_proxy_from_env = __commonJS({
|
|
31439
31418
|
var stringEndsWith = String.prototype.endsWith || function(s) {
|
31440
31419
|
return s.length <= this.length && this.indexOf(s, this.length - s.length) !== -1;
|
31441
31420
|
};
|
31442
|
-
function
|
31421
|
+
function getProxyForUrl(url2) {
|
31443
31422
|
var parsedUrl = typeof url2 === "string" ? parseUrl(url2) : url2 || {};
|
31444
31423
|
var proto = parsedUrl.protocol;
|
31445
31424
|
var hostname = parsedUrl.host;
|
@@ -31489,7 +31468,7 @@ var require_proxy_from_env = __commonJS({
|
|
31489
31468
|
function getEnv(key) {
|
31490
31469
|
return process.env[key.toLowerCase()] || process.env[key.toUpperCase()] || "";
|
31491
31470
|
}
|
31492
|
-
exports.getProxyForUrl =
|
31471
|
+
exports.getProxyForUrl = getProxyForUrl;
|
31493
31472
|
}
|
31494
31473
|
});
|
31495
31474
|
|
@@ -32011,27 +31990,27 @@ var require_follow_redirects = __commonJS({
|
|
32011
31990
|
}
|
32012
31991
|
});
|
32013
31992
|
|
32014
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
31993
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/env/data.js
|
32015
31994
|
var VERSION;
|
32016
31995
|
var init_data = __esm({
|
32017
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
31996
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/env/data.js"() {
|
32018
31997
|
"use strict";
|
32019
|
-
VERSION = "1.7.
|
31998
|
+
VERSION = "1.7.8";
|
32020
31999
|
}
|
32021
32000
|
});
|
32022
32001
|
|
32023
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
32002
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/parseProtocol.js
|
32024
32003
|
function parseProtocol(url2) {
|
32025
32004
|
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url2);
|
32026
32005
|
return match && match[1] || "";
|
32027
32006
|
}
|
32028
32007
|
var init_parseProtocol = __esm({
|
32029
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
32008
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/parseProtocol.js"() {
|
32030
32009
|
"use strict";
|
32031
32010
|
}
|
32032
32011
|
});
|
32033
32012
|
|
32034
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
32013
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/fromDataURI.js
|
32035
32014
|
function fromDataURI(uri, asBlob, options) {
|
32036
32015
|
const _Blob = options && options.Blob || platform_default.classes.Blob;
|
32037
32016
|
const protocol = parseProtocol(uri);
|
@@ -32060,7 +32039,7 @@ function fromDataURI(uri, asBlob, options) {
|
|
32060
32039
|
}
|
32061
32040
|
var DATA_URL_PATTERN;
|
32062
32041
|
var init_fromDataURI = __esm({
|
32063
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
32042
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/fromDataURI.js"() {
|
32064
32043
|
"use strict";
|
32065
32044
|
init_AxiosError();
|
32066
32045
|
init_parseProtocol();
|
@@ -32069,10 +32048,10 @@ var init_fromDataURI = __esm({
|
|
32069
32048
|
}
|
32070
32049
|
});
|
32071
32050
|
|
32072
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
32051
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/AxiosTransformStream.js
|
32073
32052
|
var import_stream, kInternals, AxiosTransformStream, AxiosTransformStream_default;
|
32074
32053
|
var init_AxiosTransformStream = __esm({
|
32075
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
32054
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/AxiosTransformStream.js"() {
|
32076
32055
|
"use strict";
|
32077
32056
|
import_stream = __toESM(require("stream"));
|
32078
32057
|
init_utils();
|
@@ -32191,10 +32170,10 @@ var init_AxiosTransformStream = __esm({
|
|
32191
32170
|
}
|
32192
32171
|
});
|
32193
32172
|
|
32194
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
32173
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/readBlob.js
|
32195
32174
|
var asyncIterator, readBlob, readBlob_default;
|
32196
32175
|
var init_readBlob = __esm({
|
32197
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
32176
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/readBlob.js"() {
|
32198
32177
|
"use strict";
|
32199
32178
|
({ asyncIterator } = Symbol);
|
32200
32179
|
readBlob = function(blob) {
|
@@ -32214,17 +32193,17 @@ var init_readBlob = __esm({
|
|
32214
32193
|
}
|
32215
32194
|
});
|
32216
32195
|
|
32217
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
32196
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
|
32218
32197
|
var import_util, import_stream2, BOUNDARY_ALPHABET, textEncoder, CRLF, CRLF_BYTES, CRLF_BYTES_COUNT, FormDataPart, formDataToStream, formDataToStream_default;
|
32219
32198
|
var init_formDataToStream = __esm({
|
32220
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
32199
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js"() {
|
32221
32200
|
"use strict";
|
32222
|
-
import_util = require("util");
|
32201
|
+
import_util = __toESM(require("util"));
|
32223
32202
|
import_stream2 = require("stream");
|
32224
32203
|
init_utils();
|
32225
32204
|
init_readBlob();
|
32226
32205
|
BOUNDARY_ALPHABET = utils_default.ALPHABET.ALPHA_DIGIT + "-_";
|
32227
|
-
textEncoder = new import_util.TextEncoder();
|
32206
|
+
textEncoder = typeof TextEncoder === "function" ? new TextEncoder() : new import_util.default.TextEncoder();
|
32228
32207
|
CRLF = "\r\n";
|
32229
32208
|
CRLF_BYTES = textEncoder.encode(CRLF);
|
32230
32209
|
CRLF_BYTES_COUNT = 2;
|
@@ -32307,10 +32286,10 @@ var init_formDataToStream = __esm({
|
|
32307
32286
|
}
|
32308
32287
|
});
|
32309
32288
|
|
32310
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
32289
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js
|
32311
32290
|
var import_stream3, ZlibHeaderTransformStream, ZlibHeaderTransformStream_default;
|
32312
32291
|
var init_ZlibHeaderTransformStream = __esm({
|
32313
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
32292
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js"() {
|
32314
32293
|
"use strict";
|
32315
32294
|
import_stream3 = __toESM(require("stream"));
|
32316
32295
|
ZlibHeaderTransformStream = class extends import_stream3.default.Transform {
|
@@ -32335,10 +32314,10 @@ var init_ZlibHeaderTransformStream = __esm({
|
|
32335
32314
|
}
|
32336
32315
|
});
|
32337
32316
|
|
32338
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
32317
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/callbackify.js
|
32339
32318
|
var callbackify, callbackify_default;
|
32340
32319
|
var init_callbackify = __esm({
|
32341
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
32320
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/callbackify.js"() {
|
32342
32321
|
"use strict";
|
32343
32322
|
init_utils();
|
32344
32323
|
callbackify = (fn, reducer) => {
|
@@ -32357,7 +32336,7 @@ var init_callbackify = __esm({
|
|
32357
32336
|
}
|
32358
32337
|
});
|
32359
32338
|
|
32360
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
32339
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/speedometer.js
|
32361
32340
|
function speedometer(samplesCount, min) {
|
32362
32341
|
samplesCount = samplesCount || 10;
|
32363
32342
|
const bytes = new Array(samplesCount);
|
@@ -32393,13 +32372,13 @@ function speedometer(samplesCount, min) {
|
|
32393
32372
|
}
|
32394
32373
|
var speedometer_default;
|
32395
32374
|
var init_speedometer = __esm({
|
32396
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
32375
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/speedometer.js"() {
|
32397
32376
|
"use strict";
|
32398
32377
|
speedometer_default = speedometer;
|
32399
32378
|
}
|
32400
32379
|
});
|
32401
32380
|
|
32402
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
32381
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/throttle.js
|
32403
32382
|
function throttle(fn, freq) {
|
32404
32383
|
let timestamp = 0;
|
32405
32384
|
let threshold = 1e3 / freq;
|
@@ -32434,16 +32413,16 @@ function throttle(fn, freq) {
|
|
32434
32413
|
}
|
32435
32414
|
var throttle_default;
|
32436
32415
|
var init_throttle = __esm({
|
32437
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
32416
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/throttle.js"() {
|
32438
32417
|
"use strict";
|
32439
32418
|
throttle_default = throttle;
|
32440
32419
|
}
|
32441
32420
|
});
|
32442
32421
|
|
32443
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
32422
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/progressEventReducer.js
|
32444
32423
|
var progressEventReducer, progressEventDecorator, asyncDecorator;
|
32445
32424
|
var init_progressEventReducer = __esm({
|
32446
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
32425
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/progressEventReducer.js"() {
|
32447
32426
|
"use strict";
|
32448
32427
|
init_speedometer();
|
32449
32428
|
init_throttle();
|
@@ -32484,7 +32463,7 @@ var init_progressEventReducer = __esm({
|
|
32484
32463
|
}
|
32485
32464
|
});
|
32486
32465
|
|
32487
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
32466
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/adapters/http.js
|
32488
32467
|
function dispatchBeforeRedirect(options, responseDetails) {
|
32489
32468
|
if (options.beforeRedirects.proxy) {
|
32490
32469
|
options.beforeRedirects.proxy(options);
|
@@ -32496,7 +32475,7 @@ function dispatchBeforeRedirect(options, responseDetails) {
|
|
32496
32475
|
function setProxy(options, configProxy, location) {
|
32497
32476
|
let proxy = configProxy;
|
32498
32477
|
if (!proxy && proxy !== false) {
|
32499
|
-
const proxyUrl =
|
32478
|
+
const proxyUrl = import_proxy_from_env.default.getProxyForUrl(location);
|
32500
32479
|
if (proxyUrl) {
|
32501
32480
|
proxy = new URL(proxyUrl);
|
32502
32481
|
}
|
@@ -32528,7 +32507,7 @@ function setProxy(options, configProxy, location) {
|
|
32528
32507
|
}
|
32529
32508
|
var import_proxy_from_env, import_http, import_https, import_util2, import_follow_redirects, import_zlib, import_stream4, import_events, zlibOptions, brotliOptions, isBrotliSupported, httpFollow, httpsFollow, isHttps, supportedProtocols, flushOnFinish, isHttpAdapterSupported, wrapAsync, resolveFamily, buildAddressEntry, http_default;
|
32530
32509
|
var init_http = __esm({
|
32531
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
32510
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/adapters/http.js"() {
|
32532
32511
|
"use strict";
|
32533
32512
|
init_utils();
|
32534
32513
|
init_settle();
|
@@ -32719,7 +32698,7 @@ var init_http = __esm({
|
|
32719
32698
|
} catch (e) {
|
32720
32699
|
}
|
32721
32700
|
}
|
32722
|
-
} else if (utils_default.isBlob(data)) {
|
32701
|
+
} else if (utils_default.isBlob(data) || utils_default.isFile(data)) {
|
32723
32702
|
data.size && headers.setContentType(data.type || "application/octet-stream");
|
32724
32703
|
headers.setContentLength(data.size || 0);
|
32725
32704
|
data = import_stream4.default.Readable.from(readBlob_default(data));
|
@@ -32922,7 +32901,7 @@ var init_http = __esm({
|
|
32922
32901
|
return;
|
32923
32902
|
}
|
32924
32903
|
const err = new AxiosError_default(
|
32925
|
-
"
|
32904
|
+
"stream has been aborted",
|
32926
32905
|
AxiosError_default.ERR_BAD_RESPONSE,
|
32927
32906
|
config,
|
32928
32907
|
lastRequest
|
@@ -33021,59 +33000,26 @@ var init_http = __esm({
|
|
33021
33000
|
}
|
33022
33001
|
});
|
33023
33002
|
|
33024
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
33003
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/isURLSameOrigin.js
|
33025
33004
|
var isURLSameOrigin_default;
|
33026
33005
|
var init_isURLSameOrigin = __esm({
|
33027
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
33006
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/isURLSameOrigin.js"() {
|
33028
33007
|
"use strict";
|
33029
|
-
init_utils();
|
33030
33008
|
init_platform();
|
33031
|
-
isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? (
|
33032
|
-
|
33033
|
-
|
33034
|
-
|
33035
|
-
|
33036
|
-
|
33037
|
-
|
33038
|
-
function resolveURL(url2) {
|
33039
|
-
let href = url2;
|
33040
|
-
if (msie) {
|
33041
|
-
urlParsingNode.setAttribute("href", href);
|
33042
|
-
href = urlParsingNode.href;
|
33043
|
-
}
|
33044
|
-
urlParsingNode.setAttribute("href", href);
|
33045
|
-
return {
|
33046
|
-
href: urlParsingNode.href,
|
33047
|
-
protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, "") : "",
|
33048
|
-
host: urlParsingNode.host,
|
33049
|
-
search: urlParsingNode.search ? urlParsingNode.search.replace(/^\?/, "") : "",
|
33050
|
-
hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, "") : "",
|
33051
|
-
hostname: urlParsingNode.hostname,
|
33052
|
-
port: urlParsingNode.port,
|
33053
|
-
pathname: urlParsingNode.pathname.charAt(0) === "/" ? urlParsingNode.pathname : "/" + urlParsingNode.pathname
|
33054
|
-
};
|
33055
|
-
}
|
33056
|
-
originURL = resolveURL(window.location.href);
|
33057
|
-
return function isURLSameOrigin(requestURL) {
|
33058
|
-
const parsed = utils_default.isString(requestURL) ? resolveURL(requestURL) : requestURL;
|
33059
|
-
return parsed.protocol === originURL.protocol && parsed.host === originURL.host;
|
33060
|
-
};
|
33061
|
-
}()
|
33062
|
-
) : (
|
33063
|
-
// Non standard browser envs (web workers, react-native) lack needed support.
|
33064
|
-
function nonStandardBrowserEnv() {
|
33065
|
-
return function isURLSameOrigin() {
|
33066
|
-
return true;
|
33067
|
-
};
|
33068
|
-
}()
|
33069
|
-
);
|
33009
|
+
isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? ((origin2, isMSIE) => (url2) => {
|
33010
|
+
url2 = new URL(url2, platform_default.origin);
|
33011
|
+
return origin2.protocol === url2.protocol && origin2.host === url2.host && (isMSIE || origin2.port === url2.port);
|
33012
|
+
})(
|
33013
|
+
new URL(platform_default.origin),
|
33014
|
+
platform_default.navigator && /(msie|trident)/i.test(platform_default.navigator.userAgent)
|
33015
|
+
) : () => true;
|
33070
33016
|
}
|
33071
33017
|
});
|
33072
33018
|
|
33073
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
33019
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/cookies.js
|
33074
33020
|
var cookies_default;
|
33075
33021
|
var init_cookies = __esm({
|
33076
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
33022
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/cookies.js"() {
|
33077
33023
|
"use strict";
|
33078
33024
|
init_utils();
|
33079
33025
|
init_platform();
|
@@ -33111,11 +33057,11 @@ var init_cookies = __esm({
|
|
33111
33057
|
}
|
33112
33058
|
});
|
33113
33059
|
|
33114
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
33060
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/mergeConfig.js
|
33115
33061
|
function mergeConfig(config1, config2) {
|
33116
33062
|
config2 = config2 || {};
|
33117
33063
|
const config = {};
|
33118
|
-
function getMergedValue(target, source, caseless) {
|
33064
|
+
function getMergedValue(target, source, prop, caseless) {
|
33119
33065
|
if (utils_default.isPlainObject(target) && utils_default.isPlainObject(source)) {
|
33120
33066
|
return utils_default.merge.call({ caseless }, target, source);
|
33121
33067
|
} else if (utils_default.isPlainObject(source)) {
|
@@ -33125,11 +33071,11 @@ function mergeConfig(config1, config2) {
|
|
33125
33071
|
}
|
33126
33072
|
return source;
|
33127
33073
|
}
|
33128
|
-
function mergeDeepProperties(a, b, caseless) {
|
33074
|
+
function mergeDeepProperties(a, b, prop, caseless) {
|
33129
33075
|
if (!utils_default.isUndefined(b)) {
|
33130
|
-
return getMergedValue(a, b, caseless);
|
33076
|
+
return getMergedValue(a, b, prop, caseless);
|
33131
33077
|
} else if (!utils_default.isUndefined(a)) {
|
33132
|
-
return getMergedValue(void 0, a, caseless);
|
33078
|
+
return getMergedValue(void 0, a, prop, caseless);
|
33133
33079
|
}
|
33134
33080
|
}
|
33135
33081
|
function valueFromConfig2(a, b) {
|
@@ -33180,7 +33126,7 @@ function mergeConfig(config1, config2) {
|
|
33180
33126
|
socketPath: defaultToConfig2,
|
33181
33127
|
responseEncoding: defaultToConfig2,
|
33182
33128
|
validateStatus: mergeDirectKeys,
|
33183
|
-
headers: (a, b) => mergeDeepProperties(headersToObject(a), headersToObject(b), true)
|
33129
|
+
headers: (a, b, prop) => mergeDeepProperties(headersToObject(a), headersToObject(b), prop, true)
|
33184
33130
|
};
|
33185
33131
|
utils_default.forEach(Object.keys(Object.assign({}, config1, config2)), function computeConfigValue(prop) {
|
33186
33132
|
const merge2 = mergeMap[prop] || mergeDeepProperties;
|
@@ -33191,7 +33137,7 @@ function mergeConfig(config1, config2) {
|
|
33191
33137
|
}
|
33192
33138
|
var headersToObject;
|
33193
33139
|
var init_mergeConfig = __esm({
|
33194
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
33140
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/mergeConfig.js"() {
|
33195
33141
|
"use strict";
|
33196
33142
|
init_utils();
|
33197
33143
|
init_AxiosHeaders();
|
@@ -33199,10 +33145,10 @@ var init_mergeConfig = __esm({
|
|
33199
33145
|
}
|
33200
33146
|
});
|
33201
33147
|
|
33202
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
33148
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/resolveConfig.js
|
33203
33149
|
var resolveConfig_default;
|
33204
33150
|
var init_resolveConfig = __esm({
|
33205
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
33151
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/resolveConfig.js"() {
|
33206
33152
|
"use strict";
|
33207
33153
|
init_platform();
|
33208
33154
|
init_utils();
|
@@ -33246,10 +33192,10 @@ var init_resolveConfig = __esm({
|
|
33246
33192
|
}
|
33247
33193
|
});
|
33248
33194
|
|
33249
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
33195
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/adapters/xhr.js
|
33250
33196
|
var isXHRAdapterSupported, xhr_default;
|
33251
33197
|
var init_xhr = __esm({
|
33252
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
33198
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/adapters/xhr.js"() {
|
33253
33199
|
"use strict";
|
33254
33200
|
init_utils();
|
33255
33201
|
init_settle();
|
@@ -33389,10 +33335,10 @@ var init_xhr = __esm({
|
|
33389
33335
|
}
|
33390
33336
|
});
|
33391
33337
|
|
33392
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
33338
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/composeSignals.js
|
33393
33339
|
var composeSignals, composeSignals_default;
|
33394
33340
|
var init_composeSignals = __esm({
|
33395
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
33341
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/composeSignals.js"() {
|
33396
33342
|
"use strict";
|
33397
33343
|
init_CanceledError();
|
33398
33344
|
init_AxiosError();
|
@@ -33434,10 +33380,10 @@ var init_composeSignals = __esm({
|
|
33434
33380
|
}
|
33435
33381
|
});
|
33436
33382
|
|
33437
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
33383
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/trackStream.js
|
33438
33384
|
var streamChunk, readBytes, readStream, trackStream;
|
33439
33385
|
var init_trackStream = __esm({
|
33440
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
33386
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/trackStream.js"() {
|
33441
33387
|
"use strict";
|
33442
33388
|
streamChunk = function* (chunk, chunkSize) {
|
33443
33389
|
let len = chunk.byteLength;
|
@@ -33535,10 +33481,10 @@ var init_trackStream = __esm({
|
|
33535
33481
|
}
|
33536
33482
|
});
|
33537
33483
|
|
33538
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
33484
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/adapters/fetch.js
|
33539
33485
|
var isFetchSupported, isReadableStreamSupported, encodeText, test, supportsRequestStream, DEFAULT_CHUNK_SIZE, supportsResponseStream, resolvers, getBodyLength, resolveBodyLength, fetch_default;
|
33540
33486
|
var init_fetch = __esm({
|
33541
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
33487
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/adapters/fetch.js"() {
|
33542
33488
|
"use strict";
|
33543
33489
|
init_platform();
|
33544
33490
|
init_utils();
|
@@ -33715,10 +33661,10 @@ var init_fetch = __esm({
|
|
33715
33661
|
}
|
33716
33662
|
});
|
33717
33663
|
|
33718
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
33664
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/adapters/adapters.js
|
33719
33665
|
var knownAdapters, renderReason, isResolvedHandle, adapters_default;
|
33720
33666
|
var init_adapters = __esm({
|
33721
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
33667
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/adapters/adapters.js"() {
|
33722
33668
|
"use strict";
|
33723
33669
|
init_utils();
|
33724
33670
|
init_http();
|
@@ -33780,7 +33726,7 @@ var init_adapters = __esm({
|
|
33780
33726
|
}
|
33781
33727
|
});
|
33782
33728
|
|
33783
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
33729
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/dispatchRequest.js
|
33784
33730
|
function throwIfCancellationRequested(config) {
|
33785
33731
|
if (config.cancelToken) {
|
33786
33732
|
config.cancelToken.throwIfRequested();
|
@@ -33825,7 +33771,7 @@ function dispatchRequest(config) {
|
|
33825
33771
|
});
|
33826
33772
|
}
|
33827
33773
|
var init_dispatchRequest = __esm({
|
33828
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
33774
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/dispatchRequest.js"() {
|
33829
33775
|
"use strict";
|
33830
33776
|
init_transformData();
|
33831
33777
|
init_isCancel();
|
@@ -33836,7 +33782,7 @@ var init_dispatchRequest = __esm({
|
|
33836
33782
|
}
|
33837
33783
|
});
|
33838
33784
|
|
33839
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
33785
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/validator.js
|
33840
33786
|
function assertOptions(options, schema, allowUnknown) {
|
33841
33787
|
if (typeof options !== "object") {
|
33842
33788
|
throw new AxiosError_default("options must be an object", AxiosError_default.ERR_BAD_OPTION_VALUE);
|
@@ -33861,7 +33807,7 @@ function assertOptions(options, schema, allowUnknown) {
|
|
33861
33807
|
}
|
33862
33808
|
var validators, deprecatedWarnings, validator_default;
|
33863
33809
|
var init_validator = __esm({
|
33864
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
33810
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/validator.js"() {
|
33865
33811
|
"use strict";
|
33866
33812
|
init_data();
|
33867
33813
|
init_AxiosError();
|
@@ -33895,6 +33841,12 @@ var init_validator = __esm({
|
|
33895
33841
|
return validator ? validator(value, opt, opts) : true;
|
33896
33842
|
};
|
33897
33843
|
};
|
33844
|
+
validators.spelling = function spelling(correctSpelling) {
|
33845
|
+
return (value, opt) => {
|
33846
|
+
console.warn(`${opt} is likely a misspelling of ${correctSpelling}`);
|
33847
|
+
return true;
|
33848
|
+
};
|
33849
|
+
};
|
33898
33850
|
validator_default = {
|
33899
33851
|
assertOptions,
|
33900
33852
|
validators
|
@@ -33902,10 +33854,10 @@ var init_validator = __esm({
|
|
33902
33854
|
}
|
33903
33855
|
});
|
33904
33856
|
|
33905
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
33857
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/Axios.js
|
33906
33858
|
var validators2, Axios, Axios_default;
|
33907
33859
|
var init_Axios = __esm({
|
33908
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
33860
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/core/Axios.js"() {
|
33909
33861
|
"use strict";
|
33910
33862
|
init_utils();
|
33911
33863
|
init_buildURL();
|
@@ -33938,8 +33890,8 @@ var init_Axios = __esm({
|
|
33938
33890
|
return yield this._request(configOrUrl, config);
|
33939
33891
|
} catch (err) {
|
33940
33892
|
if (err instanceof Error) {
|
33941
|
-
let dummy;
|
33942
|
-
Error.captureStackTrace ? Error.captureStackTrace(dummy
|
33893
|
+
let dummy = {};
|
33894
|
+
Error.captureStackTrace ? Error.captureStackTrace(dummy) : dummy = new Error();
|
33943
33895
|
const stack = dummy.stack ? dummy.stack.replace(/^.+\n/, "") : "";
|
33944
33896
|
try {
|
33945
33897
|
if (!err.stack) {
|
@@ -33982,6 +33934,10 @@ var init_Axios = __esm({
|
|
33982
33934
|
}, true);
|
33983
33935
|
}
|
33984
33936
|
}
|
33937
|
+
validator_default.assertOptions(config, {
|
33938
|
+
baseUrl: validators2.spelling("baseURL"),
|
33939
|
+
withXsrfToken: validators2.spelling("withXSRFToken")
|
33940
|
+
}, true);
|
33985
33941
|
config.method = (config.method || this.defaults.method || "get").toLowerCase();
|
33986
33942
|
let contextHeaders = headers && utils_default.merge(
|
33987
33943
|
headers.common,
|
@@ -34081,10 +34037,10 @@ var init_Axios = __esm({
|
|
34081
34037
|
}
|
34082
34038
|
});
|
34083
34039
|
|
34084
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
34040
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/cancel/CancelToken.js
|
34085
34041
|
var CancelToken, CancelToken_default;
|
34086
34042
|
var init_CancelToken = __esm({
|
34087
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
34043
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/cancel/CancelToken.js"() {
|
34088
34044
|
"use strict";
|
34089
34045
|
init_CanceledError();
|
34090
34046
|
CancelToken = class _CancelToken {
|
@@ -34187,33 +34143,33 @@ var init_CancelToken = __esm({
|
|
34187
34143
|
}
|
34188
34144
|
});
|
34189
34145
|
|
34190
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
34146
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/spread.js
|
34191
34147
|
function spread(callback) {
|
34192
34148
|
return function wrap(arr) {
|
34193
34149
|
return callback.apply(null, arr);
|
34194
34150
|
};
|
34195
34151
|
}
|
34196
34152
|
var init_spread = __esm({
|
34197
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
34153
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/spread.js"() {
|
34198
34154
|
"use strict";
|
34199
34155
|
}
|
34200
34156
|
});
|
34201
34157
|
|
34202
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
34158
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/isAxiosError.js
|
34203
34159
|
function isAxiosError(payload) {
|
34204
34160
|
return utils_default.isObject(payload) && payload.isAxiosError === true;
|
34205
34161
|
}
|
34206
34162
|
var init_isAxiosError = __esm({
|
34207
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
34163
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/isAxiosError.js"() {
|
34208
34164
|
"use strict";
|
34209
34165
|
init_utils();
|
34210
34166
|
}
|
34211
34167
|
});
|
34212
34168
|
|
34213
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
34169
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/HttpStatusCode.js
|
34214
34170
|
var HttpStatusCode, HttpStatusCode_default;
|
34215
34171
|
var init_HttpStatusCode = __esm({
|
34216
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
34172
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/helpers/HttpStatusCode.js"() {
|
34217
34173
|
"use strict";
|
34218
34174
|
HttpStatusCode = {
|
34219
34175
|
Continue: 100,
|
@@ -34287,7 +34243,7 @@ var init_HttpStatusCode = __esm({
|
|
34287
34243
|
}
|
34288
34244
|
});
|
34289
34245
|
|
34290
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
34246
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/axios.js
|
34291
34247
|
function createInstance(defaultConfig) {
|
34292
34248
|
const context = new Axios_default(defaultConfig);
|
34293
34249
|
const instance = bind(Axios_default.prototype.request, context);
|
@@ -34300,7 +34256,7 @@ function createInstance(defaultConfig) {
|
|
34300
34256
|
}
|
34301
34257
|
var axios, axios_default;
|
34302
34258
|
var init_axios = __esm({
|
34303
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
34259
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/lib/axios.js"() {
|
34304
34260
|
"use strict";
|
34305
34261
|
init_utils();
|
34306
34262
|
init_bind();
|
@@ -34343,10 +34299,10 @@ var init_axios = __esm({
|
|
34343
34299
|
}
|
34344
34300
|
});
|
34345
34301
|
|
34346
|
-
// ../../../node_modules/.pnpm/axios@1.7.
|
34302
|
+
// ../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/index.js
|
34347
34303
|
var Axios2, AxiosError2, CanceledError2, isCancel2, CancelToken2, VERSION2, all2, Cancel, isAxiosError2, spread2, toFormData2, AxiosHeaders2, HttpStatusCode2, formToJSON, getAdapter, mergeConfig2;
|
34348
34304
|
var init_axios2 = __esm({
|
34349
|
-
"../../../node_modules/.pnpm/axios@1.7.
|
34305
|
+
"../../../node_modules/.pnpm/axios@1.7.8_debug@4.3.7/node_modules/axios/index.js"() {
|
34350
34306
|
"use strict";
|
34351
34307
|
init_axios();
|
34352
34308
|
({
|