@numen-crypto/contract 0.13.0 → 0.15.0
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 +142 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +589 -14
- package/dist/index.d.ts +589 -14
- package/dist/index.js +131 -3
- 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";
|
|
@@ -721,6 +757,12 @@ declare const SlidesResponseSchema: z.ZodArray<z.ZodObject<{
|
|
|
721
757
|
}>, "many">;
|
|
722
758
|
type SlidesResponse = z.infer<typeof SlidesResponseSchema>;
|
|
723
759
|
|
|
760
|
+
declare const CONTENT_LOCALES: readonly ["ru", "en", "ar", "zh", "uk", "es", "fr", "bn", "pt", "ja", "ko", "tr"];
|
|
761
|
+
declare const ContentLocaleSchema: z.ZodEnum<["ru", "en", "ar", "zh", "uk", "es", "fr", "bn", "pt", "ja", "ko", "tr"]>;
|
|
762
|
+
type ContentLocale = z.infer<typeof ContentLocaleSchema>;
|
|
763
|
+
declare const DEFAULT_CONTENT_LOCALE: ContentLocale;
|
|
764
|
+
declare function isContentLocale(value: string): value is ContentLocale;
|
|
765
|
+
|
|
724
766
|
declare const RankDefSchema: z.ZodObject<{
|
|
725
767
|
name: z.ZodString;
|
|
726
768
|
order: z.ZodNumber;
|
|
@@ -836,16 +878,19 @@ type UserSettings = z.infer<typeof UserSettingsSchema>;
|
|
|
836
878
|
declare const DailyBonusDaySchema: z.ZodObject<{
|
|
837
879
|
dayIndex: z.ZodNumber;
|
|
838
880
|
rewardNmn: z.ZodString;
|
|
881
|
+
rewardUsd: z.ZodString;
|
|
839
882
|
surprise: z.ZodBoolean;
|
|
840
883
|
claimedNmn: z.ZodNullable<z.ZodString>;
|
|
841
884
|
}, "strip", z.ZodTypeAny, {
|
|
842
885
|
dayIndex: number;
|
|
843
886
|
rewardNmn: string;
|
|
887
|
+
rewardUsd: string;
|
|
844
888
|
surprise: boolean;
|
|
845
889
|
claimedNmn: string | null;
|
|
846
890
|
}, {
|
|
847
891
|
dayIndex: number;
|
|
848
892
|
rewardNmn: string;
|
|
893
|
+
rewardUsd: string;
|
|
849
894
|
surprise: boolean;
|
|
850
895
|
claimedNmn: string | null;
|
|
851
896
|
}>;
|
|
@@ -856,19 +901,23 @@ declare const DailyBonusStatusSchema: z.ZodObject<{
|
|
|
856
901
|
claimableToday: z.ZodBoolean;
|
|
857
902
|
todayDayIndex: z.ZodNumber;
|
|
858
903
|
nextRewardNmn: z.ZodString;
|
|
904
|
+
nextRewardUsd: z.ZodString;
|
|
859
905
|
days: z.ZodArray<z.ZodObject<{
|
|
860
906
|
dayIndex: z.ZodNumber;
|
|
861
907
|
rewardNmn: z.ZodString;
|
|
908
|
+
rewardUsd: z.ZodString;
|
|
862
909
|
surprise: z.ZodBoolean;
|
|
863
910
|
claimedNmn: z.ZodNullable<z.ZodString>;
|
|
864
911
|
}, "strip", z.ZodTypeAny, {
|
|
865
912
|
dayIndex: number;
|
|
866
913
|
rewardNmn: string;
|
|
914
|
+
rewardUsd: string;
|
|
867
915
|
surprise: boolean;
|
|
868
916
|
claimedNmn: string | null;
|
|
869
917
|
}, {
|
|
870
918
|
dayIndex: number;
|
|
871
919
|
rewardNmn: string;
|
|
920
|
+
rewardUsd: string;
|
|
872
921
|
surprise: boolean;
|
|
873
922
|
claimedNmn: string | null;
|
|
874
923
|
}>, "many">;
|
|
@@ -878,9 +927,11 @@ declare const DailyBonusStatusSchema: z.ZodObject<{
|
|
|
878
927
|
claimableToday: boolean;
|
|
879
928
|
todayDayIndex: number;
|
|
880
929
|
nextRewardNmn: string;
|
|
930
|
+
nextRewardUsd: string;
|
|
881
931
|
days: {
|
|
882
932
|
dayIndex: number;
|
|
883
933
|
rewardNmn: string;
|
|
934
|
+
rewardUsd: string;
|
|
884
935
|
surprise: boolean;
|
|
885
936
|
claimedNmn: string | null;
|
|
886
937
|
}[];
|
|
@@ -890,9 +941,11 @@ declare const DailyBonusStatusSchema: z.ZodObject<{
|
|
|
890
941
|
claimableToday: boolean;
|
|
891
942
|
todayDayIndex: number;
|
|
892
943
|
nextRewardNmn: string;
|
|
944
|
+
nextRewardUsd: string;
|
|
893
945
|
days: {
|
|
894
946
|
dayIndex: number;
|
|
895
947
|
rewardNmn: string;
|
|
948
|
+
rewardUsd: string;
|
|
896
949
|
surprise: boolean;
|
|
897
950
|
claimedNmn: string | null;
|
|
898
951
|
}[];
|
|
@@ -902,15 +955,18 @@ declare const DailyBonusClaimResultSchema: z.ZodObject<{
|
|
|
902
955
|
claimed: z.ZodBoolean;
|
|
903
956
|
dayIndex: z.ZodNumber;
|
|
904
957
|
rewardNmn: z.ZodString;
|
|
958
|
+
rewardUsd: z.ZodString;
|
|
905
959
|
currentStreak: z.ZodNumber;
|
|
906
960
|
}, "strip", z.ZodTypeAny, {
|
|
907
961
|
dayIndex: number;
|
|
908
962
|
rewardNmn: string;
|
|
963
|
+
rewardUsd: string;
|
|
909
964
|
currentStreak: number;
|
|
910
965
|
claimed: boolean;
|
|
911
966
|
}, {
|
|
912
967
|
dayIndex: number;
|
|
913
968
|
rewardNmn: string;
|
|
969
|
+
rewardUsd: string;
|
|
914
970
|
currentStreak: number;
|
|
915
971
|
claimed: boolean;
|
|
916
972
|
}>;
|
|
@@ -2705,19 +2761,27 @@ declare namespace UpgradePackageCommand {
|
|
|
2705
2761
|
|
|
2706
2762
|
declare namespace GetSlidesCommand {
|
|
2707
2763
|
const endpointDetails: EndpointDetails;
|
|
2708
|
-
const
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2764
|
+
const QuerySchema: z.ZodObject<{
|
|
2765
|
+
locale: z.ZodOptional<z.ZodEnum<["ru", "en", "ar", "zh", "uk", "es", "fr", "bn", "pt", "ja", "ko", "tr"]>>;
|
|
2766
|
+
}, "strip", z.ZodTypeAny, {
|
|
2767
|
+
locale?: "ru" | "en" | "ar" | "zh" | "uk" | "es" | "fr" | "bn" | "pt" | "ja" | "ko" | "tr" | undefined;
|
|
2768
|
+
}, {
|
|
2769
|
+
locale?: "ru" | "en" | "ar" | "zh" | "uk" | "es" | "fr" | "bn" | "pt" | "ja" | "ko" | "tr" | undefined;
|
|
2770
|
+
}>;
|
|
2771
|
+
type Query = z.infer<typeof QuerySchema>;
|
|
2772
|
+
const ResponseSchema: z.ZodArray<z.ZodObject<{
|
|
2773
|
+
id: z.ZodString;
|
|
2774
|
+
kind: z.ZodEnum<["image", "text"]>;
|
|
2775
|
+
imageUrl: z.ZodNullable<z.ZodString>;
|
|
2776
|
+
tag: z.ZodNullable<z.ZodString>;
|
|
2777
|
+
title: z.ZodNullable<z.ZodString>;
|
|
2778
|
+
body: z.ZodNullable<z.ZodString>;
|
|
2779
|
+
linkUrl: z.ZodNullable<z.ZodString>;
|
|
2780
|
+
linkTarget: z.ZodEnum<["_self", "_blank"]>;
|
|
2781
|
+
wholeSlideLink: z.ZodBoolean;
|
|
2782
|
+
buttonLabel: z.ZodNullable<z.ZodString>;
|
|
2783
|
+
buttonStyle: z.ZodNullable<z.ZodEnum<["primary", "secondary", "outline", "ghost"]>>;
|
|
2784
|
+
}, "strip", z.ZodTypeAny, {
|
|
2721
2785
|
id: string;
|
|
2722
2786
|
kind: "image" | "text";
|
|
2723
2787
|
imageUrl: string | null;
|
|
@@ -3203,19 +3267,23 @@ declare namespace GetDailyBonusCommand {
|
|
|
3203
3267
|
claimableToday: z.ZodBoolean;
|
|
3204
3268
|
todayDayIndex: z.ZodNumber;
|
|
3205
3269
|
nextRewardNmn: z.ZodString;
|
|
3270
|
+
nextRewardUsd: z.ZodString;
|
|
3206
3271
|
days: z.ZodArray<z.ZodObject<{
|
|
3207
3272
|
dayIndex: z.ZodNumber;
|
|
3208
3273
|
rewardNmn: z.ZodString;
|
|
3274
|
+
rewardUsd: z.ZodString;
|
|
3209
3275
|
surprise: z.ZodBoolean;
|
|
3210
3276
|
claimedNmn: z.ZodNullable<z.ZodString>;
|
|
3211
3277
|
}, "strip", z.ZodTypeAny, {
|
|
3212
3278
|
dayIndex: number;
|
|
3213
3279
|
rewardNmn: string;
|
|
3280
|
+
rewardUsd: string;
|
|
3214
3281
|
surprise: boolean;
|
|
3215
3282
|
claimedNmn: string | null;
|
|
3216
3283
|
}, {
|
|
3217
3284
|
dayIndex: number;
|
|
3218
3285
|
rewardNmn: string;
|
|
3286
|
+
rewardUsd: string;
|
|
3219
3287
|
surprise: boolean;
|
|
3220
3288
|
claimedNmn: string | null;
|
|
3221
3289
|
}>, "many">;
|
|
@@ -3225,9 +3293,11 @@ declare namespace GetDailyBonusCommand {
|
|
|
3225
3293
|
claimableToday: boolean;
|
|
3226
3294
|
todayDayIndex: number;
|
|
3227
3295
|
nextRewardNmn: string;
|
|
3296
|
+
nextRewardUsd: string;
|
|
3228
3297
|
days: {
|
|
3229
3298
|
dayIndex: number;
|
|
3230
3299
|
rewardNmn: string;
|
|
3300
|
+
rewardUsd: string;
|
|
3231
3301
|
surprise: boolean;
|
|
3232
3302
|
claimedNmn: string | null;
|
|
3233
3303
|
}[];
|
|
@@ -3237,9 +3307,11 @@ declare namespace GetDailyBonusCommand {
|
|
|
3237
3307
|
claimableToday: boolean;
|
|
3238
3308
|
todayDayIndex: number;
|
|
3239
3309
|
nextRewardNmn: string;
|
|
3310
|
+
nextRewardUsd: string;
|
|
3240
3311
|
days: {
|
|
3241
3312
|
dayIndex: number;
|
|
3242
3313
|
rewardNmn: string;
|
|
3314
|
+
rewardUsd: string;
|
|
3243
3315
|
surprise: boolean;
|
|
3244
3316
|
claimedNmn: string | null;
|
|
3245
3317
|
}[];
|
|
@@ -3252,21 +3324,517 @@ declare namespace ClaimDailyBonusCommand {
|
|
|
3252
3324
|
claimed: z.ZodBoolean;
|
|
3253
3325
|
dayIndex: z.ZodNumber;
|
|
3254
3326
|
rewardNmn: z.ZodString;
|
|
3327
|
+
rewardUsd: z.ZodString;
|
|
3255
3328
|
currentStreak: z.ZodNumber;
|
|
3256
3329
|
}, "strip", z.ZodTypeAny, {
|
|
3257
3330
|
dayIndex: number;
|
|
3258
3331
|
rewardNmn: string;
|
|
3332
|
+
rewardUsd: string;
|
|
3259
3333
|
currentStreak: number;
|
|
3260
3334
|
claimed: boolean;
|
|
3261
3335
|
}, {
|
|
3262
3336
|
dayIndex: number;
|
|
3263
3337
|
rewardNmn: string;
|
|
3338
|
+
rewardUsd: string;
|
|
3264
3339
|
currentStreak: number;
|
|
3265
3340
|
claimed: boolean;
|
|
3266
3341
|
}>;
|
|
3267
3342
|
type Response = z.infer<typeof ResponseSchema>;
|
|
3268
3343
|
}
|
|
3269
3344
|
|
|
3345
|
+
declare const WHEEL_SLOT_COUNT = 8;
|
|
3346
|
+
declare const WheelSlotSchema: z.ZodNumber;
|
|
3347
|
+
declare const WheelAmountModeSchema: z.ZodEnum<["ASSET", "USD"]>;
|
|
3348
|
+
type WheelAmountMode = z.infer<typeof WheelAmountModeSchema>;
|
|
3349
|
+
declare const WheelSpinKindSchema: z.ZodEnum<["FREE", "PAID"]>;
|
|
3350
|
+
type WheelSpinKind = z.infer<typeof WheelSpinKindSchema>;
|
|
3351
|
+
declare const WheelPrizeSchema: z.ZodObject<{
|
|
3352
|
+
id: z.ZodString;
|
|
3353
|
+
slot: z.ZodNumber;
|
|
3354
|
+
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3355
|
+
label: z.ZodNullable<z.ZodString>;
|
|
3356
|
+
amount: z.ZodString;
|
|
3357
|
+
valueUsd: z.ZodString;
|
|
3358
|
+
jackpot: z.ZodBoolean;
|
|
3359
|
+
}, "strip", z.ZodTypeAny, {
|
|
3360
|
+
id: string;
|
|
3361
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3362
|
+
amount: string;
|
|
3363
|
+
slot: number;
|
|
3364
|
+
label: string | null;
|
|
3365
|
+
valueUsd: string;
|
|
3366
|
+
jackpot: boolean;
|
|
3367
|
+
}, {
|
|
3368
|
+
id: string;
|
|
3369
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3370
|
+
amount: string;
|
|
3371
|
+
slot: number;
|
|
3372
|
+
label: string | null;
|
|
3373
|
+
valueUsd: string;
|
|
3374
|
+
jackpot: boolean;
|
|
3375
|
+
}>;
|
|
3376
|
+
type WheelPrize = z.infer<typeof WheelPrizeSchema>;
|
|
3377
|
+
declare const WheelWinSchema: z.ZodObject<{
|
|
3378
|
+
id: z.ZodString;
|
|
3379
|
+
slot: z.ZodNumber;
|
|
3380
|
+
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3381
|
+
label: z.ZodNullable<z.ZodString>;
|
|
3382
|
+
amount: z.ZodString;
|
|
3383
|
+
valueUsd: z.ZodString;
|
|
3384
|
+
kind: z.ZodEnum<["FREE", "PAID"]>;
|
|
3385
|
+
jackpot: z.ZodBoolean;
|
|
3386
|
+
createdAt: z.ZodString;
|
|
3387
|
+
}, "strip", z.ZodTypeAny, {
|
|
3388
|
+
id: string;
|
|
3389
|
+
createdAt: string;
|
|
3390
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3391
|
+
amount: string;
|
|
3392
|
+
kind: "FREE" | "PAID";
|
|
3393
|
+
slot: number;
|
|
3394
|
+
label: string | null;
|
|
3395
|
+
valueUsd: string;
|
|
3396
|
+
jackpot: boolean;
|
|
3397
|
+
}, {
|
|
3398
|
+
id: string;
|
|
3399
|
+
createdAt: string;
|
|
3400
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3401
|
+
amount: string;
|
|
3402
|
+
kind: "FREE" | "PAID";
|
|
3403
|
+
slot: number;
|
|
3404
|
+
label: string | null;
|
|
3405
|
+
valueUsd: string;
|
|
3406
|
+
jackpot: boolean;
|
|
3407
|
+
}>;
|
|
3408
|
+
type WheelWin = z.infer<typeof WheelWinSchema>;
|
|
3409
|
+
declare const WheelStatusSchema: z.ZodObject<{
|
|
3410
|
+
enabled: z.ZodBoolean;
|
|
3411
|
+
paidSpinEnabled: z.ZodBoolean;
|
|
3412
|
+
freeSpinAvailable: z.ZodBoolean;
|
|
3413
|
+
nextFreeSpinAt: z.ZodNullable<z.ZodString>;
|
|
3414
|
+
paidSpinPriceUsd: z.ZodString;
|
|
3415
|
+
paidSpinPriceNmn: z.ZodString;
|
|
3416
|
+
paidSpinsLeftToday: z.ZodNumber;
|
|
3417
|
+
prizes: z.ZodArray<z.ZodObject<{
|
|
3418
|
+
id: z.ZodString;
|
|
3419
|
+
slot: z.ZodNumber;
|
|
3420
|
+
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3421
|
+
label: z.ZodNullable<z.ZodString>;
|
|
3422
|
+
amount: z.ZodString;
|
|
3423
|
+
valueUsd: z.ZodString;
|
|
3424
|
+
jackpot: z.ZodBoolean;
|
|
3425
|
+
}, "strip", z.ZodTypeAny, {
|
|
3426
|
+
id: string;
|
|
3427
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3428
|
+
amount: string;
|
|
3429
|
+
slot: number;
|
|
3430
|
+
label: string | null;
|
|
3431
|
+
valueUsd: string;
|
|
3432
|
+
jackpot: boolean;
|
|
3433
|
+
}, {
|
|
3434
|
+
id: string;
|
|
3435
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3436
|
+
amount: string;
|
|
3437
|
+
slot: number;
|
|
3438
|
+
label: string | null;
|
|
3439
|
+
valueUsd: string;
|
|
3440
|
+
jackpot: boolean;
|
|
3441
|
+
}>, "many">;
|
|
3442
|
+
history: z.ZodArray<z.ZodObject<{
|
|
3443
|
+
id: z.ZodString;
|
|
3444
|
+
slot: z.ZodNumber;
|
|
3445
|
+
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3446
|
+
label: z.ZodNullable<z.ZodString>;
|
|
3447
|
+
amount: z.ZodString;
|
|
3448
|
+
valueUsd: z.ZodString;
|
|
3449
|
+
kind: z.ZodEnum<["FREE", "PAID"]>;
|
|
3450
|
+
jackpot: z.ZodBoolean;
|
|
3451
|
+
createdAt: z.ZodString;
|
|
3452
|
+
}, "strip", z.ZodTypeAny, {
|
|
3453
|
+
id: string;
|
|
3454
|
+
createdAt: string;
|
|
3455
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3456
|
+
amount: string;
|
|
3457
|
+
kind: "FREE" | "PAID";
|
|
3458
|
+
slot: number;
|
|
3459
|
+
label: string | null;
|
|
3460
|
+
valueUsd: string;
|
|
3461
|
+
jackpot: boolean;
|
|
3462
|
+
}, {
|
|
3463
|
+
id: string;
|
|
3464
|
+
createdAt: string;
|
|
3465
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3466
|
+
amount: string;
|
|
3467
|
+
kind: "FREE" | "PAID";
|
|
3468
|
+
slot: number;
|
|
3469
|
+
label: string | null;
|
|
3470
|
+
valueUsd: string;
|
|
3471
|
+
jackpot: boolean;
|
|
3472
|
+
}>, "many">;
|
|
3473
|
+
}, "strip", z.ZodTypeAny, {
|
|
3474
|
+
enabled: boolean;
|
|
3475
|
+
paidSpinEnabled: boolean;
|
|
3476
|
+
freeSpinAvailable: boolean;
|
|
3477
|
+
nextFreeSpinAt: string | null;
|
|
3478
|
+
paidSpinPriceUsd: string;
|
|
3479
|
+
paidSpinPriceNmn: string;
|
|
3480
|
+
paidSpinsLeftToday: number;
|
|
3481
|
+
prizes: {
|
|
3482
|
+
id: string;
|
|
3483
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3484
|
+
amount: string;
|
|
3485
|
+
slot: number;
|
|
3486
|
+
label: string | null;
|
|
3487
|
+
valueUsd: string;
|
|
3488
|
+
jackpot: boolean;
|
|
3489
|
+
}[];
|
|
3490
|
+
history: {
|
|
3491
|
+
id: string;
|
|
3492
|
+
createdAt: string;
|
|
3493
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3494
|
+
amount: string;
|
|
3495
|
+
kind: "FREE" | "PAID";
|
|
3496
|
+
slot: number;
|
|
3497
|
+
label: string | null;
|
|
3498
|
+
valueUsd: string;
|
|
3499
|
+
jackpot: boolean;
|
|
3500
|
+
}[];
|
|
3501
|
+
}, {
|
|
3502
|
+
enabled: boolean;
|
|
3503
|
+
paidSpinEnabled: boolean;
|
|
3504
|
+
freeSpinAvailable: boolean;
|
|
3505
|
+
nextFreeSpinAt: string | null;
|
|
3506
|
+
paidSpinPriceUsd: string;
|
|
3507
|
+
paidSpinPriceNmn: string;
|
|
3508
|
+
paidSpinsLeftToday: number;
|
|
3509
|
+
prizes: {
|
|
3510
|
+
id: string;
|
|
3511
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3512
|
+
amount: string;
|
|
3513
|
+
slot: number;
|
|
3514
|
+
label: string | null;
|
|
3515
|
+
valueUsd: string;
|
|
3516
|
+
jackpot: boolean;
|
|
3517
|
+
}[];
|
|
3518
|
+
history: {
|
|
3519
|
+
id: string;
|
|
3520
|
+
createdAt: string;
|
|
3521
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3522
|
+
amount: string;
|
|
3523
|
+
kind: "FREE" | "PAID";
|
|
3524
|
+
slot: number;
|
|
3525
|
+
label: string | null;
|
|
3526
|
+
valueUsd: string;
|
|
3527
|
+
jackpot: boolean;
|
|
3528
|
+
}[];
|
|
3529
|
+
}>;
|
|
3530
|
+
type WheelStatus = z.infer<typeof WheelStatusSchema>;
|
|
3531
|
+
declare const WheelSpinResultSchema: z.ZodObject<{
|
|
3532
|
+
spinId: z.ZodString;
|
|
3533
|
+
slot: z.ZodNumber;
|
|
3534
|
+
prize: z.ZodObject<{
|
|
3535
|
+
id: z.ZodString;
|
|
3536
|
+
slot: z.ZodNumber;
|
|
3537
|
+
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3538
|
+
label: z.ZodNullable<z.ZodString>;
|
|
3539
|
+
amount: z.ZodString;
|
|
3540
|
+
valueUsd: z.ZodString;
|
|
3541
|
+
jackpot: z.ZodBoolean;
|
|
3542
|
+
}, "strip", z.ZodTypeAny, {
|
|
3543
|
+
id: string;
|
|
3544
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3545
|
+
amount: string;
|
|
3546
|
+
slot: number;
|
|
3547
|
+
label: string | null;
|
|
3548
|
+
valueUsd: string;
|
|
3549
|
+
jackpot: boolean;
|
|
3550
|
+
}, {
|
|
3551
|
+
id: string;
|
|
3552
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3553
|
+
amount: string;
|
|
3554
|
+
slot: number;
|
|
3555
|
+
label: string | null;
|
|
3556
|
+
valueUsd: string;
|
|
3557
|
+
jackpot: boolean;
|
|
3558
|
+
}>;
|
|
3559
|
+
amount: z.ZodString;
|
|
3560
|
+
valueUsd: z.ZodString;
|
|
3561
|
+
kind: z.ZodEnum<["FREE", "PAID"]>;
|
|
3562
|
+
freeSpinAvailable: z.ZodBoolean;
|
|
3563
|
+
paidSpinsLeftToday: z.ZodNumber;
|
|
3564
|
+
}, "strip", z.ZodTypeAny, {
|
|
3565
|
+
amount: string;
|
|
3566
|
+
kind: "FREE" | "PAID";
|
|
3567
|
+
slot: number;
|
|
3568
|
+
valueUsd: string;
|
|
3569
|
+
freeSpinAvailable: boolean;
|
|
3570
|
+
paidSpinsLeftToday: number;
|
|
3571
|
+
spinId: string;
|
|
3572
|
+
prize: {
|
|
3573
|
+
id: string;
|
|
3574
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3575
|
+
amount: string;
|
|
3576
|
+
slot: number;
|
|
3577
|
+
label: string | null;
|
|
3578
|
+
valueUsd: string;
|
|
3579
|
+
jackpot: boolean;
|
|
3580
|
+
};
|
|
3581
|
+
}, {
|
|
3582
|
+
amount: string;
|
|
3583
|
+
kind: "FREE" | "PAID";
|
|
3584
|
+
slot: number;
|
|
3585
|
+
valueUsd: string;
|
|
3586
|
+
freeSpinAvailable: boolean;
|
|
3587
|
+
paidSpinsLeftToday: number;
|
|
3588
|
+
spinId: string;
|
|
3589
|
+
prize: {
|
|
3590
|
+
id: string;
|
|
3591
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3592
|
+
amount: string;
|
|
3593
|
+
slot: number;
|
|
3594
|
+
label: string | null;
|
|
3595
|
+
valueUsd: string;
|
|
3596
|
+
jackpot: boolean;
|
|
3597
|
+
};
|
|
3598
|
+
}>;
|
|
3599
|
+
type WheelSpinResult = z.infer<typeof WheelSpinResultSchema>;
|
|
3600
|
+
|
|
3601
|
+
declare namespace GetWheelCommand {
|
|
3602
|
+
const endpointDetails: EndpointDetails;
|
|
3603
|
+
const ResponseSchema: z.ZodObject<{
|
|
3604
|
+
enabled: z.ZodBoolean;
|
|
3605
|
+
paidSpinEnabled: z.ZodBoolean;
|
|
3606
|
+
freeSpinAvailable: z.ZodBoolean;
|
|
3607
|
+
nextFreeSpinAt: z.ZodNullable<z.ZodString>;
|
|
3608
|
+
paidSpinPriceUsd: z.ZodString;
|
|
3609
|
+
paidSpinPriceNmn: z.ZodString;
|
|
3610
|
+
paidSpinsLeftToday: z.ZodNumber;
|
|
3611
|
+
prizes: z.ZodArray<z.ZodObject<{
|
|
3612
|
+
id: z.ZodString;
|
|
3613
|
+
slot: z.ZodNumber;
|
|
3614
|
+
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3615
|
+
label: z.ZodNullable<z.ZodString>;
|
|
3616
|
+
amount: z.ZodString;
|
|
3617
|
+
valueUsd: z.ZodString;
|
|
3618
|
+
jackpot: z.ZodBoolean;
|
|
3619
|
+
}, "strip", z.ZodTypeAny, {
|
|
3620
|
+
id: string;
|
|
3621
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3622
|
+
amount: string;
|
|
3623
|
+
slot: number;
|
|
3624
|
+
label: string | null;
|
|
3625
|
+
valueUsd: string;
|
|
3626
|
+
jackpot: boolean;
|
|
3627
|
+
}, {
|
|
3628
|
+
id: string;
|
|
3629
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3630
|
+
amount: string;
|
|
3631
|
+
slot: number;
|
|
3632
|
+
label: string | null;
|
|
3633
|
+
valueUsd: string;
|
|
3634
|
+
jackpot: boolean;
|
|
3635
|
+
}>, "many">;
|
|
3636
|
+
history: z.ZodArray<z.ZodObject<{
|
|
3637
|
+
id: z.ZodString;
|
|
3638
|
+
slot: z.ZodNumber;
|
|
3639
|
+
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3640
|
+
label: z.ZodNullable<z.ZodString>;
|
|
3641
|
+
amount: z.ZodString;
|
|
3642
|
+
valueUsd: z.ZodString;
|
|
3643
|
+
kind: z.ZodEnum<["FREE", "PAID"]>;
|
|
3644
|
+
jackpot: z.ZodBoolean;
|
|
3645
|
+
createdAt: z.ZodString;
|
|
3646
|
+
}, "strip", z.ZodTypeAny, {
|
|
3647
|
+
id: string;
|
|
3648
|
+
createdAt: string;
|
|
3649
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3650
|
+
amount: string;
|
|
3651
|
+
kind: "FREE" | "PAID";
|
|
3652
|
+
slot: number;
|
|
3653
|
+
label: string | null;
|
|
3654
|
+
valueUsd: string;
|
|
3655
|
+
jackpot: boolean;
|
|
3656
|
+
}, {
|
|
3657
|
+
id: string;
|
|
3658
|
+
createdAt: string;
|
|
3659
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3660
|
+
amount: string;
|
|
3661
|
+
kind: "FREE" | "PAID";
|
|
3662
|
+
slot: number;
|
|
3663
|
+
label: string | null;
|
|
3664
|
+
valueUsd: string;
|
|
3665
|
+
jackpot: boolean;
|
|
3666
|
+
}>, "many">;
|
|
3667
|
+
}, "strip", z.ZodTypeAny, {
|
|
3668
|
+
enabled: boolean;
|
|
3669
|
+
paidSpinEnabled: boolean;
|
|
3670
|
+
freeSpinAvailable: boolean;
|
|
3671
|
+
nextFreeSpinAt: string | null;
|
|
3672
|
+
paidSpinPriceUsd: string;
|
|
3673
|
+
paidSpinPriceNmn: string;
|
|
3674
|
+
paidSpinsLeftToday: number;
|
|
3675
|
+
prizes: {
|
|
3676
|
+
id: string;
|
|
3677
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3678
|
+
amount: string;
|
|
3679
|
+
slot: number;
|
|
3680
|
+
label: string | null;
|
|
3681
|
+
valueUsd: string;
|
|
3682
|
+
jackpot: boolean;
|
|
3683
|
+
}[];
|
|
3684
|
+
history: {
|
|
3685
|
+
id: string;
|
|
3686
|
+
createdAt: string;
|
|
3687
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3688
|
+
amount: string;
|
|
3689
|
+
kind: "FREE" | "PAID";
|
|
3690
|
+
slot: number;
|
|
3691
|
+
label: string | null;
|
|
3692
|
+
valueUsd: string;
|
|
3693
|
+
jackpot: boolean;
|
|
3694
|
+
}[];
|
|
3695
|
+
}, {
|
|
3696
|
+
enabled: boolean;
|
|
3697
|
+
paidSpinEnabled: boolean;
|
|
3698
|
+
freeSpinAvailable: boolean;
|
|
3699
|
+
nextFreeSpinAt: string | null;
|
|
3700
|
+
paidSpinPriceUsd: string;
|
|
3701
|
+
paidSpinPriceNmn: string;
|
|
3702
|
+
paidSpinsLeftToday: number;
|
|
3703
|
+
prizes: {
|
|
3704
|
+
id: string;
|
|
3705
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3706
|
+
amount: string;
|
|
3707
|
+
slot: number;
|
|
3708
|
+
label: string | null;
|
|
3709
|
+
valueUsd: string;
|
|
3710
|
+
jackpot: boolean;
|
|
3711
|
+
}[];
|
|
3712
|
+
history: {
|
|
3713
|
+
id: string;
|
|
3714
|
+
createdAt: string;
|
|
3715
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3716
|
+
amount: string;
|
|
3717
|
+
kind: "FREE" | "PAID";
|
|
3718
|
+
slot: number;
|
|
3719
|
+
label: string | null;
|
|
3720
|
+
valueUsd: string;
|
|
3721
|
+
jackpot: boolean;
|
|
3722
|
+
}[];
|
|
3723
|
+
}>;
|
|
3724
|
+
type Response = z.infer<typeof ResponseSchema>;
|
|
3725
|
+
}
|
|
3726
|
+
declare namespace SpinWheelCommand {
|
|
3727
|
+
const endpointDetails: EndpointDetails;
|
|
3728
|
+
const RequestSchema: z.ZodObject<{
|
|
3729
|
+
paid: z.ZodDefault<z.ZodBoolean>;
|
|
3730
|
+
}, "strip", z.ZodTypeAny, {
|
|
3731
|
+
paid: boolean;
|
|
3732
|
+
}, {
|
|
3733
|
+
paid?: boolean | undefined;
|
|
3734
|
+
}>;
|
|
3735
|
+
type Request = z.infer<typeof RequestSchema>;
|
|
3736
|
+
const ResponseSchema: z.ZodObject<{
|
|
3737
|
+
spinId: z.ZodString;
|
|
3738
|
+
slot: z.ZodNumber;
|
|
3739
|
+
prize: z.ZodObject<{
|
|
3740
|
+
id: z.ZodString;
|
|
3741
|
+
slot: z.ZodNumber;
|
|
3742
|
+
asset: z.ZodEnum<["NMN", "USDT", "BTC", "ETH", "BNB", "TRX", "SOL"]>;
|
|
3743
|
+
label: z.ZodNullable<z.ZodString>;
|
|
3744
|
+
amount: z.ZodString;
|
|
3745
|
+
valueUsd: z.ZodString;
|
|
3746
|
+
jackpot: z.ZodBoolean;
|
|
3747
|
+
}, "strip", z.ZodTypeAny, {
|
|
3748
|
+
id: string;
|
|
3749
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3750
|
+
amount: string;
|
|
3751
|
+
slot: number;
|
|
3752
|
+
label: string | null;
|
|
3753
|
+
valueUsd: string;
|
|
3754
|
+
jackpot: boolean;
|
|
3755
|
+
}, {
|
|
3756
|
+
id: string;
|
|
3757
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3758
|
+
amount: string;
|
|
3759
|
+
slot: number;
|
|
3760
|
+
label: string | null;
|
|
3761
|
+
valueUsd: string;
|
|
3762
|
+
jackpot: boolean;
|
|
3763
|
+
}>;
|
|
3764
|
+
amount: z.ZodString;
|
|
3765
|
+
valueUsd: z.ZodString;
|
|
3766
|
+
kind: z.ZodEnum<["FREE", "PAID"]>;
|
|
3767
|
+
freeSpinAvailable: z.ZodBoolean;
|
|
3768
|
+
paidSpinsLeftToday: z.ZodNumber;
|
|
3769
|
+
}, "strip", z.ZodTypeAny, {
|
|
3770
|
+
amount: string;
|
|
3771
|
+
kind: "FREE" | "PAID";
|
|
3772
|
+
slot: number;
|
|
3773
|
+
valueUsd: string;
|
|
3774
|
+
freeSpinAvailable: boolean;
|
|
3775
|
+
paidSpinsLeftToday: number;
|
|
3776
|
+
spinId: string;
|
|
3777
|
+
prize: {
|
|
3778
|
+
id: string;
|
|
3779
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3780
|
+
amount: string;
|
|
3781
|
+
slot: number;
|
|
3782
|
+
label: string | null;
|
|
3783
|
+
valueUsd: string;
|
|
3784
|
+
jackpot: boolean;
|
|
3785
|
+
};
|
|
3786
|
+
}, {
|
|
3787
|
+
amount: string;
|
|
3788
|
+
kind: "FREE" | "PAID";
|
|
3789
|
+
slot: number;
|
|
3790
|
+
valueUsd: string;
|
|
3791
|
+
freeSpinAvailable: boolean;
|
|
3792
|
+
paidSpinsLeftToday: number;
|
|
3793
|
+
spinId: string;
|
|
3794
|
+
prize: {
|
|
3795
|
+
id: string;
|
|
3796
|
+
asset: "NMN" | "USDT" | "BTC" | "ETH" | "BNB" | "TRX" | "SOL";
|
|
3797
|
+
amount: string;
|
|
3798
|
+
slot: number;
|
|
3799
|
+
label: string | null;
|
|
3800
|
+
valueUsd: string;
|
|
3801
|
+
jackpot: boolean;
|
|
3802
|
+
};
|
|
3803
|
+
}>;
|
|
3804
|
+
type Response = z.infer<typeof ResponseSchema>;
|
|
3805
|
+
}
|
|
3806
|
+
|
|
3807
|
+
declare namespace GetTutorialRewardCommand {
|
|
3808
|
+
const endpointDetails: EndpointDetails;
|
|
3809
|
+
const ResponseSchema: z.ZodObject<{
|
|
3810
|
+
rewardNmn: z.ZodString;
|
|
3811
|
+
claimed: z.ZodBoolean;
|
|
3812
|
+
}, "strip", z.ZodTypeAny, {
|
|
3813
|
+
rewardNmn: string;
|
|
3814
|
+
claimed: boolean;
|
|
3815
|
+
}, {
|
|
3816
|
+
rewardNmn: string;
|
|
3817
|
+
claimed: boolean;
|
|
3818
|
+
}>;
|
|
3819
|
+
type Response = z.infer<typeof ResponseSchema>;
|
|
3820
|
+
}
|
|
3821
|
+
declare namespace ClaimTutorialRewardCommand {
|
|
3822
|
+
const endpointDetails: EndpointDetails;
|
|
3823
|
+
const RequestSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
3824
|
+
type Request = z.infer<typeof RequestSchema>;
|
|
3825
|
+
const ResponseSchema: z.ZodObject<{
|
|
3826
|
+
claimed: z.ZodBoolean;
|
|
3827
|
+
rewardNmn: z.ZodString;
|
|
3828
|
+
}, "strip", z.ZodTypeAny, {
|
|
3829
|
+
rewardNmn: string;
|
|
3830
|
+
claimed: boolean;
|
|
3831
|
+
}, {
|
|
3832
|
+
rewardNmn: string;
|
|
3833
|
+
claimed: boolean;
|
|
3834
|
+
}>;
|
|
3835
|
+
type Response = z.infer<typeof ResponseSchema>;
|
|
3836
|
+
}
|
|
3837
|
+
|
|
3270
3838
|
declare namespace GetLeaderboardCommand {
|
|
3271
3839
|
const endpointDetails: EndpointDetails;
|
|
3272
3840
|
const QuerySchema: z.ZodObject<{
|
|
@@ -4446,6 +5014,9 @@ declare const REST_API: {
|
|
|
4446
5014
|
readonly CANCEL: "/withdrawals/:id/cancel";
|
|
4447
5015
|
readonly CONFIRM: "/withdrawals/:id/confirm";
|
|
4448
5016
|
};
|
|
5017
|
+
readonly TUTORIAL: {
|
|
5018
|
+
readonly REWARD: "/tutorial/reward";
|
|
5019
|
+
};
|
|
4449
5020
|
readonly SETTINGS: {
|
|
4450
5021
|
readonly EMAIL_REQUEST: "/settings/email/request";
|
|
4451
5022
|
readonly EMAIL_CONFIRM: "/settings/email/confirm";
|
|
@@ -4464,6 +5035,10 @@ declare const REST_API: {
|
|
|
4464
5035
|
readonly DAILY: "/bonus/daily";
|
|
4465
5036
|
readonly DAILY_CLAIM: "/bonus/daily/claim";
|
|
4466
5037
|
};
|
|
5038
|
+
readonly WHEEL: {
|
|
5039
|
+
readonly STATUS: "/wheel";
|
|
5040
|
+
readonly SPIN: "/wheel/spin";
|
|
5041
|
+
};
|
|
4467
5042
|
readonly LEADERBOARD: {
|
|
4468
5043
|
readonly OVERVIEW: "/leaderboard";
|
|
4469
5044
|
};
|
|
@@ -4485,4 +5060,4 @@ declare const REST_API: {
|
|
|
4485
5060
|
declare const API_PREFIX = "/api";
|
|
4486
5061
|
declare const API_VERSION = "v1";
|
|
4487
5062
|
|
|
4488
|
-
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, 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, 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 };
|
|
5063
|
+
export { API_PREFIX, API_VERSION, ASSET_DECIMALS, ASSET_SYMBOLS, AVATAR_CONTENT_TYPES, type AssetBalance, AssetBalanceSchema, type AssetSymbol, AssetSymbolSchema, AvatarContentTypeSchema, AvatarUploadUrlCommand, 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 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, 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 };
|