60p82u21t54k 1.0.3 → 1.0.4

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.
@@ -212,6 +212,10 @@ 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" }));
215
219
  const registerAllApiModels = async () => {
216
220
  const allApiNames = Object.values(Api);
217
221
  const registrationResults = {
@@ -429,85 +433,57 @@ const api = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty(
429
433
  __proto__: null,
430
434
  post
431
435
  }, Symbol.toStringTag, { value: "Module" }));
432
- const DefaultAutoRegisterData = {
433
- data: {
434
- status: false,
435
- message: "",
436
- data: {
437
- account: "",
438
- password: "",
439
- accountId: 0
440
- }
441
- }
442
- };
443
- const autoRegisterApi = async () => {
436
+ const telegramLoginApi = async (data) => {
444
437
  let result = {
445
438
  status: 200,
446
- message: "",
447
- ...DefaultAutoRegisterData
439
+ message: ""
448
440
  };
449
441
  try {
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
- }
442
+ await axiosInstance.post("/loginVia/telegram", data);
443
+ result = {
444
+ status: 200,
445
+ message: ""
460
446
  };
461
447
  } catch (error) {
462
448
  const extendedError = error;
463
449
  result = {
464
450
  status: extendedError.status || 500,
465
- message: error.message,
466
- ...DefaultAutoRegisterData
451
+ message: error.message
467
452
  };
468
453
  }
469
454
  return result;
470
455
  };
471
- const DefaultGetMaintenanceModeData = {
472
- data: {
473
- status: false,
474
- message: "",
475
- data: {
476
- isMaintenance: false,
477
- startTime: "",
478
- endTime: ""
479
- }
480
- }
481
- };
482
- const getMaintenanceModeApi = async () => {
483
- var _a, _b, _c;
456
+ const telegramLoginApi$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
457
+ __proto__: null,
458
+ telegramLoginApi
459
+ }, Symbol.toStringTag, { value: "Module" }));
460
+ const loginApi = async (username, password) => {
484
461
  let result = {
485
462
  status: 200,
486
- message: "",
487
- ...DefaultGetMaintenanceModeData
463
+ message: ""
488
464
  };
489
465
  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
- }
466
+ await axiosInstance.post("/graph/auth/sesh", {
467
+ usr: username,
468
+ pwd: password
469
+ });
470
+ result = {
471
+ status: 200,
472
+ message: ""
500
473
  };
501
474
  } catch (error) {
502
475
  const extendedError = error;
503
476
  result = {
504
477
  status: extendedError.status || 500,
505
- message: error.message,
506
- ...DefaultGetMaintenanceModeData
478
+ message: error.message
507
479
  };
508
480
  }
509
481
  return result;
510
482
  };
483
+ const loginApi$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
484
+ __proto__: null,
485
+ loginApi
486
+ }, Symbol.toStringTag, { value: "Module" }));
511
487
  const DefaultjackpotData = {
512
488
  data: {
513
489
  startTimestamp: 0,
@@ -541,70 +517,10 @@ const jackpotDataApi = async () => {
541
517
  }
542
518
  return result;
543
519
  };
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
561
- }
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
- };
582
- }
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
- };
520
+ const jackpotDataApi$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
521
+ __proto__: null,
522
+ jackpotDataApi
523
+ }, Symbol.toStringTag, { value: "Module" }));
608
524
  const logoutApi = async () => {
609
525
  let result = {
610
526
  status: 200,
@@ -621,30 +537,53 @@ const logoutApi = async () => {
621
537
  }
622
538
  return result;
623
539
  };
624
- const rename = async (fullname) => {
540
+ const logoutApi$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
541
+ __proto__: null,
542
+ logoutApi
543
+ }, Symbol.toStringTag, { value: "Module" }));
544
+ const DefaultAutoRegisterData = {
545
+ data: {
546
+ status: false,
547
+ message: "",
548
+ data: {
549
+ account: "",
550
+ password: "",
551
+ accountId: 0
552
+ }
553
+ }
554
+ };
555
+ const autoRegisterApi = async () => {
625
556
  let result = {
626
557
  status: 200,
627
- message: ""
558
+ message: "",
559
+ ...DefaultAutoRegisterData
628
560
  };
629
561
  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 : ""
562
+ const request = await axiosInstance.get("/graph/autoregister");
563
+ const output = request.data;
564
+ result.data = {
565
+ status: output.status == 1,
566
+ message: output.message ?? "",
567
+ data: {
568
+ account: output.data.accountcode,
569
+ password: output.data.password,
570
+ accountId: output.data.accountid
571
+ }
638
572
  };
639
573
  } catch (error) {
640
574
  const extendedError = error;
641
575
  result = {
642
576
  status: extendedError.status || 500,
643
- message: error.message
577
+ message: error.message,
578
+ ...DefaultAutoRegisterData
644
579
  };
645
580
  }
