@numen-crypto/contract 0.14.0 → 0.15.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +169 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +848 -18
- package/dist/index.d.ts +848 -18
- package/dist/index.js +155 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -14,6 +14,7 @@ declare const ERROR_CODE: {
|
|
|
14
14
|
readonly INVALID_CREDENTIALS: "INVALID_CREDENTIALS";
|
|
15
15
|
readonly SESSION_INVALID: "SESSION_INVALID";
|
|
16
16
|
readonly SESSION_EXPIRED: "SESSION_EXPIRED";
|
|
17
|
+
readonly REFRESH_INVALID: "REFRESH_INVALID";
|
|
17
18
|
readonly TOTP_REQUIRED: "TOTP_REQUIRED";
|
|
18
19
|
readonly TOTP_ALREADY_ENABLED: "TOTP_ALREADY_ENABLED";
|
|
19
20
|
readonly EMAIL_NOT_VERIFIED: "EMAIL_NOT_VERIFIED";
|
|
@@ -28,13 +29,48 @@ declare const ERROR_CODE: {
|
|
|
28
29
|
readonly INSUFFICIENT_BALANCE: "INSUFFICIENT_BALANCE";
|
|
29
30
|
readonly PURCHASE_LIMIT_EXCEEDED: "PURCHASE_LIMIT_EXCEEDED";
|
|
30
31
|
readonly PURCHASE_CAP_EXCEEDED: "PURCHASE_CAP_EXCEEDED";
|
|
32
|
+
readonly MONTHLY_BUY_CAP_EXCEEDED: "MONTHLY_BUY_CAP_EXCEEDED";
|
|
31
33
|
readonly DAILY_PURCHASE_LIMIT: "DAILY_PURCHASE_LIMIT";
|
|
32
34
|
readonly TOKENS_FROZEN: "TOKENS_FROZEN";
|
|
33
35
|
readonly SELL_WINDOW_EXCEEDED: "SELL_WINDOW_EXCEEDED";
|
|
34
36
|
readonly UPGRADE_NOT_AVAILABLE: "UPGRADE_NOT_AVAILABLE";
|
|
35
37
|
readonly SALE_PHASE_INACTIVE: "SALE_PHASE_INACTIVE";
|
|
38
|
+
readonly PRICE_MOVED: "PRICE_MOVED";
|
|
39
|
+
readonly SWAP_AMOUNT_TOO_SMALL: "SWAP_AMOUNT_TOO_SMALL";
|
|
40
|
+
readonly SWAP_AMOUNT_TOO_LARGE: "SWAP_AMOUNT_TOO_LARGE";
|
|
41
|
+
readonly SWAP_DISABLED: "SWAP_DISABLED";
|
|
42
|
+
readonly SWAP_RESTRICTED: "SWAP_RESTRICTED";
|
|
43
|
+
readonly DEPOSITS_DISABLED: "DEPOSITS_DISABLED";
|
|
44
|
+
readonly DEPOSITS_RESTRICTED: "DEPOSITS_RESTRICTED";
|
|
45
|
+
readonly MARKET_CLOSED: "MARKET_CLOSED";
|
|
46
|
+
readonly BELOW_FLOOR_PRICE: "BELOW_FLOOR_PRICE";
|
|
47
|
+
readonly NO_LIQUIDITY: "NO_LIQUIDITY";
|
|
48
|
+
readonly UNFUNDED_MAKER_ORDER: "UNFUNDED_MAKER_ORDER";
|
|
49
|
+
readonly ORDER_LIMIT_EXCEEDED: "ORDER_LIMIT_EXCEEDED";
|
|
50
|
+
readonly ORDER_NOT_FOUND: "ORDER_NOT_FOUND";
|
|
51
|
+
readonly ORDER_NOT_CANCELABLE: "ORDER_NOT_CANCELABLE";
|
|
52
|
+
readonly PACKAGE_NOT_FOUND: "PACKAGE_NOT_FOUND";
|
|
53
|
+
readonly PACKAGE_LOCKED: "PACKAGE_LOCKED";
|
|
54
|
+
readonly PACKAGE_DAILY_LIMIT: "PACKAGE_DAILY_LIMIT";
|
|
55
|
+
readonly PACKAGE_WEEKLY_LIMIT: "PACKAGE_WEEKLY_LIMIT";
|
|
56
|
+
readonly PACKAGE_PURCHASE_IN_PROGRESS: "PACKAGE_PURCHASE_IN_PROGRESS";
|
|
36
57
|
readonly WITHDRAWAL_COOLOFF: "WITHDRAWAL_COOLOFF";
|
|
58
|
+
readonly WITHDRAWAL_AMOUNT_TOO_SMALL: "WITHDRAWAL_AMOUNT_TOO_SMALL";
|
|
59
|
+
readonly WITHDRAWAL_AMOUNT_TOO_LARGE: "WITHDRAWAL_AMOUNT_TOO_LARGE";
|
|
60
|
+
readonly WITHDRAWAL_DAILY_LIMIT: "WITHDRAWAL_DAILY_LIMIT";
|
|
61
|
+
readonly WITHDRAWALS_RESTRICTED: "WITHDRAWALS_RESTRICTED";
|
|
62
|
+
readonly QUOTA_NOT_FOUND: "QUOTA_NOT_FOUND";
|
|
63
|
+
readonly QUOTA_NOT_ACTIVE: "QUOTA_NOT_ACTIVE";
|
|
64
|
+
readonly QUOTA_ALREADY_ACTIVE: "QUOTA_ALREADY_ACTIVE";
|
|
65
|
+
readonly QUOTA_EXPIRED: "QUOTA_EXPIRED";
|
|
66
|
+
readonly QUOTA_CAP_EXCEEDED: "QUOTA_CAP_EXCEEDED";
|
|
67
|
+
readonly QUOTA_FUNDS_LOCKED: "QUOTA_FUNDS_LOCKED";
|
|
37
68
|
readonly BONUS_ALREADY_CLAIMED: "BONUS_ALREADY_CLAIMED";
|
|
69
|
+
readonly WHEEL_DISABLED: "WHEEL_DISABLED";
|
|
70
|
+
readonly WHEEL_PAID_SPIN_DISABLED: "WHEEL_PAID_SPIN_DISABLED";
|
|
71
|
+
readonly WHEEL_FREE_SPIN_USED: "WHEEL_FREE_SPIN_USED";
|
|
72
|
+
readonly WHEEL_PAID_LIMIT: "WHEEL_PAID_LIMIT";
|
|
73
|
+
readonly WHEEL_NO_PRIZES: "WHEEL_NO_PRIZES";
|
|
38
74
|
readonly LINK_PROVIDER_DISABLED: "LINK_PROVIDER_DISABLED";
|
|
39
75
|
readonly LINK_VERIFICATION_FAILED: "LINK_VERIFICATION_FAILED";
|
|
40
76
|
readonly LINK_ALREADY_USED: "LINK_ALREADY_USED";
|
|
@@ -385,6 +421,168 @@ declare const PartnerLevelSchema: z.ZodObject<{
|
|
|
385
421
|
reward: string;
|
|
386
422
|
}>;
|
|
387
423
|
type PartnerLevel = z.infer<typeof PartnerLevelSchema>;
|
|
424
|
+
declare const PartnerNodeSchema: z.ZodObject<{
|
|
425
|
+
id: z.ZodString;
|
|
426
|
+
email: z.ZodString;
|
|
427
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
428
|
+
level: z.ZodNumber;
|
|
429
|
+
balanceUsd: z.ZodString;
|
|
430
|
+
directPartners: z.ZodNumber;
|
|
431
|
+
networkSize: z.ZodNumber;
|
|
432
|
+
personalTurnover: z.ZodString;
|
|
433
|
+
joinedAt: z.ZodString;
|
|
434
|
+
}, "strip", z.ZodTypeAny, {
|
|
435
|
+
id: string;
|
|
436
|
+
email: string;
|
|
437
|
+
displayName: string | null;
|
|
438
|
+
level: number;
|
|
439
|
+
balanceUsd: string;
|
|
440
|
+
directPartners: number;
|
|
441
|
+
networkSize: number;
|
|
442
|
+
personalTurnover: string;
|
|
443
|
+
joinedAt: string;
|
|
444
|
+
}, {
|
|
445
|
+
id: string;
|
|
446
|
+
email: string;
|
|
447
|
+
displayName: string | null;
|
|
448
|
+
level: number;
|
|
449
|
+
balanceUsd: string;
|
|
450
|
+
directPartners: number;
|
|
451
|
+
networkSize: number;
|
|
452
|
+
personalTurnover: string;
|
|
453
|
+
joinedAt: string;
|
|
454
|
+
}>;
|
|
455
|
+
type PartnerNode = z.infer<typeof PartnerNodeSchema>;
|
|
456
|
+
declare const PartnerBranchRootSchema: z.ZodObject<{
|
|
457
|
+
id: z.ZodString;
|
|
458
|
+
email: z.ZodString;
|
|
459
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
460
|
+
/** 0 — сам пользователь, 1-10 — глубина узла в его сети. */
|
|
461
|
+
level: z.ZodNumber;
|
|
462
|
+
directPartners: z.ZodNumber;
|
|
463
|
+
networkSize: z.ZodNumber;
|
|
464
|
+
}, "strip", z.ZodTypeAny, {
|
|
465
|
+
id: string;
|
|
466
|
+
email: string;
|
|
467
|
+
displayName: string | null;
|
|
468
|
+
level: number;
|
|
469
|
+
directPartners: number;
|
|
470
|
+
networkSize: number;
|
|
471
|
+
}, {
|
|
472
|
+
id: string;
|
|
473
|
+
email: string;
|
|
474
|
+
displayName: string | null;
|
|
475
|
+
level: number;
|
|
476
|
+
directPartners: number;
|
|
477
|
+
networkSize: number;
|
|
478
|
+
}>;
|
|
479
|
+
type PartnerBranchRoot = z.infer<typeof PartnerBranchRootSchema>;
|
|
480
|
+
declare const PartnerBranchSchema: z.ZodObject<{
|
|
481
|
+
root: z.ZodObject<{
|
|
482
|
+
id: z.ZodString;
|
|
483
|
+
email: z.ZodString;
|
|
484
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
485
|
+
/** 0 — сам пользователь, 1-10 — глубина узла в его сети. */
|
|
486
|
+
level: z.ZodNumber;
|
|
487
|
+
directPartners: z.ZodNumber;
|
|
488
|
+
networkSize: z.ZodNumber;
|
|
489
|
+
}, "strip", z.ZodTypeAny, {
|
|
490
|
+
id: string;
|
|
491
|
+
email: string;
|
|
492
|
+
displayName: string | null;
|
|
493
|
+
level: number;
|
|
494
|
+
directPartners: number;
|
|
495
|
+
networkSize: number;
|
|
496
|
+
}, {
|
|
497
|
+
id: string;
|
|
498
|
+
email: string;
|
|
499
|
+
displayName: string | null;
|
|
500
|
+
level: number;
|
|
501
|
+
directPartners: number;
|
|
502
|
+
networkSize: number;
|
|
503
|
+
}>;
|
|
504
|
+
partners: z.ZodArray<z.ZodObject<{
|
|
505
|
+
id: z.ZodString;
|
|
506
|
+
email: z.ZodString;
|
|
507
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
508
|
+
level: z.ZodNumber;
|
|
509
|
+
balanceUsd: z.ZodString;
|
|
510
|
+
directPartners: z.ZodNumber;
|
|
511
|
+
networkSize: z.ZodNumber;
|
|
512
|
+
personalTurnover: z.ZodString;
|
|
513
|
+
joinedAt: z.ZodString;
|
|
514
|
+
}, "strip", z.ZodTypeAny, {
|
|
515
|
+
id: string;
|
|
516
|
+
email: string;
|
|
517
|
+
displayName: string | null;
|
|
518
|
+
level: number;
|
|
519
|
+
balanceUsd: string;
|
|
520
|
+
directPartners: number;
|
|
521
|
+
networkSize: number;
|
|
522
|
+
personalTurnover: string;
|
|
523
|
+
joinedAt: string;
|
|
524
|
+
}, {
|
|
525
|
+
id: string;
|
|
526
|
+
email: string;
|
|
527
|
+
displayName: string | null;
|
|
528
|
+
level: number;
|
|
529
|
+
balanceUsd: string;
|
|
530
|
+
directPartners: number;
|
|
531
|
+
networkSize: number;
|
|
532
|
+
personalTurnover: string;
|
|
533
|
+
joinedAt: string;
|
|
534
|
+
}>, "many">;
|
|
535
|
+
total: z.ZodNumber;
|
|
536
|
+
page: z.ZodNumber;
|
|
537
|
+
pageSize: z.ZodNumber;
|
|
538
|
+
}, "strip", z.ZodTypeAny, {
|
|
539
|
+
page: number;
|
|
540
|
+
pageSize: number;
|
|
541
|
+
total: number;
|
|
542
|
+
partners: {
|
|
543
|
+
id: string;
|
|
544
|
+
email: string;
|
|
545
|
+
displayName: string | null;
|
|
546
|
+
level: number;
|
|
547
|
+
balanceUsd: string;
|
|
548
|
+
directPartners: number;
|
|
549
|
+
networkSize: number;
|
|
550
|
+
personalTurnover: string;
|
|
551
|
+
joinedAt: string;
|
|
552
|
+
}[];
|
|
553
|
+
root: {
|
|
554
|
+
id: string;
|
|
555
|
+
email: string;
|
|
556
|
+
displayName: string | null;
|
|
557
|
+
level: number;
|
|
558
|
+
directPartners: number;
|
|
559
|
+
networkSize: number;
|
|
560
|
+
};
|
|
561
|
+
}, {
|
|
562
|
+
page: number;
|
|
563
|
+
pageSize: number;
|
|
564
|
+
total: number;
|
|
565
|
+
partners: {
|
|
566
|
+
id: string;
|
|
567
|
+
email: string;
|
|
568
|
+
displayName: string | null;
|
|
569
|
+
level: number;
|
|
570
|
+
balanceUsd: string;
|
|
571
|
+
directPartners: number;
|
|
572
|
+
networkSize: number;
|
|
573
|
+
personalTurnover: string;
|
|
574
|
+
joinedAt: string;
|
|
575
|
+
}[];
|
|
576
|
+
root: {
|
|
577
|
+
id: string;
|
|
578
|
+
email: string;
|
|
579
|
+
displayName: string | null;
|
|
580
|
+
level: number;
|
|
581
|
+
directPartners: number;
|
|
582
|
+
networkSize: number;
|
|
583
|
+
};
|
|
584
|
+
}>;
|
|
585
|
+
type PartnerBranch = z.infer<typeof PartnerBranchSchema>;
|
|
388
586
|
declare const PartnersOverviewSchema: z.ZodObject<{
|
|
389
587
|
period: z.ZodEnum<["week", "month", "year", "all"]>;
|
|
390
588
|
referralCode: z.ZodString;
|
|
@@ -413,10 +611,10 @@ declare const PartnersOverviewSchema: z.ZodObject<{
|
|
|
413
611
|
reward: string;
|
|
414
612
|
}>, "many">;
|
|
415
613
|
}, "strip", z.ZodTypeAny, {
|
|
614
|
+
directPartners: number;
|
|
416
615
|
period: "week" | "month" | "year" | "all";
|
|
417
616
|
referralCode: string;
|
|
418
617
|
totalPartners: number;
|
|
419
|
-
directPartners: number;
|
|
420
618
|
networkTurnover: string;
|
|
421
619
|
networkTurnoverChangePct: number;
|
|
422
620
|
affiliateIncome: string;
|
|
@@ -428,10 +626,10 @@ declare const PartnersOverviewSchema: z.ZodObject<{
|
|
|
428
626
|
reward: string;
|
|
429
627
|
}[];
|
|
430
628
|
}, {
|
|
629
|
+
directPartners: number;
|
|
431
630
|
period: "week" | "month" | "year" | "all";
|
|
432
631
|
referralCode: string;
|
|
433
632
|
totalPartners: number;
|
|
434
|
-
directPartners: number;
|
|
435
633
|
networkTurnover: string;
|
|
436
634
|
networkTurnoverChangePct: number;
|
|
437
635
|
affiliateIncome: string;
|
|
@@ -721,6 +919,12 @@ declare const SlidesResponseSchema: z.ZodArray<z.ZodObject<{
|
|
|
721
919
|
}>, "many">;
|
|
722
920
|
type SlidesResponse = z.infer<typeof SlidesResponseSchema>;
|
|
723
921
|
|
|
922
|
+
declare const CONTENT_LOCALES: readonly ["ru", "en", "ar", "zh", "uk", "es", "fr", "bn", "pt", "ja", "ko", "tr"];
|
|
923
|
+
declare const ContentLocaleSchema: z.ZodEnum<["ru", "en", "ar", "zh", "uk", "es", "fr", "bn", "pt", "ja", "ko", "tr"]>;
|
|
924
|
+
type ContentLocale = z.infer<typeof ContentLocaleSchema>;
|
|
925
|
+
declare const DEFAULT_CONTENT_LOCALE: ContentLocale;
|
|
926
|
+
declare function isContentLocale(value: string): value is ContentLocale;
|
|
927
|
+
|
|
724
928
|
declare const RankDefSchema: z.ZodObject<{
|
|
725
929
|
name: z.ZodString;
|
|
726
930
|
order: z.ZodNumber;
|
|
@@ -836,16 +1040,19 @@ type UserSettings = z.infer<typeof UserSettingsSchema>;
|
|
|
836
1040
|
declare const DailyBonusDaySchema: z.ZodObject<{
|
|
837
1041
|
dayIndex: z.ZodNumber;
|
|
838
1042
|
rewardNmn: z.ZodString;
|
|
1043
|
+
rewardUsd: z.ZodString;
|
|
839
1044
|
surprise: z.ZodBoolean;
|
|
840
1045
|
claimedNmn: z.ZodNullable<z.ZodString>;
|
|
841
1046
|
}, "strip", z.ZodTypeAny, {
|
|
842
1047
|
dayIndex: number;
|
|
843
1048
|
rewardNmn: string;
|
|
1049
|
+
rewardUsd: string;
|
|
844
1050
|
surprise: boolean;
|
|
845
1051
|
claimedNmn: string | null;
|
|
846
1052
|
}, {
|
|
847
1053
|
dayIndex: number;
|
|
848
1054
|
rewardNmn: string;
|
|
1055
|
+
rewardUsd: string;
|
|
849
1056
|
surprise: boolean;
|
|
850
1057
|
claimedNmn: string | null;
|
|
851
1058
|
}>;
|
|
@@ -856,19 +1063,23 @@ declare const DailyBonusStatusSchema: z.ZodObject<{
|
|
|
856
1063
|
claimableToday: z.ZodBoolean;
|
|
857
1064
|
todayDayIndex: z.ZodNumber;
|
|
858
1065
|
nextRewardNmn: z.ZodString;
|
|
1066
|
+
nextRewardUsd: z.ZodString;
|
|
859
1067
|
days: z.ZodArray<z.ZodObject<{
|
|
860
1068
|
dayIndex: z.ZodNumber;
|
|
861
1069
|
rewardNmn: z.ZodString;
|
|
1070
|
+
rewardUsd: z.ZodString;
|
|
862
1071
|
surprise: z.ZodBoolean;
|
|
863
1072
|
claimedNmn: z.ZodNullable<z.ZodString>;
|
|
864
1073
|
}, "strip", z.ZodTypeAny, {
|
|
865
1074
|
dayIndex: number;
|
|
866
1075
|
rewardNmn: string;
|
|
1076
|
+
rewardUsd: string;
|
|
867
1077
|
surprise: boolean;
|
|
868
1078
|
claimedNmn: string | null;
|
|
869
1079
|
}, {
|
|
870
1080
|
dayIndex: number;
|
|
871
1081
|
rewardNmn: string;
|
|
1082
|
+
rewardUsd: string;
|
|
872
1083
|
surprise: boolean;
|
|
873
1084
|
claimedNmn: string | null;
|
|
874
1085
|
}>, "many">;
|
|
@@ -878,9 +1089,11 @@ declare const DailyBonusStatusSchema: z.ZodObject<{
|
|
|
878
1089
|
claimableToday: boolean;
|
|
879
1090
|
todayDayIndex: number;
|
|
880
1091
|
nextRewardNmn: string;
|
|
1092
|
+
nextRewardUsd: string;
|
|
881
1093
|
days: {
|
|
882
1094
|
dayIndex: number;
|
|
883
1095
|
rewardNmn: string;
|
|
1096
|
+
rewardUsd: string;
|
|
884
1097
|
surprise: boolean;
|
|
885
1098
|
claimedNmn: string | null;
|
|
886
1099
|
}[];
|
|
@@ -890,9 +1103,11 @@ declare const DailyBonusStatusSchema: z.ZodObject<{
|
|
|
890
1103
|
claimableToday: boolean;
|
|
891
1104
|
todayDayIndex: number;
|
|
892
1105
|
nextRewardNmn: string;
|
|
1106
|
+
nextRewardUsd: string;
|
|
893
1107
|
days: {
|
|
894
1108
|
dayIndex: number;
|
|
895
1109
|
rewardNmn: string;
|
|
1110
|
+
rewardUsd: string;
|
|
896
1111
|
surprise: boolean;
|
|
897
1112
|
claimedNmn: string | null;
|
|
898
1113
|
}[];
|
|
@@ -902,15 +1117,18 @@ declare const DailyBonusClaimResultSchema: z.ZodObject<{
|
|
|
902
1117
|
claimed: z.ZodBoolean;
|
|
903
1118
|
dayIndex: z.ZodNumber;
|
|
904
1119
|
rewardNmn: z.ZodString;
|
|
1120
|
+
rewardUsd: z.ZodString;
|
|
905
1121
|
currentStreak: z.ZodNumber;
|
|
906
1122
|
}, "strip", z.ZodTypeAny, {
|
|
907
1123
|
dayIndex: number;
|
|
908
1124
|
rewardNmn: string;
|
|
1125
|
+
rewardUsd: string;
|
|
909
1126
|
currentStreak: number;
|
|
910
1127
|
claimed: boolean;
|
|
911
1128
|
}, {
|
|
912
1129
|
dayIndex: number;
|
|
913
1130
|
rewardNmn: string;
|
|
1131
|
+
rewardUsd: string;
|
|
914
1132
|
currentStreak: number;
|
|
915
1133
|
claimed: boolean;
|
|
916
1134
|
}>;
|
|
@@ -2479,10 +2697,10 @@ declare namespace GetPartnersCommand {
|
|
|
2479
2697
|
reward: string;
|
|
2480
2698
|
}>, "many">;
|
|
2481
2699
|
}, "strip", z.ZodTypeAny, {
|
|
2700
|
+
directPartners: number;
|
|
2482
2701
|
period: "week" | "month" | "year" | "all";
|
|
2483
2702
|
referralCode: string;
|
|
2484
2703
|
totalPartners: number;
|
|
2485
|
-
directPartners: number;
|
|
2486
2704
|
networkTurnover: string;
|
|
2487
2705
|
networkTurnoverChangePct: number;
|
|
2488
2706
|
affiliateIncome: string;
|
|
@@ -2494,10 +2712,10 @@ declare namespace GetPartnersCommand {
|
|
|
2494
2712
|
reward: string;
|
|
2495
2713
|
}[];
|
|
2496
2714
|
}, {
|
|
2715
|
+
directPartners: number;
|
|
2497
2716
|
period: "week" | "month" | "year" | "all";
|
|
2498
2717
|
referralCode: string;
|
|
2499
2718
|
totalPartners: number;
|
|
2500
|
-
directPartners: number;
|
|
2501
2719
|
networkTurnover: string;
|
|
2502
2720
|
networkTurnoverChangePct: number;
|
|
2503
2721
|
affiliateIncome: string;
|
|
@@ -2512,6 +2730,132 @@ declare namespace GetPartnersCommand {
|
|
|
2512
2730
|
type Response = PartnersOverview;
|
|
2513
2731
|
}
|
|
2514
2732
|
|
|
2733
|
+
declare namespace BrowsePartnersCommand {
|
|
2734
|
+
const endpointDetails: EndpointDetails;
|
|
2735
|
+
const QuerySchema: z.ZodObject<{
|
|
2736
|
+
root: z.ZodOptional<z.ZodString>;
|
|
2737
|
+
page: z.ZodDefault<z.ZodNumber>;
|
|
2738
|
+
pageSize: z.ZodDefault<z.ZodNumber>;
|
|
2739
|
+
search: z.ZodOptional<z.ZodString>;
|
|
2740
|
+
}, "strip", z.ZodTypeAny, {
|
|
2741
|
+
page: number;
|
|
2742
|
+
pageSize: number;
|
|
2743
|
+
root?: string | undefined;
|
|
2744
|
+
search?: string | undefined;
|
|
2745
|
+
}, {
|
|
2746
|
+
page?: number | undefined;
|
|
2747
|
+
pageSize?: number | undefined;
|
|
2748
|
+
root?: string | undefined;
|
|
2749
|
+
search?: string | undefined;
|
|
2750
|
+
}>;
|
|
2751
|
+
type Query = z.infer<typeof QuerySchema>;
|
|
2752
|
+
const ResponseSchema: z.ZodObject<{
|
|
2753
|
+
root: z.ZodObject<{
|
|
2754
|
+
id: z.ZodString;
|
|
2755
|
+
email: z.ZodString;
|
|
2756
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
2757
|
+
level: z.ZodNumber;
|
|
2758
|
+
directPartners: z.ZodNumber;
|
|
2759
|
+
networkSize: z.ZodNumber;
|
|
2760
|
+
}, "strip", z.ZodTypeAny, {
|
|
2761
|
+
id: string;
|
|
2762
|
+
email: string;
|
|
2763
|
+
displayName: string | null;
|
|
2764
|
+
level: number;
|
|
2765
|
+
directPartners: number;
|
|
2766
|
+
networkSize: number;
|
|
2767
|
+
}, {
|
|
2768
|
+
id: string;
|
|
2769
|
+
email: string;
|
|
2770
|
+
displayName: string | null;
|
|
2771
|
+
level: number;
|
|
2772
|
+
directPartners: number;
|
|
2773
|
+
networkSize: number;
|
|
2774
|
+
}>;
|
|
2775
|
+
partners: z.ZodArray<z.ZodObject<{
|
|
2776
|
+
id: z.ZodString;
|
|
2777
|
+
email: z.ZodString;
|
|
2778
|
+
displayName: z.ZodNullable<z.ZodString>;
|
|
2779
|
+
level: z.ZodNumber;
|
|
2780
|
+
balanceUsd: z.ZodString;
|
|
2781
|
+
directPartners: z.ZodNumber;
|
|
2782
|
+
networkSize: z.ZodNumber;
|
|
2783
|
+
personalTurnover: z.ZodString;
|
|
2784
|
+
joinedAt: z.ZodString;
|
|
2785
|
+
}, "strip", z.ZodTypeAny, {
|
|
2786
|
+
id: string;
|
|
2787
|
+
email: string;
|
|
2788
|
+
displayName: string | null;
|
|
2789
|
+
level: number;
|
|
2790
|
+
balanceUsd: string;
|
|
2791
|
+
directPartners: number;
|
|
2792
|
+
networkSize: number;
|
|
2793
|
+
personalTurnover: string;
|
|
2794
|
+
joinedAt: string;
|
|
2795
|
+
}, {
|
|
2796
|
+
id: string;
|
|
2797
|
+
email: string;
|
|
2798
|
+
displayName: string | null;
|
|
2799
|
+
level: number;
|
|
2800
|
+
balanceUsd: string;
|
|
2801
|
+
directPartners: number;
|
|
2802
|
+
networkSize: number;
|
|
2803
|
+
personalTurnover: string;
|
|
2804
|
+
joinedAt: string;
|
|
2805
|
+
}>, "many">;
|
|
2806
|
+
total: z.ZodNumber;
|
|
2807
|
+
page: z.ZodNumber;
|
|
2808
|
+
pageSize: z.ZodNumber;
|
|
2809
|
+
}, "strip", z.ZodTypeAny, {
|
|
2810
|
+
page: number;
|
|
2811
|
+
pageSize: number;
|
|
2812
|
+
total: number;
|
|
2813
|
+
partners: {
|
|
2814
|
+
id: string;
|
|
2815
|
+
email: string;
|
|
2816
|
+
displayName: string | null;
|
|
2817
|
+
level: number;
|
|
2818
|
+
balanceUsd: string;
|
|
2819
|
+
directPartners: number;
|
|
2820
|
+
networkSize: number;
|
|
2821
|
+
personalTurnover: string;
|
|
2822
|
+
joinedAt: string;
|
|
2823
|
+
}[];
|
|
2824
|
+
root: {
|
|
2825
|
+
id: string;
|
|
2826
|
+
email: string;
|
|
2827
|
+
displayName: string | null;
|
|
2828
|
+
level: number;
|
|
2829
|
+
directPartners: number;
|
|
2830
|
+
networkSize: number;
|
|
2831
|
+
};
|
|
2832
|
+
}, {
|
|
2833
|
+
page: number;
|
|
2834
|
+
pageSize: number;
|
|
2835
|
+
total: number;
|
|
2836
|
+
partners: {
|
|
2837
|
+
id: string;
|
|
2838
|
+
email: string;
|
|
2839
|
+
displayName: string | null;
|
|
2840
|
+
level: number;
|
|
2841
|
+
balanceUsd: string;
|
|
2842
|
+
directPartners: number;
|
|
2843
|
+
networkSize: number;
|
|
2844
|
+
personalTurnover: string;
|
|
2845
|
+
joinedAt: string;
|
|
2846
|
+
}[];
|
|
2847
|
+
root: {
|
|
2848
|
+
id: string;
|
|
2849
|
+
email: string;
|
|
2850
|
+
displayName: string | null;
|
|
2851
|
+
level: number;
|
|
2852
|
+
directPartners: number;
|
|
2853
|
+
networkSize: number;
|
|
2854
|
+
};
|
|
2855
|
+
}>;
|
|
2856
|
+
type Response = z.infer<typeof ResponseSchema>;
|
|
2857
|
+
}
|
|
2858
|
+
|
|
2515
2859
|
declare namespace GetPackagesCommand {
|
|
2516
2860
|
const endpointDetails: EndpointDetails;
|
|
2517
2861
|
const ResponseSchema: zod.ZodObject<{
|
|
@@ -2705,19 +3049,27 @@ declare namespace UpgradePackageCommand {
|
|
|
2705
3049
|
|
|
2706
3050
|
declare namespace GetSlidesCommand {
|
|
2707
3051
|
const endpointDetails: EndpointDetails;
|
|
2708
|
-
const
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
3052
|
+
const QuerySchema: z.ZodObject<{
|
|
3053
|
+
locale: z.ZodOptional<z.ZodEnum<["ru", "en", "ar", "zh", "uk", "es", "fr", "bn", "pt", "ja", "ko", "tr"]>>;
|
|
3054
|
+
}, "strip", z.ZodTypeAny, {
|
|
3055
|
+
locale?: "ru" | "en" | "ar" | "zh" | "uk" | "es" | "fr" | "bn" | "pt" | "ja" | "ko" | "tr" | undefined;
|
|
3056
|
+
}, {
|
|
3057
|
+
locale?: "ru" | "en" | "ar" | "zh" | "uk" | "es" | "fr" | "bn" | "pt" | "ja" | "ko" | "tr" | undefined;
|
|
3058
|
+
}>;
|
|
3059
|
+
type Query = z.infer<typeof QuerySchema>;
|
|
3060
|
+
const ResponseSchema: z.ZodArray<z.ZodObject<{
|
|
3061
|
+
id: z.ZodString;
|
|
3062
|
+
kind: z.ZodEnum<["image", "text"]>;
|
|
3063
|
+
imageUrl: z.ZodNullable<z.ZodString>;
|
|
3064
|
+
tag: z.ZodNullable<z.ZodString>;
|
|
3065
|
+
title: z.ZodNullable<z.ZodString>;
|
|
3066
|
+
body: z.ZodNullable<z.ZodString>;
|
|
3067
|
+
linkUrl: z.ZodNullable<z.ZodString>;
|
|
3068
|
+
linkTarget: z.ZodEnum<["_self", "_blank"]>;
|
|
3069
|
+
wholeSlideLink: z.ZodBoolean;
|
|
3070
|
+
buttonLabel: z.ZodNullable<z.ZodString>;
|
|
3071
|
+
buttonStyle: z.ZodNullable<z.ZodEnum<["primary", "secondary", "outline", "ghost"]>>;
|
|
3072
|
+
}, "strip", z.ZodTypeAny, {
|
|
2721
3073
|
id: string;
|
|
2722
3074
|
kind: "image" | "text";
|
|
2723
3075
|
imageUrl: string | null;
|
|
@@ -3203,19 +3555,23 @@ declare namespace GetDailyBonusCommand {
|
|
|
3203
3555
|
claimableToday: z.ZodBoolean;
|
|
3204
3556
|
todayDayIndex: z.ZodNumber;
|
|
3205
3557
|
nextRewardNmn: z.ZodString;
|
|
3558
|
+
nextRewardUsd: z.ZodString;
|
|
3206
3559
|
days: z.ZodArray<z.ZodObject<{
|
|
3207
3560
|
dayIndex: z.ZodNumber;
|
|
3208
3561
|
rewardNmn: z.ZodString;
|
|
3562
|
+
rewardUsd: z.ZodString;
|
|
3209
3563
|
surprise: z.ZodBoolean;
|
|
3210
3564
|
claimedNmn: z.ZodNullable<z.ZodString>;
|
|
3211
3565
|
}, "strip", z.ZodTypeAny, {
|
|
3212
3566
|
dayIndex: number;
|
|
3213
3567
|
rewardNmn: string;
|
|
3568
|
+
rewardUsd: string;
|
|
3214
3569
|
surprise: boolean;
|
|
3215
3570
|
claimedNmn: string | null;
|
|
3216
3571
|
}, {
|
|
3217
3572
|
dayIndex: number;
|
|
3218
3573
|
rewardNmn: string;
|
|
3574
|
+
rewardUsd: string;
|
|
3219
3575
|
surprise: boolean;
|
|
3220
3576
|
claimedNmn: string | null;
|
|
3221
3577
|
}>, "many">;
|
|
@@ -3225,9 +3581,11 @@ declare namespace GetDailyBonusCommand {
|
|
|
3225
3581
|
claimableToday: boolean;
|
|
3226
3582
|
todayDayIndex: number;
|
|
3227
3583
|
nextRewardNmn: string;
|
|
3584
|
+
nextRewardUsd: string;
|
|
3228
3585
|
days: {
|
|
3229
3586
|
dayIndex: number;
|
|
3230
3587
|
rewardNmn: string;
|
|
3588
|
+
rewardUsd: string;
|
|
3231
3589
|
surprise: boolean;
|
|
3232
3590
|
claimedNmn: string | null;
|
|
3233
3591
|
}[];
|
|
@@ -3237,9 +3595,11 @@ declare namespace GetDailyBonusCommand {
|
|
|
3237
3595
|
claimableToday: boolean;
|
|
3238
3596
|
todayDayIndex: number;
|
|
3239
3597
|
nextRewardNmn: string;
|
|
3598
|
+
nextRewardUsd: string;
|
|
3240
3599
|
days: {
|
|
3241
3600
|
dayIndex: number;
|
|
3242
3601
|
rewardNmn: string;
|
|
3602
|
+
rewardUsd: string;
|
|
3243
3603
|
surprise: boolean;
|
|
3244
3604
|
claimedNmn: string | null;
|
|
3245
3605
|
}[];
|
|
@@ -3252,21 +3612,486 @@ declare namespace ClaimDailyBonusCommand {
|
|
|
3252
3612
|
claimed: z.ZodBoolean;
|
|
3253
3613
|
dayIndex: z.ZodNumber;
|
|
3254
3614
|
rewardNmn: z.ZodString;
|
|
3615
|
+
rewardUsd: z.ZodString;
|
|
3255
3616
|
currentStreak: z.ZodNumber;
|
|
3256
3617
|
}, "strip", z.ZodTypeAny, {
|
|
3257
3618
|
dayIndex: number;
|
|
3258
3619
|
rewardNmn: string;
|
|
3620
|
+
rewardUsd: string;
|
|
3259
3621
|
currentStreak: number;
|
|
3260
3622
|
claimed: boolean;
|
|
3261
3623
|
}, {
|
|
3262
3624
|
dayIndex: number;
|
|
3263
3625
|
rewardNmn: string;
|
|
3626
|
+
rewardUsd: string;
|
|
3264
3627
|
currentStreak: number;
|
|
3265
3628
|
claimed: boolean;
|
|
3266
3629
|
}>;
|
|
3267
3630
|
type Response = z.infer<typeof ResponseSchema>;
|
|
3268
3631
|
}
|
|
3269
3632
|
|
|
3633
|
+
declare const WHEEL_SLOT_COUNT = 8;
|
|
3634
|
+
declare const WheelSlotSchema: z.ZodNumber;
|
|
3635
|
+
declare const WheelAmountModeSchema: z.ZodEnum<["ASSET", "USD"]>;
|
|
3636
|
+
type WheelAmountMode = z.infer<typeof WheelAmountModeSchema>;
|
|
3637
|
+
declare const WheelSpinKindSchema: z.ZodEnum<["FREE", "PAID"]>;
|
|
3638
|
+
type WheelSpinKind = z.infer<typeof WheelSpinKindSchema>;
|
|
3639
|
+
declare const WheelPrizeSchema: z.ZodObject<{
|
|
3640
|
+
id: z.ZodString;
|
|
3641
|
+
slot: z.ZodNumber;
|
|
3642
|
+
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3643
|
+
label: z.ZodNullable<z.ZodString>;
|
|
3644
|
+
amount: z.ZodString;
|
|
3645
|
+
valueUsd: z.ZodString;
|
|
3646
|
+
jackpot: z.ZodBoolean;
|
|
3647
|
+
}, "strip", z.ZodTypeAny, {
|
|
3648
|
+
id: string;
|
|
3649
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3650
|
+
amount: string;
|
|
3651
|
+
slot: number;
|
|
3652
|
+
label: string | null;
|
|
3653
|
+
valueUsd: string;
|
|
3654
|
+
jackpot: boolean;
|
|
3655
|
+
}, {
|
|
3656
|
+
id: string;
|
|
3657
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3658
|
+
amount: string;
|
|
3659
|
+
slot: number;
|
|
3660
|
+
label: string | null;
|
|
3661
|
+
valueUsd: string;
|
|
3662
|
+
jackpot: boolean;
|
|
3663
|
+
}>;
|
|
3664
|
+
type WheelPrize = z.infer<typeof WheelPrizeSchema>;
|
|
3665
|
+
declare const WheelWinSchema: z.ZodObject<{
|
|
3666
|
+
id: z.ZodString;
|
|
3667
|
+
slot: z.ZodNumber;
|
|
3668
|
+
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3669
|
+
label: z.ZodNullable<z.ZodString>;
|
|
3670
|
+
amount: z.ZodString;
|
|
3671
|
+
valueUsd: z.ZodString;
|
|
3672
|
+
kind: z.ZodEnum<["FREE", "PAID"]>;
|
|
3673
|
+
jackpot: z.ZodBoolean;
|
|
3674
|
+
createdAt: z.ZodString;
|
|
3675
|
+
}, "strip", z.ZodTypeAny, {
|
|
3676
|
+
id: string;
|
|
3677
|
+
createdAt: string;
|
|
3678
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3679
|
+
amount: string;
|
|
3680
|
+
kind: "FREE" | "PAID";
|
|
3681
|
+
slot: number;
|
|
3682
|
+
label: string | null;
|
|
3683
|
+
valueUsd: string;
|
|
3684
|
+
jackpot: boolean;
|
|
3685
|
+
}, {
|
|
3686
|
+
id: string;
|
|
3687
|
+
createdAt: string;
|
|
3688
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3689
|
+
amount: string;
|
|
3690
|
+
kind: "FREE" | "PAID";
|
|
3691
|
+
slot: number;
|
|
3692
|
+
label: string | null;
|
|
3693
|
+
valueUsd: string;
|
|
3694
|
+
jackpot: boolean;
|
|
3695
|
+
}>;
|
|
3696
|
+
type WheelWin = z.infer<typeof WheelWinSchema>;
|
|
3697
|
+
declare const WheelStatusSchema: z.ZodObject<{
|
|
3698
|
+
enabled: z.ZodBoolean;
|
|
3699
|
+
paidSpinEnabled: z.ZodBoolean;
|
|
3700
|
+
freeSpinAvailable: z.ZodBoolean;
|
|
3701
|
+
nextFreeSpinAt: z.ZodNullable<z.ZodString>;
|
|
3702
|
+
paidSpinPriceUsd: z.ZodString;
|
|
3703
|
+
paidSpinPriceNmn: z.ZodString;
|
|
3704
|
+
paidSpinsLeftToday: z.ZodNumber;
|
|
3705
|
+
prizes: z.ZodArray<z.ZodObject<{
|
|
3706
|
+
id: z.ZodString;
|
|
3707
|
+
slot: z.ZodNumber;
|
|
3708
|
+
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3709
|
+
label: z.ZodNullable<z.ZodString>;
|
|
3710
|
+
amount: z.ZodString;
|
|
3711
|
+
valueUsd: z.ZodString;
|
|
3712
|
+
jackpot: z.ZodBoolean;
|
|
3713
|
+
}, "strip", z.ZodTypeAny, {
|
|
3714
|
+
id: string;
|
|
3715
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3716
|
+
amount: string;
|
|
3717
|
+
slot: number;
|
|
3718
|
+
label: string | null;
|
|
3719
|
+
valueUsd: string;
|
|
3720
|
+
jackpot: boolean;
|
|
3721
|
+
}, {
|
|
3722
|
+
id: string;
|
|
3723
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3724
|
+
amount: string;
|
|
3725
|
+
slot: number;
|
|
3726
|
+
label: string | null;
|
|
3727
|
+
valueUsd: string;
|
|
3728
|
+
jackpot: boolean;
|
|
3729
|
+
}>, "many">;
|
|
3730
|
+
history: z.ZodArray<z.ZodObject<{
|
|
3731
|
+
id: z.ZodString;
|
|
3732
|
+
slot: z.ZodNumber;
|
|
3733
|
+
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3734
|
+
label: z.ZodNullable<z.ZodString>;
|
|
3735
|
+
amount: z.ZodString;
|
|
3736
|
+
valueUsd: z.ZodString;
|
|
3737
|
+
kind: z.ZodEnum<["FREE", "PAID"]>;
|
|
3738
|
+
jackpot: z.ZodBoolean;
|
|
3739
|
+
createdAt: z.ZodString;
|
|
3740
|
+
}, "strip", z.ZodTypeAny, {
|
|
3741
|
+
id: string;
|
|
3742
|
+
createdAt: string;
|
|
3743
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3744
|
+
amount: string;
|
|
3745
|
+
kind: "FREE" | "PAID";
|
|
3746
|
+
slot: number;
|
|
3747
|
+
label: string | null;
|
|
3748
|
+
valueUsd: string;
|
|
3749
|
+
jackpot: boolean;
|
|
3750
|
+
}, {
|
|
3751
|
+
id: string;
|
|
3752
|
+
createdAt: string;
|
|
3753
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3754
|
+
amount: string;
|
|
3755
|
+
kind: "FREE" | "PAID";
|
|
3756
|
+
slot: number;
|
|
3757
|
+
label: string | null;
|
|
3758
|
+
valueUsd: string;
|
|
3759
|
+
jackpot: boolean;
|
|
3760
|
+
}>, "many">;
|
|
3761
|
+
}, "strip", z.ZodTypeAny, {
|
|
3762
|
+
enabled: boolean;
|
|
3763
|
+
paidSpinEnabled: boolean;
|
|
3764
|
+
freeSpinAvailable: boolean;
|
|
3765
|
+
nextFreeSpinAt: string | null;
|
|
3766
|
+
paidSpinPriceUsd: string;
|
|
3767
|
+
paidSpinPriceNmn: string;
|
|
3768
|
+
paidSpinsLeftToday: number;
|
|
3769
|
+
prizes: {
|
|
3770
|
+
id: string;
|
|
3771
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3772
|
+
amount: string;
|
|
3773
|
+
slot: number;
|
|
3774
|
+
label: string | null;
|
|
3775
|
+
valueUsd: string;
|
|
3776
|
+
jackpot: boolean;
|
|
3777
|
+
}[];
|
|
3778
|
+
history: {
|
|
3779
|
+
id: string;
|
|
3780
|
+
createdAt: string;
|
|
3781
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3782
|
+
amount: string;
|
|
3783
|
+
kind: "FREE" | "PAID";
|
|
3784
|
+
slot: number;
|
|
3785
|
+
label: string | null;
|
|
3786
|
+
valueUsd: string;
|
|
3787
|
+
jackpot: boolean;
|
|
3788
|
+
}[];
|
|
3789
|
+
}, {
|
|
3790
|
+
enabled: boolean;
|
|
3791
|
+
paidSpinEnabled: boolean;
|
|
3792
|
+
freeSpinAvailable: boolean;
|
|
3793
|
+
nextFreeSpinAt: string | null;
|
|
3794
|
+
paidSpinPriceUsd: string;
|
|
3795
|
+
paidSpinPriceNmn: string;
|
|
3796
|
+
paidSpinsLeftToday: number;
|
|
3797
|
+
prizes: {
|
|
3798
|
+
id: string;
|
|
3799
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3800
|
+
amount: string;
|
|
3801
|
+
slot: number;
|
|
3802
|
+
label: string | null;
|
|
3803
|
+
valueUsd: string;
|
|
3804
|
+
jackpot: boolean;
|
|
3805
|
+
}[];
|
|
3806
|
+
history: {
|
|
3807
|
+
id: string;
|
|
3808
|
+
createdAt: string;
|
|
3809
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3810
|
+
amount: string;
|
|
3811
|
+
kind: "FREE" | "PAID";
|
|
3812
|
+
slot: number;
|
|
3813
|
+
label: string | null;
|
|
3814
|
+
valueUsd: string;
|
|
3815
|
+
jackpot: boolean;
|
|
3816
|
+
}[];
|
|
3817
|
+
}>;
|
|
3818
|
+
type WheelStatus = z.infer<typeof WheelStatusSchema>;
|
|
3819
|
+
declare const WheelSpinResultSchema: z.ZodObject<{
|
|
3820
|
+
spinId: z.ZodString;
|
|
3821
|
+
slot: z.ZodNumber;
|
|
3822
|
+
prize: z.ZodObject<{
|
|
3823
|
+
id: z.ZodString;
|
|
3824
|
+
slot: z.ZodNumber;
|
|
3825
|
+
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3826
|
+
label: z.ZodNullable<z.ZodString>;
|
|
3827
|
+
amount: z.ZodString;
|
|
3828
|
+
valueUsd: z.ZodString;
|
|
3829
|
+
jackpot: z.ZodBoolean;
|
|
3830
|
+
}, "strip", z.ZodTypeAny, {
|
|
3831
|
+
id: string;
|
|
3832
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3833
|
+
amount: string;
|
|
3834
|
+
slot: number;
|
|
3835
|
+
label: string | null;
|
|
3836
|
+
valueUsd: string;
|
|
3837
|
+
jackpot: boolean;
|
|
3838
|
+
}, {
|
|
3839
|
+
id: string;
|
|
3840
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3841
|
+
amount: string;
|
|
3842
|
+
slot: number;
|
|
3843
|
+
label: string | null;
|
|
3844
|
+
valueUsd: string;
|
|
3845
|
+
jackpot: boolean;
|
|
3846
|
+
}>;
|
|
3847
|
+
amount: z.ZodString;
|
|
3848
|
+
valueUsd: z.ZodString;
|
|
3849
|
+
kind: z.ZodEnum<["FREE", "PAID"]>;
|
|
3850
|
+
freeSpinAvailable: z.ZodBoolean;
|
|
3851
|
+
paidSpinsLeftToday: z.ZodNumber;
|
|
3852
|
+
}, "strip", z.ZodTypeAny, {
|
|
3853
|
+
amount: string;
|
|
3854
|
+
kind: "FREE" | "PAID";
|
|
3855
|
+
slot: number;
|
|
3856
|
+
valueUsd: string;
|
|
3857
|
+
freeSpinAvailable: boolean;
|
|
3858
|
+
paidSpinsLeftToday: number;
|
|
3859
|
+
spinId: string;
|
|
3860
|
+
prize: {
|
|
3861
|
+
id: string;
|
|
3862
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3863
|
+
amount: string;
|
|
3864
|
+
slot: number;
|
|
3865
|
+
label: string | null;
|
|
3866
|
+
valueUsd: string;
|
|
3867
|
+
jackpot: boolean;
|
|
3868
|
+
};
|
|
3869
|
+
}, {
|
|
3870
|
+
amount: string;
|
|
3871
|
+
kind: "FREE" | "PAID";
|
|
3872
|
+
slot: number;
|
|
3873
|
+
valueUsd: string;
|
|
3874
|
+
freeSpinAvailable: boolean;
|
|
3875
|
+
paidSpinsLeftToday: number;
|
|
3876
|
+
spinId: string;
|
|
3877
|
+
prize: {
|
|
3878
|
+
id: string;
|
|
3879
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3880
|
+
amount: string;
|
|
3881
|
+
slot: number;
|
|
3882
|
+
label: string | null;
|
|
3883
|
+
valueUsd: string;
|
|
3884
|
+
jackpot: boolean;
|
|
3885
|
+
};
|
|
3886
|
+
}>;
|
|
3887
|
+
type WheelSpinResult = z.infer<typeof WheelSpinResultSchema>;
|
|
3888
|
+
|
|
3889
|
+
declare namespace GetWheelCommand {
|
|
3890
|
+
const endpointDetails: EndpointDetails;
|
|
3891
|
+
const ResponseSchema: z.ZodObject<{
|
|
3892
|
+
enabled: z.ZodBoolean;
|
|
3893
|
+
paidSpinEnabled: z.ZodBoolean;
|
|
3894
|
+
freeSpinAvailable: z.ZodBoolean;
|
|
3895
|
+
nextFreeSpinAt: z.ZodNullable<z.ZodString>;
|
|
3896
|
+
paidSpinPriceUsd: z.ZodString;
|
|
3897
|
+
paidSpinPriceNmn: z.ZodString;
|
|
3898
|
+
paidSpinsLeftToday: z.ZodNumber;
|
|
3899
|
+
prizes: z.ZodArray<z.ZodObject<{
|
|
3900
|
+
id: z.ZodString;
|
|
3901
|
+
slot: z.ZodNumber;
|
|
3902
|
+
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3903
|
+
label: z.ZodNullable<z.ZodString>;
|
|
3904
|
+
amount: z.ZodString;
|
|
3905
|
+
valueUsd: z.ZodString;
|
|
3906
|
+
jackpot: z.ZodBoolean;
|
|
3907
|
+
}, "strip", z.ZodTypeAny, {
|
|
3908
|
+
id: string;
|
|
3909
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3910
|
+
amount: string;
|
|
3911
|
+
slot: number;
|
|
3912
|
+
label: string | null;
|
|
3913
|
+
valueUsd: string;
|
|
3914
|
+
jackpot: boolean;
|
|
3915
|
+
}, {
|
|
3916
|
+
id: string;
|
|
3917
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3918
|
+
amount: string;
|
|
3919
|
+
slot: number;
|
|
3920
|
+
label: string | null;
|
|
3921
|
+
valueUsd: string;
|
|
3922
|
+
jackpot: boolean;
|
|
3923
|
+
}>, "many">;
|
|
3924
|
+
history: z.ZodArray<z.ZodObject<{
|
|
3925
|
+
id: z.ZodString;
|
|
3926
|
+
slot: z.ZodNumber;
|
|
3927
|
+
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3928
|
+
label: z.ZodNullable<z.ZodString>;
|
|
3929
|
+
amount: z.ZodString;
|
|
3930
|
+
valueUsd: z.ZodString;
|
|
3931
|
+
kind: z.ZodEnum<["FREE", "PAID"]>;
|
|
3932
|
+
jackpot: z.ZodBoolean;
|
|
3933
|
+
createdAt: z.ZodString;
|
|
3934
|
+
}, "strip", z.ZodTypeAny, {
|
|
3935
|
+
id: string;
|
|
3936
|
+
createdAt: string;
|
|
3937
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3938
|
+
amount: string;
|
|
3939
|
+
kind: "FREE" | "PAID";
|
|
3940
|
+
slot: number;
|
|
3941
|
+
label: string | null;
|
|
3942
|
+
valueUsd: string;
|
|
3943
|
+
jackpot: boolean;
|
|
3944
|
+
}, {
|
|
3945
|
+
id: string;
|
|
3946
|
+
createdAt: string;
|
|
3947
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3948
|
+
amount: string;
|
|
3949
|
+
kind: "FREE" | "PAID";
|
|
3950
|
+
slot: number;
|
|
3951
|
+
label: string | null;
|
|
3952
|
+
valueUsd: string;
|
|
3953
|
+
jackpot: boolean;
|
|
3954
|
+
}>, "many">;
|
|
3955
|
+
}, "strip", z.ZodTypeAny, {
|
|
3956
|
+
enabled: boolean;
|
|
3957
|
+
paidSpinEnabled: boolean;
|
|
3958
|
+
freeSpinAvailable: boolean;
|
|
3959
|
+
nextFreeSpinAt: string | null;
|
|
3960
|
+
paidSpinPriceUsd: string;
|
|
3961
|
+
paidSpinPriceNmn: string;
|
|
3962
|
+
paidSpinsLeftToday: number;
|
|
3963
|
+
prizes: {
|
|
3964
|
+
id: string;
|
|
3965
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3966
|
+
amount: string;
|
|
3967
|
+
slot: number;
|
|
3968
|
+
label: string | null;
|
|
3969
|
+
valueUsd: string;
|
|
3970
|
+
jackpot: boolean;
|
|
3971
|
+
}[];
|
|
3972
|
+
history: {
|
|
3973
|
+
id: string;
|
|
3974
|
+
createdAt: string;
|
|
3975
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3976
|
+
amount: string;
|
|
3977
|
+
kind: "FREE" | "PAID";
|
|
3978
|
+
slot: number;
|
|
3979
|
+
label: string | null;
|
|
3980
|
+
valueUsd: string;
|
|
3981
|
+
jackpot: boolean;
|
|
3982
|
+
}[];
|
|
3983
|
+
}, {
|
|
3984
|
+
enabled: boolean;
|
|
3985
|
+
paidSpinEnabled: boolean;
|
|
3986
|
+
freeSpinAvailable: boolean;
|
|
3987
|
+
nextFreeSpinAt: string | null;
|
|
3988
|
+
paidSpinPriceUsd: string;
|
|
3989
|
+
paidSpinPriceNmn: string;
|
|
3990
|
+
paidSpinsLeftToday: number;
|
|
3991
|
+
prizes: {
|
|
3992
|
+
id: string;
|
|
3993
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3994
|
+
amount: string;
|
|
3995
|
+
slot: number;
|
|
3996
|
+
label: string | null;
|
|
3997
|
+
valueUsd: string;
|
|
3998
|
+
jackpot: boolean;
|
|
3999
|
+
}[];
|
|
4000
|
+
history: {
|
|
4001
|
+
id: string;
|
|
4002
|
+
createdAt: string;
|
|
4003
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4004
|
+
amount: string;
|
|
4005
|
+
kind: "FREE" | "PAID";
|
|
4006
|
+
slot: number;
|
|
4007
|
+
label: string | null;
|
|
4008
|
+
valueUsd: string;
|
|
4009
|
+
jackpot: boolean;
|
|
4010
|
+
}[];
|
|
4011
|
+
}>;
|
|
4012
|
+
type Response = z.infer<typeof ResponseSchema>;
|
|
4013
|
+
}
|
|
4014
|
+
declare namespace SpinWheelCommand {
|
|
4015
|
+
const endpointDetails: EndpointDetails;
|
|
4016
|
+
const RequestSchema: z.ZodObject<{
|
|
4017
|
+
paid: z.ZodDefault<z.ZodBoolean>;
|
|
4018
|
+
}, "strip", z.ZodTypeAny, {
|
|
4019
|
+
paid: boolean;
|
|
4020
|
+
}, {
|
|
4021
|
+
paid?: boolean | undefined;
|
|
4022
|
+
}>;
|
|
4023
|
+
type Request = z.infer<typeof RequestSchema>;
|
|
4024
|
+
const ResponseSchema: z.ZodObject<{
|
|
4025
|
+
spinId: z.ZodString;
|
|
4026
|
+
slot: z.ZodNumber;
|
|
4027
|
+
prize: z.ZodObject<{
|
|
4028
|
+
id: z.ZodString;
|
|
4029
|
+
slot: z.ZodNumber;
|
|
4030
|
+
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
4031
|
+
label: z.ZodNullable<z.ZodString>;
|
|
4032
|
+
amount: z.ZodString;
|
|
4033
|
+
valueUsd: z.ZodString;
|
|
4034
|
+
jackpot: z.ZodBoolean;
|
|
4035
|
+
}, "strip", z.ZodTypeAny, {
|
|
4036
|
+
id: string;
|
|
4037
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4038
|
+
amount: string;
|
|
4039
|
+
slot: number;
|
|
4040
|
+
label: string | null;
|
|
4041
|
+
valueUsd: string;
|
|
4042
|
+
jackpot: boolean;
|
|
4043
|
+
}, {
|
|
4044
|
+
id: string;
|
|
4045
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4046
|
+
amount: string;
|
|
4047
|
+
slot: number;
|
|
4048
|
+
label: string | null;
|
|
4049
|
+
valueUsd: string;
|
|
4050
|
+
jackpot: boolean;
|
|
4051
|
+
}>;
|
|
4052
|
+
amount: z.ZodString;
|
|
4053
|
+
valueUsd: z.ZodString;
|
|
4054
|
+
kind: z.ZodEnum<["FREE", "PAID"]>;
|
|
4055
|
+
freeSpinAvailable: z.ZodBoolean;
|
|
4056
|
+
paidSpinsLeftToday: z.ZodNumber;
|
|
4057
|
+
}, "strip", z.ZodTypeAny, {
|
|
4058
|
+
amount: string;
|
|
4059
|
+
kind: "FREE" | "PAID";
|
|
4060
|
+
slot: number;
|
|
4061
|
+
valueUsd: string;
|
|
4062
|
+
freeSpinAvailable: boolean;
|
|
4063
|
+
paidSpinsLeftToday: number;
|
|
4064
|
+
spinId: string;
|
|
4065
|
+
prize: {
|
|
4066
|
+
id: string;
|
|
4067
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4068
|
+
amount: string;
|
|
4069
|
+
slot: number;
|
|
4070
|
+
label: string | null;
|
|
4071
|
+
valueUsd: string;
|
|
4072
|
+
jackpot: boolean;
|
|
4073
|
+
};
|
|
4074
|
+
}, {
|
|
4075
|
+
amount: string;
|
|
4076
|
+
kind: "FREE" | "PAID";
|
|
4077
|
+
slot: number;
|
|
4078
|
+
valueUsd: string;
|
|
4079
|
+
freeSpinAvailable: boolean;
|
|
4080
|
+
paidSpinsLeftToday: number;
|
|
4081
|
+
spinId: string;
|
|
4082
|
+
prize: {
|
|
4083
|
+
id: string;
|
|
4084
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
4085
|
+
amount: string;
|
|
4086
|
+
slot: number;
|
|
4087
|
+
label: string | null;
|
|
4088
|
+
valueUsd: string;
|
|
4089
|
+
jackpot: boolean;
|
|
4090
|
+
};
|
|
4091
|
+
}>;
|
|
4092
|
+
type Response = z.infer<typeof ResponseSchema>;
|
|
4093
|
+
}
|
|
4094
|
+
|
|
3270
4095
|
declare namespace GetTutorialRewardCommand {
|
|
3271
4096
|
const endpointDetails: EndpointDetails;
|
|
3272
4097
|
const ResponseSchema: z.ZodObject<{
|
|
@@ -4456,6 +5281,7 @@ declare const REST_API: {
|
|
|
4456
5281
|
};
|
|
4457
5282
|
readonly PARTNERS: {
|
|
4458
5283
|
readonly OVERVIEW: "/partners";
|
|
5284
|
+
readonly BROWSE: "/partners/browse";
|
|
4459
5285
|
};
|
|
4460
5286
|
readonly PACKAGES: {
|
|
4461
5287
|
readonly OVERVIEW: "/packages";
|
|
@@ -4498,6 +5324,10 @@ declare const REST_API: {
|
|
|
4498
5324
|
readonly DAILY: "/bonus/daily";
|
|
4499
5325
|
readonly DAILY_CLAIM: "/bonus/daily/claim";
|
|
4500
5326
|
};
|
|
5327
|
+
readonly WHEEL: {
|
|
5328
|
+
readonly STATUS: "/wheel";
|
|
5329
|
+
readonly SPIN: "/wheel/spin";
|
|
5330
|
+
};
|
|
4501
5331
|
readonly LEADERBOARD: {
|
|
4502
5332
|
readonly OVERVIEW: "/leaderboard";
|
|
4503
5333
|
};
|
|
@@ -4519,4 +5349,4 @@ declare const REST_API: {
|
|
|
4519
5349
|
declare const API_PREFIX = "/api";
|
|
4520
5350
|
declare const API_VERSION = "v1";
|
|
4521
5351
|
|
|
4522
|
-
export { API_PREFIX, API_VERSION, ASSET_DECIMALS, ASSET_SYMBOLS, AVATAR_CONTENT_TYPES, type AssetBalance, AssetBalanceSchema, type AssetSymbol, AssetSymbolSchema, AvatarContentTypeSchema, AvatarUploadUrlCommand, BuyPackageCommand, CancelOrderCommand, CancelWithdrawalCommand, CaptchaPolicyCommand, ChangePasswordCommand, type ChartPeriod, ChartPeriodSchema, type ChartPoint, ChartPointSchema, ClaimDailyBonusCommand, ClaimTutorialRewardCommand, ConfirmEmailChangeCommand, ConfirmTotpCommand, ConfirmWithdrawalCommand, CreateTicketCommand, DEPOSITABLE_ASSETS, type DailyBonusClaimResult, DailyBonusClaimResultSchema, type DailyBonusDay, DailyBonusDaySchema, type DailyBonusStatus, DailyBonusStatusSchema, type DepositAddress, DepositAddressCommand, DepositAddressSchema, type DepositEntry, DepositEntrySchema, type DepositStatus, DepositStatusSchema, type DepositableAsset, DepositableAssetSchema, DisableTotpCommand, ERROR_CODE, type EarningsOverview, EarningsOverviewSchema, type EndpointDetails, type ErrorCode, type ErrorResponse, ErrorResponseSchema, FUNDING_ASSET, ForgotPasswordCommand, GetDailyBonusCommand, GetEarningsCommand, GetIncomeCommand, GetLeaderboardCommand, GetOrderBookCommand, GetPackagesCommand, GetPartnersCommand, GetRanksCommand, GetSettingsCommand, GetSlidesCommand, GetTicketCommand, GetTokenChartCommand, GetTokenPriceCommand, GetTransactionsCommand, GetTutorialRewardCommand, GetWalletCommand, type HttpMethod, type IncomeOverview, IncomeOverviewSchema, type IncomePeriod, IncomePeriodSchema, type Leaderboard, type LeaderboardEntry, LeaderboardEntrySchema, type LeaderboardPeriod, LeaderboardPeriodSchema, LeaderboardSchema, LinkGoogleCommand, type LinkProvider, LinkProviderSchema, LinkTelegramCommand, type LinkedAccount, LinkedAccountSchema, ListDepositsCommand, ListLinkedAccountsCommand, ListMyOrdersCommand, ListNotificationsCommand, ListTicketsCommand, ListTradesCommand, ListWithdrawalsCommand, LoginCommand, LogoutCommand, MONEY_REGEX, MarkNotificationsReadCommand, MeCommand, MoneyStringSchema, type MonthlyPricePoint, MonthlyPricePointSchema, NMN_PRICE_DECIMALS, type Notification, NotificationSchema, type NotificationType, NotificationTypeSchema, type Order, type OrderBook, type OrderBookLevel, OrderBookLevelSchema, OrderBookSchema, OrderSchema, type OrderSide, OrderSideSchema, type OrderStatus, OrderStatusSchema, type OrderType, OrderTypeSchema, type Package, PackageSchema, type PackageStatus, PackageStatusSchema, type PackagesOverview, PackagesOverviewSchema, PaginatedSchema, type PaginationQuery, PaginationQuerySchema, type PartnerAccrual, PartnerAccrualSchema, type PartnerLevel, PartnerLevelSchema, type PartnersOverview, PartnersOverviewSchema, type Period, PeriodSchema, PlaceOrderCommand, PositiveMoneyStringSchema, type PublicTrade, PublicTradeSchema, REST_API, type RankDef, RankDefSchema, RegisterCommand, ReplyTicketCommand, RequestEmailChangeCommand, RequestPasswordChangeCommand, RequestWithdrawalCommand, ResendVerificationCommand, ResetPasswordCommand, type SessionInfo, SessionInfoSchema, SetupTotpCommand, type Slide, type SlideButtonStyle, SlideButtonStyleSchema, type SlideKind, SlideKindSchema, type SlideLinkTarget, SlideLinkTargetSchema, SlideSchema, type SlidesResponse, SlidesResponseSchema, SwapCommand, type SwapSide, SwapSideSchema, TICKET_CATEGORIES, TOKEN_ASSET, type ThreatLevel, ThreatLevelSchema, type TicketAttachment, type TicketAttachmentInput, TicketAttachmentInputSchema, TicketAttachmentSchema, TicketAttachmentUploadCommand, type TicketAuthorType, TicketAuthorTypeSchema, TicketBodySchema, type TicketCategory, TicketCategorySchema, type TicketDetail, TicketDetailSchema, type TicketMessage, TicketMessageSchema, type TicketStatus, TicketStatusSchema, type TicketSummary, TicketSummarySchema, type TokenPrice, TokenPriceSchema, type TradeLimits, TradeLimitsSchema, type TradeResult, TradeResultSchema, type Transaction, TransactionSchema, type TransactionStatus, TransactionStatusSchema, type TransactionType, TransactionTypeSchema, UnlinkAccountCommand, UpdateProfileCommand, UpdateSettingsCommand, UpgradePackageCommand, type UserProfile, UserProfileSchema, type UserRank, UserRankSchema, type UserSettings, UserSettingsSchema, type UserStatus, UserStatusSchema, UuidSchema, VerifyEmailCommand, type WalletOverview, WalletOverviewSchema, type Withdrawal, WithdrawalSchema, type WithdrawalStatus, WithdrawalStatusSchema, assetDecimals, endpoint };
|
|
5352
|
+
export { API_PREFIX, API_VERSION, ASSET_DECIMALS, ASSET_SYMBOLS, AVATAR_CONTENT_TYPES, type AssetBalance, AssetBalanceSchema, type AssetSymbol, AssetSymbolSchema, AvatarContentTypeSchema, AvatarUploadUrlCommand, BrowsePartnersCommand, BuyPackageCommand, CONTENT_LOCALES, CancelOrderCommand, CancelWithdrawalCommand, CaptchaPolicyCommand, ChangePasswordCommand, type ChartPeriod, ChartPeriodSchema, type ChartPoint, ChartPointSchema, ClaimDailyBonusCommand, ClaimTutorialRewardCommand, ConfirmEmailChangeCommand, ConfirmTotpCommand, ConfirmWithdrawalCommand, type ContentLocale, ContentLocaleSchema, CreateTicketCommand, DEFAULT_CONTENT_LOCALE, DEPOSITABLE_ASSETS, type DailyBonusClaimResult, DailyBonusClaimResultSchema, type DailyBonusDay, DailyBonusDaySchema, type DailyBonusStatus, DailyBonusStatusSchema, type DepositAddress, DepositAddressCommand, DepositAddressSchema, type DepositEntry, DepositEntrySchema, type DepositStatus, DepositStatusSchema, type DepositableAsset, DepositableAssetSchema, DisableTotpCommand, ERROR_CODE, type EarningsOverview, EarningsOverviewSchema, type EndpointDetails, type ErrorCode, type ErrorResponse, ErrorResponseSchema, FUNDING_ASSET, ForgotPasswordCommand, GetDailyBonusCommand, GetEarningsCommand, GetIncomeCommand, GetLeaderboardCommand, GetOrderBookCommand, GetPackagesCommand, GetPartnersCommand, GetRanksCommand, GetSettingsCommand, GetSlidesCommand, GetTicketCommand, GetTokenChartCommand, GetTokenPriceCommand, GetTransactionsCommand, GetTutorialRewardCommand, GetWalletCommand, GetWheelCommand, type HttpMethod, type IncomeOverview, IncomeOverviewSchema, type IncomePeriod, IncomePeriodSchema, type Leaderboard, type LeaderboardEntry, LeaderboardEntrySchema, type LeaderboardPeriod, LeaderboardPeriodSchema, LeaderboardSchema, LinkGoogleCommand, type LinkProvider, LinkProviderSchema, LinkTelegramCommand, type LinkedAccount, LinkedAccountSchema, ListDepositsCommand, ListLinkedAccountsCommand, ListMyOrdersCommand, ListNotificationsCommand, ListTicketsCommand, ListTradesCommand, ListWithdrawalsCommand, LoginCommand, LogoutCommand, MONEY_REGEX, MarkNotificationsReadCommand, MeCommand, MoneyStringSchema, type MonthlyPricePoint, MonthlyPricePointSchema, NMN_PRICE_DECIMALS, type Notification, NotificationSchema, type NotificationType, NotificationTypeSchema, type Order, type OrderBook, type OrderBookLevel, OrderBookLevelSchema, OrderBookSchema, OrderSchema, type OrderSide, OrderSideSchema, type OrderStatus, OrderStatusSchema, type OrderType, OrderTypeSchema, type Package, PackageSchema, type PackageStatus, PackageStatusSchema, type PackagesOverview, PackagesOverviewSchema, PaginatedSchema, type PaginationQuery, PaginationQuerySchema, type PartnerAccrual, PartnerAccrualSchema, type PartnerBranch, type PartnerBranchRoot, PartnerBranchRootSchema, PartnerBranchSchema, type PartnerLevel, PartnerLevelSchema, type PartnerNode, PartnerNodeSchema, type PartnersOverview, PartnersOverviewSchema, type Period, PeriodSchema, PlaceOrderCommand, PositiveMoneyStringSchema, type PublicTrade, PublicTradeSchema, REST_API, type RankDef, RankDefSchema, RegisterCommand, ReplyTicketCommand, RequestEmailChangeCommand, RequestPasswordChangeCommand, RequestWithdrawalCommand, ResendVerificationCommand, ResetPasswordCommand, type SessionInfo, SessionInfoSchema, SetupTotpCommand, type Slide, type SlideButtonStyle, SlideButtonStyleSchema, type SlideKind, SlideKindSchema, type SlideLinkTarget, SlideLinkTargetSchema, SlideSchema, type SlidesResponse, SlidesResponseSchema, SpinWheelCommand, SwapCommand, type SwapSide, SwapSideSchema, TICKET_CATEGORIES, TOKEN_ASSET, type ThreatLevel, ThreatLevelSchema, type TicketAttachment, type TicketAttachmentInput, TicketAttachmentInputSchema, TicketAttachmentSchema, TicketAttachmentUploadCommand, type TicketAuthorType, TicketAuthorTypeSchema, TicketBodySchema, type TicketCategory, TicketCategorySchema, type TicketDetail, TicketDetailSchema, type TicketMessage, TicketMessageSchema, type TicketStatus, TicketStatusSchema, type TicketSummary, TicketSummarySchema, type TokenPrice, TokenPriceSchema, type TradeLimits, TradeLimitsSchema, type TradeResult, TradeResultSchema, type Transaction, TransactionSchema, type TransactionStatus, TransactionStatusSchema, type TransactionType, TransactionTypeSchema, UnlinkAccountCommand, UpdateProfileCommand, UpdateSettingsCommand, UpgradePackageCommand, type UserProfile, UserProfileSchema, type UserRank, UserRankSchema, type UserSettings, UserSettingsSchema, type UserStatus, UserStatusSchema, UuidSchema, VerifyEmailCommand, WHEEL_SLOT_COUNT, type WalletOverview, WalletOverviewSchema, type WheelAmountMode, WheelAmountModeSchema, type WheelPrize, WheelPrizeSchema, WheelSlotSchema, type WheelSpinKind, WheelSpinKindSchema, type WheelSpinResult, WheelSpinResultSchema, type WheelStatus, WheelStatusSchema, type WheelWin, WheelWinSchema, type Withdrawal, WithdrawalSchema, type WithdrawalStatus, WithdrawalStatusSchema, assetDecimals, endpoint, isContentLocale };
|