@modern-js/upgrade-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.
Files changed (2) hide show
  1. package/dist/index.js +140 -111
  2. package/package.json +6 -6
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.4/node_modules/form-data/lib/populate.js
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.4/node_modules/form-data/lib/populate.js"(exports, module2) {
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.4/node_modules/form-data/lib/form_data.js
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.4/node_modules/form-data/lib/form_data.js"(exports, module2) {
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 util3 = 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
  });
@@ -85833,14 +85833,14 @@ var CATCHE_VALIDITY_PREIOD = 7 * 24 * 3600 * 1e3;
85833
85833
  // ../../../../node_modules/.pnpm/@modern-js+codesmith-utils@2.6.9/node_modules/@modern-js/codesmith-utils/dist/esm/semver.js
85834
85834
  var import_semver = __toESM(require_semver2());
85835
85835
 
85836
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/bind.js
85836
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/bind.js
85837
85837
  function bind(fn, thisArg) {
85838
85838
  return function wrap() {
85839
85839
  return fn.apply(thisArg, arguments);
85840
85840
  };
85841
85841
  }
85842
85842
 
85843
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/utils.js
85843
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/utils.js
85844
85844
  var { toString } = Object.prototype;
85845
85845
  var { getPrototypeOf } = Object;
85846
85846
  var { iterator, toStringTag } = Symbol;
@@ -85901,7 +85901,12 @@ var isFormData = (thing) => {
85901
85901
  kind === "object" && isFunction(thing.toString) && thing.toString() === "[object FormData]"));
85902
85902
  };
85903
85903
  var isURLSearchParams = kindOfTest("URLSearchParams");
85904
- var [isReadableStream, isRequest, isResponse, isHeaders] = ["ReadableStream", "Request", "Response", "Headers"].map(kindOfTest);
85904
+ var [isReadableStream, isRequest, isResponse, isHeaders] = [
85905
+ "ReadableStream",
85906
+ "Request",
85907
+ "Response",
85908
+ "Headers"
85909
+ ].map(kindOfTest);
85905
85910
  var trim = (str) => str.trim ? str.trim() : str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");