646
581
  return result;
647
582
  };
583
+ const autoRegisterApi$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
584
+ __proto__: null,
585
+ autoRegisterApi
586
+ }, Symbol.toStringTag, { value: "Module" }));
648
587
  const DefaultSetLocaleData = {
649
588
  data: {
650
589
  status: false,
@@ -679,33 +618,128 @@ const setLocaleApi = async (localeCode, udid) => {
679
618
  }
680
619
  return result;
681
620
  };
682
- const telegramLoginApi = async (data) => {
621
+ const setLocaleApi$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
622
+ __proto__: null,
623
+ setLocaleApi
624
+ }, Symbol.toStringTag, { value: "Module" }));
625
+ const loadMatchApi = async (gameId, stage, sportId, tagId, matchId) => {
683
626
  let result = {
684
627
  status: 200,
685
- message: ""
628
+ message: "",
629
+ data: {
630
+ message: "",
631
+ urlLink: ""
632
+ }
686
633
  };
687
634
  try {
688
- await axiosInstance.post("/loginVia/telegram", data);
635
+ const request = await axiosInstance.post(`/loadgame/${gameId}`, {
636
+ wanturl: 1,
637
+ extra: {
638
+ Stage: stage,
639
+ SportId: sportId,
640
+ tagid: tagId,
641
+ MatchId: matchId
642
+ }
643
+ });
644
+ const output = request.data;
689
645
  result = {
690
646
  status: 200,
691
- message: ""
647
+ message: "",
648
+ data: {
649
+ message: output.msg ?? "",
650
+ urlLink: output.data ?? ""
651
+ }
692
652
  };
693
653
  } catch (error) {
694
654
  const extendedError = error;
695
655
  result = {
696
656
  status: extendedError.status || 500,
697
- message: error.message
657
+ message: error.message,
658
+ data: {
659
+ message: "",
660
+ urlLink: ""
661
+ }
662
+ };
663
+ }
664
+ return result;
665
+ };
666
+ const loadMatchApi$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
667
+ __proto__: null,
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
+ }
680
+ };
681
+ const getMaintenanceModeApi = async () => {
682
+ var _a, _b, _c;
683
+ let result = {
684
+ status: 200,
685
+ message: "",
686
+ ...DefaultGetMaintenanceModeData
687
+ };
688
+ try {
689
+ const request = await axiosInstance.get("/graph/getMaintenanceMode");
690
+ const output = request.data;
691
+ result.data = {
692
+ status: output.status == 1,
693
+ message: output.msg ?? "",
694
+ data: {
695
+ isMaintenance: ((_a = output.data) == null ? void 0 : _a.maintenanceMode) == "1",
696
+ startTime: ((_b = output.data) == null ? void 0 : _b.startTime) ?? "",
697
+ endTime: ((_c = output.data) == null ? void 0 : _c.endTime) ?? ""
698
+ }
699
+ };
700
+ } catch (error) {
701
+ const extendedError = error;
702
+ result = {
703
+ status: extendedError.status || 500,
704
+ message: error.message,
705
+ ...DefaultGetMaintenanceModeData
698
706
  };
699
707
  }
700
708
  return result;
701
709
  };
702
- const announcementType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
710
+ const getMaintenanceModeApi$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
711
+ __proto__: null,
712
+ getMaintenanceModeApi
713
+ }, Symbol.toStringTag, { value: "Module" }));
714
+ const type$29 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
715
+ __proto__: null
716
+ }, Symbol.toStringTag, { value: "Module" }));
717
+ const type$28 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
718
+ __proto__: null
719
+ }, Symbol.toStringTag, { value: "Module" }));
720
+ const type$27 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
721
+ __proto__: null
722
+ }, Symbol.toStringTag, { value: "Module" }));
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({
703
737
  __proto__: null
704
738
  }, Symbol.toStringTag, { value: "Module" }));
705
- const gameListType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
739
+ const type$24 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
706
740
  __proto__: null
707
741
  }, Symbol.toStringTag, { value: "Module" }));
