60p82u21t54k 1.0.2 → 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,80 +618,768 @@ 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
+ }
698
662
  };
699
663
  }
700
664
  return result;
701
665
  };
702
- const discoveredModules = {
703
- types: {}
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
+ }
704
680
  };
705
- async function loadModule(path) {
681
+ const getMaintenanceModeApi = async () => {
682
+ var _a, _b, _c;
683
+ let result = {
684
+ status: 200,
685
+ message: "",
686
+ ...DefaultGetMaintenanceModeData
687
+ };
706
688
  try {
707
- return await import(path);
708
- } catch {
709
- return null;
710
- }
711
- }
712
- async function loadAllModelTypes() {
713
- const allApiNames = Object.values(Api);
714
- const batchSize = 20;
715
- for (let i = 0; i < allApiNames.length; i += batchSize) {
716
- const batch = allApiNames.slice(i, i + batchSize);
717
- const results = await Promise.allSettled(
718
- batch.map(async (apiName) => {
719
- const typeModule = await loadModule(`./model/${apiName}/type`);
720
- return { apiName, typeModule };
721
- })
722
- );
723
- results.forEach((result) => {
724
- if (result.status === "fulfilled" && result.value.typeModule) {
725
- const { apiName, typeModule } = result.value;
726
- discoveredModules.types[`${apiName}Type`] = typeModule;
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) ?? ""
727
698
  }
728
- });
699
+ };
700
+ } catch (error) {
701
+ const extendedError = error;
702
+ result = {
703
+ status: extendedError.status || 500,
704
+ message: error.message,
705
+ ...DefaultGetMaintenanceModeData
706
+ };
729
707
  }
