@modern-js/upgrade 2.70.5 → 2.70.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +192 -162
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -19904,19 +19904,19 @@ var init_semver = __esm({
19904
19904
  }
19905
19905
  });
19906
19906
 
19907
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/bind.js
19907
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/bind.js
19908
19908
  function bind(fn, thisArg) {
19909
19909
  return function wrap() {
19910
19910
  return fn.apply(thisArg, arguments);
19911
19911
  };
19912
19912
  }
19913
19913
  var init_bind = __esm({
19914
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/bind.js"() {
19914
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/bind.js"() {
19915
19915
  "use strict";
19916
19916
  }
19917
19917
  });
19918
19918
 
19919
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/utils.js
19919
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/utils.js
19920
19920
  function isBuffer(val) {
19921
19921
  return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor) && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val);
19922
19922
  }
@@ -19975,6 +19975,9 @@ function merge() {
19975
19975
  const { caseless, skipUndefined } = isContextDefined(this) && this || {};
19976
19976
  const result = {};
19977
19977
  const assignValue = (val, key) => {
19978
+ if (key === "__proto__" || key === "constructor" || key === "prototype") {
19979
+ return;
19980
+ }
19978
19981
  const targetKey = caseless && findKey(result, key) || key;
19979
19982
  if (isPlainObject(result[targetKey]) && isPlainObject(val)) {
19980
19983
  result[targetKey] = merge(result[targetKey], val);
@@ -19996,7 +19999,7 @@ function isSpecCompliantForm(thing) {
19996
19999
  }
19997
20000
  var toString, getPrototypeOf, iterator, toStringTag, kindOf, kindOfTest, typeOfTest, isArray, isUndefined, isArrayBuffer, isString2, isFunction, isNumber, isObject2, isBoolean, isPlainObject, isEmptyObject, 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, isIterable, utils_default;
19998
20001
  var init_utils = __esm({
19999
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/utils.js"() {
20002
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/utils.js"() {
20000
20003
  "use strict";
20001
20004
  init_bind();
20002
20005
  ({ toString } = Object.prototype);
@@ -20047,7 +20050,12 @@ var init_utils = __esm({
20047
20050
  kind === "object" && isFunction(thing.toString) && thing.toString() === "[object FormData]"));
20048
20051
  };
20049
20052
  isURLSearchParams = kindOfTest("URLSearchParams");
20050
- [isReadableStream, isRequest, isResponse, isHeaders] = ["ReadableStream", "Request", "Response", "Headers"].map(kindOfTest);
20053
+ [isReadableStream, isRequest, isResponse, isHeaders] = [
20054
+ "ReadableStream",
20055
+ "Request",
20056
+ "Response",
20057
+ "Headers"
20058
+ ].map(kindOfTest);
20051
20059
  trim = (str) => str.trim ? str.trim() : str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");
20052
20060
  _global = (() => {
20053
20061
  if (typeof globalThis !== "undefined")
@@ -20056,23 +20064,27 @@ var init_utils = __esm({
20056
20064
  })();
20057
20065
  isContextDefined = (context) => !isUndefined(context) && context !== _global;
20058
20066
  extend = (a, b, thisArg, { allOwnKeys } = {}) => {
20059
- forEach(b, (val, key) => {
20060
- if (thisArg && isFunction(val)) {
20061
- Object.defineProperty(a, key, {
20062
- value: bind(val, thisArg),
20063
- writable: true,
20064
- enumerable: true,
20065
- configurable: true
20066
- });
20067
- } else {
20068
- Object.defineProperty(a, key, {
20069
- value: val,
20070
- writable: true,
20071
- enumerable: true,
20072
- configurable: true
20073
- });
20074
- }
20075
- }, { allOwnKeys });
20067
+ forEach(
20068
+ b,
20069
+ (val, key) => {
20070
+ if (thisArg && isFunction(val)) {
20071
+ Object.defineProperty(a, key, {
20072
+ value: bind(val, thisArg),
20073
+ writable: true,
20074
+ enumerable: true,
20075
+ configurable: true
20076
+ });
20077
+ } else {
20078
+ Object.defineProperty(a, key, {
20079
+ value: val,
20080
+ writable: true,
20081
+ enumerable: true,
20082
+ configurable: true
20083
+ });
20084
+ }
20085
+ },
20086
+ { allOwnKeys }
20087
+ );
20076
20088
  return a;
20077
20089
  };
20078
20090
  stripBOM = (content) => {
@@ -20082,7 +20094,10 @@ var init_utils = __esm({
20082
20094
  return content;
20083
20095
  };
20084
20096
  inherits = (constructor, superConstructor, props, descriptors) => {
20085
- constructor.prototype = Object.create(superConstructor.prototype, descriptors);
20097
+ constructor.prototype = Object.create(
20098
+ superConstructor.prototype,
20099
+ descriptors
20100
+ );
20086
20101
  Object.defineProperty(constructor.prototype, "constructor", {
20087
20102
  value: constructor,
20088
20103
  writable: true,
@@ -20163,12 +20178,9 @@ var init_utils = __esm({
20163
20178
  };
20164
20179
  isHTMLForm = kindOfTest("HTMLFormElement");
20165
20180
  toCamelCase = (str) => {
20166
- return str.toLowerCase().replace(
20167
- /[-_\s]([a-z\d])(\w*)/g,
20168
- function replacer(m, p1, p2) {
20169
- return p1.toUpperCase() + p2;
20170
- }
20171
- );
20181
+ return str.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g, function replacer(m, p1, p2) {
20182
+ return p1.toUpperCase() + p2;
20183
+ });
20172
20184
  };
20173
20185
  hasOwnProperty = (({ hasOwnProperty: hasOwnProperty2 }) => (obj, prop) => hasOwnProperty2.call(obj, prop))(Object.prototype);
20174
20186
  isRegExp = kindOfTest("RegExp");
@@ -20250,20 +20262,21 @@ var init_utils = __esm({
20250
20262
  return setImmediate;
20251
20263
  }
20252
20264
  return postMessageSupported ? ((token, callbacks) => {
20253
- _global.addEventListener("message", ({ source, data }) => {
20254
- if (source === _global && data === token) {
20255
- callbacks.length && callbacks.shift()();
20256
- }
20257
- }, false);
20265
+ _global.addEventListener(
20266
+ "message",
20267
+ ({ source, data }) => {
20268
+ if (source === _global && data === token) {
20269
+ callbacks.length && callbacks.shift()();
20270
+ }
20271
+ },
20272
+ false
20273
+ );
20258
20274
  return (cb) => {
20259
20275
  callbacks.push(cb);
20260
20276
  _global.postMessage(token, "*");
20261
20277
  };
20262
20278
  })(`axios@${Math.random()}`, []) : (cb) => setTimeout(cb);
20263
- })(
20264
- typeof setImmediate === "function",
20265
- isFunction(_global.postMessage)
20266
- );
20279
+ })(typeof setImmediate === "function", isFunction(_global.postMessage));
20267
20280
  asap = typeof queueMicrotask !== "undefined" ? queueMicrotask.bind(_global) : typeof process !== "undefined" && process.nextTick || _setImmediate;
20268
20281
  isIterable = (thing) => thing != null && isFunction(thing[iterator]);
20269
20282
  utils_default = {
@@ -20329,10 +20342,10 @@ var init_utils = __esm({
20329
20342
  }
20330
20343
  });
20331
20344
 
20332
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/AxiosError.js
20345
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/AxiosError.js
20333
20346
  var AxiosError, AxiosError_default;
20334
20347
  var init_AxiosError = __esm({
20335
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/AxiosError.js"() {
20348
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/AxiosError.js"() {
20336
20349
  "use strict";
20337
20350
  init_utils();
20338
20351
  AxiosError = class _AxiosError extends Error {
@@ -30355,9 +30368,9 @@ var require_es_set_tostringtag = __commonJS({
30355
30368
  }
30356
30369
  });
30357
30370
 
30358
- // ../../../node_modules/.pnpm/form-data@4.0.4/node_modules/form-data/lib/populate.js
30371
+ // ../../../node_modules/.pnpm/form-data@4.0.5/node_modules/form-data/lib/populate.js
30359
30372
  var require_populate = __commonJS({
30360
- "../../../node_modules/.pnpm/form-data@4.0.4/node_modules/form-data/lib/populate.js"(exports, module2) {
30373
+ "../../../node_modules/.pnpm/form-data@4.0.5/node_modules/form-data/lib/populate.js"(exports, module2) {
30361
30374
  "use strict";
30362
30375
  module2.exports = function(dst, src) {
30363
30376
  Object.keys(src).forEach(function(prop) {
@@ -30368,9 +30381,9 @@ var require_populate = __commonJS({
30368
30381
  }
30369
30382
  });
30370
30383
 
30371
- // ../../../node_modules/.pnpm/form-data@4.0.4/node_modules/form-data/lib/form_data.js
30384
+ // ../../../node_modules/.pnpm/form-data@4.0.5/node_modules/form-data/lib/form_data.js
30372
30385
  var require_form_data = __commonJS({
30373
- "../../../node_modules/.pnpm/form-data@4.0.4/node_modules/form-data/lib/form_data.js"(exports, module2) {
30386
+ "../../../node_modules/.pnpm/form-data@4.0.5/node_modules/form-data/lib/form_data.js"(exports, module2) {
30374
30387
  "use strict";
30375
30388
  var CombinedStream = require_combined_stream();
30376
30389
  var util3 = require("util");
@@ -30682,22 +30695,22 @@ var require_form_data = __commonJS({
30682
30695
  FormData3.prototype.toString = function() {
30683
30696
  return "[object FormData]";
30684
30697
  };
30685
- setToStringTag(FormData3, "FormData");
30698
+ setToStringTag(FormData3.prototype, "FormData");
30686
30699
  module2.exports = FormData3;
30687
30700
  }
30688
30701
  });
30689
30702
 
30690
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/platform/node/classes/FormData.js
30703
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/node/classes/FormData.js
30691
30704
  var import_form_data, FormData_default;
30692
30705
  var init_FormData = __esm({
30693
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/platform/node/classes/FormData.js"() {
30706
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/node/classes/FormData.js"() {
30694
30707
  "use strict";
30695
30708
  import_form_data = __toESM(require_form_data());
30696
30709
  FormData_default = import_form_data.default;
30697
30710
  }
30698
30711
  });
30699
30712
 
30700
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/toFormData.js
30713
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/toFormData.js
30701
30714
  function isVisitable(thing) {
30702
30715
  return utils_default.isPlainObject(thing) || utils_default.isArray(thing);
30703
30716
  }
@@ -30812,7 +30825,7 @@ function toFormData(obj, formData, options) {
30812
30825
  }
30813
30826
  var predicates, toFormData_default;
30814
30827
  var init_toFormData = __esm({
30815
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/toFormData.js"() {
30828
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/toFormData.js"() {
30816
30829
  "use strict";
30817
30830
  init_utils();
30818
30831
  init_AxiosError();
@@ -30824,7 +30837,7 @@ var init_toFormData = __esm({
30824
30837
  }
30825
30838
  });
30826
30839
 
30827
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js
30840
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js
30828
30841
  function encode(str) {
30829
30842
  const charMap = {
30830
30843
  "!": "%21",
@@ -30845,7 +30858,7 @@ function AxiosURLSearchParams(params, options) {
30845
30858
  }
30846
30859
  var prototype, AxiosURLSearchParams_default;
30847
30860
  var init_AxiosURLSearchParams = __esm({
30848
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js"() {
30861
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js"() {
30849
30862
  "use strict";
30850
30863
  init_toFormData();
30851
30864
  prototype = AxiosURLSearchParams.prototype;
@@ -30864,7 +30877,7 @@ var init_AxiosURLSearchParams = __esm({
30864
30877
  }
30865
30878
  });
30866
30879
 
30867
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/buildURL.js
30880
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/buildURL.js
30868
30881
  function encode2(val) {
30869
30882
  return encodeURIComponent(val).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+");
30870
30883
  }
@@ -30893,17 +30906,17 @@ function buildURL(url2, params, options) {
30893
30906
  return url2;
30894
30907
  }
30895
30908
  var init_buildURL = __esm({
30896
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/buildURL.js"() {
30909
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/buildURL.js"() {
30897
30910
  "use strict";
30898
30911
  init_utils();
30899
30912
  init_AxiosURLSearchParams();
30900
30913
  }
30901
30914
  });
30902
30915
 
30903
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/InterceptorManager.js
30916
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/InterceptorManager.js
30904
30917
  var InterceptorManager, InterceptorManager_default;
30905
30918
  var init_InterceptorManager = __esm({
30906
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/InterceptorManager.js"() {
30919
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/InterceptorManager.js"() {
30907
30920
  "use strict";
30908
30921
  init_utils();
30909
30922
  InterceptorManager = class {
@@ -30972,33 +30985,34 @@ var init_InterceptorManager = __esm({
30972
30985
  }
30973
30986
  });
30974
30987
 
30975
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/defaults/transitional.js
30988
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/defaults/transitional.js
30976
30989
  var transitional_default;
30977
30990
  var init_transitional = __esm({
30978
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/defaults/transitional.js"() {
30991
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/defaults/transitional.js"() {
30979
30992
  "use strict";
30980
30993
  transitional_default = {
30981
30994
  silentJSONParsing: true,
30982
30995
  forcedJSONParsing: true,
30983
- clarifyTimeoutError: false
30996
+ clarifyTimeoutError: false,
30997
+ legacyInterceptorReqResOrdering: true
30984
30998
  };
30985
30999
  }
30986
31000
  });
30987
31001
 
30988
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/platform/node/classes/URLSearchParams.js
31002
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/node/classes/URLSearchParams.js
30989
31003
  var import_url, URLSearchParams_default;
30990
31004
  var init_URLSearchParams = __esm({
30991
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/platform/node/classes/URLSearchParams.js"() {
31005
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/node/classes/URLSearchParams.js"() {
30992
31006
  "use strict";
30993
31007
  import_url = __toESM(require("url"));
30994
31008
  URLSearchParams_default = import_url.default.URLSearchParams;
30995
31009
  }
30996
31010
  });
30997
31011
 
30998
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
31012
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
30999
31013
  var import_crypto, ALPHA, DIGIT, ALPHABET, generateString, node_default;
31000
31014
  var init_node = __esm({
31001
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/platform/node/index.js"() {
31015
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/node/index.js"() {
31002
31016
  "use strict";
31003
31017
  import_crypto = __toESM(require("crypto"));
31004
31018
  init_URLSearchParams();
@@ -31034,7 +31048,7 @@ var init_node = __esm({
31034
31048
  }
31035
31049
  });
31036
31050
 
31037
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/platform/common/utils.js
31051
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/common/utils.js
31038
31052
  var utils_exports = {};
31039
31053
  __export(utils_exports, {
31040
31054
  hasBrowserEnv: () => hasBrowserEnv,
@@ -31045,7 +31059,7 @@ __export(utils_exports, {
31045
31059
  });
31046
31060
  var hasBrowserEnv, _navigator, hasStandardBrowserEnv, hasStandardBrowserWebWorkerEnv, origin;
31047
31061
  var init_utils2 = __esm({
31048
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/platform/common/utils.js"() {
31062
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/common/utils.js"() {
31049
31063
  "use strict";
31050
31064
  hasBrowserEnv = typeof window !== "undefined" && typeof document !== "undefined";
31051
31065
  _navigator = typeof navigator === "object" && navigator || void 0;
@@ -31058,10 +31072,10 @@ var init_utils2 = __esm({
31058
31072
  }
31059
31073
  });
31060
31074
 
31061
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/platform/index.js
31075
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/index.js
31062
31076
  var platform_default;
31063
31077
  var init_platform = __esm({
31064
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/platform/index.js"() {
31078
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/index.js"() {
31065
31079
  "use strict";
31066
31080
  init_node();
31067
31081
  init_utils2();
@@ -31069,7 +31083,7 @@ var init_platform = __esm({
31069
31083
  }
31070
31084
  });
31071
31085
 
31072
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/toURLEncodedForm.js
31086
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/toURLEncodedForm.js
31073
31087
  function toURLEncodedForm(data, options) {
31074
31088
  return toFormData_default(data, new platform_default.classes.URLSearchParams(), __spreadValues({
31075
31089
  visitor: function(value, key, path16, helpers) {
@@ -31082,7 +31096,7 @@ function toURLEncodedForm(data, options) {
31082
31096
  }, options));
31083
31097
  }
31084
31098
  var init_toURLEncodedForm = __esm({
31085
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/toURLEncodedForm.js"() {
31099
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/toURLEncodedForm.js"() {
31086
31100
  "use strict";
31087
31101
  init_utils();
31088
31102
  init_toFormData();
@@ -31090,7 +31104,7 @@ var init_toURLEncodedForm = __esm({
31090
31104
  }
31091
31105
  });
31092
31106
 
31093
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/formDataToJSON.js
31107
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/formDataToJSON.js
31094
31108
  function parsePropPath(name2) {
31095
31109
  return utils_default.matchAll(/\w+|\[(\w*)]/g, name2).map((match) => {
31096
31110
  return match[0] === "[]" ? "" : match[1] || match[0];
@@ -31144,14 +31158,14 @@ function formDataToJSON(formData) {
31144
31158
  }
31145
31159
  var formDataToJSON_default;
31146
31160
  var init_formDataToJSON = __esm({
31147
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/formDataToJSON.js"() {
31161
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/formDataToJSON.js"() {
31148
31162
  "use strict";
31149
31163
  init_utils();
31150
31164
  formDataToJSON_default = formDataToJSON;
31151
31165
  }
31152
31166
  });
31153
31167
 
31154
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/defaults/index.js
31168
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/defaults/index.js
31155
31169
  function stringifySafely(rawValue, parser, encoder) {
31156
31170
  if (utils_default.isString(rawValue)) {
31157
31171
  try {
@@ -31167,7 +31181,7 @@ function stringifySafely(rawValue, parser, encoder) {
31167
31181
  }
31168
31182
  var defaults, defaults_default;
31169
31183
  var init_defaults = __esm({
31170
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/defaults/index.js"() {
31184
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/defaults/index.js"() {
31171
31185
  "use strict";
31172
31186
  init_utils();
31173
31187
  init_AxiosError();
@@ -31273,10 +31287,10 @@ var init_defaults = __esm({
31273
31287
  }
31274
31288
  });
31275
31289
 
31276
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/parseHeaders.js
31290
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/parseHeaders.js
31277
31291
  var ignoreDuplicateOf, parseHeaders_default;
31278
31292
  var init_parseHeaders = __esm({
31279
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/parseHeaders.js"() {
31293
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/parseHeaders.js"() {
31280
31294
  "use strict";
31281
31295
  init_utils();
31282
31296
  ignoreDuplicateOf = utils_default.toObjectSet([
@@ -31325,7 +31339,7 @@ var init_parseHeaders = __esm({
31325
31339
  }
31326
31340
  });
31327
31341
 
31328
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/AxiosHeaders.js
31342
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/AxiosHeaders.js
31329
31343
  function normalizeHeader(header) {
31330
31344
  return header && String(header).trim().toLowerCase();
31331
31345
  }
@@ -31378,7 +31392,7 @@ function buildAccessors(obj, header) {
31378
31392
  }
31379
31393
  var $internals, isValidHeaderName, AxiosHeaders, AxiosHeaders_default;
31380
31394
  var init_AxiosHeaders = __esm({
31381
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/AxiosHeaders.js"() {
31395
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/AxiosHeaders.js"() {
31382
31396
  "use strict";
31383
31397
  init_utils();
31384
31398
  init_parseHeaders();
@@ -31563,7 +31577,7 @@ var init_AxiosHeaders = __esm({
31563
31577
  }
31564
31578
  });
31565
31579
 
31566
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/transformData.js
31580
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/transformData.js
31567
31581
  function transformData(fns, response) {
31568
31582
  const config = this || defaults_default;
31569
31583
  const context = response || config;
@@ -31576,7 +31590,7 @@ function transformData(fns, response) {
31576
31590
  return data;
31577
31591
  }
31578
31592
  var init_transformData = __esm({
31579
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/transformData.js"() {
31593
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/transformData.js"() {
31580
31594
  "use strict";
31581
31595
  init_utils();
31582
31596
  init_defaults();
@@ -31584,20 +31598,20 @@ var init_transformData = __esm({
31584
31598
  }
31585
31599
  });
31586
31600
 
31587
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/cancel/isCancel.js
31601
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/cancel/isCancel.js
31588
31602
  function isCancel(value) {
31589
31603
  return !!(value && value.__CANCEL__);
31590
31604
  }
31591
31605
  var init_isCancel = __esm({
31592
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/cancel/isCancel.js"() {
31606
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/cancel/isCancel.js"() {
31593
31607
  "use strict";
31594
31608
  }
31595
31609
  });
31596
31610
 
31597
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/cancel/CanceledError.js
31611
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/cancel/CanceledError.js
31598
31612
  var CanceledError, CanceledError_default;
31599
31613
  var init_CanceledError = __esm({
31600
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/cancel/CanceledError.js"() {
31614
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/cancel/CanceledError.js"() {
31601
31615
  "use strict";
31602
31616
  init_AxiosError();
31603
31617
  CanceledError = class extends AxiosError_default {
@@ -31620,7 +31634,7 @@ var init_CanceledError = __esm({
31620
31634
  }
31621
31635
  });
31622
31636
 
31623
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/settle.js
31637
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/settle.js
31624
31638
  function settle(resolve, reject, response) {
31625
31639
  const validateStatus2 = response.config.validateStatus;
31626
31640
  if (!response.status || !validateStatus2 || validateStatus2(response.status)) {
@@ -31636,33 +31650,36 @@ function settle(resolve, reject, response) {
31636
31650
  }
31637
31651
  }
31638
31652
  var init_settle = __esm({
31639
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/settle.js"() {
31653
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/settle.js"() {
31640
31654
  "use strict";
31641
31655
  init_AxiosError();
31642
31656
  }
31643
31657
  });
31644
31658
 
31645
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/isAbsoluteURL.js
31659
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/isAbsoluteURL.js
31646
31660
  function isAbsoluteURL(url2) {
31661
+ if (typeof url2 !== "string") {
31662
+ return false;
31663
+ }
31647
31664
  return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url2);
31648
31665
  }
31649
31666
  var init_isAbsoluteURL = __esm({
31650
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/isAbsoluteURL.js"() {
31667
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/isAbsoluteURL.js"() {
31651
31668
  "use strict";
31652
31669
  }
31653
31670
  });
31654
31671
 
31655
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/combineURLs.js
31672
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/combineURLs.js
31656
31673
  function combineURLs(baseURL, relativeURL) {
31657
31674
  return relativeURL ? baseURL.replace(/\/?\/$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
31658
31675
  }
31659
31676
  var init_combineURLs = __esm({
31660
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/combineURLs.js"() {
31677
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/combineURLs.js"() {
31661
31678
  "use strict";
31662
31679
  }
31663
31680
  });
31664
31681
 
31665
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/buildFullPath.js
31682
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/buildFullPath.js
31666
31683
  function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
31667
31684
  let isRelativeUrl = !isAbsoluteURL(requestedURL);
31668
31685
  if (baseURL && (isRelativeUrl || allowAbsoluteUrls == false)) {
@@ -31671,7 +31688,7 @@ function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
31671
31688
  return requestedURL;
31672
31689
  }
31673
31690
  var init_buildFullPath = __esm({
31674
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/buildFullPath.js"() {
31691
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/buildFullPath.js"() {
31675
31692
  "use strict";
31676
31693
  init_isAbsoluteURL();
31677
31694
  init_combineURLs();
@@ -32266,27 +32283,27 @@ var require_follow_redirects = __commonJS({
32266
32283
  }
32267
32284
  });
32268
32285
 
32269
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/env/data.js
32286
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/env/data.js
32270
32287
  var VERSION;
32271
32288
  var init_data = __esm({
32272
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/env/data.js"() {
32289
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/env/data.js"() {
32273
32290
  "use strict";
32274
- VERSION = "1.13.4";
32291
+ VERSION = "1.13.5";
32275
32292
  }
32276
32293
  });
32277
32294
 
32278
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/parseProtocol.js
32295
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/parseProtocol.js
32279
32296
  function parseProtocol(url2) {
32280
32297
  const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url2);
32281
32298
  return match && match[1] || "";
32282
32299
  }
32283
32300
  var init_parseProtocol = __esm({
32284
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/parseProtocol.js"() {
32301
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/parseProtocol.js"() {
32285
32302
  "use strict";
32286
32303
  }
32287
32304
  });
32288
32305
 
32289
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/fromDataURI.js
32306
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/fromDataURI.js
32290
32307
  function fromDataURI(uri, asBlob, options) {
32291
32308
  const _Blob = options && options.Blob || platform_default.classes.Blob;
32292
32309
  const protocol = parseProtocol(uri);
@@ -32315,7 +32332,7 @@ function fromDataURI(uri, asBlob, options) {
32315
32332
  }
32316
32333
  var DATA_URL_PATTERN;
32317
32334
  var init_fromDataURI = __esm({
32318
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/fromDataURI.js"() {
32335
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/fromDataURI.js"() {
32319
32336
  "use strict";
32320
32337
  init_AxiosError();
32321
32338
  init_parseProtocol();
@@ -32324,10 +32341,10 @@ var init_fromDataURI = __esm({
32324
32341
  }
32325
32342
  });
32326
32343
 
32327
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/AxiosTransformStream.js
32344
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/AxiosTransformStream.js
32328
32345
  var import_stream, kInternals, AxiosTransformStream, AxiosTransformStream_default;
32329
32346
  var init_AxiosTransformStream = __esm({
32330
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/AxiosTransformStream.js"() {
32347
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/AxiosTransformStream.js"() {
32331
32348
  "use strict";
32332
32349
  import_stream = __toESM(require("stream"));
32333
32350
  init_utils();
@@ -32446,10 +32463,10 @@ var init_AxiosTransformStream = __esm({
32446
32463
  }
32447
32464
  });
32448
32465
 
32449
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/readBlob.js
32466
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/readBlob.js
32450
32467
  var asyncIterator, readBlob, readBlob_default;
32451
32468
  var init_readBlob = __esm({
32452
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/readBlob.js"() {
32469
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/readBlob.js"() {
32453
32470
  "use strict";
32454
32471
  ({ asyncIterator } = Symbol);
32455
32472
  readBlob = function(blob) {
@@ -32469,10 +32486,10 @@ var init_readBlob = __esm({
32469
32486
  }
32470
32487
  });
32471
32488
 
32472
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
32489
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
32473
32490
  var import_util, import_stream2, BOUNDARY_ALPHABET, textEncoder, CRLF, CRLF_BYTES, CRLF_BYTES_COUNT, FormDataPart, formDataToStream, formDataToStream_default;
32474
32491
  var init_formDataToStream = __esm({
32475
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js"() {
32492
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js"() {
32476
32493
  "use strict";
32477
32494
  import_util = __toESM(require("util"));
32478
32495
  import_stream2 = require("stream");
@@ -32563,10 +32580,10 @@ var init_formDataToStream = __esm({
32563
32580
  }
32564
32581
  });
32565
32582
 
32566
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js
32583
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js
32567
32584
  var import_stream3, ZlibHeaderTransformStream, ZlibHeaderTransformStream_default;
32568
32585
  var init_ZlibHeaderTransformStream = __esm({
32569
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js"() {
32586
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js"() {
32570
32587
  "use strict";
32571
32588
  import_stream3 = __toESM(require("stream"));
32572
32589
  ZlibHeaderTransformStream = class extends import_stream3.default.Transform {
@@ -32591,10 +32608,10 @@ var init_ZlibHeaderTransformStream = __esm({
32591
32608
  }
32592
32609
  });
32593
32610
 
32594
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/callbackify.js
32611
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/callbackify.js
32595
32612
  var callbackify, callbackify_default;
32596
32613
  var init_callbackify = __esm({
32597
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/callbackify.js"() {
32614
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/callbackify.js"() {
32598
32615
  "use strict";
32599
32616
  init_utils();
32600
32617
  callbackify = (fn, reducer) => {
@@ -32613,7 +32630,7 @@ var init_callbackify = __esm({
32613
32630
  }
32614
32631
  });
32615
32632
 
32616
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/speedometer.js
32633
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/speedometer.js
32617
32634
  function speedometer(samplesCount, min) {
32618
32635
  samplesCount = samplesCount || 10;
32619
32636
  const bytes = new Array(samplesCount);
@@ -32649,13 +32666,13 @@ function speedometer(samplesCount, min) {
32649
32666
  }
32650
32667
  var speedometer_default;
32651
32668
  var init_speedometer = __esm({
32652
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/speedometer.js"() {
32669
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/speedometer.js"() {
32653
32670
  "use strict";
32654
32671
  speedometer_default = speedometer;
32655
32672
  }
32656
32673
  });
32657
32674
 
32658
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/throttle.js
32675
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/throttle.js
32659
32676
  function throttle(fn, freq) {
32660
32677
  let timestamp = 0;
32661
32678
  let threshold = 1e3 / freq;
@@ -32690,16 +32707,16 @@ function throttle(fn, freq) {
32690
32707
  }
32691
32708
  var throttle_default;
32692
32709
  var init_throttle = __esm({
32693
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/throttle.js"() {
32710
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/throttle.js"() {
32694
32711
  "use strict";
32695
32712
  throttle_default = throttle;
32696
32713
  }
32697
32714
  });
32698
32715
 
32699
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/progressEventReducer.js
32716
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/progressEventReducer.js
32700
32717
  var progressEventReducer, progressEventDecorator, asyncDecorator;
32701
32718
  var init_progressEventReducer = __esm({
32702
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/progressEventReducer.js"() {
32719
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/progressEventReducer.js"() {
32703
32720
  "use strict";
32704
32721
  init_speedometer();
32705
32722
  init_throttle();
@@ -32740,7 +32757,7 @@ var init_progressEventReducer = __esm({
32740
32757
  }
32741
32758
  });
32742
32759
 
32743
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js
32760
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js
32744
32761
  function estimateDataURLDecodedBytes(url2) {
32745
32762
  if (!url2 || typeof url2 !== "string")
32746
32763
  return 0;
@@ -32794,12 +32811,12 @@ function estimateDataURLDecodedBytes(url2) {
32794
32811
  return Buffer.byteLength(body, "utf8");
32795
32812
  }
32796
32813
  var init_estimateDataURLDecodedBytes = __esm({
32797
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js"() {
32814
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js"() {
32798
32815
  "use strict";
32799
32816
  }
32800
32817
  });
32801
32818
 
32802
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/adapters/http.js
32819
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/http.js
32803
32820
  function dispatchBeforeRedirect(options, responseDetails) {
32804
32821
  if (options.beforeRedirects.proxy) {
32805
32822
  options.beforeRedirects.proxy(options);
@@ -32846,7 +32863,7 @@ function setProxy(options, configProxy, location) {
32846
32863
  }
32847
32864
  var import_proxy_from_env, import_http, import_https, import_http2, import_util2, import_follow_redirects, import_zlib, import_stream4, import_events, zlibOptions, brotliOptions, isBrotliSupported, httpFollow, httpsFollow, isHttps, supportedProtocols, flushOnFinish, Http2Sessions, http2Sessions, isHttpAdapterSupported, wrapAsync, resolveFamily, buildAddressEntry, http2Transport, http_default;
32848
32865
  var init_http = __esm({
32849
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/adapters/http.js"() {
32866
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/http.js"() {
32850
32867
  "use strict";
32851
32868
  init_utils();
32852
32869
  init_settle();
@@ -33482,10 +33499,10 @@ var init_http = __esm({
33482
33499
  }
33483
33500
  });
33484
33501
 
33485
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/isURLSameOrigin.js
33502
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/isURLSameOrigin.js
33486
33503
  var isURLSameOrigin_default;
33487
33504
  var init_isURLSameOrigin = __esm({
33488
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/isURLSameOrigin.js"() {
33505
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/isURLSameOrigin.js"() {
33489
33506
  "use strict";
33490
33507
  init_platform();
33491
33508
  isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? ((origin2, isMSIE) => (url2) => {
@@ -33498,10 +33515,10 @@ var init_isURLSameOrigin = __esm({
33498
33515
  }
33499
33516
  });
33500
33517
 
33501
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/cookies.js
33518
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/cookies.js
33502
33519
  var cookies_default;
33503
33520
  var init_cookies = __esm({
33504
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/cookies.js"() {
33521
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/cookies.js"() {
33505
33522
  "use strict";
33506
33523
  init_utils();
33507
33524
  init_platform();
@@ -33554,7 +33571,7 @@ var init_cookies = __esm({
33554
33571
  }
33555
33572
  });
33556
33573
 
33557
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/mergeConfig.js
33574
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/mergeConfig.js
33558
33575
  function mergeConfig(config1, config2) {
33559
33576
  config2 = config2 || {};
33560
33577
  const config = {};
@@ -33625,16 +33642,21 @@ function mergeConfig(config1, config2) {
33625
33642
  validateStatus: mergeDirectKeys,
33626
33643
  headers: (a, b, prop) => mergeDeepProperties(headersToObject(a), headersToObject(b), prop, true)
33627
33644
  };
33628
- utils_default.forEach(Object.keys(__spreadValues(__spreadValues({}, config1), config2)), function computeConfigValue(prop) {
33629
- const merge3 = mergeMap[prop] || mergeDeepProperties;
33630
- const configValue = merge3(config1[prop], config2[prop], prop);
33631
- utils_default.isUndefined(configValue) && merge3 !== mergeDirectKeys || (config[prop] = configValue);
33632
- });
33645
+ utils_default.forEach(
33646
+ Object.keys(__spreadValues(__spreadValues({}, config1), config2)),
33647
+ function computeConfigValue(prop) {
33648
+ if (prop === "__proto__" || prop === "constructor" || prop === "prototype")
33649
+ return;
33650
+ const merge3 = utils_default.hasOwnProp(mergeMap, prop) ? mergeMap[prop] : mergeDeepProperties;
33651
+ const configValue = merge3(config1[prop], config2[prop], prop);
33652
+ utils_default.isUndefined(configValue) && merge3 !== mergeDirectKeys || (config[prop] = configValue);
33653
+ }
33654
+ );
33633
33655
  return config;
33634
33656
  }
33635
33657
  var headersToObject;
33636
33658
  var init_mergeConfig = __esm({
33637
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/mergeConfig.js"() {
33659
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/mergeConfig.js"() {
33638
33660
  "use strict";
33639
33661
  init_utils();
33640
33662
  init_AxiosHeaders();
@@ -33642,10 +33664,10 @@ var init_mergeConfig = __esm({
33642
33664
  }
33643
33665
  });
33644
33666
 
33645
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/resolveConfig.js
33667
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/resolveConfig.js
33646
33668
  var resolveConfig_default;
33647
33669
  var init_resolveConfig = __esm({
33648
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/resolveConfig.js"() {
33670
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/resolveConfig.js"() {
33649
33671
  "use strict";
33650
33672
  init_platform();
33651
33673
  init_utils();
@@ -33693,10 +33715,10 @@ var init_resolveConfig = __esm({
33693
33715
  }
33694
33716
  });
33695
33717
 
33696
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/adapters/xhr.js
33718
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/xhr.js
33697
33719
  var isXHRAdapterSupported, xhr_default;
33698
33720
  var init_xhr = __esm({
33699
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/adapters/xhr.js"() {
33721
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/xhr.js"() {
33700
33722
  "use strict";
33701
33723
  init_utils();
33702
33724
  init_settle();
@@ -33839,10 +33861,10 @@ var init_xhr = __esm({
33839
33861
  }
33840
33862
  });
33841
33863
 
33842
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/composeSignals.js
33864
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/composeSignals.js
33843
33865
  var composeSignals, composeSignals_default;
33844
33866
  var init_composeSignals = __esm({
33845
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/composeSignals.js"() {
33867
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/composeSignals.js"() {
33846
33868
  "use strict";
33847
33869
  init_CanceledError();
33848
33870
  init_AxiosError();
@@ -33884,10 +33906,10 @@ var init_composeSignals = __esm({
33884
33906
  }
33885
33907
  });
33886
33908
 
33887
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/trackStream.js
33909
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/trackStream.js
33888
33910
  var streamChunk, readBytes, readStream, trackStream;
33889
33911
  var init_trackStream = __esm({
33890
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/trackStream.js"() {
33912
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/trackStream.js"() {
33891
33913
  "use strict";
33892
33914
  streamChunk = function* (chunk, chunkSize) {
33893
33915
  let len = chunk.byteLength;
@@ -33985,10 +34007,10 @@ var init_trackStream = __esm({
33985
34007
  }
33986
34008
  });
33987
34009
 
33988
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/adapters/fetch.js
34010
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/fetch.js
33989
34011
  var DEFAULT_CHUNK_SIZE, isFunction2, globalFetchAPI, ReadableStream2, TextEncoder2, test, factory, seedCache, getFetch, adapter;
33990
34012
  var init_fetch = __esm({
33991
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/adapters/fetch.js"() {
34013
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/fetch.js"() {
33992
34014
  "use strict";
33993
34015
  init_platform();
33994
34016
  init_utils();
@@ -34178,13 +34200,13 @@ var init_fetch = __esm({
34178
34200
  unsubscribe && unsubscribe();
34179
34201
  if (err && err.name === "TypeError" && /Load failed|fetch/i.test(err.message)) {
34180
34202
  throw Object.assign(
34181
- new AxiosError_default("Network Error", AxiosError_default.ERR_NETWORK, config, request),
34203
+ new AxiosError_default("Network Error", AxiosError_default.ERR_NETWORK, config, request, err && err.response),
34182
34204
  {
34183
34205
  cause: err.cause || err
34184
34206
  }
34185
34207
  );
34186
34208
  }
34187
- throw AxiosError_default.from(err, err && err.code, config, request);
34209
+ throw AxiosError_default.from(err, err && err.code, config, request, err && err.response);
34188
34210
  }
34189
34211
  });
34190
34212
  };
@@ -34210,7 +34232,7 @@ var init_fetch = __esm({
34210
34232
  }
34211
34233
  });
34212
34234
 
34213
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/adapters/adapters.js
34235
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/adapters.js
34214
34236
  function getAdapter(adapters, config) {
34215
34237
  adapters = utils_default.isArray(adapters) ? adapters : [adapters];
34216
34238
  const { length } = adapters;
@@ -34246,7 +34268,7 @@ function getAdapter(adapters, config) {
34246
34268
  }
34247
34269
  var knownAdapters, renderReason, isResolvedHandle, adapters_default;
34248
34270
  var init_adapters = __esm({
34249
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/adapters/adapters.js"() {
34271
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/adapters.js"() {
34250
34272
  "use strict";
34251
34273
  init_utils();
34252
34274
  init_http();
@@ -34286,7 +34308,7 @@ var init_adapters = __esm({
34286
34308
  }
34287
34309
  });
34288
34310
 
34289
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/dispatchRequest.js
34311
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/dispatchRequest.js
34290
34312
  function throwIfCancellationRequested(config) {
34291
34313
  if (config.cancelToken) {
34292
34314
  config.cancelToken.throwIfRequested();
@@ -34331,7 +34353,7 @@ function dispatchRequest(config) {
34331
34353
  });
34332
34354
  }
34333
34355
  var init_dispatchRequest = __esm({
34334
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/dispatchRequest.js"() {
34356
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/dispatchRequest.js"() {
34335
34357
  "use strict";
34336
34358
  init_transformData();
34337
34359
  init_isCancel();
@@ -34342,7 +34364,7 @@ var init_dispatchRequest = __esm({
34342
34364
  }
34343
34365
  });
34344
34366
 
34345
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/validator.js
34367
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/validator.js
34346
34368
  function assertOptions(options, schema, allowUnknown) {
34347
34369
  if (typeof options !== "object") {
34348
34370
  throw new AxiosError_default("options must be an object", AxiosError_default.ERR_BAD_OPTION_VALUE);
@@ -34367,7 +34389,7 @@ function assertOptions(options, schema, allowUnknown) {
34367
34389
  }
34368
34390
  var validators, deprecatedWarnings, validator_default;
34369
34391
  var init_validator = __esm({
34370
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/validator.js"() {
34392
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/validator.js"() {
34371
34393
  "use strict";
34372
34394
  init_data();
34373
34395
  init_AxiosError();
@@ -34414,10 +34436,10 @@ var init_validator = __esm({
34414
34436
  }
34415
34437
  });
34416
34438
 
34417
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/Axios.js
34439
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/Axios.js
34418
34440
  var validators2, Axios, Axios_default;
34419
34441
  var init_Axios = __esm({
34420
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/Axios.js"() {
34442
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/Axios.js"() {
34421
34443
  "use strict";
34422
34444
  init_utils();
34423
34445
  init_buildURL();
@@ -34427,6 +34449,7 @@ var init_Axios = __esm({
34427
34449
  init_buildFullPath();
34428
34450
  init_validator();
34429
34451
  init_AxiosHeaders();
34452
+ init_transitional();
34430
34453
  validators2 = validator_default.validators;
34431
34454
  Axios = class {
34432
34455
  constructor(instanceConfig) {
@@ -34479,7 +34502,8 @@ var init_Axios = __esm({
34479
34502
  validator_default.assertOptions(transitional2, {
34480
34503
  silentJSONParsing: validators2.transitional(validators2.boolean),
34481
34504
  forcedJSONParsing: validators2.transitional(validators2.boolean),
34482
- clarifyTimeoutError: validators2.transitional(validators2.boolean)
34505
+ clarifyTimeoutError: validators2.transitional(validators2.boolean),
34506
+ legacyInterceptorReqResOrdering: validators2.transitional(validators2.boolean)
34483
34507
  }, false);
34484
34508
  }
34485
34509
  if (paramsSerializer != null) {
@@ -34523,7 +34547,13 @@ var init_Axios = __esm({
34523
34547
  return;
34524
34548
  }
34525
34549
  synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;
34526
- requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);
34550
+ const transitional3 = config.transitional || transitional_default;
34551
+ const legacyInterceptorReqResOrdering = transitional3 && transitional3.legacyInterceptorReqResOrdering;
34552
+ if (legacyInterceptorReqResOrdering) {
34553
+ requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);
34554
+ } else {
34555
+ requestInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);
34556
+ }
34527
34557
  });
34528
34558
  const responseInterceptorChain = [];
34529
34559
  this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {
@@ -34602,10 +34632,10 @@ var init_Axios = __esm({
34602
34632
  }
34603
34633
  });
34604
34634
 
34605
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/cancel/CancelToken.js
34635
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/cancel/CancelToken.js
34606
34636
  var CancelToken, CancelToken_default;
34607
34637
  var init_CancelToken = __esm({
34608
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/cancel/CancelToken.js"() {
34638
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/cancel/CancelToken.js"() {
34609
34639
  "use strict";
34610
34640
  init_CanceledError();
34611
34641
  CancelToken = class _CancelToken {
@@ -34708,33 +34738,33 @@ var init_CancelToken = __esm({
34708
34738
  }
34709
34739
  });
34710
34740
 
34711
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/spread.js
34741
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/spread.js
34712
34742
  function spread(callback) {
34713
34743
  return function wrap(arr) {
34714
34744
  return callback.apply(null, arr);
34715
34745
  };
34716
34746
  }
34717
34747
  var init_spread = __esm({
34718
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/spread.js"() {
34748
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/spread.js"() {
34719
34749
  "use strict";
34720
34750
  }
34721
34751
  });
34722
34752
 
34723
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/isAxiosError.js
34753
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/isAxiosError.js
34724
34754
  function isAxiosError(payload) {
34725
34755
  return utils_default.isObject(payload) && payload.isAxiosError === true;
34726
34756
  }
34727
34757
  var init_isAxiosError = __esm({
34728
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/isAxiosError.js"() {
34758
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/isAxiosError.js"() {
34729
34759
  "use strict";
34730
34760
  init_utils();
34731
34761
  }
34732
34762
  });
34733
34763
 
34734
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/HttpStatusCode.js
34764
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/HttpStatusCode.js
34735
34765
  var HttpStatusCode, HttpStatusCode_default;
34736
34766
  var init_HttpStatusCode = __esm({
34737
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/HttpStatusCode.js"() {
34767
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/HttpStatusCode.js"() {
34738
34768
  "use strict";
34739
34769
  HttpStatusCode = {
34740
34770
  Continue: 100,
@@ -34814,7 +34844,7 @@ var init_HttpStatusCode = __esm({
34814
34844
  }
34815
34845
  });
34816
34846
 
34817
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/axios.js
34847
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/axios.js
34818
34848
  function createInstance(defaultConfig) {
34819
34849
  const context = new Axios_default(defaultConfig);
34820
34850
  const instance = bind(Axios_default.prototype.request, context);
@@ -34827,7 +34857,7 @@ function createInstance(defaultConfig) {
34827
34857
  }
34828
34858
  var axios, axios_default;
34829
34859
  var init_axios = __esm({
34830
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/axios.js"() {
34860
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/axios.js"() {
34831
34861
  "use strict";
34832
34862
  init_utils();
34833
34863
  init_bind();
@@ -34870,10 +34900,10 @@ var init_axios = __esm({
34870
34900
  }
34871
34901
  });
34872
34902
 
34873
- // ../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/index.js
34903
+ // ../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/index.js
34874
34904
  var Axios2, AxiosError2, CanceledError2, isCancel2, CancelToken2, VERSION2, all2, Cancel, isAxiosError2, spread2, toFormData2, AxiosHeaders2, HttpStatusCode2, formToJSON, getAdapter2, mergeConfig2;
34875
34905
  var init_axios2 = __esm({
34876
- "../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/index.js"() {
34906
+ "../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/index.js"() {
34877
34907
  "use strict";
34878
34908
  init_axios();
34879
34909
  ({
package/package.json CHANGED
@@ -15,7 +15,7 @@
15
15
  "modern",
16
16
  "modern.js"
17
17
  ],
18
- "version": "2.70.5",
18
+ "version": "2.70.7",
19
19
  "jsnext:source": "./src/index.ts",
20
20
  "types": "./dist/index.d.ts",
21
21
  "main": "./dist/index.js",
@@ -45,8 +45,8 @@
45
45
  "jest": "^29",
46
46
  "ts-node": "^10.9.1",
47
47
  "typescript": "^5",
48
- "@modern-js/plugin-i18n": "2.70.5",
49
- "@modern-js/upgrade-generator": "3.7.71",
48
+ "@modern-js/plugin-i18n": "2.70.7",
49
+ "@modern-js/upgrade-generator": "3.7.73",
50
50
  "@scripts/build": "2.66.0",
51
51
  "@scripts/jest-config": "2.66.0"
52
52
  },