708
- const fishGameListType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
742
+ const type$23 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
709
743
  __proto__: null
710
744
  }, Symbol.toStringTag, { value: "Module" }));
711
745
  var CmsCategory = /* @__PURE__ */ ((CmsCategory2) => {
@@ -719,39 +753,29 @@ var CmsCategory = /* @__PURE__ */ ((CmsCategory2) => {
719
753
  CmsCategory2["eventPopupBotRight"] = "eventPopupBotRight";
720
754
  return CmsCategory2;
721
755
  })(CmsCategory || {});
722
- const cmsListType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
756
+ const type$22 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
723
757
  __proto__: null,
724
758
  CmsCategory
725
759
  }, 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
760
+ const type$21 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
761
+ __proto__: null
738
762
  }, Symbol.toStringTag, { value: "Module" }));
739
- const getUserProfileType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
763
+ const type$20 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
740
764
  __proto__: null
741
765
  }, Symbol.toStringTag, { value: "Module" }));
742
- const vipListType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
766
+ const type$1$ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
743
767
  __proto__: null
744
768
  }, Symbol.toStringTag, { value: "Module" }));
745
- const vipStatusType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
769
+ const type$1_ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
746
770
  __proto__: null
747
771
  }, Symbol.toStringTag, { value: "Module" }));
748
- const vipBonusType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
772
+ const type$1Z = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
749
773
  __proto__: null
750
774
  }, Symbol.toStringTag, { value: "Module" }));
751
- const vipFieldStatusType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
775
+ const type$1Y = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
752
776
  __proto__: null
753
777
  }, Symbol.toStringTag, { value: "Module" }));
754
- const promotionType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
778
+ const type$1X = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
755
779
  __proto__: null
756
780
  }, Symbol.toStringTag, { value: "Module" }));
757
781
  var SettingCategory = /* @__PURE__ */ ((SettingCategory2) => {
@@ -777,58 +801,10 @@ var SettingCategory = /* @__PURE__ */ ((SettingCategory2) => {
777
801
  SettingCategory2["agentLinkFirstRedirect"] = "agentlink_first_redirect";
778
802
  return SettingCategory2;
779
803
  })(SettingCategory || {});
780
- const getSettingType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
804
+ const type$1W = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
781
805
  __proto__: null,
782
806
  SettingCategory
783
807
  }, 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
808
  var TransactionMethod = /* @__PURE__ */ ((TransactionMethod2) => {
833
809
  TransactionMethod2["deposit"] = "deposit";
834
810
  TransactionMethod2["withdraw"] = "withdraw";
@@ -844,203 +820,203 @@ var TransactionMethod = /* @__PURE__ */ ((TransactionMethod2) => {
844
820
  TransactionMethod2["shareHolder"] = "shareHolderDividend";
845
821
  return TransactionMethod2;
846
822
  })(TransactionMethod || {});
847
- const transactionReportType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
823
+ const type$1V = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
848
824
  __proto__: null,
849
825
  TransactionMethod
850
826
  }, Symbol.toStringTag, { value: "Module" }));
851
- const changePasswordType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
827
+ const type$1U = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
852
828
  __proto__: null
853
829
  }, Symbol.toStringTag, { value: "Module" }));
854
- const walletType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
830
+ const type$1T = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
855
831
  __proto__: null
856
832
  }, Symbol.toStringTag, { value: "Module" }));
857
- const getEventlistType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
833
+ const type$1S = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
858
834
  __proto__: null
859
835
  }, Symbol.toStringTag, { value: "Module" }));
860
- const getEventTokenType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
836
+ const type$1R = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
861
837
  __proto__: null
862
838
  }, Symbol.toStringTag, { value: "Module" }));
863
- const getExtraGameType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
839
+ const type$1Q = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
864
840
  __proto__: null
865
841
  }, Symbol.toStringTag, { value: "Module" }));
866
- const mailBoxType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
842
+ const type$1P = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
867
843
  __proto__: null
868
844
  }, Symbol.toStringTag, { value: "Module" }));
869
- const slotGameListType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
845
+ const type$1O = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
870
846
  __proto__: null
871
847
  }, Symbol.toStringTag, { value: "Module" }));
872
- const getTurnOverRewardDataType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
848
+ const type$1N = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
873
849
  __proto__: null
874
850
  }, Symbol.toStringTag, { value: "Module" }));
875
- const getTurnOverRewardReportType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
851
+ const type$1M = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
876
852
  __proto__: null
