@modern-js/bff-generator 3.7.72 → 3.7.73
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 +140 -111
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -18768,9 +18768,9 @@ var require_es_set_tostringtag = __commonJS({
|
|
|
18768
18768
|
}
|
|
18769
18769
|
});
|
|
18770
18770
|
|
|
18771
|
-
// ../../../../node_modules/.pnpm/form-data@4.0.
|
|
18771
|
+
// ../../../../node_modules/.pnpm/form-data@4.0.5/node_modules/form-data/lib/populate.js
|
|
18772
18772
|
var require_populate = __commonJS({
|
|
18773
|
-
"../../../../node_modules/.pnpm/form-data@4.0.
|
|
18773
|
+
"../../../../node_modules/.pnpm/form-data@4.0.5/node_modules/form-data/lib/populate.js"(exports, module2) {
|
|
18774
18774
|
"use strict";
|
|
18775
18775
|
module2.exports = function(dst, src) {
|
|
18776
18776
|
Object.keys(src).forEach(function(prop) {
|
|
@@ -18781,9 +18781,9 @@ var require_populate = __commonJS({
|
|
|
18781
18781
|
}
|
|
18782
18782
|
});
|
|
18783
18783
|
|
|
18784
|
-
// ../../../../node_modules/.pnpm/form-data@4.0.
|
|
18784
|
+
// ../../../../node_modules/.pnpm/form-data@4.0.5/node_modules/form-data/lib/form_data.js
|
|
18785
18785
|
var require_form_data = __commonJS({
|
|
18786
|
-
"../../../../node_modules/.pnpm/form-data@4.0.
|
|
18786
|
+
"../../../../node_modules/.pnpm/form-data@4.0.5/node_modules/form-data/lib/form_data.js"(exports, module2) {
|
|
18787
18787
|
"use strict";
|
|
18788
18788
|
var CombinedStream = require_combined_stream();
|
|
18789
18789
|
var util4 = require("util");
|
|
@@ -19095,7 +19095,7 @@ var require_form_data = __commonJS({
|
|
|
19095
19095
|
FormData3.prototype.toString = function() {
|
|
19096
19096
|
return "[object FormData]";
|
|
19097
19097
|
};
|
|
19098
|
-
setToStringTag(FormData3, "FormData");
|
|
19098
|
+
setToStringTag(FormData3.prototype, "FormData");
|
|
19099
19099
|
module2.exports = FormData3;
|
|
19100
19100
|
}
|
|
19101
19101
|
});
|
|
@@ -85836,14 +85836,14 @@ var CATCHE_VALIDITY_PREIOD = 7 * 24 * 3600 * 1e3;
|
|
|
85836
85836
|
// ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.9/node_modules/@modern-js/codesmith-utils/dist/esm/semver.js
|
|
85837
85837
|
var import_semver = __toESM(require_semver2());
|
|
85838
85838
|
|
|
85839
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
85839
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/bind.js
|
|
85840
85840
|
function bind(fn, thisArg) {
|
|
85841
85841
|
return function wrap() {
|
|
85842
85842
|
return fn.apply(thisArg, arguments);
|
|
85843
85843
|
};
|
|
85844
85844
|
}
|
|
85845
85845
|
|
|
85846
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
85846
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/utils.js
|
|
85847
85847
|
var { toString } = Object.prototype;
|
|
85848
85848
|
var { getPrototypeOf } = Object;
|
|
85849
85849
|
var { iterator, toStringTag } = Symbol;
|
|
@@ -85904,7 +85904,12 @@ var isFormData = (thing) => {
|
|
|
85904
85904
|
kind === "object" && isFunction(thing.toString) && thing.toString() === "[object FormData]"));
|
|
85905
85905
|
};
|
|
85906
85906
|
var isURLSearchParams = kindOfTest("URLSearchParams");
|
|
85907
|
-
var [isReadableStream, isRequest, isResponse, isHeaders] = [
|
|
85907
|
+
var [isReadableStream, isRequest, isResponse, isHeaders] = [
|
|
85908
|
+
"ReadableStream",
|
|
85909
|
+
"Request",
|
|
85910
|
+
"Response",
|
|
85911
|
+
"Headers"
|
|
85912
|
+
].map(kindOfTest);
|
|
85908
85913
|
var trim = (str) => str.trim ? str.trim() : str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");
|
|
85909
85914
|
function forEach(obj, fn, { allOwnKeys = false } = {}) {
|
|
85910
85915
|
if (obj === null || typeof obj === "undefined") {
|
|
@@ -85958,6 +85963,9 @@ function merge() {
|
|
|
85958
85963
|
const { caseless, skipUndefined } = isContextDefined(this) && this || {};
|
|
85959
85964
|
const result = {};
|
|
85960
85965
|
const assignValue = (val, key2) => {
|
|
85966
|
+
if (key2 === "__proto__" || key2 === "constructor" || key2 === "prototype") {
|
|
85967
|
+
return;
|
|
85968
|
+
}
|
|
85961
85969
|
const targetKey = caseless && findKey(result, key2) || key2;
|
|
85962
85970
|
if (isPlainObject(result[targetKey]) && isPlainObject(val)) {
|
|
85963
85971
|
result[targetKey] = merge(result[targetKey], val);
|
|
@@ -85975,23 +85983,27 @@ function merge() {
|
|
|
85975
85983
|
return result;
|
|
85976
85984
|
}
|
|
85977
85985
|
var extend = (a, b, thisArg, { allOwnKeys } = {}) => {
|
|
85978
|
-
forEach(
|
|
85979
|
-
|
|
85980
|
-
|
|
85981
|
-
|
|
85982
|
-
|
|
85983
|
-
|
|
85984
|
-
|
|
85985
|
-
|
|
85986
|
-
|
|
85987
|
-
|
|
85988
|
-
|
|
85989
|
-
|
|
85990
|
-
|
|
85991
|
-
|
|
85992
|
-
|
|
85993
|
-
|
|
85994
|
-
|
|
85986
|
+
forEach(
|
|
85987
|
+
b,
|
|
85988
|
+
(val, key2) => {
|
|
85989
|
+
if (thisArg && isFunction(val)) {
|
|
85990
|
+
Object.defineProperty(a, key2, {
|
|
85991
|
+
value: bind(val, thisArg),
|
|
85992
|
+
writable: true,
|
|
85993
|
+
enumerable: true,
|
|
85994
|
+
configurable: true
|
|
85995
|
+
});
|
|
85996
|
+
} else {
|
|
85997
|
+
Object.defineProperty(a, key2, {
|
|
85998
|
+
value: val,
|
|
85999
|
+
writable: true,
|
|
86000
|
+
enumerable: true,
|
|
86001
|
+
configurable: true
|
|
86002
|
+
});
|
|
86003
|
+
}
|
|
86004
|
+
},
|
|
86005
|
+
{ allOwnKeys }
|
|
86006
|
+
);
|
|
85995
86007
|
return a;
|
|
85996
86008
|
};
|
|
85997
86009
|
var stripBOM = (content) => {
|
|
@@ -86001,7 +86013,10 @@ var stripBOM = (content) => {
|
|
|
86001
86013
|
return content;
|
|
86002
86014
|
};
|
|
86003
86015
|
var inherits = (constructor, superConstructor, props, descriptors) => {
|
|
86004
|
-
constructor.prototype = Object.create(
|
|
86016
|
+
constructor.prototype = Object.create(
|
|
86017
|
+
superConstructor.prototype,
|
|
86018
|
+
descriptors
|
|
86019
|
+
);
|
|
86005
86020
|
Object.defineProperty(constructor.prototype, "constructor", {
|
|
86006
86021
|
value: constructor,
|
|
86007
86022
|
writable: true,
|
|
@@ -86082,12 +86097,9 @@ var matchAll = (regExp, str) => {
|
|
|
86082
86097
|
};
|
|
86083
86098
|
var isHTMLForm = kindOfTest("HTMLFormElement");
|
|
86084
86099
|
var toCamelCase = (str) => {
|
|
86085
|
-
return str.toLowerCase().replace(
|
|
86086
|
-
|
|
86087
|
-
|
|
86088
|
-
return p1.toUpperCase() + p2;
|
|
86089
|
-
}
|
|
86090
|
-
);
|
|
86100
|
+
return str.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g, function replacer(m, p1, p2) {
|
|
86101
|
+
return p1.toUpperCase() + p2;
|
|
86102
|
+
});
|
|
86091
86103
|
};
|
|
86092
86104
|
var hasOwnProperty = (({ hasOwnProperty: hasOwnProperty6 }) => (obj, prop) => hasOwnProperty6.call(obj, prop))(Object.prototype);
|
|
86093
86105
|
var isRegExp = kindOfTest("RegExp");
|
|
@@ -86172,20 +86184,21 @@ var _setImmediate = ((setImmediateSupported, postMessageSupported) => {
|
|
|
86172
86184
|
return setImmediate;
|
|
86173
86185
|
}
|
|
86174
86186
|
return postMessageSupported ? ((token2, callbacks) => {
|
|
86175
|
-
_global.addEventListener(
|
|
86176
|
-
|
|
86177
|
-
|
|
86178
|
-
|
|
86179
|
-
|
|
86187
|
+
_global.addEventListener(
|
|
86188
|
+
"message",
|
|
86189
|
+
({ source: source2, data }) => {
|
|
86190
|
+
if (source2 === _global && data === token2) {
|
|
86191
|
+
callbacks.length && callbacks.shift()();
|
|
86192
|
+
}
|
|
86193
|
+
},
|
|
86194
|
+
false
|
|
86195
|
+
);
|
|
86180
86196
|
return (cb) => {
|
|
86181
86197
|
callbacks.push(cb);
|
|
86182
86198
|
_global.postMessage(token2, "*");
|
|
86183
86199
|
};
|
|
86184
86200
|
})(`axios@${Math.random()}`, []) : (cb) => setTimeout(cb);
|
|
86185
|
-
})(
|
|
86186
|
-
typeof setImmediate === "function",
|
|
86187
|
-
isFunction(_global.postMessage)
|
|
86188
|
-
);
|
|
86201
|
+
})(typeof setImmediate === "function", isFunction(_global.postMessage));
|
|
86189
86202
|
var asap = typeof queueMicrotask !== "undefined" ? queueMicrotask.bind(_global) : typeof process !== "undefined" && process.nextTick || _setImmediate;
|
|
86190
86203
|
var isIterable = (thing) => thing != null && isFunction(thing[iterator]);
|
|
86191
86204
|
var utils_default = {
|
|
@@ -86249,7 +86262,7 @@ var utils_default = {
|
|
|
86249
86262
|
isIterable
|
|
86250
86263
|
};
|
|
86251
86264
|
|
|
86252
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
86265
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/AxiosError.js
|
|
86253
86266
|
var AxiosError = class _AxiosError extends Error {
|
|
86254
86267
|
static from(error, code, config, request, response, customProps) {
|
|
86255
86268
|
const axiosError = new _AxiosError(error.message, code || error.code, config, request, response);
|
|
@@ -86315,11 +86328,11 @@ AxiosError.ERR_NOT_SUPPORT = "ERR_NOT_SUPPORT";
|
|
|
86315
86328
|
AxiosError.ERR_INVALID_URL = "ERR_INVALID_URL";
|
|
86316
86329
|
var AxiosError_default = AxiosError;
|
|
86317
86330
|
|
|
86318
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
86331
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/node/classes/FormData.js
|
|
86319
86332
|
var import_form_data = __toESM(require_form_data());
|
|
86320
86333
|
var FormData_default = import_form_data.default;
|
|
86321
86334
|
|
|
86322
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
86335
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/toFormData.js
|
|
86323
86336
|
function isVisitable(thing) {
|
|
86324
86337
|
return utils_default.isPlainObject(thing) || utils_default.isArray(thing);
|
|
86325
86338
|
}
|
|
@@ -86437,7 +86450,7 @@ function toFormData(obj, formData, options) {
|
|
|
86437
86450
|
}
|
|
86438
86451
|
var toFormData_default = toFormData;
|
|
86439
86452
|
|
|
86440
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
86453
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js
|
|
86441
86454
|
function encode(str) {
|
|
86442
86455
|
const charMap = {
|
|
86443
86456
|
"!": "%21",
|
|
@@ -86470,7 +86483,7 @@ prototype.toString = function toString2(encoder) {
|
|
|
86470
86483
|
};
|
|
86471
86484
|
var AxiosURLSearchParams_default = AxiosURLSearchParams;
|
|
86472
86485
|
|
|
86473
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
86486
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/buildURL.js
|
|
86474
86487
|
function encode2(val) {
|
|
86475
86488
|
return encodeURIComponent(val).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+");
|
|
86476
86489
|
}
|
|
@@ -86499,7 +86512,7 @@ function buildURL(url2, params, options) {
|
|
|
86499
86512
|
return url2;
|
|
86500
86513
|
}
|
|
86501
86514
|
|
|
86502
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
86515
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/InterceptorManager.js
|
|
86503
86516
|
var InterceptorManager = class {
|
|
86504
86517
|
constructor() {
|
|
86505
86518
|
this.handlers = [];
|
|
@@ -86564,21 +86577,22 @@ var InterceptorManager = class {
|
|
|
86564
86577
|
};
|
|
86565
86578
|
var InterceptorManager_default = InterceptorManager;
|
|
86566
86579
|
|
|
86567
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
86580
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/defaults/transitional.js
|
|
86568
86581
|
var transitional_default = {
|
|
86569
86582
|
silentJSONParsing: true,
|
|
86570
86583
|
forcedJSONParsing: true,
|
|
86571
|
-
clarifyTimeoutError: false
|
|
86584
|
+
clarifyTimeoutError: false,
|
|
86585
|
+
legacyInterceptorReqResOrdering: true
|
|
86572
86586
|
};
|
|
86573
86587
|
|
|
86574
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
86588
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
|
|
86575
86589
|
var import_crypto = __toESM(require("crypto"));
|
|
86576
86590
|
|
|
86577
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
86591
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/node/classes/URLSearchParams.js
|
|
86578
86592
|
var import_url = __toESM(require("url"));
|
|
86579
86593
|
var URLSearchParams_default = import_url.default.URLSearchParams;
|
|
86580
86594
|
|
|
86581
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
86595
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
|
|
86582
86596
|
var ALPHA = "abcdefghijklmnopqrstuvwxyz";
|
|
86583
86597
|
var DIGIT = "0123456789";
|
|
86584
86598
|
var ALPHABET = {
|
|
@@ -86608,7 +86622,7 @@ var node_default = {
|
|
|
86608
86622
|
protocols: ["http", "https", "file", "data"]
|
|
86609
86623
|
};
|
|
86610
86624
|
|
|
86611
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
86625
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/common/utils.js
|
|
86612
86626
|
var utils_exports = {};
|
|
86613
86627
|
__export(utils_exports, {
|
|
86614
86628
|
hasBrowserEnv: () => hasBrowserEnv,
|
|
@@ -86626,10 +86640,10 @@ var hasStandardBrowserWebWorkerEnv = (() => {
|
|
|
86626
86640
|
})();
|
|
86627
86641
|
var origin = hasBrowserEnv && window.location.href || "http://localhost";
|
|
86628
86642
|
|
|
86629
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
86643
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/index.js
|
|
86630
86644
|
var platform_default = __spreadValues(__spreadValues({}, utils_exports), node_default);
|
|
86631
86645
|
|
|
86632
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
86646
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/toURLEncodedForm.js
|
|
86633
86647
|
function toURLEncodedForm(data, options) {
|
|
86634
86648
|
return toFormData_default(data, new platform_default.classes.URLSearchParams(), __spreadValues({
|
|
86635
86649
|
visitor: function(value, key2, path6, helpers) {
|
|
@@ -86642,7 +86656,7 @@ function toURLEncodedForm(data, options) {
|
|
|
86642
86656
|
}, options));
|
|
86643
86657
|
}
|
|
86644
86658
|
|
|
86645
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
86659
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/formDataToJSON.js
|
|
86646
86660
|
function parsePropPath(name) {
|
|
86647
86661
|
return utils_default.matchAll(/\w+|\[(\w*)]/g, name).map((match) => {
|
|
86648
86662
|
return match[0] === "[]" ? "" : match[1] || match[0];
|
|
@@ -86696,7 +86710,7 @@ function formDataToJSON(formData) {
|
|
|
86696
86710
|
}
|
|
86697
86711
|
var formDataToJSON_default = formDataToJSON;
|
|
86698
86712
|
|
|
86699
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
86713
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/defaults/index.js
|
|
86700
86714
|
function stringifySafely(rawValue, parser, encoder) {
|
|
86701
86715
|
if (utils_default.isString(rawValue)) {
|
|
86702
86716
|
try {
|
|
@@ -86805,7 +86819,7 @@ utils_default.forEach(["delete", "get", "head", "post", "put", "patch"], (method
|
|
|
86805
86819
|
});
|
|
86806
86820
|
var defaults_default = defaults;
|
|
86807
86821
|
|
|
86808
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
86822
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/parseHeaders.js
|
|
86809
86823
|
var ignoreDuplicateOf = utils_default.toObjectSet([
|
|
86810
86824
|
"age",
|
|
86811
86825
|
"authorization",
|
|
@@ -86850,7 +86864,7 @@ var parseHeaders_default = (rawHeaders) => {
|
|
|
86850
86864
|
return parsed;
|
|
86851
86865
|
};
|
|
86852
86866
|
|
|
86853
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
86867
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/AxiosHeaders.js
|
|
86854
86868
|
var $internals = Symbol("internals");
|
|
86855
86869
|
function normalizeHeader(header) {
|
|
86856
86870
|
return header && String(header).trim().toLowerCase();
|
|
@@ -87080,7 +87094,7 @@ utils_default.reduceDescriptors(AxiosHeaders.prototype, ({ value }, key2) => {
|
|
|
87080
87094
|
utils_default.freezeMethods(AxiosHeaders);
|
|
87081
87095
|
var AxiosHeaders_default = AxiosHeaders;
|
|
87082
87096
|
|
|
87083
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87097
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/transformData.js
|
|
87084
87098
|
function transformData(fns, response) {
|
|
87085
87099
|
const config = this || defaults_default;
|
|
87086
87100
|
const context = response || config;
|
|
@@ -87093,12 +87107,12 @@ function transformData(fns, response) {
|
|
|
87093
87107
|
return data;
|
|
87094
87108
|
}
|
|
87095
87109
|
|
|
87096
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87110
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/cancel/isCancel.js
|
|
87097
87111
|
function isCancel(value) {
|
|
87098
87112
|
return !!(value && value.__CANCEL__);
|
|
87099
87113
|
}
|
|
87100
87114
|
|
|
87101
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87115
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/cancel/CanceledError.js
|
|
87102
87116
|
var CanceledError = class extends AxiosError_default {
|
|
87103
87117
|
/**
|
|
87104
87118
|
* A `CanceledError` is an object that is thrown when an operation is canceled.
|
|
@@ -87117,7 +87131,7 @@ var CanceledError = class extends AxiosError_default {
|
|
|
87117
87131
|
};
|
|
87118
87132
|
var CanceledError_default = CanceledError;
|
|
87119
87133
|
|
|
87120
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87134
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/settle.js
|
|
87121
87135
|
function settle(resolve, reject, response) {
|
|
87122
87136
|
const validateStatus2 = response.config.validateStatus;
|
|
87123
87137
|
if (!response.status || !validateStatus2 || validateStatus2(response.status)) {
|
|
@@ -87133,17 +87147,20 @@ function settle(resolve, reject, response) {
|
|
|
87133
87147
|
}
|
|
87134
87148
|
}
|
|
87135
87149
|
|
|
87136
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87150
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/isAbsoluteURL.js
|
|
87137
87151
|
function isAbsoluteURL(url2) {
|
|
87152
|
+
if (typeof url2 !== "string") {
|
|
87153
|
+
return false;
|
|
87154
|
+
}
|
|
87138
87155
|
return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url2);
|
|
87139
87156
|
}
|
|
87140
87157
|
|
|
87141
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87158
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/combineURLs.js
|
|
87142
87159
|
function combineURLs(baseURL, relativeURL) {
|
|
87143
87160
|
return relativeURL ? baseURL.replace(/\/?\/$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
|
|
87144
87161
|
}
|
|
87145
87162
|
|
|
87146
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87163
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/buildFullPath.js
|
|
87147
87164
|
function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
|
|
87148
87165
|
let isRelativeUrl = !isAbsoluteURL(requestedURL);
|
|
87149
87166
|
if (baseURL && (isRelativeUrl || allowAbsoluteUrls == false)) {
|
|
@@ -87152,7 +87169,7 @@ function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
|
|
|
87152
87169
|
return requestedURL;
|
|
87153
87170
|
}
|
|
87154
87171
|
|
|
87155
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87172
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/http.js
|
|
87156
87173
|
var import_proxy_from_env = __toESM(require_proxy_from_env());
|
|
87157
87174
|
var import_http = __toESM(require("http"));
|
|
87158
87175
|
var import_https = __toESM(require("https"));
|
|
@@ -87161,16 +87178,16 @@ var import_util2 = __toESM(require("util"));
|
|
|
87161
87178
|
var import_follow_redirects = __toESM(require_follow_redirects());
|
|
87162
87179
|
var import_zlib = __toESM(require("zlib"));
|
|
87163
87180
|
|
|
87164
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87165
|
-
var VERSION = "1.13.
|
|
87181
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/env/data.js
|
|
87182
|
+
var VERSION = "1.13.5";
|
|
87166
87183
|
|
|
87167
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87184
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/parseProtocol.js
|
|
87168
87185
|
function parseProtocol(url2) {
|
|
87169
87186
|
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url2);
|
|
87170
87187
|
return match && match[1] || "";
|
|
87171
87188
|
}
|
|
87172
87189
|
|
|
87173
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87190
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/fromDataURI.js
|
|
87174
87191
|
var DATA_URL_PATTERN = /^(?:([^;]+);)?(?:[^;]+;)?(base64|),([\s\S]*)$/;
|
|
87175
87192
|
function fromDataURI(uri, asBlob, options) {
|
|
87176
87193
|
const _Blob = options && options.Blob || platform_default.classes.Blob;
|
|
@@ -87199,10 +87216,10 @@ function fromDataURI(uri, asBlob, options) {
|
|
|
87199
87216
|
throw new AxiosError_default("Unsupported protocol " + protocol, AxiosError_default.ERR_NOT_SUPPORT);
|
|
87200
87217
|
}
|
|
87201
87218
|
|
|
87202
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87219
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/http.js
|
|
87203
87220
|
var import_stream4 = __toESM(require("stream"));
|
|
87204
87221
|
|
|
87205
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87222
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/AxiosTransformStream.js
|
|
87206
87223
|
var import_stream = __toESM(require("stream"));
|
|
87207
87224
|
var kInternals = Symbol("internals");
|
|
87208
87225
|
var AxiosTransformStream = class extends import_stream.default.Transform {
|
|
@@ -87317,14 +87334,14 @@ var AxiosTransformStream = class extends import_stream.default.Transform {
|
|
|
87317
87334
|
};
|
|
87318
87335
|
var AxiosTransformStream_default = AxiosTransformStream;
|
|
87319
87336
|
|
|
87320
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87337
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/http.js
|
|
87321
87338
|
var import_events = require("events");
|
|
87322
87339
|
|
|
87323
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87340
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
|
|
87324
87341
|
var import_util = __toESM(require("util"));
|
|
87325
87342
|
var import_stream2 = require("stream");
|
|
87326
87343
|
|
|
87327
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87344
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/readBlob.js
|
|
87328
87345
|
var { asyncIterator } = Symbol;
|
|
87329
87346
|
var readBlob = function(blob) {
|
|
87330
87347
|
return __asyncGenerator(this, null, function* () {
|
|
@@ -87341,7 +87358,7 @@ var readBlob = function(blob) {
|
|
|
87341
87358
|
};
|
|
87342
87359
|
var readBlob_default = readBlob;
|
|
87343
87360
|
|
|
87344
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87361
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
|
|
87345
87362
|
var BOUNDARY_ALPHABET = platform_default.ALPHABET.ALPHA_DIGIT + "-_";
|
|
87346
87363
|
var textEncoder = typeof TextEncoder === "function" ? new TextEncoder() : new import_util.default.TextEncoder();
|
|
87347
87364
|
var CRLF = "\r\n";
|
|
@@ -87424,7 +87441,7 @@ var formDataToStream = (form, headersHandler, options) => {
|
|
|
87424
87441
|
};
|
|
87425
87442
|
var formDataToStream_default = formDataToStream;
|
|
87426
87443
|
|
|
87427
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87444
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js
|
|
87428
87445
|
var import_stream3 = __toESM(require("stream"));
|
|
87429
87446
|
var ZlibHeaderTransformStream = class extends import_stream3.default.Transform {
|
|
87430
87447
|
__transform(chunk, encoding, callback) {
|
|
@@ -87446,7 +87463,7 @@ var ZlibHeaderTransformStream = class extends import_stream3.default.Transform {
|
|
|
87446
87463
|
};
|
|
87447
87464
|
var ZlibHeaderTransformStream_default = ZlibHeaderTransformStream;
|
|
87448
87465
|
|
|
87449
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87466
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/callbackify.js
|
|
87450
87467
|
var callbackify = (fn, reducer) => {
|
|
87451
87468
|
return utils_default.isAsyncFn(fn) ? function(...args) {
|
|
87452
87469
|
const cb = args.pop();
|
|
@@ -87461,7 +87478,7 @@ var callbackify = (fn, reducer) => {
|
|
|
87461
87478
|
};
|
|
87462
87479
|
var callbackify_default = callbackify;
|
|
87463
87480
|
|
|
87464
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87481
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/speedometer.js
|
|
87465
87482
|
function speedometer(samplesCount, min) {
|
|
87466
87483
|
samplesCount = samplesCount || 10;
|
|
87467
87484
|
const bytes = new Array(samplesCount);
|
|
@@ -87497,7 +87514,7 @@ function speedometer(samplesCount, min) {
|
|
|
87497
87514
|
}
|
|
87498
87515
|
var speedometer_default = speedometer;
|
|
87499
87516
|
|
|
87500
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87517
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/throttle.js
|
|
87501
87518
|
function throttle(fn, freq) {
|
|
87502
87519
|
let timestamp = 0;
|
|
87503
87520
|
let threshold = 1e3 / freq;
|
|
@@ -87532,7 +87549,7 @@ function throttle(fn, freq) {
|
|
|
87532
87549
|
}
|
|
87533
87550
|
var throttle_default = throttle;
|
|
87534
87551
|
|
|
87535
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87552
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/progressEventReducer.js
|
|
87536
87553
|
var progressEventReducer = (listener, isDownloadStream, freq = 3) => {
|
|
87537
87554
|
let bytesNotified = 0;
|
|
87538
87555
|
const _speedometer = speedometer_default(50, 250);
|
|
@@ -87567,7 +87584,7 @@ var progressEventDecorator = (total, throttled) => {
|
|
|
87567
87584
|
};
|
|
87568
87585
|
var asyncDecorator = (fn) => (...args) => utils_default.asap(() => fn(...args));
|
|
87569
87586
|
|
|
87570
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87587
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js
|
|
87571
87588
|
function estimateDataURLDecodedBytes(url2) {
|
|
87572
87589
|
if (!url2 || typeof url2 !== "string")
|
|
87573
87590
|
return 0;
|
|
@@ -87621,7 +87638,7 @@ function estimateDataURLDecodedBytes(url2) {
|
|
|
87621
87638
|
return Buffer.byteLength(body, "utf8");
|
|
87622
87639
|
}
|
|
87623
87640
|
|
|
87624
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
87641
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/http.js
|
|
87625
87642
|
var zlibOptions = {
|
|
87626
87643
|
flush: import_zlib.default.constants.Z_SYNC_FLUSH,
|
|
87627
87644
|
finishFlush: import_zlib.default.constants.Z_SYNC_FLUSH
|
|
@@ -88271,7 +88288,7 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
88271
88288
|
});
|
|
88272
88289
|
};
|
|
88273
88290
|
|
|
88274
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
88291
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/isURLSameOrigin.js
|
|
88275
88292
|
var isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? ((origin2, isMSIE) => (url2) => {
|
|
88276
88293
|
url2 = new URL(url2, platform_default.origin);
|
|
88277
88294
|
return origin2.protocol === url2.protocol && origin2.host === url2.host && (isMSIE || origin2.port === url2.port);
|
|
@@ -88280,7 +88297,7 @@ var isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? ((origin2
|
|
|
88280
88297
|
platform_default.navigator && /(msie|trident)/i.test(platform_default.navigator.userAgent)
|
|
88281
88298
|
) : () => true;
|
|
88282
88299
|
|
|
88283
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
88300
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/cookies.js
|
|
88284
88301
|
var cookies_default = platform_default.hasStandardBrowserEnv ? (
|
|
88285
88302
|
// Standard browser envs support document.cookie
|
|
88286
88303
|
{
|
|
@@ -88328,7 +88345,7 @@ var cookies_default = platform_default.hasStandardBrowserEnv ? (
|
|
|
88328
88345
|
}
|
|
88329
88346
|
);
|
|
88330
88347
|
|
|
88331
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
88348
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/mergeConfig.js
|
|
88332
88349
|
var headersToObject = (thing) => thing instanceof AxiosHeaders_default ? __spreadValues({}, thing) : thing;
|
|
88333
88350
|
function mergeConfig(config1, config2) {
|
|
88334
88351
|
config2 = config2 || {};
|
|
@@ -88400,15 +88417,20 @@ function mergeConfig(config1, config2) {
|
|
|
88400
88417
|
validateStatus: mergeDirectKeys,
|
|
88401
88418
|
headers: (a, b, prop) => mergeDeepProperties(headersToObject(a), headersToObject(b), prop, true)
|
|
88402
88419
|
};
|
|
88403
|
-
utils_default.forEach(
|
|
88404
|
-
|
|
88405
|
-
|
|
88406
|
-
|
|
88407
|
-
|
|
88420
|
+
utils_default.forEach(
|
|
88421
|
+
Object.keys(__spreadValues(__spreadValues({}, config1), config2)),
|
|
88422
|
+
function computeConfigValue(prop) {
|
|
88423
|
+
if (prop === "__proto__" || prop === "constructor" || prop === "prototype")
|
|
88424
|
+
return;
|
|
88425
|
+
const merge4 = utils_default.hasOwnProp(mergeMap, prop) ? mergeMap[prop] : mergeDeepProperties;
|
|
88426
|
+
const configValue = merge4(config1[prop], config2[prop], prop);
|
|
88427
|
+
utils_default.isUndefined(configValue) && merge4 !== mergeDirectKeys || (config[prop] = configValue);
|
|
88428
|
+
}
|
|
88429
|
+
);
|
|
88408
88430
|
return config;
|
|
88409
88431
|
}
|
|
88410
88432
|
|
|
88411
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
88433
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/resolveConfig.js
|
|
88412
88434
|
var resolveConfig_default = (config) => {
|
|
88413
88435
|
const newConfig = mergeConfig({}, config);
|
|
88414
88436
|
let { data, withXSRFToken, xsrfHeaderName, xsrfCookieName, headers, auth } = newConfig;
|
|
@@ -88445,7 +88467,7 @@ var resolveConfig_default = (config) => {
|
|
|
88445
88467
|
return newConfig;
|
|
88446
88468
|
};
|
|
88447
88469
|
|
|
88448
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
88470
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/xhr.js
|
|
88449
88471
|
var isXHRAdapterSupported = typeof XMLHttpRequest !== "undefined";
|
|
88450
88472
|
var xhr_default = isXHRAdapterSupported && function(config) {
|
|
88451
88473
|
return new Promise(function dispatchXhrRequest(resolve, reject) {
|
|
@@ -88575,7 +88597,7 @@ var xhr_default = isXHRAdapterSupported && function(config) {
|
|
|
88575
88597
|
});
|
|
88576
88598
|
};
|
|
88577
88599
|
|
|
88578
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
88600
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/composeSignals.js
|
|
88579
88601
|
var composeSignals = (signals, timeout) => {
|
|
88580
88602
|
const { length } = signals = signals ? signals.filter(Boolean) : [];
|
|
88581
88603
|
if (timeout || length) {
|
|
@@ -88611,7 +88633,7 @@ var composeSignals = (signals, timeout) => {
|
|
|
88611
88633
|
};
|
|
88612
88634
|
var composeSignals_default = composeSignals;
|
|
88613
88635
|
|
|
88614
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
88636
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/trackStream.js
|
|
88615
88637
|
var streamChunk = function* (chunk, chunkSize) {
|
|
88616
88638
|
let len = chunk.byteLength;
|
|
88617
88639
|
if (!chunkSize || len < chunkSize) {
|
|
@@ -88706,7 +88728,7 @@ var trackStream = (stream4, chunkSize, onProgress, onFinish) => {
|
|
|
88706
88728
|
});
|
|
88707
88729
|
};
|
|
88708
88730
|
|
|
88709
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
88731
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/fetch.js
|
|
88710
88732
|
var DEFAULT_CHUNK_SIZE = 64 * 1024;
|
|
88711
88733
|
var { isFunction: isFunction2 } = utils_default;
|
|
88712
88734
|
var globalFetchAPI = (({ Request, Response }) => ({
|
|
@@ -88886,13 +88908,13 @@ var factory = (env) => {
|
|
|
88886
88908
|
unsubscribe && unsubscribe();
|
|
88887
88909
|
if (err && err.name === "TypeError" && /Load failed|fetch/i.test(err.message)) {
|
|
88888
88910
|
throw Object.assign(
|
|
88889
|
-
new AxiosError_default("Network Error", AxiosError_default.ERR_NETWORK, config, request),
|
|
88911
|
+
new AxiosError_default("Network Error", AxiosError_default.ERR_NETWORK, config, request, err && err.response),
|
|
88890
88912
|
{
|
|
88891
88913
|
cause: err.cause || err
|
|
88892
88914
|
}
|
|
88893
88915
|
);
|
|
88894
88916
|
}
|
|
88895
|
-
throw AxiosError_default.from(err, err && err.code, config, request);
|
|
88917
|
+
throw AxiosError_default.from(err, err && err.code, config, request, err && err.response);
|
|
88896
88918
|
}
|
|
88897
88919
|
});
|
|
88898
88920
|
};
|
|
@@ -88916,7 +88938,7 @@ var getFetch = (config) => {
|
|
|
88916
88938
|
};
|
|
88917
88939
|
var adapter = getFetch();
|
|
88918
88940
|
|
|
88919
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
88941
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/adapters.js
|
|
88920
88942
|
var knownAdapters = {
|
|
88921
88943
|
http: http_default,
|
|
88922
88944
|
xhr: xhr_default,
|
|
@@ -88981,7 +89003,7 @@ var adapters_default = {
|
|
|
88981
89003
|
adapters: knownAdapters
|
|
88982
89004
|
};
|
|
88983
89005
|
|
|
88984
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
89006
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/dispatchRequest.js
|
|
88985
89007
|
function throwIfCancellationRequested(config) {
|
|
88986
89008
|
if (config.cancelToken) {
|
|
88987
89009
|
config.cancelToken.throwIfRequested();
|
|
@@ -89026,7 +89048,7 @@ function dispatchRequest(config) {
|
|
|
89026
89048
|
});
|
|
89027
89049
|
}
|
|
89028
89050
|
|
|
89029
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
89051
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/validator.js
|
|
89030
89052
|
var validators = {};
|
|
89031
89053
|
["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => {
|
|
89032
89054
|
validators[type] = function validator(thing) {
|
|
@@ -89090,7 +89112,7 @@ var validator_default = {
|
|
|
89090
89112
|
validators
|
|
89091
89113
|
};
|
|
89092
89114
|
|
|
89093
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
89115
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/Axios.js
|
|
89094
89116
|
var validators2 = validator_default.validators;
|
|
89095
89117
|
var Axios = class {
|
|
89096
89118
|
constructor(instanceConfig) {
|
|
@@ -89143,7 +89165,8 @@ var Axios = class {
|
|
|
89143
89165
|
validator_default.assertOptions(transitional2, {
|
|
89144
89166
|
silentJSONParsing: validators2.transitional(validators2.boolean),
|
|
89145
89167
|
forcedJSONParsing: validators2.transitional(validators2.boolean),
|
|
89146
|
-
clarifyTimeoutError: validators2.transitional(validators2.boolean)
|
|
89168
|
+
clarifyTimeoutError: validators2.transitional(validators2.boolean),
|
|
89169
|
+
legacyInterceptorReqResOrdering: validators2.transitional(validators2.boolean)
|
|
89147
89170
|
}, false);
|
|
89148
89171
|
}
|
|
89149
89172
|
if (paramsSerializer != null) {
|
|
@@ -89187,7 +89210,13 @@ var Axios = class {
|
|
|
89187
89210
|
return;
|
|
89188
89211
|
}
|
|
89189
89212
|
synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;
|
|
89190
|
-
|
|
89213
|
+
const transitional3 = config.transitional || transitional_default;
|
|
89214
|
+
const legacyInterceptorReqResOrdering = transitional3 && transitional3.legacyInterceptorReqResOrdering;
|
|
89215
|
+
if (legacyInterceptorReqResOrdering) {
|
|
89216
|
+
requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);
|
|
89217
|
+
} else {
|
|
89218
|
+
requestInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);
|
|
89219
|
+
}
|
|
89191
89220
|
});
|
|
89192
89221
|
const responseInterceptorChain = [];
|
|
89193
89222
|
this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {
|
|
@@ -89264,7 +89293,7 @@ utils_default.forEach(["post", "put", "patch"], function forEachMethodWithData(m
|
|
|
89264
89293
|
});
|
|
89265
89294
|
var Axios_default = Axios;
|
|
89266
89295
|
|
|
89267
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
89296
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/cancel/CancelToken.js
|
|
89268
89297
|
var CancelToken = class _CancelToken {
|
|
89269
89298
|
constructor(executor) {
|
|
89270
89299
|
if (typeof executor !== "function") {
|
|
@@ -89363,19 +89392,19 @@ var CancelToken = class _CancelToken {
|
|
|
89363
89392
|
};
|
|
89364
89393
|
var CancelToken_default = CancelToken;
|
|
89365
89394
|
|
|
89366
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
89395
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/spread.js
|
|
89367
89396
|
function spread(callback) {
|
|
89368
89397
|
return function wrap(arr) {
|
|
89369
89398
|
return callback.apply(null, arr);
|
|
89370
89399
|
};
|
|
89371
89400
|
}
|
|
89372
89401
|
|
|
89373
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
89402
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/isAxiosError.js
|
|
89374
89403
|
function isAxiosError(payload) {
|
|
89375
89404
|
return utils_default.isObject(payload) && payload.isAxiosError === true;
|
|
89376
89405
|
}
|
|
89377
89406
|
|
|
89378
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
89407
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/HttpStatusCode.js
|
|
89379
89408
|
var HttpStatusCode = {
|
|
89380
89409
|
Continue: 100,
|
|
89381
89410
|
SwitchingProtocols: 101,
|
|
@@ -89452,7 +89481,7 @@ Object.entries(HttpStatusCode).forEach(([key2, value]) => {
|
|
|
89452
89481
|
});
|
|
89453
89482
|
var HttpStatusCode_default = HttpStatusCode;
|
|
89454
89483
|
|
|
89455
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
89484
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/axios.js
|
|
89456
89485
|
function createInstance(defaultConfig) {
|
|
89457
89486
|
const context = new Axios_default(defaultConfig);
|
|
89458
89487
|
const instance = bind(Axios_default.prototype.request, context);
|
|
@@ -89485,7 +89514,7 @@ axios.HttpStatusCode = HttpStatusCode_default;
|
|
|
89485
89514
|
axios.default = axios;
|
|
89486
89515
|
var axios_default = axios;
|
|
89487
89516
|
|
|
89488
|
-
// ../../../../node_modules/.pnpm/axios@1.13.
|
|
89517
|
+
// ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/index.js
|
|
89489
89518
|
var {
|
|
89490
89519
|
Axios: Axios2,
|
|
89491
89520
|
AxiosError: AxiosError2,
|
package/package.json
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"modern",
|
|
16
16
|
"modern.js"
|
|
17
17
|
],
|
|
18
|
-
"version": "3.7.
|
|
18
|
+
"version": "3.7.73",
|
|
19
19
|
"jsnext:source": "./src/index.ts",
|
|
20
20
|
"types": "./src/index.ts",
|
|
21
21
|
"main": "./dist/index.js",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"@types/node": "^18",
|
|
33
33
|
"jest": "^29",
|
|
34
34
|
"typescript": "^5",
|
|
35
|
-
"@modern-js/generator-common": "3.7.
|
|
36
|
-
"@modern-js/
|
|
37
|
-
"@modern-js/
|
|
35
|
+
"@modern-js/generator-common": "3.7.73",
|
|
36
|
+
"@modern-js/generator-utils": "3.7.73",
|
|
37
|
+
"@modern-js/plugin-i18n": "2.70.7",
|
|
38
38
|
"@scripts/build": "2.66.0",
|
|
39
39
|
"@scripts/jest-config": "2.66.0"
|
|
40
40
|
},
|