@modern-js/upgrade 0.0.0-nightly-20250316160502 → 0.0.0-nightly-20250317160319
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 +121 -230
- package/package.json +5 -5
package/dist/index.js
CHANGED
@@ -10099,9 +10099,9 @@ var require_ms = __commonJS({
|
|
10099
10099
|
}
|
10100
10100
|
});
|
10101
10101
|
|
10102
|
-
// ../../../node_modules/.pnpm/debug@4.3.
|
10102
|
+
// ../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/common.js
|
10103
10103
|
var require_common = __commonJS({
|
10104
|
-
"../../../node_modules/.pnpm/debug@4.3.
|
10104
|
+
"../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/common.js"(exports, module2) {
|
10105
10105
|
"use strict";
|
10106
10106
|
function setup(env) {
|
10107
10107
|
createDebug.debug = createDebug;
|
@@ -10263,9 +10263,9 @@ var require_common = __commonJS({
|
|
10263
10263
|
}
|
10264
10264
|
});
|
10265
10265
|
|
10266
|
-
// ../../../node_modules/.pnpm/debug@4.3.
|
10266
|
+
// ../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/browser.js
|
10267
10267
|
var require_browser = __commonJS({
|
10268
|
-
"../../../node_modules/.pnpm/debug@4.3.
|
10268
|
+
"../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/browser.js"(exports, module2) {
|
10269
10269
|
"use strict";
|
10270
10270
|
exports.formatArgs = formatArgs;
|
10271
10271
|
exports.save = save;
|
@@ -10434,118 +10434,9 @@ var require_browser = __commonJS({
|
|
10434
10434
|
}
|
10435
10435
|
});
|
10436
10436
|
|
10437
|
-
// ../../../node_modules/.pnpm/
|
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
|
-
};
|
10448
|
-
}
|
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;
|
10463
|
-
}
|
10464
|
-
if ("FORCE_COLOR" in env) {
|
10465
|
-
forceColor = env.FORCE_COLOR.length === 0 || parseInt(env.FORCE_COLOR, 10) !== 0;
|
10466
|
-
}
|
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
|
-
};
|
10477
|
-
}
|
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
|
-
}
|
10519
|
-
}
|
10520
|
-
if (/-256(color)?$/i.test(env.TERM)) {
|
10521
|
-
return 2;
|
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;
|
10533
|
-
}
|
10534
|
-
function getSupportLevel(stream4) {
|
10535
|
-
const level = supportsColor(stream4);
|
10536
|
-
return translateLevel(level);
|
10537
|
-
}
|
10538
|
-
module2.exports = {
|
10539
|
-
supportsColor: getSupportLevel,
|
10540
|
-
stdout: getSupportLevel(process.stdout),
|
10541
|
-
stderr: getSupportLevel(process.stderr)
|
10542
|
-
};
|
10543
|
-
}
|
10544
|
-
});
|
10545
|
-
|
10546
|
-
// ../../../node_modules/.pnpm/debug@4.3.7_supports-color@5.5.0/node_modules/debug/src/node.js
|
10437
|
+
// ../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/node.js
|
10547
10438
|
var require_node = __commonJS({
|
10548
|
-
"../../../node_modules/.pnpm/debug@4.3.
|
10439
|
+
"../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/node.js"(exports, module2) {
|
10549
10440
|
"use strict";
|
10550
10441
|
var tty = require("tty");
|
10551
10442
|
var util3 = require("util");
|
@@ -10562,7 +10453,7 @@ var require_node = __commonJS({
|
|
10562
10453
|
);
|
10563
10454
|
exports.colors = [6, 2, 3, 4, 5, 1];
|
10564
10455
|
try {
|
10565
|
-
const supportsColor =
|
10456
|
+
const supportsColor = require_supports_color();
|
10566
10457
|
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
10567
10458
|
exports.colors = [
|
10568
10459
|
20,
|
@@ -10718,9 +10609,9 @@ var require_node = __commonJS({
|
|
10718
10609
|
}
|
10719
10610
|
});
|
10720
10611
|
|
10721
|
-
// ../../../node_modules/.pnpm/debug@4.3.
|
10612
|
+
// ../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/index.js
|
10722
10613
|
var require_src = __commonJS({
|
10723
|
-
"../../../node_modules/.pnpm/debug@4.3.
|
10614
|
+
"../../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/index.js"(exports, module2) {
|
10724
10615
|
"use strict";
|
10725
10616
|
if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
|
10726
10617
|
module2.exports = require_browser();
|
@@ -20558,19 +20449,19 @@ var init_semver = __esm({
|
|
20558
20449
|
}
|
20559
20450
|
});
|
20560
20451
|
|
20561
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
20452
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/bind.js
|
20562
20453
|
function bind(fn, thisArg) {
|
20563
20454
|
return function wrap() {
|
20564
20455
|
return fn.apply(thisArg, arguments);
|
20565
20456
|
};
|
20566
20457
|
}
|
20567
20458
|
var init_bind = __esm({
|
20568
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
20459
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/bind.js"() {
|
20569
20460
|
"use strict";
|
20570
20461
|
}
|
20571
20462
|
});
|
20572
20463
|
|
20573
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
20464
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/utils.js
|
20574
20465
|
function isBuffer(val) {
|
20575
20466
|
return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor) && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val);
|
20576
20467
|
}
|
@@ -20644,7 +20535,7 @@ function isSpecCompliantForm(thing) {
|
|
20644
20535
|
}
|
20645
20536
|
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, toJSONObject, isAsyncFn, isThenable, _setImmediate, asap, utils_default;
|
20646
20537
|
var init_utils = __esm({
|
20647
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
20538
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/utils.js"() {
|
20648
20539
|
"use strict";
|
20649
20540
|
init_bind();
|
20650
20541
|
({ toString } = Object.prototype);
|
@@ -20945,7 +20836,7 @@ var init_utils = __esm({
|
|
20945
20836
|
}
|
20946
20837
|
});
|
20947
20838
|
|
20948
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
20839
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/AxiosError.js
|
20949
20840
|
function AxiosError(message, code, config, request, response) {
|
20950
20841
|
Error.call(this);
|
20951
20842
|
if (Error.captureStackTrace) {
|
@@ -20965,7 +20856,7 @@ function AxiosError(message, code, config, request, response) {
|
|
20965
20856
|
}
|
20966
20857
|
var prototype, descriptors, AxiosError_default;
|
20967
20858
|
var init_AxiosError = __esm({
|
20968
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
20859
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/AxiosError.js"() {
|
20969
20860
|
"use strict";
|
20970
20861
|
init_utils();
|
20971
20862
|
utils_default.inherits(AxiosError, Error, {
|
@@ -31311,17 +31202,17 @@ var require_form_data = __commonJS({
|
|
31311
31202
|
}
|
31312
31203
|
});
|
31313
31204
|
|
31314
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
31205
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/node/classes/FormData.js
|
31315
31206
|
var import_form_data, FormData_default;
|
31316
31207
|
var init_FormData = __esm({
|
31317
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
31208
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/node/classes/FormData.js"() {
|
31318
31209
|
"use strict";
|
31319
31210
|
import_form_data = __toESM(require_form_data());
|
31320
31211
|
FormData_default = import_form_data.default;
|
31321
31212
|
}
|
31322
31213
|
});
|
31323
31214
|
|
31324
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
31215
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/toFormData.js
|
31325
31216
|
function isVisitable(thing) {
|
31326
31217
|
return utils_default.isPlainObject(thing) || utils_default.isArray(thing);
|
31327
31218
|
}
|
@@ -31433,7 +31324,7 @@ function toFormData(obj, formData, options) {
|
|
31433
31324
|
}
|
31434
31325
|
var predicates, toFormData_default;
|
31435
31326
|
var init_toFormData = __esm({
|
31436
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
31327
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/toFormData.js"() {
|
31437
31328
|
"use strict";
|
31438
31329
|
init_utils();
|
31439
31330
|
init_AxiosError();
|
@@ -31445,7 +31336,7 @@ var init_toFormData = __esm({
|
|
31445
31336
|
}
|
31446
31337
|
});
|
31447
31338
|
|
31448
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
31339
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js
|
31449
31340
|
function encode(str) {
|
31450
31341
|
const charMap = {
|
31451
31342
|
"!": "%21",
|
@@ -31466,7 +31357,7 @@ function AxiosURLSearchParams(params, options) {
|
|
31466
31357
|
}
|
31467
31358
|
var prototype2, AxiosURLSearchParams_default;
|
31468
31359
|
var init_AxiosURLSearchParams = __esm({
|
31469
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
31360
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js"() {
|
31470
31361
|
"use strict";
|
31471
31362
|
init_toFormData();
|
31472
31363
|
prototype2 = AxiosURLSearchParams.prototype;
|
@@ -31485,7 +31376,7 @@ var init_AxiosURLSearchParams = __esm({
|
|
31485
31376
|
}
|
31486
31377
|
});
|
31487
31378
|
|
31488
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
31379
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/buildURL.js
|
31489
31380
|
function encode2(val) {
|
31490
31381
|
return encodeURIComponent(val).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
|
31491
31382
|
}
|
@@ -31516,17 +31407,17 @@ function buildURL(url2, params, options) {
|
|
31516
31407
|
return url2;
|
31517
31408
|
}
|
31518
31409
|
var init_buildURL = __esm({
|
31519
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
31410
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/buildURL.js"() {
|
31520
31411
|
"use strict";
|
31521
31412
|
init_utils();
|
31522
31413
|
init_AxiosURLSearchParams();
|
31523
31414
|
}
|
31524
31415
|
});
|
31525
31416
|
|
31526
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
31417
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/InterceptorManager.js
|
31527
31418
|
var InterceptorManager, InterceptorManager_default;
|
31528
31419
|
var init_InterceptorManager = __esm({
|
31529
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
31420
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/InterceptorManager.js"() {
|
31530
31421
|
"use strict";
|
31531
31422
|
init_utils();
|
31532
31423
|
InterceptorManager = class {
|
@@ -31594,10 +31485,10 @@ var init_InterceptorManager = __esm({
|
|
31594
31485
|
}
|
31595
31486
|
});
|
31596
31487
|
|
31597
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
31488
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/defaults/transitional.js
|
31598
31489
|
var transitional_default;
|
31599
31490
|
var init_transitional = __esm({
|
31600
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
31491
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/defaults/transitional.js"() {
|
31601
31492
|
"use strict";
|
31602
31493
|
transitional_default = {
|
31603
31494
|
silentJSONParsing: true,
|
@@ -31607,20 +31498,20 @@ var init_transitional = __esm({
|
|
31607
31498
|
}
|
31608
31499
|
});
|
31609
31500
|
|
31610
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
31501
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/node/classes/URLSearchParams.js
|
31611
31502
|
var import_url, URLSearchParams_default;
|
31612
31503
|
var init_URLSearchParams = __esm({
|
31613
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
31504
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/node/classes/URLSearchParams.js"() {
|
31614
31505
|
"use strict";
|
31615
31506
|
import_url = __toESM(require("url"));
|
31616
31507
|
URLSearchParams_default = import_url.default.URLSearchParams;
|
31617
31508
|
}
|
31618
31509
|
});
|
31619
31510
|
|
31620
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
31511
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
|
31621
31512
|
var import_crypto, ALPHA, DIGIT, ALPHABET, generateString, node_default;
|
31622
31513
|
var init_node = __esm({
|
31623
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
31514
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/node/index.js"() {
|
31624
31515
|
"use strict";
|
31625
31516
|
import_crypto = __toESM(require("crypto"));
|
31626
31517
|
init_URLSearchParams();
|
@@ -31656,7 +31547,7 @@ var init_node = __esm({
|
|
31656
31547
|
}
|
31657
31548
|
});
|
31658
31549
|
|
31659
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
31550
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/common/utils.js
|
31660
31551
|
var utils_exports = {};
|
31661
31552
|
__export(utils_exports, {
|
31662
31553
|
hasBrowserEnv: () => hasBrowserEnv,
|
@@ -31667,7 +31558,7 @@ __export(utils_exports, {
|
|
31667
31558
|
});
|
31668
31559
|
var hasBrowserEnv, _navigator, hasStandardBrowserEnv, hasStandardBrowserWebWorkerEnv, origin;
|
31669
31560
|
var init_utils2 = __esm({
|
31670
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
31561
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/common/utils.js"() {
|
31671
31562
|
"use strict";
|
31672
31563
|
hasBrowserEnv = typeof window !== "undefined" && typeof document !== "undefined";
|
31673
31564
|
_navigator = typeof navigator === "object" && navigator || void 0;
|
@@ -31680,10 +31571,10 @@ var init_utils2 = __esm({
|
|
31680
31571
|
}
|
31681
31572
|
});
|
31682
31573
|
|
31683
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
31574
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/index.js
|
31684
31575
|
var platform_default;
|
31685
31576
|
var init_platform = __esm({
|
31686
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
31577
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/platform/index.js"() {
|
31687
31578
|
"use strict";
|
31688
31579
|
init_node();
|
31689
31580
|
init_utils2();
|
@@ -31691,7 +31582,7 @@ var init_platform = __esm({
|
|
31691
31582
|
}
|
31692
31583
|
});
|
31693
31584
|
|
31694
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
31585
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/toURLEncodedForm.js
|
31695
31586
|
function toURLEncodedForm(data, options) {
|
31696
31587
|
return toFormData_default(data, new platform_default.classes.URLSearchParams(), Object.assign({
|
31697
31588
|
visitor: function(value, key, path8, helpers) {
|
@@ -31704,7 +31595,7 @@ function toURLEncodedForm(data, options) {
|
|
31704
31595
|
}, options));
|
31705
31596
|
}
|
31706
31597
|
var init_toURLEncodedForm = __esm({
|
31707
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
31598
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/toURLEncodedForm.js"() {
|
31708
31599
|
"use strict";
|
31709
31600
|
init_utils();
|
31710
31601
|
init_toFormData();
|
@@ -31712,7 +31603,7 @@ var init_toURLEncodedForm = __esm({
|
|
31712
31603
|
}
|
31713
31604
|
});
|
31714
31605
|
|
31715
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
31606
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/formDataToJSON.js
|
31716
31607
|
function parsePropPath(name) {
|
31717
31608
|
return utils_default.matchAll(/\w+|\[(\w*)]/g, name).map((match) => {
|
31718
31609
|
return match[0] === "[]" ? "" : match[1] || match[0];
|
@@ -31766,14 +31657,14 @@ function formDataToJSON(formData) {
|
|
31766
31657
|
}
|
31767
31658
|
var formDataToJSON_default;
|
31768
31659
|
var init_formDataToJSON = __esm({
|
31769
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
31660
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/formDataToJSON.js"() {
|
31770
31661
|
"use strict";
|
31771
31662
|
init_utils();
|
31772
31663
|
formDataToJSON_default = formDataToJSON;
|
31773
31664
|
}
|
31774
31665
|
});
|
31775
31666
|
|
31776
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
31667
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/defaults/index.js
|
31777
31668
|
function stringifySafely(rawValue, parser, encoder) {
|
31778
31669
|
if (utils_default.isString(rawValue)) {
|
31779
31670
|
try {
|
@@ -31789,7 +31680,7 @@ function stringifySafely(rawValue, parser, encoder) {
|
|
31789
31680
|
}
|
31790
31681
|
var defaults, defaults_default;
|
31791
31682
|
var init_defaults = __esm({
|
31792
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
31683
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/defaults/index.js"() {
|
31793
31684
|
"use strict";
|
31794
31685
|
init_utils();
|
31795
31686
|
init_AxiosError();
|
@@ -31895,10 +31786,10 @@ var init_defaults = __esm({
|
|
31895
31786
|
}
|
31896
31787
|
});
|
31897
31788
|
|
31898
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
31789
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/parseHeaders.js
|
31899
31790
|
var ignoreDuplicateOf, parseHeaders_default;
|
31900
31791
|
var init_parseHeaders = __esm({
|
31901
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
31792
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/parseHeaders.js"() {
|
31902
31793
|
"use strict";
|
31903
31794
|
init_utils();
|
31904
31795
|
ignoreDuplicateOf = utils_default.toObjectSet([
|
@@ -31947,7 +31838,7 @@ var init_parseHeaders = __esm({
|
|
31947
31838
|
}
|
31948
31839
|
});
|
31949
31840
|
|
31950
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
31841
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/AxiosHeaders.js
|
31951
31842
|
function normalizeHeader(header) {
|
31952
31843
|
return header && String(header).trim().toLowerCase();
|
31953
31844
|
}
|
@@ -32000,7 +31891,7 @@ function buildAccessors(obj, header) {
|
|
32000
31891
|
}
|
32001
31892
|
var $internals, isValidHeaderName, AxiosHeaders, AxiosHeaders_default;
|
32002
31893
|
var init_AxiosHeaders = __esm({
|
32003
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
31894
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/AxiosHeaders.js"() {
|
32004
31895
|
"use strict";
|
32005
31896
|
init_utils();
|
32006
31897
|
init_parseHeaders();
|
@@ -32177,7 +32068,7 @@ var init_AxiosHeaders = __esm({
|
|
32177
32068
|
}
|
32178
32069
|
});
|
32179
32070
|
|
32180
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
32071
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/transformData.js
|
32181
32072
|
function transformData(fns, response) {
|
32182
32073
|
const config = this || defaults_default;
|
32183
32074
|
const context = response || config;
|
@@ -32190,7 +32081,7 @@ function transformData(fns, response) {
|
|
32190
32081
|
return data;
|
32191
32082
|
}
|
32192
32083
|
var init_transformData = __esm({
|
32193
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
32084
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/transformData.js"() {
|
32194
32085
|
"use strict";
|
32195
32086
|
init_utils();
|
32196
32087
|
init_defaults();
|
@@ -32198,24 +32089,24 @@ var init_transformData = __esm({
|
|
32198
32089
|
}
|
32199
32090
|
});
|
32200
32091
|
|
32201
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
32092
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/cancel/isCancel.js
|
32202
32093
|
function isCancel(value) {
|
32203
32094
|
return !!(value && value.__CANCEL__);
|
32204
32095
|
}
|
32205
32096
|
var init_isCancel = __esm({
|
32206
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
32097
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/cancel/isCancel.js"() {
|
32207
32098
|
"use strict";
|
32208
32099
|
}
|
32209
32100
|
});
|
32210
32101
|
|
32211
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
32102
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/cancel/CanceledError.js
|
32212
32103
|
function CanceledError(message, config, request) {
|
32213
32104
|
AxiosError_default.call(this, message == null ? "canceled" : message, AxiosError_default.ERR_CANCELED, config, request);
|
32214
32105
|
this.name = "CanceledError";
|
32215
32106
|
}
|
32216
32107
|
var CanceledError_default;
|
32217
32108
|
var init_CanceledError = __esm({
|
32218
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
32109
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/cancel/CanceledError.js"() {
|
32219
32110
|
"use strict";
|
32220
32111
|
init_AxiosError();
|
32221
32112
|
init_utils();
|
@@ -32226,7 +32117,7 @@ var init_CanceledError = __esm({
|
|
32226
32117
|
}
|
32227
32118
|
});
|
32228
32119
|
|
32229
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
32120
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/settle.js
|
32230
32121
|
function settle(resolve, reject, response) {
|
32231
32122
|
const validateStatus2 = response.config.validateStatus;
|
32232
32123
|
if (!response.status || !validateStatus2 || validateStatus2(response.status)) {
|
@@ -32242,33 +32133,33 @@ function settle(resolve, reject, response) {
|
|
32242
32133
|
}
|
32243
32134
|
}
|
32244
32135
|
var init_settle = __esm({
|
32245
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
32136
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/settle.js"() {
|
32246
32137
|
"use strict";
|
32247
32138
|
init_AxiosError();
|
32248
32139
|
}
|
32249
32140
|
});
|
32250
32141
|
|
32251
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
32142
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/isAbsoluteURL.js
|
32252
32143
|
function isAbsoluteURL(url2) {
|
32253
32144
|
return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url2);
|
32254
32145
|
}
|
32255
32146
|
var init_isAbsoluteURL = __esm({
|
32256
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
32147
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/isAbsoluteURL.js"() {
|
32257
32148
|
"use strict";
|
32258
32149
|
}
|
32259
32150
|
});
|
32260
32151
|
|
32261
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
32152
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/combineURLs.js
|
32262
32153
|
function combineURLs(baseURL, relativeURL) {
|
32263
32154
|
return relativeURL ? baseURL.replace(/\/?\/$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
|
32264
32155
|
}
|
32265
32156
|
var init_combineURLs = __esm({
|
32266
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
32157
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/combineURLs.js"() {
|
32267
32158
|
"use strict";
|
32268
32159
|
}
|
32269
32160
|
});
|
32270
32161
|
|
32271
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
32162
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/buildFullPath.js
|
32272
32163
|
function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
|
32273
32164
|
let isRelativeUrl = !isAbsoluteURL(requestedURL);
|
32274
32165
|
if (baseURL && isRelativeUrl || allowAbsoluteUrls == false) {
|
@@ -32277,7 +32168,7 @@ function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
|
|
32277
32168
|
return requestedURL;
|
32278
32169
|
}
|
32279
32170
|
var init_buildFullPath = __esm({
|
32280
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
32171
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/buildFullPath.js"() {
|
32281
32172
|
"use strict";
|
32282
32173
|
init_isAbsoluteURL();
|
32283
32174
|
init_combineURLs();
|
@@ -32872,27 +32763,27 @@ var require_follow_redirects = __commonJS({
|
|
32872
32763
|
}
|
32873
32764
|
});
|
32874
32765
|
|
32875
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
32766
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/env/data.js
|
32876
32767
|
var VERSION;
|
32877
32768
|
var init_data = __esm({
|
32878
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
32769
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/env/data.js"() {
|
32879
32770
|
"use strict";
|
32880
|
-
VERSION = "1.8.
|
32771
|
+
VERSION = "1.8.3";
|
32881
32772
|
}
|
32882
32773
|
});
|
32883
32774
|
|
32884
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
32775
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/parseProtocol.js
|
32885
32776
|
function parseProtocol(url2) {
|
32886
32777
|
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url2);
|
32887
32778
|
return match && match[1] || "";
|
32888
32779
|
}
|
32889
32780
|
var init_parseProtocol = __esm({
|
32890
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
32781
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/parseProtocol.js"() {
|
32891
32782
|
"use strict";
|
32892
32783
|
}
|
32893
32784
|
});
|
32894
32785
|
|
32895
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
32786
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/fromDataURI.js
|
32896
32787
|
function fromDataURI(uri, asBlob, options) {
|
32897
32788
|
const _Blob = options && options.Blob || platform_default.classes.Blob;
|
32898
32789
|
const protocol = parseProtocol(uri);
|
@@ -32921,7 +32812,7 @@ function fromDataURI(uri, asBlob, options) {
|
|
32921
32812
|
}
|
32922
32813
|
var DATA_URL_PATTERN;
|
32923
32814
|
var init_fromDataURI = __esm({
|
32924
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
32815
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/fromDataURI.js"() {
|
32925
32816
|
"use strict";
|
32926
32817
|
init_AxiosError();
|
32927
32818
|
init_parseProtocol();
|
@@ -32930,10 +32821,10 @@ var init_fromDataURI = __esm({
|
|
32930
32821
|
}
|
32931
32822
|
});
|
32932
32823
|
|
32933
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
32824
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/AxiosTransformStream.js
|
32934
32825
|
var import_stream, kInternals, AxiosTransformStream, AxiosTransformStream_default;
|
32935
32826
|
var init_AxiosTransformStream = __esm({
|
32936
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
32827
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/AxiosTransformStream.js"() {
|
32937
32828
|
"use strict";
|
32938
32829
|
import_stream = __toESM(require("stream"));
|
32939
32830
|
init_utils();
|
@@ -33052,10 +32943,10 @@ var init_AxiosTransformStream = __esm({
|
|
33052
32943
|
}
|
33053
32944
|
});
|
33054
32945
|
|
33055
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
32946
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/readBlob.js
|
33056
32947
|
var asyncIterator, readBlob, readBlob_default;
|
33057
32948
|
var init_readBlob = __esm({
|
33058
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
32949
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/readBlob.js"() {
|
33059
32950
|
"use strict";
|
33060
32951
|
({ asyncIterator } = Symbol);
|
33061
32952
|
readBlob = function(blob) {
|
@@ -33075,10 +32966,10 @@ var init_readBlob = __esm({
|
|
33075
32966
|
}
|
33076
32967
|
});
|
33077
32968
|
|
33078
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
32969
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
|
33079
32970
|
var import_util, import_stream2, BOUNDARY_ALPHABET, textEncoder, CRLF, CRLF_BYTES, CRLF_BYTES_COUNT, FormDataPart, formDataToStream, formDataToStream_default;
|
33080
32971
|
var init_formDataToStream = __esm({
|
33081
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
32972
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js"() {
|
33082
32973
|
"use strict";
|
33083
32974
|
import_util = __toESM(require("util"));
|
33084
32975
|
import_stream2 = require("stream");
|
@@ -33169,10 +33060,10 @@ var init_formDataToStream = __esm({
|
|
33169
33060
|
}
|
33170
33061
|
});
|
33171
33062
|
|
33172
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
33063
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js
|
33173
33064
|
var import_stream3, ZlibHeaderTransformStream, ZlibHeaderTransformStream_default;
|
33174
33065
|
var init_ZlibHeaderTransformStream = __esm({
|
33175
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
33066
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js"() {
|
33176
33067
|
"use strict";
|
33177
33068
|
import_stream3 = __toESM(require("stream"));
|
33178
33069
|
ZlibHeaderTransformStream = class extends import_stream3.default.Transform {
|
@@ -33197,10 +33088,10 @@ var init_ZlibHeaderTransformStream = __esm({
|
|
33197
33088
|
}
|
33198
33089
|
});
|
33199
33090
|
|
33200
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
33091
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/callbackify.js
|
33201
33092
|
var callbackify, callbackify_default;
|
33202
33093
|
var init_callbackify = __esm({
|
33203
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
33094
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/callbackify.js"() {
|
33204
33095
|
"use strict";
|
33205
33096
|
init_utils();
|
33206
33097
|
callbackify = (fn, reducer) => {
|
@@ -33219,7 +33110,7 @@ var init_callbackify = __esm({
|
|
33219
33110
|
}
|
33220
33111
|
});
|
33221
33112
|
|
33222
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
33113
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/speedometer.js
|
33223
33114
|
function speedometer(samplesCount, min) {
|
33224
33115
|
samplesCount = samplesCount || 10;
|
33225
33116
|
const bytes = new Array(samplesCount);
|
@@ -33255,13 +33146,13 @@ function speedometer(samplesCount, min) {
|
|
33255
33146
|
}
|
33256
33147
|
var speedometer_default;
|
33257
33148
|
var init_speedometer = __esm({
|
33258
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
33149
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/speedometer.js"() {
|
33259
33150
|
"use strict";
|
33260
33151
|
speedometer_default = speedometer;
|
33261
33152
|
}
|
33262
33153
|
});
|
33263
33154
|
|
33264
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
33155
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/throttle.js
|
33265
33156
|
function throttle(fn, freq) {
|
33266
33157
|
let timestamp = 0;
|
33267
33158
|
let threshold = 1e3 / freq;
|
@@ -33296,16 +33187,16 @@ function throttle(fn, freq) {
|
|
33296
33187
|
}
|
33297
33188
|
var throttle_default;
|
33298
33189
|
var init_throttle = __esm({
|
33299
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
33190
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/throttle.js"() {
|
33300
33191
|
"use strict";
|
33301
33192
|
throttle_default = throttle;
|
33302
33193
|
}
|
33303
33194
|
});
|
33304
33195
|
|
33305
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
33196
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/progressEventReducer.js
|
33306
33197
|
var progressEventReducer, progressEventDecorator, asyncDecorator;
|
33307
33198
|
var init_progressEventReducer = __esm({
|
33308
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
33199
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/progressEventReducer.js"() {
|
33309
33200
|
"use strict";
|
33310
33201
|
init_speedometer();
|
33311
33202
|
init_throttle();
|
@@ -33346,7 +33237,7 @@ var init_progressEventReducer = __esm({
|
|
33346
33237
|
}
|
33347
33238
|
});
|
33348
33239
|
|
33349
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
33240
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/http.js
|
33350
33241
|
function dispatchBeforeRedirect(options, responseDetails) {
|
33351
33242
|
if (options.beforeRedirects.proxy) {
|
33352
33243
|
options.beforeRedirects.proxy(options);
|
@@ -33390,7 +33281,7 @@ function setProxy(options, configProxy, location) {
|
|
33390
33281
|
}
|
33391
33282
|
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;
|
33392
33283
|
var init_http = __esm({
|
33393
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
33284
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/http.js"() {
|
33394
33285
|
"use strict";
|
33395
33286
|
init_utils();
|
33396
33287
|
init_settle();
|
@@ -33883,10 +33774,10 @@ var init_http = __esm({
|
|
33883
33774
|
}
|
33884
33775
|
});
|
33885
33776
|
|
33886
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
33777
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/isURLSameOrigin.js
|
33887
33778
|
var isURLSameOrigin_default;
|
33888
33779
|
var init_isURLSameOrigin = __esm({
|
33889
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
33780
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/isURLSameOrigin.js"() {
|
33890
33781
|
"use strict";
|
33891
33782
|
init_platform();
|
33892
33783
|
isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? ((origin2, isMSIE) => (url2) => {
|
@@ -33899,10 +33790,10 @@ var init_isURLSameOrigin = __esm({
|
|
33899
33790
|
}
|
33900
33791
|
});
|
33901
33792
|
|
33902
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
33793
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/cookies.js
|
33903
33794
|
var cookies_default;
|
33904
33795
|
var init_cookies = __esm({
|
33905
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
33796
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/cookies.js"() {
|
33906
33797
|
"use strict";
|
33907
33798
|
init_utils();
|
33908
33799
|
init_platform();
|
@@ -33940,7 +33831,7 @@ var init_cookies = __esm({
|
|
33940
33831
|
}
|
33941
33832
|
});
|
33942
33833
|
|
33943
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
33834
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/mergeConfig.js
|
33944
33835
|
function mergeConfig(config1, config2) {
|
33945
33836
|
config2 = config2 || {};
|
33946
33837
|
const config = {};
|
@@ -34020,7 +33911,7 @@ function mergeConfig(config1, config2) {
|
|
34020
33911
|
}
|
34021
33912
|
var headersToObject;
|
34022
33913
|
var init_mergeConfig = __esm({
|
34023
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
33914
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/mergeConfig.js"() {
|
34024
33915
|
"use strict";
|
34025
33916
|
init_utils();
|
34026
33917
|
init_AxiosHeaders();
|
@@ -34028,10 +33919,10 @@ var init_mergeConfig = __esm({
|
|
34028
33919
|
}
|
34029
33920
|
});
|
34030
33921
|
|
34031
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
33922
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/resolveConfig.js
|
34032
33923
|
var resolveConfig_default;
|
34033
33924
|
var init_resolveConfig = __esm({
|
34034
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
33925
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/resolveConfig.js"() {
|
34035
33926
|
"use strict";
|
34036
33927
|
init_platform();
|
34037
33928
|
init_utils();
|
@@ -34045,7 +33936,7 @@ var init_resolveConfig = __esm({
|
|
34045
33936
|
const newConfig = mergeConfig({}, config);
|
34046
33937
|
let { data, withXSRFToken, xsrfHeaderName, xsrfCookieName, headers, auth } = newConfig;
|
34047
33938
|
newConfig.headers = headers = AxiosHeaders_default.from(headers);
|
34048
|
-
newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url), config.params, config.paramsSerializer);
|
33939
|
+
newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url, newConfig.allowAbsoluteUrls), config.params, config.paramsSerializer);
|
34049
33940
|
if (auth) {
|
34050
33941
|
headers.set(
|
34051
33942
|
"Authorization",
|
@@ -34075,10 +33966,10 @@ var init_resolveConfig = __esm({
|
|
34075
33966
|
}
|
34076
33967
|
});
|
34077
33968
|
|
34078
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
33969
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/xhr.js
|
34079
33970
|
var isXHRAdapterSupported, xhr_default;
|
34080
33971
|
var init_xhr = __esm({
|
34081
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
33972
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/xhr.js"() {
|
34082
33973
|
"use strict";
|
34083
33974
|
init_utils();
|
34084
33975
|
init_settle();
|
@@ -34218,10 +34109,10 @@ var init_xhr = __esm({
|
|
34218
34109
|
}
|
34219
34110
|
});
|
34220
34111
|
|
34221
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
34112
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/composeSignals.js
|
34222
34113
|
var composeSignals, composeSignals_default;
|
34223
34114
|
var init_composeSignals = __esm({
|
34224
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
34115
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/composeSignals.js"() {
|
34225
34116
|
"use strict";
|
34226
34117
|
init_CanceledError();
|
34227
34118
|
init_AxiosError();
|
@@ -34263,10 +34154,10 @@ var init_composeSignals = __esm({
|
|
34263
34154
|
}
|
34264
34155
|
});
|
34265
34156
|
|
34266
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
34157
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/trackStream.js
|
34267
34158
|
var streamChunk, readBytes, readStream, trackStream;
|
34268
34159
|
var init_trackStream = __esm({
|
34269
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
34160
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/trackStream.js"() {
|
34270
34161
|
"use strict";
|
34271
34162
|
streamChunk = function* (chunk, chunkSize) {
|
34272
34163
|
let len = chunk.byteLength;
|
@@ -34364,10 +34255,10 @@ var init_trackStream = __esm({
|
|
34364
34255
|
}
|
34365
34256
|
});
|
34366
34257
|
|
34367
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
34258
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/fetch.js
|
34368
34259
|
var isFetchSupported, isReadableStreamSupported, encodeText, test, supportsRequestStream, DEFAULT_CHUNK_SIZE, supportsResponseStream, resolvers, getBodyLength, resolveBodyLength, fetch_default;
|
34369
34260
|
var init_fetch = __esm({
|
34370
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
34261
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/fetch.js"() {
|
34371
34262
|
"use strict";
|
34372
34263
|
init_platform();
|
34373
34264
|
init_utils();
|
@@ -34544,10 +34435,10 @@ var init_fetch = __esm({
|
|
34544
34435
|
}
|
34545
34436
|
});
|
34546
34437
|
|
34547
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
34438
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/adapters.js
|
34548
34439
|
var knownAdapters, renderReason, isResolvedHandle, adapters_default;
|
34549
34440
|
var init_adapters = __esm({
|
34550
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
34441
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/adapters/adapters.js"() {
|
34551
34442
|
"use strict";
|
34552
34443
|
init_utils();
|
34553
34444
|
init_http();
|
@@ -34609,7 +34500,7 @@ var init_adapters = __esm({
|
|
34609
34500
|
}
|
34610
34501
|
});
|
34611
34502
|
|
34612
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
34503
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/dispatchRequest.js
|
34613
34504
|
function throwIfCancellationRequested(config) {
|
34614
34505
|
if (config.cancelToken) {
|
34615
34506
|
config.cancelToken.throwIfRequested();
|
@@ -34654,7 +34545,7 @@ function dispatchRequest(config) {
|
|
34654
34545
|
});
|
34655
34546
|
}
|
34656
34547
|
var init_dispatchRequest = __esm({
|
34657
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
34548
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/dispatchRequest.js"() {
|
34658
34549
|
"use strict";
|
34659
34550
|
init_transformData();
|
34660
34551
|
init_isCancel();
|
@@ -34665,7 +34556,7 @@ var init_dispatchRequest = __esm({
|
|
34665
34556
|
}
|
34666
34557
|
});
|
34667
34558
|
|
34668
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
34559
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/validator.js
|
34669
34560
|
function assertOptions(options, schema, allowUnknown) {
|
34670
34561
|
if (typeof options !== "object") {
|
34671
34562
|
throw new AxiosError_default("options must be an object", AxiosError_default.ERR_BAD_OPTION_VALUE);
|
@@ -34690,7 +34581,7 @@ function assertOptions(options, schema, allowUnknown) {
|
|
34690
34581
|
}
|
34691
34582
|
var validators, deprecatedWarnings, validator_default;
|
34692
34583
|
var init_validator = __esm({
|
34693
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
34584
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/validator.js"() {
|
34694
34585
|
"use strict";
|
34695
34586
|
init_data();
|
34696
34587
|
init_AxiosError();
|
@@ -34737,10 +34628,10 @@ var init_validator = __esm({
|
|
34737
34628
|
}
|
34738
34629
|
});
|
34739
34630
|
|
34740
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
34631
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/Axios.js
|
34741
34632
|
var validators2, Axios, Axios_default;
|
34742
34633
|
var init_Axios = __esm({
|
34743
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
34634
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/core/Axios.js"() {
|
34744
34635
|
"use strict";
|
34745
34636
|
init_utils();
|
34746
34637
|
init_buildURL();
|
@@ -34926,10 +34817,10 @@ var init_Axios = __esm({
|
|
34926
34817
|
}
|
34927
34818
|
});
|
34928
34819
|
|
34929
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
34820
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/cancel/CancelToken.js
|
34930
34821
|
var CancelToken, CancelToken_default;
|
34931
34822
|
var init_CancelToken = __esm({
|
34932
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
34823
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/cancel/CancelToken.js"() {
|
34933
34824
|
"use strict";
|
34934
34825
|
init_CanceledError();
|
34935
34826
|
CancelToken = class _CancelToken {
|
@@ -35032,33 +34923,33 @@ var init_CancelToken = __esm({
|
|
35032
34923
|
}
|
35033
34924
|
});
|
35034
34925
|
|
35035
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
34926
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/spread.js
|
35036
34927
|
function spread(callback) {
|
35037
34928
|
return function wrap(arr) {
|
35038
34929
|
return callback.apply(null, arr);
|
35039
34930
|
};
|
35040
34931
|
}
|
35041
34932
|
var init_spread = __esm({
|
35042
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
34933
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/spread.js"() {
|
35043
34934
|
"use strict";
|
35044
34935
|
}
|
35045
34936
|
});
|
35046
34937
|
|
35047
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
34938
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/isAxiosError.js
|
35048
34939
|
function isAxiosError(payload) {
|
35049
34940
|
return utils_default.isObject(payload) && payload.isAxiosError === true;
|
35050
34941
|
}
|
35051
34942
|
var init_isAxiosError = __esm({
|
35052
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
34943
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/isAxiosError.js"() {
|
35053
34944
|
"use strict";
|
35054
34945
|
init_utils();
|
35055
34946
|
}
|
35056
34947
|
});
|
35057
34948
|
|
35058
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
34949
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/HttpStatusCode.js
|
35059
34950
|
var HttpStatusCode, HttpStatusCode_default;
|
35060
34951
|
var init_HttpStatusCode = __esm({
|
35061
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
34952
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/helpers/HttpStatusCode.js"() {
|
35062
34953
|
"use strict";
|
35063
34954
|
HttpStatusCode = {
|
35064
34955
|
Continue: 100,
|
@@ -35132,7 +35023,7 @@ var init_HttpStatusCode = __esm({
|
|
35132
35023
|
}
|
35133
35024
|
});
|
35134
35025
|
|
35135
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
35026
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/axios.js
|
35136
35027
|
function createInstance(defaultConfig) {
|
35137
35028
|
const context = new Axios_default(defaultConfig);
|
35138
35029
|
const instance = bind(Axios_default.prototype.request, context);
|
@@ -35145,7 +35036,7 @@ function createInstance(defaultConfig) {
|
|
35145
35036
|
}
|
35146
35037
|
var axios, axios_default;
|
35147
35038
|
var init_axios = __esm({
|
35148
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
35039
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/lib/axios.js"() {
|
35149
35040
|
"use strict";
|
35150
35041
|
init_utils();
|
35151
35042
|
init_bind();
|
@@ -35188,10 +35079,10 @@ var init_axios = __esm({
|
|
35188
35079
|
}
|
35189
35080
|
});
|
35190
35081
|
|
35191
|
-
// ../../../node_modules/.pnpm/axios@1.8.
|
35082
|
+
// ../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/index.js
|
35192
35083
|
var Axios2, AxiosError2, CanceledError2, isCancel2, CancelToken2, VERSION2, all2, Cancel, isAxiosError2, spread2, toFormData2, AxiosHeaders2, HttpStatusCode2, formToJSON, getAdapter, mergeConfig2;
|
35193
35084
|
var init_axios2 = __esm({
|
35194
|
-
"../../../node_modules/.pnpm/axios@1.8.
|
35085
|
+
"../../../node_modules/.pnpm/axios@1.8.3_debug@4.3.7/node_modules/axios/index.js"() {
|
35195
35086
|
"use strict";
|
35196
35087
|
init_axios();
|
35197
35088
|
({
|
package/package.json
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
"modern",
|
16
16
|
"modern.js"
|
17
17
|
],
|
18
|
-
"version": "0.0.0-nightly-
|
18
|
+
"version": "0.0.0-nightly-20250317160319",
|
19
19
|
"jsnext:source": "./src/index.ts",
|
20
20
|
"types": "./dist/index.d.ts",
|
21
21
|
"main": "./dist/index.js",
|
@@ -45,10 +45,10 @@
|
|
45
45
|
"jest": "^29",
|
46
46
|
"ts-node": "^10.9.1",
|
47
47
|
"typescript": "^5",
|
48
|
-
"@modern-js/plugin-i18n": "0.0.0-nightly-
|
49
|
-
"@modern-js/upgrade-generator": "0.0.0-nightly-
|
50
|
-
"@scripts/build": "0.0.0-nightly-
|
51
|
-
"@scripts/jest-config": "0.0.0-nightly-
|
48
|
+
"@modern-js/plugin-i18n": "0.0.0-nightly-20250317160319",
|
49
|
+
"@modern-js/upgrade-generator": "0.0.0-nightly-20250317160319",
|
50
|
+
"@scripts/build": "0.0.0-nightly-20250317160319",
|
51
|
+
"@scripts/jest-config": "0.0.0-nightly-20250317160319"
|
52
52
|
},
|
53
53
|
"sideEffects": false,
|
54
54
|
"publishConfig": {
|