877
853
  }, Symbol.toStringTag, { value: "Module" }));
878
- const getInviteRewardDataType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
854
+ const type$1L = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
879
855
  __proto__: null
880
856
  }, Symbol.toStringTag, { value: "Module" }));
881
- const getInviteRewardReportType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
857
+ const type$1K = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
882
858
  __proto__: null
883
859
  }, Symbol.toStringTag, { value: "Module" }));
884
- const getTopupRewardDataType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
860
+ const type$1J = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
885
861
  __proto__: null
886
862
  }, Symbol.toStringTag, { value: "Module" }));
887
- const getTopupRewardReportType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
863
+ const type$1I = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
888
864
  __proto__: null
889
865
  }, Symbol.toStringTag, { value: "Module" }));
890
- const getRewardReferralType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
866
+ const type$1H = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
891
867
  __proto__: null
892
868
  }, Symbol.toStringTag, { value: "Module" }));
893
- const getDepositPromotionType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
869
+ const type$1G = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
894
870
  __proto__: null
895
871
  }, Symbol.toStringTag, { value: "Module" }));
896
- const getInviteRewardClaimType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
872
+ const type$1F = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
897
873
  __proto__: null
898
874
  }, Symbol.toStringTag, { value: "Module" }));
899
- const getTopupRewardClaimType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
875
+ const type$1E = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
900
876
  __proto__: null
901
877
  }, Symbol.toStringTag, { value: "Module" }));
902
- const getTurnOverRewardClaimType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
878
+ const type$1D = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
903
879
  __proto__: null
904
880
  }, Symbol.toStringTag, { value: "Module" }));
905
- const getInviteRewardSettingType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
881
+ const type$1C = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
906
882
  __proto__: null
907
883
  }, Symbol.toStringTag, { value: "Module" }));
908
- const getTopupRewardSettingType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
884
+ const type$1B = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
909
885
  __proto__: null
910
886
  }, Symbol.toStringTag, { value: "Module" }));
911
- const getTurnOverRewardSettingType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
887
+ const type$1A = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
912
888
  __proto__: null
913
889
  }, Symbol.toStringTag, { value: "Module" }));
914
- const requestForgetPasswordType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
890
+ const type$1z = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
915
891
  __proto__: null
916
892
  }, Symbol.toStringTag, { value: "Module" }));
917
- const submitForgetPasswordType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
893
+ const type$1y = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
918
894
  __proto__: null
919
895
  }, 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({
896
+ const type$1x = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
933
897
  __proto__: null
934
898
  }, Symbol.toStringTag, { value: "Module" }));
935
- const getTransferCreditValidateType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
899
+ const type$1w = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
936
900
  __proto__: null
937
901
  }, Symbol.toStringTag, { value: "Module" }));
938
- const getWithdrawValidateType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
902
+ const type$1v = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
939
903
  __proto__: null
940
904
  }, Symbol.toStringTag, { value: "Module" }));
941
- const updateProfilePictureType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
905
+ const type$1u = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
942
906
  __proto__: null
943
907
  }, Symbol.toStringTag, { value: "Module" }));
944
- const readMailType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
908
+ const type$1t = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
945
909
  __proto__: null
946
910
  }, Symbol.toStringTag, { value: "Module" }));
947
- const checkRedpacketValidateType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
911
+ const type$1s = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
948
912
  __proto__: null
949
913
  }, Symbol.toStringTag, { value: "Module" }));
950
- const requestTacCodeType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
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({
951
927
  __proto__: null
952
928
  }, Symbol.toStringTag, { value: "Module" }));
953
- const getUsernameByReferType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
929
+ const type$1p = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
954
930
  __proto__: null
955
931
  }, Symbol.toStringTag, { value: "Module" }));
956
- const applyPromoType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
932
+ const type$1o = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
957
933
  __proto__: null
958
934
  }, Symbol.toStringTag, { value: "Module" }));
959
- const applyRedpacketType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
935
+ const type$1n = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
960
936
  __proto__: null
961
937
  }, Symbol.toStringTag, { value: "Module" }));
962
- const applySignInType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
938
+ const type$1m = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
963
939
  __proto__: null
964
940
  }, Symbol.toStringTag, { value: "Module" }));
965
- const getCountryType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
941
+ const type$1l = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
966
942
  __proto__: null
967
943
  }, Symbol.toStringTag, { value: "Module" }));
968
- const submitGiftCodeType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
944
+ const type$1k = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
969
945
  __proto__: null
