60p82u21t54k 1.0.4 → 1.0.6
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.cjs.js +1 -1
- package/dist/60p82u21t54k.es.js +233 -807
- package/dist/60p82u21t54k.umd.js +1 -1
- package/dist/index.d.ts +28 -299
- package/dist/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/60p82u21t54k.es.js
CHANGED
|
@@ -212,10 +212,6 @@ var Api = /* @__PURE__ */ ((Api2) => {
|
|
|
212
212
|
Api2["getActivePlatform"] = "getActivePlatform";
|
|
213
213
|
return Api2;
|
|
214
214
|
})(Api || {});
|
|
215
|
-
const type$2a = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
216
|
-
__proto__: null,
|
|
217
|
-
Api
|
|
218
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
219
215
|
const registerAllApiModels = async () => {
|
|
220
216
|
const allApiNames = Object.values(Api);
|
|
221
217
|
const registrationResults = {
|
|
@@ -433,57 +429,108 @@ const api = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty(
|
|
|
433
429
|
__proto__: null,
|
|
434
430
|
post
|
|
435
431
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
436
|
-
|
|
432
|
+
var SettingCategory = /* @__PURE__ */ ((SettingCategory2) => {
|
|
433
|
+
SettingCategory2["vipcalculation"] = "vipcalculation";
|
|
434
|
+
SettingCategory2["livechat"] = "livechat";
|
|
435
|
+
SettingCategory2["extralivechat"] = "extralivechat";
|
|
436
|
+
SettingCategory2["mobilevalidate"] = "mobilevalidate";
|
|
437
|
+
SettingCategory2["withdrawtac"] = "withdrawtac";
|
|
438
|
+
SettingCategory2["imageDomain"] = "imagedomain";
|
|
439
|
+
SettingCategory2["withdrawalCode"] = "withdrawalcode";
|
|
440
|
+
SettingCategory2["withdrawAlipay"] = "withdrawalipay";
|
|
441
|
+
SettingCategory2["crypto"] = "crypto";
|
|
442
|
+
SettingCategory2["loginCaptcha"] = "logincaptcha";
|
|
443
|
+
SettingCategory2["registerCaptcha"] = "registercaptcha";
|
|
444
|
+
SettingCategory2["telegramAuthDomain"] = "telegramauthdomain";
|
|
445
|
+
SettingCategory2["telegramBotId"] = "telegrambotid";
|
|
446
|
+
SettingCategory2["registerwa"] = "registerwa";
|
|
447
|
+
SettingCategory2["forgetUser"] = "forgetuser";
|
|
448
|
+
SettingCategory2["contactUsSetting"] = "contact_us_setting";
|
|
449
|
+
SettingCategory2["facebookPixelId"] = "facebookpixelid";
|
|
450
|
+
SettingCategory2["facebookPixelIdArr"] = "facebook_pixel_id_arr";
|
|
451
|
+
SettingCategory2["googleAnalyticArr"] = "google_analytic_arr";
|
|
452
|
+
SettingCategory2["agentLinkFirstRedirect"] = "agentlink_first_redirect";
|
|
453
|
+
return SettingCategory2;
|
|
454
|
+
})(SettingCategory || {});
|
|
455
|
+
const DefaultAutoRegisterData = {
|
|
456
|
+
data: {
|
|
457
|
+
status: false,
|
|
458
|
+
message: "",
|
|
459
|
+
data: {
|
|
460
|
+
account: "",
|
|
461
|
+
password: "",
|
|
462
|
+
accountId: 0
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
};
|
|
466
|
+
const autoRegisterApi = async () => {
|
|
437
467
|
let result = {
|
|
438
468
|
status: 200,
|
|
439
|
-
message: ""
|
|
469
|
+
message: "",
|
|
470
|
+
...DefaultAutoRegisterData
|
|
440
471
|
};
|
|
441
472
|
try {
|
|
442
|
-
await axiosInstance.
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
473
|
+
const request = await axiosInstance.get("/graph/autoregister");
|
|
474
|
+
const output = request.data;
|
|
475
|
+
result.data = {
|
|
476
|
+
status: output.status == 1,
|
|
477
|
+
message: output.message ?? "",
|
|
478
|
+
data: {
|
|
479
|
+
account: output.data.accountcode,
|
|
480
|
+
password: output.data.password,
|
|
481
|
+
accountId: output.data.accountid
|
|
482
|
+
}
|
|
446
483
|
};
|
|
447
484
|
} catch (error) {
|
|
448
485
|
const extendedError = error;
|
|
449
486
|
result = {
|
|
450
487
|
status: extendedError.status || 500,
|
|
451
|
-
message: error.message
|
|
488
|
+
message: error.message,
|
|
489
|
+
...DefaultAutoRegisterData
|
|
452
490
|
};
|
|
453
491
|
}
|
|
454
492
|
return result;
|
|
455
493
|
};
|
|
456
|
-
const
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
494
|
+
const DefaultGetMaintenanceModeData = {
|
|
495
|
+
data: {
|
|
496
|
+
status: false,
|
|
497
|
+
message: "",
|
|
498
|
+
data: {
|
|
499
|
+
isMaintenance: false,
|
|
500
|
+
startTime: "",
|
|
501
|
+
endTime: ""
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
};
|
|
505
|
+
const getMaintenanceModeApi = async () => {
|
|
506
|
+
var _a, _b, _c;
|
|
461
507
|
let result = {
|
|
462
508
|
status: 200,
|
|
463
|
-
message: ""
|
|
509
|
+
message: "",
|
|
510
|
+
...DefaultGetMaintenanceModeData
|
|
464
511
|
};
|
|
465
512
|
try {
|
|
466
|
-
await axiosInstance.
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
513
|
+
const request = await axiosInstance.get("/graph/getMaintenanceMode");
|
|
514
|
+
const output = request.data;
|
|
515
|
+
result.data = {
|
|
516
|
+
status: output.status == 1,
|
|
517
|
+
message: output.msg ?? "",
|
|
518
|
+
data: {
|
|
519
|
+
isMaintenance: ((_a = output.data) == null ? void 0 : _a.maintenanceMode) == "1",
|
|
520
|
+
startTime: ((_b = output.data) == null ? void 0 : _b.startTime) ?? "",
|
|
521
|
+
endTime: ((_c = output.data) == null ? void 0 : _c.endTime) ?? ""
|
|
522
|
+
}
|
|
473
523
|
};
|
|
474
524
|
} catch (error) {
|
|
475
525
|
const extendedError = error;
|
|
476
526
|
result = {
|
|
477
527
|
status: extendedError.status || 500,
|
|
478
|
-
message: error.message
|
|
528
|
+
message: error.message,
|
|
529
|
+
...DefaultGetMaintenanceModeData
|
|
479
530
|
};
|
|
480
531
|
}
|
|
481
532
|
return result;
|
|
482
533
|
};
|
|
483
|
-
const loginApi$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
484
|
-
__proto__: null,
|
|
485
|
-
loginApi
|
|
486
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
487
534
|
const DefaultjackpotData = {
|
|
488
535
|
data: {
|
|
489
536
|
startTimestamp: 0,
|
|
@@ -517,17 +564,61 @@ const jackpotDataApi = async () => {
|
|
|
517
564
|
}
|
|
518
565
|
return result;
|
|
519
566
|
};
|
|
520
|
-
const
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
567
|
+
const loadMatchApi = async (gameId, stage, sportId, tagId, matchId) => {
|
|
568
|
+
let result = {
|
|
569
|
+
status: 200,
|
|
570
|
+
message: "",
|
|
571
|
+
data: {
|
|
572
|
+
message: "",
|
|
573
|
+
urlLink: ""
|
|
574
|
+
}
|
|
575
|
+
};
|
|
576
|
+
try {
|
|
577
|
+
const request = await axiosInstance.post(`/loadgame/${gameId}`, {
|
|
578
|
+
wanturl: 1,
|
|
579
|
+
extra: {
|
|
580
|
+
Stage: stage,
|
|
581
|
+
SportId: sportId,
|
|
582
|
+
tagid: tagId,
|
|
583
|
+
MatchId: matchId
|
|
584
|
+
}
|
|
585
|
+
});
|
|
586
|
+
const output = request.data;
|
|
587
|
+
result = {
|
|
588
|
+
status: 200,
|
|
589
|
+
message: "",
|
|
590
|
+
data: {
|
|
591
|
+
message: output.msg ?? "",
|
|
592
|
+
urlLink: output.data ?? ""
|
|
593
|
+
}
|
|
594
|
+
};
|
|
595
|
+
} catch (error) {
|
|
596
|
+
const extendedError = error;
|
|
597
|
+
result = {
|
|
598
|
+
status: extendedError.status || 500,
|
|
599
|
+
message: error.message,
|
|
600
|
+
data: {
|
|
601
|
+
message: "",
|
|
602
|
+
urlLink: ""
|
|
603
|
+
}
|
|
604
|
+
};
|
|
605
|
+
}
|
|
606
|
+
return result;
|
|
607
|
+
};
|
|
608
|
+
const loginApi = async (username, password) => {
|
|
525
609
|
let result = {
|
|
526
610
|
status: 200,
|
|
527
611
|
message: ""
|
|
528
612
|
};
|
|
529
613
|
try {
|
|
530
|
-
await axiosInstance.post("/graph/auth/sesh
|
|
614
|
+
await axiosInstance.post("/graph/auth/sesh", {
|
|
615
|
+
usr: username,
|
|
616
|
+
pwd: password
|
|
617
|
+
});
|
|
618
|
+
result = {
|
|
619
|
+
status: 200,
|
|
620
|
+
message: ""
|
|
621
|
+
};
|
|
531
622
|
} catch (error) {
|
|
532
623
|
const extendedError = error;
|
|
533
624
|
result = {
|
|
@@ -537,53 +628,46 @@ const logoutApi = async () => {
|
|
|
537
628
|
}
|
|
538
629
|
return result;
|
|
539
630
|
};
|
|
540
|
-
const logoutApi
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
}
|
|
631
|
+
const logoutApi = async () => {
|
|
632
|
+
let result = {
|
|
633
|
+
status: 200,
|
|
634
|
+
message: ""
|
|
635
|
+
};
|
|
636
|
+
try {
|
|
637
|
+
await axiosInstance.post("/graph/auth/sesh/logout");
|
|
638
|
+
} catch (error) {
|
|
639
|
+
const extendedError = error;
|
|
640
|
+
result = {
|
|
641
|
+
status: extendedError.status || 500,
|
|
642
|
+
message: error.message
|
|
643
|
+
};
|
|
553
644
|
}
|
|
645
|
+
return result;
|
|
554
646
|
};
|
|
555
|
-
const
|
|
647
|
+
const rename = async (fullname) => {
|
|
556
648
|
let result = {
|
|
557
649
|
status: 200,
|
|
558
|
-
message: ""
|
|
559
|
-
...DefaultAutoRegisterData
|
|
650
|
+
message: ""
|
|
560
651
|
};
|
|
561
652
|
try {
|
|
562
|
-
const request = await axiosInstance.
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
accountId: output.data.accountid
|
|
571
|
-
}
|
|
653
|
+
const request = await axiosInstance.post("/graph/rename", {
|
|
654
|
+
fullname
|
|
655
|
+
});
|
|
656
|
+
if (false) ;
|
|
657
|
+
const response = request.data;
|
|
658
|
+
result = {
|
|
659
|
+
status: response.status == 1 ? 200 : 509,
|
|
660
|
+
message: response.msg ? request.data.msg : ""
|
|
572
661
|
};
|
|
573
662
|
} catch (error) {
|
|
574
663
|
const extendedError = error;
|
|
575
664
|
result = {
|
|
576
665
|
status: extendedError.status || 500,
|
|
577
|
-
message: error.message
|
|
578
|
-
...DefaultAutoRegisterData
|
|
666
|
+
message: error.message
|
|
579
667
|
};
|
|
580
668
|
}
|
|
581
669
|
return result;
|
|
582
670
|
};
|
|
583
|
-
const autoRegisterApi$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
584
|
-
__proto__: null,
|
|
585
|
-
autoRegisterApi
|
|
586
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
587
671
|
const DefaultSetLocaleData = {
|
|
588
672
|
data: {
|
|
589
673
|
status: false,
|
|
@@ -618,768 +702,110 @@ const setLocaleApi = async (localeCode, udid) => {
|
|
|
618
702
|
}
|
|
619
703
|
return result;
|
|
620
704
|
};
|
|
621
|
-
const
|
|
622
|
-
__proto__: null,
|
|
623
|
-
setLocaleApi
|
|
624
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
625
|
-
const loadMatchApi = async (gameId, stage, sportId, tagId, matchId) => {
|
|
705
|
+
const telegramLoginApi = async (data) => {
|
|
626
706
|
let result = {
|
|
627
707
|
status: 200,
|
|
628
|
-
message: ""
|
|
629
|
-
data: {
|
|
630
|
-
message: "",
|
|
631
|
-
urlLink: ""
|
|
632
|
-
}
|
|
708
|
+
message: ""
|
|
633
709
|
};
|
|
634
710
|
try {
|
|
635
|
-
|
|
636
|
-
wanturl: 1,
|
|
637
|
-
extra: {
|
|
638
|
-
Stage: stage,
|
|
639
|
-
SportId: sportId,
|
|
640
|
-
tagid: tagId,
|
|
641
|
-
MatchId: matchId
|
|
642
|
-
}
|
|
643
|
-
});
|
|
644
|
-
const output = request.data;
|
|
711
|
+
await axiosInstance.post("/loginVia/telegram", data);
|
|
645
712
|
result = {
|
|
646
713
|
status: 200,
|
|
647
|
-
message: ""
|
|
648
|
-
data: {
|
|
649
|
-
message: output.msg ?? "",
|
|
650
|
-
urlLink: output.data ?? ""
|
|
651
|
-
}
|
|
714
|
+
message: ""
|
|
652
715
|
};
|
|
653
716
|
} catch (error) {
|
|
654
717
|
const extendedError = error;
|
|
655
718
|
result = {
|
|
656
719
|
status: extendedError.status || 500,
|
|
657
|
-
message: error.message
|
|
658
|
-
data: {
|
|
659
|
-
message: "",
|
|
660
|
-
urlLink: ""
|
|
661
|
-
}
|
|
720
|
+
message: error.message
|
|
662
721
|
};
|
|
663
722
|
}
|
|
664
723
|
return result;
|
|
665
724
|
};
|
|
666
|
-
const
|
|
667
|
-
|
|
668
|
-
loadMatchApi
|
|
669
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
670
|
-
const DefaultGetMaintenanceModeData = {
|
|
671
|
-
data: {
|
|
672
|
-
status: false,
|
|
673
|
-
message: "",
|
|
674
|
-
data: {
|
|
675
|
-
isMaintenance: false,
|
|
676
|
-
startTime: "",
|
|
677
|
-
endTime: ""
|
|
678
|
-
}
|
|
679
|
-
}
|
|
725
|
+
const discoveredModules = {
|
|
726
|
+
types: {}
|
|
680
727
|
};
|
|
681
|
-
|
|
682
|
-
var _a, _b, _c;
|
|
683
|
-
let result = {
|
|
684
|
-
status: 200,
|
|
685
|
-
message: "",
|
|
686
|
-
...DefaultGetMaintenanceModeData
|
|
687
|
-
};
|
|
728
|
+
async function loadModule(path) {
|
|
688
729
|
try {
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
730
|
+
return await import(path);
|
|
731
|
+
} catch {
|
|
732
|
+
return null;
|
|
733
|
+
}
|
|
734
|
+
}
|
|
735
|
+
let modulesLoaded = false;
|
|
736
|
+
let loadingPromise = null;
|
|
737
|
+
async function loadAllModelTypes() {
|
|
738
|
+
if (modulesLoaded) return;
|
|
739
|
+
const allApiNames = Object.values(Api);
|
|
740
|
+
const batchSize = 20;
|
|
741
|
+
for (let i = 0; i < allApiNames.length; i += batchSize) {
|
|
742
|
+
const batch = allApiNames.slice(i, i + batchSize);
|
|
743
|
+
const results = await Promise.allSettled(
|
|
744
|
+
batch.map(async (apiName) => {
|
|
745
|
+
const typeModule = await loadModule(`./model/${apiName}/type`);
|
|
746
|
+
return { apiName, typeModule };
|
|
747
|
+
})
|
|
748
|
+
);
|
|
749
|
+
results.forEach((result) => {
|
|
750
|
+
if (result.status === "fulfilled" && result.value.typeModule) {
|
|
751
|
+
const { apiName, typeModule } = result.value;
|
|
752
|
+
discoveredModules.types[`${apiName}Type`] = typeModule;
|
|
698
753
|
}
|
|
699
|
-
};
|
|
700
|
-
} catch (error) {
|
|
701
|
-
const extendedError = error;
|
|
702
|
-
result = {
|
|
703
|
-
status: extendedError.status || 500,
|
|
704
|
-
message: error.message,
|
|
705
|
-
...DefaultGetMaintenanceModeData
|
|
706
|
-
};
|
|
754
|
+
});
|
|
707
755
|
}
|
|
708
|
-
|
|
756
|
+
modulesLoaded = true;
|
|
757
|
+
console.log(
|
|
758
|
+
`✅ Module discovery completed - ${Object.keys(discoveredModules.types).length} types loaded`
|
|
759
|
+
);
|
|
760
|
+
}
|
|
761
|
+
async function ensureModulesLoaded() {
|
|
762
|
+
if (modulesLoaded) return;
|
|
763
|
+
if (!loadingPromise) {
|
|
764
|
+
loadingPromise = loadAllModelTypes();
|
|
765
|
+
}
|
|
766
|
+
await loadingPromise;
|
|
767
|
+
}
|
|
768
|
+
loadingPromise = loadAllModelTypes().catch((error) => {
|
|
769
|
+
console.warn("Module discovery failed:", error);
|
|
770
|
+
modulesLoaded = true;
|
|
771
|
+
});
|
|
772
|
+
const getTypeModule = async (name) => {
|
|
773
|
+
await ensureModulesLoaded();
|
|
774
|
+
return discoveredModules.types[name];
|
|
709
775
|
};
|
|
710
|
-
const
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
const
|
|
718
|
-
|
|
719
|
-
}
|
|
720
|
-
const
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
var PaymentType = /* @__PURE__ */ ((PaymentType2) => {
|
|
724
|
-
PaymentType2["default"] = "default";
|
|
725
|
-
PaymentType2["pay"] = "pay";
|
|
726
|
-
PaymentType2["auto"] = "auto";
|
|
727
|
-
PaymentType2["fix"] = "fix";
|
|
728
|
-
PaymentType2["manual"] = "manual";
|
|
729
|
-
PaymentType2["unknown"] = "unknown";
|
|
730
|
-
return PaymentType2;
|
|
731
|
-
})(PaymentType || {});
|
|
732
|
-
const type$26 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
733
|
-
__proto__: null,
|
|
734
|
-
PaymentType
|
|
735
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
736
|
-
const type$25 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
737
|
-
__proto__: null
|
|
738
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
739
|
-
const type$24 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
740
|
-
__proto__: null
|
|
741
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
742
|
-
const type$23 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
743
|
-
__proto__: null
|
|
744
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
745
|
-
var CmsCategory = /* @__PURE__ */ ((CmsCategory2) => {
|
|
746
|
-
CmsCategory2["mobileBanner"] = "mobileBanner";
|
|
747
|
-
CmsCategory2["mobileAbout"] = "mobileAbout";
|
|
748
|
-
CmsCategory2["mobileAd"] = "mobileAd";
|
|
749
|
-
CmsCategory2["about"] = "about";
|
|
750
|
-
CmsCategory2["appAd"] = "appAd";
|
|
751
|
-
CmsCategory2["deposit"] = "deposit";
|
|
752
|
-
CmsCategory2["eventPopupBotLeft"] = "eventPopupBotLeft";
|
|
753
|
-
CmsCategory2["eventPopupBotRight"] = "eventPopupBotRight";
|
|
754
|
-
return CmsCategory2;
|
|
755
|
-
})(CmsCategory || {});
|
|
756
|
-
const type$22 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
757
|
-
__proto__: null,
|
|
758
|
-
CmsCategory
|
|
759
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
760
|
-
const type$21 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
761
|
-
__proto__: null
|
|
762
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
763
|
-
const type$20 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
764
|
-
__proto__: null
|
|
765
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
766
|
-
const type$1$ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
767
|
-
__proto__: null
|
|
768
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
769
|
-
const type$1_ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
770
|
-
__proto__: null
|
|
771
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
772
|
-
const type$1Z = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
773
|
-
__proto__: null
|
|
774
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
775
|
-
const type$1Y = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
776
|
-
__proto__: null
|
|
777
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
778
|
-
const type$1X = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
779
|
-
__proto__: null
|
|
780
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
781
|
-
var SettingCategory = /* @__PURE__ */ ((SettingCategory2) => {
|
|
782
|
-
SettingCategory2["vipcalculation"] = "vipcalculation";
|
|
783
|
-
SettingCategory2["livechat"] = "livechat";
|
|
784
|
-
SettingCategory2["extralivechat"] = "extralivechat";
|
|
785
|
-
SettingCategory2["mobilevalidate"] = "mobilevalidate";
|
|
786
|
-
SettingCategory2["withdrawtac"] = "withdrawtac";
|
|
787
|
-
SettingCategory2["imageDomain"] = "imagedomain";
|
|
788
|
-
SettingCategory2["withdrawalCode"] = "withdrawalcode";
|
|
789
|
-
SettingCategory2["withdrawAlipay"] = "withdrawalipay";
|
|
790
|
-
SettingCategory2["crypto"] = "crypto";
|
|
791
|
-
SettingCategory2["loginCaptcha"] = "logincaptcha";
|
|
792
|
-
SettingCategory2["registerCaptcha"] = "registercaptcha";
|
|
793
|
-
SettingCategory2["telegramAuthDomain"] = "telegramauthdomain";
|
|
794
|
-
SettingCategory2["telegramBotId"] = "telegrambotid";
|
|
795
|
-
SettingCategory2["registerwa"] = "registerwa";
|
|
796
|
-
SettingCategory2["forgetUser"] = "forgetuser";
|
|
797
|
-
SettingCategory2["contactUsSetting"] = "contact_us_setting";
|
|
798
|
-
SettingCategory2["facebookPixelId"] = "facebookpixelid";
|
|
799
|
-
SettingCategory2["facebookPixelIdArr"] = "facebook_pixel_id_arr";
|
|
800
|
-
SettingCategory2["googleAnalyticArr"] = "google_analytic_arr";
|
|
801
|
-
SettingCategory2["agentLinkFirstRedirect"] = "agentlink_first_redirect";
|
|
802
|
-
return SettingCategory2;
|
|
803
|
-
})(SettingCategory || {});
|
|
804
|
-
const type$1W = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
805
|
-
__proto__: null,
|
|
806
|
-
SettingCategory
|
|
807
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
808
|
-
var TransactionMethod = /* @__PURE__ */ ((TransactionMethod2) => {
|
|
809
|
-
TransactionMethod2["deposit"] = "deposit";
|
|
810
|
-
TransactionMethod2["withdraw"] = "withdraw";
|
|
811
|
-
TransactionMethod2["promo"] = "promotion";
|
|
812
|
-
TransactionMethod2["manual"] = "adjustment";
|
|
813
|
-
TransactionMethod2["cashIn"] = "cashIn";
|
|
814
|
-
TransactionMethod2["cashOut"] = "cashOut";
|
|
815
|
-
TransactionMethod2["transfer"] = "transfer";
|
|
816
|
-
TransactionMethod2["incentive"] = "incentive";
|
|
817
|
-
TransactionMethod2["upgradeBonus"] = "upgradeBonus";
|
|
818
|
-
TransactionMethod2["extension"] = "extension";
|
|
819
|
-
TransactionMethod2["creditTransfer"] = "creditTransfer";
|
|
820
|
-
TransactionMethod2["shareHolder"] = "shareHolderDividend";
|
|
821
|
-
return TransactionMethod2;
|
|
822
|
-
})(TransactionMethod || {});
|
|
823
|
-
const type$1V = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
824
|
-
__proto__: null,
|
|
825
|
-
TransactionMethod
|
|
826
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
827
|
-
const type$1U = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
828
|
-
__proto__: null
|
|
829
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
830
|
-
const type$1T = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
831
|
-
__proto__: null
|
|
832
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
833
|
-
const type$1S = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
834
|
-
__proto__: null
|
|
835
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
836
|
-
const type$1R = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
837
|
-
__proto__: null
|
|
838
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
839
|
-
const type$1Q = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
840
|
-
__proto__: null
|
|
841
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
842
|
-
const type$1P = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
843
|
-
__proto__: null
|
|
844
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
845
|
-
const type$1O = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
846
|
-
__proto__: null
|
|
847
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
848
|
-
const type$1N = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
849
|
-
__proto__: null
|
|
850
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
851
|
-
const type$1M = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
852
|
-
__proto__: null
|
|
853
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
854
|
-
const type$1L = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
855
|
-
__proto__: null
|
|
856
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
857
|
-
const type$1K = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
858
|
-
__proto__: null
|
|
859
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
860
|
-
const type$1J = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
861
|
-
__proto__: null
|
|
862
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
863
|
-
const type$1I = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
864
|
-
__proto__: null
|
|
865
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
866
|
-
const type$1H = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
867
|
-
__proto__: null
|
|
868
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
869
|
-
const type$1G = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
870
|
-
__proto__: null
|
|
871
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
872
|
-
const type$1F = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
873
|
-
__proto__: null
|
|
874
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
875
|
-
const type$1E = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
876
|
-
__proto__: null
|
|
877
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
878
|
-
const type$1D = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
879
|
-
__proto__: null
|
|
880
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
881
|
-
const type$1C = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
882
|
-
__proto__: null
|
|
883
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
884
|
-
const type$1B = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
885
|
-
__proto__: null
|
|
886
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
887
|
-
const type$1A = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
888
|
-
__proto__: null
|
|
889
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
890
|
-
const type$1z = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
891
|
-
__proto__: null
|
|
892
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
893
|
-
const type$1y = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
894
|
-
__proto__: null
|
|
895
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
896
|
-
const type$1x = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
897
|
-
__proto__: null
|
|
898
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
899
|
-
const type$1w = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
900
|
-
__proto__: null
|
|
901
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
902
|
-
const type$1v = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
903
|
-
__proto__: null
|
|
904
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
905
|
-
const type$1u = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
906
|
-
__proto__: null
|
|
907
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
908
|
-
const type$1t = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
909
|
-
__proto__: null
|
|
910
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
911
|
-
const type$1s = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
912
|
-
__proto__: null
|
|
913
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
914
|
-
var ImageCategory = /* @__PURE__ */ ((ImageCategory2) => {
|
|
915
|
-
ImageCategory2["default"] = "default";
|
|
916
|
-
ImageCategory2["online"] = "online";
|
|
917
|
-
ImageCategory2["mycard"] = "mycard";
|
|
918
|
-
ImageCategory2["qrcode"] = "qrcode";
|
|
919
|
-
ImageCategory2["personal"] = "personal";
|
|
920
|
-
return ImageCategory2;
|
|
921
|
-
})(ImageCategory || {});
|
|
922
|
-
const type$1r = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
923
|
-
__proto__: null,
|
|
924
|
-
ImageCategory
|
|
925
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
926
|
-
const type$1q = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
927
|
-
__proto__: null
|
|
928
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
929
|
-
const type$1p = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
930
|
-
__proto__: null
|
|
931
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
932
|
-
const type$1o = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
933
|
-
__proto__: null
|
|
934
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
935
|
-
const type$1n = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
936
|
-
__proto__: null
|
|
937
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
938
|
-
const type$1m = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
939
|
-
__proto__: null
|
|
940
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
941
|
-
const type$1l = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
942
|
-
__proto__: null
|
|
943
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
944
|
-
const type$1k = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
945
|
-
__proto__: null
|
|
946
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
947
|
-
const type$1j = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
948
|
-
__proto__: null
|
|
949
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
950
|
-
const type$1i = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
951
|
-
__proto__: null
|
|
952
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
953
|
-
const type$1h = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
954
|
-
__proto__: null
|
|
955
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
956
|
-
const type$1g = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
957
|
-
__proto__: null
|
|
958
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
959
|
-
const type$1f = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
960
|
-
__proto__: null
|
|
961
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
962
|
-
const type$1e = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
963
|
-
__proto__: null
|
|
964
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
965
|
-
const type$1d = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
966
|
-
__proto__: null
|
|
967
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
968
|
-
const type$1c = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
969
|
-
__proto__: null
|
|
970
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
971
|
-
const type$1b = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
972
|
-
__proto__: null
|
|
973
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
974
|
-
const type$1a = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
975
|
-
__proto__: null
|
|
976
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
977
|
-
const type$19 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
978
|
-
__proto__: null
|
|
979
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
980
|
-
const type$18 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
981
|
-
__proto__: null
|
|
982
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
983
|
-
const type$17 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
984
|
-
__proto__: null
|
|
985
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
986
|
-
const type$16 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
987
|
-
__proto__: null
|
|
988
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
989
|
-
const type$15 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
990
|
-
__proto__: null
|
|
991
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
992
|
-
const type$14 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
993
|
-
__proto__: null
|
|
994
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
995
|
-
const type$13 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
996
|
-
__proto__: null
|
|
997
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
998
|
-
const type$12 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
999
|
-
__proto__: null
|
|
1000
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1001
|
-
const type$11 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1002
|
-
__proto__: null
|
|
1003
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1004
|
-
const type$10 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1005
|
-
__proto__: null
|
|
1006
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1007
|
-
const type$$ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1008
|
-
__proto__: null
|
|
1009
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1010
|
-
const type$_ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1011
|
-
__proto__: null
|
|
1012
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1013
|
-
const type$Z = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1014
|
-
__proto__: null
|
|
1015
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1016
|
-
const type$Y = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1017
|
-
__proto__: null
|
|
1018
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1019
|
-
const type$X = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1020
|
-
__proto__: null
|
|
1021
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1022
|
-
var TransferMethod = /* @__PURE__ */ ((TransferMethod2) => {
|
|
1023
|
-
TransferMethod2["toPlatform"] = "transferIn";
|
|
1024
|
-
TransferMethod2["toWallet"] = "transferOut";
|
|
1025
|
-
return TransferMethod2;
|
|
1026
|
-
})(TransferMethod || {});
|
|
1027
|
-
const type$W = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1028
|
-
__proto__: null,
|
|
1029
|
-
TransferMethod
|
|
1030
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1031
|
-
const type$V = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1032
|
-
__proto__: null
|
|
1033
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1034
|
-
const type$U = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1035
|
-
__proto__: null
|
|
1036
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1037
|
-
const type$T = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1038
|
-
__proto__: null
|
|
1039
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1040
|
-
const type$S = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1041
|
-
__proto__: null
|
|
1042
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1043
|
-
const type$R = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1044
|
-
__proto__: null
|
|
1045
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1046
|
-
const type$Q = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1047
|
-
__proto__: null
|
|
1048
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1049
|
-
const type$P = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1050
|
-
__proto__: null
|
|
1051
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1052
|
-
const type$O = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1053
|
-
__proto__: null
|
|
1054
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1055
|
-
const type$N = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1056
|
-
__proto__: null
|
|
1057
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1058
|
-
const type$M = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1059
|
-
__proto__: null
|
|
1060
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1061
|
-
const type$L = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1062
|
-
__proto__: null
|
|
1063
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1064
|
-
const type$K = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1065
|
-
__proto__: null
|
|
1066
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1067
|
-
const type$J = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1068
|
-
__proto__: null
|
|
1069
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1070
|
-
const type$I = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1071
|
-
__proto__: null
|
|
1072
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1073
|
-
const type$H = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1074
|
-
__proto__: null
|
|
1075
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1076
|
-
const type$G = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1077
|
-
__proto__: null
|
|
1078
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1079
|
-
const type$F = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1080
|
-
__proto__: null
|
|
1081
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1082
|
-
const type$E = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1083
|
-
__proto__: null
|
|
1084
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1085
|
-
const type$D = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1086
|
-
__proto__: null
|
|
1087
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1088
|
-
const type$C = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1089
|
-
__proto__: null
|
|
1090
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1091
|
-
const type$B = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1092
|
-
__proto__: null
|
|
1093
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1094
|
-
var MissionStatus = /* @__PURE__ */ ((MissionStatus2) => {
|
|
1095
|
-
MissionStatus2["inProgress"] = "inProgress";
|
|
1096
|
-
MissionStatus2["collectable"] = "collectable";
|
|
1097
|
-
MissionStatus2["collected"] = "collected";
|
|
1098
|
-
return MissionStatus2;
|
|
1099
|
-
})(MissionStatus || {});
|
|
1100
|
-
const type$A = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1101
|
-
__proto__: null,
|
|
1102
|
-
MissionStatus
|
|
1103
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1104
|
-
const type$z = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1105
|
-
__proto__: null
|
|
1106
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1107
|
-
const type$y = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1108
|
-
__proto__: null
|
|
1109
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1110
|
-
const type$x = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1111
|
-
__proto__: null
|
|
1112
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1113
|
-
const type$w = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1114
|
-
__proto__: null
|
|
1115
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1116
|
-
const type$v = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1117
|
-
__proto__: null
|
|
1118
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1119
|
-
const type$u = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1120
|
-
__proto__: null
|
|
1121
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1122
|
-
var AccumulateDepositStatus = /* @__PURE__ */ ((AccumulateDepositStatus2) => {
|
|
1123
|
-
AccumulateDepositStatus2["inProgress"] = "inProgress";
|
|
1124
|
-
AccumulateDepositStatus2["collectable"] = "collectable";
|
|
1125
|
-
AccumulateDepositStatus2["collected"] = "collected";
|
|
1126
|
-
return AccumulateDepositStatus2;
|
|
1127
|
-
})(AccumulateDepositStatus || {});
|
|
1128
|
-
const type$t = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1129
|
-
__proto__: null,
|
|
1130
|
-
AccumulateDepositStatus
|
|
1131
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1132
|
-
const type$s = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1133
|
-
__proto__: null
|
|
1134
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1135
|
-
const type$r = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1136
|
-
__proto__: null
|
|
1137
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1138
|
-
const type$q = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1139
|
-
__proto__: null
|
|
1140
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1141
|
-
const type$p = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1142
|
-
__proto__: null
|
|
1143
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1144
|
-
const type$o = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1145
|
-
__proto__: null
|
|
1146
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1147
|
-
const type$n = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1148
|
-
__proto__: null
|
|
1149
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1150
|
-
const type$m = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1151
|
-
__proto__: null
|
|
1152
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1153
|
-
const type$l = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1154
|
-
__proto__: null
|
|
1155
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1156
|
-
const type$k = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1157
|
-
__proto__: null
|
|
1158
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1159
|
-
const type$j = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1160
|
-
__proto__: null
|
|
1161
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1162
|
-
const type$i = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1163
|
-
__proto__: null
|
|
1164
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1165
|
-
const type$h = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1166
|
-
__proto__: null
|
|
1167
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1168
|
-
const type$g = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1169
|
-
__proto__: null
|
|
1170
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1171
|
-
const type$f = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1172
|
-
__proto__: null
|
|
1173
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1174
|
-
const type$e = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1175
|
-
__proto__: null
|
|
1176
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1177
|
-
const type$d = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1178
|
-
__proto__: null
|
|
1179
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1180
|
-
var WheelStatus = /* @__PURE__ */ ((WheelStatus2) => {
|
|
1181
|
-
WheelStatus2["complete"] = "complete";
|
|
1182
|
-
WheelStatus2["pending"] = "pending";
|
|
1183
|
-
return WheelStatus2;
|
|
1184
|
-
})(WheelStatus || {});
|
|
1185
|
-
const type$c = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1186
|
-
__proto__: null,
|
|
1187
|
-
WheelStatus
|
|
1188
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1189
|
-
const type$b = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1190
|
-
__proto__: null
|
|
1191
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1192
|
-
const type$a = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1193
|
-
__proto__: null
|
|
1194
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1195
|
-
const type$9 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1196
|
-
__proto__: null
|
|
1197
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1198
|
-
const type$8 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1199
|
-
__proto__: null
|
|
1200
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1201
|
-
const type$7 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1202
|
-
__proto__: null
|
|
1203
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1204
|
-
const type$6 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1205
|
-
__proto__: null
|
|
1206
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1207
|
-
var NewbieMissionStatus = /* @__PURE__ */ ((NewbieMissionStatus2) => {
|
|
1208
|
-
NewbieMissionStatus2["inProgress"] = "inProgress";
|
|
1209
|
-
NewbieMissionStatus2["collectable"] = "collectable";
|
|
1210
|
-
NewbieMissionStatus2["collected"] = "collected";
|
|
1211
|
-
return NewbieMissionStatus2;
|
|
1212
|
-
})(NewbieMissionStatus || {});
|
|
1213
|
-
const type$5 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1214
|
-
__proto__: null,
|
|
1215
|
-
NewbieMissionStatus
|
|
1216
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1217
|
-
const type$4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1218
|
-
__proto__: null
|
|
1219
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1220
|
-
const type$3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1221
|
-
__proto__: null
|
|
1222
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1223
|
-
const type$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1224
|
-
__proto__: null
|
|
1225
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1226
|
-
const type$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1227
|
-
__proto__: null
|
|
1228
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
1229
|
-
const type = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1230
|
-
__proto__: null
|
|
1231
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
776
|
+
const getAllModules = async () => {
|
|
777
|
+
await ensureModulesLoaded();
|
|
778
|
+
return {
|
|
779
|
+
types: { ...discoveredModules.types }
|
|
780
|
+
};
|
|
781
|
+
};
|
|
782
|
+
const getTypeModuleSync = (name) => discoveredModules.types[name];
|
|
783
|
+
const getAllModulesSync = () => ({
|
|
784
|
+
types: { ...discoveredModules.types }
|
|
785
|
+
});
|
|
786
|
+
const getAllApiNames = () => Object.values(Api);
|
|
787
|
+
const areModulesLoaded = () => modulesLoaded;
|
|
788
|
+
const waitForModules = () => ensureModulesLoaded();
|
|
1232
789
|
export {
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
type$V as agTransferCreditReportType,
|
|
1236
|
-
type$27 as announcementType,
|
|
790
|
+
Api,
|
|
791
|
+
SettingCategory,
|
|
1237
792
|
api,
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
type$1g as applyRedPacketType,
|
|
1241
|
-
type$L as applyReliefFund,
|
|
1242
|
-
type$1h as applySignInType,
|
|
1243
|
-
type$1_ as applyVipBonusType,
|
|
1244
|
-
type$G as applyWeekCard,
|
|
1245
|
-
autoRegisterApi$1 as autoRegisterApi,
|
|
1246
|
-
type$U as betReportType,
|
|
1247
|
-
type$2 as casinoGameListType,
|
|
1248
|
-
type$1U as changePasswordType,
|
|
1249
|
-
type$O as changeWithdrawalCodeType,
|
|
1250
|
-
type$9 as checkGoldEggTokenType,
|
|
1251
|
-
type$8 as checkGoldEggValidateType,
|
|
1252
|
-
type$N as checkRedPacketTokenType,
|
|
1253
|
-
type$1m as checkRedPacketValidateType,
|
|
1254
|
-
type$1b as checkTransferCreditType,
|
|
1255
|
-
type$D as claimIncentiveRebate,
|
|
1256
|
-
type$22 as cmsListType,
|
|
1257
|
-
type$14 as commissionWithdrawType,
|
|
793
|
+
areModulesLoaded,
|
|
794
|
+
autoRegisterApi,
|
|
1258
795
|
config,
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
type$17 as getActiveProductType,
|
|
1270
|
-
type$1f as getCountryType,
|
|
1271
|
-
type$n as getCryptoAddressType,
|
|
1272
|
-
type$o as getCryptoListType,
|
|
1273
|
-
type$1F as getDepositPromotionType,
|
|
1274
|
-
type$1q as getDepositValidateType,
|
|
1275
|
-
type$1S as getEventListType,
|
|
1276
|
-
type$1R as getEventTokenType,
|
|
1277
|
-
type$1Q as getExtraGameType,
|
|
1278
|
-
type$x as getFavouriteGameType,
|
|
1279
|
-
type$4 as getFeedbackType,
|
|
1280
|
-
type$7 as getGoldEggDataType,
|
|
1281
|
-
type$1r as getImageType,
|
|
1282
|
-
type$C as getIncentiveData,
|
|
1283
|
-
type$B as getIncentiveRebate,
|
|
1284
|
-
type$1E as getInviteRewardClaimType,
|
|
1285
|
-
type$1K as getInviteRewardDataType,
|
|
1286
|
-
type$1J as getInviteRewardReportType,
|
|
1287
|
-
type$1B as getInviteRewardSettingType,
|
|
1288
|
-
getMaintenanceModeApi$1 as getMaintenanceModeApi,
|
|
1289
|
-
type$z as getMissionClaim,
|
|
1290
|
-
type$A as getMissionData,
|
|
1291
|
-
type$6 as getNewbieMissionClaimType,
|
|
1292
|
-
type$5 as getNewbieMissionDataType,
|
|
1293
|
-
type$m as getPopoutItemType,
|
|
1294
|
-
type$K as getReliefFundData,
|
|
1295
|
-
type$J as getReliefFundReport,
|
|
1296
|
-
type$1G as getRewardReferralType,
|
|
1297
|
-
type$1W as getSettingType,
|
|
1298
|
-
type$1D as getTopUpRewardClaimType,
|
|
1299
|
-
type$1A as getTopUpRewardSettingType,
|
|
1300
|
-
type$1I as getTopupRewardDataType,
|
|
1301
|
-
type$1H as getTopupRewardReportType,
|
|
1302
|
-
type$1C as getTurnOverRewardClaimType,
|
|
1303
|
-
type$1M as getTurnOverRewardDataType,
|
|
1304
|
-
type$1L as getTurnOverRewardReportType,
|
|
1305
|
-
type$l as getTurnOverRewardSettingMultType,
|
|
1306
|
-
type$1z as getTurnOverRewardSettingType,
|
|
1307
|
-
type$T as getTwoFactorAuthenticateType,
|
|
1308
|
-
type$R as getUserDeviceListType,
|
|
1309
|
-
type$1l as getUserProfileType,
|
|
1310
|
-
type$1j as getUsernameByReferType,
|
|
1311
|
-
type$1s as getVerifyPromo,
|
|
1312
|
-
type$b as getWeekCardAllDataType,
|
|
1313
|
-
type$I as getWeekCardClaim,
|
|
1314
|
-
type$H as getWeekCardData,
|
|
1315
|
-
type$e as getWheelDataType,
|
|
1316
|
-
type$c as getWheelReportType,
|
|
1317
|
-
type$d as getWheelTicketType,
|
|
1318
|
-
type$1p as getWithdrawValidateType,
|
|
1319
|
-
type$k as interestIndexType,
|
|
1320
|
-
type$j as interestTransactionListType,
|
|
1321
|
-
type$i as interestTransferInType,
|
|
1322
|
-
type$h as interestTransferOutType,
|
|
1323
|
-
type$g as interestWalletInfoType,
|
|
1324
|
-
type$1 as isMobileRegisteredType,
|
|
1325
|
-
jackpotDataApi$1 as jackpotDataApi,
|
|
1326
|
-
loadMatchApi$1 as loadMatchApi,
|
|
1327
|
-
loginApi$1 as loginApi,
|
|
1328
|
-
type$29 as loginType,
|
|
1329
|
-
logoutApi$1 as logoutApi,
|
|
1330
|
-
type$28 as logoutType,
|
|
1331
|
-
type$1P as mailBoxType,
|
|
1332
|
-
type$21 as mainWalletType,
|
|
1333
|
-
type$26 as paymentsProviderType,
|
|
1334
|
-
type$1v as playGame,
|
|
1335
|
-
type$1v as playGameType,
|
|
796
|
+
getAllApiNames,
|
|
797
|
+
getAllModules,
|
|
798
|
+
getAllModulesSync,
|
|
799
|
+
getMaintenanceModeApi,
|
|
800
|
+
getTypeModule,
|
|
801
|
+
getTypeModuleSync,
|
|
802
|
+
jackpotDataApi,
|
|
803
|
+
loadMatchApi,
|
|
804
|
+
loginApi,
|
|
805
|
+
logoutApi,
|
|
1336
806
|
post,
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
type$Z as referralProfileType,
|
|
1342
|
-
type$X as registerActionType,
|
|
1343
|
-
type$y as registerFormType,
|
|
1344
|
-
type$1y as requestForgetPasswordType,
|
|
1345
|
-
type$v as requestForgetUsernameType,
|
|
1346
|
-
type$1k as requestTacCodeType,
|
|
1347
|
-
type$11 as requestTransferMoneyType,
|
|
1348
|
-
type$1u as requestUpdateMobileTacCode,
|
|
1349
|
-
type$16 as requestWithdrawTacType,
|
|
1350
|
-
type$15 as requestWithdrawalCodeType,
|
|
1351
|
-
type$P as searchNumberHistoryType,
|
|
1352
|
-
setLocaleApi$1 as setLocaleApi,
|
|
1353
|
-
type$_ as signInRecordType,
|
|
1354
|
-
type$$ as signInViewInfoType,
|
|
1355
|
-
type$1N as slotGameListType,
|
|
1356
|
-
type$f as spinWheelType,
|
|
1357
|
-
type$12 as submitCryptoAccountType,
|
|
1358
|
-
type$3 as submitFeedbackType,
|
|
1359
|
-
type$1x as submitForgetPasswordType,
|
|
1360
|
-
type$u as submitForgetUsernameType,
|
|
1361
|
-
type$1w as submitGiftCode,
|
|
1362
|
-
type$1w as submitGiftCodeType,
|
|
1363
|
-
type$10 as submitTransferMoneyType,
|
|
1364
|
-
type$S as submitTwoFactorAuthenticateType,
|
|
1365
|
-
type$1t as submitUpdateMobileTacCode,
|
|
1366
|
-
type$1c as submitValidateType,
|
|
1367
|
-
type$M as submitWithdrawalAlipayType,
|
|
1368
|
-
type$13 as submitWithdrawalCodeType,
|
|
1369
|
-
telegramLoginApi$1 as telegramLoginApi,
|
|
1370
|
-
type$1V as transactionReportType,
|
|
1371
|
-
type$1d as transferProcessType,
|
|
1372
|
-
type$W as transferReportType,
|
|
1373
|
-
type$1e as transferToMainType,
|
|
1374
|
-
type$E as transferType,
|
|
1375
|
-
type$F as transfersettingType,
|
|
1376
|
-
type$Q as unbindUserDeviceType,
|
|
1377
|
-
type$20 as upcomingMatchType,
|
|
1378
|
-
type$p as updateDeviceTokenType,
|
|
1379
|
-
type$w as updateFavouriteGameType,
|
|
1380
|
-
type$1o as updateProfilePictureType,
|
|
1381
|
-
type$24 as vipListType,
|
|
1382
|
-
type$1T as walletType,
|
|
1383
|
-
type$1X as withdrawType,
|
|
1384
|
-
type$1Z as withdrawalGetType
|
|
807
|
+
rename,
|
|
808
|
+
setLocaleApi,
|
|
809
|
+
telegramLoginApi,
|
|
810
|
+
waitForModules
|
|
1385
811
|
};
|