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