85906
85911
  function forEach(obj, fn, { allOwnKeys = false } = {}) {
85907
85912
  if (obj === null || typeof obj === "undefined") {
@@ -85955,6 +85960,9 @@ function merge() {
85955
85960
  const { caseless, skipUndefined } = isContextDefined(this) && this || {};
85956
85961
  const result = {};
85957
85962
  const assignValue = (val, key) => {
85963
+ if (key === "__proto__" || key === "constructor" || key === "prototype") {
85964
+ return;
85965
+ }
85958
85966
  const targetKey = caseless && findKey(result, key) || key;
85959
85967
  if (isPlainObject(result[targetKey]) && isPlainObject(val)) {
85960
85968
  result[targetKey] = merge(result[targetKey], val);
@@ -85972,23 +85980,27 @@ function merge() {
85972
85980
  return result;
85973
85981
  }
85974
85982
  var extend = (a, b, thisArg, { allOwnKeys } = {}) => {
85975
- forEach(b, (val, key) => {
85976
- if (thisArg && isFunction(val)) {
85977
- Object.defineProperty(a, key, {
85978
- value: bind(val, thisArg),
85979
- writable: true,
85980
- enumerable: true,
85981
- configurable: true
85982
- });
85983
- } else {
85984
- Object.defineProperty(a, key, {
85985
- value: val,
85986
- writable: true,
85987
- enumerable: true,
85988
- configurable: true
85989
- });
85990
- }
85991
- }, { allOwnKeys });
85983
+ forEach(
85984
+ b,
85985
+ (val, key) => {
85986
+ if (thisArg && isFunction(val)) {
85987
+ Object.defineProperty(a, key, {
85988
+ value: bind(val, thisArg),
85989
+ writable: true,
85990
+ enumerable: true,
85991
+ configurable: true
85992
+ });
85993
+ } else {
85994
+ Object.defineProperty(a, key, {
85995
+ value: val,
85996
+ writable: true,
85997
+ enumerable: true,
85998
+ configurable: true
85999
+ });
86000
+ }
86001
+ },
86002
+ { allOwnKeys }
86003
+ );
85992
86004
  return a;
85993
86005
  };
85994
86006
  var stripBOM = (content) => {
@@ -85998,7 +86010,10 @@ var stripBOM = (content) => {
85998
86010
  return content;
85999
86011
  };
86000
86012
  var inherits = (constructor, superConstructor, props, descriptors) => {
86001
- constructor.prototype = Object.create(superConstructor.prototype, descriptors);
86013
+ constructor.prototype = Object.create(
86014
+ superConstructor.prototype,
86015
+ descriptors
86016
+ );
86002
86017
  Object.defineProperty(constructor.prototype, "constructor", {
86003
86018
  value: constructor,
86004
86019
  writable: true,
@@ -86079,12 +86094,9 @@ var matchAll = (regExp, str) => {
86079
86094
  };
86080
86095
  var isHTMLForm = kindOfTest("HTMLFormElement");
86081
86096
  var toCamelCase = (str) => {
86082
- return str.toLowerCase().replace(
86083
- /[-_\s]([a-z\d])(\w*)/g,
86084
- function replacer(m, p1, p2) {
86085
- return p1.toUpperCase() + p2;
86086
- }
86087
- );
86097
+ return str.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g, function replacer(m, p1, p2) {
86098
+ return p1.toUpperCase() + p2;
86099
+ });
86088
86100
  };
86089
86101
  var hasOwnProperty = (({ hasOwnProperty: hasOwnProperty6 }) => (obj, prop) => hasOwnProperty6.call(obj, prop))(Object.prototype);
86090
86102
  var isRegExp = kindOfTest("RegExp");
@@ -86169,20 +86181,21 @@ var _setImmediate = ((setImmediateSupported, postMessageSupported) => {
86169
86181
  return setImmediate;
86170
86182
  }
86171
86183
  return postMessageSupported ? ((token, callbacks) => {
86172
- _global.addEventListener("message", ({ source, data }) => {
86173
- if (source === _global && data === token) {
86174
- callbacks.length && callbacks.shift()();
86175
- }
86176
- }, false);
86184
+ _global.addEventListener(
86185
+ "message",
86186
+ ({ source, data }) => {
86187
+ if (source === _global && data === token) {
86188
+ callbacks.length && callbacks.shift()();
86189
+ }
86190
+ },
86191
+ false
86192
+ );
86177
86193
  return (cb) => {
86178
86194
  callbacks.push(cb);
86179
86195
  _global.postMessage(token, "*");
86180
86196
  };
86181
86197
  })(`axios@${Math.random()}`, []) : (cb) => setTimeout(cb);
86182
- })(
86183
- typeof setImmediate === "function",
86184
- isFunction(_global.postMessage)
86185
- );
86198
+ })(typeof setImmediate === "function", isFunction(_global.postMessage));
86186
86199
  var asap = typeof queueMicrotask !== "undefined" ? queueMicrotask.bind(_global) : typeof process !== "undefined" && process.nextTick || _setImmediate;
86187
86200
  var isIterable = (thing) => thing != null && isFunction(thing[iterator]);
86188
86201
  var utils_default = {
@@ -86246,7 +86259,7 @@ var utils_default = {
86246
86259
  isIterable
86247
86260
  };
86248
86261
 
86249
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/AxiosError.js
86262
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/AxiosError.js
86250
86263
  var AxiosError = class _AxiosError extends Error {
86251
86264
  static from(error, code, config, request, response, customProps) {
86252
86265
  const axiosError = new _AxiosError(error.message, code || error.code, config, request, response);
@@ -86312,11 +86325,11 @@ AxiosError.ERR_NOT_SUPPORT = "ERR_NOT_SUPPORT";
86312
86325
  AxiosError.ERR_INVALID_URL = "ERR_INVALID_URL";
86313
86326
  var AxiosError_default = AxiosError;
86314
86327
 
86315
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/platform/node/classes/FormData.js
86328
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/node/classes/FormData.js
86316
86329
  var import_form_data = __toESM(require_form_data());
86317
86330
  var FormData_default = import_form_data.default;
86318
86331
 
86319
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/toFormData.js
86332
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/toFormData.js
86320
86333
  function isVisitable(thing) {
86321
86334
  return utils_default.isPlainObject(thing) || utils_default.isArray(thing);
86322
86335
  }
@@ -86434,7 +86447,7 @@ function toFormData(obj, formData, options) {
86434
86447
  }
86435
86448
  var toFormData_default = toFormData;
86436
86449
 
86437
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js
86450
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js
86438
86451
  function encode(str) {
86439
86452
  const charMap = {
86440
86453
  "!": "%21",
@@ -86467,7 +86480,7 @@ prototype.toString = function toString2(encoder) {
86467
86480
  };
86468
86481
  var AxiosURLSearchParams_default = AxiosURLSearchParams;
86469
86482
 
86470
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/buildURL.js
86483
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/buildURL.js
86471
86484
  function encode2(val) {
86472
86485
  return encodeURIComponent(val).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+");
86473
86486
  }
@@ -86496,7 +86509,7 @@ function buildURL(url2, params, options) {
86496
86509
  return url2;
86497
86510
  }
86498
86511
 
86499
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/InterceptorManager.js
86512
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/InterceptorManager.js
86500
86513
  var InterceptorManager = class {
86501
86514
  constructor() {
86502
86515
  this.handlers = [];
@@ -86561,21 +86574,22 @@ var InterceptorManager = class {
86561
86574
  };
86562
86575
  var InterceptorManager_default = InterceptorManager;
86563
86576
 
86564
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/defaults/transitional.js
86577
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/defaults/transitional.js
86565
86578
  var transitional_default = {
86566
86579
  silentJSONParsing: true,
86567
86580
  forcedJSONParsing: true,
86568
- clarifyTimeoutError: false
86581
+ clarifyTimeoutError: false,
86582
+ legacyInterceptorReqResOrdering: true
86569
86583
  };
86570
86584
 
86571
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
86585
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
86572
86586
  var import_crypto = __toESM(require("crypto"));
86573
86587
 
86574
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/platform/node/classes/URLSearchParams.js
86588
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/node/classes/URLSearchParams.js
86575
86589
  var import_url = __toESM(require("url"));
86576
86590
  var URLSearchParams_default = import_url.default.URLSearchParams;
86577
86591
 
86578
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
86592
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/node/index.js
86579
86593
  var ALPHA = "abcdefghijklmnopqrstuvwxyz";
86580
86594
  var DIGIT = "0123456789";
86581
86595
  var ALPHABET = {
@@ -86605,7 +86619,7 @@ var node_default = {
86605
86619
  protocols: ["http", "https", "file", "data"]
86606
86620
  };
86607
86621
 
86608
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/platform/common/utils.js
86622
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/common/utils.js
86609
86623
  var utils_exports = {};
86610
86624
  __export(utils_exports, {
86611
86625
  hasBrowserEnv: () => hasBrowserEnv,
@@ -86623,10 +86637,10 @@ var hasStandardBrowserWebWorkerEnv = (() => {
86623
86637
  })();
86624
86638
  var origin = hasBrowserEnv && window.location.href || "http://localhost";
86625
86639
 
86626
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/platform/index.js
86640
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/platform/index.js
86627
86641
  var platform_default = __spreadValues(__spreadValues({}, utils_exports), node_default);
86628
86642
 
86629
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/toURLEncodedForm.js
86643
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/toURLEncodedForm.js
86630
86644
  function toURLEncodedForm(data, options) {
86631
86645
  return toFormData_default(data, new platform_default.classes.URLSearchParams(), __spreadValues({
86632
86646
  visitor: function(value, key, path5, helpers) {
@@ -86639,7 +86653,7 @@ function toURLEncodedForm(data, options) {
86639
86653
  }, options));
86640
86654
  }
86641
86655
 
86642
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/formDataToJSON.js
86656
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/formDataToJSON.js
86643
86657
  function parsePropPath(name) {
86644
86658
  return utils_default.matchAll(/\w+|\[(\w*)]/g, name).map((match) => {
86645
86659
  return match[0] === "[]" ? "" : match[1] || match[0];
@@ -86693,7 +86707,7 @@ function formDataToJSON(formData) {
86693
86707
  }
86694
86708
  var formDataToJSON_default = formDataToJSON;
86695
86709
 
86696
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/defaults/index.js
86710
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/defaults/index.js
86697
86711
  function stringifySafely(rawValue, parser, encoder) {
86698
86712
  if (utils_default.isString(rawValue)) {
86699
86713
  try {
@@ -86802,7 +86816,7 @@ utils_default.forEach(["delete", "get", "head", "post", "put", "patch"], (method
86802
86816
  });
86803
86817
  var defaults_default = defaults;
86804
86818
 
86805
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/parseHeaders.js
86819
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/parseHeaders.js
86806
86820
  var ignoreDuplicateOf = utils_default.toObjectSet([
86807
86821
  "age",
86808
86822
  "authorization",
@@ -86847,7 +86861,7 @@ var parseHeaders_default = (rawHeaders) => {
86847
86861
  return parsed;
86848
86862
  };
86849
86863
 
86850
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/AxiosHeaders.js
86864
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/AxiosHeaders.js
86851
86865
  var $internals = Symbol("internals");
86852
86866
  function normalizeHeader(header) {
86853
86867
  return header && String(header).trim().toLowerCase();
@@ -87077,7 +87091,7 @@ utils_default.reduceDescriptors(AxiosHeaders.prototype, ({ value }, key) => {
87077
87091
  utils_default.freezeMethods(AxiosHeaders);
87078
87092
  var AxiosHeaders_default = AxiosHeaders;
87079
87093
 
87080
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/transformData.js
87094
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/transformData.js
87081
87095
  function transformData(fns, response) {
87082
87096
  const config = this || defaults_default;
87083
87097
  const context = response || config;
@@ -87090,12 +87104,12 @@ function transformData(fns, response) {
87090
87104
  return data;
87091
87105
  }
87092
87106
 
87093
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/cancel/isCancel.js
87107
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/cancel/isCancel.js
87094
87108
  function isCancel(value) {
87095
87109
  return !!(value && value.__CANCEL__);
87096
87110
  }
87097
87111
 
87098
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/cancel/CanceledError.js
87112
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/cancel/CanceledError.js
87099
87113
  var CanceledError = class extends AxiosError_default {
87100
87114
  /**
87101
87115
  * A `CanceledError` is an object that is thrown when an operation is canceled.
@@ -87114,7 +87128,7 @@ var CanceledError = class extends AxiosError_default {
87114
87128
  };
87115
87129
  var CanceledError_default = CanceledError;
87116
87130
 
87117
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/settle.js
87131
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/settle.js
87118
87132
  function settle(resolve, reject, response) {
87119
87133
  const validateStatus2 = response.config.validateStatus;
87120
87134
  if (!response.status || !validateStatus2 || validateStatus2(response.status)) {
@@ -87130,17 +87144,20 @@ function settle(resolve, reject, response) {
87130
87144
  }
87131
87145
  }
87132
87146
 
87133
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/isAbsoluteURL.js
87147
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/isAbsoluteURL.js
87134
87148
  function isAbsoluteURL(url2) {
87149
+ if (typeof url2 !== "string") {
87150
+ return false;
87151
+ }
87135
87152
  return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url2);
87136
87153
  }
87137
87154
 
87138
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/combineURLs.js
87155
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/combineURLs.js
87139
87156
  function combineURLs(baseURL, relativeURL) {
87140
87157
  return relativeURL ? baseURL.replace(/\/?\/$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
87141
87158
  }
87142
87159
 
87143
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/buildFullPath.js
87160
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/buildFullPath.js
87144
87161
  function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
87145
87162
  let isRelativeUrl = !isAbsoluteURL(requestedURL);
87146
87163
  if (baseURL && (isRelativeUrl || allowAbsoluteUrls == false)) {
@@ -87149,7 +87166,7 @@ function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
87149
87166
  return requestedURL;
87150
87167
  }
87151
87168
 
87152
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/adapters/http.js
87169
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/http.js
87153
87170
  var import_proxy_from_env = __toESM(require_proxy_from_env());
87154
87171
  var import_http = __toESM(require("http"));
87155
87172
  var import_https = __toESM(require("https"));
@@ -87158,16 +87175,16 @@ var import_util2 = __toESM(require("util"));
87158
87175
  var import_follow_redirects = __toESM(require_follow_redirects());
87159
87176
  var import_zlib = __toESM(require("zlib"));
87160
87177
 
87161
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/env/data.js
87162
- var VERSION = "1.13.4";
87178
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/env/data.js
87179
+ var VERSION = "1.13.5";
87163
87180
 
87164
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/parseProtocol.js
87181
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/parseProtocol.js
87165
87182
  function parseProtocol(url2) {
87166
87183
  const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url2);
87167
87184
  return match && match[1] || "";
87168
87185
  }
87169
87186
 
87170
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/fromDataURI.js
87187
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/fromDataURI.js
87171
87188
  var DATA_URL_PATTERN = /^(?:([^;]+);)?(?:[^;]+;)?(base64|),([\s\S]*)$/;
87172
87189
  function fromDataURI(uri, asBlob, options) {
87173
87190
  const _Blob = options && options.Blob || platform_default.classes.Blob;
@@ -87196,10 +87213,10 @@ function fromDataURI(uri, asBlob, options) {
87196
87213
  throw new AxiosError_default("Unsupported protocol " + protocol, AxiosError_default.ERR_NOT_SUPPORT);
87197
87214
  }
87198
87215
 
87199
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/adapters/http.js
87216
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/http.js
87200
87217
  var import_stream4 = __toESM(require("stream"));
87201
87218
 
87202
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/AxiosTransformStream.js
87219
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/AxiosTransformStream.js
87203
87220
  var import_stream = __toESM(require("stream"));
87204
87221
  var kInternals = Symbol("internals");
87205
87222
  var AxiosTransformStream = class extends import_stream.default.Transform {
@@ -87314,14 +87331,14 @@ var AxiosTransformStream = class extends import_stream.default.Transform {
87314
87331
  };
87315
87332
  var AxiosTransformStream_default = AxiosTransformStream;
87316
87333
 
87317
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/adapters/http.js
87334
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/http.js
87318
87335
  var import_events = require("events");
87319
87336
 
87320
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
87337
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
87321
87338
  var import_util = __toESM(require("util"));
87322
87339
  var import_stream2 = require("stream");
87323
87340
 
87324
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/readBlob.js
87341
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/readBlob.js
87325
87342
  var { asyncIterator } = Symbol;
87326
87343
  var readBlob = function(blob) {
87327
87344
  return __asyncGenerator(this, null, function* () {
@@ -87338,7 +87355,7 @@ var readBlob = function(blob) {
87338
87355
  };
87339
87356
  var readBlob_default = readBlob;
87340
87357
 
87341
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
87358
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/formDataToStream.js
87342
87359
  var BOUNDARY_ALPHABET = platform_default.ALPHABET.ALPHA_DIGIT + "-_";
87343
87360
  var textEncoder = typeof TextEncoder === "function" ? new TextEncoder() : new import_util.default.TextEncoder();
87344
87361
  var CRLF = "\r\n";
@@ -87421,7 +87438,7 @@ var formDataToStream = (form, headersHandler, options) => {
87421
87438
  };
87422
87439
  var formDataToStream_default = formDataToStream;
87423
87440
 
87424
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js
87441
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js
87425
87442
  var import_stream3 = __toESM(require("stream"));
87426
87443
  var ZlibHeaderTransformStream = class extends import_stream3.default.Transform {
87427
87444
  __transform(chunk, encoding, callback) {
@@ -87443,7 +87460,7 @@ var ZlibHeaderTransformStream = class extends import_stream3.default.Transform {
87443
87460
  };
87444
87461
  var ZlibHeaderTransformStream_default = ZlibHeaderTransformStream;
87445
87462
 
87446
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/callbackify.js
87463
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/callbackify.js
87447
87464
  var callbackify = (fn, reducer) => {
87448
87465
  return utils_default.isAsyncFn(fn) ? function(...args) {
87449
87466
  const cb = args.pop();
@@ -87458,7 +87475,7 @@ var callbackify = (fn, reducer) => {
87458
87475
  };
87459
87476
  var callbackify_default = callbackify;
87460
87477
 
87461
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/speedometer.js
87478
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/speedometer.js
87462
87479
  function speedometer(samplesCount, min) {
87463
87480
  samplesCount = samplesCount || 10;
87464
87481
  const bytes = new Array(samplesCount);
@@ -87494,7 +87511,7 @@ function speedometer(samplesCount, min) {
87494
87511
  }
87495
87512
  var speedometer_default = speedometer;
87496
87513
 
87497
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/throttle.js
87514
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/throttle.js
87498
87515
  function throttle(fn, freq) {
87499
87516
  let timestamp = 0;
87500
87517
  let threshold = 1e3 / freq;
@@ -87529,7 +87546,7 @@ function throttle(fn, freq) {
87529
87546
  }
87530
87547
  var throttle_default = throttle;
87531
87548
 
87532
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/progressEventReducer.js
87549
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/progressEventReducer.js
87533
87550
  var progressEventReducer = (listener, isDownloadStream, freq = 3) => {
87534
87551
  let bytesNotified = 0;
87535
87552
  const _speedometer = speedometer_default(50, 250);
@@ -87564,7 +87581,7 @@ var progressEventDecorator = (total, throttled) => {
87564
87581
  };
87565
87582
  var asyncDecorator = (fn) => (...args) => utils_default.asap(() => fn(...args));
87566
87583
 
87567
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js
87584
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js
87568
87585
  function estimateDataURLDecodedBytes(url2) {
87569
87586
  if (!url2 || typeof url2 !== "string")
87570
87587
  return 0;
@@ -87618,7 +87635,7 @@ function estimateDataURLDecodedBytes(url2) {
87618
87635
  return Buffer.byteLength(body, "utf8");
87619
87636
  }
87620
87637
 
87621
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/adapters/http.js
87638
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/http.js
87622
87639
  var zlibOptions = {
87623
87640
  flush: import_zlib.default.constants.Z_SYNC_FLUSH,
87624
87641
  finishFlush: import_zlib.default.constants.Z_SYNC_FLUSH
@@ -88268,7 +88285,7 @@ var http_default = isHttpAdapterSupported && function httpAdapter(config) {
88268
88285
  });
88269
88286
  };
88270
88287
 
88271
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/isURLSameOrigin.js
88288
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/isURLSameOrigin.js
88272
88289
  var isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? ((origin2, isMSIE) => (url2) => {
88273
88290
  url2 = new URL(url2, platform_default.origin);
88274
88291
  return origin2.protocol === url2.protocol && origin2.host === url2.host && (isMSIE || origin2.port === url2.port);
@@ -88277,7 +88294,7 @@ var isURLSameOrigin_default = platform_default.hasStandardBrowserEnv ? ((origin2
88277
88294
  platform_default.navigator && /(msie|trident)/i.test(platform_default.navigator.userAgent)
88278
88295
  ) : () => true;
88279
88296
 
88280
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/cookies.js
88297
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/cookies.js
88281
88298
  var cookies_default = platform_default.hasStandardBrowserEnv ? (
88282
88299
  // Standard browser envs support document.cookie
88283
88300
  {
@@ -88325,7 +88342,7 @@ var cookies_default = platform_default.hasStandardBrowserEnv ? (
88325
88342
  }
88326
88343
  );
88327
88344
 
88328
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/mergeConfig.js
88345
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/mergeConfig.js
88329
88346
  var headersToObject = (thing) => thing instanceof AxiosHeaders_default ? __spreadValues({}, thing) : thing;
88330
88347
  function mergeConfig(config1, config2) {
88331
88348
  config2 = config2 || {};
@@ -88397,15 +88414,20 @@ function mergeConfig(config1, config2) {
88397
88414
  validateStatus: mergeDirectKeys,
88398
88415
  headers: (a, b, prop) => mergeDeepProperties(headersToObject(a), headersToObject(b), prop, true)
88399
88416
  };
88400
- utils_default.forEach(Object.keys(__spreadValues(__spreadValues({}, config1), config2)), function computeConfigValue(prop) {
88401
- const merge4 = mergeMap[prop] || mergeDeepProperties;
88402
- const configValue = merge4(config1[prop], config2[prop], prop);
88403
- utils_default.isUndefined(configValue) && merge4 !== mergeDirectKeys || (config[prop] = configValue);
88404
- });
88417
+ utils_default.forEach(
88418
+ Object.keys(__spreadValues(__spreadValues({}, config1), config2)),
88419
+ function computeConfigValue(prop) {
88420
+ if (prop === "__proto__" || prop === "constructor" || prop === "prototype")
88421
+ return;
88422
+ const merge4 = utils_default.hasOwnProp(mergeMap, prop) ? mergeMap[prop] : mergeDeepProperties;
88423
+ const configValue = merge4(config1[prop], config2[prop], prop);
88424
+ utils_default.isUndefined(configValue) && merge4 !== mergeDirectKeys || (config[prop] = configValue);
88425
+ }
88426
+ );
88405
88427
  return config;
88406
88428
  }
88407
88429
 
88408
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/resolveConfig.js
88430
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/resolveConfig.js
88409
88431
  var resolveConfig_default = (config) => {
88410
88432
  const newConfig = mergeConfig({}, config);
88411
88433
  let { data, withXSRFToken, xsrfHeaderName, xsrfCookieName, headers, auth } = newConfig;
@@ -88442,7 +88464,7 @@ var resolveConfig_default = (config) => {
88442
88464
  return newConfig;
88443
88465
  };
88444
88466
 
88445
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/adapters/xhr.js
88467
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/xhr.js
88446
88468
  var isXHRAdapterSupported = typeof XMLHttpRequest !== "undefined";
88447
88469
  var xhr_default = isXHRAdapterSupported && function(config) {
88448
88470
  return new Promise(function dispatchXhrRequest(resolve, reject) {
@@ -88572,7 +88594,7 @@ var xhr_default = isXHRAdapterSupported && function(config) {
88572
88594
  });
88573
88595
  };
88574
88596
 
88575
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/composeSignals.js
88597
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/composeSignals.js
88576
88598
  var composeSignals = (signals, timeout) => {
88577
88599
  const { length } = signals = signals ? signals.filter(Boolean) : [];
88578
88600
  if (timeout || length) {
@@ -88608,7 +88630,7 @@ var composeSignals = (signals, timeout) => {
88608
88630
  };
88609
88631
  var composeSignals_default = composeSignals;
88610
88632
 
88611
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/trackStream.js
88633
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/trackStream.js
88612
88634
  var streamChunk = function* (chunk, chunkSize) {
88613
88635
  let len = chunk.byteLength;
88614
88636
  if (!chunkSize || len < chunkSize) {
@@ -88703,7 +88725,7 @@ var trackStream = (stream4, chunkSize, onProgress, onFinish) => {
88703
88725
  });
88704
88726
  };
88705
88727
 
88706
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/adapters/fetch.js
88728
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/fetch.js
88707
88729
  var DEFAULT_CHUNK_SIZE = 64 * 1024;
88708
88730
  var { isFunction: isFunction2 } = utils_default;
88709
88731
  var globalFetchAPI = (({ Request, Response }) => ({
@@ -88883,13 +88905,13 @@ var factory = (env) => {
88883
88905
  unsubscribe && unsubscribe();
88884
88906
  if (err && err.name === "TypeError" && /Load failed|fetch/i.test(err.message)) {
88885
88907
  throw Object.assign(
88886
- new AxiosError_default("Network Error", AxiosError_default.ERR_NETWORK, config, request),
88908
+ new AxiosError_default("Network Error", AxiosError_default.ERR_NETWORK, config, request, err && err.response),
88887
88909
  {
88888
88910
  cause: err.cause || err
88889
88911
  }
88890
88912
  );
88891
88913
  }
88892
- throw AxiosError_default.from(err, err && err.code, config, request);
88914
+ throw AxiosError_default.from(err, err && err.code, config, request, err && err.response);
88893
88915
  }
88894
88916
  });
88895
88917
  };
@@ -88913,7 +88935,7 @@ var getFetch = (config) => {
88913
88935
  };
88914
88936
  var adapter = getFetch();
88915
88937
 
88916
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/adapters/adapters.js
88938
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/adapters/adapters.js
88917
88939
  var knownAdapters = {
88918
88940
  http: http_default,
88919
88941
  xhr: xhr_default,
@@ -88978,7 +89000,7 @@ var adapters_default = {
88978
89000
  adapters: knownAdapters
88979
89001
  };
88980
89002
 
88981
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/dispatchRequest.js
89003
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/dispatchRequest.js
88982
89004
  function throwIfCancellationRequested(config) {
88983
89005
  if (config.cancelToken) {
88984
89006
  config.cancelToken.throwIfRequested();
@@ -89023,7 +89045,7 @@ function dispatchRequest(config) {
89023
89045
  });
89024
89046
  }
89025
89047
 
89026
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/validator.js
89048
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/validator.js
89027
89049
  var validators = {};
89028
89050
  ["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => {
89029
89051
  validators[type] = function validator(thing) {
@@ -89087,7 +89109,7 @@ var validator_default = {
89087
89109
  validators
89088
89110
  };
89089
89111
 
89090
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/core/Axios.js
89112
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/core/Axios.js
89091
89113
  var validators2 = validator_default.validators;
89092
89114
  var Axios = class {
89093
89115
  constructor(instanceConfig) {
@@ -89140,7 +89162,8 @@ var Axios = class {
89140
89162
  validator_default.assertOptions(transitional2, {
89141
89163
  silentJSONParsing: validators2.transitional(validators2.boolean),
89142
89164
  forcedJSONParsing: validators2.transitional(validators2.boolean),
89143
- clarifyTimeoutError: validators2.transitional(validators2.boolean)
89165
+ clarifyTimeoutError: validators2.transitional(validators2.boolean),
89166
+ legacyInterceptorReqResOrdering: validators2.transitional(validators2.boolean)
89144
89167
  }, false);
89145
89168
  }
89146
89169
  if (paramsSerializer != null) {
@@ -89184,7 +89207,13 @@ var Axios = class {
89184
89207
  return;
89185
89208
  }
89186
89209
  synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;
89187
- requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);
89210
+ const transitional3 = config.transitional || transitional_default;
89211
+ const legacyInterceptorReqResOrdering = transitional3 && transitional3.legacyInterceptorReqResOrdering;
89212
+ if (legacyInterceptorReqResOrdering) {
89213
+ requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);
89214
+ } else {
89215
+ requestInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);
89216
+ }
89188
89217
  });
89189
89218
  const responseInterceptorChain = [];
89190
89219
  this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {
@@ -89261,7 +89290,7 @@ utils_default.forEach(["post", "put", "patch"], function forEachMethodWithData(m
89261
89290
  });
89262
89291
  var Axios_default = Axios;
89263
89292
 
89264
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/cancel/CancelToken.js
89293
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/cancel/CancelToken.js
89265
89294
  var CancelToken = class _CancelToken {
89266
89295
  constructor(executor) {
89267
89296
  if (typeof executor !== "function") {
@@ -89360,19 +89389,19 @@ var CancelToken = class _CancelToken {
89360
89389
  };
89361
89390
  var CancelToken_default = CancelToken;
89362
89391
 
89363
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/spread.js
89392
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/spread.js
89364
89393
  function spread(callback) {
89365
89394
  return function wrap(arr) {
89366
89395
  return callback.apply(null, arr);
89367
89396
  };
89368
89397
  }
89369
89398
 
89370
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/isAxiosError.js
89399
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/isAxiosError.js
89371
89400
  function isAxiosError(payload) {
89372
89401
  return utils_default.isObject(payload) && payload.isAxiosError === true;
89373
89402
  }
89374
89403
 
89375
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/helpers/HttpStatusCode.js
89404
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/helpers/HttpStatusCode.js
89376
89405
  var HttpStatusCode = {
89377
89406
  Continue: 100,
89378
89407
  SwitchingProtocols: 101,
@@ -89449,7 +89478,7 @@ Object.entries(HttpStatusCode).forEach(([key, value]) => {
89449
89478
  });
89450
89479
  var HttpStatusCode_default = HttpStatusCode;
89451
89480
 
89452
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/lib/axios.js
89481
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/lib/axios.js
89453
89482
  function createInstance(defaultConfig) {
89454
89483
  const context = new Axios_default(defaultConfig);
89455
89484
  const instance = bind(Axios_default.prototype.request, context);
@@ -89482,7 +89511,7 @@ axios.HttpStatusCode = HttpStatusCode_default;
89482
89511
  axios.default = axios;
89483
89512
  var axios_default = axios;
89484
89513
 
89485
- // ../../../../node_modules/.pnpm/axios@1.13.4_debug@4.3.7/node_modules/axios/index.js
89514
+ // ../../../../node_modules/.pnpm/axios@1.13.5_debug@4.3.7/node_modules/axios/index.js
89486
89515
  var {
89487
89516
  Axios: Axios2,
89488
89517
  AxiosError: AxiosError2,
package/package.json CHANGED
@@ -15,7 +15,7 @@
15
15
  "modern",
16
16
  "modern.js"
17
17
  ],
18
- "version": "3.7.72",
18
+ "version": "3.7.73",
19
19
  "jsnext:source": "./src/index.ts",
20
20
  "main": "./dist/index.js",
21
21
  "files": [
@@ -31,11 +31,11 @@
31
31
  "@types/node": "^18",
32
32
  "jest": "^29",
33
33
  "typescript": "^5",
34
- "@modern-js/generator-common": "3.7.72",
35
- "@modern-js/generator-utils": "3.7.72",
36
- "@scripts/jest-config": "2.66.0",
37
- "@modern-js/plugin-i18n": "2.70.6",
38
- "@scripts/build": "2.66.0"
34
+ "@modern-js/generator-common": "3.7.73",
35
+ "@modern-js/generator-utils": "3.7.73",
36
+ "@modern-js/plugin-i18n": "2.70.7",
37
+ "@scripts/build": "2.66.0",
38
+ "@scripts/jest-config": "2.66.0"
39
39
  },
40
40
  "sideEffects": false,
41
41
  "publishConfig": {