970
946
  }, Symbol.toStringTag, { value: "Module" }));
971
- const playGameType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
947
+ const type$1j = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
972
948
  __proto__: null
973
949
  }, Symbol.toStringTag, { value: "Module" }));
974
- const transferToMainType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
950
+ const type$1i = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
975
951
  __proto__: null
976
952
  }, Symbol.toStringTag, { value: "Module" }));
977
- const transferProcessType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
953
+ const type$1h = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
978
954
  __proto__: null
979
955
  }, Symbol.toStringTag, { value: "Module" }));
980
- const submitDepositValidateType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
956
+ const type$1g = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
981
957
  __proto__: null
982
958
  }, Symbol.toStringTag, { value: "Module" }));
983
- const submitTransferCreditValidateType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
959
+ const type$1f = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
984
960
  __proto__: null
985
961
  }, Symbol.toStringTag, { value: "Module" }));
986
- const checkTransferCreditType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
962
+ const type$1e = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
987
963
  __proto__: null
988
964
  }, Symbol.toStringTag, { value: "Module" }));
989
- const friendListType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
965
+ const type$1d = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
990
966
  __proto__: null
991
967
  }, Symbol.toStringTag, { value: "Module" }));
992
- const friendListEditType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
968
+ const type$1c = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
993
969
  __proto__: null
994
970
  }, Symbol.toStringTag, { value: "Module" }));
995
- const getActivePPType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
971
+ const type$1b = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
996
972
  __proto__: null
997
973
  }, Symbol.toStringTag, { value: "Module" }));
998
- const getActiveProductType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
974
+ const type$1a = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
999
975
  __proto__: null
1000
976
  }, Symbol.toStringTag, { value: "Module" }));
1001
- const requestWithdrawTacType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
977
+ const type$19 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1002
978
  __proto__: null
1003
979
  }, Symbol.toStringTag, { value: "Module" }));
1004
- const requestWithdrawalCodeType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
980
+ const type$18 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1005
981
  __proto__: null
1006
982
  }, Symbol.toStringTag, { value: "Module" }));
1007
- const commissionWithdrawType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
983
+ const type$17 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1008
984
  __proto__: null
1009
985
  }, Symbol.toStringTag, { value: "Module" }));
1010
- const submitWithdrawalCodeType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
986
+ const type$16 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1011
987
  __proto__: null
1012
988
  }, Symbol.toStringTag, { value: "Module" }));
1013
- const submitCryptoAccountType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
989
+ const type$15 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1014
990
  __proto__: null
1015
991
  }, Symbol.toStringTag, { value: "Module" }));
1016
- const requestTransferMoneyType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
992
+ const type$14 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1017
993
  __proto__: null
1018
994
  }, Symbol.toStringTag, { value: "Module" }));
1019
- const submitTransferMoneyType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
995
+ const type$13 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1020
996
  __proto__: null
1021
997
  }, Symbol.toStringTag, { value: "Module" }));
1022
- const getVerifyPromoType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
998
+ const type$12 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1023
999
  __proto__: null
1024
1000
  }, Symbol.toStringTag, { value: "Module" }));
1025
- const requestUpdateMobileTacCodeType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1001
+ const type$11 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1026
1002
  __proto__: null
1027
1003
  }, Symbol.toStringTag, { value: "Module" }));
1028
- const submitUpdateMobileTacCodeType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1004
+ const type$10 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1029
1005
  __proto__: null
1030
1006
  }, Symbol.toStringTag, { value: "Module" }));
1031
- const signInViewInfoType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1007
+ const type$$ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1032
1008
  __proto__: null
1033
1009
  }, Symbol.toStringTag, { value: "Module" }));
1034
- const signInRecordType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1010
+ const type$_ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1035
1011
  __proto__: null
1036
1012
  }, Symbol.toStringTag, { value: "Module" }));
1037
- const referralProfileType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1013
+ const type$Z = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1038
1014
  __proto__: null
1039
1015
  }, Symbol.toStringTag, { value: "Module" }));
1040
- const referralMemberProfileType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1016
+ const type$Y = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1041
1017
  __proto__: null
1042
1018
  }, Symbol.toStringTag, { value: "Module" }));
1043
- const registerActionType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1019
+ const type$X = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1044
1020
  __proto__: null
1045
1021
  }, Symbol.toStringTag, { value: "Module" }));
