@kohost/api-client 3.1.9 → 3.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/esm/defs.js CHANGED
@@ -1181,8 +1181,6 @@ var require_axios = __commonJS({
1181
1181
  function formDataToJSON(formData) {
1182
1182
  function buildPath(path, value, target, index) {
1183
1183
  let name = path[index++];
1184
- if (name === "__proto__")
1185
- return true;
1186
1184
  const isNumericKey = Number.isFinite(+name);
1187
1185
  const isLast = index >= path.length;
1188
1186
  name = !name && utils$1.isArray(target) ? target.length : name;
@@ -1668,7 +1666,7 @@ var require_axios = __commonJS({
1668
1666
  }
1669
1667
  __name(isAbsoluteURL, "isAbsoluteURL");
1670
1668
  function combineURLs(baseURL, relativeURL) {
1671
- return relativeURL ? baseURL.replace(/\/?\/$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
1669
+ return relativeURL ? baseURL.replace(/\/+$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
1672
1670
  }
1673
1671
  __name(combineURLs, "combineURLs");
1674
1672
  function buildFullPath(baseURL, requestedURL) {
@@ -2108,7 +2106,7 @@ var require_axios = __commonJS({
2108
2106
  return config;
2109
2107
  }
2110
2108
  __name(mergeConfig, "mergeConfig");
2111
- var VERSION = "1.6.5";
2109
+ var VERSION = "1.6.2";
2112
2110
  var validators$1 = {};
2113
2111
  ["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => {
2114
2112
  validators$1[type] = /* @__PURE__ */ __name(function validator2(thing) {