@danidoble/webserial 4.2.3 → 4.2.5
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/LICENSE +21 -0
- package/dist/arduino.cjs +1 -1
- package/dist/arduino.js +36 -42
- package/dist/boardroid.cjs +1 -1
- package/dist/boardroid.js +350 -384
- package/dist/jofemar.cjs +1 -1
- package/dist/jofemar.js +688 -560
- package/dist/{kernel-B15wfB2x.js → kernel-Bquzoyqh.js} +413 -437
- package/dist/kernel-DSUxKxea.cjs +4 -0
- package/dist/kernel.cjs +2 -2
- package/dist/kernel.js +3 -3
- package/dist/locker.cjs +1 -1
- package/dist/locker.js +85 -123
- package/dist/pinpad.cjs +13 -13
- package/dist/pinpad.js +569 -560
- package/dist/pinpax.cjs +3 -20
- package/dist/pinpax.js +76 -109
- package/dist/relay-BsUsBpOv.cjs +3 -0
- package/dist/relay-Dop4mFk-.js +1341 -0
- package/dist/relay.cjs +1 -1
- package/dist/relay.js +32 -45
- package/dist/webserial.cjs +2 -2
- package/dist/webserial.js +3 -3
- package/package.json +32 -32
- package/dist/kernel-CtyQRsMI.cjs +0 -4
package/dist/pinpad.js
CHANGED
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
1
|
+
var yn = Object.defineProperty;
|
|
2
|
+
var Te = (n) => {
|
|
3
3
|
throw TypeError(n);
|
|
4
4
|
};
|
|
5
|
-
var
|
|
6
|
-
var
|
|
7
|
-
var
|
|
8
|
-
var p = (n, i, t) => (
|
|
9
|
-
import { K as
|
|
10
|
-
var
|
|
5
|
+
var bn = (n, i, t) => i in n ? yn(n, i, { enumerable: !0, configurable: !0, writable: !0, value: t }) : n[i] = t;
|
|
6
|
+
var Ce = (n, i, t) => bn(n, typeof i != "symbol" ? i + "" : i, t), Pn = (n, i, t) => i.has(n) || Te("Cannot " + t);
|
|
7
|
+
var Ae = (n, i, t) => i.has(n) ? Te("Cannot add the same private member more than once") : i instanceof WeakSet ? i.add(n) : i.set(n, t);
|
|
8
|
+
var p = (n, i, t) => (Pn(n, i, "access private method"), t);
|
|
9
|
+
import { K as vn, a as wn, _ as Re, i as G, b as Oe, w as xe } from "./kernel-Bquzoyqh.js";
|
|
10
|
+
var En = "0123456789abcdefghijklmnopqrstuvwxyz";
|
|
11
11
|
function $(n) {
|
|
12
|
-
return
|
|
12
|
+
return En.charAt(n);
|
|
13
13
|
}
|
|
14
|
-
function
|
|
14
|
+
function Sn(n, i) {
|
|
15
15
|
return n & i;
|
|
16
16
|
}
|
|
17
17
|
function Et(n, i) {
|
|
18
18
|
return n | i;
|
|
19
19
|
}
|
|
20
|
-
function
|
|
20
|
+
function De(n, i) {
|
|
21
21
|
return n ^ i;
|
|
22
22
|
}
|
|
23
|
-
function
|
|
23
|
+
function Ie(n, i) {
|
|
24
24
|
return n & ~i;
|
|
25
25
|
}
|
|
26
|
-
function
|
|
26
|
+
function Tn(n) {
|
|
27
27
|
if (n == 0)
|
|
28
28
|
return -1;
|
|
29
29
|
var i = 0;
|
|
30
30
|
return (n & 65535) == 0 && (n >>= 16, i += 16), (n & 255) == 0 && (n >>= 8, i += 8), (n & 15) == 0 && (n >>= 4, i += 4), (n & 3) == 0 && (n >>= 2, i += 2), (n & 1) == 0 && ++i, i;
|
|
31
31
|
}
|
|
32
|
-
function
|
|
32
|
+
function Cn(n) {
|
|
33
33
|
for (var i = 0; n != 0; )
|
|
34
34
|
n &= n - 1, ++i;
|
|
35
35
|
return i;
|
|
36
36
|
}
|
|
37
|
-
var at = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",
|
|
37
|
+
var at = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/", ti = "=";
|
|
38
38
|
function Vt(n) {
|
|
39
39
|
var i, t, e = "";
|
|
40
40
|
for (i = 0; i + 3 <= n.length; i += 3)
|
|
41
41
|
t = parseInt(n.substring(i, i + 3), 16), e += at.charAt(t >> 6) + at.charAt(t & 63);
|
|
42
42
|
for (i + 1 == n.length ? (t = parseInt(n.substring(i, i + 1), 16), e += at.charAt(t << 2)) : i + 2 == n.length && (t = parseInt(n.substring(i, i + 2), 16), e += at.charAt(t >> 2) + at.charAt((t & 3) << 4)); (e.length & 3) > 0; )
|
|
43
|
-
e +=
|
|
43
|
+
e += ti;
|
|
44
44
|
return e;
|
|
45
45
|
}
|
|
46
|
-
function
|
|
46
|
+
function Be(n) {
|
|
47
47
|
var i = "", t, e = 0, r = 0;
|
|
48
|
-
for (t = 0; t < n.length && n.charAt(t) !=
|
|
48
|
+
for (t = 0; t < n.length && n.charAt(t) != ti; ++t) {
|
|
49
49
|
var s = at.indexOf(n.charAt(t));
|
|
50
50
|
s < 0 || (e == 0 ? (i += $(s >> 2), r = s & 3, e = 1) : e == 1 ? (i += $(r << 2 | s >> 4), r = s & 15, e = 2) : e == 2 ? (i += $(r), i += $(s >> 2), r = s & 3, e = 3) : (i += $(r << 2 | s >> 4), i += $(s & 15), e = 0));
|
|
51
51
|
}
|
|
52
52
|
return e == 1 && (i += $(r << 2)), i;
|
|
53
53
|
}
|
|
54
|
-
var rt,
|
|
54
|
+
var rt, An = {
|
|
55
55
|
decode: function(n) {
|
|
56
56
|
var i;
|
|
57
57
|
if (rt === void 0) {
|
|
@@ -79,7 +79,7 @@ var rt, Tn = {
|
|
|
79
79
|
throw new Error("Hex encoding incomplete: 4 bits missing");
|
|
80
80
|
return r;
|
|
81
81
|
}
|
|
82
|
-
}, Y,
|
|
82
|
+
}, Y, Yt = {
|
|
83
83
|
decode: function(n) {
|
|
84
84
|
var i;
|
|
85
85
|
if (Y === void 0) {
|
|
@@ -115,7 +115,7 @@ var rt, Tn = {
|
|
|
115
115
|
},
|
|
116
116
|
re: /-----BEGIN [^-]+-----([A-Za-z0-9+\/=\s]+)-----END [^-]+-----|begin-base64[^\n]+\n([A-Za-z0-9+\/=\s]+)====/,
|
|
117
117
|
unarmor: function(n) {
|
|
118
|
-
var i =
|
|
118
|
+
var i = Yt.re.exec(n);
|
|
119
119
|
if (i)
|
|
120
120
|
if (i[1])
|
|
121
121
|
n = i[1];
|
|
@@ -123,7 +123,7 @@ var rt, Tn = {
|
|
|
123
123
|
n = i[2];
|
|
124
124
|
else
|
|
125
125
|
throw new Error("RegExp out of sync");
|
|
126
|
-
return
|
|
126
|
+
return Yt.decode(n);
|
|
127
127
|
}
|
|
128
128
|
}, st = 1e13, pt = (
|
|
129
129
|
/** @class */
|
|
@@ -157,11 +157,11 @@ var rt, Tn = {
|
|
|
157
157
|
return i.length == 1 ? i[0] : this;
|
|
158
158
|
}, n;
|
|
159
159
|
}()
|
|
160
|
-
),
|
|
160
|
+
), ei = "…", Rn = /^(\d\d)(0[1-9]|1[0-2])(0[1-9]|[12]\d|3[01])([01]\d|2[0-3])(?:([0-5]\d)(?:([0-5]\d)(?:[.,](\d{1,3}))?)?)?(Z|[-+](?:[0]\d|1[0-2])([0-5]\d)?)?$/, On = /^(\d\d\d\d)(0[1-9]|1[0-2])(0[1-9]|[12]\d|3[01])([01]\d|2[0-3])(?:([0-5]\d)(?:([0-5]\d)(?:[.,](\d{1,3}))?)?)?(Z|[-+](?:[0]\d|1[0-2])([0-5]\d)?)?$/;
|
|
161
161
|
function ct(n, i) {
|
|
162
|
-
return n.length > i && (n = n.substring(0, i) +
|
|
162
|
+
return n.length > i && (n = n.substring(0, i) + ei), n;
|
|
163
163
|
}
|
|
164
|
-
var
|
|
164
|
+
var zt = (
|
|
165
165
|
/** @class */
|
|
166
166
|
function() {
|
|
167
167
|
function n(i, t) {
|
|
@@ -210,7 +210,7 @@ var Xt = (
|
|
|
210
210
|
r = this.get(a++), s = this.get(a++), e += String.fromCharCode(r << 8 | s);
|
|
211
211
|
return e;
|
|
212
212
|
}, n.prototype.parseTime = function(i, t, e) {
|
|
213
|
-
var r = this.parseStringISO(i, t), s = (e ?
|
|
213
|
+
var r = this.parseStringISO(i, t), s = (e ? Rn : On).exec(r);
|
|
214
214
|
return s ? (e && (s[1] = +s[1], s[1] += +s[1] < 70 ? 2e3 : 1900), r = s[1] + "-" + s[2] + "-" + s[3] + " " + s[4], s[5] && (r += ":" + s[5], s[6] && (r += ":" + s[6], s[7] && (r += "." + s[7]))), s[8] && (r += " UTC", s[8] != "Z" && (r += s[8], s[9] && (r += ":" + s[9]))), r) : "Unrecognized time: " + r;
|
|
215
215
|
}, n.prototype.parseInteger = function(i, t) {
|
|
216
216
|
for (var e = this.get(i), r = e > 127, s = r ? 255 : 0, a, o = ""; e == s && ++i < t; )
|
|
@@ -244,7 +244,7 @@ var Xt = (
|
|
|
244
244
|
e /= 2, r > e && (t = i + e);
|
|
245
245
|
for (var a = i; a < t; ++a)
|
|
246
246
|
s += this.hexByte(this.get(a));
|
|
247
|
-
return r > e && (s +=
|
|
247
|
+
return r > e && (s += ei), s;
|
|
248
248
|
}, n.prototype.parseOID = function(i, t, e) {
|
|
249
249
|
for (var r = "", s = new pt(), a = 0, o = i; o < t; ++o) {
|
|
250
250
|
var c = this.get(o);
|
|
@@ -266,11 +266,11 @@ var Xt = (
|
|
|
266
266
|
return a > 0 && (r += ".incomplete"), r;
|
|
267
267
|
}, n;
|
|
268
268
|
}()
|
|
269
|
-
),
|
|
269
|
+
), xn = (
|
|
270
270
|
/** @class */
|
|
271
271
|
function() {
|
|
272
272
|
function n(i, t, e, r, s) {
|
|
273
|
-
if (!(r instanceof
|
|
273
|
+
if (!(r instanceof Ne))
|
|
274
274
|
throw new Error("Invalid tag value.");
|
|
275
275
|
this.stream = i, this.header = t, this.length = e, this.tag = r, this.sub = s;
|
|
276
276
|
}
|
|
@@ -434,8 +434,8 @@ var Xt = (
|
|
|
434
434
|
return i.substr(t, e);
|
|
435
435
|
}, n.decode = function(i) {
|
|
436
436
|
var t;
|
|
437
|
-
i instanceof
|
|
438
|
-
var e = new
|
|
437
|
+
i instanceof zt ? t = i : t = new zt(i, 0);
|
|
438
|
+
var e = new zt(t), r = new Ne(t), s = n.decodeLength(t), a = t.pos, o = a - e.pos, c = null, u = function() {
|
|
439
439
|
var f = [];
|
|
440
440
|
if (s !== null) {
|
|
441
441
|
for (var g = a + s; t.pos < g; )
|
|
@@ -477,7 +477,7 @@ var Xt = (
|
|
|
477
477
|
return new n(e, o, s, r, c);
|
|
478
478
|
}, n;
|
|
479
479
|
}()
|
|
480
|
-
),
|
|
480
|
+
), Ne = (
|
|
481
481
|
/** @class */
|
|
482
482
|
function() {
|
|
483
483
|
function n(i) {
|
|
@@ -496,7 +496,7 @@ var Xt = (
|
|
|
496
496
|
return this.tagClass === 0 && this.tagNumber === 0;
|
|
497
497
|
}, n;
|
|
498
498
|
}()
|
|
499
|
-
), Z,
|
|
499
|
+
), Z, Dn = 244837814094590, Ve = (Dn & 16777215) == 15715070, N = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257, 263, 269, 271, 277, 281, 283, 293, 307, 311, 313, 317, 331, 337, 347, 349, 353, 359, 367, 373, 379, 383, 389, 397, 401, 409, 419, 421, 431, 433, 439, 443, 449, 457, 461, 463, 467, 479, 487, 491, 499, 503, 509, 521, 523, 541, 547, 557, 563, 569, 571, 577, 587, 593, 599, 601, 607, 613, 617, 619, 631, 641, 643, 647, 653, 659, 661, 673, 677, 683, 691, 701, 709, 719, 727, 733, 739, 743, 751, 757, 761, 769, 773, 787, 797, 809, 811, 821, 823, 827, 829, 839, 853, 857, 859, 863, 877, 881, 883, 887, 907, 911, 919, 929, 937, 941, 947, 953, 967, 971, 977, 983, 991, 997], In = (1 << 26) / N[N.length - 1], E = (
|
|
500
500
|
/** @class */
|
|
501
501
|
function() {
|
|
502
502
|
function n(i, t, e) {
|
|
@@ -546,7 +546,7 @@ var Xt = (
|
|
|
546
546
|
return this.abs().divRemTo(i, null, t), this.s < 0 && t.compareTo(n.ZERO) > 0 && i.subTo(t, t), t;
|
|
547
547
|
}, n.prototype.modPowInt = function(i, t) {
|
|
548
548
|
var e;
|
|
549
|
-
return i < 256 || t.isEven() ? e = new
|
|
549
|
+
return i < 256 || t.isEven() ? e = new Ue(t) : e = new Le(t), this.exp(i, e);
|
|
550
550
|
}, n.prototype.clone = function() {
|
|
551
551
|
var i = S();
|
|
552
552
|
return this.copyTo(i), i;
|
|
@@ -585,16 +585,16 @@ var Xt = (
|
|
|
585
585
|
return this.compareTo(i) > 0 ? this : i;
|
|
586
586
|
}, n.prototype.and = function(i) {
|
|
587
587
|
var t = S();
|
|
588
|
-
return this.bitwiseTo(i,
|
|
588
|
+
return this.bitwiseTo(i, Sn, t), t;
|
|
589
589
|
}, n.prototype.or = function(i) {
|
|
590
590
|
var t = S();
|
|
591
591
|
return this.bitwiseTo(i, Et, t), t;
|
|
592
592
|
}, n.prototype.xor = function(i) {
|
|
593
593
|
var t = S();
|
|
594
|
-
return this.bitwiseTo(i,
|
|
594
|
+
return this.bitwiseTo(i, De, t), t;
|
|
595
595
|
}, n.prototype.andNot = function(i) {
|
|
596
596
|
var t = S();
|
|
597
|
-
return this.bitwiseTo(i,
|
|
597
|
+
return this.bitwiseTo(i, Ie, t), t;
|
|
598
598
|
}, n.prototype.not = function() {
|
|
599
599
|
for (var i = S(), t = 0; t < this.t; ++t)
|
|
600
600
|
i[t] = this.DM & ~this[t];
|
|
@@ -608,11 +608,11 @@ var Xt = (
|
|
|
608
608
|
}, n.prototype.getLowestSetBit = function() {
|
|
609
609
|
for (var i = 0; i < this.t; ++i)
|
|
610
610
|
if (this[i] != 0)
|
|
611
|
-
return i * this.DB +
|
|
611
|
+
return i * this.DB + Tn(this[i]);
|
|
612
612
|
return this.s < 0 ? this.t * this.DB : -1;
|
|
613
613
|
}, n.prototype.bitCount = function() {
|
|
614
614
|
for (var i = 0, t = this.s & this.DM, e = 0; e < this.t; ++e)
|
|
615
|
-
i +=
|
|
615
|
+
i += Cn(this[e] ^ t);
|
|
616
616
|
return i;
|
|
617
617
|
}, n.prototype.testBit = function(i) {
|
|
618
618
|
var t = Math.floor(i / this.DB);
|
|
@@ -620,9 +620,9 @@ var Xt = (
|
|
|
620
620
|
}, n.prototype.setBit = function(i) {
|
|
621
621
|
return this.changeBit(i, Et);
|
|
622
622
|
}, n.prototype.clearBit = function(i) {
|
|
623
|
-
return this.changeBit(i,
|
|
623
|
+
return this.changeBit(i, Ie);
|
|
624
624
|
}, n.prototype.flipBit = function(i) {
|
|
625
|
-
return this.changeBit(i,
|
|
625
|
+
return this.changeBit(i, De);
|
|
626
626
|
}, n.prototype.add = function(i) {
|
|
627
627
|
var t = S();
|
|
628
628
|
return this.addTo(i, t), t;
|
|
@@ -645,7 +645,7 @@ var Xt = (
|
|
|
645
645
|
var e = i.bitLength(), r, s = J(1), a;
|
|
646
646
|
if (e <= 0)
|
|
647
647
|
return s;
|
|
648
|
-
e < 18 ? r = 1 : e < 48 ? r = 3 : e < 144 ? r = 4 : e < 768 ? r = 5 : r = 6, e < 8 ? a = new
|
|
648
|
+
e < 18 ? r = 1 : e < 48 ? r = 3 : e < 144 ? r = 4 : e < 768 ? r = 5 : r = 6, e < 8 ? a = new Ue(t) : t.isEven() ? a = new Nn(t) : a = new Le(t);
|
|
649
649
|
var o = [], c = 3, u = r - 1, l = (1 << r) - 1;
|
|
650
650
|
if (o[1] = a.convert(this), r > 1) {
|
|
651
651
|
var f = S();
|
|
@@ -688,7 +688,7 @@ var Xt = (
|
|
|
688
688
|
return c;
|
|
689
689
|
return c.signum() < 0 ? c.add(i) : c;
|
|
690
690
|
}, n.prototype.pow = function(i) {
|
|
691
|
-
return this.exp(i, new
|
|
691
|
+
return this.exp(i, new Bn());
|
|
692
692
|
}, n.prototype.gcd = function(i) {
|
|
693
693
|
var t = this.s < 0 ? this.negate() : this.clone(), e = i.s < 0 ? i.negate() : i.clone();
|
|
694
694
|
if (t.compareTo(e) < 0) {
|
|
@@ -712,7 +712,7 @@ var Xt = (
|
|
|
712
712
|
if (e.isEven())
|
|
713
713
|
return !1;
|
|
714
714
|
for (t = 1; t < N.length; ) {
|
|
715
|
-
for (var r = N[t], s = t + 1; s < N.length && r <
|
|
715
|
+
for (var r = N[t], s = t + 1; s < N.length && r < In; )
|
|
716
716
|
r *= N[s++];
|
|
717
717
|
for (r = e.modInt(r); t < s; )
|
|
718
718
|
if (r % N[t++] == 0)
|
|
@@ -745,7 +745,7 @@ var Xt = (
|
|
|
745
745
|
}
|
|
746
746
|
this.t = 0, this.s = 0;
|
|
747
747
|
for (var r = i.length, s = !1, a = 0; --r >= 0; ) {
|
|
748
|
-
var o = e == 8 ? +i[r] & 255 :
|
|
748
|
+
var o = e == 8 ? +i[r] & 255 : ke(i, r);
|
|
749
749
|
if (o < 0) {
|
|
750
750
|
i.charAt(r) == "-" && (s = !0);
|
|
751
751
|
continue;
|
|
@@ -872,7 +872,7 @@ var Xt = (
|
|
|
872
872
|
}, n.prototype.fromRadix = function(i, t) {
|
|
873
873
|
this.fromInt(0), t == null && (t = 10);
|
|
874
874
|
for (var e = this.chunkSize(t), r = Math.pow(t, e), s = !1, a = 0, o = 0, c = 0; c < i.length; ++c) {
|
|
875
|
-
var u =
|
|
875
|
+
var u = ke(i, c);
|
|
876
876
|
if (u < 0) {
|
|
877
877
|
i.charAt(c) == "-" && this.signum() == 0 && (s = !0);
|
|
878
878
|
continue;
|
|
@@ -1016,7 +1016,7 @@ var Xt = (
|
|
|
1016
1016
|
}
|
|
1017
1017
|
}, n;
|
|
1018
1018
|
}()
|
|
1019
|
-
),
|
|
1019
|
+
), Bn = (
|
|
1020
1020
|
/** @class */
|
|
1021
1021
|
function() {
|
|
1022
1022
|
function n() {
|
|
@@ -1031,7 +1031,7 @@ var Xt = (
|
|
|
1031
1031
|
i.squareTo(t);
|
|
1032
1032
|
}, n;
|
|
1033
1033
|
}()
|
|
1034
|
-
),
|
|
1034
|
+
), Ue = (
|
|
1035
1035
|
/** @class */
|
|
1036
1036
|
function() {
|
|
1037
1037
|
function n(i) {
|
|
@@ -1049,7 +1049,7 @@ var Xt = (
|
|
|
1049
1049
|
i.squareTo(t), this.reduce(t);
|
|
1050
1050
|
}, n;
|
|
1051
1051
|
}()
|
|
1052
|
-
),
|
|
1052
|
+
), Le = (
|
|
1053
1053
|
/** @class */
|
|
1054
1054
|
function() {
|
|
1055
1055
|
function n(i) {
|
|
@@ -1076,7 +1076,7 @@ var Xt = (
|
|
|
1076
1076
|
i.squareTo(t), this.reduce(t);
|
|
1077
1077
|
}, n;
|
|
1078
1078
|
}()
|
|
1079
|
-
),
|
|
1079
|
+
), Nn = (
|
|
1080
1080
|
/** @class */
|
|
1081
1081
|
function() {
|
|
1082
1082
|
function n(i) {
|
|
@@ -1109,14 +1109,14 @@ function S() {
|
|
|
1109
1109
|
function O(n, i) {
|
|
1110
1110
|
return new E(n, i);
|
|
1111
1111
|
}
|
|
1112
|
-
var
|
|
1113
|
-
|
|
1112
|
+
var Me = typeof navigator < "u";
|
|
1113
|
+
Me && Ve && navigator.appName == "Microsoft Internet Explorer" ? (E.prototype.am = function(i, t, e, r, s, a) {
|
|
1114
1114
|
for (var o = t & 32767, c = t >> 15; --a >= 0; ) {
|
|
1115
1115
|
var u = this[i] & 32767, l = this[i++] >> 15, f = c * u + l * o;
|
|
1116
1116
|
u = o * u + ((f & 32767) << 15) + e[r] + (s & 1073741823), s = (u >>> 30) + (f >>> 15) + c * l + (s >>> 30), e[r++] = u & 1073741823;
|
|
1117
1117
|
}
|
|
1118
1118
|
return s;
|
|
1119
|
-
}, Z = 30) :
|
|
1119
|
+
}, Z = 30) : Me && Ve && navigator.appName != "Netscape" ? (E.prototype.am = function(i, t, e, r, s, a) {
|
|
1120
1120
|
for (; --a >= 0; ) {
|
|
1121
1121
|
var o = t * this[i++] + e[r] + s;
|
|
1122
1122
|
s = Math.floor(o / 67108864), e[r++] = o & 67108863;
|
|
@@ -1132,10 +1132,10 @@ Le && Ne && navigator.appName == "Microsoft Internet Explorer" ? (E.prototype.am
|
|
|
1132
1132
|
E.prototype.DB = Z;
|
|
1133
1133
|
E.prototype.DM = (1 << Z) - 1;
|
|
1134
1134
|
E.prototype.DV = 1 << Z;
|
|
1135
|
-
var
|
|
1136
|
-
E.prototype.FV = Math.pow(2,
|
|
1137
|
-
E.prototype.F1 =
|
|
1138
|
-
E.prototype.F2 = 2 * Z -
|
|
1135
|
+
var ve = 52;
|
|
1136
|
+
E.prototype.FV = Math.pow(2, ve);
|
|
1137
|
+
E.prototype.F1 = ve - Z;
|
|
1138
|
+
E.prototype.F2 = 2 * Z - ve;
|
|
1139
1139
|
var Mt = [], ut, k;
|
|
1140
1140
|
ut = 48;
|
|
1141
1141
|
for (k = 0; k <= 9; ++k)
|
|
@@ -1146,7 +1146,7 @@ for (k = 10; k < 36; ++k)
|
|
|
1146
1146
|
ut = 65;
|
|
1147
1147
|
for (k = 10; k < 36; ++k)
|
|
1148
1148
|
Mt[ut++] = k;
|
|
1149
|
-
function
|
|
1149
|
+
function ke(n, i) {
|
|
1150
1150
|
var t = Mt[n.charCodeAt(i)];
|
|
1151
1151
|
return t ?? -1;
|
|
1152
1152
|
}
|
|
@@ -1160,7 +1160,7 @@ function St(n) {
|
|
|
1160
1160
|
}
|
|
1161
1161
|
E.ZERO = J(0);
|
|
1162
1162
|
E.ONE = J(1);
|
|
1163
|
-
var
|
|
1163
|
+
var Vn = (
|
|
1164
1164
|
/** @class */
|
|
1165
1165
|
function() {
|
|
1166
1166
|
function n() {
|
|
@@ -1179,20 +1179,20 @@ var Bn = (
|
|
|
1179
1179
|
}, n;
|
|
1180
1180
|
}()
|
|
1181
1181
|
);
|
|
1182
|
-
function
|
|
1183
|
-
return new
|
|
1182
|
+
function Un() {
|
|
1183
|
+
return new Vn();
|
|
1184
1184
|
}
|
|
1185
|
-
var
|
|
1185
|
+
var ii = 256, Tt, Q = null, K;
|
|
1186
1186
|
if (Q == null) {
|
|
1187
1187
|
Q = [], K = 0;
|
|
1188
1188
|
var Ct = void 0;
|
|
1189
1189
|
if (typeof window < "u" && window.crypto && window.crypto.getRandomValues) {
|
|
1190
|
-
var
|
|
1191
|
-
for (window.crypto.getRandomValues(
|
|
1192
|
-
Q[K++] =
|
|
1190
|
+
var Gt = new Uint32Array(256);
|
|
1191
|
+
for (window.crypto.getRandomValues(Gt), Ct = 0; Ct < Gt.length; ++Ct)
|
|
1192
|
+
Q[K++] = Gt[Ct] & 255;
|
|
1193
1193
|
}
|
|
1194
1194
|
var At = 0, Rt = function(n) {
|
|
1195
|
-
if (At = At || 0, At >= 256 || K >=
|
|
1195
|
+
if (At = At || 0, At >= 256 || K >= ii) {
|
|
1196
1196
|
window.removeEventListener ? window.removeEventListener("mousemove", Rt, !1) : window.detachEvent && window.detachEvent("onmousemove", Rt);
|
|
1197
1197
|
return;
|
|
1198
1198
|
}
|
|
@@ -1204,9 +1204,9 @@ if (Q == null) {
|
|
|
1204
1204
|
};
|
|
1205
1205
|
typeof window < "u" && (window.addEventListener ? window.addEventListener("mousemove", Rt, !1) : window.attachEvent && window.attachEvent("onmousemove", Rt));
|
|
1206
1206
|
}
|
|
1207
|
-
function
|
|
1207
|
+
function Ln() {
|
|
1208
1208
|
if (Tt == null) {
|
|
1209
|
-
for (Tt =
|
|
1209
|
+
for (Tt = Un(); K < ii; ) {
|
|
1210
1210
|
var n = Math.floor(65536 * Math.random());
|
|
1211
1211
|
Q[K++] = n & 255;
|
|
1212
1212
|
}
|
|
@@ -1216,18 +1216,18 @@ function Vn() {
|
|
|
1216
1216
|
}
|
|
1217
1217
|
return Tt.next();
|
|
1218
1218
|
}
|
|
1219
|
-
var
|
|
1219
|
+
var te = (
|
|
1220
1220
|
/** @class */
|
|
1221
1221
|
function() {
|
|
1222
1222
|
function n() {
|
|
1223
1223
|
}
|
|
1224
1224
|
return n.prototype.nextBytes = function(i) {
|
|
1225
1225
|
for (var t = 0; t < i.length; ++t)
|
|
1226
|
-
i[t] =
|
|
1226
|
+
i[t] = Ln();
|
|
1227
1227
|
}, n;
|
|
1228
1228
|
}()
|
|
1229
1229
|
);
|
|
1230
|
-
function
|
|
1230
|
+
function Mn(n, i) {
|
|
1231
1231
|
if (i < n.length + 22)
|
|
1232
1232
|
return console.error("Message too long for RSA"), null;
|
|
1233
1233
|
for (var t = i - n.length - 6, e = "", r = 0; r < t; r += 2)
|
|
@@ -1235,7 +1235,7 @@ function Un(n, i) {
|
|
|
1235
1235
|
var s = "0001" + e + "00" + n;
|
|
1236
1236
|
return O(s, 16);
|
|
1237
1237
|
}
|
|
1238
|
-
function
|
|
1238
|
+
function kn(n, i) {
|
|
1239
1239
|
if (i < n.length + 11)
|
|
1240
1240
|
return console.error("Message too long for RSA"), null;
|
|
1241
1241
|
for (var t = [], e = n.length - 1; e >= 0 && i > 0; ) {
|
|
@@ -1243,14 +1243,14 @@ function Ln(n, i) {
|
|
|
1243
1243
|
r < 128 ? t[--i] = r : r > 127 && r < 2048 ? (t[--i] = r & 63 | 128, t[--i] = r >> 6 | 192) : (t[--i] = r & 63 | 128, t[--i] = r >> 6 & 63 | 128, t[--i] = r >> 12 | 224);
|
|
1244
1244
|
}
|
|
1245
1245
|
t[--i] = 0;
|
|
1246
|
-
for (var s = new
|
|
1246
|
+
for (var s = new te(), a = []; i > 2; ) {
|
|
1247
1247
|
for (a[0] = 0; a[0] == 0; )
|
|
1248
1248
|
s.nextBytes(a);
|
|
1249
1249
|
t[--i] = a[0];
|
|
1250
1250
|
}
|
|
1251
1251
|
return t[--i] = 2, t[--i] = 0, new E(t);
|
|
1252
1252
|
}
|
|
1253
|
-
var
|
|
1253
|
+
var Fn = (
|
|
1254
1254
|
/** @class */
|
|
1255
1255
|
function() {
|
|
1256
1256
|
function n() {
|
|
@@ -1267,7 +1267,7 @@ var Mn = (
|
|
|
1267
1267
|
}, n.prototype.setPublic = function(i, t) {
|
|
1268
1268
|
i != null && t != null && i.length > 0 && t.length > 0 ? (this.n = O(i, 16), this.e = parseInt(t, 16)) : console.error("Invalid RSA public key");
|
|
1269
1269
|
}, n.prototype.encrypt = function(i) {
|
|
1270
|
-
var t = this.n.bitLength() + 7 >> 3, e =
|
|
1270
|
+
var t = this.n.bitLength() + 7 >> 3, e = kn(i, t);
|
|
1271
1271
|
if (e == null)
|
|
1272
1272
|
return null;
|
|
1273
1273
|
var r = this.doPublic(e);
|
|
@@ -1281,7 +1281,7 @@ var Mn = (
|
|
|
1281
1281
|
}, n.prototype.setPrivateEx = function(i, t, e, r, s, a, o, c) {
|
|
1282
1282
|
i != null && t != null && i.length > 0 && t.length > 0 ? (this.n = O(i, 16), this.e = parseInt(t, 16), this.d = O(e, 16), this.p = O(r, 16), this.q = O(s, 16), this.dmp1 = O(a, 16), this.dmq1 = O(o, 16), this.coeff = O(c, 16)) : console.error("Invalid RSA private key");
|
|
1283
1283
|
}, n.prototype.generate = function(i, t) {
|
|
1284
|
-
var e = new
|
|
1284
|
+
var e = new te(), r = i >> 1;
|
|
1285
1285
|
this.e = parseInt(t, 16);
|
|
1286
1286
|
for (var s = new E(t, 16); ; ) {
|
|
1287
1287
|
for (; this.p = new E(i - r, 1, e), !(this.p.subtract(E.ONE).gcd(s).compareTo(E.ONE) == 0 && this.p.isProbablePrime(10)); )
|
|
@@ -1300,9 +1300,9 @@ var Mn = (
|
|
|
1300
1300
|
}
|
|
1301
1301
|
}, n.prototype.decrypt = function(i) {
|
|
1302
1302
|
var t = O(i, 16), e = this.doPrivate(t);
|
|
1303
|
-
return e == null ? null :
|
|
1303
|
+
return e == null ? null : jn(e, this.n.bitLength() + 7 >> 3);
|
|
1304
1304
|
}, n.prototype.generateAsync = function(i, t, e) {
|
|
1305
|
-
var r = new
|
|
1305
|
+
var r = new te(), s = i >> 1;
|
|
1306
1306
|
this.e = parseInt(t, 16);
|
|
1307
1307
|
var a = new E(t, 16), o = this, c = function() {
|
|
1308
1308
|
var u = function() {
|
|
@@ -1331,7 +1331,7 @@ var Mn = (
|
|
|
1331
1331
|
};
|
|
1332
1332
|
setTimeout(c, 0);
|
|
1333
1333
|
}, n.prototype.sign = function(i, t, e) {
|
|
1334
|
-
var r =
|
|
1334
|
+
var r = qn(e), s = r + t(i).toString(), a = Mn(s, this.n.bitLength() / 4);
|
|
1335
1335
|
if (a == null)
|
|
1336
1336
|
return null;
|
|
1337
1337
|
var o = this.doPrivate(a);
|
|
@@ -1343,12 +1343,12 @@ var Mn = (
|
|
|
1343
1343
|
var r = O(t, 16), s = this.doPublic(r);
|
|
1344
1344
|
if (s == null)
|
|
1345
1345
|
return null;
|
|
1346
|
-
var a = s.toString(16).replace(/^1f+00/, ""), o =
|
|
1346
|
+
var a = s.toString(16).replace(/^1f+00/, ""), o = Kn(a);
|
|
1347
1347
|
return o == e(i).toString();
|
|
1348
1348
|
}, n;
|
|
1349
1349
|
}()
|
|
1350
1350
|
);
|
|
1351
|
-
function
|
|
1351
|
+
function jn(n, i) {
|
|
1352
1352
|
for (var t = n.toByteArray(), e = 0; e < t.length && t[e] == 0; )
|
|
1353
1353
|
++e;
|
|
1354
1354
|
if (t.length - e != i - 1 || t[e] != 2)
|
|
@@ -1372,10 +1372,10 @@ var Ot = {
|
|
|
1372
1372
|
sha512: "3051300d060960864801650304020305000440",
|
|
1373
1373
|
ripemd160: "3021300906052b2403020105000414"
|
|
1374
1374
|
};
|
|
1375
|
-
function
|
|
1375
|
+
function qn(n) {
|
|
1376
1376
|
return Ot[n] || "";
|
|
1377
1377
|
}
|
|
1378
|
-
function
|
|
1378
|
+
function Kn(n) {
|
|
1379
1379
|
for (var i in Ot)
|
|
1380
1380
|
if (Ot.hasOwnProperty(i)) {
|
|
1381
1381
|
var t = Ot[i], e = t.length;
|
|
@@ -1495,27 +1495,27 @@ _.asn1.ASN1Util = new function() {
|
|
|
1495
1495
|
if (v == "gentime")
|
|
1496
1496
|
return new y(n[v]);
|
|
1497
1497
|
if (v == "seq") {
|
|
1498
|
-
for (var
|
|
1499
|
-
var
|
|
1500
|
-
W.push(
|
|
1498
|
+
for (var M = n[v], W = [], X = 0; X < M.length; X++) {
|
|
1499
|
+
var Xt = V(M[X]);
|
|
1500
|
+
W.push(Xt);
|
|
1501
1501
|
}
|
|
1502
1502
|
return new C({ array: W });
|
|
1503
1503
|
}
|
|
1504
1504
|
if (v == "set") {
|
|
1505
|
-
for (var
|
|
1506
|
-
var
|
|
1507
|
-
W.push(
|
|
1505
|
+
for (var M = n[v], W = [], X = 0; X < M.length; X++) {
|
|
1506
|
+
var Xt = V(M[X]);
|
|
1507
|
+
W.push(Xt);
|
|
1508
1508
|
}
|
|
1509
1509
|
return new T({ array: W });
|
|
1510
1510
|
}
|
|
1511
1511
|
if (v == "tag") {
|
|
1512
1512
|
var F = n[v];
|
|
1513
1513
|
if (Object.prototype.toString.call(F) === "[object Array]" && F.length == 3) {
|
|
1514
|
-
var
|
|
1514
|
+
var mn = V(F[2]);
|
|
1515
1515
|
return new R({
|
|
1516
1516
|
tag: F[0],
|
|
1517
1517
|
explicit: F[1],
|
|
1518
|
-
obj:
|
|
1518
|
+
obj: mn
|
|
1519
1519
|
});
|
|
1520
1520
|
} else {
|
|
1521
1521
|
var wt = {};
|
|
@@ -1816,7 +1816,7 @@ _.asn1.DERTaggedObject = function(n) {
|
|
|
1816
1816
|
}, typeof n < "u" && (typeof n.tag < "u" && (this.hT = n.tag), typeof n.explicit < "u" && (this.isExplicit = n.explicit), typeof n.obj < "u" && (this.asn1Object = n.obj, this.setASN1Object(this.isExplicit, this.hT, this.asn1Object)));
|
|
1817
1817
|
};
|
|
1818
1818
|
x.lang.extend(_.asn1.DERTaggedObject, _.asn1.ASN1Object);
|
|
1819
|
-
var
|
|
1819
|
+
var Hn = /* @__PURE__ */ function() {
|
|
1820
1820
|
var n = function(i, t) {
|
|
1821
1821
|
return n = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(e, r) {
|
|
1822
1822
|
e.__proto__ = r;
|
|
@@ -1833,17 +1833,17 @@ var jn = /* @__PURE__ */ function() {
|
|
|
1833
1833
|
}
|
|
1834
1834
|
i.prototype = t === null ? Object.create(t) : (e.prototype = t.prototype, new e());
|
|
1835
1835
|
};
|
|
1836
|
-
}(),
|
|
1836
|
+
}(), Fe = (
|
|
1837
1837
|
/** @class */
|
|
1838
1838
|
function(n) {
|
|
1839
|
-
|
|
1839
|
+
Hn(i, n);
|
|
1840
1840
|
function i(t) {
|
|
1841
1841
|
var e = n.call(this) || this;
|
|
1842
1842
|
return t && (typeof t == "string" ? e.parseKey(t) : (i.hasPrivateKeyProperty(t) || i.hasPublicKeyProperty(t)) && e.parsePropertiesFrom(t)), e;
|
|
1843
1843
|
}
|
|
1844
1844
|
return i.prototype.parseKey = function(t) {
|
|
1845
1845
|
try {
|
|
1846
|
-
var e = 0, r = 0, s = /^\s*(?:[0-9A-Fa-f][0-9A-Fa-f]\s*)+$/, a = s.test(t) ?
|
|
1846
|
+
var e = 0, r = 0, s = /^\s*(?:[0-9A-Fa-f][0-9A-Fa-f]\s*)+$/, a = s.test(t) ? An.decode(t) : Yt.unarmor(t), o = xn.decode(a);
|
|
1847
1847
|
if (o.sub.length === 3 && (o = o.sub[2].sub[0]), o.sub.length === 9) {
|
|
1848
1848
|
e = o.sub[1].getHexStringValue(), this.n = O(e, 16), r = o.sub[2].getHexStringValue(), this.e = parseInt(r, 16);
|
|
1849
1849
|
var c = o.sub[3].getHexStringValue();
|
|
@@ -1930,22 +1930,22 @@ var jn = /* @__PURE__ */ function() {
|
|
|
1930
1930
|
}, i.prototype.parsePropertiesFrom = function(t) {
|
|
1931
1931
|
this.n = t.n, this.e = t.e, t.hasOwnProperty("d") && (this.d = t.d, this.p = t.p, this.q = t.q, this.dmp1 = t.dmp1, this.dmq1 = t.dmq1, this.coeff = t.coeff);
|
|
1932
1932
|
}, i;
|
|
1933
|
-
}(
|
|
1934
|
-
),
|
|
1933
|
+
}(Fn)
|
|
1934
|
+
), $t, Wn = typeof process < "u" ? ($t = process.env) === null || $t === void 0 ? void 0 : $t.npm_package_version : void 0, Xn = (
|
|
1935
1935
|
/** @class */
|
|
1936
1936
|
function() {
|
|
1937
1937
|
function n(i) {
|
|
1938
1938
|
i === void 0 && (i = {}), i = i || {}, this.default_key_size = i.default_key_size ? parseInt(i.default_key_size, 10) : 1024, this.default_public_exponent = i.default_public_exponent || "010001", this.log = i.log || !1, this.key = null;
|
|
1939
1939
|
}
|
|
1940
1940
|
return n.prototype.setKey = function(i) {
|
|
1941
|
-
this.log && this.key && console.warn("A key was already set, overriding existing."), this.key = new
|
|
1941
|
+
this.log && this.key && console.warn("A key was already set, overriding existing."), this.key = new Fe(i);
|
|
1942
1942
|
}, n.prototype.setPrivateKey = function(i) {
|
|
1943
1943
|
this.setKey(i);
|
|
1944
1944
|
}, n.prototype.setPublicKey = function(i) {
|
|
1945
1945
|
this.setKey(i);
|
|
1946
1946
|
}, n.prototype.decrypt = function(i) {
|
|
1947
1947
|
try {
|
|
1948
|
-
return this.getKey().decrypt(
|
|
1948
|
+
return this.getKey().decrypt(Be(i));
|
|
1949
1949
|
} catch {
|
|
1950
1950
|
return !1;
|
|
1951
1951
|
}
|
|
@@ -1963,13 +1963,13 @@ var jn = /* @__PURE__ */ function() {
|
|
|
1963
1963
|
}
|
|
1964
1964
|
}, n.prototype.verify = function(i, t, e) {
|
|
1965
1965
|
try {
|
|
1966
|
-
return this.getKey().verify(i,
|
|
1966
|
+
return this.getKey().verify(i, Be(t), e);
|
|
1967
1967
|
} catch {
|
|
1968
1968
|
return !1;
|
|
1969
1969
|
}
|
|
1970
1970
|
}, n.prototype.getKey = function(i) {
|
|
1971
1971
|
if (!this.key) {
|
|
1972
|
-
if (this.key = new
|
|
1972
|
+
if (this.key = new Fe(), i && {}.toString.call(i) === "[object Function]") {
|
|
1973
1973
|
this.key.generateAsync(this.default_key_size, this.default_public_exponent, i);
|
|
1974
1974
|
return;
|
|
1975
1975
|
}
|
|
@@ -1984,36 +1984,36 @@ var jn = /* @__PURE__ */ function() {
|
|
|
1984
1984
|
return this.getKey().getPublicKey();
|
|
1985
1985
|
}, n.prototype.getPublicKeyB64 = function() {
|
|
1986
1986
|
return this.getKey().getPublicBaseKeyB64();
|
|
1987
|
-
}, n.version =
|
|
1987
|
+
}, n.version = Wn, n;
|
|
1988
1988
|
}()
|
|
1989
1989
|
);
|
|
1990
|
-
function
|
|
1990
|
+
function ni(n, i) {
|
|
1991
1991
|
return function() {
|
|
1992
1992
|
return n.apply(i, arguments);
|
|
1993
1993
|
};
|
|
1994
1994
|
}
|
|
1995
|
-
const { toString:
|
|
1996
|
-
const t =
|
|
1995
|
+
const { toString: zn } = Object.prototype, { getPrototypeOf: we } = Object, { iterator: kt, toStringTag: ri } = Symbol, Ft = /* @__PURE__ */ ((n) => (i) => {
|
|
1996
|
+
const t = zn.call(i);
|
|
1997
1997
|
return n[t] || (n[t] = t.slice(8, -1).toLowerCase());
|
|
1998
|
-
})(/* @__PURE__ */ Object.create(null)), H = (n) => (n = n.toLowerCase(), (i) =>
|
|
1999
|
-
function
|
|
2000
|
-
return n !== null && !bt(n) && n.constructor !== null && !bt(n.constructor) &&
|
|
1998
|
+
})(/* @__PURE__ */ Object.create(null)), H = (n) => (n = n.toLowerCase(), (i) => Ft(i) === n), jt = (n) => (i) => typeof i === n, { isArray: ht } = Array, bt = jt("undefined");
|
|
1999
|
+
function Gn(n) {
|
|
2000
|
+
return n !== null && !bt(n) && n.constructor !== null && !bt(n.constructor) && U(n.constructor.isBuffer) && n.constructor.isBuffer(n);
|
|
2001
2001
|
}
|
|
2002
|
-
const
|
|
2003
|
-
function
|
|
2002
|
+
const si = H("ArrayBuffer");
|
|
2003
|
+
function $n(n) {
|
|
2004
2004
|
let i;
|
|
2005
|
-
return typeof ArrayBuffer < "u" && ArrayBuffer.isView ? i = ArrayBuffer.isView(n) : i = n && n.buffer &&
|
|
2005
|
+
return typeof ArrayBuffer < "u" && ArrayBuffer.isView ? i = ArrayBuffer.isView(n) : i = n && n.buffer && si(n.buffer), i;
|
|
2006
2006
|
}
|
|
2007
|
-
const
|
|
2008
|
-
if (
|
|
2007
|
+
const Jn = jt("string"), U = jt("function"), ai = jt("number"), qt = (n) => n !== null && typeof n == "object", Qn = (n) => n === !0 || n === !1, xt = (n) => {
|
|
2008
|
+
if (Ft(n) !== "object")
|
|
2009
2009
|
return !1;
|
|
2010
|
-
const i =
|
|
2011
|
-
return (i === null || i === Object.prototype || Object.getPrototypeOf(i) === null) && !(
|
|
2012
|
-
},
|
|
2010
|
+
const i = we(n);
|
|
2011
|
+
return (i === null || i === Object.prototype || Object.getPrototypeOf(i) === null) && !(ri in n) && !(kt in n);
|
|
2012
|
+
}, Zn = H("Date"), Yn = H("File"), tr = H("Blob"), er = H("FileList"), ir = (n) => qt(n) && U(n.pipe), nr = (n) => {
|
|
2013
2013
|
let i;
|
|
2014
|
-
return n && (typeof FormData == "function" && n instanceof FormData ||
|
|
2015
|
-
i === "object" &&
|
|
2016
|
-
},
|
|
2014
|
+
return n && (typeof FormData == "function" && n instanceof FormData || U(n.append) && ((i = Ft(n)) === "formdata" || // detect form-data instance
|
|
2015
|
+
i === "object" && U(n.toString) && n.toString() === "[object FormData]"));
|
|
2016
|
+
}, rr = H("URLSearchParams"), [sr, ar, or, cr] = ["ReadableStream", "Request", "Response", "Headers"].map(H), ur = (n) => n.trim ? n.trim() : n.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");
|
|
2017
2017
|
function Pt(n, i, { allOwnKeys: t = !1 } = {}) {
|
|
2018
2018
|
if (n === null || typeof n > "u")
|
|
2019
2019
|
return;
|
|
@@ -2028,7 +2028,7 @@ function Pt(n, i, { allOwnKeys: t = !1 } = {}) {
|
|
|
2028
2028
|
o = s[e], i.call(null, n[o], o, n);
|
|
2029
2029
|
}
|
|
2030
2030
|
}
|
|
2031
|
-
function
|
|
2031
|
+
function oi(n, i) {
|
|
2032
2032
|
i = i.toLowerCase();
|
|
2033
2033
|
const t = Object.keys(n);
|
|
2034
2034
|
let e = t.length, r;
|
|
@@ -2037,75 +2037,75 @@ function si(n, i) {
|
|
|
2037
2037
|
return r;
|
|
2038
2038
|
return null;
|
|
2039
2039
|
}
|
|
2040
|
-
const et = typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : typeof window < "u" ? window : global,
|
|
2041
|
-
function
|
|
2042
|
-
const { caseless: n } =
|
|
2043
|
-
const s = n &&
|
|
2044
|
-
xt(i[s]) && xt(e) ? i[s] =
|
|
2040
|
+
const et = typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : typeof window < "u" ? window : global, ci = (n) => !bt(n) && n !== et;
|
|
2041
|
+
function ee() {
|
|
2042
|
+
const { caseless: n } = ci(this) && this || {}, i = {}, t = (e, r) => {
|
|
2043
|
+
const s = n && oi(i, r) || r;
|
|
2044
|
+
xt(i[s]) && xt(e) ? i[s] = ee(i[s], e) : xt(e) ? i[s] = ee({}, e) : ht(e) ? i[s] = e.slice() : i[s] = e;
|
|
2045
2045
|
};
|
|
2046
2046
|
for (let e = 0, r = arguments.length; e < r; e++)
|
|
2047
2047
|
arguments[e] && Pt(arguments[e], t);
|
|
2048
2048
|
return i;
|
|
2049
2049
|
}
|
|
2050
|
-
const
|
|
2051
|
-
t &&
|
|
2052
|
-
}, { allOwnKeys: e }), n),
|
|
2050
|
+
const hr = (n, i, t, { allOwnKeys: e } = {}) => (Pt(i, (r, s) => {
|
|
2051
|
+
t && U(r) ? n[s] = ni(r, t) : n[s] = r;
|
|
2052
|
+
}, { allOwnKeys: e }), n), lr = (n) => (n.charCodeAt(0) === 65279 && (n = n.slice(1)), n), fr = (n, i, t, e) => {
|
|
2053
2053
|
n.prototype = Object.create(i.prototype, e), n.prototype.constructor = n, Object.defineProperty(n, "super", {
|
|
2054
2054
|
value: i.prototype
|
|
2055
2055
|
}), t && Object.assign(n.prototype, t);
|
|
2056
|
-
},
|
|
2056
|
+
}, pr = (n, i, t, e) => {
|
|
2057
2057
|
let r, s, a;
|
|
2058
2058
|
const o = {};
|
|
2059
2059
|
if (i = i || {}, n == null) return i;
|
|
2060
2060
|
do {
|
|
2061
2061
|
for (r = Object.getOwnPropertyNames(n), s = r.length; s-- > 0; )
|
|
2062
2062
|
a = r[s], (!e || e(a, n, i)) && !o[a] && (i[a] = n[a], o[a] = !0);
|
|
2063
|
-
n = t !== !1 &&
|
|
2063
|
+
n = t !== !1 && we(n);
|
|
2064
2064
|
} while (n && (!t || t(n, i)) && n !== Object.prototype);
|
|
2065
2065
|
return i;
|
|
2066
|
-
},
|
|
2066
|
+
}, dr = (n, i, t) => {
|
|
2067
2067
|
n = String(n), (t === void 0 || t > n.length) && (t = n.length), t -= i.length;
|
|
2068
2068
|
const e = n.indexOf(i, t);
|
|
2069
2069
|
return e !== -1 && e === t;
|
|
2070
|
-
},
|
|
2070
|
+
}, _r = (n) => {
|
|
2071
2071
|
if (!n) return null;
|
|
2072
2072
|
if (ht(n)) return n;
|
|
2073
2073
|
let i = n.length;
|
|
2074
|
-
if (!
|
|
2074
|
+
if (!ai(i)) return null;
|
|
2075
2075
|
const t = new Array(i);
|
|
2076
2076
|
for (; i-- > 0; )
|
|
2077
2077
|
t[i] = n[i];
|
|
2078
2078
|
return t;
|
|
2079
|
-
},
|
|
2080
|
-
const e = (n && n[
|
|
2079
|
+
}, gr = /* @__PURE__ */ ((n) => (i) => n && i instanceof n)(typeof Uint8Array < "u" && we(Uint8Array)), mr = (n, i) => {
|
|
2080
|
+
const e = (n && n[kt]).call(n);
|
|
2081
2081
|
let r;
|
|
2082
2082
|
for (; (r = e.next()) && !r.done; ) {
|
|
2083
2083
|
const s = r.value;
|
|
2084
2084
|
i.call(n, s[0], s[1]);
|
|
2085
2085
|
}
|
|
2086
|
-
},
|
|
2086
|
+
}, yr = (n, i) => {
|
|
2087
2087
|
let t;
|
|
2088
2088
|
const e = [];
|
|
2089
2089
|
for (; (t = n.exec(i)) !== null; )
|
|
2090
2090
|
e.push(t);
|
|
2091
2091
|
return e;
|
|
2092
|
-
},
|
|
2092
|
+
}, br = H("HTMLFormElement"), Pr = (n) => n.toLowerCase().replace(
|
|
2093
2093
|
/[-_\s]([a-z\d])(\w*)/g,
|
|
2094
2094
|
function(t, e, r) {
|
|
2095
2095
|
return e.toUpperCase() + r;
|
|
2096
2096
|
}
|
|
2097
|
-
),
|
|
2097
|
+
), je = (({ hasOwnProperty: n }) => (i, t) => n.call(i, t))(Object.prototype), vr = H("RegExp"), ui = (n, i) => {
|
|
2098
2098
|
const t = Object.getOwnPropertyDescriptors(n), e = {};
|
|
2099
2099
|
Pt(t, (r, s) => {
|
|
2100
2100
|
let a;
|
|
2101
2101
|
(a = i(r, s, n)) !== !1 && (e[s] = a || r);
|
|
2102
2102
|
}), Object.defineProperties(n, e);
|
|
2103
|
-
},
|
|
2104
|
-
|
|
2105
|
-
if (
|
|
2103
|
+
}, wr = (n) => {
|
|
2104
|
+
ui(n, (i, t) => {
|
|
2105
|
+
if (U(n) && ["arguments", "caller", "callee"].indexOf(t) !== -1)
|
|
2106
2106
|
return !1;
|
|
2107
2107
|
const e = n[t];
|
|
2108
|
-
if (
|
|
2108
|
+
if (U(e)) {
|
|
2109
2109
|
if (i.enumerable = !1, "writable" in i) {
|
|
2110
2110
|
i.writable = !1;
|
|
2111
2111
|
return;
|
|
@@ -2115,19 +2115,19 @@ const cr = (n, i, t, { allOwnKeys: e } = {}) => (Pt(i, (r, s) => {
|
|
|
2115
2115
|
});
|
|
2116
2116
|
}
|
|
2117
2117
|
});
|
|
2118
|
-
},
|
|
2118
|
+
}, Er = (n, i) => {
|
|
2119
2119
|
const t = {}, e = (r) => {
|
|
2120
2120
|
r.forEach((s) => {
|
|
2121
2121
|
t[s] = !0;
|
|
2122
2122
|
});
|
|
2123
2123
|
};
|
|
2124
2124
|
return ht(n) ? e(n) : e(String(n).split(i)), t;
|
|
2125
|
-
},
|
|
2126
|
-
},
|
|
2127
|
-
function
|
|
2128
|
-
return !!(n &&
|
|
2125
|
+
}, Sr = () => {
|
|
2126
|
+
}, Tr = (n, i) => n != null && Number.isFinite(n = +n) ? n : i;
|
|
2127
|
+
function Cr(n) {
|
|
2128
|
+
return !!(n && U(n.append) && n[ri] === "FormData" && n[kt]);
|
|
2129
2129
|
}
|
|
2130
|
-
const
|
|
2130
|
+
const Ar = (n) => {
|
|
2131
2131
|
const i = new Array(10), t = (e, r) => {
|
|
2132
2132
|
if (qt(e)) {
|
|
2133
2133
|
if (i.indexOf(e) >= 0)
|
|
@@ -2144,70 +2144,71 @@ const Tr = (n) => {
|
|
|
2144
2144
|
return e;
|
|
2145
2145
|
};
|
|
2146
2146
|
return t(n, 0);
|
|
2147
|
-
},
|
|
2147
|
+
}, Rr = H("AsyncFunction"), Or = (n) => n && (qt(n) || U(n)) && U(n.then) && U(n.catch), hi = ((n, i) => n ? setImmediate : i ? ((t, e) => (et.addEventListener("message", ({ source: r, data: s }) => {
|
|
2148
2148
|
r === et && s === t && e.length && e.shift()();
|
|
2149
2149
|
}, !1), (r) => {
|
|
2150
2150
|
e.push(r), et.postMessage(t, "*");
|
|
2151
2151
|
}))(`axios@${Math.random()}`, []) : (t) => setTimeout(t))(
|
|
2152
2152
|
typeof setImmediate == "function",
|
|
2153
|
-
|
|
2154
|
-
),
|
|
2153
|
+
U(et.postMessage)
|
|
2154
|
+
), xr = typeof queueMicrotask < "u" ? queueMicrotask.bind(et) : typeof process < "u" && process.nextTick || hi, Dr = (n) => n != null && U(n[kt]), d = {
|
|
2155
2155
|
isArray: ht,
|
|
2156
|
-
isArrayBuffer:
|
|
2157
|
-
isBuffer:
|
|
2158
|
-
isFormData:
|
|
2159
|
-
isArrayBufferView:
|
|
2160
|
-
isString:
|
|
2161
|
-
isNumber:
|
|
2162
|
-
isBoolean:
|
|
2156
|
+
isArrayBuffer: si,
|
|
2157
|
+
isBuffer: Gn,
|
|
2158
|
+
isFormData: nr,
|
|
2159
|
+
isArrayBufferView: $n,
|
|
2160
|
+
isString: Jn,
|
|
2161
|
+
isNumber: ai,
|
|
2162
|
+
isBoolean: Qn,
|
|
2163
2163
|
isObject: qt,
|
|
2164
2164
|
isPlainObject: xt,
|
|
2165
|
-
isReadableStream:
|
|
2166
|
-
isRequest:
|
|
2167
|
-
isResponse:
|
|
2168
|
-
isHeaders:
|
|
2165
|
+
isReadableStream: sr,
|
|
2166
|
+
isRequest: ar,
|
|
2167
|
+
isResponse: or,
|
|
2168
|
+
isHeaders: cr,
|
|
2169
2169
|
isUndefined: bt,
|
|
2170
|
-
isDate:
|
|
2171
|
-
isFile:
|
|
2172
|
-
isBlob:
|
|
2173
|
-
isRegExp:
|
|
2174
|
-
isFunction:
|
|
2175
|
-
isStream:
|
|
2176
|
-
isURLSearchParams:
|
|
2177
|
-
isTypedArray:
|
|
2178
|
-
isFileList:
|
|
2170
|
+
isDate: Zn,
|
|
2171
|
+
isFile: Yn,
|
|
2172
|
+
isBlob: tr,
|
|
2173
|
+
isRegExp: vr,
|
|
2174
|
+
isFunction: U,
|
|
2175
|
+
isStream: ir,
|
|
2176
|
+
isURLSearchParams: rr,
|
|
2177
|
+
isTypedArray: gr,
|
|
2178
|
+
isFileList: er,
|
|
2179
2179
|
forEach: Pt,
|
|
2180
|
-
merge:
|
|
2181
|
-
extend:
|
|
2182
|
-
trim:
|
|
2183
|
-
stripBOM:
|
|
2184
|
-
inherits:
|
|
2185
|
-
toFlatObject:
|
|
2186
|
-
kindOf:
|
|
2180
|
+
merge: ee,
|
|
2181
|
+
extend: hr,
|
|
2182
|
+
trim: ur,
|
|
2183
|
+
stripBOM: lr,
|
|
2184
|
+
inherits: fr,
|
|
2185
|
+
toFlatObject: pr,
|
|
2186
|
+
kindOf: Ft,
|
|
2187
2187
|
kindOfTest: H,
|
|
2188
|
-
endsWith:
|
|
2189
|
-
toArray:
|
|
2190
|
-
forEachEntry:
|
|
2191
|
-
matchAll:
|
|
2192
|
-
isHTMLForm:
|
|
2193
|
-
hasOwnProperty:
|
|
2194
|
-
hasOwnProp:
|
|
2188
|
+
endsWith: dr,
|
|
2189
|
+
toArray: _r,
|
|
2190
|
+
forEachEntry: mr,
|
|
2191
|
+
matchAll: yr,
|
|
2192
|
+
isHTMLForm: br,
|
|
2193
|
+
hasOwnProperty: je,
|
|
2194
|
+
hasOwnProp: je,
|
|
2195
2195
|
// an alias to avoid ESLint no-prototype-builtins detection
|
|
2196
|
-
reduceDescriptors:
|
|
2197
|
-
freezeMethods:
|
|
2198
|
-
toObjectSet:
|
|
2199
|
-
toCamelCase:
|
|
2200
|
-
noop:
|
|
2201
|
-
toFiniteNumber:
|
|
2202
|
-
findKey:
|
|
2196
|
+
reduceDescriptors: ui,
|
|
2197
|
+
freezeMethods: wr,
|
|
2198
|
+
toObjectSet: Er,
|
|
2199
|
+
toCamelCase: Pr,
|
|
2200
|
+
noop: Sr,
|
|
2201
|
+
toFiniteNumber: Tr,
|
|
2202
|
+
findKey: oi,
|
|
2203
2203
|
global: et,
|
|
2204
|
-
isContextDefined:
|
|
2205
|
-
isSpecCompliantForm:
|
|
2206
|
-
toJSONObject:
|
|
2207
|
-
isAsyncFn:
|
|
2208
|
-
isThenable:
|
|
2209
|
-
setImmediate:
|
|
2210
|
-
asap:
|
|
2204
|
+
isContextDefined: ci,
|
|
2205
|
+
isSpecCompliantForm: Cr,
|
|
2206
|
+
toJSONObject: Ar,
|
|
2207
|
+
isAsyncFn: Rr,
|
|
2208
|
+
isThenable: Or,
|
|
2209
|
+
setImmediate: hi,
|
|
2210
|
+
asap: xr,
|
|
2211
|
+
isIterable: Dr
|
|
2211
2212
|
};
|
|
2212
2213
|
function w(n, i, t, e, r) {
|
|
2213
2214
|
Error.call(this), Error.captureStackTrace ? Error.captureStackTrace(this, this.constructor) : this.stack = new Error().stack, this.message = n, this.name = "AxiosError", i && (this.code = i), t && (this.config = t), e && (this.request = e), r && (this.response = r, this.status = r.status ? r.status : null);
|
|
@@ -2233,7 +2234,7 @@ d.inherits(w, Error, {
|
|
|
2233
2234
|
};
|
|
2234
2235
|
}
|
|
2235
2236
|
});
|
|
2236
|
-
const
|
|
2237
|
+
const li = w.prototype, fi = {};
|
|
2237
2238
|
[
|
|
2238
2239
|
"ERR_BAD_OPTION_VALUE",
|
|
2239
2240
|
"ERR_BAD_OPTION",
|
|
@@ -2249,35 +2250,35 @@ const ui = w.prototype, hi = {};
|
|
|
2249
2250
|
"ERR_INVALID_URL"
|
|
2250
2251
|
// eslint-disable-next-line func-names
|
|
2251
2252
|
].forEach((n) => {
|
|
2252
|
-
|
|
2253
|
+
fi[n] = { value: n };
|
|
2253
2254
|
});
|
|
2254
|
-
Object.defineProperties(w,
|
|
2255
|
-
Object.defineProperty(
|
|
2255
|
+
Object.defineProperties(w, fi);
|
|
2256
|
+
Object.defineProperty(li, "isAxiosError", { value: !0 });
|
|
2256
2257
|
w.from = (n, i, t, e, r, s) => {
|
|
2257
|
-
const a = Object.create(
|
|
2258
|
+
const a = Object.create(li);
|
|
2258
2259
|
return d.toFlatObject(n, a, function(c) {
|
|
2259
2260
|
return c !== Error.prototype;
|
|
2260
2261
|
}, (o) => o !== "isAxiosError"), w.call(a, n.message, i, t, e, r), a.cause = n, a.name = n.name, s && Object.assign(a, s), a;
|
|
2261
2262
|
};
|
|
2262
|
-
const
|
|
2263
|
-
function
|
|
2263
|
+
const Ir = null;
|
|
2264
|
+
function ie(n) {
|
|
2264
2265
|
return d.isPlainObject(n) || d.isArray(n);
|
|
2265
2266
|
}
|
|
2266
|
-
function
|
|
2267
|
+
function pi(n) {
|
|
2267
2268
|
return d.endsWith(n, "[]") ? n.slice(0, -2) : n;
|
|
2268
2269
|
}
|
|
2269
2270
|
function qe(n, i, t) {
|
|
2270
2271
|
return n ? n.concat(i).map(function(r, s) {
|
|
2271
|
-
return r =
|
|
2272
|
+
return r = pi(r), !t && s ? "[" + r + "]" : r;
|
|
2272
2273
|
}).join(t ? "." : "") : i;
|
|
2273
2274
|
}
|
|
2274
|
-
function
|
|
2275
|
-
return d.isArray(n) && !n.some(
|
|
2275
|
+
function Br(n) {
|
|
2276
|
+
return d.isArray(n) && !n.some(ie);
|
|
2276
2277
|
}
|
|
2277
|
-
const
|
|
2278
|
+
const Nr = d.toFlatObject(d, {}, null, function(i) {
|
|
2278
2279
|
return /^is[A-Z]/.test(i);
|
|
2279
2280
|
});
|
|
2280
|
-
function
|
|
2281
|
+
function Kt(n, i, t) {
|
|
2281
2282
|
if (!d.isObject(n))
|
|
2282
2283
|
throw new TypeError("target must be an object");
|
|
2283
2284
|
i = i || new FormData(), t = d.toFlatObject(t, {
|
|
@@ -2303,8 +2304,8 @@ function jt(n, i, t) {
|
|
|
2303
2304
|
if (m && !y && typeof m == "object") {
|
|
2304
2305
|
if (d.endsWith(b, "{}"))
|
|
2305
2306
|
b = e ? b : b.slice(0, -2), m = JSON.stringify(m);
|
|
2306
|
-
else if (d.isArray(m) &&
|
|
2307
|
-
return b =
|
|
2307
|
+
else if (d.isArray(m) && Br(m) || (d.isFileList(m) || d.endsWith(b, "[]")) && (C = d.toArray(m)))
|
|
2308
|
+
return b = pi(b), C.forEach(function(R, V) {
|
|
2308
2309
|
!(d.isUndefined(R) || R === null) && i.append(
|
|
2309
2310
|
// eslint-disable-next-line no-nested-ternary
|
|
2310
2311
|
a === !0 ? qe([b], V, s) : a === null ? b : b + "[]",
|
|
@@ -2312,12 +2313,12 @@ function jt(n, i, t) {
|
|
|
2312
2313
|
);
|
|
2313
2314
|
}), !1;
|
|
2314
2315
|
}
|
|
2315
|
-
return
|
|
2316
|
+
return ie(m) ? !0 : (i.append(qe(y, b, s), u(m)), !1);
|
|
2316
2317
|
}
|
|
2317
|
-
const f = [], g = Object.assign(
|
|
2318
|
+
const f = [], g = Object.assign(Nr, {
|
|
2318
2319
|
defaultVisitor: l,
|
|
2319
2320
|
convertValue: u,
|
|
2320
|
-
isVisitable:
|
|
2321
|
+
isVisitable: ie
|
|
2321
2322
|
});
|
|
2322
2323
|
function P(m, b) {
|
|
2323
2324
|
if (!d.isUndefined(m)) {
|
|
@@ -2338,7 +2339,7 @@ function jt(n, i, t) {
|
|
|
2338
2339
|
throw new TypeError("data must be an object");
|
|
2339
2340
|
return P(n), i;
|
|
2340
2341
|
}
|
|
2341
|
-
function
|
|
2342
|
+
function Ke(n) {
|
|
2342
2343
|
const i = {
|
|
2343
2344
|
"!": "%21",
|
|
2344
2345
|
"'": "%27",
|
|
@@ -2352,40 +2353,40 @@ function je(n) {
|
|
|
2352
2353
|
return i[e];
|
|
2353
2354
|
});
|
|
2354
2355
|
}
|
|
2355
|
-
function
|
|
2356
|
-
this._pairs = [], n &&
|
|
2356
|
+
function Ee(n, i) {
|
|
2357
|
+
this._pairs = [], n && Kt(n, this, i);
|
|
2357
2358
|
}
|
|
2358
|
-
const
|
|
2359
|
-
|
|
2359
|
+
const di = Ee.prototype;
|
|
2360
|
+
di.append = function(i, t) {
|
|
2360
2361
|
this._pairs.push([i, t]);
|
|
2361
2362
|
};
|
|
2362
|
-
|
|
2363
|
+
di.toString = function(i) {
|
|
2363
2364
|
const t = i ? function(e) {
|
|
2364
|
-
return i.call(this, e,
|
|
2365
|
-
} :
|
|
2365
|
+
return i.call(this, e, Ke);
|
|
2366
|
+
} : Ke;
|
|
2366
2367
|
return this._pairs.map(function(r) {
|
|
2367
2368
|
return t(r[0]) + "=" + t(r[1]);
|
|
2368
2369
|
}, "").join("&");
|
|
2369
2370
|
};
|
|
2370
|
-
function
|
|
2371
|
+
function Vr(n) {
|
|
2371
2372
|
return encodeURIComponent(n).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
|
|
2372
2373
|
}
|
|
2373
|
-
function
|
|
2374
|
+
function _i(n, i, t) {
|
|
2374
2375
|
if (!i)
|
|
2375
2376
|
return n;
|
|
2376
|
-
const e = t && t.encode ||
|
|
2377
|
+
const e = t && t.encode || Vr;
|
|
2377
2378
|
d.isFunction(t) && (t = {
|
|
2378
2379
|
serialize: t
|
|
2379
2380
|
});
|
|
2380
2381
|
const r = t && t.serialize;
|
|
2381
2382
|
let s;
|
|
2382
|
-
if (r ? s = r(i, t) : s = d.isURLSearchParams(i) ? i.toString() : new
|
|
2383
|
+
if (r ? s = r(i, t) : s = d.isURLSearchParams(i) ? i.toString() : new Ee(i, t).toString(e), s) {
|
|
2383
2384
|
const a = n.indexOf("#");
|
|
2384
2385
|
a !== -1 && (n = n.slice(0, a)), n += (n.indexOf("?") === -1 ? "?" : "&") + s;
|
|
2385
2386
|
}
|
|
2386
2387
|
return n;
|
|
2387
2388
|
}
|
|
2388
|
-
class
|
|
2389
|
+
class He {
|
|
2389
2390
|
constructor() {
|
|
2390
2391
|
this.handlers = [];
|
|
2391
2392
|
}
|
|
@@ -2439,41 +2440,41 @@ class Ke {
|
|
|
2439
2440
|
});
|
|
2440
2441
|
}
|
|
2441
2442
|
}
|
|
2442
|
-
const
|
|
2443
|
+
const gi = {
|
|
2443
2444
|
silentJSONParsing: !0,
|
|
2444
2445
|
forcedJSONParsing: !0,
|
|
2445
2446
|
clarifyTimeoutError: !1
|
|
2446
|
-
},
|
|
2447
|
+
}, Ur = typeof URLSearchParams < "u" ? URLSearchParams : Ee, Lr = typeof FormData < "u" ? FormData : null, Mr = typeof Blob < "u" ? Blob : null, kr = {
|
|
2447
2448
|
isBrowser: !0,
|
|
2448
2449
|
classes: {
|
|
2449
|
-
URLSearchParams:
|
|
2450
|
-
FormData:
|
|
2451
|
-
Blob:
|
|
2450
|
+
URLSearchParams: Ur,
|
|
2451
|
+
FormData: Lr,
|
|
2452
|
+
Blob: Mr
|
|
2452
2453
|
},
|
|
2453
2454
|
protocols: ["http", "https", "file", "blob", "url", "data"]
|
|
2454
|
-
},
|
|
2455
|
-
self instanceof WorkerGlobalScope && typeof self.importScripts == "function",
|
|
2455
|
+
}, Se = typeof window < "u" && typeof document < "u", ne = typeof navigator == "object" && navigator || void 0, Fr = Se && (!ne || ["ReactNative", "NativeScript", "NS"].indexOf(ne.product) < 0), jr = typeof WorkerGlobalScope < "u" && // eslint-disable-next-line no-undef
|
|
2456
|
+
self instanceof WorkerGlobalScope && typeof self.importScripts == "function", qr = Se && window.location.href || "http://localhost", Kr = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2456
2457
|
__proto__: null,
|
|
2457
|
-
hasBrowserEnv:
|
|
2458
|
-
hasStandardBrowserEnv:
|
|
2459
|
-
hasStandardBrowserWebWorkerEnv:
|
|
2460
|
-
navigator:
|
|
2461
|
-
origin:
|
|
2458
|
+
hasBrowserEnv: Se,
|
|
2459
|
+
hasStandardBrowserEnv: Fr,
|
|
2460
|
+
hasStandardBrowserWebWorkerEnv: jr,
|
|
2461
|
+
navigator: ne,
|
|
2462
|
+
origin: qr
|
|
2462
2463
|
}, Symbol.toStringTag, { value: "Module" })), B = {
|
|
2463
|
-
...
|
|
2464
|
-
...
|
|
2464
|
+
...Kr,
|
|
2465
|
+
...kr
|
|
2465
2466
|
};
|
|
2466
|
-
function
|
|
2467
|
-
return
|
|
2467
|
+
function Hr(n, i) {
|
|
2468
|
+
return Kt(n, new B.classes.URLSearchParams(), Object.assign({
|
|
2468
2469
|
visitor: function(t, e, r, s) {
|
|
2469
2470
|
return B.isNode && d.isBuffer(t) ? (this.append(e, t.toString("base64")), !1) : s.defaultVisitor.apply(this, arguments);
|
|
2470
2471
|
}
|
|
2471
2472
|
}, i));
|
|
2472
2473
|
}
|
|
2473
|
-
function
|
|
2474
|
+
function Wr(n) {
|
|
2474
2475
|
return d.matchAll(/\w+|\[(\w*)]/g, n).map((i) => i[0] === "[]" ? "" : i[1] || i[0]);
|
|
2475
2476
|
}
|
|
2476
|
-
function
|
|
2477
|
+
function Xr(n) {
|
|
2477
2478
|
const i = {}, t = Object.keys(n);
|
|
2478
2479
|
let e;
|
|
2479
2480
|
const r = t.length;
|
|
@@ -2482,22 +2483,22 @@ function Kr(n) {
|
|
|
2482
2483
|
s = t[e], i[s] = n[s];
|
|
2483
2484
|
return i;
|
|
2484
2485
|
}
|
|
2485
|
-
function
|
|
2486
|
+
function mi(n) {
|
|
2486
2487
|
function i(t, e, r, s) {
|
|
2487
2488
|
let a = t[s++];
|
|
2488
2489
|
if (a === "__proto__") return !0;
|
|
2489
2490
|
const o = Number.isFinite(+a), c = s >= t.length;
|
|
2490
|
-
return a = !a && d.isArray(r) ? r.length : a, c ? (d.hasOwnProp(r, a) ? r[a] = [r[a], e] : r[a] = e, !o) : ((!r[a] || !d.isObject(r[a])) && (r[a] = []), i(t, e, r[a], s) && d.isArray(r[a]) && (r[a] =
|
|
2491
|
+
return a = !a && d.isArray(r) ? r.length : a, c ? (d.hasOwnProp(r, a) ? r[a] = [r[a], e] : r[a] = e, !o) : ((!r[a] || !d.isObject(r[a])) && (r[a] = []), i(t, e, r[a], s) && d.isArray(r[a]) && (r[a] = Xr(r[a])), !o);
|
|
2491
2492
|
}
|
|
2492
2493
|
if (d.isFormData(n) && d.isFunction(n.entries)) {
|
|
2493
2494
|
const t = {};
|
|
2494
2495
|
return d.forEachEntry(n, (e, r) => {
|
|
2495
|
-
i(
|
|
2496
|
+
i(Wr(e), r, t, 0);
|
|
2496
2497
|
}), t;
|
|
2497
2498
|
}
|
|
2498
2499
|
return null;
|
|
2499
2500
|
}
|
|
2500
|
-
function
|
|
2501
|
+
function zr(n, i, t) {
|
|
2501
2502
|
if (d.isString(n))
|
|
2502
2503
|
try {
|
|
2503
2504
|
return (i || JSON.parse)(n), d.trim(n);
|
|
@@ -2508,12 +2509,12 @@ function Hr(n, i, t) {
|
|
|
2508
2509
|
return (t || JSON.stringify)(n);
|
|
2509
2510
|
}
|
|
2510
2511
|
const vt = {
|
|
2511
|
-
transitional:
|
|
2512
|
+
transitional: gi,
|
|
2512
2513
|
adapter: ["xhr", "http", "fetch"],
|
|
2513
2514
|
transformRequest: [function(i, t) {
|
|
2514
2515
|
const e = t.getContentType() || "", r = e.indexOf("application/json") > -1, s = d.isObject(i);
|
|
2515
2516
|
if (s && d.isHTMLForm(i) && (i = new FormData(i)), d.isFormData(i))
|
|
2516
|
-
return r ? JSON.stringify(
|
|
2517
|
+
return r ? JSON.stringify(mi(i)) : i;
|
|
2517
2518
|
if (d.isArrayBuffer(i) || d.isBuffer(i) || d.isStream(i) || d.isFile(i) || d.isBlob(i) || d.isReadableStream(i))
|
|
2518
2519
|
return i;
|
|
2519
2520
|
if (d.isArrayBufferView(i))
|
|
@@ -2523,17 +2524,17 @@ const vt = {
|
|
|
2523
2524
|
let o;
|
|
2524
2525
|
if (s) {
|
|
2525
2526
|
if (e.indexOf("application/x-www-form-urlencoded") > -1)
|
|
2526
|
-
return
|
|
2527
|
+
return Hr(i, this.formSerializer).toString();
|
|
2527
2528
|
if ((o = d.isFileList(i)) || e.indexOf("multipart/form-data") > -1) {
|
|
2528
2529
|
const c = this.env && this.env.FormData;
|
|
2529
|
-
return
|
|
2530
|
+
return Kt(
|
|
2530
2531
|
o ? { "files[]": i } : i,
|
|
2531
2532
|
c && new c(),
|
|
2532
2533
|
this.formSerializer
|
|
2533
2534
|
);
|
|
2534
2535
|
}
|
|
2535
2536
|
}
|
|
2536
|
-
return s || r ? (t.setContentType("application/json", !1),
|
|
2537
|
+
return s || r ? (t.setContentType("application/json", !1), zr(i)) : i;
|
|
2537
2538
|
}],
|
|
2538
2539
|
transformResponse: [function(i) {
|
|
2539
2540
|
const t = this.transitional || vt.transitional, e = t && t.forcedJSONParsing, r = this.responseType === "json";
|
|
@@ -2576,7 +2577,7 @@ const vt = {
|
|
|
2576
2577
|
d.forEach(["delete", "get", "head", "post", "put", "patch"], (n) => {
|
|
2577
2578
|
vt.headers[n] = {};
|
|
2578
2579
|
});
|
|
2579
|
-
const
|
|
2580
|
+
const Gr = d.toObjectSet([
|
|
2580
2581
|
"age",
|
|
2581
2582
|
"authorization",
|
|
2582
2583
|
"content-length",
|
|
@@ -2594,29 +2595,29 @@ const Wr = d.toObjectSet([
|
|
|
2594
2595
|
"referer",
|
|
2595
2596
|
"retry-after",
|
|
2596
2597
|
"user-agent"
|
|
2597
|
-
]),
|
|
2598
|
+
]), $r = (n) => {
|
|
2598
2599
|
const i = {};
|
|
2599
2600
|
let t, e, r;
|
|
2600
2601
|
return n && n.split(`
|
|
2601
2602
|
`).forEach(function(a) {
|
|
2602
|
-
r = a.indexOf(":"), t = a.substring(0, r).trim().toLowerCase(), e = a.substring(r + 1).trim(), !(!t || i[t] &&
|
|
2603
|
+
r = a.indexOf(":"), t = a.substring(0, r).trim().toLowerCase(), e = a.substring(r + 1).trim(), !(!t || i[t] && Gr[t]) && (t === "set-cookie" ? i[t] ? i[t].push(e) : i[t] = [e] : i[t] = i[t] ? i[t] + ", " + e : e);
|
|
2603
2604
|
}), i;
|
|
2604
|
-
},
|
|
2605
|
+
}, We = Symbol("internals");
|
|
2605
2606
|
function ft(n) {
|
|
2606
2607
|
return n && String(n).trim().toLowerCase();
|
|
2607
2608
|
}
|
|
2608
2609
|
function Dt(n) {
|
|
2609
2610
|
return n === !1 || n == null ? n : d.isArray(n) ? n.map(Dt) : String(n);
|
|
2610
2611
|
}
|
|
2611
|
-
function
|
|
2612
|
+
function Jr(n) {
|
|
2612
2613
|
const i = /* @__PURE__ */ Object.create(null), t = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;
|
|
2613
2614
|
let e;
|
|
2614
2615
|
for (; e = t.exec(n); )
|
|
2615
2616
|
i[e[1]] = e[2];
|
|
2616
2617
|
return i;
|
|
2617
2618
|
}
|
|
2618
|
-
const
|
|
2619
|
-
function
|
|
2619
|
+
const Qr = (n) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(n.trim());
|
|
2620
|
+
function Jt(n, i, t, e, r) {
|
|
2620
2621
|
if (d.isFunction(e))
|
|
2621
2622
|
return e.call(this, i, t);
|
|
2622
2623
|
if (r && (i = t), !!d.isString(i)) {
|
|
@@ -2626,10 +2627,10 @@ function $t(n, i, t, e, r) {
|
|
|
2626
2627
|
return e.test(i);
|
|
2627
2628
|
}
|
|
2628
2629
|
}
|
|
2629
|
-
function
|
|
2630
|
+
function Zr(n) {
|
|
2630
2631
|
return n.trim().toLowerCase().replace(/([a-z\d])(\w*)/g, (i, t, e) => t.toUpperCase() + e);
|
|
2631
2632
|
}
|
|
2632
|
-
function
|
|
2633
|
+
function Yr(n, i) {
|
|
2633
2634
|
const t = d.toCamelCase(" " + i);
|
|
2634
2635
|
["get", "set", "has"].forEach((e) => {
|
|
2635
2636
|
Object.defineProperty(n, e + t, {
|
|
@@ -2640,7 +2641,7 @@ function Jr(n, i) {
|
|
|
2640
2641
|
});
|
|
2641
2642
|
});
|
|
2642
2643
|
}
|
|
2643
|
-
let
|
|
2644
|
+
let L = class {
|
|
2644
2645
|
constructor(i) {
|
|
2645
2646
|
i && this.set(i);
|
|
2646
2647
|
}
|
|
@@ -2656,12 +2657,17 @@ let U = class {
|
|
|
2656
2657
|
const a = (o, c) => d.forEach(o, (u, l) => s(u, l, c));
|
|
2657
2658
|
if (d.isPlainObject(i) || i instanceof this.constructor)
|
|
2658
2659
|
a(i, t);
|
|
2659
|
-
else if (d.isString(i) && (i = i.trim()) && !
|
|
2660
|
-
a(
|
|
2661
|
-
else if (d.
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2660
|
+
else if (d.isString(i) && (i = i.trim()) && !Qr(i))
|
|
2661
|
+
a($r(i), t);
|
|
2662
|
+
else if (d.isObject(i) && d.isIterable(i)) {
|
|
2663
|
+
let o = {}, c, u;
|
|
2664
|
+
for (const l of i) {
|
|
2665
|
+
if (!d.isArray(l))
|
|
2666
|
+
throw TypeError("Object iterator must return a key-value pair");
|
|
2667
|
+
o[u = l[0]] = (c = o[u]) ? d.isArray(c) ? [...c, l[1]] : [c, l[1]] : l[1];
|
|
2668
|
+
}
|
|
2669
|
+
a(o, t);
|
|
2670
|
+
} else
|
|
2665
2671
|
i != null && s(t, i, e);
|
|
2666
2672
|
return this;
|
|
2667
2673
|
}
|
|
@@ -2673,7 +2679,7 @@ let U = class {
|
|
|
2673
2679
|
if (!t)
|
|
2674
2680
|
return r;
|
|
2675
2681
|
if (t === !0)
|
|
2676
|
-
return
|
|
2682
|
+
return Jr(r);
|
|
2677
2683
|
if (d.isFunction(t))
|
|
2678
2684
|
return t.call(this, r, e);
|
|
2679
2685
|
if (d.isRegExp(t))
|
|
@@ -2685,7 +2691,7 @@ let U = class {
|
|
|
2685
2691
|
has(i, t) {
|
|
2686
2692
|
if (i = ft(i), i) {
|
|
2687
2693
|
const e = d.findKey(this, i);
|
|
2688
|
-
return !!(e && this[e] !== void 0 && (!t ||
|
|
2694
|
+
return !!(e && this[e] !== void 0 && (!t || Jt(this, this[e], e, t)));
|
|
2689
2695
|
}
|
|
2690
2696
|
return !1;
|
|
2691
2697
|
}
|
|
@@ -2695,7 +2701,7 @@ let U = class {
|
|
|
2695
2701
|
function s(a) {
|
|
2696
2702
|
if (a = ft(a), a) {
|
|
2697
2703
|
const o = d.findKey(e, a);
|
|
2698
|
-
o && (!t ||
|
|
2704
|
+
o && (!t || Jt(e, e[o], o, t)) && (delete e[o], r = !0);
|
|
2699
2705
|
}
|
|
2700
2706
|
}
|
|
2701
2707
|
return d.isArray(i) ? i.forEach(s) : s(i), r;
|
|
@@ -2705,7 +2711,7 @@ let U = class {
|
|
|
2705
2711
|
let e = t.length, r = !1;
|
|
2706
2712
|
for (; e--; ) {
|
|
2707
2713
|
const s = t[e];
|
|
2708
|
-
(!i ||
|
|
2714
|
+
(!i || Jt(this, this[s], s, i, !0)) && (delete this[s], r = !0);
|
|
2709
2715
|
}
|
|
2710
2716
|
return r;
|
|
2711
2717
|
}
|
|
@@ -2717,7 +2723,7 @@ let U = class {
|
|
|
2717
2723
|
t[a] = Dt(r), delete t[s];
|
|
2718
2724
|
return;
|
|
2719
2725
|
}
|
|
2720
|
-
const o = i ?
|
|
2726
|
+
const o = i ? Zr(s) : String(s).trim();
|
|
2721
2727
|
o !== s && delete t[s], t[o] = Dt(r), e[o] = !0;
|
|
2722
2728
|
}), this;
|
|
2723
2729
|
}
|
|
@@ -2737,6 +2743,9 @@ let U = class {
|
|
|
2737
2743
|
return Object.entries(this.toJSON()).map(([i, t]) => i + ": " + t).join(`
|
|
2738
2744
|
`);
|
|
2739
2745
|
}
|
|
2746
|
+
getSetCookie() {
|
|
2747
|
+
return this.get("set-cookie") || [];
|
|
2748
|
+
}
|
|
2740
2749
|
get [Symbol.toStringTag]() {
|
|
2741
2750
|
return "AxiosHeaders";
|
|
2742
2751
|
}
|
|
@@ -2748,18 +2757,18 @@ let U = class {
|
|
|
2748
2757
|
return t.forEach((r) => e.set(r)), e;
|
|
2749
2758
|
}
|
|
2750
2759
|
static accessor(i) {
|
|
2751
|
-
const e = (this[
|
|
2760
|
+
const e = (this[We] = this[We] = {
|
|
2752
2761
|
accessors: {}
|
|
2753
2762
|
}).accessors, r = this.prototype;
|
|
2754
2763
|
function s(a) {
|
|
2755
2764
|
const o = ft(a);
|
|
2756
|
-
e[o] || (
|
|
2765
|
+
e[o] || (Yr(r, a), e[o] = !0);
|
|
2757
2766
|
}
|
|
2758
2767
|
return d.isArray(i) ? i.forEach(s) : s(i), this;
|
|
2759
2768
|
}
|
|
2760
2769
|
};
|
|
2761
|
-
|
|
2762
|
-
d.reduceDescriptors(
|
|
2770
|
+
L.accessor(["Content-Type", "Content-Length", "Accept", "Accept-Encoding", "User-Agent", "Authorization"]);
|
|
2771
|
+
d.reduceDescriptors(L.prototype, ({ value: n }, i) => {
|
|
2763
2772
|
let t = i[0].toUpperCase() + i.slice(1);
|
|
2764
2773
|
return {
|
|
2765
2774
|
get: () => n,
|
|
@@ -2768,15 +2777,15 @@ d.reduceDescriptors(U.prototype, ({ value: n }, i) => {
|
|
|
2768
2777
|
}
|
|
2769
2778
|
};
|
|
2770
2779
|
});
|
|
2771
|
-
d.freezeMethods(
|
|
2772
|
-
function
|
|
2773
|
-
const t = this || vt, e = i || t, r =
|
|
2780
|
+
d.freezeMethods(L);
|
|
2781
|
+
function Qt(n, i) {
|
|
2782
|
+
const t = this || vt, e = i || t, r = L.from(e.headers);
|
|
2774
2783
|
let s = e.data;
|
|
2775
2784
|
return d.forEach(n, function(o) {
|
|
2776
2785
|
s = o.call(t, s, r.normalize(), i ? i.status : void 0);
|
|
2777
2786
|
}), r.normalize(), s;
|
|
2778
2787
|
}
|
|
2779
|
-
function
|
|
2788
|
+
function yi(n) {
|
|
2780
2789
|
return !!(n && n.__CANCEL__);
|
|
2781
2790
|
}
|
|
2782
2791
|
function lt(n, i, t) {
|
|
@@ -2785,7 +2794,7 @@ function lt(n, i, t) {
|
|
|
2785
2794
|
d.inherits(lt, w, {
|
|
2786
2795
|
__CANCEL__: !0
|
|
2787
2796
|
});
|
|
2788
|
-
function
|
|
2797
|
+
function bi(n, i, t) {
|
|
2789
2798
|
const e = t.config.validateStatus;
|
|
2790
2799
|
!t.status || !e || e(t.status) ? n(t) : i(new w(
|
|
2791
2800
|
"Request failed with status code " + t.status,
|
|
@@ -2795,11 +2804,11 @@ function mi(n, i, t) {
|
|
|
2795
2804
|
t
|
|
2796
2805
|
));
|
|
2797
2806
|
}
|
|
2798
|
-
function
|
|
2807
|
+
function ts(n) {
|
|
2799
2808
|
const i = /^([-+\w]{1,25})(:?\/\/|:)/.exec(n);
|
|
2800
2809
|
return i && i[1] || "";
|
|
2801
2810
|
}
|
|
2802
|
-
function
|
|
2811
|
+
function es(n, i) {
|
|
2803
2812
|
n = n || 10;
|
|
2804
2813
|
const t = new Array(n), e = new Array(n);
|
|
2805
2814
|
let r = 0, s = 0, a;
|
|
@@ -2815,7 +2824,7 @@ function Zr(n, i) {
|
|
|
2815
2824
|
return P ? Math.round(g * 1e3 / P) : void 0;
|
|
2816
2825
|
};
|
|
2817
2826
|
}
|
|
2818
|
-
function
|
|
2827
|
+
function is(n, i) {
|
|
2819
2828
|
let t = 0, e = 1e3 / i, r, s;
|
|
2820
2829
|
const a = (u, l = Date.now()) => {
|
|
2821
2830
|
t = l, r = null, s && (clearTimeout(s), s = null), n.apply(null, u);
|
|
@@ -2829,8 +2838,8 @@ function Yr(n, i) {
|
|
|
2829
2838
|
}
|
|
2830
2839
|
const Ut = (n, i, t = 3) => {
|
|
2831
2840
|
let e = 0;
|
|
2832
|
-
const r =
|
|
2833
|
-
return
|
|
2841
|
+
const r = es(50, 250);
|
|
2842
|
+
return is((s) => {
|
|
2834
2843
|
const a = s.loaded, o = s.lengthComputable ? s.total : void 0, c = a - e, u = r(c), l = a <= o;
|
|
2835
2844
|
e = a;
|
|
2836
2845
|
const f = {
|
|
@@ -2846,17 +2855,17 @@ const Ut = (n, i, t = 3) => {
|
|
|
2846
2855
|
};
|
|
2847
2856
|
n(f);
|
|
2848
2857
|
}, t);
|
|
2849
|
-
},
|
|
2858
|
+
}, Xe = (n, i) => {
|
|
2850
2859
|
const t = n != null;
|
|
2851
2860
|
return [(e) => i[0]({
|
|
2852
2861
|
lengthComputable: t,
|
|
2853
2862
|
total: n,
|
|
2854
2863
|
loaded: e
|
|
2855
2864
|
}), i[1]];
|
|
2856
|
-
},
|
|
2865
|
+
}, ze = (n) => (...i) => d.asap(() => n(...i)), ns = B.hasStandardBrowserEnv ? /* @__PURE__ */ ((n, i) => (t) => (t = new URL(t, B.origin), n.protocol === t.protocol && n.host === t.host && (i || n.port === t.port)))(
|
|
2857
2866
|
new URL(B.origin),
|
|
2858
2867
|
B.navigator && /(msie|trident)/i.test(B.navigator.userAgent)
|
|
2859
|
-
) : () => !0,
|
|
2868
|
+
) : () => !0, rs = B.hasStandardBrowserEnv ? (
|
|
2860
2869
|
// Standard browser envs support document.cookie
|
|
2861
2870
|
{
|
|
2862
2871
|
write(n, i, t, e, r, s) {
|
|
@@ -2883,17 +2892,17 @@ const Ut = (n, i, t = 3) => {
|
|
|
2883
2892
|
}
|
|
2884
2893
|
}
|
|
2885
2894
|
);
|
|
2886
|
-
function
|
|
2895
|
+
function ss(n) {
|
|
2887
2896
|
return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(n);
|
|
2888
2897
|
}
|
|
2889
|
-
function
|
|
2898
|
+
function as(n, i) {
|
|
2890
2899
|
return i ? n.replace(/\/?\/$/, "") + "/" + i.replace(/^\/+/, "") : n;
|
|
2891
2900
|
}
|
|
2892
|
-
function
|
|
2893
|
-
let e = !
|
|
2894
|
-
return n && (e || t == !1) ?
|
|
2901
|
+
function Pi(n, i, t) {
|
|
2902
|
+
let e = !ss(i);
|
|
2903
|
+
return n && (e || t == !1) ? as(n, i) : i;
|
|
2895
2904
|
}
|
|
2896
|
-
const
|
|
2905
|
+
const Ge = (n) => n instanceof L ? { ...n } : n;
|
|
2897
2906
|
function nt(n, i) {
|
|
2898
2907
|
i = i || {};
|
|
2899
2908
|
const t = {};
|
|
@@ -2951,17 +2960,17 @@ function nt(n, i) {
|
|
|
2951
2960
|
socketPath: a,
|
|
2952
2961
|
responseEncoding: a,
|
|
2953
2962
|
validateStatus: o,
|
|
2954
|
-
headers: (u, l, f) => r(
|
|
2963
|
+
headers: (u, l, f) => r(Ge(u), Ge(l), f, !0)
|
|
2955
2964
|
};
|
|
2956
2965
|
return d.forEach(Object.keys(Object.assign({}, n, i)), function(l) {
|
|
2957
2966
|
const f = c[l] || r, g = f(n[l], i[l], l);
|
|
2958
2967
|
d.isUndefined(g) && f !== o || (t[l] = g);
|
|
2959
2968
|
}), t;
|
|
2960
2969
|
}
|
|
2961
|
-
const
|
|
2970
|
+
const vi = (n) => {
|
|
2962
2971
|
const i = nt({}, n);
|
|
2963
2972
|
let { data: t, withXSRFToken: e, xsrfHeaderName: r, xsrfCookieName: s, headers: a, auth: o } = i;
|
|
2964
|
-
i.headers = a =
|
|
2973
|
+
i.headers = a = L.from(a), i.url = _i(Pi(i.baseURL, i.url, i.allowAbsoluteUrls), n.params, n.paramsSerializer), o && a.set(
|
|
2965
2974
|
"Authorization",
|
|
2966
2975
|
"Basic " + btoa((o.username || "") + ":" + (o.password ? unescape(encodeURIComponent(o.password)) : ""))
|
|
2967
2976
|
);
|
|
@@ -2974,16 +2983,16 @@ const bi = (n) => {
|
|
|
2974
2983
|
a.setContentType([u || "multipart/form-data", ...l].join("; "));
|
|
2975
2984
|
}
|
|
2976
2985
|
}
|
|
2977
|
-
if (B.hasStandardBrowserEnv && (e && d.isFunction(e) && (e = e(i)), e || e !== !1 &&
|
|
2978
|
-
const u = r && s &&
|
|
2986
|
+
if (B.hasStandardBrowserEnv && (e && d.isFunction(e) && (e = e(i)), e || e !== !1 && ns(i.url))) {
|
|
2987
|
+
const u = r && s && rs.read(s);
|
|
2979
2988
|
u && a.set(r, u);
|
|
2980
2989
|
}
|
|
2981
2990
|
return i;
|
|
2982
|
-
},
|
|
2991
|
+
}, os = typeof XMLHttpRequest < "u", cs = os && function(n) {
|
|
2983
2992
|
return new Promise(function(t, e) {
|
|
2984
|
-
const r =
|
|
2993
|
+
const r = vi(n);
|
|
2985
2994
|
let s = r.data;
|
|
2986
|
-
const a =
|
|
2995
|
+
const a = L.from(r.headers).normalize();
|
|
2987
2996
|
let { responseType: o, onUploadProgress: c, onDownloadProgress: u } = r, l, f, g, P, m;
|
|
2988
2997
|
function b() {
|
|
2989
2998
|
P && P(), m && m(), r.cancelToken && r.cancelToken.unsubscribe(l), r.signal && r.signal.removeEventListener("abort", l);
|
|
@@ -2993,7 +3002,7 @@ const bi = (n) => {
|
|
|
2993
3002
|
function C() {
|
|
2994
3003
|
if (!y)
|
|
2995
3004
|
return;
|
|
2996
|
-
const R =
|
|
3005
|
+
const R = L.from(
|
|
2997
3006
|
"getAllResponseHeaders" in y && y.getAllResponseHeaders()
|
|
2998
3007
|
), I = {
|
|
2999
3008
|
data: !o || o === "text" || o === "json" ? y.responseText : y.response,
|
|
@@ -3003,10 +3012,10 @@ const bi = (n) => {
|
|
|
3003
3012
|
config: n,
|
|
3004
3013
|
request: y
|
|
3005
3014
|
};
|
|
3006
|
-
|
|
3007
|
-
t(
|
|
3008
|
-
}, function(
|
|
3009
|
-
e(
|
|
3015
|
+
bi(function(M) {
|
|
3016
|
+
t(M), b();
|
|
3017
|
+
}, function(M) {
|
|
3018
|
+
e(M), b();
|
|
3010
3019
|
}, I), y = null;
|
|
3011
3020
|
}
|
|
3012
3021
|
"onloadend" in y ? y.onloadend = C : y.onreadystatechange = function() {
|
|
@@ -3017,7 +3026,7 @@ const bi = (n) => {
|
|
|
3017
3026
|
e(new w("Network Error", w.ERR_NETWORK, n, y)), y = null;
|
|
3018
3027
|
}, y.ontimeout = function() {
|
|
3019
3028
|
let V = r.timeout ? "timeout of " + r.timeout + "ms exceeded" : "timeout exceeded";
|
|
3020
|
-
const I = r.transitional ||
|
|
3029
|
+
const I = r.transitional || gi;
|
|
3021
3030
|
r.timeoutErrorMessage && (V = r.timeoutErrorMessage), e(new w(
|
|
3022
3031
|
V,
|
|
3023
3032
|
I.clarifyTimeoutError ? w.ETIMEDOUT : w.ECONNABORTED,
|
|
@@ -3029,14 +3038,14 @@ const bi = (n) => {
|
|
|
3029
3038
|
}), d.isUndefined(r.withCredentials) || (y.withCredentials = !!r.withCredentials), o && o !== "json" && (y.responseType = r.responseType), u && ([g, m] = Ut(u, !0), y.addEventListener("progress", g)), c && y.upload && ([f, P] = Ut(c), y.upload.addEventListener("progress", f), y.upload.addEventListener("loadend", P)), (r.cancelToken || r.signal) && (l = (R) => {
|
|
3030
3039
|
y && (e(!R || R.type ? new lt(null, n, y) : R), y.abort(), y = null);
|
|
3031
3040
|
}, r.cancelToken && r.cancelToken.subscribe(l), r.signal && (r.signal.aborted ? l() : r.signal.addEventListener("abort", l)));
|
|
3032
|
-
const T =
|
|
3041
|
+
const T = ts(r.url);
|
|
3033
3042
|
if (T && B.protocols.indexOf(T) === -1) {
|
|
3034
3043
|
e(new w("Unsupported protocol " + T + ":", w.ERR_BAD_REQUEST, n));
|
|
3035
3044
|
return;
|
|
3036
3045
|
}
|
|
3037
3046
|
y.send(s || null);
|
|
3038
3047
|
});
|
|
3039
|
-
},
|
|
3048
|
+
}, us = (n, i) => {
|
|
3040
3049
|
const { length: t } = n = n ? n.filter(Boolean) : [];
|
|
3041
3050
|
if (i || t) {
|
|
3042
3051
|
let e = new AbortController(), r;
|
|
@@ -3059,7 +3068,7 @@ const bi = (n) => {
|
|
|
3059
3068
|
const { signal: c } = e;
|
|
3060
3069
|
return c.unsubscribe = () => d.asap(o), c;
|
|
3061
3070
|
}
|
|
3062
|
-
},
|
|
3071
|
+
}, hs = function* (n, i) {
|
|
3063
3072
|
let t = n.byteLength;
|
|
3064
3073
|
if (t < i) {
|
|
3065
3074
|
yield n;
|
|
@@ -3068,10 +3077,10 @@ const bi = (n) => {
|
|
|
3068
3077
|
let e = 0, r;
|
|
3069
3078
|
for (; e < t; )
|
|
3070
3079
|
r = e + i, yield n.slice(e, r), e = r;
|
|
3071
|
-
},
|
|
3072
|
-
for await (const t of
|
|
3073
|
-
yield*
|
|
3074
|
-
},
|
|
3080
|
+
}, ls = async function* (n, i) {
|
|
3081
|
+
for await (const t of fs(n))
|
|
3082
|
+
yield* hs(t, i);
|
|
3083
|
+
}, fs = async function* (n) {
|
|
3075
3084
|
if (n[Symbol.asyncIterator]) {
|
|
3076
3085
|
yield* n;
|
|
3077
3086
|
return;
|
|
@@ -3087,8 +3096,8 @@ const bi = (n) => {
|
|
|
3087
3096
|
} finally {
|
|
3088
3097
|
await i.cancel();
|
|
3089
3098
|
}
|
|
3090
|
-
},
|
|
3091
|
-
const r =
|
|
3099
|
+
}, $e = (n, i, t, e) => {
|
|
3100
|
+
const r = ls(n, i);
|
|
3092
3101
|
let s = 0, a, o = (c) => {
|
|
3093
3102
|
a || (a = !0, e && e(c));
|
|
3094
3103
|
};
|
|
@@ -3116,13 +3125,13 @@ const bi = (n) => {
|
|
|
3116
3125
|
}, {
|
|
3117
3126
|
highWaterMark: 2
|
|
3118
3127
|
});
|
|
3119
|
-
},
|
|
3128
|
+
}, Ht = typeof fetch == "function" && typeof Request == "function" && typeof Response == "function", wi = Ht && typeof ReadableStream == "function", ps = Ht && (typeof TextEncoder == "function" ? /* @__PURE__ */ ((n) => (i) => n.encode(i))(new TextEncoder()) : async (n) => new Uint8Array(await new Response(n).arrayBuffer())), Ei = (n, ...i) => {
|
|
3120
3129
|
try {
|
|
3121
3130
|
return !!n(...i);
|
|
3122
3131
|
} catch {
|
|
3123
3132
|
return !1;
|
|
3124
3133
|
}
|
|
3125
|
-
},
|
|
3134
|
+
}, ds = wi && Ei(() => {
|
|
3126
3135
|
let n = !1;
|
|
3127
3136
|
const i = new Request(B.origin, {
|
|
3128
3137
|
body: new ReadableStream(),
|
|
@@ -3132,17 +3141,17 @@ const bi = (n) => {
|
|
|
3132
3141
|
}
|
|
3133
3142
|
}).headers.has("Content-Type");
|
|
3134
3143
|
return n && !i;
|
|
3135
|
-
}),
|
|
3136
|
-
stream:
|
|
3144
|
+
}), Je = 64 * 1024, re = wi && Ei(() => d.isReadableStream(new Response("").body)), Lt = {
|
|
3145
|
+
stream: re && ((n) => n.body)
|
|
3137
3146
|
};
|
|
3138
|
-
|
|
3147
|
+
Ht && ((n) => {
|
|
3139
3148
|
["text", "arrayBuffer", "blob", "formData", "stream"].forEach((i) => {
|
|
3140
3149
|
!Lt[i] && (Lt[i] = d.isFunction(n[i]) ? (t) => t[i]() : (t, e) => {
|
|
3141
3150
|
throw new w(`Response type '${i}' is not supported`, w.ERR_NOT_SUPPORT, e);
|
|
3142
3151
|
});
|
|
3143
3152
|
});
|
|
3144
3153
|
})(new Response());
|
|
3145
|
-
const
|
|
3154
|
+
const _s = async (n) => {
|
|
3146
3155
|
if (n == null)
|
|
3147
3156
|
return 0;
|
|
3148
3157
|
if (d.isBlob(n))
|
|
@@ -3155,11 +3164,11 @@ const fs = async (n) => {
|
|
|
3155
3164
|
if (d.isArrayBufferView(n) || d.isArrayBuffer(n))
|
|
3156
3165
|
return n.byteLength;
|
|
3157
3166
|
if (d.isURLSearchParams(n) && (n = n + ""), d.isString(n))
|
|
3158
|
-
return (await
|
|
3159
|
-
},
|
|
3167
|
+
return (await ps(n)).byteLength;
|
|
3168
|
+
}, gs = async (n, i) => {
|
|
3160
3169
|
const t = d.toFiniteNumber(n.getContentLength());
|
|
3161
|
-
return t ??
|
|
3162
|
-
},
|
|
3170
|
+
return t ?? _s(i);
|
|
3171
|
+
}, ms = Ht && (async (n) => {
|
|
3163
3172
|
let {
|
|
3164
3173
|
url: i,
|
|
3165
3174
|
method: t,
|
|
@@ -3173,26 +3182,26 @@ const fs = async (n) => {
|
|
|
3173
3182
|
headers: l,
|
|
3174
3183
|
withCredentials: f = "same-origin",
|
|
3175
3184
|
fetchOptions: g
|
|
3176
|
-
} =
|
|
3185
|
+
} = vi(n);
|
|
3177
3186
|
u = u ? (u + "").toLowerCase() : "text";
|
|
3178
|
-
let P =
|
|
3187
|
+
let P = us([r, s && s.toAbortSignal()], a), m;
|
|
3179
3188
|
const b = P && P.unsubscribe && (() => {
|
|
3180
3189
|
P.unsubscribe();
|
|
3181
3190
|
});
|
|
3182
3191
|
let y;
|
|
3183
3192
|
try {
|
|
3184
|
-
if (c &&
|
|
3193
|
+
if (c && ds && t !== "get" && t !== "head" && (y = await gs(l, e)) !== 0) {
|
|
3185
3194
|
let I = new Request(i, {
|
|
3186
3195
|
method: "POST",
|
|
3187
3196
|
body: e,
|
|
3188
3197
|
duplex: "half"
|
|
3189
3198
|
}), v;
|
|
3190
3199
|
if (d.isFormData(e) && (v = I.headers.get("content-type")) && l.setContentType(v), I.body) {
|
|
3191
|
-
const [
|
|
3200
|
+
const [M, W] = Xe(
|
|
3192
3201
|
y,
|
|
3193
|
-
Ut(
|
|
3202
|
+
Ut(ze(c))
|
|
3194
3203
|
);
|
|
3195
|
-
e =
|
|
3204
|
+
e = $e(I.body, Je, M, W);
|
|
3196
3205
|
}
|
|
3197
3206
|
}
|
|
3198
3207
|
d.isString(f) || (f = f ? "include" : "omit");
|
|
@@ -3207,18 +3216,18 @@ const fs = async (n) => {
|
|
|
3207
3216
|
credentials: C ? f : void 0
|
|
3208
3217
|
});
|
|
3209
3218
|
let T = await fetch(m);
|
|
3210
|
-
const R =
|
|
3211
|
-
if (
|
|
3219
|
+
const R = re && (u === "stream" || u === "response");
|
|
3220
|
+
if (re && (o || R && b)) {
|
|
3212
3221
|
const I = {};
|
|
3213
3222
|
["status", "statusText", "headers"].forEach((X) => {
|
|
3214
3223
|
I[X] = T[X];
|
|
3215
3224
|
});
|
|
3216
|
-
const v = d.toFiniteNumber(T.headers.get("content-length")), [
|
|
3225
|
+
const v = d.toFiniteNumber(T.headers.get("content-length")), [M, W] = o && Xe(
|
|
3217
3226
|
v,
|
|
3218
|
-
Ut(
|
|
3227
|
+
Ut(ze(o), !0)
|
|
3219
3228
|
) || [];
|
|
3220
3229
|
T = new Response(
|
|
3221
|
-
|
|
3230
|
+
$e(T.body, Je, M, () => {
|
|
3222
3231
|
W && W(), b && b();
|
|
3223
3232
|
}),
|
|
3224
3233
|
I
|
|
@@ -3227,9 +3236,9 @@ const fs = async (n) => {
|
|
|
3227
3236
|
u = u || "text";
|
|
3228
3237
|
let V = await Lt[d.findKey(Lt, u) || "text"](T, n);
|
|
3229
3238
|
return !R && b && b(), await new Promise((I, v) => {
|
|
3230
|
-
|
|
3239
|
+
bi(I, v, {
|
|
3231
3240
|
data: V,
|
|
3232
|
-
headers:
|
|
3241
|
+
headers: L.from(T.headers),
|
|
3233
3242
|
status: T.status,
|
|
3234
3243
|
statusText: T.statusText,
|
|
3235
3244
|
config: n,
|
|
@@ -3237,19 +3246,19 @@ const fs = async (n) => {
|
|
|
3237
3246
|
});
|
|
3238
3247
|
});
|
|
3239
3248
|
} catch (C) {
|
|
3240
|
-
throw b && b(), C && C.name === "TypeError" && /fetch/i.test(C.message) ? Object.assign(
|
|
3249
|
+
throw b && b(), C && C.name === "TypeError" && /Load failed|fetch/i.test(C.message) ? Object.assign(
|
|
3241
3250
|
new w("Network Error", w.ERR_NETWORK, n, m),
|
|
3242
3251
|
{
|
|
3243
3252
|
cause: C.cause || C
|
|
3244
3253
|
}
|
|
3245
3254
|
) : w.from(C, C && C.code, n, m);
|
|
3246
3255
|
}
|
|
3247
|
-
}),
|
|
3248
|
-
http:
|
|
3249
|
-
xhr:
|
|
3250
|
-
fetch:
|
|
3256
|
+
}), se = {
|
|
3257
|
+
http: Ir,
|
|
3258
|
+
xhr: cs,
|
|
3259
|
+
fetch: ms
|
|
3251
3260
|
};
|
|
3252
|
-
d.forEach(
|
|
3261
|
+
d.forEach(se, (n, i) => {
|
|
3253
3262
|
if (n) {
|
|
3254
3263
|
try {
|
|
3255
3264
|
Object.defineProperty(n, "name", { value: i });
|
|
@@ -3258,7 +3267,7 @@ d.forEach(re, (n, i) => {
|
|
|
3258
3267
|
Object.defineProperty(n, "adapterName", { value: i });
|
|
3259
3268
|
}
|
|
3260
3269
|
});
|
|
3261
|
-
const
|
|
3270
|
+
const Qe = (n) => `- ${n}`, ys = (n) => d.isFunction(n) || n === null || n === !1, Si = {
|
|
3262
3271
|
getAdapter: (n) => {
|
|
3263
3272
|
n = d.isArray(n) ? n : [n];
|
|
3264
3273
|
const { length: i } = n;
|
|
@@ -3267,7 +3276,7 @@ const Je = (n) => `- ${n}`, _s = (n) => d.isFunction(n) || n === null || n === !
|
|
|
3267
3276
|
for (let s = 0; s < i; s++) {
|
|
3268
3277
|
t = n[s];
|
|
3269
3278
|
let a;
|
|
3270
|
-
if (e = t, !
|
|
3279
|
+
if (e = t, !ys(t) && (e = se[(a = String(t)).toLowerCase()], e === void 0))
|
|
3271
3280
|
throw new w(`Unknown adapter '${a}'`);
|
|
3272
3281
|
if (e)
|
|
3273
3282
|
break;
|
|
@@ -3278,8 +3287,8 @@ const Je = (n) => `- ${n}`, _s = (n) => d.isFunction(n) || n === null || n === !
|
|
|
3278
3287
|
([o, c]) => `adapter ${o} ` + (c === !1 ? "is not supported by the environment" : "is not available in the build")
|
|
3279
3288
|
);
|
|
3280
3289
|
let a = i ? s.length > 1 ? `since :
|
|
3281
|
-
` + s.map(
|
|
3282
|
-
`) : " " +
|
|
3290
|
+
` + s.map(Qe).join(`
|
|
3291
|
+
`) : " " + Qe(s[0]) : "as no adapter specified";
|
|
3283
3292
|
throw new w(
|
|
3284
3293
|
"There is no suitable adapter to dispatch the request " + a,
|
|
3285
3294
|
"ERR_NOT_SUPPORT"
|
|
@@ -3287,40 +3296,40 @@ const Je = (n) => `- ${n}`, _s = (n) => d.isFunction(n) || n === null || n === !
|
|
|
3287
3296
|
}
|
|
3288
3297
|
return e;
|
|
3289
3298
|
},
|
|
3290
|
-
adapters:
|
|
3299
|
+
adapters: se
|
|
3291
3300
|
};
|
|
3292
|
-
function
|
|
3301
|
+
function Zt(n) {
|
|
3293
3302
|
if (n.cancelToken && n.cancelToken.throwIfRequested(), n.signal && n.signal.aborted)
|
|
3294
3303
|
throw new lt(null, n);
|
|
3295
3304
|
}
|
|
3296
|
-
function
|
|
3297
|
-
return
|
|
3305
|
+
function Ze(n) {
|
|
3306
|
+
return Zt(n), n.headers = L.from(n.headers), n.data = Qt.call(
|
|
3298
3307
|
n,
|
|
3299
3308
|
n.transformRequest
|
|
3300
|
-
), ["post", "put", "patch"].indexOf(n.method) !== -1 && n.headers.setContentType("application/x-www-form-urlencoded", !1),
|
|
3301
|
-
return
|
|
3309
|
+
), ["post", "put", "patch"].indexOf(n.method) !== -1 && n.headers.setContentType("application/x-www-form-urlencoded", !1), Si.getAdapter(n.adapter || vt.adapter)(n).then(function(e) {
|
|
3310
|
+
return Zt(n), e.data = Qt.call(
|
|
3302
3311
|
n,
|
|
3303
3312
|
n.transformResponse,
|
|
3304
3313
|
e
|
|
3305
|
-
), e.headers =
|
|
3314
|
+
), e.headers = L.from(e.headers), e;
|
|
3306
3315
|
}, function(e) {
|
|
3307
|
-
return
|
|
3316
|
+
return yi(e) || (Zt(n), e && e.response && (e.response.data = Qt.call(
|
|
3308
3317
|
n,
|
|
3309
3318
|
n.transformResponse,
|
|
3310
3319
|
e.response
|
|
3311
|
-
), e.response.headers =
|
|
3320
|
+
), e.response.headers = L.from(e.response.headers))), Promise.reject(e);
|
|
3312
3321
|
});
|
|
3313
3322
|
}
|
|
3314
|
-
const
|
|
3323
|
+
const Ti = "1.9.0", Wt = {};
|
|
3315
3324
|
["object", "boolean", "number", "function", "string", "symbol"].forEach((n, i) => {
|
|
3316
|
-
|
|
3325
|
+
Wt[n] = function(e) {
|
|
3317
3326
|
return typeof e === n || "a" + (i < 1 ? "n " : " ") + n;
|
|
3318
3327
|
};
|
|
3319
3328
|
});
|
|
3320
|
-
const
|
|
3321
|
-
|
|
3329
|
+
const Ye = {};
|
|
3330
|
+
Wt.transitional = function(i, t, e) {
|
|
3322
3331
|
function r(s, a) {
|
|
3323
|
-
return "[Axios v" +
|
|
3332
|
+
return "[Axios v" + Ti + "] Transitional option '" + s + "'" + a + (e ? ". " + e : "");
|
|
3324
3333
|
}
|
|
3325
3334
|
return (s, a, o) => {
|
|
3326
3335
|
if (i === !1)
|
|
@@ -3328,7 +3337,7 @@ Ht.transitional = function(i, t, e) {
|
|
|
3328
3337
|
r(a, " has been removed" + (t ? " in " + t : "")),
|
|
3329
3338
|
w.ERR_DEPRECATED
|
|
3330
3339
|
);
|
|
3331
|
-
return t && !
|
|
3340
|
+
return t && !Ye[a] && (Ye[a] = !0, console.warn(
|
|
3332
3341
|
r(
|
|
3333
3342
|
a,
|
|
3334
3343
|
" has been deprecated since v" + t + " and will be removed in the near future"
|
|
@@ -3336,10 +3345,10 @@ Ht.transitional = function(i, t, e) {
|
|
|
3336
3345
|
)), i ? i(s, a, o) : !0;
|
|
3337
3346
|
};
|
|
3338
3347
|
};
|
|
3339
|
-
|
|
3348
|
+
Wt.spelling = function(i) {
|
|
3340
3349
|
return (t, e) => (console.warn(`${e} is likely a misspelling of ${i}`), !0);
|
|
3341
3350
|
};
|
|
3342
|
-
function
|
|
3351
|
+
function bs(n, i, t) {
|
|
3343
3352
|
if (typeof n != "object")
|
|
3344
3353
|
throw new w("options must be an object", w.ERR_BAD_OPTION_VALUE);
|
|
3345
3354
|
const e = Object.keys(n);
|
|
@@ -3357,14 +3366,14 @@ function gs(n, i, t) {
|
|
|
3357
3366
|
}
|
|
3358
3367
|
}
|
|
3359
3368
|
const It = {
|
|
3360
|
-
assertOptions:
|
|
3361
|
-
validators:
|
|
3369
|
+
assertOptions: bs,
|
|
3370
|
+
validators: Wt
|
|
3362
3371
|
}, z = It.validators;
|
|
3363
3372
|
let it = class {
|
|
3364
3373
|
constructor(i) {
|
|
3365
|
-
this.defaults = i, this.interceptors = {
|
|
3366
|
-
request: new
|
|
3367
|
-
response: new
|
|
3374
|
+
this.defaults = i || {}, this.interceptors = {
|
|
3375
|
+
request: new He(),
|
|
3376
|
+
response: new He()
|
|
3368
3377
|
};
|
|
3369
3378
|
}
|
|
3370
3379
|
/**
|
|
@@ -3417,7 +3426,7 @@ let it = class {
|
|
|
3417
3426
|
(m) => {
|
|
3418
3427
|
delete s[m];
|
|
3419
3428
|
}
|
|
3420
|
-
), t.headers =
|
|
3429
|
+
), t.headers = L.concat(a, s);
|
|
3421
3430
|
const o = [];
|
|
3422
3431
|
let c = !0;
|
|
3423
3432
|
this.interceptors.request.forEach(function(b) {
|
|
@@ -3429,7 +3438,7 @@ let it = class {
|
|
|
3429
3438
|
});
|
|
3430
3439
|
let l, f = 0, g;
|
|
3431
3440
|
if (!c) {
|
|
3432
|
-
const m = [
|
|
3441
|
+
const m = [Ze.bind(this), void 0];
|
|
3433
3442
|
for (m.unshift.apply(m, o), m.push.apply(m, u), g = m.length, l = Promise.resolve(t); f < g; )
|
|
3434
3443
|
l = l.then(m[f++], m[f++]);
|
|
3435
3444
|
return l;
|
|
@@ -3446,7 +3455,7 @@ let it = class {
|
|
|
3446
3455
|
}
|
|
3447
3456
|
}
|
|
3448
3457
|
try {
|
|
3449
|
-
l =
|
|
3458
|
+
l = Ze.call(this, P);
|
|
3450
3459
|
} catch (m) {
|
|
3451
3460
|
return Promise.reject(m);
|
|
3452
3461
|
}
|
|
@@ -3456,8 +3465,8 @@ let it = class {
|
|
|
3456
3465
|
}
|
|
3457
3466
|
getUri(i) {
|
|
3458
3467
|
i = nt(this.defaults, i);
|
|
3459
|
-
const t =
|
|
3460
|
-
return
|
|
3468
|
+
const t = Pi(i.baseURL, i.url, i.allowAbsoluteUrls);
|
|
3469
|
+
return _i(t, i.params, i.paramsSerializer);
|
|
3461
3470
|
}
|
|
3462
3471
|
};
|
|
3463
3472
|
d.forEach(["delete", "get", "head", "options"], function(i) {
|
|
@@ -3484,7 +3493,7 @@ d.forEach(["post", "put", "patch"], function(i) {
|
|
|
3484
3493
|
}
|
|
3485
3494
|
it.prototype[i] = t(), it.prototype[i + "Form"] = t(!0);
|
|
3486
3495
|
});
|
|
3487
|
-
let
|
|
3496
|
+
let Ps = class Ci {
|
|
3488
3497
|
constructor(i) {
|
|
3489
3498
|
if (typeof i != "function")
|
|
3490
3499
|
throw new TypeError("executor must be a function.");
|
|
@@ -3550,22 +3559,22 @@ let ms = class Si {
|
|
|
3550
3559
|
static source() {
|
|
3551
3560
|
let i;
|
|
3552
3561
|
return {
|
|
3553
|
-
token: new
|
|
3562
|
+
token: new Ci(function(r) {
|
|
3554
3563
|
i = r;
|
|
3555
3564
|
}),
|
|
3556
3565
|
cancel: i
|
|
3557
3566
|
};
|
|
3558
3567
|
}
|
|
3559
3568
|
};
|
|
3560
|
-
function
|
|
3569
|
+
function vs(n) {
|
|
3561
3570
|
return function(t) {
|
|
3562
3571
|
return n.apply(null, t);
|
|
3563
3572
|
};
|
|
3564
3573
|
}
|
|
3565
|
-
function
|
|
3574
|
+
function ws(n) {
|
|
3566
3575
|
return d.isObject(n) && n.isAxiosError === !0;
|
|
3567
3576
|
}
|
|
3568
|
-
const
|
|
3577
|
+
const ae = {
|
|
3569
3578
|
Continue: 100,
|
|
3570
3579
|
SwitchingProtocols: 101,
|
|
3571
3580
|
Processing: 102,
|
|
@@ -3630,55 +3639,55 @@ const se = {
|
|
|
3630
3639
|
NotExtended: 510,
|
|
3631
3640
|
NetworkAuthenticationRequired: 511
|
|
3632
3641
|
};
|
|
3633
|
-
Object.entries(
|
|
3634
|
-
|
|
3642
|
+
Object.entries(ae).forEach(([n, i]) => {
|
|
3643
|
+
ae[i] = n;
|
|
3635
3644
|
});
|
|
3636
|
-
function
|
|
3637
|
-
const i = new it(n), t =
|
|
3645
|
+
function Ai(n) {
|
|
3646
|
+
const i = new it(n), t = ni(it.prototype.request, i);
|
|
3638
3647
|
return d.extend(t, it.prototype, i, { allOwnKeys: !0 }), d.extend(t, i, null, { allOwnKeys: !0 }), t.create = function(r) {
|
|
3639
|
-
return
|
|
3648
|
+
return Ai(nt(n, r));
|
|
3640
3649
|
}, t;
|
|
3641
3650
|
}
|
|
3642
|
-
const A =
|
|
3651
|
+
const A = Ai(vt);
|
|
3643
3652
|
A.Axios = it;
|
|
3644
3653
|
A.CanceledError = lt;
|
|
3645
|
-
A.CancelToken =
|
|
3646
|
-
A.isCancel =
|
|
3647
|
-
A.VERSION =
|
|
3648
|
-
A.toFormData =
|
|
3654
|
+
A.CancelToken = Ps;
|
|
3655
|
+
A.isCancel = yi;
|
|
3656
|
+
A.VERSION = Ti;
|
|
3657
|
+
A.toFormData = Kt;
|
|
3649
3658
|
A.AxiosError = w;
|
|
3650
3659
|
A.Cancel = A.CanceledError;
|
|
3651
3660
|
A.all = function(i) {
|
|
3652
3661
|
return Promise.all(i);
|
|
3653
3662
|
};
|
|
3654
|
-
A.spread =
|
|
3655
|
-
A.isAxiosError =
|
|
3663
|
+
A.spread = vs;
|
|
3664
|
+
A.isAxiosError = ws;
|
|
3656
3665
|
A.mergeConfig = nt;
|
|
3657
|
-
A.AxiosHeaders =
|
|
3658
|
-
A.formToJSON = (n) =>
|
|
3659
|
-
A.getAdapter =
|
|
3660
|
-
A.HttpStatusCode =
|
|
3666
|
+
A.AxiosHeaders = L;
|
|
3667
|
+
A.formToJSON = (n) => mi(d.isHTMLForm(n) ? new FormData(n) : n);
|
|
3668
|
+
A.getAdapter = Si.getAdapter;
|
|
3669
|
+
A.HttpStatusCode = ae;
|
|
3661
3670
|
A.default = A;
|
|
3662
3671
|
const {
|
|
3663
|
-
Axios:
|
|
3664
|
-
AxiosError:
|
|
3665
|
-
CanceledError:
|
|
3666
|
-
isCancel:
|
|
3667
|
-
CancelToken:
|
|
3668
|
-
VERSION:
|
|
3669
|
-
all:
|
|
3670
|
-
Cancel:
|
|
3671
|
-
isAxiosError:
|
|
3672
|
-
spread:
|
|
3673
|
-
toFormData:
|
|
3674
|
-
AxiosHeaders:
|
|
3675
|
-
HttpStatusCode:
|
|
3676
|
-
formToJSON:
|
|
3677
|
-
getAdapter:
|
|
3678
|
-
mergeConfig:
|
|
3672
|
+
Axios: As,
|
|
3673
|
+
AxiosError: Rs,
|
|
3674
|
+
CanceledError: Os,
|
|
3675
|
+
isCancel: xs,
|
|
3676
|
+
CancelToken: Ds,
|
|
3677
|
+
VERSION: Is,
|
|
3678
|
+
all: Bs,
|
|
3679
|
+
Cancel: Ns,
|
|
3680
|
+
isAxiosError: Vs,
|
|
3681
|
+
spread: Us,
|
|
3682
|
+
toFormData: Ls,
|
|
3683
|
+
AxiosHeaders: Ms,
|
|
3684
|
+
HttpStatusCode: ks,
|
|
3685
|
+
formToJSON: Fs,
|
|
3686
|
+
getAdapter: js,
|
|
3687
|
+
mergeConfig: qs
|
|
3679
3688
|
} = A;
|
|
3680
|
-
var h,
|
|
3681
|
-
class
|
|
3689
|
+
var h, Ri, Oi, xi, oe, Di, Ii, Bi, Ni, Vi, Ui, Li, Mi, ki, Fi, dt, _t, ji, gt, qi, tt, Ki, D, Hi, Wi, ce, Xi, zi, Gi, ue, he, mt, le, $i, j, q, Bt, fe, yt, pe, de, Ji, _e, ge, Qi, Zi, ot, me, Yi, tn, en, Nt, nn, rn, ye, sn, an, on, cn, un, hn, ln, fn, pn, be, Pe, dn, _n, gn;
|
|
3690
|
+
class Ks extends vn {
|
|
3682
3691
|
constructor({
|
|
3683
3692
|
filters: t = null,
|
|
3684
3693
|
config_port: e = {
|
|
@@ -3711,8 +3720,8 @@ class Fs extends bn {
|
|
|
3711
3720
|
environment: "production"
|
|
3712
3721
|
}) {
|
|
3713
3722
|
super({ filters: t, config_port: e, no_device: r, device_listen_on_channel: s });
|
|
3714
|
-
|
|
3715
|
-
|
|
3723
|
+
Ae(this, h);
|
|
3724
|
+
Ce(this, "__pinPad__", {
|
|
3716
3725
|
buffer: null,
|
|
3717
3726
|
about: {
|
|
3718
3727
|
EMV: null,
|
|
@@ -3857,11 +3866,11 @@ class Fs extends bn {
|
|
|
3857
3866
|
statusSecondGenerateWaiting: null
|
|
3858
3867
|
}
|
|
3859
3868
|
});
|
|
3860
|
-
if (this.__internal__.device.type = "pinpad", !
|
|
3869
|
+
if (this.__internal__.device.type = "pinpad", !wn())
|
|
3861
3870
|
throw new Error("Crypto not supported in this browser");
|
|
3862
|
-
if (
|
|
3871
|
+
if (Re.getCustom(this.typeDevice, r))
|
|
3863
3872
|
throw new Error(`Device ${this.typeDevice} ${r} already exists`);
|
|
3864
|
-
this.__internal__.time.response_connection = 3e3, this.__internal__.time.response_general = 5e3, this.__internal__.serial.delay_first_connection = 1e3, this.environment = c, a && (this.username = a), o && (this.password = o), p(this, h,
|
|
3873
|
+
this.__internal__.time.response_connection = 3e3, this.__internal__.time.response_general = 5e3, this.__internal__.serial.delay_first_connection = 1e3, this.environment = c, a && (this.username = a), o && (this.password = o), p(this, h, Oi).call(this), p(this, h, Ri).call(this);
|
|
3865
3874
|
}
|
|
3866
3875
|
async timeout(t, e) {
|
|
3867
3876
|
await super.timeout(t, e), this.__pinPad__.waiting.statusAboutWaiting && e === "about" ? this.__pinPad__.waiting.statusAboutWaiting = "rejected" : this.__pinPad__.waiting.statusInjectWaiting && e === "inject" ? this.__pinPad__.waiting.statusInjectWaiting = "rejected" : this.__pinPad__.waiting.statusinitDUKPTWaiting && e === "init-dukpt" ? this.__pinPad__.waiting.statusinitDUKPTWaiting = "rejected" : this.__pinPad__.waiting.statuswritingDUKPTWaiting && e === "dukpt" ? this.__pinPad__.waiting.statuswritingDUKPTWaiting = "rejected" : this.__pinPad__.waiting.statusReadCardWaiting && e === "read-card" ? this.__pinPad__.waiting.statusReadCardWaiting = "rejected" : this.__pinPad__.waiting.statusSecondGenerateWaiting && e === "second-generate" && (this.__pinPad__.waiting.statusSecondGenerateWaiting = "rejected");
|
|
@@ -3876,43 +3885,43 @@ class Fs extends bn {
|
|
|
3876
3885
|
no_code: 0,
|
|
3877
3886
|
parsed: null
|
|
3878
3887
|
}, r = this.parseHexToUint8(t), s = this.parseUint8ArrayToString(r);
|
|
3879
|
-
let a = p(this, h,
|
|
3888
|
+
let a = p(this, h, xi).call(this, s);
|
|
3880
3889
|
switch (this.__pinPad__.buffer = s, e.parsed = a, e.code = s, e.request) {
|
|
3881
3890
|
case "connect":
|
|
3882
|
-
e.name = "connected", e.description = "Connection established", e.no_code = 100, p(this, h,
|
|
3891
|
+
e.name = "connected", e.description = "Connection established", e.no_code = 100, p(this, h, oe).call(this, a, s);
|
|
3883
3892
|
break;
|
|
3884
3893
|
case "about":
|
|
3885
|
-
e.name = "About PinPad", e.description = "Response of about", e.no_code = 101, p(this, h,
|
|
3894
|
+
e.name = "About PinPad", e.description = "Response of about", e.no_code = 101, p(this, h, oe).call(this, a, s);
|
|
3886
3895
|
break;
|
|
3887
3896
|
case "inject":
|
|
3888
|
-
e.name = "Inject", e.description = "Response of inject values", e.no_code = 102, p(this, h,
|
|
3897
|
+
e.name = "Inject", e.description = "Response of inject values", e.no_code = 102, p(this, h, Di).call(this, a, s);
|
|
3889
3898
|
break;
|
|
3890
3899
|
case "init-dukpt":
|
|
3891
|
-
e.name = "Init DUKPT", e.description = "Response of init DUKPT", e.no_code = 103, p(this, h,
|
|
3900
|
+
e.name = "Init DUKPT", e.description = "Response of init DUKPT", e.no_code = 103, p(this, h, Ii).call(this, a, s);
|
|
3892
3901
|
break;
|
|
3893
3902
|
case "dukpt":
|
|
3894
|
-
e.name = "Write DUKPT", e.description = "Response of write DUKPT", e.no_code = 104, p(this, h,
|
|
3903
|
+
e.name = "Write DUKPT", e.description = "Response of write DUKPT", e.no_code = 104, p(this, h, Bi).call(this, a, s);
|
|
3895
3904
|
break;
|
|
3896
3905
|
case "read-card":
|
|
3897
|
-
e.name = "read card", e.description = "response of read card", e.no_code = 105, p(this, h,
|
|
3906
|
+
e.name = "read card", e.description = "response of read card", e.no_code = 105, p(this, h, Ni).call(this, a, s);
|
|
3898
3907
|
break;
|
|
3899
3908
|
case "second-generate":
|
|
3900
|
-
e.name = "second generate", e.description = "response of second generate", e.no_code = 106, p(this, h,
|
|
3909
|
+
e.name = "second generate", e.description = "response of second generate", e.no_code = 106, p(this, h, Vi).call(this, a, s);
|
|
3901
3910
|
break;
|
|
3902
3911
|
case "cancel":
|
|
3903
3912
|
e.name = "cancel pinpad", e.description = "response of cancel", e.no_code = 107;
|
|
3904
3913
|
break;
|
|
3905
3914
|
case "print":
|
|
3906
|
-
p(this, h,
|
|
3915
|
+
p(this, h, Mi).call(this, a, s), e.name = "print voucher", e.description = "response of print", e.no_code = 108;
|
|
3907
3916
|
break;
|
|
3908
3917
|
case "cancel-read-card":
|
|
3909
|
-
p(this, h,
|
|
3918
|
+
p(this, h, Li).call(this, a, s), e.name = "cancel read card", e.description = "response of cancel read card", e.no_code = 109;
|
|
3910
3919
|
break;
|
|
3911
3920
|
case "code93":
|
|
3912
|
-
p(this, h,
|
|
3921
|
+
p(this, h, ki).call(this, a, s), e.name = "code 93", e.description = "response of code 93", e.no_code = 110;
|
|
3913
3922
|
break;
|
|
3914
3923
|
case "finish-emv-end":
|
|
3915
|
-
p(this, h,
|
|
3924
|
+
p(this, h, Fi).call(this, a, s), e.name = "Finish EMV End", e.description = "response of finish EMV End", e.no_code = 111;
|
|
3916
3925
|
break;
|
|
3917
3926
|
default:
|
|
3918
3927
|
e.name = "unknown", e.description = "Unknown command", e.no_code = 400;
|
|
@@ -3961,7 +3970,7 @@ class Fs extends bn {
|
|
|
3961
3970
|
return parseFloat(this.__pinPad__.operation.amount) || 0;
|
|
3962
3971
|
}
|
|
3963
3972
|
set reference(t) {
|
|
3964
|
-
if (!p(this, h,
|
|
3973
|
+
if (!p(this, h, le).call(this, t.trim())) throw new Error("Invalid reference");
|
|
3965
3974
|
this.__pinPad__.operation.reference = t.trim().toString().replaceAll(" ", "").toUpperCase();
|
|
3966
3975
|
}
|
|
3967
3976
|
get reference() {
|
|
@@ -4006,13 +4015,13 @@ class Fs extends bn {
|
|
|
4006
4015
|
return parseInt(this.__pinPad__.config.timeoutPinPad);
|
|
4007
4016
|
}
|
|
4008
4017
|
async login({ force: t = !1 } = {}) {
|
|
4009
|
-
return await p(this, h,
|
|
4018
|
+
return await p(this, h, Wi).call(this, t);
|
|
4010
4019
|
}
|
|
4011
4020
|
clearSession() {
|
|
4012
4021
|
localStorage.removeItem("ppLoginResponse"), localStorage.removeItem("ppRSAKey"), localStorage.removeItem("ppPublicIP");
|
|
4013
4022
|
}
|
|
4014
4023
|
async checkPositionPermission() {
|
|
4015
|
-
if (!
|
|
4024
|
+
if (!Oe())
|
|
4016
4025
|
throw new Error("Geolocation not supported");
|
|
4017
4026
|
return new Promise((t, e) => {
|
|
4018
4027
|
navigator.permissions.query({ name: "geolocation" }).then((r) => {
|
|
@@ -4039,9 +4048,9 @@ class Fs extends bn {
|
|
|
4039
4048
|
});
|
|
4040
4049
|
return;
|
|
4041
4050
|
}
|
|
4042
|
-
s = p(this, h,
|
|
4051
|
+
s = p(this, h, Ki).call(this, s), s = p(this, h, Hi).call(this, s, this.__pinPad__.constants.appName + this.__pinPad__.constants.appVersion);
|
|
4043
4052
|
let a = "C59A" + s;
|
|
4044
|
-
a = e + p(this, h,
|
|
4053
|
+
a = e + p(this, h, j).call(this, a) + a + r, a = a + p(this, h, q).call(this, a), t === "client" ? this.__pinPad__.operation.clientVoucher = "" : t === "commerce" && (this.__pinPad__.operation.commerceVoucher = "");
|
|
4045
4054
|
const o = this.parseStringToBytes(a, "");
|
|
4046
4055
|
await this.appendToQueue(o, "print");
|
|
4047
4056
|
}
|
|
@@ -4056,7 +4065,7 @@ class Fs extends bn {
|
|
|
4056
4065
|
* @return {Promise<any>}
|
|
4057
4066
|
*/
|
|
4058
4067
|
async consult({ reference: t = null }) {
|
|
4059
|
-
return t || (t = this.reference), G(t) && (t = "--", this.reference = t), p(this, h,
|
|
4068
|
+
return t || (t = this.reference), G(t) && (t = "--", this.reference = t), p(this, h, $i).call(this, this.reference), this.__pinPad__.operation.consultDate = (/* @__PURE__ */ new Date()).toLocaleDateString("en-GB"), await p(this, h, yt).call(this, {
|
|
4060
4069
|
Ambiente: this.environment,
|
|
4061
4070
|
User: this.username,
|
|
4062
4071
|
Pwd: this.password,
|
|
@@ -4078,7 +4087,7 @@ class Fs extends bn {
|
|
|
4078
4087
|
* @return {Promise<any>}
|
|
4079
4088
|
*/
|
|
4080
4089
|
async rePrint({ folio: t = null } = {}) {
|
|
4081
|
-
t === null && (t = this.__pinPad__.operation.folio || ""), p(this, h,
|
|
4090
|
+
t === null && (t = this.__pinPad__.operation.folio || ""), p(this, h, pe).call(this, t), await p(this, h, yt).call(this, {
|
|
4082
4091
|
Ambiente: this.environment,
|
|
4083
4092
|
User: this.username,
|
|
4084
4093
|
Pwd: this.password,
|
|
@@ -4104,10 +4113,10 @@ class Fs extends bn {
|
|
|
4104
4113
|
return this.__pinPad__.operation.commerceVoucher = "", r && (e.voucher_comercio.includes(":") ? this.__pinPad__.operation.commerceVoucher = e.voucher_comercio : this.__pinPad__.operation.commerceVoucher = p(this, h, tt).call(this, this.__pinPad__.config.RC4Key, e.voucher_comercio)), r = e.voucher_cliente, this.__pinPad__.operation.clientVoucher = "", r && (e.voucher_cliente.includes(":") ? this.__pinPad__.operation.clientVoucher = e.voucher_cliente : this.__pinPad__.operation.clientVoucher = p(this, h, tt).call(this, this.__pinPad__.config.RC4Key, e.voucher_cliente)), e;
|
|
4105
4114
|
}
|
|
4106
4115
|
async cancelPurchase({ amount: t = 0, authorization: e = "", folio: r = "" } = {}) {
|
|
4107
|
-
if (!p(this, h,
|
|
4108
|
-
if (!p(this, h,
|
|
4109
|
-
if (!p(this, h,
|
|
4110
|
-
t = p(this, h,
|
|
4116
|
+
if (!p(this, h, fe).call(this, t)) throw new Error("Invalid amount");
|
|
4117
|
+
if (!p(this, h, un).call(this, e)) throw new Error("Invalid authorization");
|
|
4118
|
+
if (!p(this, h, pe).call(this, r)) throw new Error("Invalid folio");
|
|
4119
|
+
t = p(this, h, ye).call(this, t, 2);
|
|
4111
4120
|
const s = {
|
|
4112
4121
|
Ambiente: this.environment,
|
|
4113
4122
|
User: this.username,
|
|
@@ -4153,7 +4162,7 @@ class Fs extends bn {
|
|
|
4153
4162
|
async makeSale({ amount: t = 0, reference: e = null } = {}) {
|
|
4154
4163
|
if (t = parseFloat(t.toString()), isNaN(t) || t <= 0)
|
|
4155
4164
|
throw new Error("Amount is required and must be greater than 0");
|
|
4156
|
-
if (this.amount = t, !e || G(e) || !p(this, h,
|
|
4165
|
+
if (this.amount = t, !e || G(e) || !p(this, h, le).call(this, e))
|
|
4157
4166
|
throw new Error("Reference is required and must be alphanumeric");
|
|
4158
4167
|
if (this.reference = e, /^[A-Z-a-z\s]+$/g.test(this.__pinPad__.config.currency) === !1)
|
|
4159
4168
|
throw new Error("Invalid currency");
|
|
@@ -4164,16 +4173,16 @@ class Fs extends bn {
|
|
|
4164
4173
|
object: {}
|
|
4165
4174
|
};
|
|
4166
4175
|
try {
|
|
4167
|
-
return await this.login(), await p(this, h,
|
|
4176
|
+
return await this.login(), await p(this, h, rn).call(this), !await p(this, h, sn).call(this) || !await p(this, h, tn).call(this) ? r : await p(this, h, ln).call(this);
|
|
4168
4177
|
} catch (s) {
|
|
4169
4178
|
console.warn(s), r.error = !0, r.message = s.message, r.approved = !1, r.object = s;
|
|
4170
4179
|
}
|
|
4171
4180
|
return r;
|
|
4172
4181
|
}
|
|
4173
4182
|
}
|
|
4174
|
-
h = new WeakSet(),
|
|
4175
|
-
|
|
4176
|
-
},
|
|
4183
|
+
h = new WeakSet(), Ri = function() {
|
|
4184
|
+
Re.add(this);
|
|
4185
|
+
}, Oi = function() {
|
|
4177
4186
|
const t = [
|
|
4178
4187
|
"pp:processing-card",
|
|
4179
4188
|
"pp:read-card",
|
|
@@ -4186,7 +4195,7 @@ h = new WeakSet(), Ci = function() {
|
|
|
4186
4195
|
];
|
|
4187
4196
|
for (const e of t)
|
|
4188
4197
|
this.serialRegisterAvailableListener(e);
|
|
4189
|
-
},
|
|
4198
|
+
}, xi = function(t) {
|
|
4190
4199
|
const e = this.__pinPad__.constants.STX, r = this.__pinPad__.constants.ETX, s = this.__pinPad__.constants.FS, a = this.__pinPad__.constants.getNULL;
|
|
4191
4200
|
t = t.replace(new RegExp(e, "g"), "");
|
|
4192
4201
|
const o = t.split(r);
|
|
@@ -4198,7 +4207,7 @@ h = new WeakSet(), Ci = function() {
|
|
|
4198
4207
|
const g = f > 0 ? l.substring(0, 1) : "A", P = f > 0 ? l.substring(1) : l;
|
|
4199
4208
|
return { [g]: P.replace(new RegExp(a, "g"), "") };
|
|
4200
4209
|
}).forEach((l) => Object.assign(u, l)), u;
|
|
4201
|
-
},
|
|
4210
|
+
}, oe = function(t, e) {
|
|
4202
4211
|
const r = this.__pinPad__.constants.ETX, s = e.substring(e.indexOf("D") + 2, e.indexOf("E"));
|
|
4203
4212
|
let a = 0;
|
|
4204
4213
|
const o = e.indexOf("N") > 0, c = e.substring(e.indexOf("A00") + 3, e.indexOf("B"));
|
|
@@ -4231,9 +4240,9 @@ h = new WeakSet(), Ci = function() {
|
|
|
4231
4240
|
model: this.__pinPad__.about.model
|
|
4232
4241
|
}, this.__pinPad__.waiting.statusAboutWaiting && (this.__pinPad__.waiting.statusAboutWaiting = "resolved");
|
|
4233
4242
|
}, // eslint-disable-next-line no-unused-vars
|
|
4234
|
-
|
|
4243
|
+
Di = function(t, e) {
|
|
4235
4244
|
this.__pinPad__.waiting.statusInjectWaiting = "resolved";
|
|
4236
|
-
},
|
|
4245
|
+
}, Ii = function(t, e) {
|
|
4237
4246
|
e = e.replace("010P93A00B01t036P81AACERQUE, INSERTE CHIP O DESLICE*", ""), this.__pinPad__.config.terminal = {
|
|
4238
4247
|
nb_kcv: e.substring(e.indexOf("E") + 2, e.indexOf("F")),
|
|
4239
4248
|
nb_marca_terminal: e.substring(e.indexOf("P91A") + 4, e.indexOf("B")),
|
|
@@ -4243,23 +4252,23 @@ Oi = function(t, e) {
|
|
|
4243
4252
|
nb_version_terminal: e.substring(e.indexOf("D") + 2, e.indexOf("E"))
|
|
4244
4253
|
}, this.__pinPad__.waiting.statusinitDUKPTWaiting = "resolved";
|
|
4245
4254
|
}, // eslint-disable-next-line no-unused-vars
|
|
4246
|
-
|
|
4255
|
+
Bi = function(t, e) {
|
|
4247
4256
|
this.__pinPad__.waiting.statuswritingDUKPTWaiting = "resolved";
|
|
4248
|
-
},
|
|
4257
|
+
}, Ni = function(t, e) {
|
|
4249
4258
|
const r = this.__pinPad__.about.brand.toLowerCase(), s = this.__pinPad__.about.model.toLowerCase(), a = r === "ingenico" && s === "ipp320" ? 500 : 350;
|
|
4250
4259
|
if (e.length < a) {
|
|
4251
|
-
e = e.replace("006P93A00.", "").replace("006P93A00,", ""), e.includes("E93") ? this.__pinPad__.operation.ignore.error = e.substring(e.indexOf("E93") + 3, e.indexOf("E93") + 6) : e.includes("E71") && (this.__pinPad__.operation.ignore.error = e.substring(e.indexOf("E71") + 3, e.indexOf("E71") + 6)), this.__pinPad__.operation.ignore.error !== "" && e.indexOf("OPERACION CANCELADA") === -1 && e.indexOf("TIEMPO EXCEDIDO") === -1 && this.__pinPad__.operation.ignore.error.length === 3 && (this.__pinPad__.operation.last_error = p(this, h,
|
|
4260
|
+
e = e.replace("006P93A00.", "").replace("006P93A00,", ""), e.includes("E93") ? this.__pinPad__.operation.ignore.error = e.substring(e.indexOf("E93") + 3, e.indexOf("E93") + 6) : e.includes("E71") && (this.__pinPad__.operation.ignore.error = e.substring(e.indexOf("E71") + 3, e.indexOf("E71") + 6)), this.__pinPad__.operation.ignore.error !== "" && e.indexOf("OPERACION CANCELADA") === -1 && e.indexOf("TIEMPO EXCEDIDO") === -1 && this.__pinPad__.operation.ignore.error.length === 3 && (this.__pinPad__.operation.last_error = p(this, h, Pe).call(this, this.__pinPad__.operation.ignore.error), this.__pinPad__.waiting.statusReadCardWaiting = "rejected");
|
|
4252
4261
|
return;
|
|
4253
4262
|
}
|
|
4254
4263
|
if (e.includes("M1") || e.includes("M0") || e.includes("M1") || e.includes("N1") || e.includes("N1") || e.includes("P93A022") && e.substring(e.length - 24).includes("I") && e.substring(e.length - 1).includes("") || e.includes("P93A800") && e.substring(e.length - 24).includes("I") && e.substring(e.length - 1).includes("") || e.includes("P93A022") && e.length >= 406 && s === "vx820" || e.includes("P93A022") && e.length >= 406 && s === "vx520" || e.includes("P93A800") && e.length >= 406 && s === "vx520" || e.includes("P93A800") && e.length >= 406 && s === "vx820" || e.includes("P93A022") && e.length >= 406 && s === "p400" || e.includes("P93A800") && e.length >= 406 && s === "p400" || e.includes("P93A022") && e.length >= 406 && s === "v205c" || e.includes("P93A800") && e.length >= 406 && s === "v205c" || e.includes("P93A022") && e.length >= 406 && s === "move2500" || e.includes("P93A800") && e.length >= 406 && s === "move2500" || e.includes("P93A022") && e.length >= 406 && s === "lane3000" || e.includes("P93A800") && e.length >= 406 && s === "lane3000") {
|
|
4255
4264
|
let o = e;
|
|
4256
|
-
r === "verifone" && (o = e.replace("006P93A00.", "").substring(e.indexOf("P93A"), e.indexOf("P93A") + 7)), e.includes("P81APROCESANDO, NO RETIRE TARJETA") || e.includes("P81APROCESANDO TARJETA") || o.includes("P93A022") || o.includes("P81AINSERTE CHIP O DESLICE TARJETA") || o.includes("ACERQUE, INSERTE CHIP O DESLICE") || o.includes("P81AACERQUE, INSERTE CHIP O DESLICE TARJETA") ? this.dispatch("pp:processing-card", { waiting: !0 }) : e.length > a && p(this, h,
|
|
4265
|
+
r === "verifone" && (o = e.replace("006P93A00.", "").substring(e.indexOf("P93A"), e.indexOf("P93A") + 7)), e.includes("P81APROCESANDO, NO RETIRE TARJETA") || e.includes("P81APROCESANDO TARJETA") || o.includes("P93A022") || o.includes("P81AINSERTE CHIP O DESLICE TARJETA") || o.includes("ACERQUE, INSERTE CHIP O DESLICE") || o.includes("P81AACERQUE, INSERTE CHIP O DESLICE TARJETA") ? this.dispatch("pp:processing-card", { waiting: !0 }) : e.length > a && p(this, h, Ui).call(this, e);
|
|
4257
4266
|
}
|
|
4258
|
-
},
|
|
4267
|
+
}, Vi = function(t, e) {
|
|
4259
4268
|
const r = this.__pinPad__.constants.ETX;
|
|
4260
4269
|
let s = e.replace("023P81AFAVOR RETIRAR TARJ.", "").replace("020P81A DECLINADA EMV ", "").replace("020P81A DECLINADA EMV ", "");
|
|
4261
4270
|
s = s.substring(s.indexOf("B") + 2, s.indexOf(r)), s.includes("006E93A16") && (s = "01"), this.__pinPad__.operation.applyReverse = s === "01" && this.__pinPad__.operation.responseMit._approved && this.__pinPad__.config.otherLogin.executeReverse === "1", this.__pinPad__.waiting.statusSecondGenerateWaiting = "resolved";
|
|
4262
|
-
},
|
|
4271
|
+
}, Ui = function(t) {
|
|
4263
4272
|
const e = this.__pinPad__.constants.ETX, r = this.__pinPad__.about.brand.toLowerCase();
|
|
4264
4273
|
let s, a, o, c, u;
|
|
4265
4274
|
r === "verifone" ? t = t.replace("006P93A00.", "").replace("009P93A00", "").replace("010P93A00B01v", "") : t = t.replace("006P93A00,", ""), this.__pinPad__.config.read.POSEM = t.substring(t.indexOf("P93A") + 4, t.indexOf("B"));
|
|
@@ -4301,9 +4310,9 @@ Di = function(t, e) {
|
|
|
4301
4310
|
month: u,
|
|
4302
4311
|
year: c
|
|
4303
4312
|
});
|
|
4304
|
-
},
|
|
4313
|
+
}, Li = function(t, e) {
|
|
4305
4314
|
e.length > 10 && e.includes("E93A10") && (this.__pinPad__.waiting.statusReadCardWaiting === "pending" && (this.__pinPad__.waiting.statusReadCardWaiting = "rejected"), this.dispatch("pp:error", { message: "Operation cancelled by user." }));
|
|
4306
|
-
},
|
|
4315
|
+
}, Mi = function(t, e) {
|
|
4307
4316
|
const r = this;
|
|
4308
4317
|
if (this.__pinPad__.about.model.toLowerCase() === "vx520") {
|
|
4309
4318
|
if (e.length > 11)
|
|
@@ -4330,14 +4339,14 @@ Di = function(t, e) {
|
|
|
4330
4339
|
this.dispatch("pp:print", s);
|
|
4331
4340
|
}
|
|
4332
4341
|
}, // eslint-disable-next-line no-unused-vars
|
|
4333
|
-
|
|
4342
|
+
ki = function(t, e) {
|
|
4334
4343
|
}, // eslint-disable-next-line no-unused-vars
|
|
4335
|
-
|
|
4344
|
+
Fi = function(t, e) {
|
|
4336
4345
|
}, // ========================================================================================
|
|
4337
4346
|
// Updated to WS v4
|
|
4338
4347
|
// ========================================================================================
|
|
4339
4348
|
dt = function(t, e) {
|
|
4340
|
-
const r = new
|
|
4349
|
+
const r = new Xn();
|
|
4341
4350
|
return r.setPublicKey(t), r.encrypt(e);
|
|
4342
4351
|
}, _t = function(t) {
|
|
4343
4352
|
const e = "0123456789ABCDEF";
|
|
@@ -4347,7 +4356,7 @@ dt = function(t, e) {
|
|
|
4347
4356
|
r += e.substring(a, a + 1);
|
|
4348
4357
|
}
|
|
4349
4358
|
return r;
|
|
4350
|
-
},
|
|
4359
|
+
}, ji = function(t) {
|
|
4351
4360
|
const e = "0123456789abcdef", r = [], s = [];
|
|
4352
4361
|
for (let a = 0; a < 256; a++)
|
|
4353
4362
|
r[a] = e.charAt(a >> 4) + e.charAt(a & 15);
|
|
@@ -4380,7 +4389,7 @@ dt = function(t, e) {
|
|
|
4380
4389
|
// const decoder = new TextDecoder();
|
|
4381
4390
|
// return decoder.decode(decrypted);
|
|
4382
4391
|
// }
|
|
4383
|
-
|
|
4392
|
+
qi = function(t, e, r = !1) {
|
|
4384
4393
|
const s = [];
|
|
4385
4394
|
for (let l = 0; l < 256; l++)
|
|
4386
4395
|
s[l] = l;
|
|
@@ -4393,10 +4402,10 @@ Fi = function(t, e, r = !1) {
|
|
|
4393
4402
|
let f = s[(s[o] + s[c]) % 256];
|
|
4394
4403
|
u += String.fromCharCode(l.charCodeAt(0) ^ f);
|
|
4395
4404
|
}
|
|
4396
|
-
return r ? p(this, h,
|
|
4405
|
+
return r ? p(this, h, ji).call(this, u).toUpperCase() : u;
|
|
4397
4406
|
}, tt = function(t, e) {
|
|
4398
|
-
return p(this, h,
|
|
4399
|
-
},
|
|
4407
|
+
return p(this, h, qi).call(this, t, this.hexToAscii(e));
|
|
4408
|
+
}, Ki = function(t) {
|
|
4400
4409
|
return t.replaceAll("Á", "A"), t.replaceAll("É", "E"), t.replaceAll("Í", "I"), t.replaceAll("Ó", "O"), t.replaceAll("Ú", "U"), t.replaceAll("á", "a"), t.replaceAll("é", "e"), t.replaceAll("í", "i"), t.replaceAll("ó", "o"), t.replaceAll("ú", "u"), t.replaceAll("ñ", "n"), t.replaceAll("Ñ", "N"), t.replaceAll('Electr?a"', "Electronica"), t;
|
|
4401
4410
|
}, D = function(t, e, r) {
|
|
4402
4411
|
if (t = t.replace("@cnb logo_cpagos", e), t = t.replace("@cnn ver_app", r), t = t.replace(/@/g, " @"), t = t.replace(/ {2}@/g, " @"), t = t.replace(/ {3}@/g, " @"), t = t.replace(/\r/g, ""), t = t.replace(/\n/g, ""), t.includes("@lsn POR ESTE PAGARE ME OBLIGO INCONDI")) {
|
|
@@ -4404,11 +4413,11 @@ Fi = function(t, e, r = !1) {
|
|
|
4404
4413
|
t = t.substring(0, s);
|
|
4405
4414
|
}
|
|
4406
4415
|
return t.trim() + "@br @br @br @br @br";
|
|
4407
|
-
},
|
|
4416
|
+
}, Hi = function(t, e) {
|
|
4408
4417
|
const r = "@logo3 @br", s = "@cnn " + e;
|
|
4409
4418
|
return t.includes("@cnb Santander") ? (t = t.replace("@cnb Santander", "@logo1@br"), p(this, h, D).call(this, t, r, s)) : t.includes("@cnb American Express") ? (t = t.replace("@cnb American Express", "@logo2@br"), p(this, h, D).call(this, t, r, s)) : t.includes("@cnb HSBC") ? (t = t.replace("@cnb HSBC", "@logo7@br"), p(this, h, D).call(this, t, r, s)) : t.includes("@cnb IXE") ? (t = t.replace("@cnb IXE", "@logo11@br"), p(this, h, D).call(this, t, r, s)) : t.includes("@cnb MULTIVA") ? (t = t.replace("@cnb MULTIVA", "@logo15@br"), p(this, h, D).call(this, t, r, s)) : t.includes("@cnb Multiva") ? (t = t.replace("@cnb Multiva", "@logo15@br"), p(this, h, D).call(this, t, r, s)) : t.includes("@cnb SCOTIA BANK") ? (t = t.replace("@cnb SCOTIA BANK", "@logo16@br"), p(this, h, D).call(this, t, r, s)) : t.includes("@cnb SCOTIABANK") ? (t = t.replace("@cnb SCOTIABANK", "@logo16@br"), p(this, h, D).call(this, t, r, s)) : t.includes("@cnb BANCOMER") ? (t = t.replace("@cnb BANCOMER", "@logo17@br"), p(this, h, D).call(this, t, r, s)) : t.includes("@cnb Bancomer") ? (t = t.replace("@cnb Bancomer", "@logo17@br"), p(this, h, D).call(this, t, r, s)) : t.includes("@cnb BBVA") ? (t = t.replace("@cnb BBVA", "@logo17@br"), p(this, h, D).call(this, t, r, s)) : t.includes("@cnb BANORTE") ? (t = t.replace("@cnb BANORTE", "@logo18@br"), p(this, h, D).call(this, t, r, s)) : t.includes("@cnb Banorte") ? (t = t.replace("@cnb Banorte", "@logo18@br"), p(this, h, D).call(this, t, r, s)) : t.includes("@cnb BANREGIO") ? (t = t.replace("@cnb BANREGIO", "@logo19@br"), p(this, h, D).call(this, t, r, s)) : t.includes("@cnb Banregio") ? (t = t.replace("@cnb Banregio", "@logo19@br"), p(this, h, D).call(this, t, r, s)) : t.includes("@cnb GETNET") ? (t = t.replace("@cnb GETNET", "@logo20@br"), p(this, h, D).call(this, t, r, s)) : t.includes("@cnb GetNET") ? (t = t.replace("@cnb GetNET", "@logo20@br"), p(this, h, D).call(this, t, r, s)) : p(this, h, D).call(this, t, r, s);
|
|
4410
|
-
},
|
|
4411
|
-
if (p(this, h,
|
|
4419
|
+
}, Wi = async function(t = !1) {
|
|
4420
|
+
if (p(this, h, zi).call(this), this.__pinPad__.config.loginResponse && !t) return await p(this, h, ce).call(this);
|
|
4412
4421
|
const e = this.url + this.__pinPad__.constants.uris.login, r = {
|
|
4413
4422
|
usuario: this.username,
|
|
4414
4423
|
password: this.password,
|
|
@@ -4417,7 +4426,7 @@ Fi = function(t, e, r = !1) {
|
|
|
4417
4426
|
serieLector: "",
|
|
4418
4427
|
canal: this.__pinPad__.constants.appChannel
|
|
4419
4428
|
};
|
|
4420
|
-
if (await p(this, h, mt).call(this), p(this, h,
|
|
4429
|
+
if (await p(this, h, mt).call(this), p(this, h, ue).call(this))
|
|
4421
4430
|
throw new Error("Empty RSA Key");
|
|
4422
4431
|
const s = p(this, h, _t).call(this, 32), a = p(this, h, dt).call(this, this.__pinPad__.config.publicKeyRSA, s), o = await p(this, h, gt).call(this, s, JSON.stringify(r)), c = await A.post(e, o, {
|
|
4423
4432
|
headers: {
|
|
@@ -4429,7 +4438,7 @@ Fi = function(t, e, r = !1) {
|
|
|
4429
4438
|
var f;
|
|
4430
4439
|
throw new Error(`Error in request, verify internet connection: ${(f = l.response) == null ? void 0 : f.status} ${l.message}`);
|
|
4431
4440
|
});
|
|
4432
|
-
let u = p(this, h,
|
|
4441
|
+
let u = p(this, h, de).call(this, JSON.stringify(c.data));
|
|
4433
4442
|
if (typeof u == "string" && (u = JSON.parse(u)), !u)
|
|
4434
4443
|
throw new Error("Invalid response JSON");
|
|
4435
4444
|
if (u.RESPUESTA === "error")
|
|
@@ -4440,16 +4449,16 @@ Fi = function(t, e, r = !1) {
|
|
|
4440
4449
|
timestamp: (/* @__PURE__ */ new Date()).getTime(),
|
|
4441
4450
|
data: u
|
|
4442
4451
|
})
|
|
4443
|
-
), await p(this, h,
|
|
4444
|
-
},
|
|
4445
|
-
await p(this, h,
|
|
4452
|
+
), await p(this, h, ce).call(this);
|
|
4453
|
+
}, ce = async function() {
|
|
4454
|
+
await p(this, h, Zi).call(this);
|
|
4446
4455
|
try {
|
|
4447
|
-
await p(this, h,
|
|
4456
|
+
await p(this, h, Qi).call(this);
|
|
4448
4457
|
} catch (t) {
|
|
4449
4458
|
console.log("Error getting position", t);
|
|
4450
4459
|
}
|
|
4451
|
-
return this.__pinPad__.config.otherLogin = {}, p(this, h,
|
|
4452
|
-
},
|
|
4460
|
+
return this.__pinPad__.config.otherLogin = {}, p(this, h, Xi).call(this, this.__pinPad__.config.loginResponse), this.__pinPad__.config.otherLogin;
|
|
4461
|
+
}, Xi = function(t) {
|
|
4453
4462
|
var a, o, c, u, l, f;
|
|
4454
4463
|
let e = "", r = "";
|
|
4455
4464
|
(o = (a = t.xml) == null ? void 0 : a.ventaspropias) != null && o.merchant_currencyb && (e = t.xml.ventaspropias.merchant_currencyb), (u = (c = t.xml) == null ? void 0 : c.ventaspropias) != null && u.merchant_currencym && (r = t.xml.ventaspropias.merchant_currencym);
|
|
@@ -4467,10 +4476,10 @@ Fi = function(t, e, r = !1) {
|
|
|
4467
4476
|
coinsMOTO: r,
|
|
4468
4477
|
executeReverse: s
|
|
4469
4478
|
};
|
|
4470
|
-
},
|
|
4479
|
+
}, zi = function() {
|
|
4471
4480
|
let t = localStorage.getItem("ppLoginResponse");
|
|
4472
4481
|
t && (t = JSON.parse(t), this.__pinPad__.config.loginResponse || (this.__pinPad__.config.loginResponse = t.data), (/* @__PURE__ */ new Date()).getTime() - t.timestamp >= 864e5 && (this.__pinPad__.config.loginResponse = null));
|
|
4473
|
-
},
|
|
4482
|
+
}, Gi = async function() {
|
|
4474
4483
|
const t = this.url + this.__pinPad__.constants.uris.RSAKey, e = await A.get(t).catch((r) => {
|
|
4475
4484
|
throw new Error(`Error in request, verify internet connection: ${r.response.status} ${r.message}`);
|
|
4476
4485
|
});
|
|
@@ -4483,60 +4492,60 @@ Fi = function(t, e, r = !1) {
|
|
|
4483
4492
|
data: e.data.key_public
|
|
4484
4493
|
})
|
|
4485
4494
|
), this.__pinPad__.config.publicKeyRSA;
|
|
4486
|
-
},
|
|
4495
|
+
}, ue = function() {
|
|
4487
4496
|
let t = localStorage.getItem("ppRSAKey");
|
|
4488
4497
|
return !t || (t = JSON.parse(t), this.__pinPad__.config.publicKeyRSA = t.data, (/* @__PURE__ */ new Date()).getTime() - t.timestamp >= 864e5) ? !0 : !this.__pinPad__.config.publicKeyRSA;
|
|
4489
|
-
},
|
|
4490
|
-
return p(this, h,
|
|
4498
|
+
}, he = async function() {
|
|
4499
|
+
return p(this, h, ue).call(this) ? await p(this, h, Gi).call(this) : this.__pinPad__.config.publicKeyRSA;
|
|
4491
4500
|
}, mt = async function() {
|
|
4492
|
-
if (!await p(this, h,
|
|
4501
|
+
if (!await p(this, h, he).call(this))
|
|
4493
4502
|
throw new Error("RSA public key is empty");
|
|
4494
|
-
},
|
|
4503
|
+
}, le = function(t) {
|
|
4495
4504
|
return /^[A-Z-a-z0-9\s]+$/g.test(t);
|
|
4496
|
-
},
|
|
4505
|
+
}, $i = function(t) {
|
|
4497
4506
|
if (G(t))
|
|
4498
4507
|
return !0;
|
|
4499
4508
|
const e = /^[A-Z-a-z0-9\s]+$/g.test(t) === !0;
|
|
4500
4509
|
if (!e)
|
|
4501
4510
|
throw new Error("Invalid reference");
|
|
4502
4511
|
return e;
|
|
4503
|
-
}, q = function(t) {
|
|
4504
|
-
return t.length.toString().padStart(3, "0");
|
|
4505
4512
|
}, j = function(t) {
|
|
4513
|
+
return t.length.toString().padStart(3, "0");
|
|
4514
|
+
}, q = function(t) {
|
|
4506
4515
|
let e = 0;
|
|
4507
4516
|
for (let r = 0; r < t.length; r++)
|
|
4508
4517
|
e ^= t.charCodeAt(r);
|
|
4509
4518
|
return String.fromCharCode(e);
|
|
4510
4519
|
}, Bt = function(t, e = 0) {
|
|
4511
4520
|
return t = parseFloat(t.toString().replace(/[^0-9.-]/g, "")), isNaN(t) ? 0 .toFixed(e) : t.toFixed(e).replace(/,/g, "");
|
|
4512
|
-
},
|
|
4521
|
+
}, fe = function(t) {
|
|
4513
4522
|
return t = parseFloat(t.toString()), !(isNaN(t) || t < 0);
|
|
4514
4523
|
}, yt = async function(t) {
|
|
4515
4524
|
for (const e in t)
|
|
4516
4525
|
if (typeof t[e] > "u" || t[e] === null || t[e] === "")
|
|
4517
4526
|
throw new Error("Object incomplete to process");
|
|
4518
4527
|
return t;
|
|
4519
|
-
},
|
|
4528
|
+
}, pe = function(t) {
|
|
4520
4529
|
if (!t || isNaN(parseInt(t)) || t.toString().length !== 9)
|
|
4521
4530
|
throw new Error("Number of operation must be number of 9 digits");
|
|
4522
4531
|
return t;
|
|
4523
|
-
},
|
|
4532
|
+
}, de = function(t) {
|
|
4524
4533
|
if (typeof t != "string") throw new Error("Invalid string");
|
|
4525
4534
|
return !t || /<html(?:\s+lang=["'][^"']*["'])?>/i.test(t) || (t = t.replace(/aaa/g, "á"), t = t.replace(/eee/g, "é"), t = t.replace(/iii/g, "í"), t = t.replace(/ooo/g, "ó"), t = t.replace(/uuu/g, "ú"), t = t.replace(/NNN/g, "Ñ"), t = t.replace(/nnn/g, "ñ"), t = t.replace(/á/g, "á")), t;
|
|
4526
|
-
},
|
|
4535
|
+
}, Ji = async function() {
|
|
4527
4536
|
const t = this.__pinPad__.constants.STX, e = this.__pinPad__.constants.ETX;
|
|
4528
4537
|
let r = "C55ACANCEL";
|
|
4529
|
-
r = t + p(this, h,
|
|
4538
|
+
r = t + p(this, h, j).call(this, r) + r + e, r = r + p(this, h, q).call(this, r);
|
|
4530
4539
|
const s = this.parseStringToBytes(r, "");
|
|
4531
4540
|
await this.appendToQueue(s, "cancel");
|
|
4532
|
-
},
|
|
4541
|
+
}, _e = function() {
|
|
4533
4542
|
const t = /* @__PURE__ */ new Date(), e = t.getDate().toString().padStart(2, "0"), r = (t.getMonth() + 1).toString().padStart(2, "0"), s = t.getFullYear().toString().substring(2);
|
|
4534
4543
|
return e + r + s;
|
|
4535
|
-
},
|
|
4544
|
+
}, ge = function() {
|
|
4536
4545
|
const t = /* @__PURE__ */ new Date(), e = t.getHours().toString().padStart(2, "0"), r = t.getMinutes().toString().padStart(2, "0");
|
|
4537
4546
|
return e + r;
|
|
4538
|
-
},
|
|
4539
|
-
return this.__pinPad__.config.latitude && this.__pinPad__.config.longitude ? this.latitudeLongitude : (this.__pinPad__.config.latitude = null, this.__pinPad__.config.longitude = null,
|
|
4547
|
+
}, Qi = async function() {
|
|
4548
|
+
return this.__pinPad__.config.latitude && this.__pinPad__.config.longitude ? this.latitudeLongitude : (this.__pinPad__.config.latitude = null, this.__pinPad__.config.longitude = null, Oe() ? new Promise((t) => {
|
|
4540
4549
|
navigator.geolocation.getCurrentPosition(
|
|
4541
4550
|
(e) => {
|
|
4542
4551
|
this.__pinPad__.config.latitude = e.coords.latitude, this.__pinPad__.config.longitude = e.coords.longitude, t(this.latitudeLongitude);
|
|
@@ -4546,7 +4555,7 @@ Fi = function(t, e, r = !1) {
|
|
|
4546
4555
|
}
|
|
4547
4556
|
);
|
|
4548
4557
|
}) : this.latitudeLongitude);
|
|
4549
|
-
},
|
|
4558
|
+
}, Zi = async function() {
|
|
4550
4559
|
let t = localStorage.getItem("ppPublicIP");
|
|
4551
4560
|
if (t && (t = JSON.parse(t), this.__pinPad__.config.publicIP = t.data, (/* @__PURE__ */ new Date()).getTime() - t.timestamp >= 864e5 && (this.__pinPad__.config.publicIP = null)), this.__pinPad__.config.publicIP) return this.__pinPad__.config.publicIP;
|
|
4552
4561
|
this.__pinPad__.config.publicIP = null;
|
|
@@ -4573,7 +4582,7 @@ Fi = function(t, e, r = !1) {
|
|
|
4573
4582
|
var u;
|
|
4574
4583
|
throw c.response.data.includes("Ha ocurrido un error al procesar su solicitud.") ? new Error("It was not possible to obtain the affiliations.") : c.response.status >= 500 && c.response.status <= 599 ? new Error(`Service Temporarily Unavailable ${c.message}`) : new Error(`Error in request, verify internet connection: ${(u = c.response) == null ? void 0 : u.status} ${c.message}`);
|
|
4575
4584
|
})).data;
|
|
4576
|
-
},
|
|
4585
|
+
}, me = async function({ data: t, url: e, cancelable: r = !1 } = {}) {
|
|
4577
4586
|
await p(this, h, mt).call(this);
|
|
4578
4587
|
const s = p(this, h, _t).call(this, 32), a = p(this, h, dt).call(this, this.__pinPad__.config.publicKeyRSA, s), o = await p(this, h, gt).call(this, s, JSON.stringify(t)), c = this;
|
|
4579
4588
|
return (await A.post(e, o, {
|
|
@@ -4585,18 +4594,18 @@ Fi = function(t, e, r = !1) {
|
|
|
4585
4594
|
}).catch(async (l) => {
|
|
4586
4595
|
var g;
|
|
4587
4596
|
let f = `Error in request, verify internet connection: ${l.status} ${l.message}`;
|
|
4588
|
-
throw l.response.status >= 500 && l.response.status <= 599 ? f = "Service Temporarily Unavailable" : l.response.status >= 400 && l.response.status <= 499 && (f = "Bad Request"), r && await p(g = c, h,
|
|
4597
|
+
throw l.response.status >= 500 && l.response.status <= 599 ? f = "Service Temporarily Unavailable" : l.response.status >= 400 && l.response.status <= 499 && (f = "Bad Request"), r && await p(g = c, h, Ji).call(g), new Error(f);
|
|
4589
4598
|
})).data;
|
|
4590
|
-
},
|
|
4599
|
+
}, Yi = async function() {
|
|
4591
4600
|
const t = this.__pinPad__.constants.FS, e = this.__pinPad__.constants.ETX, r = this.__pinPad__.constants.STX;
|
|
4592
4601
|
let s = "C57A" + this.__pinPad__.config.internal.qpsDomestic;
|
|
4593
|
-
if (s = s + t + "B" + this.__pinPad__.config.internal.qpsInternational, s = s + t + "C" + this.__pinPad__.config.internal.cvmlVMCDomestic, s = s + t + "D" + this.__pinPad__.config.internal.cvmlVMCInternational, s = s + t + "E" + this.__pinPad__.config.internal.cvmlAmex, s = s + t + "F" + this.__pinPad__.config.internal.translimitCTLSVMC, s = s + t + "G" + this.__pinPad__.config.internal.translimitCTLSAmex, s = r + p(this, h,
|
|
4602
|
+
if (s = s + t + "B" + this.__pinPad__.config.internal.qpsInternational, s = s + t + "C" + this.__pinPad__.config.internal.cvmlVMCDomestic, s = s + t + "D" + this.__pinPad__.config.internal.cvmlVMCInternational, s = s + t + "E" + this.__pinPad__.config.internal.cvmlAmex, s = s + t + "F" + this.__pinPad__.config.internal.translimitCTLSVMC, s = s + t + "G" + this.__pinPad__.config.internal.translimitCTLSAmex, s = r + p(this, h, j).call(this, s) + s + e, s = s + p(this, h, q).call(this, s), !this.__pinPad__.about.injectedValues) {
|
|
4594
4603
|
const a = this.parseStringToBytes(s, "");
|
|
4595
4604
|
await this.appendToQueue(a, "inject");
|
|
4596
4605
|
}
|
|
4597
|
-
},
|
|
4606
|
+
}, tn = async function() {
|
|
4598
4607
|
this.__pinPad__.operation.bin8 && (this.__pinPad__.operation.bin = this.__pinPad__.operation.bin8), this.__pinPad__.operation.bin8 = "";
|
|
4599
|
-
const t = await p(this, h,
|
|
4608
|
+
const t = await p(this, h, me).call(this, {
|
|
4600
4609
|
data: {
|
|
4601
4610
|
accion: "tipoPagoInfo",
|
|
4602
4611
|
cc_num: this.__pinPad__.operation.bin,
|
|
@@ -4611,16 +4620,16 @@ Fi = function(t, e, r = !1) {
|
|
|
4611
4620
|
if (!t.respuesta || t.respuesta === "0") {
|
|
4612
4621
|
let e = "C55ACANCEL";
|
|
4613
4622
|
const r = this.__pinPad__.constants.STX, s = this.__pinPad__.constants.ETX;
|
|
4614
|
-
e = r + p(this, h,
|
|
4623
|
+
e = r + p(this, h, j).call(this, e) + e + s, e = e + p(this, h, q).call(this, e);
|
|
4615
4624
|
const a = this.parseStringToBytes(e, "");
|
|
4616
4625
|
return await this.appendToQueue(a, "cancel"), !1;
|
|
4617
4626
|
}
|
|
4618
4627
|
return this.__pinPad__.operation.merchant = t, this.__pinPad__.operation.onlyMerchant = t.contado.af.length > 1 ? t.contado.af[0].merchant : t.contado.af.merchant, !0;
|
|
4619
|
-
},
|
|
4628
|
+
}, en = async function(t = null) {
|
|
4620
4629
|
if (this.__pinPad__.waiting.statusAboutWaiting) throw new Error("AboutPP is already running");
|
|
4621
4630
|
const e = this.__pinPad__.constants.STX, r = this.__pinPad__.constants.ETX;
|
|
4622
4631
|
let s = "C56AABOUT";
|
|
4623
|
-
if (s = e + p(this, h,
|
|
4632
|
+
if (s = e + p(this, h, j).call(this, s) + s + r, s = s + p(this, h, q).call(this, s), G(this.__pinPad__.about.pp)) {
|
|
4624
4633
|
this.__pinPad__.waiting.statusAboutWaiting = "pending";
|
|
4625
4634
|
const c = this.parseStringToBytes(s, "");
|
|
4626
4635
|
await this.appendToQueue(c, "about");
|
|
@@ -4646,9 +4655,9 @@ Fi = function(t, e, r = !1) {
|
|
|
4646
4655
|
this.dispatch("pp:dukpt", { status: "charged", already: !0 });
|
|
4647
4656
|
return;
|
|
4648
4657
|
}
|
|
4649
|
-
const r = p(this, h,
|
|
4658
|
+
const r = p(this, h, _e).call(this), s = p(this, h, ge).call(this), a = this.__pinPad__.constants.FS, o = this.__pinPad__.constants.ETX, c = this.__pinPad__.constants.STX;
|
|
4650
4659
|
let u = "C91A" + r + a + "B" + s;
|
|
4651
|
-
u = c + p(this, h,
|
|
4660
|
+
u = c + p(this, h, j).call(this, u) + u + o, u = u + p(this, h, q).call(this, u);
|
|
4652
4661
|
const l = this.parseStringToBytes(u, "");
|
|
4653
4662
|
await this.appendToQueue(l, "init-dukpt");
|
|
4654
4663
|
let f = 0;
|
|
@@ -4657,10 +4666,10 @@ Fi = function(t, e, r = !1) {
|
|
|
4657
4666
|
return new Promise((P, m) => {
|
|
4658
4667
|
f = setInterval(async () => {
|
|
4659
4668
|
var b;
|
|
4660
|
-
g.__pinPad__.waiting.statusinitDUKPTWaiting === "resolved" ? (clearInterval(f), g.__pinPad__.waiting.statusinitDUKPTWaiting = null, g.dispatch("pp:dukpt", { status: "charged", already: !1 }), await p(b = g, h,
|
|
4669
|
+
g.__pinPad__.waiting.statusinitDUKPTWaiting === "resolved" ? (clearInterval(f), g.__pinPad__.waiting.statusinitDUKPTWaiting = null, g.dispatch("pp:dukpt", { status: "charged", already: !1 }), await p(b = g, h, nn).call(b), P(!0)) : g.__pinPad__.waiting.statusinitDUKPTWaiting === "rejected" && (clearInterval(f), g.__pinPad__.waiting.statusinitDUKPTWaiting = null, m("Error"));
|
|
4661
4670
|
}, 500);
|
|
4662
4671
|
});
|
|
4663
|
-
},
|
|
4672
|
+
}, nn = async function() {
|
|
4664
4673
|
const t = {
|
|
4665
4674
|
IPEK_REQUESTType: {
|
|
4666
4675
|
business: {
|
|
@@ -4672,45 +4681,45 @@ Fi = function(t, e, r = !1) {
|
|
|
4672
4681
|
},
|
|
4673
4682
|
terminal: this.__pinPad__.config.terminal
|
|
4674
4683
|
}
|
|
4675
|
-
}, e = await p(this, h,
|
|
4684
|
+
}, e = await p(this, h, me).call(this, {
|
|
4676
4685
|
data: t,
|
|
4677
4686
|
url: this.url + this.__pinPad__.constants.uris.keysDUKPT
|
|
4678
4687
|
});
|
|
4679
|
-
await p(this, h,
|
|
4680
|
-
},
|
|
4681
|
-
if (!await p(this, h,
|
|
4688
|
+
await p(this, h, _n).call(this, e);
|
|
4689
|
+
}, rn = async function() {
|
|
4690
|
+
if (!await p(this, h, he).call(this))
|
|
4682
4691
|
throw new Error("RSA public key is empty");
|
|
4683
4692
|
const e = this;
|
|
4684
|
-
await p(this, h,
|
|
4693
|
+
await p(this, h, en).call(this, async function(s, a) {
|
|
4685
4694
|
var c, u;
|
|
4686
4695
|
if (e.__pinPad__.about.supportInjection && e.__pinPad__.config.internal.emv && e.__pinPad__.about.injectedValues)
|
|
4687
4696
|
return await p(c = e, h, Nt).call(c, s, a), !0;
|
|
4688
4697
|
let o = 0;
|
|
4689
|
-
return e.__pinPad__.waiting.statusInjectWaiting = "pending", await p(u = e, h,
|
|
4698
|
+
return e.__pinPad__.waiting.statusInjectWaiting = "pending", await p(u = e, h, Yi).call(u), new Promise((l, f) => {
|
|
4690
4699
|
o = setInterval(async () => {
|
|
4691
4700
|
var g;
|
|
4692
4701
|
e.__pinPad__.waiting.statusInjectWaiting === "resolved" ? (clearInterval(o), e.__pinPad__.waiting.statusInjectWaiting = null, await p(g = e, h, Nt).call(g, s, a), l(!0)) : e.__pinPad__.waiting.statusInjectWaiting === "rejected" && (clearInterval(o), e.__pinPad__.waiting.statusInjectWaiting = null, f("Error"));
|
|
4693
4702
|
}, 500);
|
|
4694
4703
|
});
|
|
4695
4704
|
});
|
|
4696
|
-
},
|
|
4705
|
+
}, ye = function(t, e = 0) {
|
|
4697
4706
|
if (t = parseFloat(t.toString().replace(/[^0-9.-]/g, "")), isNaN(t) || t === 0)
|
|
4698
4707
|
return parseFloat("0").toFixed(e);
|
|
4699
4708
|
t = t.toFixed(e);
|
|
4700
4709
|
let r = t.split(".");
|
|
4701
4710
|
return r[0] = r[0].replace(/\B(?=(\d{3})+(?!\d))/g, ""), r.join(".");
|
|
4702
|
-
},
|
|
4711
|
+
}, sn = async function() {
|
|
4703
4712
|
this.__pinPad__.operation.errors = 0;
|
|
4704
4713
|
let t = "ACERQUE, INSERTE CHIP O DESLICE TARJETA";
|
|
4705
4714
|
if (this.__pinPad__.about.supportContactless || (t = "INSERTE CHIP O DESLICE TARJETA"), this.__pinPad__.about.model.toUpperCase().includes("UX300") && (t = "ACERQUE O INSERTE TARJETA"), G(this.amount) || this.amount <= 0)
|
|
4706
4715
|
throw new Error("Amount required");
|
|
4707
|
-
if (p(this, h,
|
|
4716
|
+
if (p(this, h, fe).call(this, this.amount) === !1)
|
|
4708
4717
|
throw new Error("Invalid amount required");
|
|
4709
4718
|
if (p(this, h, Bt).call(this, this.amount, 2) <= 0)
|
|
4710
4719
|
throw new Error("Amount must be greater than 0");
|
|
4711
4720
|
const e = this.__pinPad__.constants.FS, r = this.__pinPad__.constants.STX, s = this.__pinPad__.constants.ETX;
|
|
4712
4721
|
let a = "C93A" + t;
|
|
4713
|
-
a = a + e + "B" + p(this, h,
|
|
4722
|
+
a = a + e + "B" + p(this, h, _e).call(this), a = a + e + "C" + p(this, h, ge).call(this), a = a + e + "D" + p(this, h, Bt).call(this, this.amount, 2), a = a + e + "E0.00", a = a + e + "F" + this.__pinPad__.config.currencyCode, this.__pinPad__.about.supportDUKPT && this.__pinPad__.about.supportDUKPT !== "0" && this.__pinPad__.about.supportDUKPT !== "false" && (this.__pinPad__.about.supportContactless ? (a = a + e + "G" + this.timeoutPinPad, a = a + e + "HTAGS", a = a + e + "I" + this.__pinPad__.config.requireCVVAmex, a = a + e + "J" + this.__pinPad__.config.forceOnline, a = a + e + "K" + this.__pinPad__.about.supportContactless, a = a + e + "L" + this.__pinPad__.config.emvCard, this.__pinPad__.about.hasCashback && (a = a + e + "M0", a = a + e + "N00")) : (a = a + e + "G" + this.timeoutPinPad, a = a + e + "HTAGS", a = a + e + "I" + this.__pinPad__.config.requireCVVAmex, a = a + e + "L" + this.__pinPad__.config.emvCard), this.__pinPad__.about.supportInjection && (a = a + e + "O" + this.__pinPad__.config.validateQPS)), a = r + p(this, h, j).call(this, a) + a + s, a = a + p(this, h, q).call(this, a), p(this, h, gn).call(this);
|
|
4714
4723
|
const o = this.parseStringToBytes(a, "");
|
|
4715
4724
|
await this.appendToQueue(o, "read-card");
|
|
4716
4725
|
let c = 0;
|
|
@@ -4726,9 +4735,9 @@ Fi = function(t, e, r = !1) {
|
|
|
4726
4735
|
}
|
|
4727
4736
|
}, 500);
|
|
4728
4737
|
});
|
|
4729
|
-
},
|
|
4730
|
-
return await
|
|
4731
|
-
},
|
|
4738
|
+
}, an = async function(t) {
|
|
4739
|
+
return await xe(t * 1e3);
|
|
4740
|
+
}, on = async function(t) {
|
|
4732
4741
|
let e = this.url + this.__pinPad__.constants.uris.consult;
|
|
4733
4742
|
return t > 1 && this.environment === "production" && (e = e.replace(
|
|
4734
4743
|
this.__pinPad__.constants.urls.production,
|
|
@@ -4741,13 +4750,13 @@ Fi = function(t, e, r = !1) {
|
|
|
4741
4750
|
date: this.__pinPad__.operation.consultDate,
|
|
4742
4751
|
reference: this.reference
|
|
4743
4752
|
});
|
|
4744
|
-
},
|
|
4753
|
+
}, cn = async function(t = "", e = {}) {
|
|
4745
4754
|
let r = 1, s = null;
|
|
4746
4755
|
do {
|
|
4747
4756
|
r > 1 && this.environment === "production" && (t = t.replace(
|
|
4748
4757
|
this.__pinPad__.constants.urls.production,
|
|
4749
4758
|
this.__pinPad__.constants.urls.productionAlternative
|
|
4750
|
-
), await p(this, h,
|
|
4759
|
+
), await p(this, h, an).call(this, 5)), await p(this, h, mt).call(this);
|
|
4751
4760
|
const a = p(this, h, _t).call(this, 32), o = p(this, h, dt).call(this, this.__pinPad__.config.publicKeyRSA, a), c = await p(this, h, gt).call(this, a, JSON.stringify(e));
|
|
4752
4761
|
let u = !1;
|
|
4753
4762
|
const l = await A.post(t, c, {
|
|
@@ -4758,14 +4767,14 @@ Fi = function(t, e, r = !1) {
|
|
|
4758
4767
|
}).catch(async (f) => {
|
|
4759
4768
|
let g = `Error in request, verify internet connection: ${f.status} ${f.message}`;
|
|
4760
4769
|
f.response.status >= 500 && f.response.status <= 599 ? g = "Service Temporarily Unavailable" : f.response.status >= 400 && f.response.status <= 499 && (g = "Bad Request"), console.warn(f), s = g;
|
|
4761
|
-
const P = await p(this, h,
|
|
4770
|
+
const P = await p(this, h, on).call(this, r);
|
|
4762
4771
|
P && P !== "{}" && !P.includes('"transacciones":""') && P.includes("nu_operaion") && (r = 5, s = "EE32"), u = !0;
|
|
4763
4772
|
});
|
|
4764
4773
|
if (!u)
|
|
4765
4774
|
return l.data;
|
|
4766
4775
|
} while (r++ <= 3);
|
|
4767
4776
|
return s ? Promise.reject(s) : Promise.reject("Communication error with CDP. IL/MTY");
|
|
4768
|
-
},
|
|
4777
|
+
}, un = function(t) {
|
|
4769
4778
|
if (G(t)) throw new Error("Number of authorization invalid");
|
|
4770
4779
|
if (/^[A-Za-z0-9]+$/g.test(t) !== !0) throw new Error("Number of authorization invalid");
|
|
4771
4780
|
if (t.length !== 6) throw new Error("Number of authorization invalid");
|
|
@@ -4800,7 +4809,7 @@ Fi = function(t, e, r = !1) {
|
|
|
4800
4809
|
// },
|
|
4801
4810
|
// };
|
|
4802
4811
|
// }
|
|
4803
|
-
|
|
4812
|
+
hn = function(t) {
|
|
4804
4813
|
var s, a;
|
|
4805
4814
|
const e = this;
|
|
4806
4815
|
this.__pinPad__.operation.responseMit._approved = t.response === "approved", this.__pinPad__.operation.responseMit._status = t.response, this.__pinPad__.operation.responseMit._originalToken = t.number_tkn ?? "", this.__pinPad__.operation.folio = t.foliocpagos, this.__pinPad__.operation.authorization = t.auth;
|
|
@@ -4812,7 +4821,7 @@ cn = function(t) {
|
|
|
4812
4821
|
auth: t.auth,
|
|
4813
4822
|
cd_response: r,
|
|
4814
4823
|
cd_error: t.cd_error,
|
|
4815
|
-
nb_error: p(a = e, h,
|
|
4824
|
+
nb_error: p(a = e, h, de).call(a, t.nb_error ?? ""),
|
|
4816
4825
|
time: t.time,
|
|
4817
4826
|
date: t.date,
|
|
4818
4827
|
nb_company: t.nb_company,
|
|
@@ -4832,7 +4841,7 @@ cn = function(t) {
|
|
|
4832
4841
|
appidlabel: t.appidlabel,
|
|
4833
4842
|
arqc: t.arqc
|
|
4834
4843
|
};
|
|
4835
|
-
},
|
|
4844
|
+
}, ln = async function() {
|
|
4836
4845
|
var s, a;
|
|
4837
4846
|
const t = this;
|
|
4838
4847
|
this.__pinPad__.operation.errors = 0, this.__pinPad__.operation.ignore.counterSale = !1;
|
|
@@ -4846,7 +4855,7 @@ cn = function(t) {
|
|
|
4846
4855
|
object: {}
|
|
4847
4856
|
};
|
|
4848
4857
|
try {
|
|
4849
|
-
const o = await p(this, h,
|
|
4858
|
+
const o = await p(this, h, ye).call(this, this.amount, 2);
|
|
4850
4859
|
await p(this, h, yt).call(this, {
|
|
4851
4860
|
Ambiente: this.environment,
|
|
4852
4861
|
Country: this.__pinPad__.config.country,
|
|
@@ -4868,7 +4877,7 @@ cn = function(t) {
|
|
|
4868
4877
|
Merchant: e,
|
|
4869
4878
|
Reverse: this.__pinPad__.config.otherLogin.executeReverse
|
|
4870
4879
|
});
|
|
4871
|
-
const c = this.__pinPad__.about.supportContactless && this.__pinPad__.about.supportContactless !== "0" ? "1" : "0", u = await p(this, h,
|
|
4880
|
+
const c = this.__pinPad__.about.supportContactless && this.__pinPad__.about.supportContactless !== "0" ? "1" : "0", u = await p(this, h, cn).call(this, this.url + this.__pinPad__.constants.uris.sale, {
|
|
4872
4881
|
VMCAMEXB: {
|
|
4873
4882
|
business: {
|
|
4874
4883
|
country: this.__pinPad__.config.country.toUpperCase(),
|
|
@@ -4928,17 +4937,17 @@ cn = function(t) {
|
|
|
4928
4937
|
}
|
|
4929
4938
|
});
|
|
4930
4939
|
u.response === "error" && (r.error = !0, r.message = u.nb_error || "Error in response");
|
|
4931
|
-
const l = p(this, h,
|
|
4932
|
-
return r.object = l, await p(this, h,
|
|
4940
|
+
const l = p(this, h, hn).call(this, u);
|
|
4941
|
+
return r.object = l, await p(this, h, fn).call(this, l), r.approved = this.__pinPad__.operation.responseMit._approved, this.__pinPad__.operation.finalResult = l, r;
|
|
4933
4942
|
} catch (o) {
|
|
4934
|
-
throw t.__pinPad__.finishCommand.A = "01", t.__pinPad__.finishCommand.B = "", t.__pinPad__.finishCommand.C = "", t.__pinPad__.finishCommand.D = "", t.__pinPad__.finishCommand.E = "", t.__pinPad__.finishCommand.F = "", t.__pinPad__.finishCommand.G = "", t.__pinPad__.finishCommand.H = "", t.__pinPad__.finishCommand.I = "", t.__pinPad__.finishCommand.J = "", t.__pinPad__.finishCommand.K = "", await p(a = t, h,
|
|
4943
|
+
throw t.__pinPad__.finishCommand.A = "01", t.__pinPad__.finishCommand.B = "", t.__pinPad__.finishCommand.C = "", t.__pinPad__.finishCommand.D = "", t.__pinPad__.finishCommand.E = "", t.__pinPad__.finishCommand.F = "", t.__pinPad__.finishCommand.G = "", t.__pinPad__.finishCommand.H = "", t.__pinPad__.finishCommand.I = "", t.__pinPad__.finishCommand.J = "", t.__pinPad__.finishCommand.K = "", await p(a = t, h, dn).call(a, p(s = t, h, Pe).call(s, o)), o;
|
|
4935
4944
|
}
|
|
4936
|
-
},
|
|
4945
|
+
}, fn = async function(t) {
|
|
4937
4946
|
if (this.__pinPad__.config.read.POSEM === "022" || this.__pinPad__.config.read.POSEM === "800" || this.__pinPad__.config.read.ReadCTLS === "1")
|
|
4938
4947
|
return this.dispatch("pp:finish-emv", t), !0;
|
|
4939
4948
|
const e = this.__pinPad__.constants.FS, r = this.__pinPad__.constants.STX, s = this.__pinPad__.constants.ETX;
|
|
4940
4949
|
let a = "C93A" + this.__pinPad__.finishCommand.A;
|
|
4941
|
-
a = a + e + "B" + this.__pinPad__.finishCommand.B, a = a + e + "C" + this.__pinPad__.finishCommand.C, a = a + e + "D" + this.__pinPad__.finishCommand.D, a = a + e + "E" + this.__pinPad__.finishCommand.E, a = a + e + "F" + this.__pinPad__.finishCommand.F, a = a + e + "G" + this.__pinPad__.finishCommand.G, a = a + e + "H" + this.__pinPad__.finishCommand.H, a = a + e + "I" + this.__pinPad__.finishCommand.I, a = a + e + "J" + this.__pinPad__.finishCommand.J, a = a + e + "K" + this.__pinPad__.finishCommand.K, a = r + p(this, h,
|
|
4950
|
+
a = a + e + "B" + this.__pinPad__.finishCommand.B, a = a + e + "C" + this.__pinPad__.finishCommand.C, a = a + e + "D" + this.__pinPad__.finishCommand.D, a = a + e + "E" + this.__pinPad__.finishCommand.E, a = a + e + "F" + this.__pinPad__.finishCommand.F, a = a + e + "G" + this.__pinPad__.finishCommand.G, a = a + e + "H" + this.__pinPad__.finishCommand.H, a = a + e + "I" + this.__pinPad__.finishCommand.I, a = a + e + "J" + this.__pinPad__.finishCommand.J, a = a + e + "K" + this.__pinPad__.finishCommand.K, a = r + p(this, h, j).call(this, a) + a + s, a = a + p(this, h, q).call(this, a);
|
|
4942
4951
|
const o = this.parseStringToBytes(a, "");
|
|
4943
4952
|
this.__pinPad__.waiting.statusSecondGenerateWaiting = "pending", await this.appendToQueue(o, "second-generate");
|
|
4944
4953
|
let c = 0;
|
|
@@ -4972,20 +4981,20 @@ cn = function(t) {
|
|
|
4972
4981
|
b.response === "approved" ? y = { message: "Transaction rejected by PinPad." } : y = { message: "No communication, please check your report." }, u.__pinPad__.operation.ignore.counterSale || (u.dispatch("pp:finish-emv", y), u.__pinPad__.operation.ignore.counterSale = !0);
|
|
4973
4982
|
} else
|
|
4974
4983
|
u.__pinPad__.operation.ignore.counterSale || (u.dispatch("pp:finish-emv", t), u.__pinPad__.operation.ignore.counterSale = !0);
|
|
4975
|
-
t.cd_error === "92" && await p(P = u, h,
|
|
4984
|
+
t.cd_error === "92" && await p(P = u, h, pn).call(P, t, a), l(!0);
|
|
4976
4985
|
} else u.__pinPad__.waiting.statusSecondGenerateWaiting === "rejected" && (clearInterval(c), u.__pinPad__.waiting.statusSecondGenerateWaiting = null, f("There is no response from the reader, check that it is connected."));
|
|
4977
4986
|
}, 500);
|
|
4978
4987
|
});
|
|
4979
|
-
},
|
|
4988
|
+
}, pn = async function(t, e) {
|
|
4980
4989
|
this.__pinPad__.operation.ignore.responseGlobal = t, this.__pinPad__.operation.ignore.C93Global = e, this.__pinPad__.operation.ignore.isError92TRX = !0, await p(this, h, Nt).call(this, 1, 0);
|
|
4981
|
-
},
|
|
4990
|
+
}, be = async function() {
|
|
4982
4991
|
if (this.__pinPad__.operation.ignore.isError92TRX = !1, this.__pinPad__.config.read.POSEM === "022" || this.__pinPad__.config.read.POSEM === "800" || this.__pinPad__.config.read.ReadCTLS === "1")
|
|
4983
4992
|
this.dispatch("pp:response", this.__pinPad__.operation.ignore.responseGlobal);
|
|
4984
4993
|
else {
|
|
4985
4994
|
const t = this.parseStringToBytes(this.__pinPad__.operation.ignore.C93Global, "");
|
|
4986
|
-
await this.appendToQueue(t, "code93"), await
|
|
4995
|
+
await this.appendToQueue(t, "code93"), await xe(1400), this.dispatch("pp:response", this.__pinPad__.operation.ignore.responseGlobal);
|
|
4987
4996
|
}
|
|
4988
|
-
},
|
|
4997
|
+
}, Pe = function(t) {
|
|
4989
4998
|
const e = {
|
|
4990
4999
|
PPE02: "Importe Incorrecto.",
|
|
4991
5000
|
A02: "Importe Incorrecto.",
|
|
@@ -5030,23 +5039,23 @@ cn = function(t) {
|
|
|
5030
5039
|
message: e[t]
|
|
5031
5040
|
} : { error: t, message: "Error desconocido" };
|
|
5032
5041
|
return this.dispatch("pp:error", r), r;
|
|
5033
|
-
},
|
|
5042
|
+
}, dn = async function(t) {
|
|
5034
5043
|
const e = this.__pinPad__.constants.FS, r = this.__pinPad__.constants.STX, s = this.__pinPad__.constants.ETX;
|
|
5035
5044
|
let a = "C93A" + this.__pinPad__.finishCommand.A;
|
|
5036
|
-
if (a = a + e + "B" + this.__pinPad__.finishCommand.B, a = a + e + "C" + this.__pinPad__.finishCommand.C, a = a + e + "D" + this.__pinPad__.finishCommand.D, a = a + e + "E" + this.__pinPad__.finishCommand.E, a = a + e + "F" + this.__pinPad__.finishCommand.F, a = a + e + "G" + this.__pinPad__.finishCommand.G, a = a + e + "H" + this.__pinPad__.finishCommand.H, a = a + e + "I" + this.__pinPad__.finishCommand.I, a = a + e + "J" + this.__pinPad__.finishCommand.J, a = a + e + "K" + this.__pinPad__.finishCommand.K, a = r + p(this, h,
|
|
5045
|
+
if (a = a + e + "B" + this.__pinPad__.finishCommand.B, a = a + e + "C" + this.__pinPad__.finishCommand.C, a = a + e + "D" + this.__pinPad__.finishCommand.D, a = a + e + "E" + this.__pinPad__.finishCommand.E, a = a + e + "F" + this.__pinPad__.finishCommand.F, a = a + e + "G" + this.__pinPad__.finishCommand.G, a = a + e + "H" + this.__pinPad__.finishCommand.H, a = a + e + "I" + this.__pinPad__.finishCommand.I, a = a + e + "J" + this.__pinPad__.finishCommand.J, a = a + e + "K" + this.__pinPad__.finishCommand.K, a = r + p(this, h, j).call(this, a) + a + s, a = a + p(this, h, q).call(this, a), this.__pinPad__.config.read.POSEM === "022" || this.__pinPad__.config.read.POSEM === "800" || this.__pinPad__.config.read.ReadCTLS === "1") {
|
|
5037
5046
|
this.dispatch("pp:finish-emv", t);
|
|
5038
5047
|
return;
|
|
5039
5048
|
}
|
|
5040
5049
|
const o = this.parseStringToBytes(a, "");
|
|
5041
5050
|
await this.appendToQueue(o, "finish-emv-end");
|
|
5042
|
-
},
|
|
5051
|
+
}, _n = async function(t) {
|
|
5043
5052
|
if (t.cd_estatus = t.cd_estatus ? t.cd_estatus : "0", t.cd_estatus !== "1") {
|
|
5044
|
-
this.__pinPad__.operation.ignore.isError92TRX && await p(this, h,
|
|
5053
|
+
this.__pinPad__.operation.ignore.isError92TRX && await p(this, h, be).call(this);
|
|
5045
5054
|
return;
|
|
5046
5055
|
}
|
|
5047
5056
|
const e = this.__pinPad__.constants.FS, r = this.__pinPad__.constants.ETX, s = this.__pinPad__.constants.STX, a = t.nb_ksn, o = t.nb_kcv || "", c = t.nb_ipek || "";
|
|
5048
5057
|
let u = "C92A" + a + e + "B" + o + e + "C" + c;
|
|
5049
|
-
u = s + p(this, h,
|
|
5058
|
+
u = s + p(this, h, j).call(this, u) + u + r, u = u + p(this, h, q).call(this, u);
|
|
5050
5059
|
const l = this.parseStringToBytes(u, "");
|
|
5051
5060
|
await this.appendToQueue(l, "dukpt");
|
|
5052
5061
|
let f = 0;
|
|
@@ -5055,12 +5064,12 @@ cn = function(t) {
|
|
|
5055
5064
|
return new Promise((P, m) => {
|
|
5056
5065
|
f = setInterval(async () => {
|
|
5057
5066
|
var b;
|
|
5058
|
-
g.__pinPad__.waiting.statuswritingDUKPTWaiting === "resolved" ? (clearInterval(f), g.__pinPad__.waiting.statuswritingDUKPTWaiting = null, this.__pinPad__.operation.ignore.isError92TRX && await p(b = g, h,
|
|
5067
|
+
g.__pinPad__.waiting.statuswritingDUKPTWaiting === "resolved" ? (clearInterval(f), g.__pinPad__.waiting.statuswritingDUKPTWaiting = null, this.__pinPad__.operation.ignore.isError92TRX && await p(b = g, h, be).call(b), P(!0)) : g.__pinPad__.waiting.statuswritingDUKPTWaiting === "rejected" && (clearInterval(f), g.__pinPad__.waiting.statuswritingDUKPTWaiting = null, m("Error writing DUKPT keys"));
|
|
5059
5068
|
}, 500);
|
|
5060
5069
|
});
|
|
5061
|
-
},
|
|
5070
|
+
}, gn = function() {
|
|
5062
5071
|
this.__pinPad__.config.read.AppId = "", this.__pinPad__.config.read.AppIdLabel = "", this.__pinPad__.config.read.Arqc = "", this.__pinPad__.config.read.ChipName = "", this.__pinPad__.config.read.ReadCTLS = "", this.__pinPad__.config.read.NB_Data = "", this.__pinPad__.config.read.NB_ksn = "", this.__pinPad__.config.read.PIN = "", this.__pinPad__.config.read.POSEM = "", this.__pinPad__.config.read.Tags = "", this.__pinPad__.config.read.Type = "", this.__pinPad__.config.read.Chip = "", this.__pinPad__.config.read.ChipNameEnc = "", this.__pinPad__.operation.ignore.error = "", this.__pinPad__.operation.ignore.C93Global = "", this.__pinPad__.operation.folio = "", this.__pinPad__.operation.authorization = "", this.__pinPad__.config.tokenizeTRX = !1;
|
|
5063
5072
|
};
|
|
5064
5073
|
export {
|
|
5065
|
-
|
|
5074
|
+
Ks as PinPad
|
|
5066
5075
|
};
|