1046
1022
  var TransferMethod = /* @__PURE__ */ ((TransferMethod2) => {
@@ -1048,71 +1024,71 @@ var TransferMethod = /* @__PURE__ */ ((TransferMethod2) => {
1048
1024
  TransferMethod2["toWallet"] = "transferOut";
1049
1025
  return TransferMethod2;
1050
1026
  })(TransferMethod || {});
1051
- const transferReportType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1027
+ const type$W = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1052
1028
  __proto__: null,
1053
1029
  TransferMethod
1054
1030
  }, Symbol.toStringTag, { value: "Module" }));
1055
- const agTransferCreditReportType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1031
+ const type$V = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1056
1032
  __proto__: null
1057
1033
  }, Symbol.toStringTag, { value: "Module" }));
1058
- const betReportType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1034
+ const type$U = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1059
1035
  __proto__: null
1060
1036
  }, Symbol.toStringTag, { value: "Module" }));
1061
- const getTwoFactorAuthenticateType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1037
+ const type$T = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1062
1038
  __proto__: null
1063
1039
  }, Symbol.toStringTag, { value: "Module" }));
1064
- const submitTwoFactorAuthenticateType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1040
+ const type$S = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1065
1041
  __proto__: null
1066
1042
  }, Symbol.toStringTag, { value: "Module" }));
1067
- const getUserDeviceListType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1043
+ const type$R = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1068
1044
  __proto__: null
1069
1045
  }, Symbol.toStringTag, { value: "Module" }));
1070
- const unbindUserDeviceType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1046
+ const type$Q = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1071
1047
  __proto__: null
1072
1048
  }, Symbol.toStringTag, { value: "Module" }));
1073
- const searchNumberHistoryType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1049
+ const type$P = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1074
1050
  __proto__: null
1075
1051
  }, Symbol.toStringTag, { value: "Module" }));
1076
- const changeWithdrawalCodeType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1052
+ const type$O = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1077
1053
  __proto__: null
1078
1054
  }, Symbol.toStringTag, { value: "Module" }));
1079
- const checkRedPacketTokenType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1055
+ const type$N = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1080
1056
  __proto__: null
1081
1057
  }, Symbol.toStringTag, { value: "Module" }));
1082
- const submitWithdrawalAlipayType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1058
+ const type$M = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1083
1059
  __proto__: null
1084
1060
  }, Symbol.toStringTag, { value: "Module" }));
1085
- const applyReliefFundType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1061
+ const type$L = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1086
1062
  __proto__: null
1087
1063
  }, Symbol.toStringTag, { value: "Module" }));
1088
- const getReliefFundDataType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1064
+ const type$K = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1089
1065
  __proto__: null
1090
1066
  }, Symbol.toStringTag, { value: "Module" }));
1091
- const getReliefFundReportType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1067
+ const type$J = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1092
1068
  __proto__: null
1093
1069
  }, Symbol.toStringTag, { value: "Module" }));
1094
- const getWeekCardDataType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1070
+ const type$I = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1095
1071
  __proto__: null
1096
1072
  }, Symbol.toStringTag, { value: "Module" }));
1097
- const getWeekCardClaimType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1073
+ const type$H = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1098
1074
  __proto__: null
1099
1075
  }, Symbol.toStringTag, { value: "Module" }));
1100
- const applyWeekCardType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1076
+ const type$G = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1101
1077
  __proto__: null
1102
1078
  }, Symbol.toStringTag, { value: "Module" }));
1103
- const transfersettingType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1079
+ const type$F = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1104
1080
  __proto__: null
1105
1081
  }, Symbol.toStringTag, { value: "Module" }));
1106
- const transferType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1082
+ const type$E = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1107
1083
  __proto__: null
1108
1084
  }, Symbol.toStringTag, { value: "Module" }));
1109
- const getIncentiveDataType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1085
+ const type$D = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1110
1086
  __proto__: null
1111
1087
  }, Symbol.toStringTag, { value: "Module" }));
1112
- const getIncentiveRebateType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1088
+ const type$C = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1113
1089
  __proto__: null
1114
1090
  }, Symbol.toStringTag, { value: "Module" }));
1115
- const claimIncentiveRebateType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1091
+ const type$B = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1116
1092
  __proto__: null
1117
1093
  }, Symbol.toStringTag, { value: "Module" }));
