udxcms 2.0.7 → 2.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/dist/index.mjs +156 -170
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -12398,8 +12398,8 @@ lodash.exports;
|
|
|
12398
12398
|
copyObject(source2, keys3(source2), object2, customizer);
|
|
12399
12399
|
});
|
|
12400
12400
|
var at = flatRest(baseAt);
|
|
12401
|
-
function create4(
|
|
12402
|
-
var result2 = baseCreate(
|
|
12401
|
+
function create4(prototype2, properties) {
|
|
12402
|
+
var result2 = baseCreate(prototype2);
|
|
12403
12403
|
return properties == null ? result2 : baseAssign(result2, properties);
|
|
12404
12404
|
}
|
|
12405
12405
|
var defaults2 = baseRest(function(object2, sources) {
|
|
@@ -13695,8 +13695,8 @@ function isPlainObject(val) {
|
|
|
13695
13695
|
if (kindOf(val) !== "object") {
|
|
13696
13696
|
return false;
|
|
13697
13697
|
}
|
|
13698
|
-
var
|
|
13699
|
-
return
|
|
13698
|
+
var prototype2 = Object.getPrototypeOf(val);
|
|
13699
|
+
return prototype2 === null || prototype2 === Object.prototype;
|
|
13700
13700
|
}
|
|
13701
13701
|
var isDate$2 = kindOfTest("Date");
|
|
13702
13702
|
var isFile = kindOfTest("File");
|
|
@@ -13775,8 +13775,8 @@ function stripBOM(content2) {
|
|
|
13775
13775
|
}
|
|
13776
13776
|
return content2;
|
|
13777
13777
|
}
|
|
13778
|
-
function inherits$W(constructor, superConstructor, props,
|
|
13779
|
-
constructor.prototype = Object.create(superConstructor.prototype,
|
|
13778
|
+
function inherits$W(constructor, superConstructor, props, descriptors2) {
|
|
13779
|
+
constructor.prototype = Object.create(superConstructor.prototype, descriptors2);
|
|
13780
13780
|
constructor.prototype.constructor = constructor;
|
|
13781
13781
|
props && Object.assign(constructor.prototype, props);
|
|
13782
13782
|
}
|
|
@@ -13824,7 +13824,7 @@ var isTypedArray$3 = /* @__PURE__ */ function(TypedArray2) {
|
|
|
13824
13824
|
return TypedArray2 && thing instanceof TypedArray2;
|
|
13825
13825
|
};
|
|
13826
13826
|
}(typeof Uint8Array !== "undefined" && Object.getPrototypeOf(Uint8Array));
|
|
13827
|
-
var utils$
|
|
13827
|
+
var utils$D = {
|
|
13828
13828
|
isArray: isArray$6,
|
|
13829
13829
|
isArrayBuffer,
|
|
13830
13830
|
isBuffer,
|
|
@@ -13856,7 +13856,7 @@ var utils$B = {
|
|
|
13856
13856
|
isTypedArray: isTypedArray$3,
|
|
13857
13857
|
isFileList
|
|
13858
13858
|
};
|
|
13859
|
-
var utils$
|
|
13859
|
+
var utils$C = utils$D;
|
|
13860
13860
|
function encode$2(val) {
|
|
13861
13861
|
return encodeURIComponent(val).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
|
|
13862
13862
|
}
|
|
@@ -13867,23 +13867,23 @@ var buildURL$1 = function buildURL2(url2, params, paramsSerializer) {
|
|
|
13867
13867
|
var serializedParams;
|
|
13868
13868
|
if (paramsSerializer) {
|
|
13869
13869
|
serializedParams = paramsSerializer(params);
|
|
13870
|
-
} else if (utils$
|
|
13870
|
+
} else if (utils$C.isURLSearchParams(params)) {
|
|
13871
13871
|
serializedParams = params.toString();
|
|
13872
13872
|
} else {
|
|
13873
13873
|
var parts = [];
|
|
13874
|
-
utils$
|
|
13874
|
+
utils$C.forEach(params, function serialize(val, key2) {
|
|
13875
13875
|
if (val === null || typeof val === "undefined") {
|
|
13876
13876
|
return;
|
|
13877
13877
|
}
|
|
13878
|
-
if (utils$
|
|
13878
|
+
if (utils$C.isArray(val)) {
|
|
13879
13879
|
key2 = key2 + "[]";
|
|
13880
13880
|
} else {
|
|
13881
13881
|
val = [val];
|
|
13882
13882
|
}
|
|
13883
|
-
utils$
|
|
13884
|
-
if (utils$
|
|
13883
|
+
utils$C.forEach(val, function parseValue(v2) {
|
|
13884
|
+
if (utils$C.isDate(v2)) {
|
|
13885
13885
|
v2 = v2.toISOString();
|
|
13886
|
-
} else if (utils$
|
|
13886
|
+
} else if (utils$C.isObject(v2)) {
|
|
13887
13887
|
v2 = JSON.stringify(v2);
|
|
13888
13888
|
}
|
|
13889
13889
|
parts.push(encode$2(key2) + "=" + encode$2(v2));
|
|
@@ -13900,7 +13900,7 @@ var buildURL$1 = function buildURL2(url2, params, paramsSerializer) {
|
|
|
13900
13900
|
}
|
|
13901
13901
|
return url2;
|
|
13902
13902
|
};
|
|
13903
|
-
var utils$
|
|
13903
|
+
var utils$B = utils$D;
|
|
13904
13904
|
function InterceptorManager$1() {
|
|
13905
13905
|
this.handlers = [];
|
|
13906
13906
|
}
|
|
@@ -13919,7 +13919,7 @@ InterceptorManager$1.prototype.eject = function eject(id2) {
|
|
|
13919
13919
|
}
|
|
13920
13920
|
};
|
|
13921
13921
|
InterceptorManager$1.prototype.forEach = function forEach2(fn7) {
|
|
13922
|
-
utils$
|
|
13922
|
+
utils$B.forEach(this.handlers, function forEachHandler(h) {
|
|
13923
13923
|
if (h !== null) {
|
|
13924
13924
|
fn7(h);
|
|
13925
13925
|
}
|
|
@@ -14088,83 +14088,76 @@ process.umask = function() {
|
|
|
14088
14088
|
};
|
|
14089
14089
|
var browserExports$1 = browser$i.exports;
|
|
14090
14090
|
const process$1 = /* @__PURE__ */ getDefaultExportFromCjs(browserExports$1);
|
|
14091
|
-
var utils$
|
|
14091
|
+
var utils$A = utils$D;
|
|
14092
14092
|
var normalizeHeaderName$1 = function normalizeHeaderName2(headers, normalizedName) {
|
|
14093
|
-
utils$
|
|
14093
|
+
utils$A.forEach(headers, function processHeader(value17, name) {
|
|
14094
14094
|
if (name !== normalizedName && name.toUpperCase() === normalizedName.toUpperCase()) {
|
|
14095
14095
|
headers[normalizedName] = value17;
|
|
14096
14096
|
delete headers[name];
|
|
14097
14097
|
}
|
|
14098
14098
|
});
|
|
14099
14099
|
};
|
|
14100
|
-
var
|
|
14101
|
-
|
|
14102
|
-
|
|
14103
|
-
|
|
14104
|
-
|
|
14105
|
-
|
|
14106
|
-
|
|
14107
|
-
|
|
14108
|
-
|
|
14109
|
-
|
|
14110
|
-
|
|
14111
|
-
|
|
14112
|
-
|
|
14113
|
-
|
|
14114
|
-
|
|
14115
|
-
|
|
14116
|
-
|
|
14117
|
-
|
|
14118
|
-
|
|
14119
|
-
|
|
14120
|
-
|
|
14121
|
-
|
|
14122
|
-
|
|
14123
|
-
|
|
14124
|
-
|
|
14125
|
-
|
|
14126
|
-
|
|
14127
|
-
|
|
14128
|
-
|
|
14129
|
-
|
|
14130
|
-
|
|
14131
|
-
|
|
14132
|
-
|
|
14133
|
-
|
|
14134
|
-
|
|
14135
|
-
|
|
14136
|
-
|
|
14137
|
-
|
|
14138
|
-
|
|
14139
|
-
|
|
14140
|
-
|
|
14141
|
-
|
|
14142
|
-
|
|
14143
|
-
|
|
14144
|
-
|
|
14145
|
-
|
|
14146
|
-
|
|
14147
|
-
|
|
14148
|
-
|
|
14149
|
-
|
|
14150
|
-
|
|
14151
|
-
|
|
14100
|
+
var utils$z = utils$D;
|
|
14101
|
+
function AxiosError$2(message, code3, config2, request2, response) {
|
|
14102
|
+
Error.call(this);
|
|
14103
|
+
this.message = message;
|
|
14104
|
+
this.name = "AxiosError";
|
|
14105
|
+
code3 && (this.code = code3);
|
|
14106
|
+
config2 && (this.config = config2);
|
|
14107
|
+
request2 && (this.request = request2);
|
|
14108
|
+
response && (this.response = response);
|
|
14109
|
+
}
|
|
14110
|
+
utils$z.inherits(AxiosError$2, Error, {
|
|
14111
|
+
toJSON: function toJSON() {
|
|
14112
|
+
return {
|
|
14113
|
+
// Standard
|
|
14114
|
+
message: this.message,
|
|
14115
|
+
name: this.name,
|
|
14116
|
+
// Microsoft
|
|
14117
|
+
description: this.description,
|
|
14118
|
+
number: this.number,
|
|
14119
|
+
// Mozilla
|
|
14120
|
+
fileName: this.fileName,
|
|
14121
|
+
lineNumber: this.lineNumber,
|
|
14122
|
+
columnNumber: this.columnNumber,
|
|
14123
|
+
stack: this.stack,
|
|
14124
|
+
// Axios
|
|
14125
|
+
config: this.config,
|
|
14126
|
+
code: this.code,
|
|
14127
|
+
status: this.response && this.response.status ? this.response.status : null
|
|
14128
|
+
};
|
|
14129
|
+
}
|
|
14130
|
+
});
|
|
14131
|
+
var prototype = AxiosError$2.prototype;
|
|
14132
|
+
var descriptors = {};
|
|
14133
|
+
[
|
|
14134
|
+
"ERR_BAD_OPTION_VALUE",
|
|
14135
|
+
"ERR_BAD_OPTION",
|
|
14136
|
+
"ECONNABORTED",
|
|
14137
|
+
"ETIMEDOUT",
|
|
14138
|
+
"ERR_NETWORK",
|
|
14139
|
+
"ERR_FR_TOO_MANY_REDIRECTS",
|
|
14140
|
+
"ERR_DEPRECATED",
|
|
14141
|
+
"ERR_BAD_RESPONSE",
|
|
14142
|
+
"ERR_BAD_REQUEST",
|
|
14143
|
+
"ERR_CANCELED"
|
|
14144
|
+
// eslint-disable-next-line func-names
|
|
14145
|
+
].forEach(function(code3) {
|
|
14146
|
+
descriptors[code3] = { value: code3 };
|
|
14147
|
+
});
|
|
14148
|
+
Object.defineProperties(AxiosError$2, descriptors);
|
|
14149
|
+
Object.defineProperty(prototype, "isAxiosError", { value: true });
|
|
14150
|
+
AxiosError$2.from = function(error3, code3, config2, request2, response, customProps) {
|
|
14151
|
+
var axiosError = Object.create(prototype);
|
|
14152
|
+
utils$z.toFlatObject(error3, axiosError, function filter2(obj) {
|
|
14153
|
+
return obj !== Error.prototype;
|
|
14152
14154
|
});
|
|
14153
|
-
|
|
14154
|
-
|
|
14155
|
-
|
|
14156
|
-
|
|
14157
|
-
|
|
14158
|
-
|
|
14159
|
-
});
|
|
14160
|
-
AxiosError2.call(axiosError, error3.message, code3, config2, request2, response);
|
|
14161
|
-
axiosError.name = error3.name;
|
|
14162
|
-
customProps && Object.assign(axiosError, customProps);
|
|
14163
|
-
return axiosError;
|
|
14164
|
-
};
|
|
14165
|
-
AxiosError_1 = AxiosError2;
|
|
14166
|
-
return AxiosError_1;
|
|
14167
|
-
}
|
|
14155
|
+
AxiosError$2.call(axiosError, error3.message, code3, config2, request2, response);
|
|
14156
|
+
axiosError.name = error3.name;
|
|
14157
|
+
customProps && Object.assign(axiosError, customProps);
|
|
14158
|
+
return axiosError;
|
|
14159
|
+
};
|
|
14160
|
+
var AxiosError_1 = AxiosError$2;
|
|
14168
14161
|
var transitional = {
|
|
14169
14162
|
silentJSONParsing: true,
|
|
14170
14163
|
forcedJSONParsing: true,
|
|
@@ -15042,7 +15035,7 @@ ieee754.write = function(buffer2, value17, offset3, isLE, mLen, nBytes) {
|
|
|
15042
15035
|
}
|
|
15043
15036
|
}
|
|
15044
15037
|
};
|
|
15045
|
-
Buffer2.prototype.toJSON = function
|
|
15038
|
+
Buffer2.prototype.toJSON = function toJSON3() {
|
|
15046
15039
|
return {
|
|
15047
15040
|
type: "Buffer",
|
|
15048
15041
|
data: Array.prototype.slice.call(this._arr || this, 0)
|
|
@@ -15974,64 +15967,57 @@ const dist$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProper
|
|
|
15974
15967
|
resolveObjectURL,
|
|
15975
15968
|
transcode
|
|
15976
15969
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
15977
|
-
var
|
|
15978
|
-
|
|
15979
|
-
|
|
15980
|
-
|
|
15981
|
-
|
|
15982
|
-
|
|
15983
|
-
|
|
15984
|
-
|
|
15985
|
-
var stack = [];
|
|
15986
|
-
function convertValue(value17) {
|
|
15987
|
-
if (value17 === null) return "";
|
|
15988
|
-
if (utils2.isDate(value17)) {
|
|
15989
|
-
return value17.toISOString();
|
|
15990
|
-
}
|
|
15991
|
-
if (utils2.isArrayBuffer(value17) || utils2.isTypedArray(value17)) {
|
|
15992
|
-
return typeof Blob === "function" ? new Blob([value17]) : Buffer$F.from(value17);
|
|
15993
|
-
}
|
|
15994
|
-
return value17;
|
|
15970
|
+
var utils$y = utils$D;
|
|
15971
|
+
function toFormData$1(obj, formData) {
|
|
15972
|
+
formData = formData || new FormData();
|
|
15973
|
+
var stack = [];
|
|
15974
|
+
function convertValue(value17) {
|
|
15975
|
+
if (value17 === null) return "";
|
|
15976
|
+
if (utils$y.isDate(value17)) {
|
|
15977
|
+
return value17.toISOString();
|
|
15995
15978
|
}
|
|
15996
|
-
|
|
15997
|
-
|
|
15998
|
-
|
|
15999
|
-
|
|
16000
|
-
|
|
16001
|
-
|
|
16002
|
-
|
|
16003
|
-
|
|
16004
|
-
|
|
16005
|
-
|
|
16006
|
-
|
|
16007
|
-
|
|
16008
|
-
|
|
16009
|
-
|
|
16010
|
-
|
|
16011
|
-
|
|
16012
|
-
|
|
16013
|
-
|
|
16014
|
-
|
|
15979
|
+
if (utils$y.isArrayBuffer(value17) || utils$y.isTypedArray(value17)) {
|
|
15980
|
+
return typeof Blob === "function" ? new Blob([value17]) : Buffer$F.from(value17);
|
|
15981
|
+
}
|
|
15982
|
+
return value17;
|
|
15983
|
+
}
|
|
15984
|
+
function build(data50, parentKey) {
|
|
15985
|
+
if (utils$y.isPlainObject(data50) || utils$y.isArray(data50)) {
|
|
15986
|
+
if (stack.indexOf(data50) !== -1) {
|
|
15987
|
+
throw Error("Circular reference detected in " + parentKey);
|
|
15988
|
+
}
|
|
15989
|
+
stack.push(data50);
|
|
15990
|
+
utils$y.forEach(data50, function each2(value17, key2) {
|
|
15991
|
+
if (utils$y.isUndefined(value17)) return;
|
|
15992
|
+
var fullKey = parentKey ? parentKey + "." + key2 : key2;
|
|
15993
|
+
var arr;
|
|
15994
|
+
if (value17 && !parentKey && typeof value17 === "object") {
|
|
15995
|
+
if (utils$y.endsWith(key2, "{}")) {
|
|
15996
|
+
value17 = JSON.stringify(value17);
|
|
15997
|
+
} else if (utils$y.endsWith(key2, "[]") && (arr = utils$y.toArray(value17))) {
|
|
15998
|
+
arr.forEach(function(el) {
|
|
15999
|
+
!utils$y.isUndefined(el) && formData.append(fullKey, convertValue(el));
|
|
16000
|
+
});
|
|
16001
|
+
return;
|
|
16015
16002
|
}
|
|
16016
|
-
|
|
16017
|
-
|
|
16018
|
-
|
|
16019
|
-
|
|
16020
|
-
|
|
16021
|
-
|
|
16003
|
+
}
|
|
16004
|
+
build(value17, fullKey);
|
|
16005
|
+
});
|
|
16006
|
+
stack.pop();
|
|
16007
|
+
} else {
|
|
16008
|
+
formData.append(parentKey, convertValue(data50));
|
|
16022
16009
|
}
|
|
16023
|
-
build(obj);
|
|
16024
|
-
return formData;
|
|
16025
16010
|
}
|
|
16026
|
-
|
|
16027
|
-
return
|
|
16011
|
+
build(obj);
|
|
16012
|
+
return formData;
|
|
16028
16013
|
}
|
|
16014
|
+
var toFormData_1 = toFormData$1;
|
|
16029
16015
|
var settle;
|
|
16030
16016
|
var hasRequiredSettle;
|
|
16031
16017
|
function requireSettle() {
|
|
16032
16018
|
if (hasRequiredSettle) return settle;
|
|
16033
16019
|
hasRequiredSettle = 1;
|
|
16034
|
-
var AxiosError2 =
|
|
16020
|
+
var AxiosError2 = AxiosError_1;
|
|
16035
16021
|
settle = function settle2(resolve2, reject, response) {
|
|
16036
16022
|
var validateStatus2 = response.config.validateStatus;
|
|
16037
16023
|
if (!response.status || !validateStatus2 || validateStatus2(response.status)) {
|
|
@@ -16053,7 +16039,7 @@ var hasRequiredCookies;
|
|
|
16053
16039
|
function requireCookies() {
|
|
16054
16040
|
if (hasRequiredCookies) return cookies;
|
|
16055
16041
|
hasRequiredCookies = 1;
|
|
16056
|
-
var utils2 = utils$
|
|
16042
|
+
var utils2 = utils$D;
|
|
16057
16043
|
cookies = utils2.isStandardBrowserEnv() ? (
|
|
16058
16044
|
// Standard browser envs support document.cookie
|
|
16059
16045
|
/* @__PURE__ */ function standardBrowserEnv() {
|
|
@@ -16119,7 +16105,7 @@ var hasRequiredParseHeaders;
|
|
|
16119
16105
|
function requireParseHeaders() {
|
|
16120
16106
|
if (hasRequiredParseHeaders) return parseHeaders;
|
|
16121
16107
|
hasRequiredParseHeaders = 1;
|
|
16122
|
-
var utils2 = utils$
|
|
16108
|
+
var utils2 = utils$D;
|
|
16123
16109
|
var ignoreDuplicateOf = [
|
|
16124
16110
|
"age",
|
|
16125
16111
|
"authorization",
|
|
@@ -16171,7 +16157,7 @@ var hasRequiredIsURLSameOrigin;
|
|
|
16171
16157
|
function requireIsURLSameOrigin() {
|
|
16172
16158
|
if (hasRequiredIsURLSameOrigin) return isURLSameOrigin;
|
|
16173
16159
|
hasRequiredIsURLSameOrigin = 1;
|
|
16174
|
-
var utils2 = utils$
|
|
16160
|
+
var utils2 = utils$D;
|
|
16175
16161
|
isURLSameOrigin = utils2.isStandardBrowserEnv() ? (
|
|
16176
16162
|
// Standard browser envs have full support of the APIs needed to test
|
|
16177
16163
|
// whether the request URL is of the same origin as current location.
|
|
@@ -16218,8 +16204,8 @@ var hasRequiredCanceledError;
|
|
|
16218
16204
|
function requireCanceledError() {
|
|
16219
16205
|
if (hasRequiredCanceledError) return CanceledError_1;
|
|
16220
16206
|
hasRequiredCanceledError = 1;
|
|
16221
|
-
var AxiosError2 =
|
|
16222
|
-
var utils2 = utils$
|
|
16207
|
+
var AxiosError2 = AxiosError_1;
|
|
16208
|
+
var utils2 = utils$D;
|
|
16223
16209
|
function CanceledError2(message) {
|
|
16224
16210
|
AxiosError2.call(this, message == null ? "canceled" : message, AxiosError2.ERR_CANCELED);
|
|
16225
16211
|
this.name = "CanceledError";
|
|
@@ -16246,7 +16232,7 @@ var hasRequiredXhr;
|
|
|
16246
16232
|
function requireXhr() {
|
|
16247
16233
|
if (hasRequiredXhr) return xhr$1;
|
|
16248
16234
|
hasRequiredXhr = 1;
|
|
16249
|
-
var utils2 = utils$
|
|
16235
|
+
var utils2 = utils$D;
|
|
16250
16236
|
var settle2 = requireSettle();
|
|
16251
16237
|
var cookies2 = requireCookies();
|
|
16252
16238
|
var buildURL3 = buildURL$1;
|
|
@@ -16254,7 +16240,7 @@ function requireXhr() {
|
|
|
16254
16240
|
var parseHeaders2 = requireParseHeaders();
|
|
16255
16241
|
var isURLSameOrigin2 = requireIsURLSameOrigin();
|
|
16256
16242
|
var transitionalDefaults2 = transitional;
|
|
16257
|
-
var AxiosError2 =
|
|
16243
|
+
var AxiosError2 = AxiosError_1;
|
|
16258
16244
|
var CanceledError2 = requireCanceledError();
|
|
16259
16245
|
var parseProtocol2 = requireParseProtocol();
|
|
16260
16246
|
xhr$1 = function xhrAdapter(config2) {
|
|
@@ -16406,11 +16392,11 @@ function require_null() {
|
|
|
16406
16392
|
_null = null;
|
|
16407
16393
|
return _null;
|
|
16408
16394
|
}
|
|
16409
|
-
var utils$x = utils$
|
|
16395
|
+
var utils$x = utils$D;
|
|
16410
16396
|
var normalizeHeaderName = normalizeHeaderName$1;
|
|
16411
|
-
var AxiosError$1 =
|
|
16397
|
+
var AxiosError$1 = AxiosError_1;
|
|
16412
16398
|
var transitionalDefaults = transitional;
|
|
16413
|
-
var toFormData =
|
|
16399
|
+
var toFormData = toFormData_1;
|
|
16414
16400
|
var DEFAULT_CONTENT_TYPE = {
|
|
16415
16401
|
"Content-Type": "application/x-www-form-urlencoded"
|
|
16416
16402
|
};
|
|
@@ -16516,7 +16502,7 @@ utils$x.forEach(["post", "put", "patch"], function forEachMethodWithData(method)
|
|
|
16516
16502
|
defaults$4.headers[method] = utils$x.merge(DEFAULT_CONTENT_TYPE);
|
|
16517
16503
|
});
|
|
16518
16504
|
var defaults_1 = defaults$4;
|
|
16519
|
-
var utils$w = utils$
|
|
16505
|
+
var utils$w = utils$D;
|
|
16520
16506
|
var defaults$3 = defaults_1;
|
|
16521
16507
|
var transformData$1 = function transformData2(data50, headers, fns) {
|
|
16522
16508
|
var context2 = this || defaults$3;
|
|
@@ -16535,7 +16521,7 @@ function requireIsCancel() {
|
|
|
16535
16521
|
};
|
|
16536
16522
|
return isCancel$1;
|
|
16537
16523
|
}
|
|
16538
|
-
var utils$v = utils$
|
|
16524
|
+
var utils$v = utils$D;
|
|
16539
16525
|
var transformData = transformData$1;
|
|
16540
16526
|
var isCancel = requireIsCancel();
|
|
16541
16527
|
var defaults$2 = defaults_1;
|
|
@@ -16593,7 +16579,7 @@ var dispatchRequest$1 = function dispatchRequest2(config2) {
|
|
|
16593
16579
|
return Promise.reject(reason);
|
|
16594
16580
|
});
|
|
16595
16581
|
};
|
|
16596
|
-
var utils$u = utils$
|
|
16582
|
+
var utils$u = utils$D;
|
|
16597
16583
|
var mergeConfig$2 = function mergeConfig2(config1, config2) {
|
|
16598
16584
|
config2 = config2 || {};
|
|
16599
16585
|
var config3 = {};
|
|
@@ -16681,7 +16667,7 @@ function requireData() {
|
|
|
16681
16667
|
return data;
|
|
16682
16668
|
}
|
|
16683
16669
|
var VERSION = requireData().version;
|
|
16684
|
-
var AxiosError =
|
|
16670
|
+
var AxiosError = AxiosError_1;
|
|
16685
16671
|
var validators$1 = {};
|
|
16686
16672
|
["object", "boolean", "number", "function", "string", "symbol"].forEach(function(type3, i2) {
|
|
16687
16673
|
validators$1[type3] = function validator4(thing) {
|
|
@@ -16738,7 +16724,7 @@ var validator$1 = {
|
|
|
16738
16724
|
assertOptions,
|
|
16739
16725
|
validators: validators$1
|
|
16740
16726
|
};
|
|
16741
|
-
var utils$t = utils$
|
|
16727
|
+
var utils$t = utils$D;
|
|
16742
16728
|
var buildURL = buildURL$1;
|
|
16743
16729
|
var InterceptorManager = InterceptorManager_1;
|
|
16744
16730
|
var dispatchRequest = dispatchRequest$1;
|
|
@@ -16950,13 +16936,13 @@ var hasRequiredIsAxiosError;
|
|
|
16950
16936
|
function requireIsAxiosError() {
|
|
16951
16937
|
if (hasRequiredIsAxiosError) return isAxiosError;
|
|
16952
16938
|
hasRequiredIsAxiosError = 1;
|
|
16953
|
-
var utils2 = utils$
|
|
16939
|
+
var utils2 = utils$D;
|
|
16954
16940
|
isAxiosError = function isAxiosError2(payload) {
|
|
16955
16941
|
return utils2.isObject(payload) && payload.isAxiosError === true;
|
|
16956
16942
|
};
|
|
16957
16943
|
return isAxiosError;
|
|
16958
16944
|
}
|
|
16959
|
-
var utils$s = utils$
|
|
16945
|
+
var utils$s = utils$D;
|
|
16960
16946
|
var bind$5 = bind$7;
|
|
16961
16947
|
var Axios = Axios_1;
|
|
16962
16948
|
var mergeConfig = mergeConfig$2;
|
|
@@ -16977,8 +16963,8 @@ axios$3.CanceledError = requireCanceledError();
|
|
|
16977
16963
|
axios$3.CancelToken = requireCancelToken();
|
|
16978
16964
|
axios$3.isCancel = requireIsCancel();
|
|
16979
16965
|
axios$3.VERSION = requireData().version;
|
|
16980
|
-
axios$3.toFormData =
|
|
16981
|
-
axios$3.AxiosError =
|
|
16966
|
+
axios$3.toFormData = toFormData_1;
|
|
16967
|
+
axios$3.AxiosError = AxiosError_1;
|
|
16982
16968
|
axios$3.Cancel = axios$3.CanceledError;
|
|
16983
16969
|
axios$3.all = function all(promises) {
|
|
16984
16970
|
return Promise.all(promises);
|
|
@@ -17574,7 +17560,7 @@ bn$6.exports;
|
|
|
17574
17560
|
}
|
|
17575
17561
|
return this.negative !== 0 ? -ret : ret;
|
|
17576
17562
|
};
|
|
17577
|
-
BN2.prototype.toJSON = function
|
|
17563
|
+
BN2.prototype.toJSON = function toJSON3() {
|
|
17578
17564
|
return this.toString(16, 2);
|
|
17579
17565
|
};
|
|
17580
17566
|
if (Buffer2) {
|
|
@@ -26400,11 +26386,11 @@ var isBufferBrowser = function isBuffer2(arg) {
|
|
|
26400
26386
|
var define_process_env_default2 = {};
|
|
26401
26387
|
var getOwnPropertyDescriptors = Object.getOwnPropertyDescriptors || function getOwnPropertyDescriptors2(obj) {
|
|
26402
26388
|
var keys3 = Object.keys(obj);
|
|
26403
|
-
var
|
|
26389
|
+
var descriptors2 = {};
|
|
26404
26390
|
for (var i2 = 0; i2 < keys3.length; i2++) {
|
|
26405
|
-
|
|
26391
|
+
descriptors2[keys3[i2]] = Object.getOwnPropertyDescriptor(obj, keys3[i2]);
|
|
26406
26392
|
}
|
|
26407
|
-
return
|
|
26393
|
+
return descriptors2;
|
|
26408
26394
|
};
|
|
26409
26395
|
var formatRegExp = /%[sdj%]/g;
|
|
26410
26396
|
exports$12.format = function(f2) {
|
|
@@ -36017,7 +36003,7 @@ bn$5.exports;
|
|
|
36017
36003
|
}
|
|
36018
36004
|
return this.negative !== 0 ? -ret : ret;
|
|
36019
36005
|
};
|
|
36020
|
-
BN2.prototype.toJSON = function
|
|
36006
|
+
BN2.prototype.toJSON = function toJSON3() {
|
|
36021
36007
|
return this.toString(16);
|
|
36022
36008
|
};
|
|
36023
36009
|
BN2.prototype.toBuffer = function toBuffer3(endian, length) {
|
|
@@ -38826,7 +38812,7 @@ bn$4.exports;
|
|
|
38826
38812
|
}
|
|
38827
38813
|
return this.negative !== 0 ? -ret : ret;
|
|
38828
38814
|
};
|
|
38829
|
-
BN2.prototype.toJSON = function
|
|
38815
|
+
BN2.prototype.toJSON = function toJSON3() {
|
|
38830
38816
|
return this.toString(16);
|
|
38831
38817
|
};
|
|
38832
38818
|
BN2.prototype.toBuffer = function toBuffer3(endian, length) {
|
|
@@ -43666,7 +43652,7 @@ bn$3.exports;
|
|
|
43666
43652
|
}
|
|
43667
43653
|
return this.negative !== 0 ? -ret : ret;
|
|
43668
43654
|
};
|
|
43669
|
-
BN2.prototype.toJSON = function
|
|
43655
|
+
BN2.prototype.toJSON = function toJSON3() {
|
|
43670
43656
|
return this.toString(16);
|
|
43671
43657
|
};
|
|
43672
43658
|
BN2.prototype.toBuffer = function toBuffer3(endian, length) {
|
|
@@ -46712,7 +46698,7 @@ Point$3.prototype._getBeta = function _getBeta2() {
|
|
|
46712
46698
|
}
|
|
46713
46699
|
return beta;
|
|
46714
46700
|
};
|
|
46715
|
-
Point$3.prototype.toJSON = function
|
|
46701
|
+
Point$3.prototype.toJSON = function toJSON2() {
|
|
46716
46702
|
if (!this.precomputed)
|
|
46717
46703
|
return [this.x, this.y];
|
|
46718
46704
|
return [this.x, this.y, this.precomputed && {
|
|
@@ -49752,7 +49738,7 @@ bn$2.exports;
|
|
|
49752
49738
|
}
|
|
49753
49739
|
return this.negative !== 0 ? -ret : ret;
|
|
49754
49740
|
};
|
|
49755
|
-
BN2.prototype.toJSON = function
|
|
49741
|
+
BN2.prototype.toJSON = function toJSON3() {
|
|
49756
49742
|
return this.toString(16);
|
|
49757
49743
|
};
|
|
49758
49744
|
BN2.prototype.toBuffer = function toBuffer3(endian, length) {
|
|
@@ -54853,7 +54839,7 @@ bn$1.exports;
|
|
|
54853
54839
|
}
|
|
54854
54840
|
return this.negative !== 0 ? -ret : ret;
|
|
54855
54841
|
};
|
|
54856
|
-
BN2.prototype.toJSON = function
|
|
54842
|
+
BN2.prototype.toJSON = function toJSON3() {
|
|
54857
54843
|
return this.toString(16);
|
|
54858
54844
|
};
|
|
54859
54845
|
BN2.prototype.toBuffer = function toBuffer3(endian, length) {
|
|
@@ -57807,7 +57793,7 @@ bn.exports;
|
|
|
57807
57793
|
}
|
|
57808
57794
|
return this.negative !== 0 ? -ret : ret;
|
|
57809
57795
|
};
|
|
57810
|
-
BN2.prototype.toJSON = function
|
|
57796
|
+
BN2.prototype.toJSON = function toJSON3() {
|
|
57811
57797
|
return this.toString(16);
|
|
57812
57798
|
};
|
|
57813
57799
|
BN2.prototype.toBuffer = function toBuffer3(endian, length) {
|
|
@@ -66953,14 +66939,14 @@ Selection$1.prototype = selection.prototype = {
|
|
|
66953
66939
|
function select(selector2) {
|
|
66954
66940
|
return typeof selector2 === "string" ? new Selection$1([[document.querySelector(selector2)]], [document.documentElement]) : new Selection$1([[selector2]], root$3);
|
|
66955
66941
|
}
|
|
66956
|
-
function define(constructor, factory,
|
|
66957
|
-
constructor.prototype = factory.prototype =
|
|
66958
|
-
|
|
66942
|
+
function define(constructor, factory, prototype2) {
|
|
66943
|
+
constructor.prototype = factory.prototype = prototype2;
|
|
66944
|
+
prototype2.constructor = constructor;
|
|
66959
66945
|
}
|
|
66960
66946
|
function extend$1(parent2, definition) {
|
|
66961
|
-
var
|
|
66962
|
-
for (var key2 in definition)
|
|
66963
|
-
return
|
|
66947
|
+
var prototype2 = Object.create(parent2.prototype);
|
|
66948
|
+
for (var key2 in definition) prototype2[key2] = definition[key2];
|
|
66949
|
+
return prototype2;
|
|
66964
66950
|
}
|
|
66965
66951
|
function Color() {
|
|
66966
66952
|
}
|