60p82u21t54k 1.0.1 → 1.0.3

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