1118
1094
  var MissionStatus = /* @__PURE__ */ ((MissionStatus2) => {
@@ -1121,26 +1097,26 @@ var MissionStatus = /* @__PURE__ */ ((MissionStatus2) => {
1121
1097
  MissionStatus2["collected"] = "collected";
1122
1098
  return MissionStatus2;
1123
1099
  })(MissionStatus || {});
1124
- const getMissionDataType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1100
+ const type$A = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1125
1101
  __proto__: null,
1126
1102
  MissionStatus
1127
1103
  }, Symbol.toStringTag, { value: "Module" }));
1128
- const getMissionClaimType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1104
+ const type$z = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1129
1105
  __proto__: null
1130
1106
  }, Symbol.toStringTag, { value: "Module" }));
1131
- const registerFormType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1107
+ const type$y = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1132
1108
  __proto__: null
1133
1109
  }, Symbol.toStringTag, { value: "Module" }));
1134
- const getFavouriteGameType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1110
+ const type$x = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1135
1111
  __proto__: null
1136
1112
  }, Symbol.toStringTag, { value: "Module" }));
1137
- const updateFavouriteGameType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1113
+ const type$w = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1138
1114
  __proto__: null
1139
1115
  }, Symbol.toStringTag, { value: "Module" }));
1140
- const requestForgetUsernameType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1116
+ const type$v = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1141
1117
  __proto__: null
1142
1118
  }, Symbol.toStringTag, { value: "Module" }));
1143
- const submitForgetUsernameType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1119
+ const type$u = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1144
1120
  __proto__: null
1145
1121
  }, Symbol.toStringTag, { value: "Module" }));
1146
1122
  var AccumulateDepositStatus = /* @__PURE__ */ ((AccumulateDepositStatus2) => {
@@ -1149,56 +1125,56 @@ var AccumulateDepositStatus = /* @__PURE__ */ ((AccumulateDepositStatus2) => {
1149
1125
  AccumulateDepositStatus2["collected"] = "collected";
1150
1126
  return AccumulateDepositStatus2;
1151
1127
  })(AccumulateDepositStatus || {});
1152
- const getAccumulateDepositDataType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1128
+ const type$t = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1153
1129
  __proto__: null,
1154
1130
  AccumulateDepositStatus
1155
1131
  }, Symbol.toStringTag, { value: "Module" }));
1156
- const getAccumulateDepositClaimType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1132
+ const type$s = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1157
1133
  __proto__: null
1158
1134
  }, Symbol.toStringTag, { value: "Module" }));
1159
- const rebateRefundSettingType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1135
+ const type$r = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1160
1136
  __proto__: null
1161
1137
  }, Symbol.toStringTag, { value: "Module" }));
1162
- const getASCMatchCountType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1138
+ const type$q = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1163
1139
  __proto__: null
1164
1140
  }, Symbol.toStringTag, { value: "Module" }));
1165
- const updateDeviceTokenType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1141
+ const type$p = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1166
1142
  __proto__: null
1167
1143
  }, Symbol.toStringTag, { value: "Module" }));
1168
- const getCryptoListType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1144
+ const type$o = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1169
1145
  __proto__: null
1170
1146
  }, Symbol.toStringTag, { value: "Module" }));
1171
- const getCryptoAddressType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1147
+ const type$n = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1172
1148
  __proto__: null
1173
1149
  }, Symbol.toStringTag, { value: "Module" }));
1174
- const getPopoutItemType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1150
+ const type$m = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1175
1151
  __proto__: null
1176
1152
  }, Symbol.toStringTag, { value: "Module" }));
1177
- const getTurnOverRewardSettingMultType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1153
+ const type$l = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1178
1154
  __proto__: null
1179
1155
  }, Symbol.toStringTag, { value: "Module" }));
1180
- const interestIndexType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1156
+ const type$k = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1181
1157
  __proto__: null
1182
1158
  }, Symbol.toStringTag, { value: "Module" }));
1183
- const interestWalletInfoType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1159
+ const type$j = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1184
1160
  __proto__: null
1185
1161
  }, Symbol.toStringTag, { value: "Module" }));
1186
- const interestTransactionListType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1162
+ const type$i = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1187
1163
  __proto__: null
1188
1164
  }, Symbol.toStringTag, { value: "Module" }));
1189
- const interestTransferInType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1165
+ const type$h = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1190
1166
  __proto__: null
1191
1167
  }, Symbol.toStringTag, { value: "Module" }));
1192
- const interestTransferOutType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1168
+ const type$g = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1193
1169
  __proto__: null
1194
1170
  }, Symbol.toStringTag, { value: "Module" }));
1195
- const getWheelDataType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1171
+ const type$f = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1196
1172
  __proto__: null
