@numen-crypto/contract 0.16.0 → 0.17.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 +14 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +79 -61
- package/dist/index.d.ts +79 -61
- package/dist/index.js +15 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4593,6 +4593,23 @@ declare namespace UnlinkAccountCommand {
|
|
|
4593
4593
|
const ResponseSchema: z.ZodVoid;
|
|
4594
4594
|
type Response = z.infer<typeof ResponseSchema>;
|
|
4595
4595
|
}
|
|
4596
|
+
declare namespace TelegramLinkCodeCommand {
|
|
4597
|
+
const endpointDetails: EndpointDetails;
|
|
4598
|
+
const ResponseSchema: z.ZodObject<{
|
|
4599
|
+
code: z.ZodString;
|
|
4600
|
+
url: z.ZodString;
|
|
4601
|
+
expiresInSec: z.ZodNumber;
|
|
4602
|
+
}, "strip", z.ZodTypeAny, {
|
|
4603
|
+
code: string;
|
|
4604
|
+
expiresInSec: number;
|
|
4605
|
+
url: string;
|
|
4606
|
+
}, {
|
|
4607
|
+
code: string;
|
|
4608
|
+
expiresInSec: number;
|
|
4609
|
+
url: string;
|
|
4610
|
+
}>;
|
|
4611
|
+
type Response = z.infer<typeof ResponseSchema>;
|
|
4612
|
+
}
|
|
4596
4613
|
|
|
4597
4614
|
declare const TICKET_CATEGORIES: readonly ["account", "deposit", "withdrawal", "trading", "partners", "other"];
|
|
4598
4615
|
declare const TicketCategorySchema: z.ZodEnum<["account", "deposit", "withdrawal", "trading", "partners", "other"]>;
|
|
@@ -4611,15 +4628,15 @@ declare const TicketAttachmentSchema: z.ZodObject<{
|
|
|
4611
4628
|
}, "strip", z.ZodTypeAny, {
|
|
4612
4629
|
id: string;
|
|
4613
4630
|
contentType: string;
|
|
4631
|
+
url: string;
|
|
4614
4632
|
fileName: string;
|
|
4615
4633
|
sizeBytes: number;
|
|
4616
|
-
url: string;
|
|
4617
4634
|
}, {
|
|
4618
4635
|
id: string;
|
|
4619
4636
|
contentType: string;
|
|
4637
|
+
url: string;
|
|
4620
4638
|
fileName: string;
|
|
4621
4639
|
sizeBytes: number;
|
|
4622
|
-
url: string;
|
|
4623
4640
|
}>;
|
|
4624
4641
|
type TicketAttachment = z.infer<typeof TicketAttachmentSchema>;
|
|
4625
4642
|
declare const TicketMessageSchema: z.ZodObject<{
|
|
@@ -4635,15 +4652,15 @@ declare const TicketMessageSchema: z.ZodObject<{
|
|
|
4635
4652
|
}, "strip", z.ZodTypeAny, {
|
|
4636
4653
|
id: string;
|
|
4637
4654
|
contentType: string;
|
|
4655
|
+
url: string;
|
|
4638
4656
|
fileName: string;
|
|
4639
4657
|
sizeBytes: number;
|
|
4640
|
-
url: string;
|
|
4641
4658
|
}, {
|
|
4642
4659
|
id: string;
|
|
4643
4660
|
contentType: string;
|
|
4661
|
+
url: string;
|
|
4644
4662
|
fileName: string;
|
|
4645
4663
|
sizeBytes: number;
|
|
4646
|
-
url: string;
|
|
4647
4664
|
}>, "many">;
|
|
4648
4665
|
createdAt: z.ZodString;
|
|
4649
4666
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4654,9 +4671,9 @@ declare const TicketMessageSchema: z.ZodObject<{
|
|
|
4654
4671
|
attachments: {
|
|
4655
4672
|
id: string;
|
|
4656
4673
|
contentType: string;
|
|
4674
|
+
url: string;
|
|
4657
4675
|
fileName: string;
|
|
4658
4676
|
sizeBytes: number;
|
|
4659
|
-
url: string;
|
|
4660
4677
|
}[];
|
|
4661
4678
|
}, {
|
|
4662
4679
|
id: string;
|
|
@@ -4666,9 +4683,9 @@ declare const TicketMessageSchema: z.ZodObject<{
|
|
|
4666
4683
|
attachments: {
|
|
4667
4684
|
id: string;
|
|
4668
4685
|
contentType: string;
|
|
4686
|
+
url: string;
|
|
4669
4687
|
fileName: string;
|
|
4670
4688
|
sizeBytes: number;
|
|
4671
|
-
url: string;
|
|
4672
4689
|
}[];
|
|
4673
4690
|
}>;
|
|
4674
4691
|
type TicketMessage = z.infer<typeof TicketMessageSchema>;
|
|
@@ -4716,15 +4733,15 @@ declare const TicketDetailSchema: z.ZodObject<{
|
|
|
4716
4733
|
}, "strip", z.ZodTypeAny, {
|
|
4717
4734
|
id: string;
|
|
4718
4735
|
contentType: string;
|
|
4736
|
+
url: string;
|
|
4719
4737
|
fileName: string;
|
|
4720
4738
|
sizeBytes: number;
|
|
4721
|
-
url: string;
|
|
4722
4739
|
}, {
|
|
4723
4740
|
id: string;
|
|
4724
4741
|
contentType: string;
|
|
4742
|
+
url: string;
|
|
4725
4743
|
fileName: string;
|
|
4726
4744
|
sizeBytes: number;
|
|
4727
|
-
url: string;
|
|
4728
4745
|
}>, "many">;
|
|
4729
4746
|
createdAt: z.ZodString;
|
|
4730
4747
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4735,9 +4752,9 @@ declare const TicketDetailSchema: z.ZodObject<{
|
|
|
4735
4752
|
attachments: {
|
|
4736
4753
|
id: string;
|
|
4737
4754
|
contentType: string;
|
|
4755
|
+
url: string;
|
|
4738
4756
|
fileName: string;
|
|
4739
4757
|
sizeBytes: number;
|
|
4740
|
-
url: string;
|
|
4741
4758
|
}[];
|
|
4742
4759
|
}, {
|
|
4743
4760
|
id: string;
|
|
@@ -4747,9 +4764,9 @@ declare const TicketDetailSchema: z.ZodObject<{
|
|
|
4747
4764
|
attachments: {
|
|
4748
4765
|
id: string;
|
|
4749
4766
|
contentType: string;
|
|
4767
|
+
url: string;
|
|
4750
4768
|
fileName: string;
|
|
4751
4769
|
sizeBytes: number;
|
|
4752
|
-
url: string;
|
|
4753
4770
|
}[];
|
|
4754
4771
|
}>, "many">;
|
|
4755
4772
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4767,9 +4784,9 @@ declare const TicketDetailSchema: z.ZodObject<{
|
|
|
4767
4784
|
attachments: {
|
|
4768
4785
|
id: string;
|
|
4769
4786
|
contentType: string;
|
|
4787
|
+
url: string;
|
|
4770
4788
|
fileName: string;
|
|
4771
4789
|
sizeBytes: number;
|
|
4772
|
-
url: string;
|
|
4773
4790
|
}[];
|
|
4774
4791
|
}[];
|
|
4775
4792
|
}, {
|
|
@@ -4787,9 +4804,9 @@ declare const TicketDetailSchema: z.ZodObject<{
|
|
|
4787
4804
|
attachments: {
|
|
4788
4805
|
id: string;
|
|
4789
4806
|
contentType: string;
|
|
4807
|
+
url: string;
|
|
4790
4808
|
fileName: string;
|
|
4791
4809
|
sizeBytes: number;
|
|
4792
|
-
url: string;
|
|
4793
4810
|
}[];
|
|
4794
4811
|
}[];
|
|
4795
4812
|
}>;
|
|
@@ -4893,15 +4910,15 @@ declare const SupportTicketDetailSchema: z.ZodObject<{
|
|
|
4893
4910
|
}, "strip", z.ZodTypeAny, {
|
|
4894
4911
|
id: string;
|
|
4895
4912
|
contentType: string;
|
|
4913
|
+
url: string;
|
|
4896
4914
|
fileName: string;
|
|
4897
4915
|
sizeBytes: number;
|
|
4898
|
-
url: string;
|
|
4899
4916
|
}, {
|
|
4900
4917
|
id: string;
|
|
4901
4918
|
contentType: string;
|
|
4919
|
+
url: string;
|
|
4902
4920
|
fileName: string;
|
|
4903
4921
|
sizeBytes: number;
|
|
4904
|
-
url: string;
|
|
4905
4922
|
}>, "many">;
|
|
4906
4923
|
createdAt: z.ZodString;
|
|
4907
4924
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4912,9 +4929,9 @@ declare const SupportTicketDetailSchema: z.ZodObject<{
|
|
|
4912
4929
|
attachments: {
|
|
4913
4930
|
id: string;
|
|
4914
4931
|
contentType: string;
|
|
4932
|
+
url: string;
|
|
4915
4933
|
fileName: string;
|
|
4916
4934
|
sizeBytes: number;
|
|
4917
|
-
url: string;
|
|
4918
4935
|
}[];
|
|
4919
4936
|
}, {
|
|
4920
4937
|
id: string;
|
|
@@ -4924,9 +4941,9 @@ declare const SupportTicketDetailSchema: z.ZodObject<{
|
|
|
4924
4941
|
attachments: {
|
|
4925
4942
|
id: string;
|
|
4926
4943
|
contentType: string;
|
|
4944
|
+
url: string;
|
|
4927
4945
|
fileName: string;
|
|
4928
4946
|
sizeBytes: number;
|
|
4929
|
-
url: string;
|
|
4930
4947
|
}[];
|
|
4931
4948
|
}>, "many">;
|
|
4932
4949
|
} & {
|
|
@@ -4982,9 +4999,9 @@ declare const SupportTicketDetailSchema: z.ZodObject<{
|
|
|
4982
4999
|
attachments: {
|
|
4983
5000
|
id: string;
|
|
4984
5001
|
contentType: string;
|
|
5002
|
+
url: string;
|
|
4985
5003
|
fileName: string;
|
|
4986
5004
|
sizeBytes: number;
|
|
4987
|
-
url: string;
|
|
4988
5005
|
}[];
|
|
4989
5006
|
}[];
|
|
4990
5007
|
userEmail: string;
|
|
@@ -5014,9 +5031,9 @@ declare const SupportTicketDetailSchema: z.ZodObject<{
|
|
|
5014
5031
|
attachments: {
|
|
5015
5032
|
id: string;
|
|
5016
5033
|
contentType: string;
|
|
5034
|
+
url: string;
|
|
5017
5035
|
fileName: string;
|
|
5018
5036
|
sizeBytes: number;
|
|
5019
|
-
url: string;
|
|
5020
5037
|
}[];
|
|
5021
5038
|
}[];
|
|
5022
5039
|
userEmail: string;
|
|
@@ -5133,15 +5150,15 @@ declare namespace GetSupportTicketCommand {
|
|
|
5133
5150
|
}, "strip", z.ZodTypeAny, {
|
|
5134
5151
|
id: string;
|
|
5135
5152
|
contentType: string;
|
|
5153
|
+
url: string;
|
|
5136
5154
|
fileName: string;
|
|
5137
5155
|
sizeBytes: number;
|
|
5138
|
-
url: string;
|
|
5139
5156
|
}, {
|
|
5140
5157
|
id: string;
|
|
5141
5158
|
contentType: string;
|
|
5159
|
+
url: string;
|
|
5142
5160
|
fileName: string;
|
|
5143
5161
|
sizeBytes: number;
|
|
5144
|
-
url: string;
|
|
5145
5162
|
}>, "many">;
|
|
5146
5163
|
createdAt: z.ZodString;
|
|
5147
5164
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5152,9 +5169,9 @@ declare namespace GetSupportTicketCommand {
|
|
|
5152
5169
|
attachments: {
|
|
5153
5170
|
id: string;
|
|
5154
5171
|
contentType: string;
|
|
5172
|
+
url: string;
|
|
5155
5173
|
fileName: string;
|
|
5156
5174
|
sizeBytes: number;
|
|
5157
|
-
url: string;
|
|
5158
5175
|
}[];
|
|
5159
5176
|
}, {
|
|
5160
5177
|
id: string;
|
|
@@ -5164,9 +5181,9 @@ declare namespace GetSupportTicketCommand {
|
|
|
5164
5181
|
attachments: {
|
|
5165
5182
|
id: string;
|
|
5166
5183
|
contentType: string;
|
|
5184
|
+
url: string;
|
|
5167
5185
|
fileName: string;
|
|
5168
5186
|
sizeBytes: number;
|
|
5169
|
-
url: string;
|
|
5170
5187
|
}[];
|
|
5171
5188
|
}>, "many">;
|
|
5172
5189
|
} & {
|
|
@@ -5222,9 +5239,9 @@ declare namespace GetSupportTicketCommand {
|
|
|
5222
5239
|
attachments: {
|
|
5223
5240
|
id: string;
|
|
5224
5241
|
contentType: string;
|
|
5242
|
+
url: string;
|
|
5225
5243
|
fileName: string;
|
|
5226
5244
|
sizeBytes: number;
|
|
5227
|
-
url: string;
|
|
5228
5245
|
}[];
|
|
5229
5246
|
}[];
|
|
5230
5247
|
userEmail: string;
|
|
@@ -5254,9 +5271,9 @@ declare namespace GetSupportTicketCommand {
|
|
|
5254
5271
|
attachments: {
|
|
5255
5272
|
id: string;
|
|
5256
5273
|
contentType: string;
|
|
5274
|
+
url: string;
|
|
5257
5275
|
fileName: string;
|
|
5258
5276
|
sizeBytes: number;
|
|
5259
|
-
url: string;
|
|
5260
5277
|
}[];
|
|
5261
5278
|
}[];
|
|
5262
5279
|
userEmail: string;
|
|
@@ -5288,15 +5305,15 @@ declare namespace ClaimTicketCommand {
|
|
|
5288
5305
|
}, "strip", z.ZodTypeAny, {
|
|
5289
5306
|
id: string;
|
|
5290
5307
|
contentType: string;
|
|
5308
|
+
url: string;
|
|
5291
5309
|
fileName: string;
|
|
5292
5310
|
sizeBytes: number;
|
|
5293
|
-
url: string;
|
|
5294
5311
|
}, {
|
|
5295
5312
|
id: string;
|
|
5296
5313
|
contentType: string;
|
|
5314
|
+
url: string;
|
|
5297
5315
|
fileName: string;
|
|
5298
5316
|
sizeBytes: number;
|
|
5299
|
-
url: string;
|
|
5300
5317
|
}>, "many">;
|
|
5301
5318
|
createdAt: z.ZodString;
|
|
5302
5319
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5307,9 +5324,9 @@ declare namespace ClaimTicketCommand {
|
|
|
5307
5324
|
attachments: {
|
|
5308
5325
|
id: string;
|
|
5309
5326
|
contentType: string;
|
|
5327
|
+
url: string;
|
|
5310
5328
|
fileName: string;
|
|
5311
5329
|
sizeBytes: number;
|
|
5312
|
-
url: string;
|
|
5313
5330
|
}[];
|
|
5314
5331
|
}, {
|
|
5315
5332
|
id: string;
|
|
@@ -5319,9 +5336,9 @@ declare namespace ClaimTicketCommand {
|
|
|
5319
5336
|
attachments: {
|
|
5320
5337
|
id: string;
|
|
5321
5338
|
contentType: string;
|
|
5339
|
+
url: string;
|
|
5322
5340
|
fileName: string;
|
|
5323
5341
|
sizeBytes: number;
|
|
5324
|
-
url: string;
|
|
5325
5342
|
}[];
|
|
5326
5343
|
}>, "many">;
|
|
5327
5344
|
} & {
|
|
@@ -5377,9 +5394,9 @@ declare namespace ClaimTicketCommand {
|
|
|
5377
5394
|
attachments: {
|
|
5378
5395
|
id: string;
|
|
5379
5396
|
contentType: string;
|
|
5397
|
+
url: string;
|
|
5380
5398
|
fileName: string;
|
|
5381
5399
|
sizeBytes: number;
|
|
5382
|
-
url: string;
|
|
5383
5400
|
}[];
|
|
5384
5401
|
}[];
|
|
5385
5402
|
userEmail: string;
|
|
@@ -5409,9 +5426,9 @@ declare namespace ClaimTicketCommand {
|
|
|
5409
5426
|
attachments: {
|
|
5410
5427
|
id: string;
|
|
5411
5428
|
contentType: string;
|
|
5429
|
+
url: string;
|
|
5412
5430
|
fileName: string;
|
|
5413
5431
|
sizeBytes: number;
|
|
5414
|
-
url: string;
|
|
5415
5432
|
}[];
|
|
5416
5433
|
}[];
|
|
5417
5434
|
userEmail: string;
|
|
@@ -5479,15 +5496,15 @@ declare namespace SupportReplyTicketCommand {
|
|
|
5479
5496
|
}, "strip", z.ZodTypeAny, {
|
|
5480
5497
|
id: string;
|
|
5481
5498
|
contentType: string;
|
|
5499
|
+
url: string;
|
|
5482
5500
|
fileName: string;
|
|
5483
5501
|
sizeBytes: number;
|
|
5484
|
-
url: string;
|
|
5485
5502
|
}, {
|
|
5486
5503
|
id: string;
|
|
5487
5504
|
contentType: string;
|
|
5505
|
+
url: string;
|
|
5488
5506
|
fileName: string;
|
|
5489
5507
|
sizeBytes: number;
|
|
5490
|
-
url: string;
|
|
5491
5508
|
}>, "many">;
|
|
5492
5509
|
createdAt: z.ZodString;
|
|
5493
5510
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5498,9 +5515,9 @@ declare namespace SupportReplyTicketCommand {
|
|
|
5498
5515
|
attachments: {
|
|
5499
5516
|
id: string;
|
|
5500
5517
|
contentType: string;
|
|
5518
|
+
url: string;
|
|
5501
5519
|
fileName: string;
|
|
5502
5520
|
sizeBytes: number;
|
|
5503
|
-
url: string;
|
|
5504
5521
|
}[];
|
|
5505
5522
|
}, {
|
|
5506
5523
|
id: string;
|
|
@@ -5510,9 +5527,9 @@ declare namespace SupportReplyTicketCommand {
|
|
|
5510
5527
|
attachments: {
|
|
5511
5528
|
id: string;
|
|
5512
5529
|
contentType: string;
|
|
5530
|
+
url: string;
|
|
5513
5531
|
fileName: string;
|
|
5514
5532
|
sizeBytes: number;
|
|
5515
|
-
url: string;
|
|
5516
5533
|
}[];
|
|
5517
5534
|
}>, "many">;
|
|
5518
5535
|
} & {
|
|
@@ -5568,9 +5585,9 @@ declare namespace SupportReplyTicketCommand {
|
|
|
5568
5585
|
attachments: {
|
|
5569
5586
|
id: string;
|
|
5570
5587
|
contentType: string;
|
|
5588
|
+
url: string;
|
|
5571
5589
|
fileName: string;
|
|
5572
5590
|
sizeBytes: number;
|
|
5573
|
-
url: string;
|
|
5574
5591
|
}[];
|
|
5575
5592
|
}[];
|
|
5576
5593
|
userEmail: string;
|
|
@@ -5600,9 +5617,9 @@ declare namespace SupportReplyTicketCommand {
|
|
|
5600
5617
|
attachments: {
|
|
5601
5618
|
id: string;
|
|
5602
5619
|
contentType: string;
|
|
5620
|
+
url: string;
|
|
5603
5621
|
fileName: string;
|
|
5604
5622
|
sizeBytes: number;
|
|
5605
|
-
url: string;
|
|
5606
5623
|
}[];
|
|
5607
5624
|
}[];
|
|
5608
5625
|
userEmail: string;
|
|
@@ -5634,15 +5651,15 @@ declare namespace ResolveTicketCommand {
|
|
|
5634
5651
|
}, "strip", z.ZodTypeAny, {
|
|
5635
5652
|
id: string;
|
|
5636
5653
|
contentType: string;
|
|
5654
|
+
url: string;
|
|
5637
5655
|
fileName: string;
|
|
5638
5656
|
sizeBytes: number;
|
|
5639
|
-
url: string;
|
|
5640
5657
|
}, {
|
|
5641
5658
|
id: string;
|
|
5642
5659
|
contentType: string;
|
|
5660
|
+
url: string;
|
|
5643
5661
|
fileName: string;
|
|
5644
5662
|
sizeBytes: number;
|
|
5645
|
-
url: string;
|
|
5646
5663
|
}>, "many">;
|
|
5647
5664
|
createdAt: z.ZodString;
|
|
5648
5665
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5653,9 +5670,9 @@ declare namespace ResolveTicketCommand {
|
|
|
5653
5670
|
attachments: {
|
|
5654
5671
|
id: string;
|
|
5655
5672
|
contentType: string;
|
|
5673
|
+
url: string;
|
|
5656
5674
|
fileName: string;
|
|
5657
5675
|
sizeBytes: number;
|
|
5658
|
-
url: string;
|
|
5659
5676
|
}[];
|
|
5660
5677
|
}, {
|
|
5661
5678
|
id: string;
|
|
@@ -5665,9 +5682,9 @@ declare namespace ResolveTicketCommand {
|
|
|
5665
5682
|
attachments: {
|
|
5666
5683
|
id: string;
|
|
5667
5684
|
contentType: string;
|
|
5685
|
+
url: string;
|
|
5668
5686
|
fileName: string;
|
|
5669
5687
|
sizeBytes: number;
|
|
5670
|
-
url: string;
|
|
5671
5688
|
}[];
|
|
5672
5689
|
}>, "many">;
|
|
5673
5690
|
} & {
|
|
@@ -5723,9 +5740,9 @@ declare namespace ResolveTicketCommand {
|
|
|
5723
5740
|
attachments: {
|
|
5724
5741
|
id: string;
|
|
5725
5742
|
contentType: string;
|
|
5743
|
+
url: string;
|
|
5726
5744
|
fileName: string;
|
|
5727
5745
|
sizeBytes: number;
|
|
5728
|
-
url: string;
|
|
5729
5746
|
}[];
|
|
5730
5747
|
}[];
|
|
5731
5748
|
userEmail: string;
|
|
@@ -5755,9 +5772,9 @@ declare namespace ResolveTicketCommand {
|
|
|
5755
5772
|
attachments: {
|
|
5756
5773
|
id: string;
|
|
5757
5774
|
contentType: string;
|
|
5775
|
+
url: string;
|
|
5758
5776
|
fileName: string;
|
|
5759
5777
|
sizeBytes: number;
|
|
5760
|
-
url: string;
|
|
5761
5778
|
}[];
|
|
5762
5779
|
}[];
|
|
5763
5780
|
userEmail: string;
|
|
@@ -5836,15 +5853,15 @@ declare namespace GetTicketCommand {
|
|
|
5836
5853
|
}, "strip", z.ZodTypeAny, {
|
|
5837
5854
|
id: string;
|
|
5838
5855
|
contentType: string;
|
|
5856
|
+
url: string;
|
|
5839
5857
|
fileName: string;
|
|
5840
5858
|
sizeBytes: number;
|
|
5841
|
-
url: string;
|
|
5842
5859
|
}, {
|
|
5843
5860
|
id: string;
|
|
5844
5861
|
contentType: string;
|
|
5862
|
+
url: string;
|
|
5845
5863
|
fileName: string;
|
|
5846
5864
|
sizeBytes: number;
|
|
5847
|
-
url: string;
|
|
5848
5865
|
}>, "many">;
|
|
5849
5866
|
createdAt: z.ZodString;
|
|
5850
5867
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5855,9 +5872,9 @@ declare namespace GetTicketCommand {
|
|
|
5855
5872
|
attachments: {
|
|
5856
5873
|
id: string;
|
|
5857
5874
|
contentType: string;
|
|
5875
|
+
url: string;
|
|
5858
5876
|
fileName: string;
|
|
5859
5877
|
sizeBytes: number;
|
|
5860
|
-
url: string;
|
|
5861
5878
|
}[];
|
|
5862
5879
|
}, {
|
|
5863
5880
|
id: string;
|
|
@@ -5867,9 +5884,9 @@ declare namespace GetTicketCommand {
|
|
|
5867
5884
|
attachments: {
|
|
5868
5885
|
id: string;
|
|
5869
5886
|
contentType: string;
|
|
5887
|
+
url: string;
|
|
5870
5888
|
fileName: string;
|
|
5871
5889
|
sizeBytes: number;
|
|
5872
|
-
url: string;
|
|
5873
5890
|
}[];
|
|
5874
5891
|
}>, "many">;
|
|
5875
5892
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5887,9 +5904,9 @@ declare namespace GetTicketCommand {
|
|
|
5887
5904
|
attachments: {
|
|
5888
5905
|
id: string;
|
|
5889
5906
|
contentType: string;
|
|
5907
|
+
url: string;
|
|
5890
5908
|
fileName: string;
|
|
5891
5909
|
sizeBytes: number;
|
|
5892
|
-
url: string;
|
|
5893
5910
|
}[];
|
|
5894
5911
|
}[];
|
|
5895
5912
|
}, {
|
|
@@ -5907,9 +5924,9 @@ declare namespace GetTicketCommand {
|
|
|
5907
5924
|
attachments: {
|
|
5908
5925
|
id: string;
|
|
5909
5926
|
contentType: string;
|
|
5927
|
+
url: string;
|
|
5910
5928
|
fileName: string;
|
|
5911
5929
|
sizeBytes: number;
|
|
5912
|
-
url: string;
|
|
5913
5930
|
}[];
|
|
5914
5931
|
}[];
|
|
5915
5932
|
}>;
|
|
@@ -5980,15 +5997,15 @@ declare namespace CreateTicketCommand {
|
|
|
5980
5997
|
}, "strip", z.ZodTypeAny, {
|
|
5981
5998
|
id: string;
|
|
5982
5999
|
contentType: string;
|
|
6000
|
+
url: string;
|
|
5983
6001
|
fileName: string;
|
|
5984
6002
|
sizeBytes: number;
|
|
5985
|
-
url: string;
|
|
5986
6003
|
}, {
|
|
5987
6004
|
id: string;
|
|
5988
6005
|
contentType: string;
|
|
6006
|
+
url: string;
|
|
5989
6007
|
fileName: string;
|
|
5990
6008
|
sizeBytes: number;
|
|
5991
|
-
url: string;
|
|
5992
6009
|
}>, "many">;
|
|
5993
6010
|
createdAt: z.ZodString;
|
|
5994
6011
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5999,9 +6016,9 @@ declare namespace CreateTicketCommand {
|
|
|
5999
6016
|
attachments: {
|
|
6000
6017
|
id: string;
|
|
6001
6018
|
contentType: string;
|
|
6019
|
+
url: string;
|
|
6002
6020
|
fileName: string;
|
|
6003
6021
|
sizeBytes: number;
|
|
6004
|
-
url: string;
|
|
6005
6022
|
}[];
|
|
6006
6023
|
}, {
|
|
6007
6024
|
id: string;
|
|
@@ -6011,9 +6028,9 @@ declare namespace CreateTicketCommand {
|
|
|
6011
6028
|
attachments: {
|
|
6012
6029
|
id: string;
|
|
6013
6030
|
contentType: string;
|
|
6031
|
+
url: string;
|
|
6014
6032
|
fileName: string;
|
|
6015
6033
|
sizeBytes: number;
|
|
6016
|
-
url: string;
|
|
6017
6034
|
}[];
|
|
6018
6035
|
}>, "many">;
|
|
6019
6036
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6031,9 +6048,9 @@ declare namespace CreateTicketCommand {
|
|
|
6031
6048
|
attachments: {
|
|
6032
6049
|
id: string;
|
|
6033
6050
|
contentType: string;
|
|
6051
|
+
url: string;
|
|
6034
6052
|
fileName: string;
|
|
6035
6053
|
sizeBytes: number;
|
|
6036
|
-
url: string;
|
|
6037
6054
|
}[];
|
|
6038
6055
|
}[];
|
|
6039
6056
|
}, {
|
|
@@ -6051,9 +6068,9 @@ declare namespace CreateTicketCommand {
|
|
|
6051
6068
|
attachments: {
|
|
6052
6069
|
id: string;
|
|
6053
6070
|
contentType: string;
|
|
6071
|
+
url: string;
|
|
6054
6072
|
fileName: string;
|
|
6055
6073
|
sizeBytes: number;
|
|
6056
|
-
url: string;
|
|
6057
6074
|
}[];
|
|
6058
6075
|
}[];
|
|
6059
6076
|
}>;
|
|
@@ -6118,15 +6135,15 @@ declare namespace ReplyTicketCommand {
|
|
|
6118
6135
|
}, "strip", z.ZodTypeAny, {
|
|
6119
6136
|
id: string;
|
|
6120
6137
|
contentType: string;
|
|
6138
|
+
url: string;
|
|
6121
6139
|
fileName: string;
|
|
6122
6140
|
sizeBytes: number;
|
|
6123
|
-
url: string;
|
|
6124
6141
|
}, {
|
|
6125
6142
|
id: string;
|
|
6126
6143
|
contentType: string;
|
|
6144
|
+
url: string;
|
|
6127
6145
|
fileName: string;
|
|
6128
6146
|
sizeBytes: number;
|
|
6129
|
-
url: string;
|
|
6130
6147
|
}>, "many">;
|
|
6131
6148
|
createdAt: z.ZodString;
|
|
6132
6149
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6137,9 +6154,9 @@ declare namespace ReplyTicketCommand {
|
|
|
6137
6154
|
attachments: {
|
|
6138
6155
|
id: string;
|
|
6139
6156
|
contentType: string;
|
|
6157
|
+
url: string;
|
|
6140
6158
|
fileName: string;
|
|
6141
6159
|
sizeBytes: number;
|
|
6142
|
-
url: string;
|
|
6143
6160
|
}[];
|
|
6144
6161
|
}, {
|
|
6145
6162
|
id: string;
|
|
@@ -6149,9 +6166,9 @@ declare namespace ReplyTicketCommand {
|
|
|
6149
6166
|
attachments: {
|
|
6150
6167
|
id: string;
|
|
6151
6168
|
contentType: string;
|
|
6169
|
+
url: string;
|
|
6152
6170
|
fileName: string;
|
|
6153
6171
|
sizeBytes: number;
|
|
6154
|
-
url: string;
|
|
6155
6172
|
}[];
|
|
6156
6173
|
}>, "many">;
|
|
6157
6174
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6169,9 +6186,9 @@ declare namespace ReplyTicketCommand {
|
|
|
6169
6186
|
attachments: {
|
|
6170
6187
|
id: string;
|
|
6171
6188
|
contentType: string;
|
|
6189
|
+
url: string;
|
|
6172
6190
|
fileName: string;
|
|
6173
6191
|
sizeBytes: number;
|
|
6174
|
-
url: string;
|
|
6175
6192
|
}[];
|
|
6176
6193
|
}[];
|
|
6177
6194
|
}, {
|
|
@@ -6189,9 +6206,9 @@ declare namespace ReplyTicketCommand {
|
|
|
6189
6206
|
attachments: {
|
|
6190
6207
|
id: string;
|
|
6191
6208
|
contentType: string;
|
|
6209
|
+
url: string;
|
|
6192
6210
|
fileName: string;
|
|
6193
6211
|
sizeBytes: number;
|
|
6194
|
-
url: string;
|
|
6195
6212
|
}[];
|
|
6196
6213
|
}[];
|
|
6197
6214
|
}>;
|
|
@@ -6297,6 +6314,7 @@ declare const REST_API: {
|
|
|
6297
6314
|
readonly PREFERENCES: "/settings";
|
|
6298
6315
|
readonly LINKS: "/settings/links";
|
|
6299
6316
|
readonly LINK_TELEGRAM: "/settings/link/telegram";
|
|
6317
|
+
readonly LINK_TELEGRAM_CODE: "/settings/link/telegram/code";
|
|
6300
6318
|
readonly LINK_GOOGLE: "/settings/link/google";
|
|
6301
6319
|
readonly UNLINK: "/settings/link/:provider";
|
|
6302
6320
|
};
|
|
@@ -6337,4 +6355,4 @@ declare const REST_API: {
|
|
|
6337
6355
|
declare const API_PREFIX = "/api";
|
|
6338
6356
|
declare const API_VERSION = "v1";
|
|
6339
6357
|
|
|
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 };
|
|
6358
|
+
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 };
|