@vtj/utils 0.11.5 → 0.11.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +7 -7
- package/dist/index.iife.js +26 -26
- package/dist/index.mjs +494 -426
- package/dist/index.umd.js +26 -26
- package/package.json +1 -1
- package/types/client.d.ts +8 -0
- package/types/index.d.ts +1 -0
- package/types/version.d.ts +2 -2
package/dist/index.mjs
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
var on = Object.defineProperty;
|
2
2
|
var an = (e, t, n) => t in e ? on(e, t, { enumerable: !0, configurable: !0, writable: !0, value: n }) : e[t] = n;
|
3
3
|
var P = (e, t, n) => an(e, typeof t != "symbol" ? t + "" : t, n);
|
4
|
-
import { omit as Oe, merge as G, debounce as cn, throttle as
|
4
|
+
import { omit as Oe, merge as G, debounce as cn, throttle as ln, isUrl as un, pathToRegexpCompile as fn, uuid as dn, rURL as hn, template as pn } from "@vtj/base";
|
5
5
|
export * from "@vtj/base";
|
6
6
|
(function() {
|
7
7
|
if (typeof window > "u" || typeof EventTarget > "u")
|
@@ -15,10 +15,10 @@ export * from "@vtj/base";
|
|
15
15
|
* Copyright (c) 2025, VTJ.PRO All rights reserved.
|
16
16
|
* @name @vtj/utils
|
17
17
|
* @author CHC chenhuachun1549@dingtalk.com
|
18
|
-
* @version 0.11.
|
18
|
+
* @version 0.11.7
|
19
19
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
20
20
|
*/
|
21
|
-
const Xs = "0.11.
|
21
|
+
const Xs = "0.11.7";
|
22
22
|
/**
|
23
23
|
* @vue/shared v3.5.13
|
24
24
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
@@ -31,7 +31,7 @@ function mn(e) {
|
|
31
31
|
for (const n of e.split(",")) t[n] = 1;
|
32
32
|
return (n) => n in t;
|
33
33
|
}
|
34
|
-
const gn = Object.assign, wn = Object.prototype.hasOwnProperty, Ne = (e, t) => wn.call(e, t), J = Array.isArray,
|
34
|
+
const gn = Object.assign, wn = Object.prototype.hasOwnProperty, Ne = (e, t) => wn.call(e, t), J = Array.isArray, ue = (e) => bt(e) === "[object Map]", yn = (e) => typeof e == "string", re = (e) => typeof e == "symbol", we = (e) => e !== null && typeof e == "object", bn = Object.prototype.toString, bt = (e) => bn.call(e), Rn = (e) => bt(e).slice(8, -1), ze = (e) => yn(e) && e !== "NaN" && e[0] !== "-" && "" + parseInt(e, 10) === e, Z = (e, t) => !Object.is(e, t);
|
35
35
|
var En = { ENV_TYPE: "local", NODE_ENV: "production" };
|
36
36
|
let Sn, Rt = 0, Te;
|
37
37
|
function Ke() {
|
@@ -85,47 +85,47 @@ class St {
|
|
85
85
|
}
|
86
86
|
}
|
87
87
|
}
|
88
|
-
const
|
88
|
+
const Ue = /* @__PURE__ */ new WeakMap(), k = Symbol(
|
89
89
|
""
|
90
|
-
),
|
90
|
+
), Fe = Symbol(
|
91
91
|
""
|
92
92
|
), ee = Symbol(
|
93
93
|
""
|
94
94
|
);
|
95
95
|
function A(e, t, n) {
|
96
96
|
if (pe && Sn) {
|
97
|
-
let r =
|
98
|
-
r ||
|
97
|
+
let r = Ue.get(e);
|
98
|
+
r || Ue.set(e, r = /* @__PURE__ */ new Map());
|
99
99
|
let s = r.get(n);
|
100
100
|
s || (r.set(n, s = new St()), s.map = r, s.key = n), s.track();
|
101
101
|
}
|
102
102
|
}
|
103
103
|
function D(e, t, n, r, s, o) {
|
104
|
-
const i =
|
104
|
+
const i = Ue.get(e);
|
105
105
|
if (!i)
|
106
106
|
return;
|
107
|
-
const a = (
|
108
|
-
|
107
|
+
const a = (u) => {
|
108
|
+
u && u.trigger();
|
109
109
|
};
|
110
110
|
if (Ke(), t === "clear")
|
111
111
|
i.forEach(a);
|
112
112
|
else {
|
113
|
-
const
|
114
|
-
if (
|
115
|
-
const
|
113
|
+
const u = J(e), c = u && ze(n);
|
114
|
+
if (u && n === "length") {
|
115
|
+
const f = Number(r);
|
116
116
|
i.forEach((d, m) => {
|
117
|
-
(m === "length" || m === ee || !re(m) && m >=
|
117
|
+
(m === "length" || m === ee || !re(m) && m >= f) && a(d);
|
118
118
|
});
|
119
119
|
} else
|
120
120
|
switch ((n !== void 0 || i.has(void 0)) && a(i.get(n)), c && a(i.get(ee)), t) {
|
121
121
|
case "add":
|
122
|
-
|
122
|
+
u ? c && a(i.get("length")) : (a(i.get(k)), ue(e) && a(i.get(Fe)));
|
123
123
|
break;
|
124
124
|
case "delete":
|
125
|
-
|
125
|
+
u || (a(i.get(k)), ue(e) && a(i.get(Fe)));
|
126
126
|
break;
|
127
127
|
case "set":
|
128
|
-
|
128
|
+
ue(e) && a(i.get(k));
|
129
129
|
break;
|
130
130
|
}
|
131
131
|
}
|
@@ -152,26 +152,26 @@ const Tn = {
|
|
152
152
|
return xe(this, "entries", (e) => (e[1] = x(e[1]), e));
|
153
153
|
},
|
154
154
|
every(e, t) {
|
155
|
-
return
|
155
|
+
return U(this, "every", e, t, void 0, arguments);
|
156
156
|
},
|
157
157
|
filter(e, t) {
|
158
|
-
return
|
158
|
+
return U(this, "filter", e, t, (n) => n.map(x), arguments);
|
159
159
|
},
|
160
160
|
find(e, t) {
|
161
|
-
return
|
161
|
+
return U(this, "find", e, t, x, arguments);
|
162
162
|
},
|
163
163
|
findIndex(e, t) {
|
164
|
-
return
|
164
|
+
return U(this, "findIndex", e, t, void 0, arguments);
|
165
165
|
},
|
166
166
|
findLast(e, t) {
|
167
|
-
return
|
167
|
+
return U(this, "findLast", e, t, x, arguments);
|
168
168
|
},
|
169
169
|
findLastIndex(e, t) {
|
170
|
-
return
|
170
|
+
return U(this, "findLastIndex", e, t, void 0, arguments);
|
171
171
|
},
|
172
172
|
// flat, flatMap could benefit from ARRAY_ITERATE but are not straight-forward to implement
|
173
173
|
forEach(e, t) {
|
174
|
-
return
|
174
|
+
return U(this, "forEach", e, t, void 0, arguments);
|
175
175
|
},
|
176
176
|
includes(...e) {
|
177
177
|
return Ae(this, "includes", e);
|
@@ -187,7 +187,7 @@ const Tn = {
|
|
187
187
|
return Ae(this, "lastIndexOf", e);
|
188
188
|
},
|
189
189
|
map(e, t) {
|
190
|
-
return
|
190
|
+
return U(this, "map", e, t, void 0, arguments);
|
191
191
|
},
|
192
192
|
pop() {
|
193
193
|
return X(this, "pop");
|
@@ -206,7 +206,7 @@ const Tn = {
|
|
206
206
|
},
|
207
207
|
// slice could use ARRAY_ITERATE but also seems to beg for range tracking
|
208
208
|
some(e, t) {
|
209
|
-
return
|
209
|
+
return U(this, "some", e, t, void 0, arguments);
|
210
210
|
},
|
211
211
|
splice(...e) {
|
212
212
|
return X(this, "splice", e);
|
@@ -235,10 +235,10 @@ function xe(e, t, n) {
|
|
235
235
|
}), s;
|
236
236
|
}
|
237
237
|
const xn = Array.prototype;
|
238
|
-
function
|
239
|
-
const i = Xe(e), a = i !== e && !B(e),
|
240
|
-
if (
|
241
|
-
const d =
|
238
|
+
function U(e, t, n, r, s, o) {
|
239
|
+
const i = Xe(e), a = i !== e && !B(e), u = i[t];
|
240
|
+
if (u !== xn[t]) {
|
241
|
+
const d = u.apply(e, o);
|
242
242
|
return a ? x(d) : d;
|
243
243
|
}
|
244
244
|
let c = n;
|
@@ -247,16 +247,16 @@ function F(e, t, n, r, s, o) {
|
|
247
247
|
} : n.length > 2 && (c = function(d, m) {
|
248
248
|
return n.call(this, d, m, e);
|
249
249
|
}));
|
250
|
-
const
|
251
|
-
return a && s ? s(
|
250
|
+
const f = u.call(i, c, r);
|
251
|
+
return a && s ? s(f) : f;
|
252
252
|
}
|
253
253
|
function tt(e, t, n, r) {
|
254
254
|
const s = Xe(e);
|
255
255
|
let o = n;
|
256
|
-
return s !== e && (B(e) ? n.length > 3 && (o = function(i, a,
|
257
|
-
return n.call(this, i, a,
|
258
|
-
}) : o = function(i, a,
|
259
|
-
return n.call(this, i, x(a),
|
256
|
+
return s !== e && (B(e) ? n.length > 3 && (o = function(i, a, u) {
|
257
|
+
return n.call(this, i, a, u, e);
|
258
|
+
}) : o = function(i, a, u) {
|
259
|
+
return n.call(this, i, x(a), u, e);
|
260
260
|
}), s[t](o, ...r);
|
261
261
|
}
|
262
262
|
function Ae(e, t, n) {
|
@@ -292,14 +292,14 @@ class Ot {
|
|
292
292
|
if (n === "__v_isShallow")
|
293
293
|
return o;
|
294
294
|
if (n === "__v_raw")
|
295
|
-
return r === (s ? o ?
|
295
|
+
return r === (s ? o ? Mn : At : o ? Bn : xt).get(t) || // receiver is not the reactive proxy, but has the same prototype
|
296
296
|
// this means the receiver is a user proxy of the reactive proxy
|
297
297
|
Object.getPrototypeOf(t) === Object.getPrototypeOf(r) ? t : void 0;
|
298
298
|
const i = J(t);
|
299
299
|
if (!s) {
|
300
|
-
let
|
301
|
-
if (i && (
|
302
|
-
return
|
300
|
+
let u;
|
301
|
+
if (i && (u = Tn[n]))
|
302
|
+
return u;
|
303
303
|
if (n === "hasOwnProperty")
|
304
304
|
return Cn;
|
305
305
|
}
|
@@ -309,9 +309,9 @@ class Ot {
|
|
309
309
|
// if this is a proxy wrapping a ref, return methods using the raw ref
|
310
310
|
// as receiver so that we don't have to call `toRaw` on the ref in all
|
311
311
|
// its class methods
|
312
|
-
|
312
|
+
W(t) ? t : r
|
313
313
|
);
|
314
|
-
return (re(n) ? _t.has(n) : An(n)) || (s || A(t, "get", n), o) ? a :
|
314
|
+
return (re(n) ? _t.has(n) : An(n)) || (s || A(t, "get", n), o) ? a : W(a) ? i && ze(n) ? a : a.value : we(a) ? s ? Pt(a) : Ct(a) : a;
|
315
315
|
}
|
316
316
|
}
|
317
317
|
class Pn extends Ot {
|
@@ -321,15 +321,15 @@ class Pn extends Ot {
|
|
321
321
|
set(t, n, r, s) {
|
322
322
|
let o = t[n];
|
323
323
|
if (!this._isShallow) {
|
324
|
-
const
|
325
|
-
if (!B(r) && !
|
326
|
-
return
|
324
|
+
const u = z(o);
|
325
|
+
if (!B(r) && !z(r) && (o = R(o), r = R(r)), !J(t) && W(o) && !W(r))
|
326
|
+
return u ? !1 : (o.value = r, !0);
|
327
327
|
}
|
328
|
-
const i = J(t) &&
|
328
|
+
const i = J(t) && ze(n) ? Number(n) < t.length : Ne(t, n), a = Reflect.set(
|
329
329
|
t,
|
330
330
|
n,
|
331
331
|
r,
|
332
|
-
|
332
|
+
W(t) ? t : s
|
333
333
|
);
|
334
334
|
return t === R(s) && (i ? Z(r, o) && D(t, "set", n, r) : D(t, "add", n, r)), a;
|
335
335
|
}
|
@@ -347,11 +347,11 @@ class Pn extends Ot {
|
|
347
347
|
return A(
|
348
348
|
t,
|
349
349
|
"iterate",
|
350
|
-
J(t) ? "length" :
|
350
|
+
J(t) ? "length" : k
|
351
351
|
), Reflect.ownKeys(t);
|
352
352
|
}
|
353
353
|
}
|
354
|
-
class
|
354
|
+
class vn extends Ot {
|
355
355
|
constructor(t = !1) {
|
356
356
|
super(!0, t);
|
357
357
|
}
|
@@ -362,20 +362,20 @@ class jn extends Ot {
|
|
362
362
|
return !0;
|
363
363
|
}
|
364
364
|
}
|
365
|
-
const
|
365
|
+
const jn = /* @__PURE__ */ new Pn(), Ln = /* @__PURE__ */ new vn(), De = (e) => e, ae = (e) => Reflect.getPrototypeOf(e);
|
366
366
|
function Nn(e, t, n) {
|
367
367
|
return function(...r) {
|
368
|
-
const s = this.__v_raw, o = R(s), i =
|
368
|
+
const s = this.__v_raw, o = R(s), i = ue(o), a = e === "entries" || e === Symbol.iterator && i, u = e === "keys" && i, c = s[e](...r), f = n ? De : t ? Be : x;
|
369
369
|
return !t && A(
|
370
370
|
o,
|
371
371
|
"iterate",
|
372
|
-
|
372
|
+
u ? Fe : k
|
373
373
|
), {
|
374
374
|
// iterator protocol
|
375
375
|
next() {
|
376
376
|
const { value: d, done: m } = c.next();
|
377
377
|
return m ? { value: d, done: m } : {
|
378
|
-
value: a ? [
|
378
|
+
value: a ? [f(d[0]), f(d[1])] : f(d),
|
379
379
|
done: m
|
380
380
|
};
|
381
381
|
},
|
@@ -391,29 +391,29 @@ function ce(e) {
|
|
391
391
|
return e === "delete" ? !1 : e === "clear" ? void 0 : this;
|
392
392
|
};
|
393
393
|
}
|
394
|
-
function
|
394
|
+
function Un(e, t) {
|
395
395
|
const n = {
|
396
396
|
get(s) {
|
397
397
|
const o = this.__v_raw, i = R(o), a = R(s);
|
398
398
|
e || (Z(s, a) && A(i, "get", s), A(i, "get", a));
|
399
|
-
const { has:
|
400
|
-
if (
|
399
|
+
const { has: u } = ae(i), c = t ? De : e ? Be : x;
|
400
|
+
if (u.call(i, s))
|
401
401
|
return c(o.get(s));
|
402
|
-
if (
|
402
|
+
if (u.call(i, a))
|
403
403
|
return c(o.get(a));
|
404
404
|
o !== i && o.get(s);
|
405
405
|
},
|
406
406
|
get size() {
|
407
407
|
const s = this.__v_raw;
|
408
|
-
return !e && A(R(s), "iterate",
|
408
|
+
return !e && A(R(s), "iterate", k), Reflect.get(s, "size", s);
|
409
409
|
},
|
410
410
|
has(s) {
|
411
411
|
const o = this.__v_raw, i = R(o), a = R(s);
|
412
412
|
return e || (Z(s, a) && A(i, "has", s), A(i, "has", a)), s === a ? o.has(s) : o.has(s) || o.has(a);
|
413
413
|
},
|
414
414
|
forEach(s, o) {
|
415
|
-
const i = this, a = i.__v_raw,
|
416
|
-
return !e && A(
|
415
|
+
const i = this, a = i.__v_raw, u = R(a), c = t ? De : e ? Be : x;
|
416
|
+
return !e && A(u, "iterate", k), a.forEach((f, d) => s.call(o, c(f), c(d), i));
|
417
417
|
}
|
418
418
|
};
|
419
419
|
return gn(
|
@@ -425,24 +425,24 @@ function Fn(e, t) {
|
|
425
425
|
clear: ce("clear")
|
426
426
|
} : {
|
427
427
|
add(s) {
|
428
|
-
!t && !B(s) && !
|
428
|
+
!t && !B(s) && !z(s) && (s = R(s));
|
429
429
|
const o = R(this);
|
430
430
|
return ae(o).has.call(o, s) || (o.add(s), D(o, "add", s, s)), this;
|
431
431
|
},
|
432
432
|
set(s, o) {
|
433
|
-
!t && !B(o) && !
|
434
|
-
const i = R(this), { has: a, get:
|
433
|
+
!t && !B(o) && !z(o) && (o = R(o));
|
434
|
+
const i = R(this), { has: a, get: u } = ae(i);
|
435
435
|
let c = a.call(i, s);
|
436
436
|
c || (s = R(s), c = a.call(i, s));
|
437
|
-
const
|
438
|
-
return i.set(s, o), c ? Z(o,
|
437
|
+
const f = u.call(i, s);
|
438
|
+
return i.set(s, o), c ? Z(o, f) && D(i, "set", s, o) : D(i, "add", s, o), this;
|
439
439
|
},
|
440
440
|
delete(s) {
|
441
441
|
const o = R(this), { has: i, get: a } = ae(o);
|
442
|
-
let
|
443
|
-
|
442
|
+
let u = i.call(o, s);
|
443
|
+
u || (s = R(s), u = i.call(o, s)), a && a.call(o, s);
|
444
444
|
const c = o.delete(s);
|
445
|
-
return
|
445
|
+
return u && D(o, "delete", s, void 0), c;
|
446
446
|
},
|
447
447
|
clear() {
|
448
448
|
const s = R(this), o = s.size !== 0, i = s.clear();
|
@@ -464,19 +464,19 @@ function Fn(e, t) {
|
|
464
464
|
}), n;
|
465
465
|
}
|
466
466
|
function Tt(e, t) {
|
467
|
-
const n =
|
467
|
+
const n = Un(e, t);
|
468
468
|
return (r, s, o) => s === "__v_isReactive" ? !e : s === "__v_isReadonly" ? e : s === "__v_raw" ? r : Reflect.get(
|
469
469
|
Ne(n, s) && s in r ? n : r,
|
470
470
|
s,
|
471
471
|
o
|
472
472
|
);
|
473
473
|
}
|
474
|
-
const
|
474
|
+
const Fn = {
|
475
475
|
get: /* @__PURE__ */ Tt(!1, !1)
|
476
476
|
}, Dn = {
|
477
477
|
get: /* @__PURE__ */ Tt(!0, !1)
|
478
|
-
}, xt = /* @__PURE__ */ new WeakMap(), Bn = /* @__PURE__ */ new WeakMap(), At = /* @__PURE__ */ new WeakMap(),
|
479
|
-
function
|
478
|
+
}, xt = /* @__PURE__ */ new WeakMap(), Bn = /* @__PURE__ */ new WeakMap(), At = /* @__PURE__ */ new WeakMap(), Mn = /* @__PURE__ */ new WeakMap();
|
479
|
+
function In(e) {
|
480
480
|
switch (e) {
|
481
481
|
case "Object":
|
482
482
|
case "Array":
|
@@ -490,20 +490,20 @@ function kn(e) {
|
|
490
490
|
return 0;
|
491
491
|
}
|
492
492
|
}
|
493
|
-
function
|
494
|
-
return e.__v_skip || !Object.isExtensible(e) ? 0 :
|
493
|
+
function kn(e) {
|
494
|
+
return e.__v_skip || !Object.isExtensible(e) ? 0 : In(Rn(e));
|
495
495
|
}
|
496
496
|
function Ct(e) {
|
497
|
-
return
|
497
|
+
return z(e) ? e : vt(
|
498
498
|
e,
|
499
499
|
!1,
|
500
|
-
|
501
|
-
|
500
|
+
jn,
|
501
|
+
Fn,
|
502
502
|
xt
|
503
503
|
);
|
504
504
|
}
|
505
505
|
function Pt(e) {
|
506
|
-
return
|
506
|
+
return vt(
|
507
507
|
e,
|
508
508
|
!0,
|
509
509
|
Ln,
|
@@ -511,13 +511,13 @@ function Pt(e) {
|
|
511
511
|
At
|
512
512
|
);
|
513
513
|
}
|
514
|
-
function
|
514
|
+
function vt(e, t, n, r, s) {
|
515
515
|
if (!we(e) || e.__v_raw && !(t && e.__v_isReactive))
|
516
516
|
return e;
|
517
517
|
const o = s.get(e);
|
518
518
|
if (o)
|
519
519
|
return o;
|
520
|
-
const i =
|
520
|
+
const i = kn(e);
|
521
521
|
if (i === 0)
|
522
522
|
return e;
|
523
523
|
const a = new Proxy(
|
@@ -526,7 +526,7 @@ function jt(e, t, n, r, s) {
|
|
526
526
|
);
|
527
527
|
return s.set(e, a), a;
|
528
528
|
}
|
529
|
-
function
|
529
|
+
function z(e) {
|
530
530
|
return !!(e && e.__v_isReadonly);
|
531
531
|
}
|
532
532
|
function B(e) {
|
@@ -540,14 +540,14 @@ function R(e) {
|
|
540
540
|
return t ? R(t) : e;
|
541
541
|
}
|
542
542
|
const x = (e) => we(e) ? Ct(e) : e, Be = (e) => we(e) ? Pt(e) : e;
|
543
|
-
function
|
543
|
+
function W(e) {
|
544
544
|
return e ? e.__v_isRef === !0 : !1;
|
545
545
|
}
|
546
546
|
function Ce(e) {
|
547
547
|
return Hn(e, !1);
|
548
548
|
}
|
549
549
|
function Hn(e, t) {
|
550
|
-
return
|
550
|
+
return W(e) ? e : new $n(e, t);
|
551
551
|
}
|
552
552
|
class $n {
|
553
553
|
constructor(t, n) {
|
@@ -557,11 +557,11 @@ class $n {
|
|
557
557
|
return this.dep.track(), this._value;
|
558
558
|
}
|
559
559
|
set value(t) {
|
560
|
-
const n = this._rawValue, r = this.__v_isShallow || B(t) ||
|
560
|
+
const n = this._rawValue, r = this.__v_isShallow || B(t) || z(t);
|
561
561
|
t = r ? t : R(t), Z(t, n) && (this._rawValue = t, this._value = r ? t : x(t), this.dep.trigger());
|
562
562
|
}
|
563
563
|
}
|
564
|
-
function
|
564
|
+
function jt(e, t) {
|
565
565
|
return function() {
|
566
566
|
return e.apply(t, arguments);
|
567
567
|
};
|
@@ -570,23 +570,23 @@ const { toString: Jn } = Object.prototype, { getPrototypeOf: Ye } = Object, ye =
|
|
570
570
|
const n = Jn.call(t);
|
571
571
|
return e[n] || (e[n] = n.slice(8, -1).toLowerCase());
|
572
572
|
})(/* @__PURE__ */ Object.create(null)), L = (e) => (e = e.toLowerCase(), (t) => ye(t) === e), be = (e) => (t) => typeof t === e, { isArray: K } = Array, te = be("undefined");
|
573
|
-
function
|
574
|
-
return e !== null && !te(e) && e.constructor !== null && !te(e.constructor) &&
|
573
|
+
function Wn(e) {
|
574
|
+
return e !== null && !te(e) && e.constructor !== null && !te(e.constructor) && v(e.constructor.isBuffer) && e.constructor.isBuffer(e);
|
575
575
|
}
|
576
576
|
const Lt = L("ArrayBuffer");
|
577
|
-
function
|
577
|
+
function zn(e) {
|
578
578
|
let t;
|
579
579
|
return typeof ArrayBuffer < "u" && ArrayBuffer.isView ? t = ArrayBuffer.isView(e) : t = e && e.buffer && Lt(e.buffer), t;
|
580
580
|
}
|
581
|
-
const Kn = be("string"),
|
581
|
+
const Kn = be("string"), v = be("function"), Nt = be("number"), Re = (e) => e !== null && typeof e == "object", Vn = (e) => e === !0 || e === !1, fe = (e) => {
|
582
582
|
if (ye(e) !== "object")
|
583
583
|
return !1;
|
584
584
|
const t = Ye(e);
|
585
585
|
return (t === null || t === Object.prototype || Object.getPrototypeOf(t) === null) && !(Symbol.toStringTag in e) && !(Symbol.iterator in e);
|
586
|
-
}, Xn = L("Date"), Yn = L("File"), Gn = L("Blob"), Qn = L("FileList"), Zn = (e) => Re(e) &&
|
586
|
+
}, Xn = L("Date"), Yn = L("File"), Gn = L("Blob"), Qn = L("FileList"), Zn = (e) => Re(e) && v(e.pipe), er = (e) => {
|
587
587
|
let t;
|
588
|
-
return e && (typeof FormData == "function" && e instanceof FormData ||
|
589
|
-
t === "object" &&
|
588
|
+
return e && (typeof FormData == "function" && e instanceof FormData || v(e.append) && ((t = ye(e)) === "formdata" || // detect form-data instance
|
589
|
+
t === "object" && v(e.toString) && e.toString() === "[object FormData]"));
|
590
590
|
}, tr = L("URLSearchParams"), [nr, rr, sr, or] = ["ReadableStream", "Request", "Response", "Headers"].map(L), ir = (e) => e.trim ? e.trim() : e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");
|
591
591
|
function se(e, t, { allOwnKeys: n = !1 } = {}) {
|
592
592
|
if (e === null || typeof e > "u")
|
@@ -602,7 +602,7 @@ function se(e, t, { allOwnKeys: n = !1 } = {}) {
|
|
602
602
|
a = o[r], t.call(null, e[a], a, e);
|
603
603
|
}
|
604
604
|
}
|
605
|
-
function
|
605
|
+
function Ut(e, t) {
|
606
606
|
t = t.toLowerCase();
|
607
607
|
const n = Object.keys(e);
|
608
608
|
let r = n.length, s;
|
@@ -611,23 +611,23 @@ function Ft(e, t) {
|
|
611
611
|
return s;
|
612
612
|
return null;
|
613
613
|
}
|
614
|
-
const
|
615
|
-
function
|
616
|
-
const { caseless: e } =
|
617
|
-
const o = e &&
|
618
|
-
fe(t[o]) && fe(r) ? t[o] =
|
614
|
+
const I = typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : typeof window < "u" ? window : global, Ft = (e) => !te(e) && e !== I;
|
615
|
+
function Me() {
|
616
|
+
const { caseless: e } = Ft(this) && this || {}, t = {}, n = (r, s) => {
|
617
|
+
const o = e && Ut(t, s) || s;
|
618
|
+
fe(t[o]) && fe(r) ? t[o] = Me(t[o], r) : fe(r) ? t[o] = Me({}, r) : K(r) ? t[o] = r.slice() : t[o] = r;
|
619
619
|
};
|
620
620
|
for (let r = 0, s = arguments.length; r < s; r++)
|
621
621
|
arguments[r] && se(arguments[r], n);
|
622
622
|
return t;
|
623
623
|
}
|
624
624
|
const ar = (e, t, n, { allOwnKeys: r } = {}) => (se(t, (s, o) => {
|
625
|
-
n &&
|
626
|
-
}, { allOwnKeys: r }), e), cr = (e) => (e.charCodeAt(0) === 65279 && (e = e.slice(1)), e),
|
625
|
+
n && v(s) ? e[o] = jt(s, n) : e[o] = s;
|
626
|
+
}, { allOwnKeys: r }), e), cr = (e) => (e.charCodeAt(0) === 65279 && (e = e.slice(1)), e), lr = (e, t, n, r) => {
|
627
627
|
e.prototype = Object.create(t.prototype, r), e.prototype.constructor = e, Object.defineProperty(e, "super", {
|
628
628
|
value: t.prototype
|
629
629
|
}), n && Object.assign(e.prototype, n);
|
630
|
-
},
|
630
|
+
}, ur = (e, t, n, r) => {
|
631
631
|
let s, o, i;
|
632
632
|
const a = {};
|
633
633
|
if (t = t || {}, e == null) return t;
|
@@ -676,10 +676,10 @@ const ar = (e, t, n, { allOwnKeys: r } = {}) => (se(t, (s, o) => {
|
|
676
676
|
}), Object.defineProperties(e, r);
|
677
677
|
}, br = (e) => {
|
678
678
|
Dt(e, (t, n) => {
|
679
|
-
if (
|
679
|
+
if (v(e) && ["arguments", "caller", "callee"].indexOf(n) !== -1)
|
680
680
|
return !1;
|
681
681
|
const r = e[n];
|
682
|
-
if (
|
682
|
+
if (v(r)) {
|
683
683
|
if (t.enumerable = !1, "writable" in t) {
|
684
684
|
t.writable = !1;
|
685
685
|
return;
|
@@ -699,7 +699,7 @@ const ar = (e, t, n, { allOwnKeys: r } = {}) => (se(t, (s, o) => {
|
|
699
699
|
}, Er = () => {
|
700
700
|
}, Sr = (e, t) => e != null && Number.isFinite(e = +e) ? e : t;
|
701
701
|
function _r(e) {
|
702
|
-
return !!(e &&
|
702
|
+
return !!(e && v(e.append) && e[Symbol.toStringTag] === "FormData" && e[Symbol.iterator]);
|
703
703
|
}
|
704
704
|
const Or = (e) => {
|
705
705
|
const t = new Array(10), n = (r, s) => {
|
@@ -710,27 +710,27 @@ const Or = (e) => {
|
|
710
710
|
t[s] = r;
|
711
711
|
const o = K(r) ? [] : {};
|
712
712
|
return se(r, (i, a) => {
|
713
|
-
const
|
714
|
-
!te(
|
713
|
+
const u = n(i, s + 1);
|
714
|
+
!te(u) && (o[a] = u);
|
715
715
|
}), t[s] = void 0, o;
|
716
716
|
}
|
717
717
|
}
|
718
718
|
return r;
|
719
719
|
};
|
720
720
|
return n(e, 0);
|
721
|
-
}, Tr = L("AsyncFunction"), xr = (e) => e && (Re(e) ||
|
722
|
-
s ===
|
721
|
+
}, Tr = L("AsyncFunction"), xr = (e) => e && (Re(e) || v(e)) && v(e.then) && v(e.catch), Bt = ((e, t) => e ? setImmediate : t ? ((n, r) => (I.addEventListener("message", ({ source: s, data: o }) => {
|
722
|
+
s === I && o === n && r.length && r.shift()();
|
723
723
|
}, !1), (s) => {
|
724
|
-
r.push(s),
|
724
|
+
r.push(s), I.postMessage(n, "*");
|
725
725
|
}))(`axios@${Math.random()}`, []) : (n) => setTimeout(n))(
|
726
726
|
typeof setImmediate == "function",
|
727
|
-
|
728
|
-
), Ar = typeof queueMicrotask < "u" ? queueMicrotask.bind(
|
727
|
+
v(I.postMessage)
|
728
|
+
), Ar = typeof queueMicrotask < "u" ? queueMicrotask.bind(I) : typeof process < "u" && process.nextTick || Bt, l = {
|
729
729
|
isArray: K,
|
730
730
|
isArrayBuffer: Lt,
|
731
|
-
isBuffer:
|
731
|
+
isBuffer: Wn,
|
732
732
|
isFormData: er,
|
733
|
-
isArrayBufferView:
|
733
|
+
isArrayBufferView: zn,
|
734
734
|
isString: Kn,
|
735
735
|
isNumber: Nt,
|
736
736
|
isBoolean: Vn,
|
@@ -745,18 +745,18 @@ const Or = (e) => {
|
|
745
745
|
isFile: Yn,
|
746
746
|
isBlob: Gn,
|
747
747
|
isRegExp: yr,
|
748
|
-
isFunction:
|
748
|
+
isFunction: v,
|
749
749
|
isStream: Zn,
|
750
750
|
isURLSearchParams: tr,
|
751
751
|
isTypedArray: hr,
|
752
752
|
isFileList: Qn,
|
753
753
|
forEach: se,
|
754
|
-
merge:
|
754
|
+
merge: Me,
|
755
755
|
extend: ar,
|
756
756
|
trim: ir,
|
757
757
|
stripBOM: cr,
|
758
|
-
inherits:
|
759
|
-
toFlatObject:
|
758
|
+
inherits: lr,
|
759
|
+
toFlatObject: ur,
|
760
760
|
kindOf: ye,
|
761
761
|
kindOfTest: L,
|
762
762
|
endsWith: fr,
|
@@ -773,9 +773,9 @@ const Or = (e) => {
|
|
773
773
|
toCamelCase: wr,
|
774
774
|
noop: Er,
|
775
775
|
toFiniteNumber: Sr,
|
776
|
-
findKey:
|
777
|
-
global:
|
778
|
-
isContextDefined:
|
776
|
+
findKey: Ut,
|
777
|
+
global: I,
|
778
|
+
isContextDefined: Ft,
|
779
779
|
isSpecCompliantForm: _r,
|
780
780
|
toJSONObject: Or,
|
781
781
|
isAsyncFn: Tr,
|
@@ -786,7 +786,7 @@ const Or = (e) => {
|
|
786
786
|
function w(e, t, n, r, s) {
|
787
787
|
Error.call(this), Error.captureStackTrace ? Error.captureStackTrace(this, this.constructor) : this.stack = new Error().stack, this.message = e, this.name = "AxiosError", t && (this.code = t), n && (this.config = n), r && (this.request = r), s && (this.response = s, this.status = s.status ? s.status : null);
|
788
788
|
}
|
789
|
-
|
789
|
+
l.inherits(w, Error, {
|
790
790
|
toJSON: function() {
|
791
791
|
return {
|
792
792
|
// Standard
|
@@ -801,13 +801,13 @@ u.inherits(w, Error, {
|
|
801
801
|
columnNumber: this.columnNumber,
|
802
802
|
stack: this.stack,
|
803
803
|
// Axios
|
804
|
-
config:
|
804
|
+
config: l.toJSONObject(this.config),
|
805
805
|
code: this.code,
|
806
806
|
status: this.status
|
807
807
|
};
|
808
808
|
}
|
809
809
|
});
|
810
|
-
const
|
810
|
+
const Mt = w.prototype, It = {};
|
811
811
|
[
|
812
812
|
"ERR_BAD_OPTION_VALUE",
|
813
813
|
"ERR_BAD_OPTION",
|
@@ -823,92 +823,92 @@ const It = w.prototype, kt = {};
|
|
823
823
|
"ERR_INVALID_URL"
|
824
824
|
// eslint-disable-next-line func-names
|
825
825
|
].forEach((e) => {
|
826
|
-
|
826
|
+
It[e] = { value: e };
|
827
827
|
});
|
828
|
-
Object.defineProperties(w,
|
829
|
-
Object.defineProperty(
|
828
|
+
Object.defineProperties(w, It);
|
829
|
+
Object.defineProperty(Mt, "isAxiosError", { value: !0 });
|
830
830
|
w.from = (e, t, n, r, s, o) => {
|
831
|
-
const i = Object.create(
|
832
|
-
return
|
833
|
-
return
|
831
|
+
const i = Object.create(Mt);
|
832
|
+
return l.toFlatObject(e, i, function(u) {
|
833
|
+
return u !== Error.prototype;
|
834
834
|
}, (a) => a !== "isAxiosError"), w.call(i, e.message, t, n, r, s), i.cause = e, i.name = e.name, o && Object.assign(i, o), i;
|
835
835
|
};
|
836
836
|
const Cr = null;
|
837
|
-
function
|
838
|
-
return
|
837
|
+
function Ie(e) {
|
838
|
+
return l.isPlainObject(e) || l.isArray(e);
|
839
839
|
}
|
840
|
-
function
|
841
|
-
return
|
840
|
+
function kt(e) {
|
841
|
+
return l.endsWith(e, "[]") ? e.slice(0, -2) : e;
|
842
842
|
}
|
843
843
|
function rt(e, t, n) {
|
844
844
|
return e ? e.concat(t).map(function(s, o) {
|
845
|
-
return s =
|
845
|
+
return s = kt(s), !n && o ? "[" + s + "]" : s;
|
846
846
|
}).join(n ? "." : "") : t;
|
847
847
|
}
|
848
848
|
function Pr(e) {
|
849
|
-
return
|
849
|
+
return l.isArray(e) && !e.some(Ie);
|
850
850
|
}
|
851
|
-
const
|
851
|
+
const vr = l.toFlatObject(l, {}, null, function(t) {
|
852
852
|
return /^is[A-Z]/.test(t);
|
853
853
|
});
|
854
854
|
function Ee(e, t, n) {
|
855
|
-
if (!
|
855
|
+
if (!l.isObject(e))
|
856
856
|
throw new TypeError("target must be an object");
|
857
|
-
t = t || new FormData(), n =
|
857
|
+
t = t || new FormData(), n = l.toFlatObject(n, {
|
858
858
|
metaTokens: !0,
|
859
859
|
dots: !1,
|
860
860
|
indexes: !1
|
861
861
|
}, !1, function(g, p) {
|
862
|
-
return !
|
862
|
+
return !l.isUndefined(p[g]);
|
863
863
|
});
|
864
|
-
const r = n.metaTokens, s = n.visitor ||
|
865
|
-
if (!
|
864
|
+
const r = n.metaTokens, s = n.visitor || f, o = n.dots, i = n.indexes, u = (n.Blob || typeof Blob < "u" && Blob) && l.isSpecCompliantForm(t);
|
865
|
+
if (!l.isFunction(s))
|
866
866
|
throw new TypeError("visitor must be a function");
|
867
867
|
function c(h) {
|
868
868
|
if (h === null) return "";
|
869
|
-
if (
|
869
|
+
if (l.isDate(h))
|
870
870
|
return h.toISOString();
|
871
|
-
if (!
|
871
|
+
if (!u && l.isBlob(h))
|
872
872
|
throw new w("Blob is not supported. Use a Buffer instead.");
|
873
|
-
return
|
873
|
+
return l.isArrayBuffer(h) || l.isTypedArray(h) ? u && typeof Blob == "function" ? new Blob([h]) : Buffer.from(h) : h;
|
874
874
|
}
|
875
|
-
function
|
875
|
+
function f(h, g, p) {
|
876
876
|
let y = h;
|
877
877
|
if (h && !p && typeof h == "object") {
|
878
|
-
if (
|
878
|
+
if (l.endsWith(g, "{}"))
|
879
879
|
g = r ? g : g.slice(0, -2), h = JSON.stringify(h);
|
880
|
-
else if (
|
881
|
-
return g =
|
882
|
-
!(
|
880
|
+
else if (l.isArray(h) && Pr(h) || (l.isFileList(h) || l.endsWith(g, "[]")) && (y = l.toArray(h)))
|
881
|
+
return g = kt(g), y.forEach(function(b, j) {
|
882
|
+
!(l.isUndefined(b) || b === null) && t.append(
|
883
883
|
// eslint-disable-next-line no-nested-ternary
|
884
|
-
i === !0 ? rt([g],
|
884
|
+
i === !0 ? rt([g], j, o) : i === null ? g : g + "[]",
|
885
885
|
c(b)
|
886
886
|
);
|
887
887
|
}), !1;
|
888
888
|
}
|
889
|
-
return
|
889
|
+
return Ie(h) ? !0 : (t.append(rt(p, g, o), c(h)), !1);
|
890
890
|
}
|
891
|
-
const d = [], m = Object.assign(
|
892
|
-
defaultVisitor:
|
891
|
+
const d = [], m = Object.assign(vr, {
|
892
|
+
defaultVisitor: f,
|
893
893
|
convertValue: c,
|
894
|
-
isVisitable:
|
894
|
+
isVisitable: Ie
|
895
895
|
});
|
896
896
|
function E(h, g) {
|
897
|
-
if (!
|
897
|
+
if (!l.isUndefined(h)) {
|
898
898
|
if (d.indexOf(h) !== -1)
|
899
899
|
throw Error("Circular reference detected in " + g.join("."));
|
900
|
-
d.push(h),
|
901
|
-
(!(
|
900
|
+
d.push(h), l.forEach(h, function(y, S) {
|
901
|
+
(!(l.isUndefined(y) || y === null) && s.call(
|
902
902
|
t,
|
903
903
|
y,
|
904
|
-
|
904
|
+
l.isString(S) ? S.trim() : S,
|
905
905
|
g,
|
906
906
|
m
|
907
907
|
)) === !0 && E(y, g ? g.concat(S) : [S]);
|
908
908
|
}), d.pop();
|
909
909
|
}
|
910
910
|
}
|
911
|
-
if (!
|
911
|
+
if (!l.isObject(e))
|
912
912
|
throw new TypeError("data must be an object");
|
913
913
|
return E(e), t;
|
914
914
|
}
|
@@ -941,19 +941,19 @@ qt.toString = function(t) {
|
|
941
941
|
return n(s[0]) + "=" + n(s[1]);
|
942
942
|
}, "").join("&");
|
943
943
|
};
|
944
|
-
function
|
944
|
+
function jr(e) {
|
945
945
|
return encodeURIComponent(e).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
|
946
946
|
}
|
947
947
|
function Ht(e, t, n) {
|
948
948
|
if (!t)
|
949
949
|
return e;
|
950
|
-
const r = n && n.encode ||
|
951
|
-
|
950
|
+
const r = n && n.encode || jr;
|
951
|
+
l.isFunction(n) && (n = {
|
952
952
|
serialize: n
|
953
953
|
});
|
954
954
|
const s = n && n.serialize;
|
955
955
|
let o;
|
956
|
-
if (s ? o = s(t, n) : o =
|
956
|
+
if (s ? o = s(t, n) : o = l.isURLSearchParams(t) ? t.toString() : new Ge(t, n).toString(r), o) {
|
957
957
|
const i = e.indexOf("#");
|
958
958
|
i !== -1 && (e = e.slice(0, i)), e += (e.indexOf("?") === -1 ? "?" : "&") + o;
|
959
959
|
}
|
@@ -1008,7 +1008,7 @@ class ot {
|
|
1008
1008
|
* @returns {void}
|
1009
1009
|
*/
|
1010
1010
|
forEach(t) {
|
1011
|
-
|
1011
|
+
l.forEach(this.handlers, function(r) {
|
1012
1012
|
r !== null && t(r);
|
1013
1013
|
});
|
1014
1014
|
}
|
@@ -1017,35 +1017,35 @@ const $t = {
|
|
1017
1017
|
silentJSONParsing: !0,
|
1018
1018
|
forcedJSONParsing: !0,
|
1019
1019
|
clarifyTimeoutError: !1
|
1020
|
-
}, Lr = typeof URLSearchParams < "u" ? URLSearchParams : Ge, Nr = typeof FormData < "u" ? FormData : null,
|
1020
|
+
}, Lr = typeof URLSearchParams < "u" ? URLSearchParams : Ge, Nr = typeof FormData < "u" ? FormData : null, Ur = typeof Blob < "u" ? Blob : null, Fr = {
|
1021
1021
|
isBrowser: !0,
|
1022
1022
|
classes: {
|
1023
1023
|
URLSearchParams: Lr,
|
1024
1024
|
FormData: Nr,
|
1025
|
-
Blob:
|
1025
|
+
Blob: Ur
|
1026
1026
|
},
|
1027
1027
|
protocols: ["http", "https", "file", "blob", "url", "data"]
|
1028
|
-
}, Qe = typeof window < "u" && typeof document < "u",
|
1029
|
-
self instanceof WorkerGlobalScope && typeof self.importScripts == "function",
|
1028
|
+
}, Qe = typeof window < "u" && typeof document < "u", ke = typeof navigator == "object" && navigator || void 0, Dr = Qe && (!ke || ["ReactNative", "NativeScript", "NS"].indexOf(ke.product) < 0), Br = typeof WorkerGlobalScope < "u" && // eslint-disable-next-line no-undef
|
1029
|
+
self instanceof WorkerGlobalScope && typeof self.importScripts == "function", Mr = Qe && window.location.href || "http://localhost", Ir = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
1030
1030
|
__proto__: null,
|
1031
1031
|
hasBrowserEnv: Qe,
|
1032
1032
|
hasStandardBrowserEnv: Dr,
|
1033
1033
|
hasStandardBrowserWebWorkerEnv: Br,
|
1034
|
-
navigator:
|
1035
|
-
origin:
|
1034
|
+
navigator: ke,
|
1035
|
+
origin: Mr
|
1036
1036
|
}, Symbol.toStringTag, { value: "Module" })), O = {
|
1037
|
-
...
|
1038
|
-
...
|
1037
|
+
...Ir,
|
1038
|
+
...Fr
|
1039
1039
|
};
|
1040
|
-
function
|
1040
|
+
function kr(e, t) {
|
1041
1041
|
return Ee(e, new O.classes.URLSearchParams(), Object.assign({
|
1042
1042
|
visitor: function(n, r, s, o) {
|
1043
|
-
return O.isNode &&
|
1043
|
+
return O.isNode && l.isBuffer(n) ? (this.append(r, n.toString("base64")), !1) : o.defaultVisitor.apply(this, arguments);
|
1044
1044
|
}
|
1045
1045
|
}, t));
|
1046
1046
|
}
|
1047
1047
|
function qr(e) {
|
1048
|
-
return
|
1048
|
+
return l.matchAll(/\w+|\[(\w*)]/g, e).map((t) => t[0] === "[]" ? "" : t[1] || t[0]);
|
1049
1049
|
}
|
1050
1050
|
function Hr(e) {
|
1051
1051
|
const t = {}, n = Object.keys(e);
|
@@ -1060,21 +1060,21 @@ function Jt(e) {
|
|
1060
1060
|
function t(n, r, s, o) {
|
1061
1061
|
let i = n[o++];
|
1062
1062
|
if (i === "__proto__") return !0;
|
1063
|
-
const a = Number.isFinite(+i),
|
1064
|
-
return i = !i &&
|
1063
|
+
const a = Number.isFinite(+i), u = o >= n.length;
|
1064
|
+
return i = !i && l.isArray(s) ? s.length : i, u ? (l.hasOwnProp(s, i) ? s[i] = [s[i], r] : s[i] = r, !a) : ((!s[i] || !l.isObject(s[i])) && (s[i] = []), t(n, r, s[i], o) && l.isArray(s[i]) && (s[i] = Hr(s[i])), !a);
|
1065
1065
|
}
|
1066
|
-
if (
|
1066
|
+
if (l.isFormData(e) && l.isFunction(e.entries)) {
|
1067
1067
|
const n = {};
|
1068
|
-
return
|
1068
|
+
return l.forEachEntry(e, (r, s) => {
|
1069
1069
|
t(qr(r), s, n, 0);
|
1070
1070
|
}), n;
|
1071
1071
|
}
|
1072
1072
|
return null;
|
1073
1073
|
}
|
1074
1074
|
function $r(e, t, n) {
|
1075
|
-
if (
|
1075
|
+
if (l.isString(e))
|
1076
1076
|
try {
|
1077
|
-
return (t || JSON.parse)(e),
|
1077
|
+
return (t || JSON.parse)(e), l.trim(e);
|
1078
1078
|
} catch (r) {
|
1079
1079
|
if (r.name !== "SyntaxError")
|
1080
1080
|
throw r;
|
@@ -1085,24 +1085,24 @@ const oe = {
|
|
1085
1085
|
transitional: $t,
|
1086
1086
|
adapter: ["xhr", "http", "fetch"],
|
1087
1087
|
transformRequest: [function(t, n) {
|
1088
|
-
const r = n.getContentType() || "", s = r.indexOf("application/json") > -1, o =
|
1089
|
-
if (o &&
|
1088
|
+
const r = n.getContentType() || "", s = r.indexOf("application/json") > -1, o = l.isObject(t);
|
1089
|
+
if (o && l.isHTMLForm(t) && (t = new FormData(t)), l.isFormData(t))
|
1090
1090
|
return s ? JSON.stringify(Jt(t)) : t;
|
1091
|
-
if (
|
1091
|
+
if (l.isArrayBuffer(t) || l.isBuffer(t) || l.isStream(t) || l.isFile(t) || l.isBlob(t) || l.isReadableStream(t))
|
1092
1092
|
return t;
|
1093
|
-
if (
|
1093
|
+
if (l.isArrayBufferView(t))
|
1094
1094
|
return t.buffer;
|
1095
|
-
if (
|
1095
|
+
if (l.isURLSearchParams(t))
|
1096
1096
|
return n.setContentType("application/x-www-form-urlencoded;charset=utf-8", !1), t.toString();
|
1097
1097
|
let a;
|
1098
1098
|
if (o) {
|
1099
1099
|
if (r.indexOf("application/x-www-form-urlencoded") > -1)
|
1100
|
-
return
|
1101
|
-
if ((a =
|
1102
|
-
const
|
1100
|
+
return kr(t, this.formSerializer).toString();
|
1101
|
+
if ((a = l.isFileList(t)) || r.indexOf("multipart/form-data") > -1) {
|
1102
|
+
const u = this.env && this.env.FormData;
|
1103
1103
|
return Ee(
|
1104
1104
|
a ? { "files[]": t } : t,
|
1105
|
-
|
1105
|
+
u && new u(),
|
1106
1106
|
this.formSerializer
|
1107
1107
|
);
|
1108
1108
|
}
|
@@ -1111,9 +1111,9 @@ const oe = {
|
|
1111
1111
|
}],
|
1112
1112
|
transformResponse: [function(t) {
|
1113
1113
|
const n = this.transitional || oe.transitional, r = n && n.forcedJSONParsing, s = this.responseType === "json";
|
1114
|
-
if (
|
1114
|
+
if (l.isResponse(t) || l.isReadableStream(t))
|
1115
1115
|
return t;
|
1116
|
-
if (t &&
|
1116
|
+
if (t && l.isString(t) && (r && !this.responseType || s)) {
|
1117
1117
|
const i = !(n && n.silentJSONParsing) && s;
|
1118
1118
|
try {
|
1119
1119
|
return JSON.parse(t);
|
@@ -1147,10 +1147,10 @@ const oe = {
|
|
1147
1147
|
}
|
1148
1148
|
}
|
1149
1149
|
};
|
1150
|
-
|
1150
|
+
l.forEach(["delete", "get", "head", "post", "put", "patch"], (e) => {
|
1151
1151
|
oe.headers[e] = {};
|
1152
1152
|
});
|
1153
|
-
const Jr =
|
1153
|
+
const Jr = l.toObjectSet([
|
1154
1154
|
"age",
|
1155
1155
|
"authorization",
|
1156
1156
|
"content-length",
|
@@ -1168,7 +1168,7 @@ const Jr = u.toObjectSet([
|
|
1168
1168
|
"referer",
|
1169
1169
|
"retry-after",
|
1170
1170
|
"user-agent"
|
1171
|
-
]),
|
1171
|
+
]), Wr = (e) => {
|
1172
1172
|
const t = {};
|
1173
1173
|
let n, r, s;
|
1174
1174
|
return e && e.split(`
|
@@ -1180,9 +1180,9 @@ function Y(e) {
|
|
1180
1180
|
return e && String(e).trim().toLowerCase();
|
1181
1181
|
}
|
1182
1182
|
function de(e) {
|
1183
|
-
return e === !1 || e == null ? e :
|
1183
|
+
return e === !1 || e == null ? e : l.isArray(e) ? e.map(de) : String(e);
|
1184
1184
|
}
|
1185
|
-
function
|
1185
|
+
function zr(e) {
|
1186
1186
|
const t = /* @__PURE__ */ Object.create(null), n = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;
|
1187
1187
|
let r;
|
1188
1188
|
for (; r = n.exec(e); )
|
@@ -1191,12 +1191,12 @@ function Wr(e) {
|
|
1191
1191
|
}
|
1192
1192
|
const Kr = (e) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());
|
1193
1193
|
function Pe(e, t, n, r, s) {
|
1194
|
-
if (
|
1194
|
+
if (l.isFunction(r))
|
1195
1195
|
return r.call(this, t, n);
|
1196
|
-
if (s && (t = n), !!
|
1197
|
-
if (
|
1196
|
+
if (s && (t = n), !!l.isString(t)) {
|
1197
|
+
if (l.isString(r))
|
1198
1198
|
return t.indexOf(r) !== -1;
|
1199
|
-
if (
|
1199
|
+
if (l.isRegExp(r))
|
1200
1200
|
return r.test(t);
|
1201
1201
|
}
|
1202
1202
|
}
|
@@ -1204,7 +1204,7 @@ function Vr(e) {
|
|
1204
1204
|
return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g, (t, n, r) => n.toUpperCase() + r);
|
1205
1205
|
}
|
1206
1206
|
function Xr(e, t) {
|
1207
|
-
const n =
|
1207
|
+
const n = l.toCamelCase(" " + t);
|
1208
1208
|
["get", "set", "has"].forEach((r) => {
|
1209
1209
|
Object.defineProperty(e, r + n, {
|
1210
1210
|
value: function(s, o, i) {
|
@@ -1220,37 +1220,37 @@ let C = class {
|
|
1220
1220
|
}
|
1221
1221
|
set(t, n, r) {
|
1222
1222
|
const s = this;
|
1223
|
-
function o(a,
|
1224
|
-
const
|
1225
|
-
if (!
|
1223
|
+
function o(a, u, c) {
|
1224
|
+
const f = Y(u);
|
1225
|
+
if (!f)
|
1226
1226
|
throw new Error("header name must be a non-empty string");
|
1227
|
-
const d =
|
1228
|
-
(!d || s[d] === void 0 || c === !0 || c === void 0 && s[d] !== !1) && (s[d ||
|
1227
|
+
const d = l.findKey(s, f);
|
1228
|
+
(!d || s[d] === void 0 || c === !0 || c === void 0 && s[d] !== !1) && (s[d || u] = de(a));
|
1229
1229
|
}
|
1230
|
-
const i = (a,
|
1231
|
-
if (
|
1230
|
+
const i = (a, u) => l.forEach(a, (c, f) => o(c, f, u));
|
1231
|
+
if (l.isPlainObject(t) || t instanceof this.constructor)
|
1232
1232
|
i(t, n);
|
1233
|
-
else if (
|
1234
|
-
i(
|
1235
|
-
else if (
|
1236
|
-
for (const [a,
|
1237
|
-
o(
|
1233
|
+
else if (l.isString(t) && (t = t.trim()) && !Kr(t))
|
1234
|
+
i(Wr(t), n);
|
1235
|
+
else if (l.isHeaders(t))
|
1236
|
+
for (const [a, u] of t.entries())
|
1237
|
+
o(u, a, r);
|
1238
1238
|
else
|
1239
1239
|
t != null && o(n, t, r);
|
1240
1240
|
return this;
|
1241
1241
|
}
|
1242
1242
|
get(t, n) {
|
1243
1243
|
if (t = Y(t), t) {
|
1244
|
-
const r =
|
1244
|
+
const r = l.findKey(this, t);
|
1245
1245
|
if (r) {
|
1246
1246
|
const s = this[r];
|
1247
1247
|
if (!n)
|
1248
1248
|
return s;
|
1249
1249
|
if (n === !0)
|
1250
|
-
return
|
1251
|
-
if (
|
1250
|
+
return zr(s);
|
1251
|
+
if (l.isFunction(n))
|
1252
1252
|
return n.call(this, s, r);
|
1253
|
-
if (
|
1253
|
+
if (l.isRegExp(n))
|
1254
1254
|
return n.exec(s);
|
1255
1255
|
throw new TypeError("parser must be boolean|regexp|function");
|
1256
1256
|
}
|
@@ -1258,7 +1258,7 @@ let C = class {
|
|
1258
1258
|
}
|
1259
1259
|
has(t, n) {
|
1260
1260
|
if (t = Y(t), t) {
|
1261
|
-
const r =
|
1261
|
+
const r = l.findKey(this, t);
|
1262
1262
|
return !!(r && this[r] !== void 0 && (!n || Pe(this, this[r], r, n)));
|
1263
1263
|
}
|
1264
1264
|
return !1;
|
@@ -1268,11 +1268,11 @@ let C = class {
|
|
1268
1268
|
let s = !1;
|
1269
1269
|
function o(i) {
|
1270
1270
|
if (i = Y(i), i) {
|
1271
|
-
const a =
|
1271
|
+
const a = l.findKey(r, i);
|
1272
1272
|
a && (!n || Pe(r, r[a], a, n)) && (delete r[a], s = !0);
|
1273
1273
|
}
|
1274
1274
|
}
|
1275
|
-
return
|
1275
|
+
return l.isArray(t) ? t.forEach(o) : o(t), s;
|
1276
1276
|
}
|
1277
1277
|
clear(t) {
|
1278
1278
|
const n = Object.keys(this);
|
@@ -1285,8 +1285,8 @@ let C = class {
|
|
1285
1285
|
}
|
1286
1286
|
normalize(t) {
|
1287
1287
|
const n = this, r = {};
|
1288
|
-
return
|
1289
|
-
const i =
|
1288
|
+
return l.forEach(this, (s, o) => {
|
1289
|
+
const i = l.findKey(r, o);
|
1290
1290
|
if (i) {
|
1291
1291
|
n[i] = de(s), delete n[o];
|
1292
1292
|
return;
|
@@ -1300,8 +1300,8 @@ let C = class {
|
|
1300
1300
|
}
|
1301
1301
|
toJSON(t) {
|
1302
1302
|
const n = /* @__PURE__ */ Object.create(null);
|
1303
|
-
return
|
1304
|
-
r != null && r !== !1 && (n[s] = t &&
|
1303
|
+
return l.forEach(this, (r, s) => {
|
1304
|
+
r != null && r !== !1 && (n[s] = t && l.isArray(r) ? r.join(", ") : r);
|
1305
1305
|
}), n;
|
1306
1306
|
}
|
1307
1307
|
[Symbol.iterator]() {
|
@@ -1329,11 +1329,11 @@ let C = class {
|
|
1329
1329
|
const a = Y(i);
|
1330
1330
|
r[a] || (Xr(s, i), r[a] = !0);
|
1331
1331
|
}
|
1332
|
-
return
|
1332
|
+
return l.isArray(t) ? t.forEach(o) : o(t), this;
|
1333
1333
|
}
|
1334
1334
|
};
|
1335
1335
|
C.accessor(["Content-Type", "Content-Length", "Accept", "Accept-Encoding", "User-Agent", "Authorization"]);
|
1336
|
-
|
1336
|
+
l.reduceDescriptors(C.prototype, ({ value: e }, t) => {
|
1337
1337
|
let n = t[0].toUpperCase() + t.slice(1);
|
1338
1338
|
return {
|
1339
1339
|
get: () => e,
|
@@ -1342,24 +1342,24 @@ u.reduceDescriptors(C.prototype, ({ value: e }, t) => {
|
|
1342
1342
|
}
|
1343
1343
|
};
|
1344
1344
|
});
|
1345
|
-
|
1346
|
-
function
|
1345
|
+
l.freezeMethods(C);
|
1346
|
+
function ve(e, t) {
|
1347
1347
|
const n = this || oe, r = t || n, s = C.from(r.headers);
|
1348
1348
|
let o = r.data;
|
1349
|
-
return
|
1349
|
+
return l.forEach(e, function(a) {
|
1350
1350
|
o = a.call(n, o, s.normalize(), t ? t.status : void 0);
|
1351
1351
|
}), s.normalize(), o;
|
1352
1352
|
}
|
1353
|
-
function
|
1353
|
+
function Wt(e) {
|
1354
1354
|
return !!(e && e.__CANCEL__);
|
1355
1355
|
}
|
1356
1356
|
function V(e, t, n) {
|
1357
1357
|
w.call(this, e ?? "canceled", w.ERR_CANCELED, t, n), this.name = "CanceledError";
|
1358
1358
|
}
|
1359
|
-
|
1359
|
+
l.inherits(V, w, {
|
1360
1360
|
__CANCEL__: !0
|
1361
1361
|
});
|
1362
|
-
function
|
1362
|
+
function zt(e, t, n) {
|
1363
1363
|
const r = n.config.validateStatus;
|
1364
1364
|
!n.status || !r || r(n.status) ? e(n) : t(new w(
|
1365
1365
|
"Request failed with status code " + n.status,
|
@@ -1377,26 +1377,26 @@ function Gr(e, t) {
|
|
1377
1377
|
e = e || 10;
|
1378
1378
|
const n = new Array(e), r = new Array(e);
|
1379
1379
|
let s = 0, o = 0, i;
|
1380
|
-
return t = t !== void 0 ? t : 1e3, function(
|
1381
|
-
const c = Date.now(),
|
1382
|
-
i || (i = c), n[s] =
|
1380
|
+
return t = t !== void 0 ? t : 1e3, function(u) {
|
1381
|
+
const c = Date.now(), f = r[o];
|
1382
|
+
i || (i = c), n[s] = u, r[s] = c;
|
1383
1383
|
let d = o, m = 0;
|
1384
1384
|
for (; d !== s; )
|
1385
1385
|
m += n[d++], d = d % e;
|
1386
1386
|
if (s = (s + 1) % e, s === o && (o = (o + 1) % e), c - i < t)
|
1387
1387
|
return;
|
1388
|
-
const E =
|
1388
|
+
const E = f && c - f;
|
1389
1389
|
return E ? Math.round(m * 1e3 / E) : void 0;
|
1390
1390
|
};
|
1391
1391
|
}
|
1392
1392
|
function Qr(e, t) {
|
1393
1393
|
let n = 0, r = 1e3 / t, s, o;
|
1394
|
-
const i = (c,
|
1395
|
-
n =
|
1394
|
+
const i = (c, f = Date.now()) => {
|
1395
|
+
n = f, s = null, o && (clearTimeout(o), o = null), e.apply(null, c);
|
1396
1396
|
};
|
1397
1397
|
return [(...c) => {
|
1398
|
-
const
|
1399
|
-
d >= r ? i(c,
|
1398
|
+
const f = Date.now(), d = f - n;
|
1399
|
+
d >= r ? i(c, f) : (s = c, o || (o = setTimeout(() => {
|
1400
1400
|
o = null, i(s);
|
1401
1401
|
}, r - d)));
|
1402
1402
|
}, () => s && i(s)];
|
@@ -1405,15 +1405,15 @@ const me = (e, t, n = 3) => {
|
|
1405
1405
|
let r = 0;
|
1406
1406
|
const s = Gr(50, 250);
|
1407
1407
|
return Qr((o) => {
|
1408
|
-
const i = o.loaded, a = o.lengthComputable ? o.total : void 0,
|
1408
|
+
const i = o.loaded, a = o.lengthComputable ? o.total : void 0, u = i - r, c = s(u), f = i <= a;
|
1409
1409
|
r = i;
|
1410
1410
|
const d = {
|
1411
1411
|
loaded: i,
|
1412
1412
|
total: a,
|
1413
1413
|
progress: a ? i / a : void 0,
|
1414
|
-
bytes:
|
1414
|
+
bytes: u,
|
1415
1415
|
rate: c || void 0,
|
1416
|
-
estimated: c && a &&
|
1416
|
+
estimated: c && a && f ? (a - i) / c : void 0,
|
1417
1417
|
event: o,
|
1418
1418
|
lengthComputable: a != null,
|
1419
1419
|
[t ? "download" : "upload"]: !0
|
@@ -1427,7 +1427,7 @@ const me = (e, t, n = 3) => {
|
|
1427
1427
|
total: e,
|
1428
1428
|
loaded: r
|
1429
1429
|
}), t[1]];
|
1430
|
-
}, ct = (e) => (...t) =>
|
1430
|
+
}, ct = (e) => (...t) => l.asap(() => e(...t)), Zr = O.hasStandardBrowserEnv ? /* @__PURE__ */ ((e, t) => (n) => (n = new URL(n, O.origin), e.protocol === n.protocol && e.host === n.host && (t || e.port === n.port)))(
|
1431
1431
|
new URL(O.origin),
|
1432
1432
|
O.navigator && /(msie|trident)/i.test(O.navigator.userAgent)
|
1433
1433
|
) : () => !0, es = O.hasStandardBrowserEnv ? (
|
@@ -1435,7 +1435,7 @@ const me = (e, t, n = 3) => {
|
|
1435
1435
|
{
|
1436
1436
|
write(e, t, n, r, s, o) {
|
1437
1437
|
const i = [e + "=" + encodeURIComponent(t)];
|
1438
|
-
|
1438
|
+
l.isNumber(n) && i.push("expires=" + new Date(n).toGMTString()), l.isString(r) && i.push("path=" + r), l.isString(s) && i.push("domain=" + s), o === !0 && i.push("secure"), document.cookie = i.join("; ");
|
1439
1439
|
},
|
1440
1440
|
read(e) {
|
1441
1441
|
const t = document.cookie.match(new RegExp("(^|;\\s*)(" + e + ")=([^;]*)"));
|
@@ -1467,36 +1467,36 @@ function Kt(e, t, n) {
|
|
1467
1467
|
let r = !ts(t);
|
1468
1468
|
return e && r || n == !1 ? ns(e, t) : t;
|
1469
1469
|
}
|
1470
|
-
const
|
1470
|
+
const lt = (e) => e instanceof C ? { ...e } : e;
|
1471
1471
|
function H(e, t) {
|
1472
1472
|
t = t || {};
|
1473
1473
|
const n = {};
|
1474
|
-
function r(c,
|
1475
|
-
return
|
1474
|
+
function r(c, f, d, m) {
|
1475
|
+
return l.isPlainObject(c) && l.isPlainObject(f) ? l.merge.call({ caseless: m }, c, f) : l.isPlainObject(f) ? l.merge({}, f) : l.isArray(f) ? f.slice() : f;
|
1476
1476
|
}
|
1477
|
-
function s(c,
|
1478
|
-
if (
|
1479
|
-
if (!
|
1477
|
+
function s(c, f, d, m) {
|
1478
|
+
if (l.isUndefined(f)) {
|
1479
|
+
if (!l.isUndefined(c))
|
1480
1480
|
return r(void 0, c, d, m);
|
1481
|
-
} else return r(c,
|
1481
|
+
} else return r(c, f, d, m);
|
1482
1482
|
}
|
1483
|
-
function o(c,
|
1484
|
-
if (!
|
1485
|
-
return r(void 0,
|
1483
|
+
function o(c, f) {
|
1484
|
+
if (!l.isUndefined(f))
|
1485
|
+
return r(void 0, f);
|
1486
1486
|
}
|
1487
|
-
function i(c,
|
1488
|
-
if (
|
1489
|
-
if (!
|
1487
|
+
function i(c, f) {
|
1488
|
+
if (l.isUndefined(f)) {
|
1489
|
+
if (!l.isUndefined(c))
|
1490
1490
|
return r(void 0, c);
|
1491
|
-
} else return r(void 0,
|
1491
|
+
} else return r(void 0, f);
|
1492
1492
|
}
|
1493
|
-
function a(c,
|
1493
|
+
function a(c, f, d) {
|
1494
1494
|
if (d in t)
|
1495
|
-
return r(c,
|
1495
|
+
return r(c, f);
|
1496
1496
|
if (d in e)
|
1497
1497
|
return r(void 0, c);
|
1498
1498
|
}
|
1499
|
-
const
|
1499
|
+
const u = {
|
1500
1500
|
url: o,
|
1501
1501
|
method: o,
|
1502
1502
|
data: o,
|
@@ -1525,11 +1525,11 @@ function H(e, t) {
|
|
1525
1525
|
socketPath: i,
|
1526
1526
|
responseEncoding: i,
|
1527
1527
|
validateStatus: a,
|
1528
|
-
headers: (c,
|
1528
|
+
headers: (c, f, d) => s(lt(c), lt(f), d, !0)
|
1529
1529
|
};
|
1530
|
-
return
|
1531
|
-
const d = f
|
1532
|
-
|
1530
|
+
return l.forEach(Object.keys(Object.assign({}, e, t)), function(f) {
|
1531
|
+
const d = u[f] || s, m = d(e[f], t[f], f);
|
1532
|
+
l.isUndefined(m) && d !== a || (n[f] = m);
|
1533
1533
|
}), n;
|
1534
1534
|
}
|
1535
1535
|
const Vt = (e) => {
|
@@ -1539,16 +1539,16 @@ const Vt = (e) => {
|
|
1539
1539
|
"Authorization",
|
1540
1540
|
"Basic " + btoa((a.username || "") + ":" + (a.password ? unescape(encodeURIComponent(a.password)) : ""))
|
1541
1541
|
);
|
1542
|
-
let
|
1543
|
-
if (
|
1542
|
+
let u;
|
1543
|
+
if (l.isFormData(n)) {
|
1544
1544
|
if (O.hasStandardBrowserEnv || O.hasStandardBrowserWebWorkerEnv)
|
1545
1545
|
i.setContentType(void 0);
|
1546
|
-
else if ((
|
1547
|
-
const [c, ...
|
1548
|
-
i.setContentType([c || "multipart/form-data", ...
|
1546
|
+
else if ((u = i.getContentType()) !== !1) {
|
1547
|
+
const [c, ...f] = u ? u.split(";").map((d) => d.trim()).filter(Boolean) : [];
|
1548
|
+
i.setContentType([c || "multipart/form-data", ...f].join("; "));
|
1549
1549
|
}
|
1550
1550
|
}
|
1551
|
-
if (O.hasStandardBrowserEnv && (r &&
|
1551
|
+
if (O.hasStandardBrowserEnv && (r && l.isFunction(r) && (r = r(t)), r || r !== !1 && Zr(t.url))) {
|
1552
1552
|
const c = s && o && es.read(o);
|
1553
1553
|
c && i.set(s, c);
|
1554
1554
|
}
|
@@ -1558,9 +1558,9 @@ const Vt = (e) => {
|
|
1558
1558
|
const s = Vt(e);
|
1559
1559
|
let o = s.data;
|
1560
1560
|
const i = C.from(s.headers).normalize();
|
1561
|
-
let { responseType: a, onUploadProgress:
|
1561
|
+
let { responseType: a, onUploadProgress: u, onDownloadProgress: c } = s, f, d, m, E, h;
|
1562
1562
|
function g() {
|
1563
|
-
E && E(), h && h(), s.cancelToken && s.cancelToken.unsubscribe(
|
1563
|
+
E && E(), h && h(), s.cancelToken && s.cancelToken.unsubscribe(f), s.signal && s.signal.removeEventListener("abort", f);
|
1564
1564
|
}
|
1565
1565
|
let p = new XMLHttpRequest();
|
1566
1566
|
p.open(s.method.toUpperCase(), s.url, !0), p.timeout = s.timeout;
|
@@ -1577,10 +1577,10 @@ const Vt = (e) => {
|
|
1577
1577
|
config: e,
|
1578
1578
|
request: p
|
1579
1579
|
};
|
1580
|
-
|
1581
|
-
n(
|
1582
|
-
}, function(
|
1583
|
-
r(
|
1580
|
+
zt(function(M) {
|
1581
|
+
n(M), g();
|
1582
|
+
}, function(M) {
|
1583
|
+
r(M), g();
|
1584
1584
|
}, T), p = null;
|
1585
1585
|
}
|
1586
1586
|
"onloadend" in p ? p.onloadend = y : p.onreadystatechange = function() {
|
@@ -1590,19 +1590,19 @@ const Vt = (e) => {
|
|
1590
1590
|
}, p.onerror = function() {
|
1591
1591
|
r(new w("Network Error", w.ERR_NETWORK, e, p)), p = null;
|
1592
1592
|
}, p.ontimeout = function() {
|
1593
|
-
let
|
1593
|
+
let j = s.timeout ? "timeout of " + s.timeout + "ms exceeded" : "timeout exceeded";
|
1594
1594
|
const T = s.transitional || $t;
|
1595
|
-
s.timeoutErrorMessage && (
|
1596
|
-
|
1595
|
+
s.timeoutErrorMessage && (j = s.timeoutErrorMessage), r(new w(
|
1596
|
+
j,
|
1597
1597
|
T.clarifyTimeoutError ? w.ETIMEDOUT : w.ECONNABORTED,
|
1598
1598
|
e,
|
1599
1599
|
p
|
1600
1600
|
)), p = null;
|
1601
|
-
}, o === void 0 && i.setContentType(null), "setRequestHeader" in p &&
|
1602
|
-
p.setRequestHeader(T,
|
1603
|
-
}),
|
1601
|
+
}, o === void 0 && i.setContentType(null), "setRequestHeader" in p && l.forEach(i.toJSON(), function(j, T) {
|
1602
|
+
p.setRequestHeader(T, j);
|
1603
|
+
}), l.isUndefined(s.withCredentials) || (p.withCredentials = !!s.withCredentials), a && a !== "json" && (p.responseType = s.responseType), c && ([m, h] = me(c, !0), p.addEventListener("progress", m)), u && p.upload && ([d, E] = me(u), p.upload.addEventListener("progress", d), p.upload.addEventListener("loadend", E)), (s.cancelToken || s.signal) && (f = (b) => {
|
1604
1604
|
p && (r(!b || b.type ? new V(null, e, p) : b), p.abort(), p = null);
|
1605
|
-
}, s.cancelToken && s.cancelToken.subscribe(
|
1605
|
+
}, s.cancelToken && s.cancelToken.subscribe(f), s.signal && (s.signal.aborted ? f() : s.signal.addEventListener("abort", f)));
|
1606
1606
|
const S = Yr(s.url);
|
1607
1607
|
if (S && O.protocols.indexOf(S) === -1) {
|
1608
1608
|
r(new w("Unsupported protocol " + S + ":", w.ERR_BAD_REQUEST, e));
|
@@ -1617,8 +1617,8 @@ const Vt = (e) => {
|
|
1617
1617
|
const o = function(c) {
|
1618
1618
|
if (!s) {
|
1619
1619
|
s = !0, a();
|
1620
|
-
const
|
1621
|
-
r.abort(
|
1620
|
+
const f = c instanceof Error ? c : this.reason;
|
1621
|
+
r.abort(f instanceof w ? f : new V(f instanceof Error ? f.message : f));
|
1622
1622
|
}
|
1623
1623
|
};
|
1624
1624
|
let i = t && setTimeout(() => {
|
@@ -1630,8 +1630,8 @@ const Vt = (e) => {
|
|
1630
1630
|
}), e = null);
|
1631
1631
|
};
|
1632
1632
|
e.forEach((c) => c.addEventListener("abort", o));
|
1633
|
-
const { signal:
|
1634
|
-
return
|
1633
|
+
const { signal: u } = r;
|
1634
|
+
return u.unsubscribe = () => l.asap(a), u;
|
1635
1635
|
}
|
1636
1636
|
}, is = function* (e, t) {
|
1637
1637
|
let n = e.byteLength;
|
@@ -1661,42 +1661,42 @@ const Vt = (e) => {
|
|
1661
1661
|
} finally {
|
1662
1662
|
await t.cancel();
|
1663
1663
|
}
|
1664
|
-
},
|
1664
|
+
}, ut = (e, t, n, r) => {
|
1665
1665
|
const s = as(e, t);
|
1666
|
-
let o = 0, i, a = (
|
1667
|
-
i || (i = !0, r && r(
|
1666
|
+
let o = 0, i, a = (u) => {
|
1667
|
+
i || (i = !0, r && r(u));
|
1668
1668
|
};
|
1669
1669
|
return new ReadableStream({
|
1670
|
-
async pull(
|
1670
|
+
async pull(u) {
|
1671
1671
|
try {
|
1672
|
-
const { done: c, value:
|
1672
|
+
const { done: c, value: f } = await s.next();
|
1673
1673
|
if (c) {
|
1674
|
-
a(),
|
1674
|
+
a(), u.close();
|
1675
1675
|
return;
|
1676
1676
|
}
|
1677
|
-
let d =
|
1677
|
+
let d = f.byteLength;
|
1678
1678
|
if (n) {
|
1679
1679
|
let m = o += d;
|
1680
1680
|
n(m);
|
1681
1681
|
}
|
1682
|
-
|
1682
|
+
u.enqueue(new Uint8Array(f));
|
1683
1683
|
} catch (c) {
|
1684
1684
|
throw a(c), c;
|
1685
1685
|
}
|
1686
1686
|
},
|
1687
|
-
cancel(
|
1688
|
-
return a(
|
1687
|
+
cancel(u) {
|
1688
|
+
return a(u), s.return();
|
1689
1689
|
}
|
1690
1690
|
}, {
|
1691
1691
|
highWaterMark: 2
|
1692
1692
|
});
|
1693
|
-
}, Se = typeof fetch == "function" && typeof Request == "function" && typeof Response == "function", Xt = Se && typeof ReadableStream == "function",
|
1693
|
+
}, Se = typeof fetch == "function" && typeof Request == "function" && typeof Response == "function", Xt = Se && typeof ReadableStream == "function", ls = Se && (typeof TextEncoder == "function" ? /* @__PURE__ */ ((e) => (t) => e.encode(t))(new TextEncoder()) : async (e) => new Uint8Array(await new Response(e).arrayBuffer())), Yt = (e, ...t) => {
|
1694
1694
|
try {
|
1695
1695
|
return !!e(...t);
|
1696
1696
|
} catch {
|
1697
1697
|
return !1;
|
1698
1698
|
}
|
1699
|
-
},
|
1699
|
+
}, us = Xt && Yt(() => {
|
1700
1700
|
let e = !1;
|
1701
1701
|
const t = new Request(O.origin, {
|
1702
1702
|
body: new ReadableStream(),
|
@@ -1706,12 +1706,12 @@ const Vt = (e) => {
|
|
1706
1706
|
}
|
1707
1707
|
}).headers.has("Content-Type");
|
1708
1708
|
return e && !t;
|
1709
|
-
}), ft = 64 * 1024, qe = Xt && Yt(() =>
|
1709
|
+
}), ft = 64 * 1024, qe = Xt && Yt(() => l.isReadableStream(new Response("").body)), ge = {
|
1710
1710
|
stream: qe && ((e) => e.body)
|
1711
1711
|
};
|
1712
1712
|
Se && ((e) => {
|
1713
1713
|
["text", "arrayBuffer", "blob", "formData", "stream"].forEach((t) => {
|
1714
|
-
!ge[t] && (ge[t] =
|
1714
|
+
!ge[t] && (ge[t] = l.isFunction(e[t]) ? (n) => n[t]() : (n, r) => {
|
1715
1715
|
throw new w(`Response type '${t}' is not supported`, w.ERR_NOT_SUPPORT, r);
|
1716
1716
|
});
|
1717
1717
|
});
|
@@ -1719,19 +1719,19 @@ Se && ((e) => {
|
|
1719
1719
|
const fs = async (e) => {
|
1720
1720
|
if (e == null)
|
1721
1721
|
return 0;
|
1722
|
-
if (
|
1722
|
+
if (l.isBlob(e))
|
1723
1723
|
return e.size;
|
1724
|
-
if (
|
1724
|
+
if (l.isSpecCompliantForm(e))
|
1725
1725
|
return (await new Request(O.origin, {
|
1726
1726
|
method: "POST",
|
1727
1727
|
body: e
|
1728
1728
|
}).arrayBuffer()).byteLength;
|
1729
|
-
if (
|
1729
|
+
if (l.isArrayBufferView(e) || l.isArrayBuffer(e))
|
1730
1730
|
return e.byteLength;
|
1731
|
-
if (
|
1732
|
-
return (await
|
1731
|
+
if (l.isURLSearchParams(e) && (e = e + ""), l.isString(e))
|
1732
|
+
return (await ls(e)).byteLength;
|
1733
1733
|
}, ds = async (e, t) => {
|
1734
|
-
const n =
|
1734
|
+
const n = l.toFiniteNumber(e.getContentLength());
|
1735
1735
|
return n ?? fs(t);
|
1736
1736
|
}, hs = Se && (async (e) => {
|
1737
1737
|
let {
|
@@ -1742,9 +1742,9 @@ const fs = async (e) => {
|
|
1742
1742
|
cancelToken: o,
|
1743
1743
|
timeout: i,
|
1744
1744
|
onDownloadProgress: a,
|
1745
|
-
onUploadProgress:
|
1745
|
+
onUploadProgress: u,
|
1746
1746
|
responseType: c,
|
1747
|
-
headers:
|
1747
|
+
headers: f,
|
1748
1748
|
withCredentials: d = "same-origin",
|
1749
1749
|
fetchOptions: m
|
1750
1750
|
} = Vt(e);
|
@@ -1755,27 +1755,27 @@ const fs = async (e) => {
|
|
1755
1755
|
});
|
1756
1756
|
let p;
|
1757
1757
|
try {
|
1758
|
-
if (
|
1758
|
+
if (u && us && n !== "get" && n !== "head" && (p = await ds(f, r)) !== 0) {
|
1759
1759
|
let T = new Request(t, {
|
1760
1760
|
method: "POST",
|
1761
1761
|
body: r,
|
1762
1762
|
duplex: "half"
|
1763
|
-
}),
|
1764
|
-
if (
|
1765
|
-
const [
|
1763
|
+
}), F;
|
1764
|
+
if (l.isFormData(r) && (F = T.headers.get("content-type")) && f.setContentType(F), T.body) {
|
1765
|
+
const [M, ie] = at(
|
1766
1766
|
p,
|
1767
|
-
me(ct(
|
1767
|
+
me(ct(u))
|
1768
1768
|
);
|
1769
|
-
r =
|
1769
|
+
r = ut(T.body, ft, M, ie);
|
1770
1770
|
}
|
1771
1771
|
}
|
1772
|
-
|
1772
|
+
l.isString(d) || (d = d ? "include" : "omit");
|
1773
1773
|
const y = "credentials" in Request.prototype;
|
1774
1774
|
h = new Request(t, {
|
1775
1775
|
...m,
|
1776
1776
|
signal: E,
|
1777
1777
|
method: n.toUpperCase(),
|
1778
|
-
headers:
|
1778
|
+
headers: f.normalize().toJSON(),
|
1779
1779
|
body: r,
|
1780
1780
|
duplex: "half",
|
1781
1781
|
credentials: y ? d : void 0
|
@@ -1787,22 +1787,22 @@ const fs = async (e) => {
|
|
1787
1787
|
["status", "statusText", "headers"].forEach((et) => {
|
1788
1788
|
T[et] = S[et];
|
1789
1789
|
});
|
1790
|
-
const
|
1791
|
-
|
1790
|
+
const F = l.toFiniteNumber(S.headers.get("content-length")), [M, ie] = a && at(
|
1791
|
+
F,
|
1792
1792
|
me(ct(a), !0)
|
1793
1793
|
) || [];
|
1794
1794
|
S = new Response(
|
1795
|
-
|
1795
|
+
ut(S.body, ft, M, () => {
|
1796
1796
|
ie && ie(), g && g();
|
1797
1797
|
}),
|
1798
1798
|
T
|
1799
1799
|
);
|
1800
1800
|
}
|
1801
1801
|
c = c || "text";
|
1802
|
-
let
|
1803
|
-
return !b && g && g(), await new Promise((T,
|
1804
|
-
|
1805
|
-
data:
|
1802
|
+
let j = await ge[l.findKey(ge, c) || "text"](S, e);
|
1803
|
+
return !b && g && g(), await new Promise((T, F) => {
|
1804
|
+
zt(T, F, {
|
1805
|
+
data: j,
|
1806
1806
|
headers: C.from(S.headers),
|
1807
1807
|
status: S.status,
|
1808
1808
|
statusText: S.statusText,
|
@@ -1823,7 +1823,7 @@ const fs = async (e) => {
|
|
1823
1823
|
xhr: ss,
|
1824
1824
|
fetch: hs
|
1825
1825
|
};
|
1826
|
-
|
1826
|
+
l.forEach(He, (e, t) => {
|
1827
1827
|
if (e) {
|
1828
1828
|
try {
|
1829
1829
|
Object.defineProperty(e, "name", { value: t });
|
@@ -1832,9 +1832,9 @@ u.forEach(He, (e, t) => {
|
|
1832
1832
|
Object.defineProperty(e, "adapterName", { value: t });
|
1833
1833
|
}
|
1834
1834
|
});
|
1835
|
-
const dt = (e) => `- ${e}`, ps = (e) =>
|
1835
|
+
const dt = (e) => `- ${e}`, ps = (e) => l.isFunction(e) || e === null || e === !1, Gt = {
|
1836
1836
|
getAdapter: (e) => {
|
1837
|
-
e =
|
1837
|
+
e = l.isArray(e) ? e : [e];
|
1838
1838
|
const { length: t } = e;
|
1839
1839
|
let n, r;
|
1840
1840
|
const s = {};
|
@@ -1849,7 +1849,7 @@ const dt = (e) => `- ${e}`, ps = (e) => u.isFunction(e) || e === null || e === !
|
|
1849
1849
|
}
|
1850
1850
|
if (!r) {
|
1851
1851
|
const o = Object.entries(s).map(
|
1852
|
-
([a,
|
1852
|
+
([a, u]) => `adapter ${a} ` + (u === !1 ? "is not supported by the environment" : "is not available in the build")
|
1853
1853
|
);
|
1854
1854
|
let i = t ? o.length > 1 ? `since :
|
1855
1855
|
` + o.map(dt).join(`
|
@@ -1863,22 +1863,22 @@ const dt = (e) => `- ${e}`, ps = (e) => u.isFunction(e) || e === null || e === !
|
|
1863
1863
|
},
|
1864
1864
|
adapters: He
|
1865
1865
|
};
|
1866
|
-
function
|
1866
|
+
function je(e) {
|
1867
1867
|
if (e.cancelToken && e.cancelToken.throwIfRequested(), e.signal && e.signal.aborted)
|
1868
1868
|
throw new V(null, e);
|
1869
1869
|
}
|
1870
1870
|
function ht(e) {
|
1871
|
-
return
|
1871
|
+
return je(e), e.headers = C.from(e.headers), e.data = ve.call(
|
1872
1872
|
e,
|
1873
1873
|
e.transformRequest
|
1874
1874
|
), ["post", "put", "patch"].indexOf(e.method) !== -1 && e.headers.setContentType("application/x-www-form-urlencoded", !1), Gt.getAdapter(e.adapter || oe.adapter)(e).then(function(r) {
|
1875
|
-
return
|
1875
|
+
return je(e), r.data = ve.call(
|
1876
1876
|
e,
|
1877
1877
|
e.transformResponse,
|
1878
1878
|
r
|
1879
1879
|
), r.headers = C.from(r.headers), r;
|
1880
1880
|
}, function(r) {
|
1881
|
-
return
|
1881
|
+
return Wt(r) || (je(e), r && r.response && (r.response.data = ve.call(
|
1882
1882
|
e,
|
1883
1883
|
e.transformResponse,
|
1884
1884
|
r.response
|
@@ -1921,9 +1921,9 @@ function ms(e, t, n) {
|
|
1921
1921
|
for (; s-- > 0; ) {
|
1922
1922
|
const o = r[s], i = t[o];
|
1923
1923
|
if (i) {
|
1924
|
-
const a = e[o],
|
1925
|
-
if (
|
1926
|
-
throw new w("option " + o + " must be " +
|
1924
|
+
const a = e[o], u = a === void 0 || i(a, o, e);
|
1925
|
+
if (u !== !0)
|
1926
|
+
throw new w("option " + o + " must be " + u, w.ERR_BAD_OPTION_VALUE);
|
1927
1927
|
continue;
|
1928
1928
|
}
|
1929
1929
|
if (n !== !0)
|
@@ -1973,7 +1973,7 @@ let q = class {
|
|
1973
1973
|
silentJSONParsing: N.transitional(N.boolean),
|
1974
1974
|
forcedJSONParsing: N.transitional(N.boolean),
|
1975
1975
|
clarifyTimeoutError: N.transitional(N.boolean)
|
1976
|
-
}, !1), s != null && (
|
1976
|
+
}, !1), s != null && (l.isFunction(s) ? n.paramsSerializer = {
|
1977
1977
|
serialize: s
|
1978
1978
|
} : he.assertOptions(s, {
|
1979
1979
|
encode: N.function,
|
@@ -1982,31 +1982,31 @@ let q = class {
|
|
1982
1982
|
baseUrl: N.spelling("baseURL"),
|
1983
1983
|
withXsrfToken: N.spelling("withXSRFToken")
|
1984
1984
|
}, !0), n.method = (n.method || this.defaults.method || "get").toLowerCase();
|
1985
|
-
let i = o &&
|
1985
|
+
let i = o && l.merge(
|
1986
1986
|
o.common,
|
1987
1987
|
o[n.method]
|
1988
1988
|
);
|
1989
|
-
o &&
|
1989
|
+
o && l.forEach(
|
1990
1990
|
["delete", "get", "head", "post", "put", "patch", "common"],
|
1991
1991
|
(h) => {
|
1992
1992
|
delete o[h];
|
1993
1993
|
}
|
1994
1994
|
), n.headers = C.concat(i, o);
|
1995
1995
|
const a = [];
|
1996
|
-
let
|
1996
|
+
let u = !0;
|
1997
1997
|
this.interceptors.request.forEach(function(g) {
|
1998
|
-
typeof g.runWhen == "function" && g.runWhen(n) === !1 || (
|
1998
|
+
typeof g.runWhen == "function" && g.runWhen(n) === !1 || (u = u && g.synchronous, a.unshift(g.fulfilled, g.rejected));
|
1999
1999
|
});
|
2000
2000
|
const c = [];
|
2001
2001
|
this.interceptors.response.forEach(function(g) {
|
2002
2002
|
c.push(g.fulfilled, g.rejected);
|
2003
2003
|
});
|
2004
|
-
let
|
2005
|
-
if (!
|
2004
|
+
let f, d = 0, m;
|
2005
|
+
if (!u) {
|
2006
2006
|
const h = [ht.bind(this), void 0];
|
2007
|
-
for (h.unshift.apply(h, a), h.push.apply(h, c), m = h.length,
|
2008
|
-
|
2009
|
-
return
|
2007
|
+
for (h.unshift.apply(h, a), h.push.apply(h, c), m = h.length, f = Promise.resolve(n); d < m; )
|
2008
|
+
f = f.then(h[d++], h[d++]);
|
2009
|
+
return f;
|
2010
2010
|
}
|
2011
2011
|
m = a.length;
|
2012
2012
|
let E = n;
|
@@ -2020,13 +2020,13 @@ let q = class {
|
|
2020
2020
|
}
|
2021
2021
|
}
|
2022
2022
|
try {
|
2023
|
-
|
2023
|
+
f = ht.call(this, E);
|
2024
2024
|
} catch (h) {
|
2025
2025
|
return Promise.reject(h);
|
2026
2026
|
}
|
2027
2027
|
for (d = 0, m = c.length; d < m; )
|
2028
|
-
|
2029
|
-
return
|
2028
|
+
f = f.then(c[d++], c[d++]);
|
2029
|
+
return f;
|
2030
2030
|
}
|
2031
2031
|
getUri(t) {
|
2032
2032
|
t = H(this.defaults, t);
|
@@ -2034,7 +2034,7 @@ let q = class {
|
|
2034
2034
|
return Ht(n, t.params, t.paramsSerializer);
|
2035
2035
|
}
|
2036
2036
|
};
|
2037
|
-
|
2037
|
+
l.forEach(["delete", "get", "head", "options"], function(t) {
|
2038
2038
|
q.prototype[t] = function(n, r) {
|
2039
2039
|
return this.request(H(r || {}, {
|
2040
2040
|
method: t,
|
@@ -2043,7 +2043,7 @@ u.forEach(["delete", "get", "head", "options"], function(t) {
|
|
2043
2043
|
}));
|
2044
2044
|
};
|
2045
2045
|
});
|
2046
|
-
|
2046
|
+
l.forEach(["post", "put", "patch"], function(t) {
|
2047
2047
|
function n(r) {
|
2048
2048
|
return function(o, i, a) {
|
2049
2049
|
return this.request(H(a || {}, {
|
@@ -2137,7 +2137,7 @@ function ws(e) {
|
|
2137
2137
|
};
|
2138
2138
|
}
|
2139
2139
|
function ys(e) {
|
2140
|
-
return
|
2140
|
+
return l.isObject(e) && e.isAxiosError === !0;
|
2141
2141
|
}
|
2142
2142
|
const $e = {
|
2143
2143
|
Continue: 100,
|
@@ -2208,8 +2208,8 @@ Object.entries($e).forEach(([e, t]) => {
|
|
2208
2208
|
$e[t] = e;
|
2209
2209
|
});
|
2210
2210
|
function en(e) {
|
2211
|
-
const t = new q(e), n =
|
2212
|
-
return
|
2211
|
+
const t = new q(e), n = jt(q.prototype.request, t);
|
2212
|
+
return l.extend(n, q.prototype, t, { allOwnKeys: !0 }), l.extend(n, t, null, { allOwnKeys: !0 }), n.create = function(s) {
|
2213
2213
|
return en(H(e, s));
|
2214
2214
|
}, n;
|
2215
2215
|
}
|
@@ -2217,7 +2217,7 @@ const _ = en(oe);
|
|
2217
2217
|
_.Axios = q;
|
2218
2218
|
_.CanceledError = V;
|
2219
2219
|
_.CancelToken = gs;
|
2220
|
-
_.isCancel =
|
2220
|
+
_.isCancel = Wt;
|
2221
2221
|
_.VERSION = Qt;
|
2222
2222
|
_.toFormData = Ee;
|
2223
2223
|
_.AxiosError = w;
|
@@ -2229,7 +2229,7 @@ _.spread = ws;
|
|
2229
2229
|
_.isAxiosError = ys;
|
2230
2230
|
_.mergeConfig = H;
|
2231
2231
|
_.AxiosHeaders = C;
|
2232
|
-
_.formToJSON = (e) => Jt(
|
2232
|
+
_.formToJSON = (e) => Jt(l.isHTMLForm(e) ? new FormData(e) : e);
|
2233
2233
|
_.getAdapter = Gt.getAdapter;
|
2234
2234
|
_.HttpStatusCode = $e;
|
2235
2235
|
_.default = _;
|
@@ -2245,8 +2245,8 @@ const {
|
|
2245
2245
|
isAxiosError: io,
|
2246
2246
|
spread: ao,
|
2247
2247
|
toFormData: co,
|
2248
|
-
AxiosHeaders:
|
2249
|
-
HttpStatusCode:
|
2248
|
+
AxiosHeaders: lo,
|
2249
|
+
HttpStatusCode: uo,
|
2250
2250
|
formToJSON: fo,
|
2251
2251
|
getAdapter: ho,
|
2252
2252
|
mergeConfig: po
|
@@ -2279,7 +2279,7 @@ let _s = class {
|
|
2279
2279
|
},
|
2280
2280
|
n
|
2281
2281
|
)
|
2282
|
-
), this.setupSkipWarn(this.settings), this.showLoading = cn(this.openLoading.bind(this), Es), this.showError =
|
2282
|
+
), this.setupSkipWarn(this.settings), this.showLoading = cn(this.openLoading.bind(this), Es), this.showError = ln(this._showError.bind(this), Ss, {
|
2283
2283
|
leading: !0,
|
2284
2284
|
trailing: !1
|
2285
2285
|
});
|
@@ -2321,27 +2321,27 @@ let _s = class {
|
|
2321
2321
|
}), r;
|
2322
2322
|
}
|
2323
2323
|
createSendData(t, n, r, s, o = {}) {
|
2324
|
-
const { type: i, skipWarn: a } = t, { name:
|
2325
|
-
let { data: c, params:
|
2326
|
-
const m = s ? { [
|
2327
|
-
return Rs.includes(d.toLowerCase()) ? (c = Object.assign(c || {}, m), c = i !== "json" || !this.isJsonType(r) ? this.toFormData(c, i) : c,
|
2324
|
+
const { type: i, skipWarn: a } = t, { name: u = "skipWarn" } = a || {};
|
2325
|
+
let { data: c, params: f = {}, method: d = "get" } = n;
|
2326
|
+
const m = s ? { [u]: !0 } : {};
|
2327
|
+
return Rs.includes(d.toLowerCase()) ? (c = Object.assign(c || {}, m), c = i !== "json" || !this.isJsonType(r) ? this.toFormData(c, i) : c, f = {
|
2328
2328
|
...o
|
2329
|
-
}) : i === "form" ?
|
2329
|
+
}) : i === "form" ? f = {
|
2330
2330
|
...c || {},
|
2331
2331
|
...o,
|
2332
2332
|
...m
|
2333
|
-
} : (c && (i !== "json" || !this.isJsonType(r)) && (c = this.toFormData(c, i)),
|
2333
|
+
} : (c && (i !== "json" || !this.isJsonType(r)) && (c = this.toFormData(c, i)), f = {
|
2334
2334
|
...o,
|
2335
2335
|
...m
|
2336
2336
|
}), {
|
2337
2337
|
data: c,
|
2338
|
-
params:
|
2338
|
+
params: f
|
2339
2339
|
};
|
2340
2340
|
}
|
2341
2341
|
createUrl(t) {
|
2342
2342
|
let { url: n, params: r } = t;
|
2343
2343
|
if (n) {
|
2344
|
-
let s =
|
2344
|
+
let s = un(n) ? new URL(n).origin : "";
|
2345
2345
|
const o = s ? n.replace(s, "") : n;
|
2346
2346
|
try {
|
2347
2347
|
const i = fn(o, {
|
@@ -2385,7 +2385,7 @@ let _s = class {
|
|
2385
2385
|
"query"
|
2386
2386
|
]), i = dn(!1), a = _.CancelToken.source();
|
2387
2387
|
this.records[i] = { settings: r, config: o, source: a };
|
2388
|
-
const
|
2388
|
+
const u = this.createUrl(o), c = this.createHeaders(i, r, o), { data: f, params: d } = this.createSendData(
|
2389
2389
|
r,
|
2390
2390
|
o,
|
2391
2391
|
c,
|
@@ -2396,9 +2396,9 @@ let _s = class {
|
|
2396
2396
|
this.axios({
|
2397
2397
|
cancelToken: a.token,
|
2398
2398
|
...o,
|
2399
|
-
url:
|
2399
|
+
url: u,
|
2400
2400
|
headers: c,
|
2401
|
-
data:
|
2401
|
+
data: f,
|
2402
2402
|
params: d
|
2403
2403
|
}).then((h) => this.isSkipWarnResponse(h) ? m(h.promise) : this.validResponse(r, h) ? m(r.originResponse ? h : h.data?.data) : (this.showError(r, h.data), E(h.data))).catch((h) => (this.showError(r, h), E(h))).finally(() => {
|
2404
2404
|
delete this.records[i], this.closeLoading(r);
|
@@ -2417,11 +2417,11 @@ let _s = class {
|
|
2417
2417
|
if (this.stopSkipWarn && (this.stopSkipWarn(), this.stopSkipWarn = void 0), !t.skipWarn) return;
|
2418
2418
|
const { code: n, executor: r, callback: s, complete: o } = t.skipWarn;
|
2419
2419
|
this.stopSkipWarn = this.useResponse((i) => {
|
2420
|
-
const
|
2420
|
+
const u = (i.config.headers || {})[mt], c = this.records[u];
|
2421
2421
|
if (!c) return i;
|
2422
|
-
const { data:
|
2423
|
-
if (!
|
2424
|
-
if (
|
2422
|
+
const { data: f } = i;
|
2423
|
+
if (!f || typeof f != "object") return i;
|
2424
|
+
if (f?.code === n) {
|
2425
2425
|
s && s(i);
|
2426
2426
|
const d = new Promise(r).then(() => this.send(
|
2427
2427
|
{
|
@@ -2527,12 +2527,12 @@ class As {
|
|
2527
2527
|
this.options = Object.assign(this.options, t);
|
2528
2528
|
}
|
2529
2529
|
save(t, n, r = {}) {
|
2530
|
-
const { type: s, expired: o, prefix: i } = { ...this.options, ...r }, a = Date.now(),
|
2530
|
+
const { type: s, expired: o, prefix: i } = { ...this.options, ...r }, a = Date.now(), u = i + t, c = this.types[s] || this.caches, f = {
|
2531
2531
|
value: n,
|
2532
2532
|
timestamp: a,
|
2533
2533
|
expired: o
|
2534
2534
|
};
|
2535
|
-
c === this.caches ? c[
|
2535
|
+
c === this.caches ? c[u] = f : c.setItem(u, JSON.stringify(f));
|
2536
2536
|
}
|
2537
2537
|
get(t, n = {}) {
|
2538
2538
|
const { type: r, prefix: s } = { ...this.options, ...n }, o = s + t, i = this.types[r] || this.caches;
|
@@ -2544,8 +2544,8 @@ class As {
|
|
2544
2544
|
m && (a = JSON.parse(m));
|
2545
2545
|
}
|
2546
2546
|
if (!a) return null;
|
2547
|
-
const { value:
|
2548
|
-
return
|
2547
|
+
const { value: u, timestamp: c, expired: f } = a;
|
2548
|
+
return f > 0 && c + f < Date.now() ? (this.remove(t, n), null) : u;
|
2549
2549
|
}
|
2550
2550
|
remove(t, n = {}) {
|
2551
2551
|
const { type: r, prefix: s } = { ...this.options, ...n }, o = this.types[r] || this.caches, i = s + t;
|
@@ -2581,24 +2581,24 @@ function Ps() {
|
|
2581
2581
|
}
|
2582
2582
|
}
|
2583
2583
|
function a(c) {
|
2584
|
-
var
|
2585
|
-
|
2584
|
+
var f = document.getElementById(c);
|
2585
|
+
f && document.getElementsByTagName("head")[0].removeChild(f);
|
2586
2586
|
}
|
2587
|
-
function
|
2588
|
-
var
|
2587
|
+
function u(c) {
|
2588
|
+
var f = arguments.length <= 1 || arguments[1] === void 0 ? {} : arguments[1], d = c, m = f.timeout || s.timeout, E = f.jsonpCallback || s.jsonpCallback, h = void 0;
|
2589
2589
|
return new Promise(function(g, p) {
|
2590
|
-
var y =
|
2591
|
-
window[y] = function(
|
2590
|
+
var y = f.jsonpCallbackFunction || o(), S = E + "_" + y;
|
2591
|
+
window[y] = function(j) {
|
2592
2592
|
g({
|
2593
2593
|
ok: !0,
|
2594
2594
|
// keep consistent with fetch API
|
2595
2595
|
json: function() {
|
2596
|
-
return Promise.resolve(
|
2596
|
+
return Promise.resolve(j);
|
2597
2597
|
}
|
2598
2598
|
}), h && clearTimeout(h), a(S), i(y);
|
2599
2599
|
}, d += d.indexOf("?") === -1 ? "?" : "&";
|
2600
2600
|
var b = document.createElement("script");
|
2601
|
-
b.setAttribute("src", "" + d + E + "=" + y),
|
2601
|
+
b.setAttribute("src", "" + d + E + "=" + y), f.charset && b.setAttribute("charset", f.charset), f.nonce && b.setAttribute("nonce", f.nonce), f.referrerPolicy && b.setAttribute("referrerPolicy", f.referrerPolicy), f.crossorigin && b.setAttribute("crossorigin", "true"), b.id = S, document.getElementsByTagName("head")[0].appendChild(b), h = setTimeout(function() {
|
2602
2602
|
p(new Error("JSONP request to " + c + " timed out")), i(y), a(S), window[y] = function() {
|
2603
2603
|
i(y);
|
2604
2604
|
};
|
@@ -2607,12 +2607,12 @@ function Ps() {
|
|
2607
2607
|
};
|
2608
2608
|
});
|
2609
2609
|
}
|
2610
|
-
r.exports =
|
2610
|
+
r.exports = u;
|
2611
2611
|
});
|
2612
2612
|
}(Q, Q.exports)), Q.exports;
|
2613
2613
|
}
|
2614
|
-
var
|
2615
|
-
const
|
2614
|
+
var vs = Ps();
|
2615
|
+
const js = /* @__PURE__ */ tn(vs);
|
2616
2616
|
function Ls(e) {
|
2617
2617
|
if (ne) {
|
2618
2618
|
const { protocol: t, host: n, pathname: r } = location;
|
@@ -2659,17 +2659,17 @@ async function xo(e, t = {}) {
|
|
2659
2659
|
const { query: n = {} } = t;
|
2660
2660
|
e.includes("${") && (e = pn(e)(n || {}));
|
2661
2661
|
const r = rn(e, n);
|
2662
|
-
return await (await
|
2662
|
+
return await (await js(r, t)).json();
|
2663
2663
|
}
|
2664
2664
|
var Le, wt;
|
2665
|
-
function
|
2665
|
+
function Us() {
|
2666
2666
|
if (wt) return Le;
|
2667
2667
|
wt = 1, Le = function(s, o, i) {
|
2668
|
-
var a = document.head || document.getElementsByTagName("head")[0],
|
2668
|
+
var a = document.head || document.getElementsByTagName("head")[0], u = document.createElement("script");
|
2669
2669
|
typeof o == "function" && (i = o, o = {}), o = o || {}, i = i || function() {
|
2670
|
-
},
|
2671
|
-
var c = "onload" in
|
2672
|
-
c(
|
2670
|
+
}, u.type = o.type || "text/javascript", u.charset = o.charset || "utf8", u.async = "async" in o ? !!o.async : !0, u.src = s, o.attrs && e(u, o.attrs), o.text && (u.text = "" + o.text);
|
2671
|
+
var c = "onload" in u ? t : n;
|
2672
|
+
c(u, i), u.onload || t(u, i), a.appendChild(u);
|
2673
2673
|
};
|
2674
2674
|
function e(r, s) {
|
2675
2675
|
for (var o in s)
|
@@ -2689,8 +2689,8 @@ function Fs() {
|
|
2689
2689
|
}
|
2690
2690
|
return Le;
|
2691
2691
|
}
|
2692
|
-
var
|
2693
|
-
const Ds = /* @__PURE__ */ tn(
|
2692
|
+
var Fs = Us();
|
2693
|
+
const Ds = /* @__PURE__ */ tn(Fs);
|
2694
2694
|
function Ao(e, t = {}) {
|
2695
2695
|
return new Promise((n, r) => {
|
2696
2696
|
const { library: s } = t;
|
@@ -2703,13 +2703,13 @@ const yt = { debug: -1, log: 0, info: 0, warn: 1, error: 2 }, Bs = function(e, t
|
|
2703
2703
|
return function(...s) {
|
2704
2704
|
if (t && yt[t] <= yt[e] && // @ts-ignore
|
2705
2705
|
console[e].apply && (r === "*" || n.startsWith(r)))
|
2706
|
-
return console[e].apply(console,
|
2706
|
+
return console[e].apply(console, Ms(s, n));
|
2707
2707
|
};
|
2708
2708
|
};
|
2709
|
-
function
|
2709
|
+
function Ms(e, t) {
|
2710
2710
|
return t !== "*" && (typeof e[0] == "string" ? e[0] = `[${t}] ${e[0]}` : e = ["[" + t + "]"].concat(e)), e;
|
2711
2711
|
}
|
2712
|
-
function
|
2712
|
+
function Is(e, t) {
|
2713
2713
|
if (!e)
|
2714
2714
|
return {
|
2715
2715
|
targetLevel: t.level,
|
@@ -2727,7 +2727,7 @@ function ks(e, t) {
|
|
2727
2727
|
targetBizName: "*"
|
2728
2728
|
};
|
2729
2729
|
}
|
2730
|
-
const
|
2730
|
+
const ks = {
|
2731
2731
|
level: "warn",
|
2732
2732
|
bizName: "*"
|
2733
2733
|
};
|
@@ -2735,11 +2735,11 @@ class qs {
|
|
2735
2735
|
constructor(t) {
|
2736
2736
|
P(this, "config");
|
2737
2737
|
P(this, "options");
|
2738
|
-
this.options = { ...
|
2738
|
+
this.options = { ...ks, ...t };
|
2739
2739
|
const n = typeof location < "u" ? location : {}, r = (/__(?:logConf|logLevel)__=([^#/&]*)/.exec(
|
2740
2740
|
n.href
|
2741
2741
|
) || [])[1];
|
2742
|
-
this.config =
|
2742
|
+
this.config = Is(r, t);
|
2743
2743
|
}
|
2744
2744
|
_log(t) {
|
2745
2745
|
const { targetLevel: n, targetBizName: r } = this.config, { bizName: s } = this.options;
|
@@ -2766,7 +2766,7 @@ function Hs(e) {
|
|
2766
2766
|
}
|
2767
2767
|
const Co = Hs({ level: "log", bizName: "VTJ" });
|
2768
2768
|
/*! js-cookie v3.0.5 | MIT */
|
2769
|
-
function
|
2769
|
+
function le(e) {
|
2770
2770
|
for (var t = 1; t < arguments.length; t++) {
|
2771
2771
|
var n = arguments[t];
|
2772
2772
|
for (var r in n)
|
@@ -2785,23 +2785,23 @@ var $s = {
|
|
2785
2785
|
);
|
2786
2786
|
}
|
2787
2787
|
};
|
2788
|
-
function
|
2788
|
+
function We(e, t) {
|
2789
2789
|
function n(s, o, i) {
|
2790
2790
|
if (!(typeof document > "u")) {
|
2791
|
-
i =
|
2791
|
+
i = le({}, t, i), typeof i.expires == "number" && (i.expires = new Date(Date.now() + i.expires * 864e5)), i.expires && (i.expires = i.expires.toUTCString()), s = encodeURIComponent(s).replace(/%(2[346B]|5E|60|7C)/g, decodeURIComponent).replace(/[()]/g, escape);
|
2792
2792
|
var a = "";
|
2793
|
-
for (var
|
2794
|
-
i[
|
2793
|
+
for (var u in i)
|
2794
|
+
i[u] && (a += "; " + u, i[u] !== !0 && (a += "=" + i[u].split(";")[0]));
|
2795
2795
|
return document.cookie = s + "=" + e.write(o, s) + a;
|
2796
2796
|
}
|
2797
2797
|
}
|
2798
2798
|
function r(s) {
|
2799
2799
|
if (!(typeof document > "u" || arguments.length && !s)) {
|
2800
2800
|
for (var o = document.cookie ? document.cookie.split("; ") : [], i = {}, a = 0; a < o.length; a++) {
|
2801
|
-
var
|
2801
|
+
var u = o[a].split("="), c = u.slice(1).join("=");
|
2802
2802
|
try {
|
2803
|
-
var
|
2804
|
-
if (i[
|
2803
|
+
var f = decodeURIComponent(u[0]);
|
2804
|
+
if (i[f] = e.read(c, f), s === f)
|
2805
2805
|
break;
|
2806
2806
|
} catch {
|
2807
2807
|
}
|
@@ -2817,16 +2817,16 @@ function ze(e, t) {
|
|
2817
2817
|
n(
|
2818
2818
|
s,
|
2819
2819
|
"",
|
2820
|
-
|
2820
|
+
le({}, o, {
|
2821
2821
|
expires: -1
|
2822
2822
|
})
|
2823
2823
|
);
|
2824
2824
|
},
|
2825
2825
|
withAttributes: function(s) {
|
2826
|
-
return
|
2826
|
+
return We(this.converter, le({}, this.attributes, s));
|
2827
2827
|
},
|
2828
2828
|
withConverter: function(s) {
|
2829
|
-
return
|
2829
|
+
return We(le({}, this.converter, s), this.attributes);
|
2830
2830
|
}
|
2831
2831
|
},
|
2832
2832
|
{
|
@@ -2835,23 +2835,23 @@ function ze(e, t) {
|
|
2835
2835
|
}
|
2836
2836
|
);
|
2837
2837
|
}
|
2838
|
-
var Ze =
|
2838
|
+
var Ze = We($s, { path: "/" });
|
2839
2839
|
function Js(e, t, n) {
|
2840
2840
|
Ze.set(e, t, n);
|
2841
2841
|
}
|
2842
|
-
function
|
2842
|
+
function Ws(e) {
|
2843
2843
|
return Ze.get(e);
|
2844
2844
|
}
|
2845
|
-
function
|
2845
|
+
function zs(e, t) {
|
2846
2846
|
Ze.remove(e, t);
|
2847
2847
|
}
|
2848
2848
|
const Po = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
2849
2849
|
__proto__: null,
|
2850
|
-
get:
|
2851
|
-
remove:
|
2850
|
+
get: Ws,
|
2851
|
+
remove: zs,
|
2852
2852
|
set: Js
|
2853
2853
|
}, Symbol.toStringTag, { value: "Module" }));
|
2854
|
-
function
|
2854
|
+
function vo(e, t = "") {
|
2855
2855
|
const n = document.createElement("a");
|
2856
2856
|
n.download = t, n.href = e, n.target = "_blank", n.click();
|
2857
2857
|
}
|
@@ -2859,7 +2859,7 @@ function sn(e, t = "", n) {
|
|
2859
2859
|
const r = new Blob([e], { type: n }), s = document.createElement("a");
|
2860
2860
|
s.download = t, s.style.display = "none", s.href = URL.createObjectURL(r), s.click(), URL.revokeObjectURL(s.href);
|
2861
2861
|
}
|
2862
|
-
async function
|
2862
|
+
async function jo(e, t = "", n) {
|
2863
2863
|
return fetch(e, { credentials: "include" }).then(async (r) => {
|
2864
2864
|
const s = await r.blob();
|
2865
2865
|
return sn(s, t, n), s;
|
@@ -2869,6 +2869,73 @@ function Lo(e, t = "") {
|
|
2869
2869
|
const n = JSON.stringify(e);
|
2870
2870
|
sn(n, t, "application/json");
|
2871
2871
|
}
|
2872
|
+
function No() {
|
2873
|
+
const e = navigator.userAgent;
|
2874
|
+
let t = "Unknown", n = "Unknown", r = "Unknown", s = "Unknown", o = !1;
|
2875
|
+
if (/Windows NT/i.test(e)) {
|
2876
|
+
t = "Windows";
|
2877
|
+
const a = {
|
2878
|
+
"12.0": "12",
|
2879
|
+
"11.0": "11",
|
2880
|
+
"10.0": "10",
|
2881
|
+
"6.3": "8.1",
|
2882
|
+
"6.2": "8",
|
2883
|
+
"6.1": "7",
|
2884
|
+
"6.0": "Vista",
|
2885
|
+
"5.2": "XP 64-bit",
|
2886
|
+
"5.1": "XP"
|
2887
|
+
}, u = e.match(/Windows NT (\d+\.\d+)/);
|
2888
|
+
u && (n = a[u[1]] || u[1]);
|
2889
|
+
} else if (/Mac OS X/i.test(e)) {
|
2890
|
+
t = "Mac OS";
|
2891
|
+
const a = e.match(/Mac OS X (\d+[._]\d+[._]?\d*)/);
|
2892
|
+
a && (n = a[1].replace(/_/g, "."));
|
2893
|
+
} else if (/(iPhone|iPad|iPod)/i.test(e)) {
|
2894
|
+
t = "iOS";
|
2895
|
+
const a = e.match(/OS (\d+[_\.]\d+[_\.]?\d*)/);
|
2896
|
+
a && (n = a[1].replace(/_/g, "."));
|
2897
|
+
} else if (/Android/i.test(e)) {
|
2898
|
+
t = "Android";
|
2899
|
+
const a = e.match(/Android (\d+\.\d+)/);
|
2900
|
+
a && (n = a[1]);
|
2901
|
+
} else /Linux/i.test(e) && (t = "Linux");
|
2902
|
+
const i = e.match(/(Edge|Edg|Edga|EdgA)\/(\d+)/i);
|
2903
|
+
if (i)
|
2904
|
+
r = "Microsoft Edge", s = i[2];
|
2905
|
+
else {
|
2906
|
+
const a = e.match(/Firefox\/(\d+)/i);
|
2907
|
+
if (a)
|
2908
|
+
r = "Firefox", s = a[1];
|
2909
|
+
else {
|
2910
|
+
const u = e.match(/(Opera|OPR)\/(\d+)/i);
|
2911
|
+
if (u)
|
2912
|
+
r = "Opera", s = u[2];
|
2913
|
+
else {
|
2914
|
+
const c = e.match(/Chrome\/(\d+)/i);
|
2915
|
+
if (c)
|
2916
|
+
r = "Chrome", s = c[1];
|
2917
|
+
else {
|
2918
|
+
const f = e.match(/Version\/(\d+\.\d+)/i);
|
2919
|
+
if (f && /Safari/i.test(e))
|
2920
|
+
r = "Safari", s = f[1];
|
2921
|
+
else {
|
2922
|
+
const d = e.match(/(MSIE |Trident.*rv:)(\d+)/i);
|
2923
|
+
d && (r = "Internet Explorer", s = d[2]);
|
2924
|
+
}
|
2925
|
+
}
|
2926
|
+
}
|
2927
|
+
}
|
2928
|
+
}
|
2929
|
+
return o = // 移动设备通用检测
|
2930
|
+
/(iPhone|iPod|iPad|Android|Windows Phone|Mobile)/i.test(e) || // 根据已识别的操作系统补充判断
|
2931
|
+
["iOS", "Android"].includes(t), /(iPad|Tablet|Android(?!.*Mobile))/i.test(e) && (o = !0), {
|
2932
|
+
os: t,
|
2933
|
+
osVersion: n,
|
2934
|
+
browser: r,
|
2935
|
+
browserVersion: s,
|
2936
|
+
isMobile: o
|
2937
|
+
};
|
2938
|
+
}
|
2872
2939
|
export {
|
2873
2940
|
mt as LOCAL_REQUEST_ID,
|
2874
2941
|
qs as Logger,
|
@@ -2885,10 +2952,11 @@ export {
|
|
2885
2952
|
Ro as dataURLtoBlob,
|
2886
2953
|
sn as downloadBlob,
|
2887
2954
|
Lo as downloadJson,
|
2888
|
-
|
2889
|
-
|
2955
|
+
jo as downloadRemoteFile,
|
2956
|
+
vo as downloadUrl,
|
2890
2957
|
yo as fileToBase64,
|
2891
2958
|
bo as formDataToJson,
|
2959
|
+
No as getClientInfo,
|
2892
2960
|
Hs as getLogger,
|
2893
2961
|
ne as isClient,
|
2894
2962
|
xo as jsonp,
|