730
- }
731
- Promise.all([loadAllModelTypes()]).then(
732
- () => console.log(
733
- `✅ Module discovery completed - ${Object.keys(discoveredModules.types).length} types loaded`
734
- )
735
- ).catch((error) => console.warn("Module discovery failed:", error));
736
- const getTypeModule = (name) => discoveredModules.types[name];
737
- const getAllModules = () => ({
738
- types: { ...discoveredModules.types }
739
- });
740
- const getAllApiNames = () => Object.values(Api);
708
+ return result;
709
+ };
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({
737
+ __proto__: null
738
+ }, Symbol.toStringTag, { value: "Module" }));
739
+ const type$24 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
740
+ __proto__: null
741
+ }, Symbol.toStringTag, { value: "Module" }));
742
+ const type$23 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
743
+ __proto__: null
744
+ }, Symbol.toStringTag, { value: "Module" }));
745
+ var CmsCategory = /* @__PURE__ */ ((CmsCategory2) => {
746
+ CmsCategory2["mobileBanner"] = "mobileBanner";
747
+ CmsCategory2["mobileAbout"] = "mobileAbout";
748
+ CmsCategory2["mobileAd"] = "mobileAd";
749
+ CmsCategory2["about"] = "about";
750
+ CmsCategory2["appAd"] = "appAd";
751
+ CmsCategory2["deposit"] = "deposit";
752
+ CmsCategory2["eventPopupBotLeft"] = "eventPopupBotLeft";
753
+ CmsCategory2["eventPopupBotRight"] = "eventPopupBotRight";
754
+ return CmsCategory2;
755
+ })(CmsCategory || {});
756
+ const type$22 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
757
+ __proto__: null,
758
+ CmsCategory
759
+ }, Symbol.toStringTag, { value: "Module" }));
760
+ const type$21 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
761
+ __proto__: null
762
+ }, Symbol.toStringTag, { value: "Module" }));
763
+ const type$20 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
764
+ __proto__: null
765
+ }, Symbol.toStringTag, { value: "Module" }));
766
+ const type$1$ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
767
+ __proto__: null
768
+ }, Symbol.toStringTag, { value: "Module" }));
769
+ const type$1_ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
770
+ __proto__: null
771
+ }, Symbol.toStringTag, { value: "Module" }));
772
+ const type$1Z = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
773
+ __proto__: null
774
+ }, Symbol.toStringTag, { value: "Module" }));
775
+ const type$1Y = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
776
+ __proto__: null
777
+ }, Symbol.toStringTag, { value: "Module" }));
778
+ const type$1X = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
779
+ __proto__: null
780
+ }, Symbol.toStringTag, { value: "Module" }));
781
+ var SettingCategory = /* @__PURE__ */ ((SettingCategory2) => {
782
+ SettingCategory2["vipcalculation"] = "vipcalculation";
783
+ SettingCategory2["livechat"] = "livechat";
784
+ SettingCategory2["extralivechat"] = "extralivechat";
785
+ SettingCategory2["mobilevalidate"] = "mobilevalidate";
786
+ SettingCategory2["withdrawtac"] = "withdrawtac";
787
+ SettingCategory2["imageDomain"] = "imagedomain";
788
+ SettingCategory2["withdrawalCode"] = "withdrawalcode";
789
+ SettingCategory2["withdrawAlipay"] = "withdrawalipay";
790
+ SettingCategory2["crypto"] = "crypto";
791
+ SettingCategory2["loginCaptcha"] = "logincaptcha";
792
+ SettingCategory2["registerCaptcha"] = "registercaptcha";
793
+ SettingCategory2["telegramAuthDomain"] = "telegramauthdomain";
794
+ SettingCategory2["telegramBotId"] = "telegrambotid";
795
+ SettingCategory2["registerwa"] = "registerwa";
796
+ SettingCategory2["forgetUser"] = "forgetuser";
797
+ SettingCategory2["contactUsSetting"] = "contact_us_setting";
798
+ SettingCategory2["facebookPixelId"] = "facebookpixelid";
799
+ SettingCategory2["facebookPixelIdArr"] = "facebook_pixel_id_arr";
800
+ SettingCategory2["googleAnalyticArr"] = "google_analytic_arr";
801
+ SettingCategory2["agentLinkFirstRedirect"] = "agentlink_first_redirect";
802
+ return SettingCategory2;
803
+ })(SettingCategory || {});
804
+ const type$1W = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
805
+ __proto__: null,
806
+ SettingCategory
807
+ }, Symbol.toStringTag, { value: "Module" }));
808
+ var TransactionMethod = /* @__PURE__ */ ((TransactionMethod2) => {
809
+ TransactionMethod2["deposit"] = "deposit";
810
+ TransactionMethod2["withdraw"] = "withdraw";
811
+ TransactionMethod2["promo"] = "promotion";
812
+ TransactionMethod2["manual"] = "adjustment";
813
+ TransactionMethod2["cashIn"] = "cashIn";
814
+ TransactionMethod2["cashOut"] = "cashOut";
815
+ TransactionMethod2["transfer"] = "transfer";
816
+ TransactionMethod2["incentive"] = "incentive";
817
+ TransactionMethod2["upgradeBonus"] = "upgradeBonus";
818
+ TransactionMethod2["extension"] = "extension";
819
+ TransactionMethod2["creditTransfer"] = "creditTransfer";
820
+ TransactionMethod2["shareHolder"] = "shareHolderDividend";
821
+ return TransactionMethod2;
822
+ })(TransactionMethod || {});
823
+ const type$1V = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
824
+ __proto__: null,
825
+ TransactionMethod
826
+ }, Symbol.toStringTag, { value: "Module" }));
827
+ const type$1U = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
828
+ __proto__: null
829
+ }, Symbol.toStringTag, { value: "Module" }));
830
+ const type$1T = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
831
+ __proto__: null
832
+ }, Symbol.toStringTag, { value: "Module" }));
833
+ const type$1S = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
834
+ __proto__: null
835
+ }, Symbol.toStringTag, { value: "Module" }));
836
+ const type$1R = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
837
+ __proto__: null
838
+ }, Symbol.toStringTag, { value: "Module" }));
839
+ const type$1Q = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
840
+ __proto__: null
841
+ }, Symbol.toStringTag, { value: "Module" }));
842
+ const type$1P = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
843
+ __proto__: null
844
+ }, Symbol.toStringTag, { value: "Module" }));
845
+ const type$1O = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
846
+ __proto__: null
847
+ }, Symbol.toStringTag, { value: "Module" }));
848
+ const type$1N = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
849
+ __proto__: null
850
+ }, Symbol.toStringTag, { value: "Module" }));
851
+ const type$1M = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
852
+ __proto__: null
853
+ }, Symbol.toStringTag, { value: "Module" }));
854
+ const type$1L = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
855
+ __proto__: null
856
+ }, Symbol.toStringTag, { value: "Module" }));
857
+ const type$1K = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
858
+ __proto__: null
859
+ }, Symbol.toStringTag, { value: "Module" }));
860
+ const type$1J = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
861
+ __proto__: null
862
+ }, Symbol.toStringTag, { value: "Module" }));
863
+ const type$1I = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
864
+ __proto__: null
865
+ }, Symbol.toStringTag, { value: "Module" }));
866
+ const type$1H = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
867
+ __proto__: null
868
+ }, Symbol.toStringTag, { value: "Module" }));
869
+ const type$1G = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
870
+ __proto__: null
871
+ }, Symbol.toStringTag, { value: "Module" }));
872
+ const type$1F = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
873
+ __proto__: null
874
+ }, Symbol.toStringTag, { value: "Module" }));
875
+ const type$1E = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
876
+ __proto__: null
877
+ }, Symbol.toStringTag, { value: "Module" }));
878
+ const type$1D = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
879
+ __proto__: null
880
+ }, Symbol.toStringTag, { value: "Module" }));
881
+ const type$1C = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
882
+ __proto__: null
883
+ }, Symbol.toStringTag, { value: "Module" }));
884
+ const type$1B = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
885
+ __proto__: null
886
+ }, Symbol.toStringTag, { value: "Module" }));
887
+ const type$1A = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
888
+ __proto__: null
889
+ }, Symbol.toStringTag, { value: "Module" }));
890
+ const type$1z = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
891
+ __proto__: null
892
+ }, Symbol.toStringTag, { value: "Module" }));
893
+ const type$1y = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
894
+ __proto__: null
895
+ }, Symbol.toStringTag, { value: "Module" }));
896
+ const type$1x = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
897
+ __proto__: null
898
+ }, Symbol.toStringTag, { value: "Module" }));
899
+ const type$1w = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
900
+ __proto__: null
901
+ }, Symbol.toStringTag, { value: "Module" }));
902
+ const type$1v = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
903
+ __proto__: null
904
+ }, Symbol.toStringTag, { value: "Module" }));
905
+ const type$1u = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
906
+ __proto__: null
907
+ }, Symbol.toStringTag, { value: "Module" }));
908
+ const type$1t = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
909
+ __proto__: null
910
+ }, Symbol.toStringTag, { value: "Module" }));
911
+ const type$1s = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
912
+ __proto__: null
913
+ }, Symbol.toStringTag, { value: "Module" }));
914
+ var ImageCategory = /* @__PURE__ */ ((ImageCategory2) => {
915
+ ImageCategory2["default"] = "default";
916
+ ImageCategory2["online"] = "online";
917
+ ImageCategory2["mycard"] = "mycard";
918
+ ImageCategory2["qrcode"] = "qrcode";
919
+ ImageCategory2["personal"] = "personal";
920
+ return ImageCategory2;
921
+ })(ImageCategory || {});
922
+ const type$1r = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
923
+ __proto__: null,
924
+ ImageCategory
925
+ }, Symbol.toStringTag, { value: "Module" }));
926
+ const type$1q = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
927
+ __proto__: null
928
+ }, Symbol.toStringTag, { value: "Module" }));
929
+ const type$1p = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
930
+ __proto__: null
931
+ }, Symbol.toStringTag, { value: "Module" }));
932
+ const type$1o = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
933
+ __proto__: null
934
+ }, Symbol.toStringTag, { value: "Module" }));
935
+ const type$1n = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
936
+ __proto__: null
937
+ }, Symbol.toStringTag, { value: "Module" }));
938
+ const type$1m = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
939
+ __proto__: null
940
+ }, Symbol.toStringTag, { value: "Module" }));
941
+ const type$1l = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
942
+ __proto__: null
943
+ }, Symbol.toStringTag, { value: "Module" }));
944
+ const type$1k = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
945
+ __proto__: null
946
+ }, Symbol.toStringTag, { value: "Module" }));
947
+ const type$1j = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
948
+ __proto__: null
949
+ }, Symbol.toStringTag, { value: "Module" }));
950
+ const type$1i = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
951
+ __proto__: null
952
+ }, Symbol.toStringTag, { value: "Module" }));
953
+ const type$1h = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
954
+ __proto__: null
955
+ }, Symbol.toStringTag, { value: "Module" }));
956
+ const type$1g = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
957
+ __proto__: null
958
+ }, Symbol.toStringTag, { value: "Module" }));
959
+ const type$1f = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
960
+ __proto__: null
961
+ }, Symbol.toStringTag, { value: "Module" }));
962
+ const type$1e = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
963
+ __proto__: null
964
+ }, Symbol.toStringTag, { value: "Module" }));
965
+ const type$1d = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
966
+ __proto__: null
967
+ }, Symbol.toStringTag, { value: "Module" }));
968
+ const type$1c = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
969
+ __proto__: null
970
+ }, Symbol.toStringTag, { value: "Module" }));
971
+ const type$1b = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
972
+ __proto__: null
973
+ }, Symbol.toStringTag, { value: "Module" }));
974
+ const type$1a = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
975
+ __proto__: null
976
+ }, Symbol.toStringTag, { value: "Module" }));
977
+ const type$19 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
978
+ __proto__: null
979
+ }, Symbol.toStringTag, { value: "Module" }));
980
+ const type$18 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
981
+ __proto__: null
982
+ }, Symbol.toStringTag, { value: "Module" }));
983
+ const type$17 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
984
+ __proto__: null
985
+ }, Symbol.toStringTag, { value: "Module" }));
986
+ const type$16 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
987
+ __proto__: null
988
+ }, Symbol.toStringTag, { value: "Module" }));
989
+ const type$15 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
990
+ __proto__: null
991
+ }, Symbol.toStringTag, { value: "Module" }));
992
+ const type$14 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
993
+ __proto__: null
994
+ }, Symbol.toStringTag, { value: "Module" }));
995
+ const type$13 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
996
+ __proto__: null
997
+ }, Symbol.toStringTag, { value: "Module" }));
998
+ const type$12 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
999
+ __proto__: null
1000
+ }, Symbol.toStringTag, { value: "Module" }));
1001
+ const type$11 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1002
+ __proto__: null
1003
+ }, Symbol.toStringTag, { value: "Module" }));
1004
+ const type$10 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1005
+ __proto__: null
1006
+ }, Symbol.toStringTag, { value: "Module" }));
1007
+ const type$$ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1008
+ __proto__: null
1009
+ }, Symbol.toStringTag, { value: "Module" }));
1010
+ const type$_ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1011
+ __proto__: null
1012
+ }, Symbol.toStringTag, { value: "Module" }));
1013
+ const type$Z = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1014
+ __proto__: null
1015
+ }, Symbol.toStringTag, { value: "Module" }));
1016
+ const type$Y = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1017
+ __proto__: null
1018
+ }, Symbol.toStringTag, { value: "Module" }));
1019
+ const type$X = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1020
+ __proto__: null
1021
+ }, Symbol.toStringTag, { value: "Module" }));
1022
+ var TransferMethod = /* @__PURE__ */ ((TransferMethod2) => {
1023
+ TransferMethod2["toPlatform"] = "transferIn";
1024
+ TransferMethod2["toWallet"] = "transferOut";
1025
+ return TransferMethod2;
1026
+ })(TransferMethod || {});
1027
+ const type$W = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1028
+ __proto__: null,
1029
+ TransferMethod
1030
+ }, Symbol.toStringTag, { value: "Module" }));
1031
+ const type$V = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1032
+ __proto__: null
1033
+ }, Symbol.toStringTag, { value: "Module" }));
1034
+ const type$U = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1035
+ __proto__: null
1036
+ }, Symbol.toStringTag, { value: "Module" }));
1037
+ const type$T = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1038
+ __proto__: null
1039
+ }, Symbol.toStringTag, { value: "Module" }));
1040
+ const type$S = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1041
+ __proto__: null
1042
+ }, Symbol.toStringTag, { value: "Module" }));
1043
+ const type$R = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1044
+ __proto__: null
1045
+ }, Symbol.toStringTag, { value: "Module" }));
1046
+ const type$Q = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1047
+ __proto__: null
1048
+ }, Symbol.toStringTag, { value: "Module" }));
1049
+ const type$P = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1050
+ __proto__: null
1051
+ }, Symbol.toStringTag, { value: "Module" }));
1052
+ const type$O = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1053
+ __proto__: null
1054
+ }, Symbol.toStringTag, { value: "Module" }));
1055
+ const type$N = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1056
+ __proto__: null
1057
+ }, Symbol.toStringTag, { value: "Module" }));
1058
+ const type$M = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1059
+ __proto__: null
1060
+ }, Symbol.toStringTag, { value: "Module" }));
1061
+ const type$L = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1062
+ __proto__: null
1063
+ }, Symbol.toStringTag, { value: "Module" }));
1064
+ const type$K = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1065
+ __proto__: null
1066
+ }, Symbol.toStringTag, { value: "Module" }));
1067
+ const type$J = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1068
+ __proto__: null
1069
+ }, Symbol.toStringTag, { value: "Module" }));
1070
+ const type$I = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1071
+ __proto__: null
1072
+ }, Symbol.toStringTag, { value: "Module" }));
1073
+ const type$H = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1074
+ __proto__: null
1075
+ }, Symbol.toStringTag, { value: "Module" }));
1076
+ const type$G = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1077
+ __proto__: null
1078
+ }, Symbol.toStringTag, { value: "Module" }));
1079
+ const type$F = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1080
+ __proto__: null
1081
+ }, Symbol.toStringTag, { value: "Module" }));
1082
+ const type$E = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1083
+ __proto__: null
1084
+ }, Symbol.toStringTag, { value: "Module" }));
1085
+ const type$D = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1086
+ __proto__: null
1087
+ }, Symbol.toStringTag, { value: "Module" }));
1088
+ const type$C = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1089
+ __proto__: null
1090
+ }, Symbol.toStringTag, { value: "Module" }));
1091
+ const type$B = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1092
+ __proto__: null
1093
+ }, Symbol.toStringTag, { value: "Module" }));
1094
+ var MissionStatus = /* @__PURE__ */ ((MissionStatus2) => {
1095
+ MissionStatus2["inProgress"] = "inProgress";
1096
+ MissionStatus2["collectable"] = "collectable";
1097
+ MissionStatus2["collected"] = "collected";
1098
+ return MissionStatus2;
1099
+ })(MissionStatus || {});
1100
+ const type$A = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1101
+ __proto__: null,
1102
+ MissionStatus
1103
+ }, Symbol.toStringTag, { value: "Module" }));
1104
+ const type$z = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1105
+ __proto__: null
1106
+ }, Symbol.toStringTag, { value: "Module" }));
1107
+ const type$y = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1108
+ __proto__: null
1109
+ }, Symbol.toStringTag, { value: "Module" }));
1110
+ const type$x = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1111
+ __proto__: null
1112
+ }, Symbol.toStringTag, { value: "Module" }));
1113
+ const type$w = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1114
+ __proto__: null
1115
+ }, Symbol.toStringTag, { value: "Module" }));
1116
+ const type$v = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1117
+ __proto__: null
1118
+ }, Symbol.toStringTag, { value: "Module" }));
1119
+ const type$u = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1120
+ __proto__: null
1121
+ }, Symbol.toStringTag, { value: "Module" }));
1122
+ var AccumulateDepositStatus = /* @__PURE__ */ ((AccumulateDepositStatus2) => {
1123
+ AccumulateDepositStatus2["inProgress"] = "inProgress";
1124
+ AccumulateDepositStatus2["collectable"] = "collectable";
1125
+ AccumulateDepositStatus2["collected"] = "collected";
1126
+ return AccumulateDepositStatus2;
1127
+ })(AccumulateDepositStatus || {});
1128
+ const type$t = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1129
+ __proto__: null,
1130
+ AccumulateDepositStatus
1131
+ }, Symbol.toStringTag, { value: "Module" }));
1132
+ const type$s = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1133
+ __proto__: null
1134
+ }, Symbol.toStringTag, { value: "Module" }));
1135
+ const type$r = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1136
+ __proto__: null
1137
+ }, Symbol.toStringTag, { value: "Module" }));
1138
+ const type$q = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1139
+ __proto__: null
1140
+ }, Symbol.toStringTag, { value: "Module" }));
1141
+ const type$p = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1142
+ __proto__: null
1143
+ }, Symbol.toStringTag, { value: "Module" }));
1144
+ const type$o = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1145
+ __proto__: null
1146
+ }, Symbol.toStringTag, { value: "Module" }));
1147
+ const type$n = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1148
+ __proto__: null
1149
+ }, Symbol.toStringTag, { value: "Module" }));
1150
+ const type$m = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1151
+ __proto__: null
1152
+ }, Symbol.toStringTag, { value: "Module" }));
1153
+ const type$l = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1154
+ __proto__: null
1155
+ }, Symbol.toStringTag, { value: "Module" }));
1156
+ const type$k = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1157
+ __proto__: null
1158
+ }, Symbol.toStringTag, { value: "Module" }));
1159
+ const type$j = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1160
+ __proto__: null
1161
+ }, Symbol.toStringTag, { value: "Module" }));
1162
+ const type$i = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1163
+ __proto__: null
1164
+ }, Symbol.toStringTag, { value: "Module" }));
1165
+ const type$h = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1166
+ __proto__: null
1167
+ }, Symbol.toStringTag, { value: "Module" }));
1168
+ const type$g = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1169
+ __proto__: null
1170
+ }, Symbol.toStringTag, { value: "Module" }));
1171
+ const type$f = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1172
+ __proto__: null
1173
+ }, Symbol.toStringTag, { value: "Module" }));
1174
+ const type$e = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1175
+ __proto__: null
1176
+ }, Symbol.toStringTag, { value: "Module" }));
1177
+ const type$d = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1178
+ __proto__: null
1179
+ }, Symbol.toStringTag, { value: "Module" }));
1180
+ var WheelStatus = /* @__PURE__ */ ((WheelStatus2) => {
1181
+ WheelStatus2["complete"] = "complete";
1182
+ WheelStatus2["pending"] = "pending";
1183
+ return WheelStatus2;
1184
+ })(WheelStatus || {});
1185
+ const type$c = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1186
+ __proto__: null,
1187
+ WheelStatus
1188
+ }, Symbol.toStringTag, { value: "Module" }));
1189
+ const type$b = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1190
+ __proto__: null
1191
+ }, Symbol.toStringTag, { value: "Module" }));
1192
+ const type$a = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1193
+ __proto__: null
1194
+ }, Symbol.toStringTag, { value: "Module" }));
1195
+ const type$9 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1196
+ __proto__: null
1197
+ }, Symbol.toStringTag, { value: "Module" }));
1198
+ const type$8 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1199
+ __proto__: null
1200
+ }, Symbol.toStringTag, { value: "Module" }));
1201
+ const type$7 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1202
+ __proto__: null
1203
+ }, Symbol.toStringTag, { value: "Module" }));
1204
+ const type$6 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1205
+ __proto__: null
1206
+ }, Symbol.toStringTag, { value: "Module" }));
1207
+ var NewbieMissionStatus = /* @__PURE__ */ ((NewbieMissionStatus2) => {
1208
+ NewbieMissionStatus2["inProgress"] = "inProgress";
1209
+ NewbieMissionStatus2["collectable"] = "collectable";
1210
+ NewbieMissionStatus2["collected"] = "collected";
1211
+ return NewbieMissionStatus2;
1212
+ })(NewbieMissionStatus || {});
1213
+ const type$5 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1214
+ __proto__: null,
1215
+ NewbieMissionStatus
1216
+ }, Symbol.toStringTag, { value: "Module" }));
1217
+ const type$4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1218
+ __proto__: null
1219
+ }, Symbol.toStringTag, { value: "Module" }));
1220
+ const type$3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1221
+ __proto__: null
1222
+ }, Symbol.toStringTag, { value: "Module" }));
1223
+ const type$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1224
+ __proto__: null
1225
+ }, Symbol.toStringTag, { value: "Module" }));
1226
+ const type$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1227
+ __proto__: null
1228
+ }, Symbol.toStringTag, { value: "Module" }));
1229
+ const type = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1230
+ __proto__: null
1231
+ }, Symbol.toStringTag, { value: "Module" }));
741
1232
  export {
742
- Api,
1233
+ type$2a as Api,
1234
+ type$1Y as addBankCardType,
1235
+ type$V as agTransferCreditReportType,
1236
+ type$27 as announcementType,
743
1237
  api,
744
- 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,
745
1258
  config,
746
- getAllApiNames,
747
- getAllModules,
748
- getMaintenanceModeApi,
749
- getTypeModule,
750
- jackpotDataApi,
751
- loadMatchApi,
752
- loginApi,
753
- 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,
754
1336
  post,
755
- rename,
756
- setLocaleApi,
757
- 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
758
1385
  };