60p82u21t54k 0.1.32 → 0.1.34
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 +96 -96
- package/dist/60p82u21t54k.umd.js +1 -1
- package/dist/api/api.d.ts.map +1 -1
- package/dist/model/getFourDimensionData/getGetFourDimensionDataResponse.d.ts.map +1 -1
- package/dist/model/rename/renameApi.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
|
@@ -346,7 +346,7 @@ const Sn = {
|
|
|
346
346
|
evening: "evening",
|
|
347
347
|
night: "night"
|
|
348
348
|
}
|
|
349
|
-
},
|
|
349
|
+
}, Fn = {
|
|
350
350
|
narrow: {
|
|
351
351
|
am: "a",
|
|
352
352
|
pm: "p",
|
|
@@ -377,7 +377,7 @@ const Sn = {
|
|
|
377
377
|
evening: "in the evening",
|
|
378
378
|
night: "at night"
|
|
379
379
|
}
|
|
380
|
-
},
|
|
380
|
+
}, Ln = (e, n) => {
|
|
381
381
|
const t = Number(e), r = t % 100;
|
|
382
382
|
if (r > 20 || r < 10)
|
|
383
383
|
switch (r % 10) {
|
|
@@ -390,7 +390,7 @@ const Sn = {
|
|
|
390
390
|
}
|
|
391
391
|
return t + "th";
|
|
392
392
|
}, Gn = {
|
|
393
|
-
ordinalNumber:
|
|
393
|
+
ordinalNumber: Ln,
|
|
394
394
|
era: Pe({
|
|
395
395
|
values: Sn,
|
|
396
396
|
defaultWidth: "wide"
|
|
@@ -411,7 +411,7 @@ const Sn = {
|
|
|
411
411
|
dayPeriod: Pe({
|
|
412
412
|
values: jn,
|
|
413
413
|
defaultWidth: "wide",
|
|
414
|
-
formattingValues:
|
|
414
|
+
formattingValues: Fn,
|
|
415
415
|
defaultFormattingWidth: "wide"
|
|
416
416
|
})
|
|
417
417
|
};
|
|
@@ -1362,7 +1362,7 @@ class Tr extends M {
|
|
|
1362
1362
|
return r.era = a, t.setFullYear(a, 0, 1), t.setHours(0, 0, 0, 0), t;
|
|
1363
1363
|
}
|
|
1364
1364
|
}
|
|
1365
|
-
const
|
|
1365
|
+
const F = {
|
|
1366
1366
|
month: /^(1[0-2]|0?\d)/,
|
|
1367
1367
|
// 0 to 12
|
|
1368
1368
|
date: /^(3[0-1]|[0-2]?\d)/,
|
|
@@ -1407,7 +1407,7 @@ const L = {
|
|
|
1407
1407
|
extended: /^([+-])(\d{2}):(\d{2})|Z/,
|
|
1408
1408
|
extendedOptionalSeconds: /^([+-])(\d{2}):(\d{2})(:(\d{2}))?|Z/
|
|
1409
1409
|
};
|
|
1410
|
-
function
|
|
1410
|
+
function L(e, n) {
|
|
1411
1411
|
return e && {
|
|
1412
1412
|
value: n(e.value),
|
|
1413
1413
|
rest: e.rest
|
|
@@ -1436,18 +1436,18 @@ function ee(e, n) {
|
|
|
1436
1436
|
};
|
|
1437
1437
|
}
|
|
1438
1438
|
function Kt(e) {
|
|
1439
|
-
return C(
|
|
1439
|
+
return C(F.anyDigitsSigned, e);
|
|
1440
1440
|
}
|
|
1441
1441
|
function N(e, n) {
|
|
1442
1442
|
switch (e) {
|
|
1443
1443
|
case 1:
|
|
1444
|
-
return C(
|
|
1444
|
+
return C(F.singleDigit, n);
|
|
1445
1445
|
case 2:
|
|
1446
|
-
return C(
|
|
1446
|
+
return C(F.twoDigits, n);
|
|
1447
1447
|
case 3:
|
|
1448
|
-
return C(
|
|
1448
|
+
return C(F.threeDigits, n);
|
|
1449
1449
|
case 4:
|
|
1450
|
-
return C(
|
|
1450
|
+
return C(F.fourDigits, n);
|
|
1451
1451
|
default:
|
|
1452
1452
|
return C(new RegExp("^\\d{1," + e + "}"), n);
|
|
1453
1453
|
}
|
|
@@ -1455,13 +1455,13 @@ function N(e, n) {
|
|
|
1455
1455
|
function Ie(e, n) {
|
|
1456
1456
|
switch (e) {
|
|
1457
1457
|
case 1:
|
|
1458
|
-
return C(
|
|
1458
|
+
return C(F.singleDigitSigned, n);
|
|
1459
1459
|
case 2:
|
|
1460
|
-
return C(
|
|
1460
|
+
return C(F.twoDigitsSigned, n);
|
|
1461
1461
|
case 3:
|
|
1462
|
-
return C(
|
|
1462
|
+
return C(F.threeDigitsSigned, n);
|
|
1463
1463
|
case 4:
|
|
1464
|
-
return C(
|
|
1464
|
+
return C(F.fourDigitsSigned, n);
|
|
1465
1465
|
default:
|
|
1466
1466
|
return C(new RegExp("^-?\\d{1," + e + "}"), n);
|
|
1467
1467
|
}
|
|
@@ -1510,16 +1510,16 @@ class vr extends M {
|
|
|
1510
1510
|
});
|
|
1511
1511
|
switch (r) {
|
|
1512
1512
|
case "y":
|
|
1513
|
-
return
|
|
1513
|
+
return L(N(4, t), s);
|
|
1514
1514
|
case "yo":
|
|
1515
|
-
return
|
|
1515
|
+
return L(
|
|
1516
1516
|
a.ordinalNumber(t, {
|
|
1517
1517
|
unit: "year"
|
|
1518
1518
|
}),
|
|
1519
1519
|
s
|
|
1520
1520
|
);
|
|
1521
1521
|
default:
|
|
1522
|
-
return
|
|
1522
|
+
return L(N(r.length, t), s);
|
|
1523
1523
|
}
|
|
1524
1524
|
}
|
|
1525
1525
|
validate(t, r) {
|
|
@@ -1565,16 +1565,16 @@ class wr extends M {
|
|
|
1565
1565
|
});
|
|
1566
1566
|
switch (r) {
|
|
1567
1567
|
case "Y":
|
|
1568
|
-
return
|
|
1568
|
+
return L(N(4, t), s);
|
|
1569
1569
|
case "Yo":
|
|
1570
|
-
return
|
|
1570
|
+
return L(
|
|
1571
1571
|
a.ordinalNumber(t, {
|
|
1572
1572
|
unit: "year"
|
|
1573
1573
|
}),
|
|
1574
1574
|
s
|
|
1575
1575
|
);
|
|
1576
1576
|
default:
|
|
1577
|
-
return
|
|
1577
|
+
return L(N(r.length, t), s);
|
|
1578
1578
|
}
|
|
1579
1579
|
}
|
|
1580
1580
|
validate(t, r) {
|
|
@@ -1788,14 +1788,14 @@ class Or extends M {
|
|
|
1788
1788
|
const s = (o) => o - 1;
|
|
1789
1789
|
switch (r) {
|
|
1790
1790
|
case "M":
|
|
1791
|
-
return
|
|
1792
|
-
C(
|
|
1791
|
+
return L(
|
|
1792
|
+
C(F.month, t),
|
|
1793
1793
|
s
|
|
1794
1794
|
);
|
|
1795
1795
|
case "MM":
|
|
1796
|
-
return
|
|
1796
|
+
return L(N(2, t), s);
|
|
1797
1797
|
case "Mo":
|
|
1798
|
-
return
|
|
1798
|
+
return L(
|
|
1799
1799
|
a.ordinalNumber(t, {
|
|
1800
1800
|
unit: "month"
|
|
1801
1801
|
}),
|
|
@@ -1850,14 +1850,14 @@ class kr extends M {
|
|
|
1850
1850
|
const s = (o) => o - 1;
|
|
1851
1851
|
switch (r) {
|
|
1852
1852
|
case "L":
|
|
1853
|
-
return
|
|
1854
|
-
C(
|
|
1853
|
+
return L(
|
|
1854
|
+
C(F.month, t),
|
|
1855
1855
|
s
|
|
1856
1856
|
);
|
|
1857
1857
|
case "LL":
|
|
1858
|
-
return
|
|
1858
|
+
return L(N(2, t), s);
|
|
1859
1859
|
case "Lo":
|
|
1860
|
-
return
|
|
1860
|
+
return L(
|
|
1861
1861
|
a.ordinalNumber(t, {
|
|
1862
1862
|
unit: "month"
|
|
1863
1863
|
}),
|
|
@@ -1915,7 +1915,7 @@ class Sr extends M {
|
|
|
1915
1915
|
parse(t, r, a) {
|
|
1916
1916
|
switch (r) {
|
|
1917
1917
|
case "w":
|
|
1918
|
-
return C(
|
|
1918
|
+
return C(F.week, t);
|
|
1919
1919
|
case "wo":
|
|
1920
1920
|
return a.ordinalNumber(t, { unit: "week" });
|
|
1921
1921
|
default:
|
|
@@ -1957,7 +1957,7 @@ class Cr extends M {
|
|
|
1957
1957
|
parse(t, r, a) {
|
|
1958
1958
|
switch (r) {
|
|
1959
1959
|
case "I":
|
|
1960
|
-
return C(
|
|
1960
|
+
return C(F.week, t);
|
|
1961
1961
|
case "Io":
|
|
1962
1962
|
return a.ordinalNumber(t, { unit: "week" });
|
|
1963
1963
|
default:
|
|
@@ -1985,7 +1985,7 @@ const Nr = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], jr = [
|
|
|
1985
1985
|
30,
|
|
1986
1986
|
31
|
|
1987
1987
|
];
|
|
1988
|
-
class
|
|
1988
|
+
class Fr extends M {
|
|
1989
1989
|
constructor() {
|
|
1990
1990
|
super(...arguments);
|
|
1991
1991
|
h(this, "priority", 90);
|
|
@@ -2008,7 +2008,7 @@ class Lr extends M {
|
|
|
2008
2008
|
parse(t, r, a) {
|
|
2009
2009
|
switch (r) {
|
|
2010
2010
|
case "d":
|
|
2011
|
-
return C(
|
|
2011
|
+
return C(F.date, t);
|
|
2012
2012
|
case "do":
|
|
2013
2013
|
return a.ordinalNumber(t, { unit: "date" });
|
|
2014
2014
|
default:
|
|
@@ -2023,7 +2023,7 @@ class Lr extends M {
|
|
|
2023
2023
|
return t.setDate(a), t.setHours(0, 0, 0, 0), t;
|
|
2024
2024
|
}
|
|
2025
2025
|
}
|
|
2026
|
-
class
|
|
2026
|
+
class Lr extends M {
|
|
2027
2027
|
constructor() {
|
|
2028
2028
|
super(...arguments);
|
|
2029
2029
|
h(this, "priority", 90);
|
|
@@ -2050,7 +2050,7 @@ class Fr extends M {
|
|
|
2050
2050
|
switch (r) {
|
|
2051
2051
|
case "D":
|
|
2052
2052
|
case "DD":
|
|
2053
|
-
return C(
|
|
2053
|
+
return C(F.dayOfYear, t);
|
|
2054
2054
|
case "Do":
|
|
2055
2055
|
return a.ordinalNumber(t, { unit: "date" });
|
|
2056
2056
|
default:
|
|
@@ -2137,9 +2137,9 @@ class zr extends M {
|
|
|
2137
2137
|
switch (r) {
|
|
2138
2138
|
case "e":
|
|
2139
2139
|
case "ee":
|
|
2140
|
-
return
|
|
2140
|
+
return L(N(r.length, t), o);
|
|
2141
2141
|
case "eo":
|
|
2142
|
-
return
|
|
2142
|
+
return L(
|
|
2143
2143
|
a.ordinalNumber(t, {
|
|
2144
2144
|
unit: "day"
|
|
2145
2145
|
}),
|
|
@@ -2202,9 +2202,9 @@ class Wr extends M {
|
|
|
2202
2202
|
switch (r) {
|
|
2203
2203
|
case "c":
|
|
2204
2204
|
case "cc":
|
|
2205
|
-
return
|
|
2205
|
+
return L(N(r.length, t), o);
|
|
2206
2206
|
case "co":
|
|
2207
|
-
return
|
|
2207
|
+
return L(
|
|
2208
2208
|
a.ordinalNumber(t, {
|
|
2209
2209
|
unit: "day"
|
|
2210
2210
|
}),
|
|
@@ -2272,7 +2272,7 @@ class qr extends M {
|
|
|
2272
2272
|
case "io":
|
|
2273
2273
|
return a.ordinalNumber(t, { unit: "day" });
|
|
2274
2274
|
case "iii":
|
|
2275
|
-
return
|
|
2275
|
+
return L(
|
|
2276
2276
|
a.day(t, {
|
|
2277
2277
|
width: "abbreviated",
|
|
2278
2278
|
context: "formatting"
|
|
@@ -2286,7 +2286,7 @@ class qr extends M {
|
|
|
2286
2286
|
s
|
|
2287
2287
|
);
|
|
2288
2288
|
case "iiiii":
|
|
2289
|
-
return
|
|
2289
|
+
return L(
|
|
2290
2290
|
a.day(t, {
|
|
2291
2291
|
width: "narrow",
|
|
2292
2292
|
context: "formatting"
|
|
@@ -2294,7 +2294,7 @@ class qr extends M {
|
|
|
2294
2294
|
s
|
|
2295
2295
|
);
|
|
2296
2296
|
case "iiiiii":
|
|
2297
|
-
return
|
|
2297
|
+
return L(
|
|
2298
2298
|
a.day(t, {
|
|
2299
2299
|
width: "short",
|
|
2300
2300
|
context: "formatting"
|
|
@@ -2306,7 +2306,7 @@ class qr extends M {
|
|
|
2306
2306
|
);
|
|
2307
2307
|
case "iiii":
|
|
2308
2308
|
default:
|
|
2309
|
-
return
|
|
2309
|
+
return L(
|
|
2310
2310
|
a.day(t, {
|
|
2311
2311
|
width: "wide",
|
|
2312
2312
|
context: "formatting"
|
|
@@ -2463,7 +2463,7 @@ class Ur extends M {
|
|
|
2463
2463
|
parse(t, r, a) {
|
|
2464
2464
|
switch (r) {
|
|
2465
2465
|
case "h":
|
|
2466
|
-
return C(
|
|
2466
|
+
return C(F.hour12h, t);
|
|
2467
2467
|
case "ho":
|
|
2468
2468
|
return a.ordinalNumber(t, { unit: "hour" });
|
|
2469
2469
|
default:
|
|
@@ -2487,7 +2487,7 @@ class $r extends M {
|
|
|
2487
2487
|
parse(t, r, a) {
|
|
2488
2488
|
switch (r) {
|
|
2489
2489
|
case "H":
|
|
2490
|
-
return C(
|
|
2490
|
+
return C(F.hour23h, t);
|
|
2491
2491
|
case "Ho":
|
|
2492
2492
|
return a.ordinalNumber(t, { unit: "hour" });
|
|
2493
2493
|
default:
|
|
@@ -2510,7 +2510,7 @@ class Vr extends M {
|
|
|
2510
2510
|
parse(t, r, a) {
|
|
2511
2511
|
switch (r) {
|
|
2512
2512
|
case "K":
|
|
2513
|
-
return C(
|
|
2513
|
+
return C(F.hour11h, t);
|
|
2514
2514
|
case "Ko":
|
|
2515
2515
|
return a.ordinalNumber(t, { unit: "hour" });
|
|
2516
2516
|
default:
|
|
@@ -2533,7 +2533,7 @@ class Ar extends M {
|
|
|
2533
2533
|
parse(t, r, a) {
|
|
2534
2534
|
switch (r) {
|
|
2535
2535
|
case "k":
|
|
2536
|
-
return C(
|
|
2536
|
+
return C(F.hour24h, t);
|
|
2537
2537
|
case "ko":
|
|
2538
2538
|
return a.ordinalNumber(t, { unit: "hour" });
|
|
2539
2539
|
default:
|
|
@@ -2557,7 +2557,7 @@ class Qr extends M {
|
|
|
2557
2557
|
parse(t, r, a) {
|
|
2558
2558
|
switch (r) {
|
|
2559
2559
|
case "m":
|
|
2560
|
-
return C(
|
|
2560
|
+
return C(F.minute, t);
|
|
2561
2561
|
case "mo":
|
|
2562
2562
|
return a.ordinalNumber(t, { unit: "minute" });
|
|
2563
2563
|
default:
|
|
@@ -2580,7 +2580,7 @@ class Xr extends M {
|
|
|
2580
2580
|
parse(t, r, a) {
|
|
2581
2581
|
switch (r) {
|
|
2582
2582
|
case "s":
|
|
2583
|
-
return C(
|
|
2583
|
+
return C(F.second, t);
|
|
2584
2584
|
case "so":
|
|
2585
2585
|
return a.ordinalNumber(t, { unit: "second" });
|
|
2586
2586
|
default:
|
|
@@ -2602,7 +2602,7 @@ class Zr extends M {
|
|
|
2602
2602
|
}
|
|
2603
2603
|
parse(t, r) {
|
|
2604
2604
|
const a = (s) => Math.trunc(s * Math.pow(10, -r.length + 3));
|
|
2605
|
-
return
|
|
2605
|
+
return L(N(r.length, t), a);
|
|
2606
2606
|
}
|
|
2607
2607
|
set(t, r, a) {
|
|
2608
2608
|
return t.setMilliseconds(a), t;
|
|
@@ -2720,8 +2720,8 @@ const na = {
|
|
|
2720
2720
|
L: new kr(),
|
|
2721
2721
|
w: new Sr(),
|
|
2722
2722
|
I: new Cr(),
|
|
2723
|
-
d: new
|
|
2724
|
-
D: new
|
|
2723
|
+
d: new Fr(),
|
|
2724
|
+
D: new Lr(),
|
|
2725
2725
|
E: new Gr(),
|
|
2726
2726
|
e: new zr(),
|
|
2727
2727
|
c: new Wr(),
|
|
@@ -2910,7 +2910,7 @@ const Pt = 36e5, Ta = 6e4, Ye = {
|
|
|
2910
2910
|
timezoneHH: /^([+-]\d{2})$/,
|
|
2911
2911
|
timezoneHHMM: /^([+-])(\d{2}):?(\d{2})$/
|
|
2912
2912
|
};
|
|
2913
|
-
function
|
|
2913
|
+
function Fe(e, n, t) {
|
|
2914
2914
|
if (!e)
|
|
2915
2915
|
return 0;
|
|
2916
2916
|
let r = Ye.timezoneZ.exec(e);
|
|
@@ -3022,7 +3022,7 @@ const Pa = 60 * 1e3, Da = {
|
|
|
3022
3022
|
}
|
|
3023
3023
|
};
|
|
3024
3024
|
function qe(e, n) {
|
|
3025
|
-
const t = e ?
|
|
3025
|
+
const t = e ? Fe(e, n, !0) / Pa : (n == null ? void 0 : n.getTimezoneOffset()) ?? 0;
|
|
3026
3026
|
if (Number.isNaN(t))
|
|
3027
3027
|
throw new RangeError("Invalid time zone specified: " + e);
|
|
3028
3028
|
return t;
|
|
@@ -3107,7 +3107,7 @@ function Ne(e, n = {}) {
|
|
|
3107
3107
|
if (r.time && (p = Ia(r.time), p === null || isNaN(p)))
|
|
3108
3108
|
return /* @__PURE__ */ new Date(NaN);
|
|
3109
3109
|
if (r.timeZone || n.timeZone) {
|
|
3110
|
-
if (f =
|
|
3110
|
+
if (f = Fe(r.timeZone || n.timeZone, new Date(d + p)), isNaN(f))
|
|
3111
3111
|
return /* @__PURE__ */ new Date(NaN);
|
|
3112
3112
|
} else
|
|
3113
3113
|
f = kt(new Date(d + p)), f = kt(new Date(d + p + f));
|
|
@@ -3223,10 +3223,10 @@ function Ct(e, n) {
|
|
|
3223
3223
|
function Be(e, n, t) {
|
|
3224
3224
|
return !(e < 0 || e >= 25 || n != null && (n < 0 || n >= 60) || t != null && (t < 0 || t >= 60));
|
|
3225
3225
|
}
|
|
3226
|
-
const
|
|
3227
|
-
function
|
|
3226
|
+
const Fa = /([xXOz]+)|''|'(''|[^'])+('|$)/g;
|
|
3227
|
+
function La(e, n, t = {}) {
|
|
3228
3228
|
n = String(n);
|
|
3229
|
-
const r = n.match(
|
|
3229
|
+
const r = n.match(Fa);
|
|
3230
3230
|
if (r) {
|
|
3231
3231
|
const a = Ne(t.originalDate || e, t);
|
|
3232
3232
|
n = r.reduce(function(s, o) {
|
|
@@ -3240,14 +3240,14 @@ function Fa(e, n, t = {}) {
|
|
|
3240
3240
|
}
|
|
3241
3241
|
function Ga(e, n, t) {
|
|
3242
3242
|
e = Ne(e, t);
|
|
3243
|
-
const r =
|
|
3243
|
+
const r = Fe(n, e, !0), a = new Date(e.getTime() - r), s = /* @__PURE__ */ new Date(0);
|
|
3244
3244
|
return s.setFullYear(a.getUTCFullYear(), a.getUTCMonth(), a.getUTCDate()), s.setHours(a.getUTCHours(), a.getUTCMinutes(), a.getUTCSeconds(), a.getUTCMilliseconds()), s;
|
|
3245
3245
|
}
|
|
3246
3246
|
function za(e, n, t) {
|
|
3247
3247
|
if (typeof e == "string" && !e.match(nn))
|
|
3248
3248
|
return Ne(e, { ...t, timeZone: n });
|
|
3249
3249
|
e = Ne(e, t);
|
|
3250
|
-
const r = Je(e.getFullYear(), e.getMonth(), e.getDate(), e.getHours(), e.getMinutes(), e.getSeconds(), e.getMilliseconds()).getTime(), a =
|
|
3250
|
+
const r = Je(e.getFullYear(), e.getMonth(), e.getDate(), e.getHours(), e.getMinutes(), e.getSeconds(), e.getMilliseconds()).getTime(), a = Fe(n, new Date(r));
|
|
3251
3251
|
return new Date(r + a);
|
|
3252
3252
|
}
|
|
3253
3253
|
const Wa = (e) => new TextEncoder().encode(e), Ya = (e) => {
|
|
@@ -3276,7 +3276,7 @@ const Wa = (e) => new TextEncoder().encode(e), Ya = (e) => {
|
|
|
3276
3276
|
0,
|
|
3277
3277
|
0
|
|
3278
3278
|
), a = Math.floor((r.getTime() - e.getTime()) / 1e3), f = 7 * 24 * 60 * 60;
|
|
3279
|
-
return
|
|
3279
|
+
return {
|
|
3280
3280
|
weekRemainingTime: a,
|
|
3281
3281
|
weekProgressPercentage: Math.round(a / f * 100)
|
|
3282
3282
|
};
|
|
@@ -3300,7 +3300,7 @@ const Wa = (e) => new TextEncoder().encode(e), Ya = (e) => {
|
|
|
3300
3300
|
if (isNaN(t.getTime()))
|
|
3301
3301
|
throw new Error("Invalid date format");
|
|
3302
3302
|
const r = za(t, n), a = Intl.DateTimeFormat().resolvedOptions().timeZone, s = Ga(r, a);
|
|
3303
|
-
return
|
|
3303
|
+
return La(s, "yyyy-MM-dd HH:mm:ss", { timeZone: a });
|
|
3304
3304
|
} catch (n) {
|
|
3305
3305
|
throw console.error("Error converting to user timezone:", n), n;
|
|
3306
3306
|
}
|
|
@@ -3322,7 +3322,7 @@ var se = /* @__PURE__ */ ((e) => (e.default = "default", e.pay = "pay", e.auto =
|
|
|
3322
3322
|
const Aa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
3323
3323
|
__proto__: null,
|
|
3324
3324
|
PaymentType: se
|
|
3325
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
3325
|
+
}, Symbol.toStringTag, { value: "Module" })), Le = {
|
|
3326
3326
|
depositBank: !1,
|
|
3327
3327
|
depositDateTime: !1,
|
|
3328
3328
|
depositDetail: !1,
|
|
@@ -3335,7 +3335,7 @@ const Aa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3335
3335
|
type: se.unknown,
|
|
3336
3336
|
promo: [],
|
|
3337
3337
|
bank: [],
|
|
3338
|
-
requiredField:
|
|
3338
|
+
requiredField: Le
|
|
3339
3339
|
}, Qa = (e) => {
|
|
3340
3340
|
var n;
|
|
3341
3341
|
return ((n = e.mdPaymentChannels) == null ? void 0 : n.map((t) => {
|
|
@@ -3490,7 +3490,7 @@ const Aa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3490
3490
|
gateway: [w, ..._]
|
|
3491
3491
|
};
|
|
3492
3492
|
}),
|
|
3493
|
-
requiredField:
|
|
3493
|
+
requiredField: Le
|
|
3494
3494
|
} : Ke, Za = (e, n, t) => {
|
|
3495
3495
|
if (!t) return Ke;
|
|
3496
3496
|
const r = se.auto;
|
|
@@ -3536,7 +3536,7 @@ const Aa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3536
3536
|
type: r,
|
|
3537
3537
|
promo: Ge(n.promo),
|
|
3538
3538
|
bank: a,
|
|
3539
|
-
requiredField:
|
|
3539
|
+
requiredField: Le
|
|
3540
3540
|
};
|
|
3541
3541
|
}, Ja = (e, n) => {
|
|
3542
3542
|
const t = se.fix;
|
|
@@ -3555,7 +3555,7 @@ const Aa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3555
3555
|
max: s.length > 0 ? s[s.length - 1] : 0
|
|
3556
3556
|
};
|
|
3557
3557
|
}),
|
|
3558
|
-
requiredField:
|
|
3558
|
+
requiredField: Le
|
|
3559
3559
|
};
|
|
3560
3560
|
}, Ka = (e) => (e == null ? void 0 : e.map((n) => ({
|
|
3561
3561
|
alert: n.announcement_alert === "1",
|
|
@@ -3577,12 +3577,12 @@ const Aa = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
3577
3577
|
code: b.code.toLowerCase(),
|
|
3578
3578
|
id: b.id,
|
|
3579
3579
|
name: b.name,
|
|
3580
|
-
iconUrl:
|
|
3580
|
+
iconUrl: `/custom/image/side_menu/${b.code.toLowerCase()}.png?v=1`,
|
|
3581
3581
|
nextPage: b.nextPage === 1,
|
|
3582
3582
|
list: (b.mdPlatformProducts !== null && ((w = b.mdPlatformProducts) == null ? void 0 : w.length)) ?? !1 ? ((_ = b.mdPlatformProducts) == null ? void 0 : _.map((g) => ({
|
|
3583
3583
|
gameId: Number(g.id_GameMaster),
|
|
3584
3584
|
platformId: Number(g.id),
|
|
3585
|
-
name: g.
|
|
3585
|
+
name: g.name,
|
|
3586
3586
|
flag: {
|
|
3587
3587
|
value: g.flag,
|
|
3588
3588
|
hot: (g.flag & 2) > 0,
|
|
@@ -3922,7 +3922,7 @@ const as = (e) => ({
|
|
|
3922
3922
|
code: t.code,
|
|
3923
3923
|
iconUrl: t.flag_icon
|
|
3924
3924
|
}))) ?? [];
|
|
3925
|
-
}, ps = (e) => (
|
|
3925
|
+
}, ps = (e) => ({
|
|
3926
3926
|
name: ""
|
|
3927
3927
|
}), bs = (e) => {
|
|
3928
3928
|
var n;
|
|
@@ -4199,13 +4199,13 @@ const ks = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4199
4199
|
tokenAmount: t.token_amount
|
|
4200
4200
|
}))) ?? []
|
|
4201
4201
|
};
|
|
4202
|
-
},
|
|
4202
|
+
}, Fs = (e) => ({
|
|
4203
4203
|
status: e.status == 1,
|
|
4204
4204
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
4205
4205
|
loginId: e.loginId ?? "",
|
|
4206
4206
|
password: e.password ?? "",
|
|
4207
4207
|
downloadUrl: e.download_link ?? ""
|
|
4208
|
-
}),
|
|
4208
|
+
}), Ls = (e) => (e == null ? void 0 : e.map((n) => ({
|
|
4209
4209
|
messageId: n.msgindex,
|
|
4210
4210
|
unread: n.status == "0",
|
|
4211
4211
|
date: n.cdate,
|
|
@@ -4617,7 +4617,7 @@ const ks = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4617
4617
|
commission: t.commission
|
|
4618
4618
|
}))
|
|
4619
4619
|
}))
|
|
4620
|
-
}),
|
|
4620
|
+
}), Fo = (e) => ({
|
|
4621
4621
|
status: e.status == 1,
|
|
4622
4622
|
message: e.status == 1 ? e.message ?? "" : e.errormessage ?? "",
|
|
4623
4623
|
id: e.id ?? 0,
|
|
@@ -4629,7 +4629,7 @@ const ks = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4629
4629
|
})),
|
|
4630
4630
|
currentPage: e.page,
|
|
4631
4631
|
lastPage: e.lastpage
|
|
4632
|
-
}),
|
|
4632
|
+
}), Lo = (e) => ({
|
|
4633
4633
|
status: e.status == "1",
|
|
4634
4634
|
message: e.msg ?? "",
|
|
4635
4635
|
username: e.accountcode,
|
|
@@ -4872,17 +4872,17 @@ const ii = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4872
4872
|
return {
|
|
4873
4873
|
status: e.status,
|
|
4874
4874
|
data: {
|
|
4875
|
-
period: `${
|
|
4875
|
+
period: `${Ft(e.data.datefrom)} ~ ${Ft(e.data.dateto)}`,
|
|
4876
4876
|
gift: {
|
|
4877
4877
|
deposit: {
|
|
4878
4878
|
current: n.filter((r) => r.status == te.collected).length,
|
|
4879
4879
|
total: n.length,
|
|
4880
|
-
percentage:
|
|
4880
|
+
percentage: Lt(n)
|
|
4881
4881
|
},
|
|
4882
4882
|
activeBet: {
|
|
4883
4883
|
current: t.filter((r) => r.status == te.collected).length,
|
|
4884
4884
|
total: t.length,
|
|
4885
|
-
percentage:
|
|
4885
|
+
percentage: Lt(t)
|
|
4886
4886
|
},
|
|
4887
4887
|
grandPrize: {
|
|
4888
4888
|
countDownTimestamp: li(e.data.dateto),
|
|
@@ -4906,10 +4906,10 @@ const ii = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
4906
4906
|
currentPercentage: (r / t.requirement * 100).toFixed(0)
|
|
4907
4907
|
}
|
|
4908
4908
|
};
|
|
4909
|
-
}),
|
|
4909
|
+
}), Ft = (e) => {
|
|
4910
4910
|
const n = new Date(e), t = n.getDate().toString().padStart(2, "0"), r = (n.getMonth() + 1).toString().padStart(2, "0"), a = n.getHours().toString().padStart(2, "0"), s = n.getMinutes().toString().padStart(2, "0");
|
|
4911
4911
|
return `${t}/${r} ${a}:${s}`;
|
|
4912
|
-
},
|
|
4912
|
+
}, Lt = (e) => {
|
|
4913
4913
|
const n = e.reduce((r, a) => r + parseFloat(a.reward), 0), t = e.reduce((r, a) => r + a.progress.total, 0);
|
|
4914
4914
|
return t > 0 ? (n / t * 100).toFixed(2) : "0";
|
|
4915
4915
|
}, li = (e) => {
|
|
@@ -5126,7 +5126,7 @@ const pi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5126
5126
|
m.error != null && m.error.code != 200 && (u.status = m.error.code, u.message = m.error.message);
|
|
5127
5127
|
const x = m.attributes !== null && m.attributes !== void 0 ? Ya(m.attributes) : null, i = m.name, l = x ? JSON.parse(x) : null;
|
|
5128
5128
|
if (!l)
|
|
5129
|
-
|
|
5129
|
+
u.result[i] = null;
|
|
5130
5130
|
else
|
|
5131
5131
|
switch (i) {
|
|
5132
5132
|
case c.announcement:
|
|
@@ -5244,10 +5244,10 @@ const pi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5244
5244
|
u.result[i] = js(l);
|
|
5245
5245
|
break;
|
|
5246
5246
|
case c.getExtraGame:
|
|
5247
|
-
u.result[i] =
|
|
5247
|
+
u.result[i] = Fs(l);
|
|
5248
5248
|
break;
|
|
5249
5249
|
case c.mailBox:
|
|
5250
|
-
u.result[i] =
|
|
5250
|
+
u.result[i] = Ls(l);
|
|
5251
5251
|
break;
|
|
5252
5252
|
case c.fishGameList:
|
|
5253
5253
|
u.result[i] = Gs(l);
|
|
@@ -5482,12 +5482,12 @@ const pi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
5482
5482
|
);
|
|
5483
5483
|
break;
|
|
5484
5484
|
case c.referralMemberProfile:
|
|
5485
|
-
u.result[i] =
|
|
5485
|
+
u.result[i] = Fo(
|
|
5486
5486
|
l
|
|
5487
5487
|
);
|
|
5488
5488
|
break;
|
|
5489
5489
|
case c.registerAction:
|
|
5490
|
-
u.result[i] =
|
|
5490
|
+
u.result[i] = Lo(l);
|
|
5491
5491
|
break;
|
|
5492
5492
|
case c.transferReport:
|
|
5493
5493
|
u.result[i] = zo(l);
|
|
@@ -6117,10 +6117,10 @@ const pi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6117
6117
|
__proto__: null
|
|
6118
6118
|
}, Symbol.toStringTag, { value: "Module" })), ji = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6119
6119
|
__proto__: null
|
|
6120
|
-
}, Symbol.toStringTag, { value: "Module" })), Li = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6121
|
-
__proto__: null
|
|
6122
6120
|
}, Symbol.toStringTag, { value: "Module" })), Fi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6123
6121
|
__proto__: null
|
|
6122
|
+
}, Symbol.toStringTag, { value: "Module" })), Li = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6123
|
+
__proto__: null
|
|
6124
6124
|
}, Symbol.toStringTag, { value: "Module" })), Gi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6125
6125
|
__proto__: null
|
|
6126
6126
|
}, Symbol.toStringTag, { value: "Module" })), zi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -6235,10 +6235,10 @@ const Tu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6235
6235
|
__proto__: null
|
|
6236
6236
|
}, Symbol.toStringTag, { value: "Module" })), ju = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6237
6237
|
__proto__: null
|
|
6238
|
-
}, Symbol.toStringTag, { value: "Module" })), Lu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6239
|
-
__proto__: null
|
|
6240
6238
|
}, Symbol.toStringTag, { value: "Module" })), Fu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6241
6239
|
__proto__: null
|
|
6240
|
+
}, Symbol.toStringTag, { value: "Module" })), Lu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6241
|
+
__proto__: null
|
|
6242
6242
|
}, Symbol.toStringTag, { value: "Module" })), Gu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6243
6243
|
__proto__: null
|
|
6244
6244
|
}, Symbol.toStringTag, { value: "Module" })), zu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -6339,9 +6339,9 @@ const Tu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6339
6339
|
apiType: Va,
|
|
6340
6340
|
loginType: Ni,
|
|
6341
6341
|
logoutType: ji,
|
|
6342
|
-
announcementType:
|
|
6342
|
+
announcementType: Fi,
|
|
6343
6343
|
paymentsProviderType: Aa,
|
|
6344
|
-
gameListType:
|
|
6344
|
+
gameListType: Li,
|
|
6345
6345
|
vipListType: Gi,
|
|
6346
6346
|
promotionType: zi,
|
|
6347
6347
|
cmsListType: Wi,
|
|
@@ -6400,8 +6400,8 @@ const Tu = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
6400
6400
|
transferToMainType: Cu,
|
|
6401
6401
|
transferProcessType: Nu,
|
|
6402
6402
|
submitValidateType: ju,
|
|
6403
|
-
checkTransferCreditType:
|
|
6404
|
-
friendListType:
|
|
6403
|
+
checkTransferCreditType: Fu,
|
|
6404
|
+
friendListType: Lu,
|
|
6405
6405
|
friendListEditType: Gu,
|
|
6406
6406
|
getActivePPType: zu,
|
|
6407
6407
|
getActiveProductType: Wu,
|
|
@@ -6455,7 +6455,7 @@ export {
|
|
|
6455
6455
|
Sl as Repository,
|
|
6456
6456
|
Ui as addBankCardType,
|
|
6457
6457
|
Ju as agTransferCreditReportType,
|
|
6458
|
-
|
|
6458
|
+
Fi as announcementType,
|
|
6459
6459
|
wi as api,
|
|
6460
6460
|
Va as apiType,
|
|
6461
6461
|
ku as applyPromoType,
|
|
@@ -6470,15 +6470,15 @@ export {
|
|
|
6470
6470
|
sl as changeWithdrawalCodeType,
|
|
6471
6471
|
ol as checkRedPacketTokenType,
|
|
6472
6472
|
Pu as checkRedPacketValidateType,
|
|
6473
|
-
|
|
6473
|
+
Fu as checkTransferCreditType,
|
|
6474
6474
|
bl as claimIncentiveRebate,
|
|
6475
6475
|
Wi as cmsListType,
|
|
6476
6476
|
Eu as commissionWithdrawType,
|
|
6477
6477
|
Ei as depositType,
|
|
6478
6478
|
Ki as fishGameListType,
|
|
6479
6479
|
Gu as friendListEditType,
|
|
6480
|
-
|
|
6481
|
-
|
|
6480
|
+
Lu as friendListType,
|
|
6481
|
+
Li as gameListType,
|
|
6482
6482
|
Ol as getASCMatchCountType,
|
|
6483
6483
|
Dl as getAccumulateDepositClaimType,
|
|
6484
6484
|
pi as getAccumulateDepositDataType,
|