@numen-crypto/contract 0.16.0 → 0.17.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 +15 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +85 -61
- package/dist/index.d.ts +85 -61
- package/dist/index.js +16 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3724,6 +3724,7 @@ declare const WheelStatusSchema: z.ZodObject<{
|
|
|
3724
3724
|
paidSpinEnabled: z.ZodBoolean;
|
|
3725
3725
|
freeSpinAvailable: z.ZodBoolean;
|
|
3726
3726
|
nextFreeSpinAt: z.ZodNullable<z.ZodString>;
|
|
3727
|
+
freeSpinEveryDays: z.ZodNumber;
|
|
3727
3728
|
paidSpinPriceUsd: z.ZodString;
|
|
3728
3729
|
paidSpinPriceNmn: z.ZodString;
|
|
3729
3730
|
paidSpinsLeftToday: z.ZodNumber;
|
|
@@ -3788,6 +3789,7 @@ declare const WheelStatusSchema: z.ZodObject<{
|
|
|
3788
3789
|
paidSpinEnabled: boolean;
|
|
3789
3790
|
freeSpinAvailable: boolean;
|
|
3790
3791
|
nextFreeSpinAt: string | null;
|
|
3792
|
+
freeSpinEveryDays: number;
|
|
3791
3793
|
paidSpinPriceUsd: string;
|
|
3792
3794
|
paidSpinPriceNmn: string;
|
|
3793
3795
|
paidSpinsLeftToday: number;
|
|
@@ -3816,6 +3818,7 @@ declare const WheelStatusSchema: z.ZodObject<{
|
|
|
3816
3818
|
paidSpinEnabled: boolean;
|
|
3817
3819
|
freeSpinAvailable: boolean;
|
|
3818
3820
|
nextFreeSpinAt: string | null;
|
|
3821
|
+
freeSpinEveryDays: number;
|
|
3819
3822
|
paidSpinPriceUsd: string;
|
|
3820
3823
|
paidSpinPriceNmn: string;
|
|
3821
3824
|
paidSpinsLeftToday: number;
|
|
@@ -3918,6 +3921,7 @@ declare namespace GetWheelCommand {
|
|
|
3918
3921
|
paidSpinEnabled: z.ZodBoolean;
|
|
3919
3922
|
freeSpinAvailable: z.ZodBoolean;
|
|
3920
3923
|
nextFreeSpinAt: z.ZodNullable<z.ZodString>;
|
|
3924
|
+
freeSpinEveryDays: z.ZodNumber;
|
|
3921
3925
|
paidSpinPriceUsd: z.ZodString;
|
|
3922
3926
|
paidSpinPriceNmn: z.ZodString;
|
|
3923
3927
|
paidSpinsLeftToday: z.ZodNumber;
|
|
@@ -3982,6 +3986,7 @@ declare namespace GetWheelCommand {
|
|
|
3982
3986
|
paidSpinEnabled: boolean;
|
|
3983
3987
|
freeSpinAvailable: boolean;
|
|
3984
3988
|
nextFreeSpinAt: string | null;
|
|
3989
|
+
freeSpinEveryDays: number;
|
|
3985
3990
|
paidSpinPriceUsd: string;
|
|
3986
3991
|
paidSpinPriceNmn: string;
|
|
3987
3992
|
paidSpinsLeftToday: number;
|
|
@@ -4010,6 +4015,7 @@ declare namespace GetWheelCommand {
|
|
|
4010
4015
|
paidSpinEnabled: boolean;
|
|
4011
4016
|
freeSpinAvailable: boolean;
|
|
4012
4017
|
nextFreeSpinAt: string | null;
|
|
4018
|
+
freeSpinEveryDays: number;
|
|
4013
4019
|
paidSpinPriceUsd: string;
|
|
4014
4020
|
paidSpinPriceNmn: string;
|
|
4015
4021
|
paidSpinsLeftToday: number;
|
|
@@ -4593,6 +4599,23 @@ declare namespace UnlinkAccountCommand {
|
|
|
4593
4599
|
const ResponseSchema: z.ZodVoid;
|
|
4594
4600
|
type Response = z.infer<typeof ResponseSchema>;
|
|
4595
4601
|
}
|
|
4602
|
+
declare namespace TelegramLinkCodeCommand {
|
|
4603
|
+
const endpointDetails: EndpointDetails;
|
|
4604
|
+
const ResponseSchema: z.ZodObject<{
|
|
4605
|
+
code: z.ZodString;
|
|
4606
|
+
url: z.ZodString;
|
|
4607
|
+
expiresInSec: z.ZodNumber;
|
|
4608
|
+
}, "strip", z.ZodTypeAny, {
|
|
4609
|
+
code: string;
|
|
4610
|
+
expiresInSec: number;
|
|
4611
|
+
url: string;
|
|
4612
|
+
}, {
|
|
4613
|
+
code: string;
|
|
4614
|
+
expiresInSec: number;
|
|
4615
|
+
url: string;
|
|
4616
|
+
}>;
|
|
4617
|
+
type Response = z.infer<typeof ResponseSchema>;
|
|
4618
|
+
}
|
|
4596
4619
|
|
|
4597
4620
|
declare const TICKET_CATEGORIES: readonly ["account", "deposit", "withdrawal", "trading", "partners", "other"];
|
|
4598
4621
|
declare const TicketCategorySchema: z.ZodEnum<["account", "deposit", "withdrawal", "trading", "partners", "other"]>;
|
|
@@ -4611,15 +4634,15 @@ declare const TicketAttachmentSchema: z.ZodObject<{
|
|
|
4611
4634
|
}, "strip", z.ZodTypeAny, {
|
|
4612
4635
|
id: string;
|
|
4613
4636
|
contentType: string;
|
|
4637
|
+
url: string;
|
|
4614
4638
|
fileName: string;
|
|
4615
4639
|
sizeBytes: number;
|
|
4616
|
-
url: string;
|
|
4617
4640
|
}, {
|
|
4618
4641
|
id: string;
|
|
4619
4642
|
contentType: string;
|
|
4643
|
+
url: string;
|
|
4620
4644
|
fileName: string;
|
|
4621
4645
|
sizeBytes: number;
|
|
4622
|
-
url: string;
|
|
4623
4646
|
}>;
|
|
4624
4647
|
type TicketAttachment = z.infer<typeof TicketAttachmentSchema>;
|
|
4625
4648
|
declare const TicketMessageSchema: z.ZodObject<{
|
|
@@ -4635,15 +4658,15 @@ declare const TicketMessageSchema: z.ZodObject<{
|
|
|
4635
4658
|
}, "strip", z.ZodTypeAny, {
|
|
4636
4659
|
id: string;
|
|
4637
4660
|
contentType: string;
|
|
4661
|
+
url: string;
|
|
4638
4662
|
fileName: string;
|
|
4639
4663
|
sizeBytes: number;
|
|
4640
|
-
url: string;
|
|
4641
4664
|
}, {
|
|
4642
4665
|
id: string;
|
|
4643
4666
|
contentType: string;
|
|
4667
|
+
url: string;
|
|
4644
4668
|
fileName: string;
|
|
4645
4669
|
sizeBytes: number;
|
|
4646
|
-
url: string;
|
|
4647
4670
|
}>, "many">;
|
|
4648
4671
|
createdAt: z.ZodString;
|
|
4649
4672
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4654,9 +4677,9 @@ declare const TicketMessageSchema: z.ZodObject<{
|
|
|
4654
4677
|
attachments: {
|
|
4655
4678
|
id: string;
|
|
4656
4679
|
contentType: string;
|
|
4680
|
+
url: string;
|
|
4657
4681
|
fileName: string;
|
|
4658
4682
|
sizeBytes: number;
|
|
4659
|
-
url: string;
|
|
4660
4683
|
}[];
|
|
4661
4684
|
}, {
|
|
4662
4685
|
id: string;
|
|
@@ -4666,9 +4689,9 @@ declare const TicketMessageSchema: z.ZodObject<{
|
|
|
4666
4689
|
attachments: {
|
|
4667
4690
|
id: string;
|
|
4668
4691
|
contentType: string;
|
|
4692
|
+
url: string;
|
|
4669
4693
|
fileName: string;
|
|
4670
4694
|
sizeBytes: number;
|
|
4671
|
-
url: string;
|
|
4672
4695
|
}[];
|
|
4673
4696
|
}>;
|
|
4674
4697
|
type TicketMessage = z.infer<typeof TicketMessageSchema>;
|
|
@@ -4716,15 +4739,15 @@ declare const TicketDetailSchema: z.ZodObject<{
|
|
|
4716
4739
|
}, "strip", z.ZodTypeAny, {
|
|
4717
4740
|
id: string;
|
|
4718
4741
|
contentType: string;
|
|
4742
|
+
url: string;
|
|
4719
4743
|
fileName: string;
|
|
4720
4744
|
sizeBytes: number;
|
|
4721
|
-
url: string;
|
|
4722
4745
|
}, {
|
|
4723
4746
|
id: string;
|
|
4724
4747
|
contentType: string;
|
|
4748
|
+
url: string;
|
|
4725
4749
|
fileName: string;
|
|
4726
4750
|
sizeBytes: number;
|
|
4727
|
-
url: string;
|
|
4728
4751
|
}>, "many">;
|
|
4729
4752
|
createdAt: z.ZodString;
|
|
4730
4753
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4735,9 +4758,9 @@ declare const TicketDetailSchema: z.ZodObject<{
|
|
|
4735
4758
|
attachments: {
|
|
4736
4759
|
id: string;
|
|
4737
4760
|
contentType: string;
|
|
4761
|
+
url: string;
|
|
4738
4762
|
fileName: string;
|
|
4739
4763
|
sizeBytes: number;
|
|
4740
|
-
url: string;
|
|
4741
4764
|
}[];
|
|
4742
4765
|
}, {
|
|
4743
4766
|
id: string;
|
|
@@ -4747,9 +4770,9 @@ declare const TicketDetailSchema: z.ZodObject<{
|
|
|
4747
4770
|
attachments: {
|
|
4748
4771
|
id: string;
|
|
4749
4772
|
contentType: string;
|
|
4773
|
+
url: string;
|
|
4750
4774
|
fileName: string;
|
|
4751
4775
|
sizeBytes: number;
|
|
4752
|
-
url: string;
|
|
4753
4776
|
}[];
|
|
4754
4777
|
}>, "many">;
|
|
4755
4778
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4767,9 +4790,9 @@ declare const TicketDetailSchema: z.ZodObject<{
|
|
|
4767
4790
|
attachments: {
|
|
4768
4791
|
id: string;
|
|
4769
4792
|
contentType: string;
|
|
4793
|
+
url: string;
|
|
4770
4794
|
fileName: string;
|
|
4771
4795
|
sizeBytes: number;
|
|
4772
|
-
url: string;
|
|
4773
4796
|
}[];
|
|
4774
4797
|
}[];
|
|
4775
4798
|
}, {
|
|
@@ -4787,9 +4810,9 @@ declare const TicketDetailSchema: z.ZodObject<{
|
|
|
4787
4810
|
attachments: {
|
|
4788
4811
|
id: string;
|
|
4789
4812
|
contentType: string;
|
|
4813
|
+
url: string;
|
|
4790
4814
|
fileName: string;
|
|
4791
4815
|
sizeBytes: number;
|
|
4792
|
-
url: string;
|
|
4793
4816
|
}[];
|
|
4794
4817
|
}[];
|
|
4795
4818
|
}>;
|
|
@@ -4893,15 +4916,15 @@ declare const SupportTicketDetailSchema: z.ZodObject<{
|
|
|
4893
4916
|
}, "strip", z.ZodTypeAny, {
|
|
4894
4917
|
id: string;
|
|
4895
4918
|
contentType: string;
|
|
4919
|
+
url: string;
|
|
4896
4920
|
fileName: string;
|
|
4897
4921
|
sizeBytes: number;
|
|
4898
|
-
url: string;
|
|
4899
4922
|
}, {
|
|
4900
4923
|
id: string;
|
|
4901
4924
|
contentType: string;
|
|
4925
|
+
url: string;
|
|
4902
4926
|
fileName: string;
|
|
4903
4927
|
sizeBytes: number;
|
|
4904
|
-
url: string;
|
|
4905
4928
|
}>, "many">;
|
|
4906
4929
|
createdAt: z.ZodString;
|
|
4907
4930
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4912,9 +4935,9 @@ declare const SupportTicketDetailSchema: z.ZodObject<{
|
|
|
4912
4935
|
attachments: {
|
|
4913
4936
|
id: string;
|
|
4914
4937
|
contentType: string;
|
|
4938
|
+
url: string;
|
|
4915
4939
|
fileName: string;
|
|
4916
4940
|
sizeBytes: number;
|
|
4917
|
-
url: string;
|
|
4918
4941
|
}[];
|
|
4919
4942
|
}, {
|
|
4920
4943
|
id: string;
|
|
@@ -4924,9 +4947,9 @@ declare const SupportTicketDetailSchema: z.ZodObject<{
|
|
|
4924
4947
|
attachments: {
|
|
4925
4948
|
id: string;
|
|
4926
4949
|
contentType: string;
|
|
4950
|
+
url: string;
|
|
4927
4951
|
fileName: string;
|
|
4928
4952
|
sizeBytes: number;
|
|
4929
|
-
url: string;
|
|
4930
4953
|
}[];
|
|
4931
4954
|
}>, "many">;
|
|
4932
4955
|
} & {
|
|
@@ -4982,9 +5005,9 @@ declare const SupportTicketDetailSchema: z.ZodObject<{
|
|
|
4982
5005
|
attachments: {
|
|
4983
5006
|
id: string;
|
|
4984
5007
|
contentType: string;
|
|
5008
|
+
url: string;
|
|
4985
5009
|
fileName: string;
|
|
4986
5010
|
sizeBytes: number;
|
|
4987
|
-
url: string;
|
|
4988
5011
|
}[];
|
|
4989
5012
|
}[];
|
|
4990
5013
|
userEmail: string;
|
|
@@ -5014,9 +5037,9 @@ declare const SupportTicketDetailSchema: z.ZodObject<{
|
|
|
5014
5037
|
attachments: {
|
|
5015
5038
|
id: string;
|
|
5016
5039
|
contentType: string;
|
|
5040
|
+
url: string;
|
|
5017
5041
|
fileName: string;
|
|
5018
5042
|
sizeBytes: number;
|
|
5019
|
-
url: string;
|
|
5020
5043
|
}[];
|
|
5021
5044
|
}[];
|
|
5022
5045
|
userEmail: string;
|
|
@@ -5133,15 +5156,15 @@ declare namespace GetSupportTicketCommand {
|
|
|
5133
5156
|
}, "strip", z.ZodTypeAny, {
|
|
5134
5157
|
id: string;
|
|
5135
5158
|
contentType: string;
|
|
5159
|
+
url: string;
|
|
5136
5160
|
fileName: string;
|
|
5137
5161
|
sizeBytes: number;
|
|
5138
|
-
url: string;
|
|
5139
5162
|
}, {
|
|
5140
5163
|
id: string;
|
|
5141
5164
|
contentType: string;
|
|
5165
|
+
url: string;
|
|
5142
5166
|
fileName: string;
|
|
5143
5167
|
sizeBytes: number;
|
|
5144
|
-
url: string;
|
|
5145
5168
|
}>, "many">;
|
|
5146
5169
|
createdAt: z.ZodString;
|
|
5147
5170
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5152,9 +5175,9 @@ declare namespace GetSupportTicketCommand {
|
|
|
5152
5175
|
attachments: {
|
|
5153
5176
|
id: string;
|
|
5154
5177
|
contentType: string;
|
|
5178
|
+
url: string;
|
|
5155
5179
|
fileName: string;
|
|
5156
5180
|
sizeBytes: number;
|
|
5157
|
-
url: string;
|
|
5158
5181
|
}[];
|
|
5159
5182
|
}, {
|
|
5160
5183
|
id: string;
|
|
@@ -5164,9 +5187,9 @@ declare namespace GetSupportTicketCommand {
|
|
|
5164
5187
|
attachments: {
|
|
5165
5188
|
id: string;
|
|
5166
5189
|
contentType: string;
|
|
5190
|
+
url: string;
|
|
5167
5191
|
fileName: string;
|
|
5168
5192
|
sizeBytes: number;
|
|
5169
|
-
url: string;
|
|
5170
5193
|
}[];
|
|
5171
5194
|
}>, "many">;
|
|
5172
5195
|
} & {
|
|
@@ -5222,9 +5245,9 @@ declare namespace GetSupportTicketCommand {
|
|
|
5222
5245
|
attachments: {
|
|
5223
5246
|
id: string;
|
|
5224
5247
|
contentType: string;
|
|
5248
|
+
url: string;
|
|
5225
5249
|
fileName: string;
|
|
5226
5250
|
sizeBytes: number;
|
|
5227
|
-
url: string;
|
|
5228
5251
|
}[];
|
|
5229
5252
|
}[];
|
|
5230
5253
|
userEmail: string;
|
|
@@ -5254,9 +5277,9 @@ declare namespace GetSupportTicketCommand {
|
|
|
5254
5277
|
attachments: {
|
|
5255
5278
|
id: string;
|
|
5256
5279
|
contentType: string;
|
|
5280
|
+
url: string;
|
|
5257
5281
|
fileName: string;
|
|
5258
5282
|
sizeBytes: number;
|
|
5259
|
-
url: string;
|
|
5260
5283
|
}[];
|
|
5261
5284
|
}[];
|
|
5262
5285
|
userEmail: string;
|
|
@@ -5288,15 +5311,15 @@ declare namespace ClaimTicketCommand {
|
|
|
5288
5311
|
}, "strip", z.ZodTypeAny, {
|
|
5289
5312
|
id: string;
|
|
5290
5313
|
contentType: string;
|
|
5314
|
+
url: string;
|
|
5291
5315
|
fileName: string;
|
|
5292
5316
|
sizeBytes: number;
|
|
5293
|
-
url: string;
|
|
5294
5317
|
}, {
|
|
5295
5318
|
id: string;
|
|
5296
5319
|
contentType: string;
|
|
5320
|
+
url: string;
|
|
5297
5321
|
fileName: string;
|
|
5298
5322
|
sizeBytes: number;
|
|
5299
|
-
url: string;
|
|
5300
5323
|
}>, "many">;
|
|
5301
5324
|
createdAt: z.ZodString;
|
|
5302
5325
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5307,9 +5330,9 @@ declare namespace ClaimTicketCommand {
|
|
|
5307
5330
|
attachments: {
|
|
5308
5331
|
id: string;
|
|
5309
5332
|
contentType: string;
|
|
5333
|
+
url: string;
|
|
5310
5334
|
fileName: string;
|
|
5311
5335
|
sizeBytes: number;
|
|
5312
|
-
url: string;
|
|
5313
5336
|
}[];
|
|
5314
5337
|
}, {
|
|
5315
5338
|
id: string;
|
|
@@ -5319,9 +5342,9 @@ declare namespace ClaimTicketCommand {
|
|
|
5319
5342
|
attachments: {
|
|
5320
5343
|
id: string;
|
|
5321
5344
|
contentType: string;
|
|
5345
|
+
url: string;
|
|
5322
5346
|
fileName: string;
|
|
5323
5347
|
sizeBytes: number;
|
|
5324
|
-
url: string;
|
|
5325
5348
|
}[];
|
|
5326
5349
|
}>, "many">;
|
|
5327
5350
|
} & {
|
|
@@ -5377,9 +5400,9 @@ declare namespace ClaimTicketCommand {
|
|
|
5377
5400
|
attachments: {
|
|
5378
5401
|
id: string;
|
|
5379
5402
|
contentType: string;
|
|
5403
|
+
url: string;
|
|
5380
5404
|
fileName: string;
|
|
5381
5405
|
sizeBytes: number;
|
|
5382
|
-
url: string;
|
|
5383
5406
|
}[];
|
|
5384
5407
|
}[];
|
|
5385
5408
|
userEmail: string;
|
|
@@ -5409,9 +5432,9 @@ declare namespace ClaimTicketCommand {
|
|
|
5409
5432
|
attachments: {
|
|
5410
5433
|
id: string;
|
|
5411
5434
|
contentType: string;
|
|
5435
|
+
url: string;
|
|
5412
5436
|
fileName: string;
|
|
5413
5437
|
sizeBytes: number;
|
|
5414
|
-
url: string;
|
|
5415
5438
|
}[];
|
|
5416
5439
|
}[];
|
|
5417
5440
|
userEmail: string;
|
|
@@ -5479,15 +5502,15 @@ declare namespace SupportReplyTicketCommand {
|
|
|
5479
5502
|
}, "strip", z.ZodTypeAny, {
|
|
5480
5503
|
id: string;
|
|
5481
5504
|
contentType: string;
|
|
5505
|
+
url: string;
|
|
5482
5506
|
fileName: string;
|
|
5483
5507
|
sizeBytes: number;
|
|
5484
|
-
url: string;
|
|
5485
5508
|
}, {
|
|
5486
5509
|
id: string;
|
|
5487
5510
|
contentType: string;
|
|
5511
|
+
url: string;
|
|
5488
5512
|
fileName: string;
|
|
5489
5513
|
sizeBytes: number;
|
|
5490
|
-
url: string;
|
|
5491
5514
|
}>, "many">;
|
|
5492
5515
|
createdAt: z.ZodString;
|
|
5493
5516
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5498,9 +5521,9 @@ declare namespace SupportReplyTicketCommand {
|
|
|
5498
5521
|
attachments: {
|
|
5499
5522
|
id: string;
|
|
5500
5523
|
contentType: string;
|
|
5524
|
+
url: string;
|
|
5501
5525
|
fileName: string;
|
|
5502
5526
|
sizeBytes: number;
|
|
5503
|
-
url: string;
|
|
5504
5527
|
}[];
|
|
5505
5528
|
}, {
|
|
5506
5529
|
id: string;
|
|
@@ -5510,9 +5533,9 @@ declare namespace SupportReplyTicketCommand {
|
|
|
5510
5533
|
attachments: {
|
|
5511
5534
|
id: string;
|
|
5512
5535
|
contentType: string;
|
|
5536
|
+
url: string;
|
|
5513
5537
|
fileName: string;
|
|
5514
5538
|
sizeBytes: number;
|
|
5515
|
-
url: string;
|
|
5516
5539
|
}[];
|
|
5517
5540
|
}>, "many">;
|
|
5518
5541
|
} & {
|
|
@@ -5568,9 +5591,9 @@ declare namespace SupportReplyTicketCommand {
|
|
|
5568
5591
|
attachments: {
|
|
5569
5592
|
id: string;
|
|
5570
5593
|
contentType: string;
|
|
5594
|
+
url: string;
|
|
5571
5595
|
fileName: string;
|
|
5572
5596
|
sizeBytes: number;
|
|
5573
|
-
url: string;
|
|
5574
5597
|
}[];
|
|
5575
5598
|
}[];
|
|
5576
5599
|
userEmail: string;
|
|
@@ -5600,9 +5623,9 @@ declare namespace SupportReplyTicketCommand {
|
|
|
5600
5623
|
attachments: {
|
|
5601
5624
|
id: string;
|
|
5602
5625
|
contentType: string;
|
|
5626
|
+
url: string;
|
|
5603
5627
|
fileName: string;
|
|
5604
5628
|
sizeBytes: number;
|
|
5605
|
-
url: string;
|
|
5606
5629
|
}[];
|
|
5607
5630
|
}[];
|
|
5608
5631
|
userEmail: string;
|
|
@@ -5634,15 +5657,15 @@ declare namespace ResolveTicketCommand {
|
|
|
5634
5657
|
}, "strip", z.ZodTypeAny, {
|
|
5635
5658
|
id: string;
|
|
5636
5659
|
contentType: string;
|
|
5660
|
+
url: string;
|
|
5637
5661
|
fileName: string;
|
|
5638
5662
|
sizeBytes: number;
|
|
5639
|
-
url: string;
|
|
5640
5663
|
}, {
|
|
5641
5664
|
id: string;
|
|
5642
5665
|
contentType: string;
|
|
5666
|
+
url: string;
|
|
5643
5667
|
fileName: string;
|
|
5644
5668
|
sizeBytes: number;
|
|
5645
|
-
url: string;
|
|
5646
5669
|
}>, "many">;
|
|
5647
5670
|
createdAt: z.ZodString;
|
|
5648
5671
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5653,9 +5676,9 @@ declare namespace ResolveTicketCommand {
|
|
|
5653
5676
|
attachments: {
|
|
5654
5677
|
id: string;
|
|
5655
5678
|
contentType: string;
|
|
5679
|
+
url: string;
|
|
5656
5680
|
fileName: string;
|
|
5657
5681
|
sizeBytes: number;
|
|
5658
|
-
url: string;
|
|
5659
5682
|
}[];
|
|
5660
5683
|
}, {
|
|
5661
5684
|
id: string;
|
|
@@ -5665,9 +5688,9 @@ declare namespace ResolveTicketCommand {
|
|
|
5665
5688
|
attachments: {
|
|
5666
5689
|
id: string;
|
|
5667
5690
|
contentType: string;
|
|
5691
|
+
url: string;
|
|
5668
5692
|
fileName: string;
|
|
5669
5693
|
sizeBytes: number;
|
|
5670
|
-
url: string;
|
|
5671
5694
|
}[];
|
|
5672
5695
|
}>, "many">;
|
|
5673
5696
|
} & {
|
|
@@ -5723,9 +5746,9 @@ declare namespace ResolveTicketCommand {
|
|
|
5723
5746
|
attachments: {
|
|
5724
5747
|
id: string;
|
|
5725
5748
|
contentType: string;
|
|
5749
|
+
url: string;
|
|
5726
5750
|
fileName: string;
|
|
5727
5751
|
sizeBytes: number;
|
|
5728
|
-
url: string;
|
|
5729
5752
|
}[];
|
|
5730
5753
|
}[];
|
|
5731
5754
|
userEmail: string;
|
|
@@ -5755,9 +5778,9 @@ declare namespace ResolveTicketCommand {
|
|
|
5755
5778
|
attachments: {
|
|
5756
5779
|
id: string;
|
|
5757
5780
|
contentType: string;
|
|
5781
|
+
url: string;
|
|
5758
5782
|
fileName: string;
|
|
5759
5783
|
sizeBytes: number;
|
|
5760
|
-
url: string;
|
|
5761
5784
|
}[];
|
|
5762
5785
|
}[];
|
|
5763
5786
|
userEmail: string;
|
|
@@ -5836,15 +5859,15 @@ declare namespace GetTicketCommand {
|
|
|
5836
5859
|
}, "strip", z.ZodTypeAny, {
|
|
5837
5860
|
id: string;
|
|
5838
5861
|
contentType: string;
|
|
5862
|
+
url: string;
|
|
5839
5863
|
fileName: string;
|
|
5840
5864
|
sizeBytes: number;
|
|
5841
|
-
url: string;
|
|
5842
5865
|
}, {
|
|
5843
5866
|
id: string;
|
|
5844
5867
|
contentType: string;
|
|
5868
|
+
url: string;
|
|
5845
5869
|
fileName: string;
|
|
5846
5870
|
sizeBytes: number;
|
|
5847
|
-
url: string;
|
|
5848
5871
|
}>, "many">;
|
|
5849
5872
|
createdAt: z.ZodString;
|
|
5850
5873
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5855,9 +5878,9 @@ declare namespace GetTicketCommand {
|
|
|
5855
5878
|
attachments: {
|
|
5856
5879
|
id: string;
|
|
5857
5880
|
contentType: string;
|
|
5881
|
+
url: string;
|
|
5858
5882
|
fileName: string;
|
|
5859
5883
|
sizeBytes: number;
|
|
5860
|
-
url: string;
|
|
5861
5884
|
}[];
|
|
5862
5885
|
}, {
|
|
5863
5886
|
id: string;
|
|
@@ -5867,9 +5890,9 @@ declare namespace GetTicketCommand {
|
|
|
5867
5890
|
attachments: {
|
|
5868
5891
|
id: string;
|
|
5869
5892
|
contentType: string;
|
|
5893
|
+
url: string;
|
|
5870
5894
|
fileName: string;
|
|
5871
5895
|
sizeBytes: number;
|
|
5872
|
-
url: string;
|
|
5873
5896
|
}[];
|
|
5874
5897
|
}>, "many">;
|
|
5875
5898
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5887,9 +5910,9 @@ declare namespace GetTicketCommand {
|
|
|
5887
5910
|
attachments: {
|
|
5888
5911
|
id: string;
|
|
5889
5912
|
contentType: string;
|
|
5913
|
+
url: string;
|
|
5890
5914
|
fileName: string;
|
|
5891
5915
|
sizeBytes: number;
|
|
5892
|
-
url: string;
|
|
5893
5916
|
}[];
|
|
5894
5917
|
}[];
|
|
5895
5918
|
}, {
|
|
@@ -5907,9 +5930,9 @@ declare namespace GetTicketCommand {
|
|
|
5907
5930
|
attachments: {
|
|
5908
5931
|
id: string;
|
|
5909
5932
|
contentType: string;
|
|
5933
|
+
url: string;
|
|
5910
5934
|
fileName: string;
|
|
5911
5935
|
sizeBytes: number;
|
|
5912
|
-
url: string;
|
|
5913
5936
|
}[];
|
|
5914
5937
|
}[];
|
|
5915
5938
|
}>;
|
|
@@ -5980,15 +6003,15 @@ declare namespace CreateTicketCommand {
|
|
|
5980
6003
|
}, "strip", z.ZodTypeAny, {
|
|
5981
6004
|
id: string;
|
|
5982
6005
|
contentType: string;
|
|
6006
|
+
url: string;
|
|
5983
6007
|
fileName: string;
|
|
5984
6008
|
sizeBytes: number;
|
|
5985
|
-
url: string;
|
|
5986
6009
|
}, {
|
|
5987
6010
|
id: string;
|
|
5988
6011
|
contentType: string;
|
|
6012
|
+
url: string;
|
|
5989
6013
|
fileName: string;
|
|
5990
6014
|
sizeBytes: number;
|
|
5991
|
-
url: string;
|
|
5992
6015
|
}>, "many">;
|
|
5993
6016
|
createdAt: z.ZodString;
|
|
5994
6017
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5999,9 +6022,9 @@ declare namespace CreateTicketCommand {
|
|
|
5999
6022
|
attachments: {
|
|
6000
6023
|
id: string;
|
|
6001
6024
|
contentType: string;
|
|
6025
|
+
url: string;
|
|
6002
6026
|
fileName: string;
|
|
6003
6027
|
sizeBytes: number;
|
|
6004
|
-
url: string;
|
|
6005
6028
|
}[];
|
|
6006
6029
|
}, {
|
|
6007
6030
|
id: string;
|
|
@@ -6011,9 +6034,9 @@ declare namespace CreateTicketCommand {
|
|
|
6011
6034
|
attachments: {
|
|
6012
6035
|
id: string;
|
|
6013
6036
|
contentType: string;
|
|
6037
|
+
url: string;
|
|
6014
6038
|
fileName: string;
|
|
6015
6039
|
sizeBytes: number;
|
|
6016
|
-
url: string;
|
|
6017
6040
|
}[];
|
|
6018
6041
|
}>, "many">;
|
|
6019
6042
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6031,9 +6054,9 @@ declare namespace CreateTicketCommand {
|
|
|
6031
6054
|
attachments: {
|
|
6032
6055
|
id: string;
|
|
6033
6056
|
contentType: string;
|
|
6057
|
+
url: string;
|
|
6034
6058
|
fileName: string;
|
|
6035
6059
|
sizeBytes: number;
|
|
6036
|
-
url: string;
|
|
6037
6060
|
}[];
|
|
6038
6061
|
}[];
|
|
6039
6062
|
}, {
|
|
@@ -6051,9 +6074,9 @@ declare namespace CreateTicketCommand {
|
|
|
6051
6074
|
attachments: {
|
|
6052
6075
|
id: string;
|
|
6053
6076
|
contentType: string;
|
|
6077
|
+
url: string;
|
|
6054
6078
|
fileName: string;
|
|
6055
6079
|
sizeBytes: number;
|
|
6056
|
-
url: string;
|
|
6057
6080
|
}[];
|
|
6058
6081
|
}[];
|
|
6059
6082
|
}>;
|
|
@@ -6118,15 +6141,15 @@ declare namespace ReplyTicketCommand {
|
|
|
6118
6141
|
}, "strip", z.ZodTypeAny, {
|
|
6119
6142
|
id: string;
|
|
6120
6143
|
contentType: string;
|
|
6144
|
+
url: string;
|
|
6121
6145
|
fileName: string;
|
|
6122
6146
|
sizeBytes: number;
|
|
6123
|
-
url: string;
|
|
6124
6147
|
}, {
|
|
6125
6148
|
id: string;
|
|
6126
6149
|
contentType: string;
|
|
6150
|
+
url: string;
|
|
6127
6151
|
fileName: string;
|
|
6128
6152
|
sizeBytes: number;
|
|
6129
|
-
url: string;
|
|
6130
6153
|
}>, "many">;
|
|
6131
6154
|
createdAt: z.ZodString;
|
|
6132
6155
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6137,9 +6160,9 @@ declare namespace ReplyTicketCommand {
|
|
|
6137
6160
|
attachments: {
|
|
6138
6161
|
id: string;
|
|
6139
6162
|
contentType: string;
|
|
6163
|
+
url: string;
|
|
6140
6164
|
fileName: string;
|
|
6141
6165
|
sizeBytes: number;
|
|
6142
|
-
url: string;
|
|
6143
6166
|
}[];
|
|
6144
6167
|
}, {
|
|
6145
6168
|
id: string;
|
|
@@ -6149,9 +6172,9 @@ declare namespace ReplyTicketCommand {
|
|
|
6149
6172
|
attachments: {
|
|
6150
6173
|
id: string;
|
|
6151
6174
|
contentType: string;
|
|
6175
|
+
url: string;
|
|
6152
6176
|
fileName: string;
|
|
6153
6177
|
sizeBytes: number;
|
|
6154
|
-
url: string;
|
|
6155
6178
|
}[];
|
|
6156
6179
|
}>, "many">;
|
|
6157
6180
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6169,9 +6192,9 @@ declare namespace ReplyTicketCommand {
|
|
|
6169
6192
|
attachments: {
|
|
6170
6193
|
id: string;
|
|
6171
6194
|
contentType: string;
|
|
6195
|
+
url: string;
|
|
6172
6196
|
fileName: string;
|
|
6173
6197
|
sizeBytes: number;
|
|
6174
|
-
url: string;
|
|
6175
6198
|
}[];
|
|
6176
6199
|
}[];
|
|
6177
6200
|
}, {
|
|
@@ -6189,9 +6212,9 @@ declare namespace ReplyTicketCommand {
|
|
|
6189
6212
|
attachments: {
|
|
6190
6213
|
id: string;
|
|
6191
6214
|
contentType: string;
|
|
6215
|
+
url: string;
|
|
6192
6216
|
fileName: string;
|
|
6193
6217
|
sizeBytes: number;
|
|
6194
|
-
url: string;
|
|
6195
6218
|
}[];
|
|
6196
6219
|
}[];
|
|
6197
6220
|
}>;
|
|
@@ -6297,6 +6320,7 @@ declare const REST_API: {
|
|
|
6297
6320
|
readonly PREFERENCES: "/settings";
|
|
6298
6321
|
readonly LINKS: "/settings/links";
|
|
6299
6322
|
readonly LINK_TELEGRAM: "/settings/link/telegram";
|
|
6323
|
+
readonly LINK_TELEGRAM_CODE: "/settings/link/telegram/code";
|
|
6300
6324
|
readonly LINK_GOOGLE: "/settings/link/google";
|
|
6301
6325
|
readonly UNLINK: "/settings/link/:provider";
|
|
6302
6326
|
};
|
|
@@ -6337,4 +6361,4 @@ declare const REST_API: {
|
|
|
6337
6361
|
declare const API_PREFIX = "/api";
|
|
6338
6362
|
declare const API_VERSION = "v1";
|
|
6339
6363
|
|
|
6340
|
-
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, ClaimTicketCommand, 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, GetSupportTicketCommand, 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, ListSupportTicketsCommand, 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, ResolveTicketCommand, type SessionInfo, SessionInfoSchema, SetupTotpCommand, type Slide, type SlideButtonStyle, SlideButtonStyleSchema, type SlideKind, SlideKindSchema, type SlideLinkTarget, SlideLinkTargetSchema, SlideSchema, type SlidesResponse, SlidesResponseSchema, SpinWheelCommand, SupportReplyTicketCommand, type SupportTicketDetail, SupportTicketDetailSchema, type SupportTicketScope, SupportTicketScopeSchema, type SupportTicketSummary, SupportTicketSummarySchema, type SupportTicketUser, SupportTicketUserSchema, 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 UserRole, UserRoleSchema, 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 };
|
|
6364
|
+
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, ClaimTicketCommand, 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, GetSupportTicketCommand, 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, ListSupportTicketsCommand, 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, ResolveTicketCommand, type SessionInfo, SessionInfoSchema, SetupTotpCommand, type Slide, type SlideButtonStyle, SlideButtonStyleSchema, type SlideKind, SlideKindSchema, type SlideLinkTarget, SlideLinkTargetSchema, SlideSchema, type SlidesResponse, SlidesResponseSchema, SpinWheelCommand, SupportReplyTicketCommand, type SupportTicketDetail, SupportTicketDetailSchema, type SupportTicketScope, SupportTicketScopeSchema, type SupportTicketSummary, SupportTicketSummarySchema, type SupportTicketUser, SupportTicketUserSchema, SwapCommand, type SwapSide, SwapSideSchema, TICKET_CATEGORIES, TOKEN_ASSET, TelegramLinkCodeCommand, 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 UserRole, UserRoleSchema, 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 };
|