60p82u21t54k 0.2.31 → 0.2.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/60p82u21t54k.es.js +115 -99
- package/dist/60p82u21t54k.umd.js +1 -1
- package/dist/model/getSetting/getGetSettingResponse.d.ts +1 -0
- package/dist/model/getSetting/getGetSettingResponse.d.ts.map +1 -1
- package/dist/model/getSetting/type.d.ts +3 -1
- package/dist/model/getSetting/type.d.ts.map +1 -1
- package/dist/util/tool.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/60p82u21t54k.es.js
CHANGED
|
@@ -76,9 +76,9 @@ const wa = (e) => {
|
|
|
76
76
|
__proto__: null,
|
|
77
77
|
getConfig: ht,
|
|
78
78
|
setConfig: wa
|
|
79
|
-
}, Symbol.toStringTag, { value: "Module" })), aa = 6048e5, Pa = 864e5, Ra = 6e4,
|
|
79
|
+
}, Symbol.toStringTag, { value: "Module" })), aa = 6048e5, Pa = 864e5, Ra = 6e4, xa = 36e5, Oa = 1e3, Ot = Symbol.for("constructDateFrom");
|
|
80
80
|
function E(e, a) {
|
|
81
|
-
return typeof e == "function" ? e(a) : e && typeof e == "object" &&
|
|
81
|
+
return typeof e == "function" ? e(a) : e && typeof e == "object" && Ot in e ? e[Ot](a) : e instanceof Date ? new e.constructor(a) : new Date(a);
|
|
82
82
|
}
|
|
83
83
|
function W(e, a) {
|
|
84
84
|
return E(a || e, e);
|
|
@@ -611,7 +611,7 @@ function ia(e, a) {
|
|
|
611
611
|
const t = W(e, a == null ? void 0 : a.in), n = +fe(t, a) - +pn(t, a);
|
|
612
612
|
return Math.round(n / aa) + 1;
|
|
613
613
|
}
|
|
614
|
-
function
|
|
614
|
+
function O(e, a) {
|
|
615
615
|
const t = e < 0 ? "-" : "", n = Math.abs(e).toString().padStart(a, "0");
|
|
616
616
|
return t + n;
|
|
617
617
|
}
|
|
@@ -619,16 +619,16 @@ const ge = {
|
|
|
619
619
|
// Year
|
|
620
620
|
y(e, a) {
|
|
621
621
|
const t = e.getFullYear(), n = t > 0 ? t : 1 - t;
|
|
622
|
-
return
|
|
622
|
+
return O(a === "yy" ? n % 100 : n, a.length);
|
|
623
623
|
},
|
|
624
624
|
// Month
|
|
625
625
|
M(e, a) {
|
|
626
626
|
const t = e.getMonth();
|
|
627
|
-
return a === "M" ? String(t + 1) :
|
|
627
|
+
return a === "M" ? String(t + 1) : O(t + 1, 2);
|
|
628
628
|
},
|
|
629
629
|
// Day of the month
|
|
630
630
|
d(e, a) {
|
|
631
|
-
return
|
|
631
|
+
return O(e.getDate(), a.length);
|
|
632
632
|
},
|
|
633
633
|
// AM or PM
|
|
634
634
|
a(e, a) {
|
|
@@ -648,28 +648,28 @@ const ge = {
|
|
|
648
648
|
},
|
|
649
649
|
// Hour [1-12]
|
|
650
650
|
h(e, a) {
|
|
651
|
-
return
|
|
651
|
+
return O(e.getHours() % 12 || 12, a.length);
|
|
652
652
|
},
|
|
653
653
|
// Hour [0-23]
|
|
654
654
|
H(e, a) {
|
|
655
|
-
return
|
|
655
|
+
return O(e.getHours(), a.length);
|
|
656
656
|
},
|
|
657
657
|
// Minute
|
|
658
658
|
m(e, a) {
|
|
659
|
-
return
|
|
659
|
+
return O(e.getMinutes(), a.length);
|
|
660
660
|
},
|
|
661
661
|
// Second
|
|
662
662
|
s(e, a) {
|
|
663
|
-
return
|
|
663
|
+
return O(e.getSeconds(), a.length);
|
|
664
664
|
},
|
|
665
665
|
// Fraction of second
|
|
666
666
|
S(e, a) {
|
|
667
667
|
const t = a.length, n = e.getMilliseconds(), r = Math.trunc(
|
|
668
668
|
n * Math.pow(10, t - 3)
|
|
669
669
|
);
|
|
670
|
-
return
|
|
670
|
+
return O(r, a.length);
|
|
671
671
|
}
|
|
672
|
-
},
|
|
672
|
+
}, xe = {
|
|
673
673
|
midnight: "midnight",
|
|
674
674
|
noon: "noon",
|
|
675
675
|
morning: "morning",
|
|
@@ -708,14 +708,14 @@ const ge = {
|
|
|
708
708
|
const r = _t(e, n), s = r > 0 ? r : 1 - r;
|
|
709
709
|
if (a === "YY") {
|
|
710
710
|
const i = s % 100;
|
|
711
|
-
return
|
|
711
|
+
return O(i, 2);
|
|
712
712
|
}
|
|
713
|
-
return a === "Yo" ? t.ordinalNumber(s, { unit: "year" }) :
|
|
713
|
+
return a === "Yo" ? t.ordinalNumber(s, { unit: "year" }) : O(s, a.length);
|
|
714
714
|
},
|
|
715
715
|
// ISO week-numbering year
|
|
716
716
|
R: function(e, a) {
|
|
717
717
|
const t = ra(e);
|
|
718
|
-
return
|
|
718
|
+
return O(t, a.length);
|
|
719
719
|
},
|
|
720
720
|
// Extended year. This is a single number designating the year of this calendar system.
|
|
721
721
|
// The main difference between `y` and `u` localizers are B.C. years:
|
|
@@ -728,7 +728,7 @@ const ge = {
|
|
|
728
728
|
// while `uu` pads single digit years to 2 characters and returns other years unchanged.
|
|
729
729
|
u: function(e, a) {
|
|
730
730
|
const t = e.getFullYear();
|
|
731
|
-
return
|
|
731
|
+
return O(t, a.length);
|
|
732
732
|
},
|
|
733
733
|
// Quarter
|
|
734
734
|
Q: function(e, a, t) {
|
|
@@ -739,7 +739,7 @@ const ge = {
|
|
|
739
739
|
return String(n);
|
|
740
740
|
// 01, 02, 03, 04
|
|
741
741
|
case "QQ":
|
|
742
|
-
return
|
|
742
|
+
return O(n, 2);
|
|
743
743
|
// 1st, 2nd, 3rd, 4th
|
|
744
744
|
case "Qo":
|
|
745
745
|
return t.ordinalNumber(n, { unit: "quarter" });
|
|
@@ -773,7 +773,7 @@ const ge = {
|
|
|
773
773
|
return String(n);
|
|
774
774
|
// 01, 02, 03, 04
|
|
775
775
|
case "qq":
|
|
776
|
-
return
|
|
776
|
+
return O(n, 2);
|
|
777
777
|
// 1st, 2nd, 3rd, 4th
|
|
778
778
|
case "qo":
|
|
779
779
|
return t.ordinalNumber(n, { unit: "quarter" });
|
|
@@ -835,7 +835,7 @@ const ge = {
|
|
|
835
835
|
return String(n + 1);
|
|
836
836
|
// 01, 02, ..., 12
|
|
837
837
|
case "LL":
|
|
838
|
-
return
|
|
838
|
+
return O(n + 1, 2);
|
|
839
839
|
// 1st, 2nd, ..., 12th
|
|
840
840
|
case "Lo":
|
|
841
841
|
return t.ordinalNumber(n + 1, { unit: "month" });
|
|
@@ -860,12 +860,12 @@ const ge = {
|
|
|
860
860
|
// Local week of year
|
|
861
861
|
w: function(e, a, t, n) {
|
|
862
862
|
const r = ia(e, n);
|
|
863
|
-
return a === "wo" ? t.ordinalNumber(r, { unit: "week" }) :
|
|
863
|
+
return a === "wo" ? t.ordinalNumber(r, { unit: "week" }) : O(r, a.length);
|
|
864
864
|
},
|
|
865
865
|
// ISO week of year
|
|
866
866
|
I: function(e, a, t) {
|
|
867
867
|
const n = oa(e);
|
|
868
|
-
return a === "Io" ? t.ordinalNumber(n, { unit: "week" }) :
|
|
868
|
+
return a === "Io" ? t.ordinalNumber(n, { unit: "week" }) : O(n, a.length);
|
|
869
869
|
},
|
|
870
870
|
// Day of the month
|
|
871
871
|
d: function(e, a, t) {
|
|
@@ -874,7 +874,7 @@ const ge = {
|
|
|
874
874
|
// Day of year
|
|
875
875
|
D: function(e, a, t) {
|
|
876
876
|
const n = fn(e);
|
|
877
|
-
return a === "Do" ? t.ordinalNumber(n, { unit: "dayOfYear" }) :
|
|
877
|
+
return a === "Do" ? t.ordinalNumber(n, { unit: "dayOfYear" }) : O(n, a.length);
|
|
878
878
|
},
|
|
879
879
|
// Day of week
|
|
880
880
|
E: function(e, a, t) {
|
|
@@ -918,7 +918,7 @@ const ge = {
|
|
|
918
918
|
return String(s);
|
|
919
919
|
// Padded numerical value
|
|
920
920
|
case "ee":
|
|
921
|
-
return
|
|
921
|
+
return O(s, 2);
|
|
922
922
|
// 1st, 2nd, ..., 7th
|
|
923
923
|
case "eo":
|
|
924
924
|
return t.ordinalNumber(s, { unit: "day" });
|
|
@@ -957,7 +957,7 @@ const ge = {
|
|
|
957
957
|
return String(s);
|
|
958
958
|
// Padded numerical value
|
|
959
959
|
case "cc":
|
|
960
|
-
return
|
|
960
|
+
return O(s, a.length);
|
|
961
961
|
// 1st, 2nd, ..., 7th
|
|
962
962
|
case "co":
|
|
963
963
|
return t.ordinalNumber(s, { unit: "day" });
|
|
@@ -996,7 +996,7 @@ const ge = {
|
|
|
996
996
|
return String(r);
|
|
997
997
|
// 02
|
|
998
998
|
case "ii":
|
|
999
|
-
return
|
|
999
|
+
return O(r, a.length);
|
|
1000
1000
|
// 2nd
|
|
1001
1001
|
case "io":
|
|
1002
1002
|
return t.ordinalNumber(r, { unit: "day" });
|
|
@@ -1059,7 +1059,7 @@ const ge = {
|
|
|
1059
1059
|
b: function(e, a, t) {
|
|
1060
1060
|
const n = e.getHours();
|
|
1061
1061
|
let r;
|
|
1062
|
-
switch (n === 12 ? r =
|
|
1062
|
+
switch (n === 12 ? r = xe.noon : n === 0 ? r = xe.midnight : r = n / 12 >= 1 ? "pm" : "am", a) {
|
|
1063
1063
|
case "b":
|
|
1064
1064
|
case "bb":
|
|
1065
1065
|
return t.dayPeriod(r, {
|
|
@@ -1088,7 +1088,7 @@ const ge = {
|
|
|
1088
1088
|
B: function(e, a, t) {
|
|
1089
1089
|
const n = e.getHours();
|
|
1090
1090
|
let r;
|
|
1091
|
-
switch (n >= 17 ? r =
|
|
1091
|
+
switch (n >= 17 ? r = xe.evening : n >= 12 ? r = xe.afternoon : n >= 4 ? r = xe.morning : r = xe.night, a) {
|
|
1092
1092
|
case "B":
|
|
1093
1093
|
case "BB":
|
|
1094
1094
|
case "BBB":
|
|
@@ -1124,12 +1124,12 @@ const ge = {
|
|
|
1124
1124
|
// Hour [0-11]
|
|
1125
1125
|
K: function(e, a, t) {
|
|
1126
1126
|
const n = e.getHours() % 12;
|
|
1127
|
-
return a === "Ko" ? t.ordinalNumber(n, { unit: "hour" }) :
|
|
1127
|
+
return a === "Ko" ? t.ordinalNumber(n, { unit: "hour" }) : O(n, a.length);
|
|
1128
1128
|
},
|
|
1129
1129
|
// Hour [1-24]
|
|
1130
1130
|
k: function(e, a, t) {
|
|
1131
1131
|
let n = e.getHours();
|
|
1132
|
-
return n === 0 && (n = 24), a === "ko" ? t.ordinalNumber(n, { unit: "hour" }) :
|
|
1132
|
+
return n === 0 && (n = 24), a === "ko" ? t.ordinalNumber(n, { unit: "hour" }) : O(n, a.length);
|
|
1133
1133
|
},
|
|
1134
1134
|
// Minute
|
|
1135
1135
|
m: function(e, a, t) {
|
|
@@ -1224,22 +1224,22 @@ const ge = {
|
|
|
1224
1224
|
// Seconds timestamp
|
|
1225
1225
|
t: function(e, a, t) {
|
|
1226
1226
|
const n = Math.trunc(+e / 1e3);
|
|
1227
|
-
return
|
|
1227
|
+
return O(n, a.length);
|
|
1228
1228
|
},
|
|
1229
1229
|
// Milliseconds timestamp
|
|
1230
1230
|
T: function(e, a, t) {
|
|
1231
|
-
return
|
|
1231
|
+
return O(+e, a.length);
|
|
1232
1232
|
}
|
|
1233
1233
|
};
|
|
1234
1234
|
function St(e, a = "") {
|
|
1235
1235
|
const t = e > 0 ? "-" : "+", n = Math.abs(e), r = Math.trunc(n / 60), s = n % 60;
|
|
1236
|
-
return s === 0 ? t + String(r) : t + String(r) + a +
|
|
1236
|
+
return s === 0 ? t + String(r) : t + String(r) + a + O(s, 2);
|
|
1237
1237
|
}
|
|
1238
1238
|
function It(e, a) {
|
|
1239
|
-
return e % 60 === 0 ? (e > 0 ? "-" : "+") +
|
|
1239
|
+
return e % 60 === 0 ? (e > 0 ? "-" : "+") + O(Math.abs(e) / 60, 2) : he(e, a);
|
|
1240
1240
|
}
|
|
1241
1241
|
function he(e, a = "") {
|
|
1242
|
-
const t = e > 0 ? "-" : "+", n = Math.abs(e), r =
|
|
1242
|
+
const t = e > 0 ? "-" : "+", n = Math.abs(e), r = O(Math.trunc(n / 60), 2), s = O(n % 60, 2);
|
|
1243
1243
|
return t + r + a + s;
|
|
1244
1244
|
}
|
|
1245
1245
|
const jt = (e, a) => {
|
|
@@ -1306,7 +1306,7 @@ function Tn(e, a, t) {
|
|
|
1306
1306
|
return `Use \`${e.toLowerCase()}\` instead of \`${e}\` (in \`${a}\`) for formatting ${n} to the input \`${t}\`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`;
|
|
1307
1307
|
}
|
|
1308
1308
|
const vn = /[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g, wn = /P+p+|P+|p+|''|'(''|[^'])+('|$)|./g, Dn = /^'([^]*?)'?$/, Pn = /''/g, Rn = /[a-zA-Z]/;
|
|
1309
|
-
function
|
|
1309
|
+
function xn(e, a, t) {
|
|
1310
1310
|
var h, w, _, b, k, C, V, A;
|
|
1311
1311
|
const n = Ie(), r = (t == null ? void 0 : t.locale) ?? n.locale ?? sa, s = (t == null ? void 0 : t.firstWeekContainsDate) ?? ((w = (h = t == null ? void 0 : t.locale) == null ? void 0 : h.options) == null ? void 0 : w.firstWeekContainsDate) ?? n.firstWeekContainsDate ?? ((b = (_ = n.locale) == null ? void 0 : _.options) == null ? void 0 : b.firstWeekContainsDate) ?? 1, i = (t == null ? void 0 : t.weekStartsOn) ?? ((C = (k = t == null ? void 0 : t.locale) == null ? void 0 : k.options) == null ? void 0 : C.weekStartsOn) ?? n.weekStartsOn ?? ((A = (V = n.locale) == null ? void 0 : V.options) == null ? void 0 : A.weekStartsOn) ?? 0, d = W(e, t == null ? void 0 : t.in);
|
|
1312
1312
|
if (!Ca(d))
|
|
@@ -1323,7 +1323,7 @@ function On(e, a, t) {
|
|
|
1323
1323
|
return { isToken: !1, value: "'" };
|
|
1324
1324
|
const M = I[0];
|
|
1325
1325
|
if (M === "'")
|
|
1326
|
-
return { isToken: !1, value:
|
|
1326
|
+
return { isToken: !1, value: On(I) };
|
|
1327
1327
|
if (Mt[M])
|
|
1328
1328
|
return { isToken: !0, value: I };
|
|
1329
1329
|
if (M.match(Rn))
|
|
@@ -1346,7 +1346,7 @@ function On(e, a, t) {
|
|
|
1346
1346
|
return T(d, M, r.localize, p);
|
|
1347
1347
|
}).join("");
|
|
1348
1348
|
}
|
|
1349
|
-
function
|
|
1349
|
+
function On(e) {
|
|
1350
1350
|
const a = e.match(Dn);
|
|
1351
1351
|
return a ? a[1].replace(Pn, "'") : e;
|
|
1352
1352
|
}
|
|
@@ -1514,7 +1514,7 @@ function ne(e, a) {
|
|
|
1514
1514
|
};
|
|
1515
1515
|
const n = t[1] === "+" ? 1 : -1, r = t[2] ? parseInt(t[2], 10) : 0, s = t[3] ? parseInt(t[3], 10) : 0, i = t[5] ? parseInt(t[5], 10) : 0;
|
|
1516
1516
|
return {
|
|
1517
|
-
value: n * (r *
|
|
1517
|
+
value: n * (r * xa + s * Ra + i * Oa),
|
|
1518
1518
|
rest: a.slice(t[0].length)
|
|
1519
1519
|
};
|
|
1520
1520
|
}
|
|
@@ -2875,21 +2875,21 @@ function Dr(e, a, t, n) {
|
|
|
2875
2875
|
weekStartsOn: g,
|
|
2876
2876
|
locale: i
|
|
2877
2877
|
}, h = [new Cn(n == null ? void 0 : n.in, t)], w = a.match(hr).map((T) => {
|
|
2878
|
-
const
|
|
2879
|
-
if (
|
|
2880
|
-
const Y = pt[
|
|
2878
|
+
const x = T[0];
|
|
2879
|
+
if (x in pt) {
|
|
2880
|
+
const Y = pt[x];
|
|
2881
2881
|
return Y(T, i.formatLong);
|
|
2882
2882
|
}
|
|
2883
2883
|
return T;
|
|
2884
2884
|
}).join("").match(yr), _ = [];
|
|
2885
2885
|
for (let T of w) {
|
|
2886
2886
|
ca(T) && bt(T, a, e), la(T) && bt(T, a, e);
|
|
2887
|
-
const
|
|
2887
|
+
const x = T[0], Y = br[x];
|
|
2888
2888
|
if (Y) {
|
|
2889
2889
|
const { incompatibleTokens: le } = Y;
|
|
2890
2890
|
if (Array.isArray(le)) {
|
|
2891
2891
|
const ce = _.find(
|
|
2892
|
-
(de) => le.includes(de.token) || de.token ===
|
|
2892
|
+
(de) => le.includes(de.token) || de.token === x
|
|
2893
2893
|
);
|
|
2894
2894
|
if (ce)
|
|
2895
2895
|
throw new RangeError(
|
|
@@ -2899,7 +2899,7 @@ function Dr(e, a, t, n) {
|
|
|
2899
2899
|
throw new RangeError(
|
|
2900
2900
|
`The format string mustn't contain \`${T}\` and any other token at the same time`
|
|
2901
2901
|
);
|
|
2902
|
-
_.push({ token:
|
|
2902
|
+
_.push({ token: x, fullToken: T });
|
|
2903
2903
|
const se = Y.run(
|
|
2904
2904
|
e,
|
|
2905
2905
|
T,
|
|
@@ -2910,11 +2910,11 @@ function Dr(e, a, t, n) {
|
|
|
2910
2910
|
return r();
|
|
2911
2911
|
h.push(se.setter), e = se.rest;
|
|
2912
2912
|
} else {
|
|
2913
|
-
if (
|
|
2913
|
+
if (x.match(wr))
|
|
2914
2914
|
throw new RangeError(
|
|
2915
|
-
"Format string contains an unescaped latin alphabet character `" +
|
|
2915
|
+
"Format string contains an unescaped latin alphabet character `" + x + "`"
|
|
2916
2916
|
);
|
|
2917
|
-
if (T === "''" ? T = "'" :
|
|
2917
|
+
if (T === "''" ? T = "'" : x === "'" && (T = Pr(T)), e.indexOf(T) === 0)
|
|
2918
2918
|
e = e.slice(T.length);
|
|
2919
2919
|
else
|
|
2920
2920
|
return r();
|
|
@@ -2922,8 +2922,8 @@ function Dr(e, a, t, n) {
|
|
|
2922
2922
|
}
|
|
2923
2923
|
if (e.length > 0 && vr.test(e))
|
|
2924
2924
|
return r();
|
|
2925
|
-
const b = h.map((T) => T.priority).sort((T,
|
|
2926
|
-
(T) => h.filter((
|
|
2925
|
+
const b = h.map((T) => T.priority).sort((T, x) => x - T).filter((T, x, Y) => Y.indexOf(T) === x).map(
|
|
2926
|
+
(T) => h.filter((x) => x.priority === T).sort((x, Y) => Y.subPriority - x.subPriority)
|
|
2927
2927
|
).map((T) => T[0]);
|
|
2928
2928
|
let k = W(t, n == null ? void 0 : n.in);
|
|
2929
2929
|
if (isNaN(+k)) return r();
|
|
@@ -2931,8 +2931,8 @@ function Dr(e, a, t, n) {
|
|
|
2931
2931
|
for (const T of b) {
|
|
2932
2932
|
if (!T.validate(k, p))
|
|
2933
2933
|
return r();
|
|
2934
|
-
const
|
|
2935
|
-
Array.isArray(
|
|
2934
|
+
const x = T.set(k, C, p);
|
|
2935
|
+
Array.isArray(x) ? (k = x[0], Object.assign(C, x[1])) : k = x;
|
|
2936
2936
|
}
|
|
2937
2937
|
return k;
|
|
2938
2938
|
}
|
|
@@ -2940,8 +2940,8 @@ function Pr(e) {
|
|
|
2940
2940
|
return e.match(_r)[1].replace(Tr, "'");
|
|
2941
2941
|
}
|
|
2942
2942
|
function Ct(e, a, t) {
|
|
2943
|
-
const n = da(), r =
|
|
2944
|
-
return "formatToParts" in r ? Rr(r, a) :
|
|
2943
|
+
const n = da(), r = Or(e, t.timeZone, t.locale ?? n.locale);
|
|
2944
|
+
return "formatToParts" in r ? Rr(r, a) : xr(r, a);
|
|
2945
2945
|
}
|
|
2946
2946
|
function Rr(e, a) {
|
|
2947
2947
|
const t = e.formatToParts(a);
|
|
@@ -2949,11 +2949,11 @@ function Rr(e, a) {
|
|
|
2949
2949
|
if (t[n].type === "timeZoneName")
|
|
2950
2950
|
return t[n].value;
|
|
2951
2951
|
}
|
|
2952
|
-
function
|
|
2952
|
+
function xr(e, a) {
|
|
2953
2953
|
const t = e.format(a).replace(/\u200E/g, ""), n = / [\w-+ ]+$/.exec(t);
|
|
2954
2954
|
return n ? n[0].substr(1) : "";
|
|
2955
2955
|
}
|
|
2956
|
-
function
|
|
2956
|
+
function Or(e, a, t) {
|
|
2957
2957
|
return new Intl.DateTimeFormat(t ? [t.code, "en-US"] : void 0, {
|
|
2958
2958
|
timeZone: a,
|
|
2959
2959
|
timeZoneName: e
|
|
@@ -3103,7 +3103,7 @@ const zr = 60 * 1e3, Wr = {
|
|
|
3103
3103
|
// so this token always has the same output as `XX`
|
|
3104
3104
|
case "XXXX":
|
|
3105
3105
|
case "XX":
|
|
3106
|
-
return
|
|
3106
|
+
return Oe(n);
|
|
3107
3107
|
// Hours, minutes and optional seconds with `:` delimeter
|
|
3108
3108
|
// Note: neither ISO-8601 nor JavaScript supports seconds in timezone offsets
|
|
3109
3109
|
// so this token always has the same output as `XXX`
|
|
@@ -3111,7 +3111,7 @@ const zr = 60 * 1e3, Wr = {
|
|
|
3111
3111
|
case "XXX":
|
|
3112
3112
|
// Hours and minutes with `:` delimeter
|
|
3113
3113
|
default:
|
|
3114
|
-
return
|
|
3114
|
+
return Oe(n, ":");
|
|
3115
3115
|
}
|
|
3116
3116
|
},
|
|
3117
3117
|
// Timezone (ISO-8601. If offset is 0, output is `'+00:00'` or equivalent)
|
|
@@ -3126,7 +3126,7 @@ const zr = 60 * 1e3, Wr = {
|
|
|
3126
3126
|
// so this token always has the same output as `xx`
|
|
3127
3127
|
case "xxxx":
|
|
3128
3128
|
case "xx":
|
|
3129
|
-
return
|
|
3129
|
+
return Oe(n);
|
|
3130
3130
|
// Hours, minutes and optional seconds with `:` delimeter
|
|
3131
3131
|
// Note: neither ISO-8601 nor JavaScript supports seconds in timezone offsets
|
|
3132
3132
|
// so this token always has the same output as `xxx`
|
|
@@ -3134,7 +3134,7 @@ const zr = 60 * 1e3, Wr = {
|
|
|
3134
3134
|
case "xxx":
|
|
3135
3135
|
// Hours and minutes with `:` delimeter
|
|
3136
3136
|
default:
|
|
3137
|
-
return
|
|
3137
|
+
return Oe(n, ":");
|
|
3138
3138
|
}
|
|
3139
3139
|
},
|
|
3140
3140
|
// Timezone (GMT)
|
|
@@ -3149,7 +3149,7 @@ const zr = 60 * 1e3, Wr = {
|
|
|
3149
3149
|
// Long
|
|
3150
3150
|
case "OOOO":
|
|
3151
3151
|
default:
|
|
3152
|
-
return "GMT" +
|
|
3152
|
+
return "GMT" + Oe(n, ":");
|
|
3153
3153
|
}
|
|
3154
3154
|
},
|
|
3155
3155
|
// Timezone (specific non-location)
|
|
@@ -3180,12 +3180,12 @@ function $e(e, a) {
|
|
|
3180
3180
|
n = "0" + n;
|
|
3181
3181
|
return t + n;
|
|
3182
3182
|
}
|
|
3183
|
-
function
|
|
3183
|
+
function Oe(e, a = "") {
|
|
3184
3184
|
const t = e > 0 ? "-" : "+", n = Math.abs(e), r = $e(Math.floor(n / 60), 2), s = $e(Math.floor(n % 60), 2);
|
|
3185
3185
|
return t + r + a + s;
|
|
3186
3186
|
}
|
|
3187
3187
|
function zt(e, a) {
|
|
3188
|
-
return e % 60 === 0 ? (e > 0 ? "-" : "+") + $e(Math.abs(e) / 60, 2) :
|
|
3188
|
+
return e % 60 === 0 ? (e > 0 ? "-" : "+") + $e(Math.abs(e) / 60, 2) : Oe(e, a);
|
|
3189
3189
|
}
|
|
3190
3190
|
function Er(e, a = "") {
|
|
3191
3191
|
const t = e > 0 ? "-" : "+", n = Math.abs(e), r = Math.floor(n / 60), s = n % 60;
|
|
@@ -3381,7 +3381,7 @@ function Xr(e, a, t = {}) {
|
|
|
3381
3381
|
return g ? p.substring(0, d - 1) + p.substring(d + 1) : p;
|
|
3382
3382
|
}, a);
|
|
3383
3383
|
}
|
|
3384
|
-
return
|
|
3384
|
+
return xn(e, a, t);
|
|
3385
3385
|
}
|
|
3386
3386
|
function Zr(e, a, t) {
|
|
3387
3387
|
e = Ve(e, t);
|
|
@@ -3536,7 +3536,22 @@ const Kr = (e) => new TextEncoder().encode(e), es = (e) => {
|
|
|
3536
3536
|
const t = `0${a ? "." + "0".repeat(a) : ""}`, n = parseFloat(e);
|
|
3537
3537
|
return isNaN(n) || typeof e == "string" && /[^\d.,]/.test(e) ? `${t}` : `${n.toFixed(a).replace(/\B(?=(\d{3})+(?!\d))/g, ",")}`;
|
|
3538
3538
|
}, Se = (e, a, t) => {
|
|
3539
|
-
const n = [
|
|
3539
|
+
const n = [
|
|
3540
|
+
42563,
|
|
3541
|
+
42564,
|
|
3542
|
+
42565,
|
|
3543
|
+
42566,
|
|
3544
|
+
42567,
|
|
3545
|
+
42568,
|
|
3546
|
+
42569,
|
|
3547
|
+
42581,
|
|
3548
|
+
42651,
|
|
3549
|
+
42652,
|
|
3550
|
+
42653,
|
|
3551
|
+
42654,
|
|
3552
|
+
42655,
|
|
3553
|
+
42656
|
|
3554
|
+
], r = [42570, 42571, 42572, 42573];
|
|
3540
3555
|
let s = e;
|
|
3541
3556
|
return s ? (n.includes(a) || r.includes(a) ? (s = s.replace(".png", `_${a}.png`).toLowerCase(), s = `${s}?v=1`) : s = `${s}${t}`, s) : "";
|
|
3542
3557
|
};
|
|
@@ -3856,7 +3871,7 @@ const ys = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3856
3871
|
};
|
|
3857
3872
|
}, Rs = (e) => ({
|
|
3858
3873
|
list: e.mdGrade.map((a) => {
|
|
3859
|
-
var t, n, r, s, i, d, g, p, h, w, _, b, k, C, V, A, I, M, T,
|
|
3874
|
+
var t, n, r, s, i, d, g, p, h, w, _, b, k, C, V, A, I, M, T, x, Y, le, se, ce, de, Ce, Ne, te, Ye, nt, Te, ve, we, De, Le, Pe, rt, Re, st, qe, He, o, m, v, u, l, D, z, U, X, N, K, q, Z, H, J, Q, me, pe, Fe, be, Ge, f, xt;
|
|
3860
3875
|
return {
|
|
3861
3876
|
id: a.gradeindex,
|
|
3862
3877
|
is_current_level: !1,
|
|
@@ -3898,7 +3913,7 @@ const ys = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3898
3913
|
weekly: {
|
|
3899
3914
|
isShow: !0,
|
|
3900
3915
|
bonus: P(((M = (I = a.benefit) == null ? void 0 : I.weekly) == null ? void 0 : M.bonus) ?? "0"),
|
|
3901
|
-
bonus_name: ((
|
|
3916
|
+
bonus_name: ((x = (T = a.benefit) == null ? void 0 : T.weekly) == null ? void 0 : x.bonus_name) ?? "",
|
|
3902
3917
|
turnover: P(((le = (Y = a.benefit) == null ? void 0 : Y.weekly) == null ? void 0 : le.turnover) ?? "0"),
|
|
3903
3918
|
turnover_name: ((ce = (se = a.benefit) == null ? void 0 : se.weekly) == null ? void 0 : ce.turnover_name) ?? ""
|
|
3904
3919
|
},
|
|
@@ -3935,7 +3950,7 @@ const ys = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3935
3950
|
bonus: P(((me = (Q = a.benefit) == null ? void 0 : Q.salary_20th) == null ? void 0 : me.bonus) ?? "0"),
|
|
3936
3951
|
bonus_name: ((Fe = (pe = a.benefit) == null ? void 0 : pe.salary_20th) == null ? void 0 : Fe.bonus_name) ?? "",
|
|
3937
3952
|
turnover: P(((Ge = (be = a.benefit) == null ? void 0 : be.salary_20th) == null ? void 0 : Ge.turnover) ?? "0"),
|
|
3938
|
-
turnover_name: ((
|
|
3953
|
+
turnover_name: ((xt = (f = a.benefit) == null ? void 0 : f.salary_20th) == null ? void 0 : xt.turnover_name) ?? ""
|
|
3939
3954
|
}
|
|
3940
3955
|
}
|
|
3941
3956
|
};
|
|
@@ -4038,7 +4053,7 @@ const ys = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4038
4053
|
title: a.title,
|
|
4039
4054
|
content: a.content
|
|
4040
4055
|
})) ?? []
|
|
4041
|
-
}),
|
|
4056
|
+
}), xs = (e) => ({
|
|
4042
4057
|
category: e.category.map((a) => ({
|
|
4043
4058
|
id: a.catid,
|
|
4044
4059
|
name: a.name
|
|
@@ -4057,7 +4072,7 @@ const ys = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4057
4072
|
amountDisplay: ((r = a.promo_cash) == null ? void 0 : r.display) ?? ""
|
|
4058
4073
|
};
|
|
4059
4074
|
}).sort((a, t) => a.claimable && !t.claimable ? -1 : !a.claimable && t.claimable ? 1 : 0)
|
|
4060
|
-
}),
|
|
4075
|
+
}), Os = (e) => ({
|
|
4061
4076
|
month: {
|
|
4062
4077
|
status: ye(e.month)
|
|
4063
4078
|
},
|
|
@@ -4135,7 +4150,8 @@ const ys = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4135
4150
|
telegram: ((g = e.contact_us_setting) == null ? void 0 : g.telegram) ?? "",
|
|
4136
4151
|
website: ((p = e.contact_us_setting) == null ? void 0 : p.website) ?? "",
|
|
4137
4152
|
youtube: ((h = e.contact_us_setting) == null ? void 0 : h.youtube) ?? ""
|
|
4138
|
-
}
|
|
4153
|
+
},
|
|
4154
|
+
facebookPixelId: e.facebookpixelid ?? ""
|
|
4139
4155
|
};
|
|
4140
4156
|
}, Is = (e) => {
|
|
4141
4157
|
var a, t, n, r, s, i;
|
|
@@ -4767,7 +4783,7 @@ const Qs = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4767
4783
|
regex: a.regex,
|
|
4768
4784
|
showName: a.showname,
|
|
4769
4785
|
inputHelper: a.inputHelper
|
|
4770
|
-
})) : [], Ro = (e) => S(e),
|
|
4786
|
+
})) : [], Ro = (e) => S(e), xo = (e) => e, Oo = (e) => {
|
|
4771
4787
|
var a;
|
|
4772
4788
|
return {
|
|
4773
4789
|
status: e.status == 1,
|
|
@@ -5048,7 +5064,7 @@ const ri = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5048
5064
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
5049
5065
|
tokenAmount: e.token_amount
|
|
5050
5066
|
}), pi = (e) => S(e);
|
|
5051
|
-
var Pt = /* @__PURE__ */ ((e) => (e.vipcalculation = "vipcalculation", e.livechat = "livechat", e.extralivechat = "extralivechat", e.mobilevalidate = "mobilevalidate", e.withdrawtac = "withdrawtac", e.imageDomain = "imagedomain", e.withdrawalCode = "withdrawalcode", e.withdrawAlipay = "withdrawalipay", e.crypto = "crypto", e.loginCaptcha = "logincaptcha", e.registerCaptcha = "registercaptcha", e.telegramAuthDomain = "telegramauthdomain", e.telegramBotId = "telegrambotid", e.registerwa = "registerwa", e.forgetUser = "forgetuser", e.contactUsSetting = "contact_us_setting", e))(Pt || {});
|
|
5067
|
+
var Pt = /* @__PURE__ */ ((e) => (e.vipcalculation = "vipcalculation", e.livechat = "livechat", e.extralivechat = "extralivechat", e.mobilevalidate = "mobilevalidate", e.withdrawtac = "withdrawtac", e.imageDomain = "imagedomain", e.withdrawalCode = "withdrawalcode", e.withdrawAlipay = "withdrawalipay", e.crypto = "crypto", e.loginCaptcha = "logincaptcha", e.registerCaptcha = "registercaptcha", e.telegramAuthDomain = "telegramauthdomain", e.telegramBotId = "telegrambotid", e.registerwa = "registerwa", e.forgetUser = "forgetuser", e.contactUsSetting = "contact_us_setting", e.facebookPixelId = "facebookpixelid", e))(Pt || {});
|
|
5052
5068
|
const bi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
5053
5069
|
__proto__: null,
|
|
5054
5070
|
SettingCategory: Pt
|
|
@@ -5142,14 +5158,14 @@ const bi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5142
5158
|
percentage: e.data ? e.data.percentage ?? 0 : 0,
|
|
5143
5159
|
incentive: e.data ? e.data.incentive : 0,
|
|
5144
5160
|
claimable: 0
|
|
5145
|
-
}),
|
|
5161
|
+
}), xi = (e) => {
|
|
5146
5162
|
let a = "0";
|
|
5147
5163
|
return e.data && (a = e.data.incentive), {
|
|
5148
5164
|
status: e.status,
|
|
5149
5165
|
message: e.msg ?? "",
|
|
5150
5166
|
amount: a
|
|
5151
5167
|
};
|
|
5152
|
-
},
|
|
5168
|
+
}, Oi = (e) => {
|
|
5153
5169
|
let a = "0";
|
|
5154
5170
|
return e.data && (a = e.data.incentive), {
|
|
5155
5171
|
status: e.status,
|
|
@@ -5626,7 +5642,7 @@ const du = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5626
5642
|
promoAmount: e.data.promo_amount ?? "0"
|
|
5627
5643
|
}
|
|
5628
5644
|
}, fu = async (e) => {
|
|
5629
|
-
var a, t, n, r, s, i, d, g, p, h, w, _, b, k, C, V, A, I, M, T,
|
|
5645
|
+
var a, t, n, r, s, i, d, g, p, h, w, _, b, k, C, V, A, I, M, T, x, Y, le, se, ce, de, Ce, Ne;
|
|
5630
5646
|
try {
|
|
5631
5647
|
e.findIndex((m) => m.name === c.vipList) !== -1 && e.push(
|
|
5632
5648
|
{
|
|
@@ -5777,7 +5793,7 @@ const du = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5777
5793
|
o.result[u] = Rs(l);
|
|
5778
5794
|
break;
|
|
5779
5795
|
case c.vipBonus:
|
|
5780
|
-
o.result[u] =
|
|
5796
|
+
o.result[u] = Os(l);
|
|
5781
5797
|
break;
|
|
5782
5798
|
case c.vipFieldStatus:
|
|
5783
5799
|
o.result[u] = ks(l);
|
|
@@ -5786,7 +5802,7 @@ const du = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5786
5802
|
o.result[u] = Ms(l);
|
|
5787
5803
|
break;
|
|
5788
5804
|
case c.promotion:
|
|
5789
|
-
o.result[u] =
|
|
5805
|
+
o.result[u] = xs(l);
|
|
5790
5806
|
break;
|
|
5791
5807
|
case c.getSetting:
|
|
5792
5808
|
o.result[u] = Ss(l);
|
|
@@ -5983,10 +5999,10 @@ const du = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5983
5999
|
);
|
|
5984
6000
|
break;
|
|
5985
6001
|
case c.readMail:
|
|
5986
|
-
o.result[u] =
|
|
6002
|
+
o.result[u] = xo(l);
|
|
5987
6003
|
break;
|
|
5988
6004
|
case c.checkRedPacketValidate:
|
|
5989
|
-
o.result[u] =
|
|
6005
|
+
o.result[u] = Oo(
|
|
5990
6006
|
l
|
|
5991
6007
|
);
|
|
5992
6008
|
break;
|
|
@@ -6209,12 +6225,12 @@ const du = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6209
6225
|
);
|
|
6210
6226
|
break;
|
|
6211
6227
|
case c.getIncentiveRebate:
|
|
6212
|
-
o.result[u] =
|
|
6228
|
+
o.result[u] = xi(
|
|
6213
6229
|
l
|
|
6214
6230
|
);
|
|
6215
6231
|
break;
|
|
6216
6232
|
case c.claimIncentiveRebate:
|
|
6217
|
-
o.result[u] =
|
|
6233
|
+
o.result[u] = Oi(
|
|
6218
6234
|
l
|
|
6219
6235
|
);
|
|
6220
6236
|
break;
|
|
@@ -6659,7 +6675,7 @@ const du = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6659
6675
|
}
|
|
6660
6676
|
if (c.fishGameList in o.result && ((T = o.result) != null && T.fishGameList)) {
|
|
6661
6677
|
const m = o.result.fishGameList;
|
|
6662
|
-
if (JSON.parse(e[we].query).pid && c.getPlatformTurnoverRate in o.result && (
|
|
6678
|
+
if (JSON.parse(e[we].query).pid && c.getPlatformTurnoverRate in o.result && (x = o.result) != null && x.getPlatformTurnoverRate) {
|
|
6663
6679
|
const v = o.result.getPlatformTurnoverRate;
|
|
6664
6680
|
o.result.fishGameList = m.data.map((u) => {
|
|
6665
6681
|
const l = v.find(
|
|
@@ -6883,7 +6899,7 @@ const du = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6883
6899
|
status: !1,
|
|
6884
6900
|
message: ""
|
|
6885
6901
|
}
|
|
6886
|
-
},
|
|
6902
|
+
}, xu = async (e, a) => {
|
|
6887
6903
|
let t = {
|
|
6888
6904
|
status: 200,
|
|
6889
6905
|
message: "",
|
|
@@ -6908,9 +6924,9 @@ const du = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6908
6924
|
};
|
|
6909
6925
|
}
|
|
6910
6926
|
return t;
|
|
6911
|
-
},
|
|
6927
|
+
}, Ou = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6912
6928
|
__proto__: null,
|
|
6913
|
-
call:
|
|
6929
|
+
call: xu
|
|
6914
6930
|
}, Symbol.toStringTag, { value: "Module" })), ku = async (e, a, t, n, r) => {
|
|
6915
6931
|
let s = {
|
|
6916
6932
|
status: 200,
|
|
@@ -7094,10 +7110,10 @@ const hl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
7094
7110
|
__proto__: null
|
|
7095
7111
|
}, Symbol.toStringTag, { value: "Module" })), Rl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7096
7112
|
__proto__: null
|
|
7097
|
-
}, Symbol.toStringTag, { value: "Module" })), Ol = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7098
|
-
__proto__: null
|
|
7099
7113
|
}, Symbol.toStringTag, { value: "Module" })), xl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7100
7114
|
__proto__: null
|
|
7115
|
+
}, Symbol.toStringTag, { value: "Module" })), Ol = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7116
|
+
__proto__: null
|
|
7101
7117
|
}, Symbol.toStringTag, { value: "Module" })), kl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7102
7118
|
__proto__: null
|
|
7103
7119
|
}, Symbol.toStringTag, { value: "Module" })), Ml = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -7202,10 +7218,10 @@ const hl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
7202
7218
|
__proto__: null
|
|
7203
7219
|
}, Symbol.toStringTag, { value: "Module" })), Rc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7204
7220
|
__proto__: null
|
|
7205
|
-
}, Symbol.toStringTag, { value: "Module" })), Oc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7206
|
-
__proto__: null
|
|
7207
7221
|
}, Symbol.toStringTag, { value: "Module" })), xc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7208
7222
|
__proto__: null
|
|
7223
|
+
}, Symbol.toStringTag, { value: "Module" })), Oc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7224
|
+
__proto__: null
|
|
7209
7225
|
}, Symbol.toStringTag, { value: "Module" })), kc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
7210
7226
|
__proto__: null
|
|
7211
7227
|
}, Symbol.toStringTag, { value: "Module" })), Mc = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -7248,7 +7264,7 @@ const hl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
7248
7264
|
jackpotDataApi: vu,
|
|
7249
7265
|
logoutApi: Du,
|
|
7250
7266
|
autoRegisterApi: Ru,
|
|
7251
|
-
setLocaleApi:
|
|
7267
|
+
setLocaleApi: Ou,
|
|
7252
7268
|
loadMatchApi: Mu,
|
|
7253
7269
|
getMaintenanceModeApi: Iu,
|
|
7254
7270
|
apiType: bs,
|
|
@@ -7306,8 +7322,8 @@ const hl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
7306
7322
|
getUserProfileType: Dl,
|
|
7307
7323
|
requestTacCodeType: Pl,
|
|
7308
7324
|
getUsernameByReferType: Rl,
|
|
7309
|
-
applyPromoType:
|
|
7310
|
-
applySignInType:
|
|
7325
|
+
applyPromoType: xl,
|
|
7326
|
+
applySignInType: Ol,
|
|
7311
7327
|
applyRedPacketType: kl,
|
|
7312
7328
|
getCountryType: Ml,
|
|
7313
7329
|
submitGiftCodeType: Kt,
|
|
@@ -7365,8 +7381,8 @@ const hl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
7365
7381
|
getAccumulateDepositClaimType: Dc,
|
|
7366
7382
|
rebateRefundSettingType: Pc,
|
|
7367
7383
|
getASCMatchCountType: Rc,
|
|
7368
|
-
updateDeviceTokenType:
|
|
7369
|
-
getCryptoListType:
|
|
7384
|
+
updateDeviceTokenType: xc,
|
|
7385
|
+
getCryptoListType: Oc,
|
|
7370
7386
|
getCryptoAddressType: kc,
|
|
7371
7387
|
getPopoutItemType: Mc,
|
|
7372
7388
|
getTurnOverRewardSettingMultType: Sc,
|
|
@@ -7395,10 +7411,10 @@ export {
|
|
|
7395
7411
|
pu as api,
|
|
7396
7412
|
bs as apiType,
|
|
7397
7413
|
Ec as applyGoldEggType,
|
|
7398
|
-
|
|
7414
|
+
xl as applyPromoType,
|
|
7399
7415
|
kl as applyRedPacketType,
|
|
7400
7416
|
oc as applyReliefFund,
|
|
7401
|
-
|
|
7417
|
+
Ol as applySignInType,
|
|
7402
7418
|
Yu as applyVipBonusType,
|
|
7403
7419
|
dc as applyWeekCard,
|
|
7404
7420
|
Ru as autoRegisterApi,
|
|
@@ -7426,7 +7442,7 @@ export {
|
|
|
7426
7442
|
Gl as getActiveProductType,
|
|
7427
7443
|
Ml as getCountryType,
|
|
7428
7444
|
kc as getCryptoAddressType,
|
|
7429
|
-
|
|
7445
|
+
Oc as getCryptoListType,
|
|
7430
7446
|
ol as getDepositPromotionType,
|
|
7431
7447
|
Vu as getEventListType,
|
|
7432
7448
|
Au as getEventTokenType,
|
|
@@ -7502,7 +7518,7 @@ export {
|
|
|
7502
7518
|
zl as requestWithdrawTacType,
|
|
7503
7519
|
Wl as requestWithdrawalCodeType,
|
|
7504
7520
|
ac as searchNumberHistoryType,
|
|
7505
|
-
|
|
7521
|
+
Ou as setLocaleApi,
|
|
7506
7522
|
$l as signInRecordType,
|
|
7507
7523
|
Ul as signInViewInfoType,
|
|
7508
7524
|
Ju as slotGameListType,
|
|
@@ -7527,7 +7543,7 @@ export {
|
|
|
7527
7543
|
gc as transferType,
|
|
7528
7544
|
tc as unbindUserDeviceType,
|
|
7529
7545
|
Wu as upcomingMatchType,
|
|
7530
|
-
|
|
7546
|
+
xc as updateDeviceTokenType,
|
|
7531
7547
|
Tc as updateFavouriteGameType,
|
|
7532
7548
|
Tl as updateProfilePictureType,
|
|
7533
7549
|
Fu as vipListType,
|