1197
1173
  }, Symbol.toStringTag, { value: "Module" }));
1198
- const getWheelTicketType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1174
+ const type$e = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1199
1175
  __proto__: null
1200
1176
  }, Symbol.toStringTag, { value: "Module" }));
1201
- const spinWheelType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1177
+ const type$d = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1202
1178
  __proto__: null
1203
1179
  }, Symbol.toStringTag, { value: "Module" }));
1204
1180
  var WheelStatus = /* @__PURE__ */ ((WheelStatus2) => {
@@ -1206,26 +1182,26 @@ var WheelStatus = /* @__PURE__ */ ((WheelStatus2) => {
1206
1182
  WheelStatus2["pending"] = "pending";
1207
1183
  return WheelStatus2;
1208
1184
  })(WheelStatus || {});
1209
- const getWheelReportType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1185
+ const type$c = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1210
1186
  __proto__: null,
1211
1187
  WheelStatus
1212
1188
  }, Symbol.toStringTag, { value: "Module" }));
1213
- const getWeekCardAllDataType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1189
+ const type$b = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1214
1190
  __proto__: null
1215
1191
  }, Symbol.toStringTag, { value: "Module" }));
1216
- const searchGameByNameType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1192
+ const type$a = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1217
1193
  __proto__: null
1218
1194
  }, Symbol.toStringTag, { value: "Module" }));
1219
- const checkGoldEggValidateType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1195
+ const type$9 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1220
1196
  __proto__: null
1221
1197
  }, Symbol.toStringTag, { value: "Module" }));
1222
- const applyGoldEggType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1198
+ const type$8 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1223
1199
  __proto__: null
1224
1200
  }, Symbol.toStringTag, { value: "Module" }));
1225
- const checkGoldEggTokenType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1201
+ const type$7 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1226
1202
  __proto__: null
1227
1203
  }, Symbol.toStringTag, { value: "Module" }));
1228
- const getGoldEggDataType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1204
+ const type$6 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1229
1205
  __proto__: null
1230
1206
  }, Symbol.toStringTag, { value: "Module" }));
1231
1207
  var NewbieMissionStatus = /* @__PURE__ */ ((NewbieMissionStatus2) => {
@@ -1234,206 +1210,176 @@ var NewbieMissionStatus = /* @__PURE__ */ ((NewbieMissionStatus2) => {
1234
1210
  NewbieMissionStatus2["collected"] = "collected";
1235
1211
  return NewbieMissionStatus2;
1236
1212
  })(NewbieMissionStatus || {});
1237
- const getNewbieMissionDataType = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1213
+ const type$5 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1238
1214
  __proto__: null,
1239
1215
  NewbieMissionStatus
1240
1216
  }, 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
- );
1417
- const getTypeModule = (name) => discoveredModules.types[name];
1418
- const getAllModules = () => ({
1419
- types: { ...discoveredModules.types }
1420
- });
1421
- const getAllApiNames = () => Object.values(Api);
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" }));
1422
1232
  export {
1423
- Api,
1233
+ type$2a as Api,
1234
+ type$1Y as addBankCardType,
1235
+ type$V as agTransferCreditReportType,
1236
+ type$27 as announcementType,
1424
1237
  api,
1425
- autoRegisterApi,
1238
+ type$a as applyGoldEggType,
1239
+ type$1i as applyPromoType,
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,
1426
1258
  config,
1427
- getAllApiNames,
1428
- getAllModules,
1429
- getMaintenanceModeApi,
1430
- getTypeModule,
1431
- jackpotDataApi,
1432
- loadMatchApi,
1433
- loginApi,
1434
- logoutApi,
1259
+ type$1$ as depositType,
1260
+ type$1O as fishGameListType,
1261
+ type$19 as friendListEditType,
1262
+ type$1a as friendListType,
1263
+ type$25 as gameListType,
1264
+ type$q as getASCMatchCountType,
1265
+ type$s as getAccumulateDepositClaimType,
1266
+ type$t as getAccumulateDepositDataType,
1267
+ type$18 as getActivePPType,
1268
+ type as getActivePlatformType,
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,
1435
1336
  post,
1436
- rename,
1437
- setLocaleApi,
1438
- telegramLoginApi
1337
+ type$23 as promotionType,
1338
+ type$1n as readMailType,
1339
+ type$r as rebateRefundSettingType,
1340
+ type$Y as referralMemberProfileType,
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
1439
1385
  };