@nuxx/torn-fetch 1.1.2 → 1.1.3
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.d.ts +631 -390
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ export interface paths {
|
|
|
12
12
|
* Get your ammo information
|
|
13
13
|
* @description Requires minimal key. <br>
|
|
14
14
|
*/
|
|
15
|
-
get: operations["
|
|
15
|
+
get: operations["getMyAmmo"];
|
|
16
16
|
put?: never;
|
|
17
17
|
post?: never;
|
|
18
18
|
delete?: never;
|
|
@@ -32,7 +32,7 @@ export interface paths {
|
|
|
32
32
|
* Get your detailed attacks
|
|
33
33
|
* @description Requires limited access key. <br>
|
|
34
34
|
*/
|
|
35
|
-
get: operations["
|
|
35
|
+
get: operations["getMyAttacks"];
|
|
36
36
|
put?: never;
|
|
37
37
|
post?: never;
|
|
38
38
|
delete?: never;
|
|
@@ -52,7 +52,7 @@ export interface paths {
|
|
|
52
52
|
* Get your simplified attacks
|
|
53
53
|
* @description Requires limited access key. <br>Returns up to 1,000 rows. <br>
|
|
54
54
|
*/
|
|
55
|
-
get: operations["
|
|
55
|
+
get: operations["getMyAttacksSimplified"];
|
|
56
56
|
put?: never;
|
|
57
57
|
post?: never;
|
|
58
58
|
delete?: never;
|
|
@@ -72,7 +72,7 @@ export interface paths {
|
|
|
72
72
|
* Get your bars information
|
|
73
73
|
* @description Requires minimal access key. <br>
|
|
74
74
|
*/
|
|
75
|
-
get: operations["
|
|
75
|
+
get: operations["getMyBars"];
|
|
76
76
|
put?: never;
|
|
77
77
|
post?: never;
|
|
78
78
|
delete?: never;
|
|
@@ -92,7 +92,7 @@ export interface paths {
|
|
|
92
92
|
* Get your basic profile information
|
|
93
93
|
* @description Requires public access key. <br>
|
|
94
94
|
*/
|
|
95
|
-
get: operations["
|
|
95
|
+
get: operations["getMyBasicInformation"];
|
|
96
96
|
put?: never;
|
|
97
97
|
post?: never;
|
|
98
98
|
delete?: never;
|
|
@@ -112,7 +112,7 @@ export interface paths {
|
|
|
112
112
|
* Get basic profile information for a specific user
|
|
113
113
|
* @description Requires public access key. <br>
|
|
114
114
|
*/
|
|
115
|
-
get: operations["
|
|
115
|
+
get: operations["getUserBasicInformation"];
|
|
116
116
|
put?: never;
|
|
117
117
|
post?: never;
|
|
118
118
|
delete?: never;
|
|
@@ -132,7 +132,7 @@ export interface paths {
|
|
|
132
132
|
* Get your battlestats
|
|
133
133
|
* @description Requires limited access key. <br>
|
|
134
134
|
*/
|
|
135
|
-
get: operations["
|
|
135
|
+
get: operations["getMyBattlestats"];
|
|
136
136
|
put?: never;
|
|
137
137
|
post?: never;
|
|
138
138
|
delete?: never;
|
|
@@ -152,7 +152,7 @@ export interface paths {
|
|
|
152
152
|
* Get bounties placed on you
|
|
153
153
|
* @description Requires public access key. <br>
|
|
154
154
|
*/
|
|
155
|
-
get: operations["
|
|
155
|
+
get: operations["getMyBounties"];
|
|
156
156
|
put?: never;
|
|
157
157
|
post?: never;
|
|
158
158
|
delete?: never;
|
|
@@ -172,7 +172,7 @@ export interface paths {
|
|
|
172
172
|
* Get bounties placed on a specific user
|
|
173
173
|
* @description Requires public access key. <br>
|
|
174
174
|
*/
|
|
175
|
-
get: operations["
|
|
175
|
+
get: operations["getUserBounties"];
|
|
176
176
|
put?: never;
|
|
177
177
|
post?: never;
|
|
178
178
|
delete?: never;
|
|
@@ -192,7 +192,7 @@ export interface paths {
|
|
|
192
192
|
* Get your calendar events start time
|
|
193
193
|
* @description Requires minimal access key. <br>Only available to yourself.
|
|
194
194
|
*/
|
|
195
|
-
get: operations["
|
|
195
|
+
get: operations["getMyCalendarTime"];
|
|
196
196
|
put?: never;
|
|
197
197
|
post?: never;
|
|
198
198
|
delete?: never;
|
|
@@ -212,7 +212,7 @@ export interface paths {
|
|
|
212
212
|
* Get your competition information
|
|
213
213
|
* @description Requires public access key.
|
|
214
214
|
*/
|
|
215
|
-
get: operations["
|
|
215
|
+
get: operations["getMyCompetitionInfo"];
|
|
216
216
|
put?: never;
|
|
217
217
|
post?: never;
|
|
218
218
|
delete?: never;
|
|
@@ -232,7 +232,7 @@ export interface paths {
|
|
|
232
232
|
* Get competition information for a specific player
|
|
233
233
|
* @description Requires public access key.
|
|
234
234
|
*/
|
|
235
|
-
get: operations["
|
|
235
|
+
get: operations["getUserCompetitionInfo"];
|
|
236
236
|
put?: never;
|
|
237
237
|
post?: never;
|
|
238
238
|
delete?: never;
|
|
@@ -252,7 +252,7 @@ export interface paths {
|
|
|
252
252
|
* Get your cooldowns information
|
|
253
253
|
* @description Requires minimal access key. <br>
|
|
254
254
|
*/
|
|
255
|
-
get: operations["
|
|
255
|
+
get: operations["getMyCooldowns"];
|
|
256
256
|
put?: never;
|
|
257
257
|
post?: never;
|
|
258
258
|
delete?: never;
|
|
@@ -272,7 +272,7 @@ export interface paths {
|
|
|
272
272
|
* Get your crime statistics
|
|
273
273
|
* @description Requires minimal access key. <br>Return the details and statistics about for a specific crime.
|
|
274
274
|
*/
|
|
275
|
-
get: operations["
|
|
275
|
+
get: operations["getMyCrimes"];
|
|
276
276
|
put?: never;
|
|
277
277
|
post?: never;
|
|
278
278
|
delete?: never;
|
|
@@ -292,7 +292,7 @@ export interface paths {
|
|
|
292
292
|
* Get your discord information
|
|
293
293
|
* @description Requires public key. <br>
|
|
294
294
|
*/
|
|
295
|
-
get: operations["
|
|
295
|
+
get: operations["getMyDiscord"];
|
|
296
296
|
put?: never;
|
|
297
297
|
post?: never;
|
|
298
298
|
delete?: never;
|
|
@@ -312,7 +312,7 @@ export interface paths {
|
|
|
312
312
|
* Get discord information for a specific user
|
|
313
313
|
* @description Requires public access key. <br>
|
|
314
314
|
*/
|
|
315
|
-
get: operations["
|
|
315
|
+
get: operations["getUserDiscord"];
|
|
316
316
|
put?: never;
|
|
317
317
|
post?: never;
|
|
318
318
|
delete?: never;
|
|
@@ -330,9 +330,9 @@ export interface paths {
|
|
|
330
330
|
};
|
|
331
331
|
/**
|
|
332
332
|
* Get your education information
|
|
333
|
-
* @description The response contains a list of complete eduactions and of a current education (if any).
|
|
333
|
+
* @description Requires minimal access key. <br>The response contains a list of complete eduactions and of a current education (if any).
|
|
334
334
|
*/
|
|
335
|
-
get: operations["
|
|
335
|
+
get: operations["getMyEducation"];
|
|
336
336
|
put?: never;
|
|
337
337
|
post?: never;
|
|
338
338
|
delete?: never;
|
|
@@ -352,7 +352,7 @@ export interface paths {
|
|
|
352
352
|
* Get your enlisted cars
|
|
353
353
|
* @description Requires minimal access key. <br>Returns a list of all user enlisted cars.
|
|
354
354
|
*/
|
|
355
|
-
get: operations["
|
|
355
|
+
get: operations["getMyEnlistedCars"];
|
|
356
356
|
put?: never;
|
|
357
357
|
post?: never;
|
|
358
358
|
delete?: never;
|
|
@@ -372,7 +372,7 @@ export interface paths {
|
|
|
372
372
|
* Get your equipment & clothing
|
|
373
373
|
* @description Requires minimal access key.
|
|
374
374
|
*/
|
|
375
|
-
get: operations["
|
|
375
|
+
get: operations["getMyEquipment"];
|
|
376
376
|
put?: never;
|
|
377
377
|
post?: never;
|
|
378
378
|
delete?: never;
|
|
@@ -392,7 +392,7 @@ export interface paths {
|
|
|
392
392
|
* Get your events
|
|
393
393
|
* @description Requires limited access key. <br> Unfortunately, the 'sort' parameter is not available for this selection.
|
|
394
394
|
*/
|
|
395
|
-
get: operations["
|
|
395
|
+
get: operations["getMyEvents"];
|
|
396
396
|
put?: never;
|
|
397
397
|
post?: never;
|
|
398
398
|
delete?: never;
|
|
@@ -412,7 +412,7 @@ export interface paths {
|
|
|
412
412
|
* Get your faction information
|
|
413
413
|
* @description Requires public access key.
|
|
414
414
|
*/
|
|
415
|
-
get: operations["
|
|
415
|
+
get: operations["getMyFaction"];
|
|
416
416
|
put?: never;
|
|
417
417
|
post?: never;
|
|
418
418
|
delete?: never;
|
|
@@ -432,7 +432,7 @@ export interface paths {
|
|
|
432
432
|
* Get faction information for a specific player
|
|
433
433
|
* @description Requires public access key.
|
|
434
434
|
*/
|
|
435
|
-
get: operations["
|
|
435
|
+
get: operations["getUserFaction"];
|
|
436
436
|
put?: never;
|
|
437
437
|
post?: never;
|
|
438
438
|
delete?: never;
|
|
@@ -452,7 +452,7 @@ export interface paths {
|
|
|
452
452
|
* Get updates on your threads and posts
|
|
453
453
|
* @description Requires minimal access key. <br>This selection returns data visible in 'Feed' section on forum page. Feed is sorted by timestamp descending. Only a maximum of 100 rows are returned.
|
|
454
454
|
*/
|
|
455
|
-
get: operations["
|
|
455
|
+
get: operations["getMyForumFeed"];
|
|
456
456
|
put?: never;
|
|
457
457
|
post?: never;
|
|
458
458
|
delete?: never;
|
|
@@ -472,7 +472,7 @@ export interface paths {
|
|
|
472
472
|
* Get updates on your friends' activity
|
|
473
473
|
* @description Requires minimal access key. <br>This selection returns data visible in 'Friends' section on forum page. Feed is sorted by timestamp descending. Only a maximum of 100 rows are returned.
|
|
474
474
|
*/
|
|
475
|
-
get: operations["
|
|
475
|
+
get: operations["getMyForumFriendsUpdates"];
|
|
476
476
|
put?: never;
|
|
477
477
|
post?: never;
|
|
478
478
|
delete?: never;
|
|
@@ -492,7 +492,7 @@ export interface paths {
|
|
|
492
492
|
* Get your posts
|
|
493
493
|
* @description Requires public access key. <br>Returns 20 posts per page.
|
|
494
494
|
*/
|
|
495
|
-
get: operations["
|
|
495
|
+
get: operations["getMyForumPosts"];
|
|
496
496
|
put?: never;
|
|
497
497
|
post?: never;
|
|
498
498
|
delete?: never;
|
|
@@ -512,7 +512,7 @@ export interface paths {
|
|
|
512
512
|
* Get posts for a specific player
|
|
513
513
|
* @description Requires public access key. <br>Returns 20 posts per page for a specific player.
|
|
514
514
|
*/
|
|
515
|
-
get: operations["
|
|
515
|
+
get: operations["getUserForumPosts"];
|
|
516
516
|
put?: never;
|
|
517
517
|
post?: never;
|
|
518
518
|
delete?: never;
|
|
@@ -532,7 +532,7 @@ export interface paths {
|
|
|
532
532
|
* Get updates on threads you subscribed to
|
|
533
533
|
* @description Requires minimal access key. <br>This selection returns data visible in 'Subscribed Threads' section on forum page. Threads are sorted in the same way as on site.
|
|
534
534
|
*/
|
|
535
|
-
get: operations["
|
|
535
|
+
get: operations["getMyForumSubscribedThreads"];
|
|
536
536
|
put?: never;
|
|
537
537
|
post?: never;
|
|
538
538
|
delete?: never;
|
|
@@ -552,7 +552,7 @@ export interface paths {
|
|
|
552
552
|
* Get your threads
|
|
553
553
|
* @description Requires public access key. <br>Returns 100 threads per page. The field 'new_posts' is also available, indicating the amount of unread posts with a Minimum API key (or higher).
|
|
554
554
|
*/
|
|
555
|
-
get: operations["
|
|
555
|
+
get: operations["getMyForumThreads"];
|
|
556
556
|
put?: never;
|
|
557
557
|
post?: never;
|
|
558
558
|
delete?: never;
|
|
@@ -572,7 +572,7 @@ export interface paths {
|
|
|
572
572
|
* Get threads for a specific player
|
|
573
573
|
* @description Requires public access key. <br>Returns 100 threads per page for a specific player. When requesting data for the key owner, a field 'new_posts' is also available, indicating the amount of unread posts. Minimum API key is required for that.
|
|
574
574
|
*/
|
|
575
|
-
get: operations["
|
|
575
|
+
get: operations["getUserForumThreads"];
|
|
576
576
|
put?: never;
|
|
577
577
|
post?: never;
|
|
578
578
|
delete?: never;
|
|
@@ -592,7 +592,7 @@ export interface paths {
|
|
|
592
592
|
* Get your hall of fame rankings
|
|
593
593
|
* @description Requires public access key. <br>When requesting selection with Limited, Full or Custom key, battle_stats selection will be populated.
|
|
594
594
|
*/
|
|
595
|
-
get: operations["
|
|
595
|
+
get: operations["getMyHoF"];
|
|
596
596
|
put?: never;
|
|
597
597
|
post?: never;
|
|
598
598
|
delete?: never;
|
|
@@ -612,7 +612,7 @@ export interface paths {
|
|
|
612
612
|
* Get hall of fame rankings for a specific player
|
|
613
613
|
* @description Requires public access key. <br>The battle_stats selection will be populated only when requesting selection with Limited, Full or Custom key and for yourself.
|
|
614
614
|
*/
|
|
615
|
-
get: operations["
|
|
615
|
+
get: operations["getUserHoF"];
|
|
616
616
|
put?: never;
|
|
617
617
|
post?: never;
|
|
618
618
|
delete?: never;
|
|
@@ -632,7 +632,7 @@ export interface paths {
|
|
|
632
632
|
* Get your achieved honors
|
|
633
633
|
* @description Requires minimal access key. <br>
|
|
634
634
|
*/
|
|
635
|
-
get: operations["
|
|
635
|
+
get: operations["getMyHonors"];
|
|
636
636
|
put?: never;
|
|
637
637
|
post?: never;
|
|
638
638
|
delete?: never;
|
|
@@ -652,7 +652,7 @@ export interface paths {
|
|
|
652
652
|
* Get your icons information
|
|
653
653
|
* @description Requires public access key. <br> When requesting data for yourself with 'Custom', 'Limited' or 'Full' access keys, the response will be of type UserIconPrivate, otherwise UserIconPublic.
|
|
654
654
|
*/
|
|
655
|
-
get: operations["
|
|
655
|
+
get: operations["getMyIcons"];
|
|
656
656
|
put?: never;
|
|
657
657
|
post?: never;
|
|
658
658
|
delete?: never;
|
|
@@ -672,7 +672,7 @@ export interface paths {
|
|
|
672
672
|
* Get icons information for a specific player
|
|
673
673
|
* @description Requires public access key.<br> When requesting data for yourself with 'Custom', 'Limited' or 'Full' access keys, the response will be of type UserIconPrivate, otherwise UserIconPublic.
|
|
674
674
|
*/
|
|
675
|
-
get: operations["
|
|
675
|
+
get: operations["getUserIcons"];
|
|
676
676
|
put?: never;
|
|
677
677
|
post?: never;
|
|
678
678
|
delete?: never;
|
|
@@ -689,10 +689,10 @@ export interface paths {
|
|
|
689
689
|
cookie?: never;
|
|
690
690
|
};
|
|
691
691
|
/**
|
|
692
|
-
* Get your item market listings
|
|
692
|
+
* Get your item market listings
|
|
693
693
|
* @description Requires limited access key. <br>
|
|
694
694
|
*/
|
|
695
|
-
get: operations["
|
|
695
|
+
get: operations["getMyItemMarketListings"];
|
|
696
696
|
put?: never;
|
|
697
697
|
post?: never;
|
|
698
698
|
delete?: never;
|
|
@@ -712,7 +712,7 @@ export interface paths {
|
|
|
712
712
|
* Get your job information
|
|
713
713
|
* @description Requires public access key.
|
|
714
714
|
*/
|
|
715
|
-
get: operations["
|
|
715
|
+
get: operations["getMyJob"];
|
|
716
716
|
put?: never;
|
|
717
717
|
post?: never;
|
|
718
718
|
delete?: never;
|
|
@@ -732,7 +732,7 @@ export interface paths {
|
|
|
732
732
|
* Get job information for a specific player
|
|
733
733
|
* @description Requires public access key.
|
|
734
734
|
*/
|
|
735
|
-
get: operations["
|
|
735
|
+
get: operations["getUserJob"];
|
|
736
736
|
put?: never;
|
|
737
737
|
post?: never;
|
|
738
738
|
delete?: never;
|
|
@@ -752,7 +752,7 @@ export interface paths {
|
|
|
752
752
|
* Get your jobpoints
|
|
753
753
|
* @description Requires minimal access key. <br>
|
|
754
754
|
*/
|
|
755
|
-
get: operations["
|
|
755
|
+
get: operations["getMyJobPoints"];
|
|
756
756
|
put?: never;
|
|
757
757
|
post?: never;
|
|
758
758
|
delete?: never;
|
|
@@ -772,7 +772,7 @@ export interface paths {
|
|
|
772
772
|
* Get your starter job positions
|
|
773
773
|
* @description Requires minimal access key. <br>
|
|
774
774
|
*/
|
|
775
|
-
get: operations["
|
|
775
|
+
get: operations["getMyJobRanks"];
|
|
776
776
|
put?: never;
|
|
777
777
|
post?: never;
|
|
778
778
|
delete?: never;
|
|
@@ -792,7 +792,7 @@ export interface paths {
|
|
|
792
792
|
* Get your friends, enemies or targets list
|
|
793
793
|
* @description Requires limited access key. <br>
|
|
794
794
|
*/
|
|
795
|
-
get: operations["
|
|
795
|
+
get: operations["getMyContactsList"];
|
|
796
796
|
put?: never;
|
|
797
797
|
post?: never;
|
|
798
798
|
delete?: never;
|
|
@@ -810,9 +810,9 @@ export interface paths {
|
|
|
810
810
|
};
|
|
811
811
|
/**
|
|
812
812
|
* Get your logs
|
|
813
|
-
* @description Requires
|
|
813
|
+
* @description Requires full access key. <br> It's possible to pass a list of log ids or a log category id.<br>
|
|
814
814
|
*/
|
|
815
|
-
get: operations["
|
|
815
|
+
get: operations["getMyLogs"];
|
|
816
816
|
put?: never;
|
|
817
817
|
post?: never;
|
|
818
818
|
delete?: never;
|
|
@@ -832,7 +832,7 @@ export interface paths {
|
|
|
832
832
|
* Get your achieved medals
|
|
833
833
|
* @description Requires minimal access key. <br>
|
|
834
834
|
*/
|
|
835
|
-
get: operations["
|
|
835
|
+
get: operations["getMyMedals"];
|
|
836
836
|
put?: never;
|
|
837
837
|
post?: never;
|
|
838
838
|
delete?: never;
|
|
@@ -852,7 +852,7 @@ export interface paths {
|
|
|
852
852
|
* Get your merits
|
|
853
853
|
* @description Requires minimal access key. <br>
|
|
854
854
|
*/
|
|
855
|
-
get: operations["
|
|
855
|
+
get: operations["getMyMerits"];
|
|
856
856
|
put?: never;
|
|
857
857
|
post?: never;
|
|
858
858
|
delete?: never;
|
|
@@ -872,7 +872,7 @@ export interface paths {
|
|
|
872
872
|
* Get your messages
|
|
873
873
|
* @description Requires limited access key. <br>
|
|
874
874
|
*/
|
|
875
|
-
get: operations["
|
|
875
|
+
get: operations["getMyMessages"];
|
|
876
876
|
put?: never;
|
|
877
877
|
post?: never;
|
|
878
878
|
delete?: never;
|
|
@@ -892,7 +892,7 @@ export interface paths {
|
|
|
892
892
|
* Get your current missions information
|
|
893
893
|
* @description Requires minimal access key. <br>
|
|
894
894
|
*/
|
|
895
|
-
get: operations["
|
|
895
|
+
get: operations["getMyMissions"];
|
|
896
896
|
put?: never;
|
|
897
897
|
post?: never;
|
|
898
898
|
delete?: never;
|
|
@@ -912,7 +912,7 @@ export interface paths {
|
|
|
912
912
|
* Get your current wealth
|
|
913
913
|
* @description Requires limited access key. <br>
|
|
914
914
|
*/
|
|
915
|
-
get: operations["
|
|
915
|
+
get: operations["getMyMoney"];
|
|
916
916
|
put?: never;
|
|
917
917
|
post?: never;
|
|
918
918
|
delete?: never;
|
|
@@ -932,7 +932,7 @@ export interface paths {
|
|
|
932
932
|
* Get your unseen events
|
|
933
933
|
* @description Requires limited access key. <br>
|
|
934
934
|
*/
|
|
935
|
-
get: operations["
|
|
935
|
+
get: operations["getMyNewEvents"];
|
|
936
936
|
put?: never;
|
|
937
937
|
post?: never;
|
|
938
938
|
delete?: never;
|
|
@@ -952,7 +952,7 @@ export interface paths {
|
|
|
952
952
|
* Get your unseen messages
|
|
953
953
|
* @description Requires limited access key. <br>
|
|
954
954
|
*/
|
|
955
|
-
get: operations["
|
|
955
|
+
get: operations["getMyNewMessages"];
|
|
956
956
|
put?: never;
|
|
957
957
|
post?: never;
|
|
958
958
|
delete?: never;
|
|
@@ -972,7 +972,7 @@ export interface paths {
|
|
|
972
972
|
* Get your notifications
|
|
973
973
|
* @description Requires minimal access key. <br>
|
|
974
974
|
*/
|
|
975
|
-
get: operations["
|
|
975
|
+
get: operations["getMyNotifications"];
|
|
976
976
|
put?: never;
|
|
977
977
|
post?: never;
|
|
978
978
|
delete?: never;
|
|
@@ -992,7 +992,7 @@ export interface paths {
|
|
|
992
992
|
* Get your current ongoing organized crime
|
|
993
993
|
* @description Requires minimal access key. <br>
|
|
994
994
|
*/
|
|
995
|
-
get: operations["
|
|
995
|
+
get: operations["getMyOrganizedCrime"];
|
|
996
996
|
put?: never;
|
|
997
997
|
post?: never;
|
|
998
998
|
delete?: never;
|
|
@@ -1018,7 +1018,7 @@ export interface paths {
|
|
|
1018
1018
|
* * Historical stats can be fetched via 'stat' query parameter. It's only possible to pass up to 10 historical stats at once (the rest is trimmed). When requesting historical stats the response will be of type UserPersonalStatsHistoric.
|
|
1019
1019
|
* * Use 'timestamp' query parameter to get historical stats at the certain point in time. It's possible some historical stats didn't exist at the given timestamp, and for such stats you will not receive anything back.
|
|
1020
1020
|
*/
|
|
1021
|
-
get: operations["
|
|
1021
|
+
get: operations["getMyPersonalStats"];
|
|
1022
1022
|
put?: never;
|
|
1023
1023
|
post?: never;
|
|
1024
1024
|
delete?: never;
|
|
@@ -1044,7 +1044,7 @@ export interface paths {
|
|
|
1044
1044
|
* * It's possible to request specific stats via 'stat' parameter. In this case the response will vary depending on the stats requested. Private stats are still available only to the key owner (with Limited or higher key).
|
|
1045
1045
|
* * Additionally, historical stats can also be fetched via 'stat' query parameter, but 'timestamp' parameter must be provided as well. It's only possible to pass up to 10 historical stats at once (the rest is trimmed). When requesting historical stats the response will be of type UserPersonalStatsHistoric.
|
|
1046
1046
|
*/
|
|
1047
|
-
get: operations["
|
|
1047
|
+
get: operations["getUserPersonalStats"];
|
|
1048
1048
|
put?: never;
|
|
1049
1049
|
post?: never;
|
|
1050
1050
|
delete?: never;
|
|
@@ -1064,7 +1064,7 @@ export interface paths {
|
|
|
1064
1064
|
* Get your own profile
|
|
1065
1065
|
* @description Requires public access key.
|
|
1066
1066
|
*/
|
|
1067
|
-
get: operations["
|
|
1067
|
+
get: operations["getMyProfile"];
|
|
1068
1068
|
put?: never;
|
|
1069
1069
|
post?: never;
|
|
1070
1070
|
delete?: never;
|
|
@@ -1084,7 +1084,7 @@ export interface paths {
|
|
|
1084
1084
|
* Get profile information for a specific player
|
|
1085
1085
|
* @description Requires public access key.
|
|
1086
1086
|
*/
|
|
1087
|
-
get: operations["
|
|
1087
|
+
get: operations["getUserProfile"];
|
|
1088
1088
|
put?: never;
|
|
1089
1089
|
post?: never;
|
|
1090
1090
|
delete?: never;
|
|
@@ -1104,7 +1104,7 @@ export interface paths {
|
|
|
1104
1104
|
* Get your own properties
|
|
1105
1105
|
* @description Requires public access key. <br>Extended responses are available when requesting the data with Limited or higher access keys.
|
|
1106
1106
|
*/
|
|
1107
|
-
get: operations["
|
|
1107
|
+
get: operations["getMyProperties"];
|
|
1108
1108
|
put?: never;
|
|
1109
1109
|
post?: never;
|
|
1110
1110
|
delete?: never;
|
|
@@ -1124,7 +1124,7 @@ export interface paths {
|
|
|
1124
1124
|
* Get specific user's properties
|
|
1125
1125
|
* @description Requires public access key. <br>Extended responses are available when requesting the data with Limited or higher access keys for yourself or your spouse.
|
|
1126
1126
|
*/
|
|
1127
|
-
get: operations["
|
|
1127
|
+
get: operations["getUserProperties"];
|
|
1128
1128
|
put?: never;
|
|
1129
1129
|
post?: never;
|
|
1130
1130
|
delete?: never;
|
|
@@ -1144,7 +1144,7 @@ export interface paths {
|
|
|
1144
1144
|
* Get your current property
|
|
1145
1145
|
* @description Requires public access key. <br>
|
|
1146
1146
|
*/
|
|
1147
|
-
get: operations["
|
|
1147
|
+
get: operations["getMyProperty"];
|
|
1148
1148
|
put?: never;
|
|
1149
1149
|
post?: never;
|
|
1150
1150
|
delete?: never;
|
|
@@ -1164,7 +1164,7 @@ export interface paths {
|
|
|
1164
1164
|
* Get specific user's property
|
|
1165
1165
|
* @description Requires public access key. <br>
|
|
1166
1166
|
*/
|
|
1167
|
-
get: operations["
|
|
1167
|
+
get: operations["getUserProperty"];
|
|
1168
1168
|
put?: never;
|
|
1169
1169
|
post?: never;
|
|
1170
1170
|
delete?: never;
|
|
@@ -1184,7 +1184,7 @@ export interface paths {
|
|
|
1184
1184
|
* Get user races
|
|
1185
1185
|
* @description Requires minimal access key. <br>Returns a list of user races, ordered by race start timestamp.
|
|
1186
1186
|
*/
|
|
1187
|
-
get: operations["
|
|
1187
|
+
get: operations["getMyRaces"];
|
|
1188
1188
|
put?: never;
|
|
1189
1189
|
post?: never;
|
|
1190
1190
|
delete?: never;
|
|
@@ -1204,7 +1204,7 @@ export interface paths {
|
|
|
1204
1204
|
* Get your current racing records
|
|
1205
1205
|
* @description Requires minimal access key. <br>
|
|
1206
1206
|
*/
|
|
1207
|
-
get: operations["
|
|
1207
|
+
get: operations["getMyRacingRecords"];
|
|
1208
1208
|
put?: never;
|
|
1209
1209
|
post?: never;
|
|
1210
1210
|
delete?: never;
|
|
@@ -1224,7 +1224,7 @@ export interface paths {
|
|
|
1224
1224
|
* Get your refills information
|
|
1225
1225
|
* @description Requires minimal access key. <br>
|
|
1226
1226
|
*/
|
|
1227
|
-
get: operations["
|
|
1227
|
+
get: operations["getMyRefills"];
|
|
1228
1228
|
put?: never;
|
|
1229
1229
|
post?: never;
|
|
1230
1230
|
delete?: never;
|
|
@@ -1245,7 +1245,7 @@ export interface paths {
|
|
|
1245
1245
|
* @description Requires limited access key. <br>
|
|
1246
1246
|
* * The default limit is set to 25. However, the limit can be set to 100 for the 'stats' category.
|
|
1247
1247
|
*/
|
|
1248
|
-
get: operations["
|
|
1248
|
+
get: operations["getMyReports"];
|
|
1249
1249
|
put?: never;
|
|
1250
1250
|
post?: never;
|
|
1251
1251
|
delete?: never;
|
|
@@ -1265,7 +1265,7 @@ export interface paths {
|
|
|
1265
1265
|
* Get your detailed revives
|
|
1266
1266
|
* @description Requires limited access key. <br>
|
|
1267
1267
|
*/
|
|
1268
|
-
get: operations["
|
|
1268
|
+
get: operations["getMyRevives"];
|
|
1269
1269
|
put?: never;
|
|
1270
1270
|
post?: never;
|
|
1271
1271
|
delete?: never;
|
|
@@ -1285,7 +1285,7 @@ export interface paths {
|
|
|
1285
1285
|
* Get your simplified revives
|
|
1286
1286
|
* @description Requires limited access key. <br>
|
|
1287
1287
|
*/
|
|
1288
|
-
get: operations["
|
|
1288
|
+
get: operations["getMyRevivesSimplified"];
|
|
1289
1289
|
put?: never;
|
|
1290
1290
|
post?: never;
|
|
1291
1291
|
delete?: never;
|
|
@@ -1305,7 +1305,7 @@ export interface paths {
|
|
|
1305
1305
|
* Get your skills
|
|
1306
1306
|
* @description Requires minimal access key. <br>
|
|
1307
1307
|
*/
|
|
1308
|
-
get: operations["
|
|
1308
|
+
get: operations["getMySkills"];
|
|
1309
1309
|
put?: never;
|
|
1310
1310
|
post?: never;
|
|
1311
1311
|
delete?: never;
|
|
@@ -1325,7 +1325,7 @@ export interface paths {
|
|
|
1325
1325
|
* Get your travel information
|
|
1326
1326
|
* @description Requires minimal access key. <br>
|
|
1327
1327
|
*/
|
|
1328
|
-
get: operations["
|
|
1328
|
+
get: operations["getMyTravelInformation"];
|
|
1329
1329
|
put?: never;
|
|
1330
1330
|
post?: never;
|
|
1331
1331
|
delete?: never;
|
|
@@ -1342,10 +1342,10 @@ export interface paths {
|
|
|
1342
1342
|
cookie?: never;
|
|
1343
1343
|
};
|
|
1344
1344
|
/**
|
|
1345
|
-
* Get your virus information
|
|
1345
|
+
* Get your virus coding information
|
|
1346
1346
|
* @description Requires minimal access key. <br>
|
|
1347
1347
|
*/
|
|
1348
|
-
get: operations["
|
|
1348
|
+
get: operations["getMyVirusCodingInformation"];
|
|
1349
1349
|
put?: never;
|
|
1350
1350
|
post?: never;
|
|
1351
1351
|
delete?: never;
|
|
@@ -1365,7 +1365,7 @@ export interface paths {
|
|
|
1365
1365
|
* Get your weapon experience information
|
|
1366
1366
|
* @description Requires minimal key. <br>
|
|
1367
1367
|
*/
|
|
1368
|
-
get: operations["
|
|
1368
|
+
get: operations["getMyWeaponExp"];
|
|
1369
1369
|
put?: never;
|
|
1370
1370
|
post?: never;
|
|
1371
1371
|
delete?: never;
|
|
@@ -1385,7 +1385,7 @@ export interface paths {
|
|
|
1385
1385
|
* Get your working stats
|
|
1386
1386
|
* @description Requires minimal access key. <br>
|
|
1387
1387
|
*/
|
|
1388
|
-
get: operations["
|
|
1388
|
+
get: operations["getMyWorkstats"];
|
|
1389
1389
|
put?: never;
|
|
1390
1390
|
post?: never;
|
|
1391
1391
|
delete?: never;
|
|
@@ -1405,7 +1405,7 @@ export interface paths {
|
|
|
1405
1405
|
* Get all available user selections
|
|
1406
1406
|
* @description Requires public access key. <br>
|
|
1407
1407
|
*/
|
|
1408
|
-
get: operations["
|
|
1408
|
+
get: operations["getUserLookup"];
|
|
1409
1409
|
put?: never;
|
|
1410
1410
|
post?: never;
|
|
1411
1411
|
delete?: never;
|
|
@@ -1425,7 +1425,7 @@ export interface paths {
|
|
|
1425
1425
|
* Get current server time
|
|
1426
1426
|
* @description Requires public access key. <br>
|
|
1427
1427
|
*/
|
|
1428
|
-
get: operations["
|
|
1428
|
+
get: operations["getUserTimestamp"];
|
|
1429
1429
|
put?: never;
|
|
1430
1430
|
post?: never;
|
|
1431
1431
|
delete?: never;
|
|
@@ -1445,7 +1445,7 @@ export interface paths {
|
|
|
1445
1445
|
* Get any User selection
|
|
1446
1446
|
* @description Key access level depends on the required selections. <br>Choose one or more selections (comma separated).
|
|
1447
1447
|
*/
|
|
1448
|
-
get: operations["
|
|
1448
|
+
get: operations["getUserGeneric"];
|
|
1449
1449
|
put?: never;
|
|
1450
1450
|
post?: never;
|
|
1451
1451
|
delete?: never;
|
|
@@ -1465,7 +1465,7 @@ export interface paths {
|
|
|
1465
1465
|
* Get your faction's applications
|
|
1466
1466
|
* @description Requires minimal access key with faction API access permissions. <br>
|
|
1467
1467
|
*/
|
|
1468
|
-
get: operations["
|
|
1468
|
+
get: operations["getMyFactionApplications"];
|
|
1469
1469
|
put?: never;
|
|
1470
1470
|
post?: never;
|
|
1471
1471
|
delete?: never;
|
|
@@ -1485,7 +1485,7 @@ export interface paths {
|
|
|
1485
1485
|
* Get your faction's detailed attacks
|
|
1486
1486
|
* @description Requires limited access key with faction API access permissions. <br>
|
|
1487
1487
|
*/
|
|
1488
|
-
get: operations["
|
|
1488
|
+
get: operations["getMyFactionAttacks"];
|
|
1489
1489
|
put?: never;
|
|
1490
1490
|
post?: never;
|
|
1491
1491
|
delete?: never;
|
|
@@ -1505,7 +1505,7 @@ export interface paths {
|
|
|
1505
1505
|
* Get your faction's simplified attacks
|
|
1506
1506
|
* @description Requires limited access key with faction API access permissions. <br>
|
|
1507
1507
|
*/
|
|
1508
|
-
get: operations["
|
|
1508
|
+
get: operations["getMyFactionAttacksSimplified"];
|
|
1509
1509
|
put?: never;
|
|
1510
1510
|
post?: never;
|
|
1511
1511
|
delete?: never;
|
|
@@ -1525,7 +1525,7 @@ export interface paths {
|
|
|
1525
1525
|
* Get your faction's & member's balance details
|
|
1526
1526
|
* @description Requires limited access key with faction API access permissions. <br>
|
|
1527
1527
|
*/
|
|
1528
|
-
get: operations["
|
|
1528
|
+
get: operations["getMyFactionBalance"];
|
|
1529
1529
|
put?: never;
|
|
1530
1530
|
post?: never;
|
|
1531
1531
|
delete?: never;
|
|
@@ -1545,7 +1545,7 @@ export interface paths {
|
|
|
1545
1545
|
* Get your faction's basic details
|
|
1546
1546
|
* @description Requires public access key. <br> The 'is_enlisted' value will be populated if you have API faction permissions (with custom, limited or full access keys), otherwise it will be set as null.
|
|
1547
1547
|
*/
|
|
1548
|
-
get: operations["
|
|
1548
|
+
get: operations["getMyFactionBasicInformation"];
|
|
1549
1549
|
put?: never;
|
|
1550
1550
|
post?: never;
|
|
1551
1551
|
delete?: never;
|
|
@@ -1565,7 +1565,7 @@ export interface paths {
|
|
|
1565
1565
|
* Get a faction's basic details
|
|
1566
1566
|
* @description Requires public access key. <br> The 'is_enlisted' value will be populated if you're requesting data for your faction and have faction permissions (with custom, limited or full access keys), otherwise it will be set as null.
|
|
1567
1567
|
*/
|
|
1568
|
-
get: operations["
|
|
1568
|
+
get: operations["getFactionBasicInformation"];
|
|
1569
1569
|
put?: never;
|
|
1570
1570
|
post?: never;
|
|
1571
1571
|
delete?: never;
|
|
@@ -1585,7 +1585,7 @@ export interface paths {
|
|
|
1585
1585
|
* Get your faction's current chain
|
|
1586
1586
|
* @description Requires public access key. <br>
|
|
1587
1587
|
*/
|
|
1588
|
-
get: operations["
|
|
1588
|
+
get: operations["getMyFactionChain"];
|
|
1589
1589
|
put?: never;
|
|
1590
1590
|
post?: never;
|
|
1591
1591
|
delete?: never;
|
|
@@ -1605,7 +1605,7 @@ export interface paths {
|
|
|
1605
1605
|
* Get a faction's current chain
|
|
1606
1606
|
* @description Requires public access key. <br>
|
|
1607
1607
|
*/
|
|
1608
|
-
get: operations["
|
|
1608
|
+
get: operations["getFactionChain"];
|
|
1609
1609
|
put?: never;
|
|
1610
1610
|
post?: never;
|
|
1611
1611
|
delete?: never;
|
|
@@ -1625,7 +1625,7 @@ export interface paths {
|
|
|
1625
1625
|
* Get a list of your faction's completed chains
|
|
1626
1626
|
* @description Requires public access key. <br>
|
|
1627
1627
|
*/
|
|
1628
|
-
get: operations["
|
|
1628
|
+
get: operations["getMyFactionCompletedChains"];
|
|
1629
1629
|
put?: never;
|
|
1630
1630
|
post?: never;
|
|
1631
1631
|
delete?: never;
|
|
@@ -1645,7 +1645,7 @@ export interface paths {
|
|
|
1645
1645
|
* Get a list of a faction's completed chains
|
|
1646
1646
|
* @description Requires public access key. <br>
|
|
1647
1647
|
*/
|
|
1648
|
-
get: operations["
|
|
1648
|
+
get: operations["getFactionCompletedChains"];
|
|
1649
1649
|
put?: never;
|
|
1650
1650
|
post?: never;
|
|
1651
1651
|
delete?: never;
|
|
@@ -1665,7 +1665,7 @@ export interface paths {
|
|
|
1665
1665
|
* Get your faction's latest chain report
|
|
1666
1666
|
* @description Requires public access key. <br> This includes currently ongoing chains.
|
|
1667
1667
|
*/
|
|
1668
|
-
get: operations["
|
|
1668
|
+
get: operations["getMyFactionLatestChainReport"];
|
|
1669
1669
|
put?: never;
|
|
1670
1670
|
post?: never;
|
|
1671
1671
|
delete?: never;
|
|
@@ -1685,7 +1685,7 @@ export interface paths {
|
|
|
1685
1685
|
* Get a chain report
|
|
1686
1686
|
* @description Requires public access key. <br> Chain reports for ongoing chains are available only for your own faction.
|
|
1687
1687
|
*/
|
|
1688
|
-
get: operations["
|
|
1688
|
+
get: operations["getChainReport"];
|
|
1689
1689
|
put?: never;
|
|
1690
1690
|
post?: never;
|
|
1691
1691
|
delete?: never;
|
|
@@ -1705,7 +1705,7 @@ export interface paths {
|
|
|
1705
1705
|
* Get your faction's challenge contributors
|
|
1706
1706
|
* @description Requires limiteed access key with faction API access permissions. <br>
|
|
1707
1707
|
*/
|
|
1708
|
-
get: operations["
|
|
1708
|
+
get: operations["getMyFactionContributors"];
|
|
1709
1709
|
put?: never;
|
|
1710
1710
|
post?: never;
|
|
1711
1711
|
delete?: never;
|
|
@@ -1729,7 +1729,7 @@ export interface paths {
|
|
|
1729
1729
|
* * For categories 'recruiting' & 'expired', the ordering field is 'expired_at'.
|
|
1730
1730
|
* * For category 'planning', the ordering field is 'ready_at'.
|
|
1731
1731
|
*/
|
|
1732
|
-
get: operations["
|
|
1732
|
+
get: operations["getMyFactionOrganizedCrimes"];
|
|
1733
1733
|
put?: never;
|
|
1734
1734
|
post?: never;
|
|
1735
1735
|
delete?: never;
|
|
@@ -1749,7 +1749,7 @@ export interface paths {
|
|
|
1749
1749
|
* Get a specific organized crime
|
|
1750
1750
|
* @description Requires minimal access key with faction API access permissions. <br>
|
|
1751
1751
|
*/
|
|
1752
|
-
get: operations["
|
|
1752
|
+
get: operations["getMyFactionOrganizedCrime"];
|
|
1753
1753
|
put?: never;
|
|
1754
1754
|
post?: never;
|
|
1755
1755
|
delete?: never;
|
|
@@ -1769,7 +1769,7 @@ export interface paths {
|
|
|
1769
1769
|
* Get your faction's hall of fame rankings.
|
|
1770
1770
|
* @description Requires public access key. <br>
|
|
1771
1771
|
*/
|
|
1772
|
-
get: operations["
|
|
1772
|
+
get: operations["getMyFactionHoF"];
|
|
1773
1773
|
put?: never;
|
|
1774
1774
|
post?: never;
|
|
1775
1775
|
delete?: never;
|
|
@@ -1789,7 +1789,7 @@ export interface paths {
|
|
|
1789
1789
|
* Get a faction's hall of fame rankings.
|
|
1790
1790
|
* @description Requires public access key. <br>
|
|
1791
1791
|
*/
|
|
1792
|
-
get: operations["
|
|
1792
|
+
get: operations["getFactionHoF"];
|
|
1793
1793
|
put?: never;
|
|
1794
1794
|
post?: never;
|
|
1795
1795
|
delete?: never;
|
|
@@ -1809,7 +1809,7 @@ export interface paths {
|
|
|
1809
1809
|
* Get a list of your faction's members
|
|
1810
1810
|
* @description Requires public access key. <br> The 'revive_setting' value will be populated (not Unknown) if you have faction permissions (with custom, limited or full access keys), otherwise it will be set as 'Unknown'.
|
|
1811
1811
|
*/
|
|
1812
|
-
get: operations["
|
|
1812
|
+
get: operations["getMyFactionMembers"];
|
|
1813
1813
|
put?: never;
|
|
1814
1814
|
post?: never;
|
|
1815
1815
|
delete?: never;
|
|
@@ -1829,7 +1829,7 @@ export interface paths {
|
|
|
1829
1829
|
* Get a list of a faction's members
|
|
1830
1830
|
* @description Requires public access key. <br> The 'revive_setting' value will be populated (not Unknown) if you're requesting data for your own faction and have faction permissions (with custom, limited or full access keys), otherwise it will be set as 'Unknown'.
|
|
1831
1831
|
*/
|
|
1832
|
-
get: operations["
|
|
1832
|
+
get: operations["getFactionMembers"];
|
|
1833
1833
|
put?: never;
|
|
1834
1834
|
post?: never;
|
|
1835
1835
|
delete?: never;
|
|
@@ -1849,7 +1849,7 @@ export interface paths {
|
|
|
1849
1849
|
* Get your faction's news details
|
|
1850
1850
|
* @description Requires minimal access key with faction API access permissions. <br> It is possible to pass up to 10 categories at the time (comma separated). Categories 'attack', 'depositFunds' and 'giveFunds' are only available with 'Custom', 'Limited' or 'Full' access keys.
|
|
1851
1851
|
*/
|
|
1852
|
-
get: operations["
|
|
1852
|
+
get: operations["getMyFactionNews"];
|
|
1853
1853
|
put?: never;
|
|
1854
1854
|
post?: never;
|
|
1855
1855
|
delete?: never;
|
|
@@ -1869,7 +1869,7 @@ export interface paths {
|
|
|
1869
1869
|
* Get your faction's positions details
|
|
1870
1870
|
* @description Requires minimal access key with faction API access permissions. <br>
|
|
1871
1871
|
*/
|
|
1872
|
-
get: operations["
|
|
1872
|
+
get: operations["getMyFactionPositions"];
|
|
1873
1873
|
put?: never;
|
|
1874
1874
|
post?: never;
|
|
1875
1875
|
delete?: never;
|
|
@@ -1889,7 +1889,7 @@ export interface paths {
|
|
|
1889
1889
|
* Get a list of current rackets
|
|
1890
1890
|
* @description Requires public access key. <br>
|
|
1891
1891
|
*/
|
|
1892
|
-
get: operations["
|
|
1892
|
+
get: operations["getFactionRackets"];
|
|
1893
1893
|
put?: never;
|
|
1894
1894
|
post?: never;
|
|
1895
1895
|
delete?: never;
|
|
@@ -1909,7 +1909,7 @@ export interface paths {
|
|
|
1909
1909
|
* Get raid war details
|
|
1910
1910
|
* @description Requires public access key. <br>
|
|
1911
1911
|
*/
|
|
1912
|
-
get: operations["
|
|
1912
|
+
get: operations["getRaidReport"];
|
|
1913
1913
|
put?: never;
|
|
1914
1914
|
post?: never;
|
|
1915
1915
|
delete?: never;
|
|
@@ -1929,7 +1929,7 @@ export interface paths {
|
|
|
1929
1929
|
* Get raids history for your faction
|
|
1930
1930
|
* @description Requires public access key. <br>
|
|
1931
1931
|
*/
|
|
1932
|
-
get: operations["
|
|
1932
|
+
get: operations["getMyFactionRaidsHistory"];
|
|
1933
1933
|
put?: never;
|
|
1934
1934
|
post?: never;
|
|
1935
1935
|
delete?: never;
|
|
@@ -1949,7 +1949,7 @@ export interface paths {
|
|
|
1949
1949
|
* Get a faction's raids history
|
|
1950
1950
|
* @description Requires public access key. <br>
|
|
1951
1951
|
*/
|
|
1952
|
-
get: operations["
|
|
1952
|
+
get: operations["getFactionRaidsHistory"];
|
|
1953
1953
|
put?: never;
|
|
1954
1954
|
post?: never;
|
|
1955
1955
|
delete?: never;
|
|
@@ -1969,7 +1969,7 @@ export interface paths {
|
|
|
1969
1969
|
* Get ranked wars history for your faction
|
|
1970
1970
|
* @description Requires public access key. <br> Use offset to get older results which are always ordered descending.
|
|
1971
1971
|
*/
|
|
1972
|
-
get: operations["
|
|
1972
|
+
get: operations["getMyFactionRankedWarsHistory"];
|
|
1973
1973
|
put?: never;
|
|
1974
1974
|
post?: never;
|
|
1975
1975
|
delete?: never;
|
|
@@ -1989,7 +1989,7 @@ export interface paths {
|
|
|
1989
1989
|
* Get a faction's ranked wars history
|
|
1990
1990
|
* @description Requires public access key. <br> Use offset to get older results which are always ordered descending.
|
|
1991
1991
|
*/
|
|
1992
|
-
get: operations["
|
|
1992
|
+
get: operations["getFactionRankedWarsHistory"];
|
|
1993
1993
|
put?: never;
|
|
1994
1994
|
post?: never;
|
|
1995
1995
|
delete?: never;
|
|
@@ -2009,7 +2009,7 @@ export interface paths {
|
|
|
2009
2009
|
* Get ranked war details
|
|
2010
2010
|
* @description Requires public access key. <br>
|
|
2011
2011
|
*/
|
|
2012
|
-
get: operations["
|
|
2012
|
+
get: operations["getRankedWarReport"];
|
|
2013
2013
|
put?: never;
|
|
2014
2014
|
post?: never;
|
|
2015
2015
|
delete?: never;
|
|
@@ -2030,7 +2030,7 @@ export interface paths {
|
|
|
2030
2030
|
* @description Requires limited access key. <br>
|
|
2031
2031
|
* * The default limit is set to 25. However, the limit can be set to 100 for the 'stats' category.
|
|
2032
2032
|
*/
|
|
2033
|
-
get: operations["
|
|
2033
|
+
get: operations["getMyFactionReports"];
|
|
2034
2034
|
put?: never;
|
|
2035
2035
|
post?: never;
|
|
2036
2036
|
delete?: never;
|
|
@@ -2050,7 +2050,7 @@ export interface paths {
|
|
|
2050
2050
|
* Get your faction's detailed revives
|
|
2051
2051
|
* @description Requires limited access key with faction API access permissions. <br>
|
|
2052
2052
|
*/
|
|
2053
|
-
get: operations["
|
|
2053
|
+
get: operations["getMyFactionRevives"];
|
|
2054
2054
|
put?: never;
|
|
2055
2055
|
post?: never;
|
|
2056
2056
|
delete?: never;
|
|
@@ -2070,7 +2070,7 @@ export interface paths {
|
|
|
2070
2070
|
* Get your faction's simplified revives
|
|
2071
2071
|
* @description Requires limited access key with faction API access permissions. <br>
|
|
2072
2072
|
*/
|
|
2073
|
-
get: operations["
|
|
2073
|
+
get: operations["getMyFactionRevivesSimplified"];
|
|
2074
2074
|
put?: never;
|
|
2075
2075
|
post?: never;
|
|
2076
2076
|
delete?: never;
|
|
@@ -2090,7 +2090,7 @@ export interface paths {
|
|
|
2090
2090
|
* Search factions by name or other criteria
|
|
2091
2091
|
* @description Requires public access key. <br>This selection is standalone and cannot be used together with other selections.
|
|
2092
2092
|
*/
|
|
2093
|
-
get: operations["
|
|
2093
|
+
get: operations["getFactionSearch"];
|
|
2094
2094
|
put?: never;
|
|
2095
2095
|
post?: never;
|
|
2096
2096
|
delete?: never;
|
|
@@ -2110,7 +2110,7 @@ export interface paths {
|
|
|
2110
2110
|
* Get your faction's challenges stats
|
|
2111
2111
|
* @description Requires minimal access key with faction API access permissions. <br>
|
|
2112
2112
|
*/
|
|
2113
|
-
get: operations["
|
|
2113
|
+
get: operations["getMyFactionStats"];
|
|
2114
2114
|
put?: never;
|
|
2115
2115
|
post?: never;
|
|
2116
2116
|
delete?: never;
|
|
@@ -2130,7 +2130,7 @@ export interface paths {
|
|
|
2130
2130
|
* Get a list of your faction's territories
|
|
2131
2131
|
* @description Requires public access key. <br>
|
|
2132
2132
|
*/
|
|
2133
|
-
get: operations["
|
|
2133
|
+
get: operations["getMyFactionTerritory"];
|
|
2134
2134
|
put?: never;
|
|
2135
2135
|
post?: never;
|
|
2136
2136
|
delete?: never;
|
|
@@ -2150,7 +2150,7 @@ export interface paths {
|
|
|
2150
2150
|
* Get a list of a faction's territories
|
|
2151
2151
|
* @description Requires public access key. <br>
|
|
2152
2152
|
*/
|
|
2153
|
-
get: operations["
|
|
2153
|
+
get: operations["getFactionTerritory"];
|
|
2154
2154
|
put?: never;
|
|
2155
2155
|
post?: never;
|
|
2156
2156
|
delete?: never;
|
|
@@ -2170,7 +2170,7 @@ export interface paths {
|
|
|
2170
2170
|
* Get a list territory ownership
|
|
2171
2171
|
* @description Requires public access key. <br>
|
|
2172
2172
|
*/
|
|
2173
|
-
get: operations["
|
|
2173
|
+
get: operations["getTerritoryOwnership"];
|
|
2174
2174
|
put?: never;
|
|
2175
2175
|
post?: never;
|
|
2176
2176
|
delete?: never;
|
|
@@ -2190,7 +2190,7 @@ export interface paths {
|
|
|
2190
2190
|
* Get territory wars history for your faction
|
|
2191
2191
|
* @description Requires public access key. <br>
|
|
2192
2192
|
*/
|
|
2193
|
-
get: operations["
|
|
2193
|
+
get: operations["getMyFactionTerritoryWarsHistory"];
|
|
2194
2194
|
put?: never;
|
|
2195
2195
|
post?: never;
|
|
2196
2196
|
delete?: never;
|
|
@@ -2210,7 +2210,7 @@ export interface paths {
|
|
|
2210
2210
|
* Get a faction's territory wars history
|
|
2211
2211
|
* @description Requires public access key. <br>
|
|
2212
2212
|
*/
|
|
2213
|
-
get: operations["
|
|
2213
|
+
get: operations["getFactionTerritoryWarsHistory"];
|
|
2214
2214
|
put?: never;
|
|
2215
2215
|
post?: never;
|
|
2216
2216
|
delete?: never;
|
|
@@ -2230,7 +2230,7 @@ export interface paths {
|
|
|
2230
2230
|
* Get territory war details
|
|
2231
2231
|
* @description Requires public access key. <br>
|
|
2232
2232
|
*/
|
|
2233
|
-
get: operations["
|
|
2233
|
+
get: operations["getTerritoryWarReport"];
|
|
2234
2234
|
put?: never;
|
|
2235
2235
|
post?: never;
|
|
2236
2236
|
delete?: never;
|
|
@@ -2250,7 +2250,7 @@ export interface paths {
|
|
|
2250
2250
|
* Get your faction's upgrades
|
|
2251
2251
|
* @description Requires minimal access key with faction API access permissions. <br>
|
|
2252
2252
|
*/
|
|
2253
|
-
get: operations["
|
|
2253
|
+
get: operations["getMyFactionUpgrades"];
|
|
2254
2254
|
put?: never;
|
|
2255
2255
|
post?: never;
|
|
2256
2256
|
delete?: never;
|
|
@@ -2270,7 +2270,7 @@ export interface paths {
|
|
|
2270
2270
|
* Get faction warfare
|
|
2271
2271
|
* @description Requires public access key. <br>The response depends on the selected category.
|
|
2272
2272
|
*/
|
|
2273
|
-
get: operations["
|
|
2273
|
+
get: operations["getWarfare"];
|
|
2274
2274
|
put?: never;
|
|
2275
2275
|
post?: never;
|
|
2276
2276
|
delete?: never;
|
|
@@ -2290,7 +2290,7 @@ export interface paths {
|
|
|
2290
2290
|
* Get your faction's wars & pacts details
|
|
2291
2291
|
* @description Requires public access key. <br>
|
|
2292
2292
|
*/
|
|
2293
|
-
get: operations["
|
|
2293
|
+
get: operations["getMyFactionWars"];
|
|
2294
2294
|
put?: never;
|
|
2295
2295
|
post?: never;
|
|
2296
2296
|
delete?: never;
|
|
@@ -2310,7 +2310,7 @@ export interface paths {
|
|
|
2310
2310
|
* Get a faction's wars & pacts details
|
|
2311
2311
|
* @description Requires public access key. <br>
|
|
2312
2312
|
*/
|
|
2313
|
-
get: operations["
|
|
2313
|
+
get: operations["getFactionWars"];
|
|
2314
2314
|
put?: never;
|
|
2315
2315
|
post?: never;
|
|
2316
2316
|
delete?: never;
|
|
@@ -2327,7 +2327,7 @@ export interface paths {
|
|
|
2327
2327
|
cookie?: never;
|
|
2328
2328
|
};
|
|
2329
2329
|
/** @description Requires public access key. <br> */
|
|
2330
|
-
get: operations["
|
|
2330
|
+
get: operations["getFactionLookup"];
|
|
2331
2331
|
put?: never;
|
|
2332
2332
|
post?: never;
|
|
2333
2333
|
delete?: never;
|
|
@@ -2347,7 +2347,7 @@ export interface paths {
|
|
|
2347
2347
|
* Get current server time
|
|
2348
2348
|
* @description Requires public access key. <br>
|
|
2349
2349
|
*/
|
|
2350
|
-
get: operations["
|
|
2350
|
+
get: operations["getFactionTimestamp"];
|
|
2351
2351
|
put?: never;
|
|
2352
2352
|
post?: never;
|
|
2353
2353
|
delete?: never;
|
|
@@ -2367,7 +2367,7 @@ export interface paths {
|
|
|
2367
2367
|
* Get any Faction selection
|
|
2368
2368
|
* @description Key access level depends on the required selections. <br> Choose one or more selections (comma separated).
|
|
2369
2369
|
*/
|
|
2370
|
-
get: operations["
|
|
2370
|
+
get: operations["getFactionGeneric"];
|
|
2371
2371
|
put?: never;
|
|
2372
2372
|
post?: never;
|
|
2373
2373
|
delete?: never;
|
|
@@ -2387,7 +2387,7 @@ export interface paths {
|
|
|
2387
2387
|
* Get publicly available forum categories
|
|
2388
2388
|
* @description Requires public access key. <br>
|
|
2389
2389
|
*/
|
|
2390
|
-
get: operations["
|
|
2390
|
+
get: operations["getForumCategories"];
|
|
2391
2391
|
put?: never;
|
|
2392
2392
|
post?: never;
|
|
2393
2393
|
delete?: never;
|
|
@@ -2407,7 +2407,7 @@ export interface paths {
|
|
|
2407
2407
|
* Get specific forum thread posts
|
|
2408
2408
|
* @description Requires public access key. <br>Returns 20 posts per page for a specific thread. <br> By default, it uses 'offset', but it's possible to filter posts with 'from' & 'to' parameters.
|
|
2409
2409
|
*/
|
|
2410
|
-
get: operations["
|
|
2410
|
+
get: operations["getForumThreadPosts"];
|
|
2411
2411
|
put?: never;
|
|
2412
2412
|
post?: never;
|
|
2413
2413
|
delete?: never;
|
|
@@ -2427,7 +2427,7 @@ export interface paths {
|
|
|
2427
2427
|
* Get specific thread details
|
|
2428
2428
|
* @description Requires public access key. <br>Contains details of a thread including topic content and poll (if any).
|
|
2429
2429
|
*/
|
|
2430
|
-
get: operations["
|
|
2430
|
+
get: operations["getForumThread"];
|
|
2431
2431
|
put?: never;
|
|
2432
2432
|
post?: never;
|
|
2433
2433
|
delete?: never;
|
|
@@ -2447,7 +2447,7 @@ export interface paths {
|
|
|
2447
2447
|
* Get threads across all forum categories
|
|
2448
2448
|
* @description Requires public access key. <br>
|
|
2449
2449
|
*/
|
|
2450
|
-
get: operations["
|
|
2450
|
+
get: operations["getForumAllThreads"];
|
|
2451
2451
|
put?: never;
|
|
2452
2452
|
post?: never;
|
|
2453
2453
|
delete?: never;
|
|
@@ -2467,7 +2467,7 @@ export interface paths {
|
|
|
2467
2467
|
* Get threads for specific public forum category or categories
|
|
2468
2468
|
* @description Requires public access key. <br>
|
|
2469
2469
|
*/
|
|
2470
|
-
get: operations["
|
|
2470
|
+
get: operations["getForumThreads"];
|
|
2471
2471
|
put?: never;
|
|
2472
2472
|
post?: never;
|
|
2473
2473
|
delete?: never;
|
|
@@ -2487,7 +2487,7 @@ export interface paths {
|
|
|
2487
2487
|
* Get all available forum selections
|
|
2488
2488
|
* @description Requires public access key. <br>
|
|
2489
2489
|
*/
|
|
2490
|
-
get: operations["
|
|
2490
|
+
get: operations["getForumLookup"];
|
|
2491
2491
|
put?: never;
|
|
2492
2492
|
post?: never;
|
|
2493
2493
|
delete?: never;
|
|
@@ -2507,7 +2507,7 @@ export interface paths {
|
|
|
2507
2507
|
* Get current server time
|
|
2508
2508
|
* @description Requires public access key. <br>
|
|
2509
2509
|
*/
|
|
2510
|
-
get: operations["
|
|
2510
|
+
get: operations["getForumTimestamp"];
|
|
2511
2511
|
put?: never;
|
|
2512
2512
|
post?: never;
|
|
2513
2513
|
delete?: never;
|
|
@@ -2527,7 +2527,7 @@ export interface paths {
|
|
|
2527
2527
|
* Get any Forum selection
|
|
2528
2528
|
* @description Requires public access key. <br>Choose one or more selections (comma separated).
|
|
2529
2529
|
*/
|
|
2530
|
-
get: operations["
|
|
2530
|
+
get: operations["getForumGeneric"];
|
|
2531
2531
|
put?: never;
|
|
2532
2532
|
post?: never;
|
|
2533
2533
|
delete?: never;
|
|
@@ -2548,7 +2548,7 @@ export interface paths {
|
|
|
2548
2548
|
* @description Available for any key. <br>
|
|
2549
2549
|
* * This selection contains up to last 250 request logs.
|
|
2550
2550
|
*/
|
|
2551
|
-
get: operations["
|
|
2551
|
+
get: operations["getKeyLog"];
|
|
2552
2552
|
put?: never;
|
|
2553
2553
|
post?: never;
|
|
2554
2554
|
delete?: never;
|
|
@@ -2568,7 +2568,7 @@ export interface paths {
|
|
|
2568
2568
|
* Get current key info
|
|
2569
2569
|
* @description Available for any key. <br>
|
|
2570
2570
|
*/
|
|
2571
|
-
get: operations["
|
|
2571
|
+
get: operations["getKeyInfo"];
|
|
2572
2572
|
put?: never;
|
|
2573
2573
|
post?: never;
|
|
2574
2574
|
delete?: never;
|
|
@@ -2585,7 +2585,7 @@ export interface paths {
|
|
|
2585
2585
|
cookie?: never;
|
|
2586
2586
|
};
|
|
2587
2587
|
/** Get any Key selection */
|
|
2588
|
-
get: operations["
|
|
2588
|
+
get: operations["getKeyGeneric"];
|
|
2589
2589
|
put?: never;
|
|
2590
2590
|
post?: never;
|
|
2591
2591
|
delete?: never;
|
|
@@ -2605,7 +2605,7 @@ export interface paths {
|
|
|
2605
2605
|
* Get specific item auction house listings
|
|
2606
2606
|
* @description Requires public access key. <br>
|
|
2607
2607
|
*/
|
|
2608
|
-
get: operations["
|
|
2608
|
+
get: operations["getMarketAuctionHouseListing"];
|
|
2609
2609
|
put?: never;
|
|
2610
2610
|
post?: never;
|
|
2611
2611
|
delete?: never;
|
|
@@ -2625,7 +2625,7 @@ export interface paths {
|
|
|
2625
2625
|
* Get specific item auction house listings
|
|
2626
2626
|
* @description Requires public access key. <br>
|
|
2627
2627
|
*/
|
|
2628
|
-
get: operations["
|
|
2628
|
+
get: operations["getMarketAuctionHouseItem"];
|
|
2629
2629
|
put?: never;
|
|
2630
2630
|
post?: never;
|
|
2631
2631
|
delete?: never;
|
|
@@ -2645,7 +2645,7 @@ export interface paths {
|
|
|
2645
2645
|
* Get auction house listings
|
|
2646
2646
|
* @description Requires public access key. <br>
|
|
2647
2647
|
*/
|
|
2648
|
-
get: operations["
|
|
2648
|
+
get: operations["getMarketAuctionHouse"];
|
|
2649
2649
|
put?: never;
|
|
2650
2650
|
post?: never;
|
|
2651
2651
|
delete?: never;
|
|
@@ -2665,7 +2665,7 @@ export interface paths {
|
|
|
2665
2665
|
* Get bazaar directory
|
|
2666
2666
|
* @description Requires public access key. <br> The default response is of type 'BazaarWeekly', but if a category is chosen, the response will be of type 'BazaarSpecialized'.
|
|
2667
2667
|
*/
|
|
2668
|
-
get: operations["
|
|
2668
|
+
get: operations["getMarketBazaar"];
|
|
2669
2669
|
put?: never;
|
|
2670
2670
|
post?: never;
|
|
2671
2671
|
delete?: never;
|
|
@@ -2685,7 +2685,7 @@ export interface paths {
|
|
|
2685
2685
|
* Get item specialized bazaar directory
|
|
2686
2686
|
* @description Requires public access key. <br>
|
|
2687
2687
|
*/
|
|
2688
|
-
get: operations["
|
|
2688
|
+
get: operations["getMarketBazaarItem"];
|
|
2689
2689
|
put?: never;
|
|
2690
2690
|
post?: never;
|
|
2691
2691
|
delete?: never;
|
|
@@ -2705,7 +2705,7 @@ export interface paths {
|
|
|
2705
2705
|
* Get item market listings
|
|
2706
2706
|
* @description Requires public access key. <br>
|
|
2707
2707
|
*/
|
|
2708
|
-
get: operations["
|
|
2708
|
+
get: operations["getMarketItemMarketItem"];
|
|
2709
2709
|
put?: never;
|
|
2710
2710
|
post?: never;
|
|
2711
2711
|
delete?: never;
|
|
@@ -2725,7 +2725,7 @@ export interface paths {
|
|
|
2725
2725
|
* Get properties market listings
|
|
2726
2726
|
* @description Requires public access key. <br>
|
|
2727
2727
|
*/
|
|
2728
|
-
get: operations["
|
|
2728
|
+
get: operations["getMarketProperties"];
|
|
2729
2729
|
put?: never;
|
|
2730
2730
|
post?: never;
|
|
2731
2731
|
delete?: never;
|
|
@@ -2745,7 +2745,7 @@ export interface paths {
|
|
|
2745
2745
|
* Get properties rental listings
|
|
2746
2746
|
* @description Requires public access key. <br>
|
|
2747
2747
|
*/
|
|
2748
|
-
get: operations["
|
|
2748
|
+
get: operations["getMarketPropertiesRental"];
|
|
2749
2749
|
put?: never;
|
|
2750
2750
|
post?: never;
|
|
2751
2751
|
delete?: never;
|
|
@@ -2765,7 +2765,7 @@ export interface paths {
|
|
|
2765
2765
|
* Get all available market selections
|
|
2766
2766
|
* @description Requires public access key. <br>
|
|
2767
2767
|
*/
|
|
2768
|
-
get: operations["
|
|
2768
|
+
get: operations["getMarketLookup"];
|
|
2769
2769
|
put?: never;
|
|
2770
2770
|
post?: never;
|
|
2771
2771
|
delete?: never;
|
|
@@ -2785,7 +2785,7 @@ export interface paths {
|
|
|
2785
2785
|
* Get current server time
|
|
2786
2786
|
* @description Requires public access key. <br>
|
|
2787
2787
|
*/
|
|
2788
|
-
get: operations["
|
|
2788
|
+
get: operations["getMarketTimestamp"];
|
|
2789
2789
|
put?: never;
|
|
2790
2790
|
post?: never;
|
|
2791
2791
|
delete?: never;
|
|
@@ -2805,7 +2805,7 @@ export interface paths {
|
|
|
2805
2805
|
* Get any Market selection
|
|
2806
2806
|
* @description Requires public access key. <br>Choose one or more selections (comma separated).
|
|
2807
2807
|
*/
|
|
2808
|
-
get: operations["
|
|
2808
|
+
get: operations["getMarketGeneric"];
|
|
2809
2809
|
put?: never;
|
|
2810
2810
|
post?: never;
|
|
2811
2811
|
delete?: never;
|
|
@@ -2825,7 +2825,7 @@ export interface paths {
|
|
|
2825
2825
|
* Get cars and their racing stats
|
|
2826
2826
|
* @description Requires public access key. <br>Returns the stat details about racing cars.
|
|
2827
2827
|
*/
|
|
2828
|
-
get: operations["
|
|
2828
|
+
get: operations["getRacingCars"];
|
|
2829
2829
|
put?: never;
|
|
2830
2830
|
post?: never;
|
|
2831
2831
|
delete?: never;
|
|
@@ -2845,7 +2845,7 @@ export interface paths {
|
|
|
2845
2845
|
* Get all possible car upgrades
|
|
2846
2846
|
* @description Requires public access key. <br>Returns the details about all possible car upgrades.
|
|
2847
2847
|
*/
|
|
2848
|
-
get: operations["
|
|
2848
|
+
get: operations["getRacingCarUpgrades"];
|
|
2849
2849
|
put?: never;
|
|
2850
2850
|
post?: never;
|
|
2851
2851
|
delete?: never;
|
|
@@ -2865,7 +2865,7 @@ export interface paths {
|
|
|
2865
2865
|
* Get races
|
|
2866
2866
|
* @description Requires public access key. <br>Returns a list of races, ordered by race start timestamp.
|
|
2867
2867
|
*/
|
|
2868
|
-
get: operations["
|
|
2868
|
+
get: operations["getRacingRaces"];
|
|
2869
2869
|
put?: never;
|
|
2870
2870
|
post?: never;
|
|
2871
2871
|
delete?: never;
|
|
@@ -2885,7 +2885,7 @@ export interface paths {
|
|
|
2885
2885
|
* Get specific race details
|
|
2886
2886
|
* @description Requires public access key. <br>Returns the details of a race.
|
|
2887
2887
|
*/
|
|
2888
|
-
get: operations["
|
|
2888
|
+
get: operations["getRacingRaceDetails"];
|
|
2889
2889
|
put?: never;
|
|
2890
2890
|
post?: never;
|
|
2891
2891
|
delete?: never;
|
|
@@ -2905,7 +2905,7 @@ export interface paths {
|
|
|
2905
2905
|
* Get track records
|
|
2906
2906
|
* @description Requires public access key. <br>Returns a list of 5 best lap records for the chosen track and car class.
|
|
2907
2907
|
*/
|
|
2908
|
-
get: operations["
|
|
2908
|
+
get: operations["getRacingTrackRecords"];
|
|
2909
2909
|
put?: never;
|
|
2910
2910
|
post?: never;
|
|
2911
2911
|
delete?: never;
|
|
@@ -2925,7 +2925,7 @@ export interface paths {
|
|
|
2925
2925
|
* Get race tracks and descriptions
|
|
2926
2926
|
* @description Requires public access key. <br>Returns the details about racing tracks.
|
|
2927
2927
|
*/
|
|
2928
|
-
get: operations["
|
|
2928
|
+
get: operations["getRacingTracks"];
|
|
2929
2929
|
put?: never;
|
|
2930
2930
|
post?: never;
|
|
2931
2931
|
delete?: never;
|
|
@@ -2945,7 +2945,7 @@ export interface paths {
|
|
|
2945
2945
|
* Get all available racing selections
|
|
2946
2946
|
* @description Requires public access key. <br>
|
|
2947
2947
|
*/
|
|
2948
|
-
get: operations["
|
|
2948
|
+
get: operations["getRacingLookup"];
|
|
2949
2949
|
put?: never;
|
|
2950
2950
|
post?: never;
|
|
2951
2951
|
delete?: never;
|
|
@@ -2965,7 +2965,7 @@ export interface paths {
|
|
|
2965
2965
|
* Get current server time
|
|
2966
2966
|
* @description Requires public access key. <br>
|
|
2967
2967
|
*/
|
|
2968
|
-
get: operations["
|
|
2968
|
+
get: operations["getRacingTimestamp"];
|
|
2969
2969
|
put?: never;
|
|
2970
2970
|
post?: never;
|
|
2971
2971
|
delete?: never;
|
|
@@ -2985,7 +2985,7 @@ export interface paths {
|
|
|
2985
2985
|
* Get any Racing selection
|
|
2986
2986
|
* @description Requires public access key. <br>Choose one or more selections (comma separated).
|
|
2987
2987
|
*/
|
|
2988
|
-
get: operations["
|
|
2988
|
+
get: operations["getRacingGeneric"];
|
|
2989
2989
|
put?: never;
|
|
2990
2990
|
post?: never;
|
|
2991
2991
|
delete?: never;
|
|
@@ -3005,7 +3005,7 @@ export interface paths {
|
|
|
3005
3005
|
* Get a specific property
|
|
3006
3006
|
* @description Requires public access key. <br>
|
|
3007
3007
|
*/
|
|
3008
|
-
get: operations["
|
|
3008
|
+
get: operations["getProperty"];
|
|
3009
3009
|
put?: never;
|
|
3010
3010
|
post?: never;
|
|
3011
3011
|
delete?: never;
|
|
@@ -3025,7 +3025,7 @@ export interface paths {
|
|
|
3025
3025
|
* Get all available property selections
|
|
3026
3026
|
* @description Requires public access key. <br>
|
|
3027
3027
|
*/
|
|
3028
|
-
get: operations["
|
|
3028
|
+
get: operations["getPropertyLookup"];
|
|
3029
3029
|
put?: never;
|
|
3030
3030
|
post?: never;
|
|
3031
3031
|
delete?: never;
|
|
@@ -3045,7 +3045,7 @@ export interface paths {
|
|
|
3045
3045
|
* Get current server time
|
|
3046
3046
|
* @description Requires public access key. <br>
|
|
3047
3047
|
*/
|
|
3048
|
-
get: operations["
|
|
3048
|
+
get: operations["getPropertyTimestamp"];
|
|
3049
3049
|
put?: never;
|
|
3050
3050
|
post?: never;
|
|
3051
3051
|
delete?: never;
|
|
@@ -3065,7 +3065,7 @@ export interface paths {
|
|
|
3065
3065
|
* Get any property selection
|
|
3066
3066
|
* @description Requires public access key. <br>Choose one or more selections (comma separated).
|
|
3067
3067
|
*/
|
|
3068
|
-
get: operations["
|
|
3068
|
+
get: operations["getPropertyGeneric"];
|
|
3069
3069
|
put?: never;
|
|
3070
3070
|
post?: never;
|
|
3071
3071
|
delete?: never;
|
|
@@ -3085,7 +3085,7 @@ export interface paths {
|
|
|
3085
3085
|
* Get attack log details
|
|
3086
3086
|
* @description Requires public key. <br>
|
|
3087
3087
|
*/
|
|
3088
|
-
get: operations["
|
|
3088
|
+
get: operations["getTornAttackLog"];
|
|
3089
3089
|
put?: never;
|
|
3090
3090
|
post?: never;
|
|
3091
3091
|
delete?: never;
|
|
@@ -3105,7 +3105,7 @@ export interface paths {
|
|
|
3105
3105
|
* Get bounties
|
|
3106
3106
|
* @description Requires public key. <br>
|
|
3107
3107
|
*/
|
|
3108
|
-
get: operations["
|
|
3108
|
+
get: operations["getTornBounties"];
|
|
3109
3109
|
put?: never;
|
|
3110
3110
|
post?: never;
|
|
3111
3111
|
delete?: never;
|
|
@@ -3125,7 +3125,7 @@ export interface paths {
|
|
|
3125
3125
|
* Get calendar information
|
|
3126
3126
|
* @description Requires public access key. <br> Get the details about competitions & events in the running year.
|
|
3127
3127
|
*/
|
|
3128
|
-
get: operations["
|
|
3128
|
+
get: operations["getTornCalendar"];
|
|
3129
3129
|
put?: never;
|
|
3130
3130
|
post?: never;
|
|
3131
3131
|
delete?: never;
|
|
@@ -3145,7 +3145,7 @@ export interface paths {
|
|
|
3145
3145
|
* Get crimes information
|
|
3146
3146
|
* @description Requires public access key. <br> Return the details about released crimes.
|
|
3147
3147
|
*/
|
|
3148
|
-
get: operations["
|
|
3148
|
+
get: operations["getTornCrimes"];
|
|
3149
3149
|
put?: never;
|
|
3150
3150
|
post?: never;
|
|
3151
3151
|
delete?: never;
|
|
@@ -3165,7 +3165,7 @@ export interface paths {
|
|
|
3165
3165
|
* Get education information
|
|
3166
3166
|
* @description Requires public access key.<br>
|
|
3167
3167
|
*/
|
|
3168
|
-
get: operations["
|
|
3168
|
+
get: operations["getTornEducation"];
|
|
3169
3169
|
put?: never;
|
|
3170
3170
|
post?: never;
|
|
3171
3171
|
delete?: never;
|
|
@@ -3185,7 +3185,7 @@ export interface paths {
|
|
|
3185
3185
|
* Get current standings for all elimination teams
|
|
3186
3186
|
* @description Requires public key.
|
|
3187
3187
|
*/
|
|
3188
|
-
get: operations["
|
|
3188
|
+
get: operations["getTornElimination"];
|
|
3189
3189
|
put?: never;
|
|
3190
3190
|
post?: never;
|
|
3191
3191
|
delete?: never;
|
|
@@ -3205,7 +3205,7 @@ export interface paths {
|
|
|
3205
3205
|
* Get players in a specific elimination team
|
|
3206
3206
|
* @description Requires public key.
|
|
3207
3207
|
*/
|
|
3208
|
-
get: operations["
|
|
3208
|
+
get: operations["getTornEliminationTeam"];
|
|
3209
3209
|
put?: never;
|
|
3210
3210
|
post?: never;
|
|
3211
3211
|
delete?: never;
|
|
@@ -3225,7 +3225,7 @@ export interface paths {
|
|
|
3225
3225
|
* Get faction hall of fame positions for a specific category
|
|
3226
3226
|
* @description Requires public access key. <br>
|
|
3227
3227
|
*/
|
|
3228
|
-
get: operations["
|
|
3228
|
+
get: operations["getTornFactionHoF"];
|
|
3229
3229
|
put?: never;
|
|
3230
3230
|
post?: never;
|
|
3231
3231
|
delete?: never;
|
|
@@ -3245,7 +3245,7 @@ export interface paths {
|
|
|
3245
3245
|
* Get full faction tree
|
|
3246
3246
|
* @description Requires public access key. <br>
|
|
3247
3247
|
*/
|
|
3248
|
-
get: operations["
|
|
3248
|
+
get: operations["getTornFactionTree"];
|
|
3249
3249
|
put?: never;
|
|
3250
3250
|
post?: never;
|
|
3251
3251
|
delete?: never;
|
|
@@ -3265,7 +3265,7 @@ export interface paths {
|
|
|
3265
3265
|
* Get all honors
|
|
3266
3266
|
* @description Requires public access key. <br>
|
|
3267
3267
|
*/
|
|
3268
|
-
get: operations["
|
|
3268
|
+
get: operations["getTornHonors"];
|
|
3269
3269
|
put?: never;
|
|
3270
3270
|
post?: never;
|
|
3271
3271
|
delete?: never;
|
|
@@ -3285,7 +3285,7 @@ export interface paths {
|
|
|
3285
3285
|
* Get specific honors
|
|
3286
3286
|
* @description Requires public access key. <br>
|
|
3287
3287
|
*/
|
|
3288
|
-
get: operations["
|
|
3288
|
+
get: operations["getTornHonorsSpecific"];
|
|
3289
3289
|
put?: never;
|
|
3290
3290
|
post?: never;
|
|
3291
3291
|
delete?: never;
|
|
@@ -3305,7 +3305,7 @@ export interface paths {
|
|
|
3305
3305
|
* Get player hall of fame positions for a specific category
|
|
3306
3306
|
* @description Requires public key.
|
|
3307
3307
|
*/
|
|
3308
|
-
get: operations["
|
|
3308
|
+
get: operations["getTornHoF"];
|
|
3309
3309
|
put?: never;
|
|
3310
3310
|
post?: never;
|
|
3311
3311
|
delete?: never;
|
|
@@ -3325,7 +3325,7 @@ export interface paths {
|
|
|
3325
3325
|
* Get information about ammo
|
|
3326
3326
|
* @description Requires public key.
|
|
3327
3327
|
*/
|
|
3328
|
-
get: operations["
|
|
3328
|
+
get: operations["getTornItemAmmo"];
|
|
3329
3329
|
put?: never;
|
|
3330
3330
|
post?: never;
|
|
3331
3331
|
delete?: never;
|
|
@@ -3345,7 +3345,7 @@ export interface paths {
|
|
|
3345
3345
|
* Get information about a specific item
|
|
3346
3346
|
* @description Requires public key.
|
|
3347
3347
|
*/
|
|
3348
|
-
get: operations["
|
|
3348
|
+
get: operations["getTornItemDetails"];
|
|
3349
3349
|
put?: never;
|
|
3350
3350
|
post?: never;
|
|
3351
3351
|
delete?: never;
|
|
@@ -3365,7 +3365,7 @@ export interface paths {
|
|
|
3365
3365
|
* Get information about weapon upgrades
|
|
3366
3366
|
* @description Requires public key.
|
|
3367
3367
|
*/
|
|
3368
|
-
get: operations["
|
|
3368
|
+
get: operations["getTornItemMods"];
|
|
3369
3369
|
put?: never;
|
|
3370
3370
|
post?: never;
|
|
3371
3371
|
delete?: never;
|
|
@@ -3385,7 +3385,7 @@ export interface paths {
|
|
|
3385
3385
|
* Get information about items
|
|
3386
3386
|
* @description Requires public key.<br>Default category is 'All'.<br>Details are not populated when requesting the category 'All'.
|
|
3387
3387
|
*/
|
|
3388
|
-
get: operations["
|
|
3388
|
+
get: operations["getTornItems"];
|
|
3389
3389
|
put?: never;
|
|
3390
3390
|
post?: never;
|
|
3391
3391
|
delete?: never;
|
|
@@ -3405,7 +3405,7 @@ export interface paths {
|
|
|
3405
3405
|
* Get information about items
|
|
3406
3406
|
* @description Requires public key.<br>Details are always populated when available.
|
|
3407
3407
|
*/
|
|
3408
|
-
get: operations["
|
|
3408
|
+
get: operations["getTornItemsSpecific"];
|
|
3409
3409
|
put?: never;
|
|
3410
3410
|
post?: never;
|
|
3411
3411
|
delete?: never;
|
|
@@ -3425,7 +3425,7 @@ export interface paths {
|
|
|
3425
3425
|
* Get available log categories
|
|
3426
3426
|
* @description Requires public key. <br>
|
|
3427
3427
|
*/
|
|
3428
|
-
get: operations["
|
|
3428
|
+
get: operations["getTornLogCategories"];
|
|
3429
3429
|
put?: never;
|
|
3430
3430
|
post?: never;
|
|
3431
3431
|
delete?: never;
|
|
@@ -3445,7 +3445,7 @@ export interface paths {
|
|
|
3445
3445
|
* Get all available log ids
|
|
3446
3446
|
* @description Requires public key. <br>
|
|
3447
3447
|
*/
|
|
3448
|
-
get: operations["
|
|
3448
|
+
get: operations["getTornLogTypes"];
|
|
3449
3449
|
put?: never;
|
|
3450
3450
|
post?: never;
|
|
3451
3451
|
delete?: never;
|
|
@@ -3465,7 +3465,7 @@ export interface paths {
|
|
|
3465
3465
|
* Get available log ids for a specific log category
|
|
3466
3466
|
* @description Requires public key. <br>
|
|
3467
3467
|
*/
|
|
3468
|
-
get: operations["
|
|
3468
|
+
get: operations["getTornLogTypesSpecific"];
|
|
3469
3469
|
put?: never;
|
|
3470
3470
|
post?: never;
|
|
3471
3471
|
delete?: never;
|
|
@@ -3485,7 +3485,7 @@ export interface paths {
|
|
|
3485
3485
|
* Get all medals
|
|
3486
3486
|
* @description Requires public access key. <br>
|
|
3487
3487
|
*/
|
|
3488
|
-
get: operations["
|
|
3488
|
+
get: operations["getTornMedals"];
|
|
3489
3489
|
put?: never;
|
|
3490
3490
|
post?: never;
|
|
3491
3491
|
delete?: never;
|
|
@@ -3505,7 +3505,7 @@ export interface paths {
|
|
|
3505
3505
|
* Get specific medals
|
|
3506
3506
|
* @description Requires public access key. <br>
|
|
3507
3507
|
*/
|
|
3508
|
-
get: operations["
|
|
3508
|
+
get: operations["getTornMedalsSpecific"];
|
|
3509
3509
|
put?: never;
|
|
3510
3510
|
post?: never;
|
|
3511
3511
|
delete?: never;
|
|
@@ -3525,7 +3525,7 @@ export interface paths {
|
|
|
3525
3525
|
* Get all merits
|
|
3526
3526
|
* @description Requires public access key. <br>
|
|
3527
3527
|
*/
|
|
3528
|
-
get: operations["
|
|
3528
|
+
get: operations["getTornMerits"];
|
|
3529
3529
|
put?: never;
|
|
3530
3530
|
post?: never;
|
|
3531
3531
|
delete?: never;
|
|
@@ -3545,7 +3545,7 @@ export interface paths {
|
|
|
3545
3545
|
* Get organized crimes information
|
|
3546
3546
|
* @description Requires public access key. <br> Return the details about released faction organized crimes.
|
|
3547
3547
|
*/
|
|
3548
|
-
get: operations["
|
|
3548
|
+
get: operations["getTornOrganizedCrimes"];
|
|
3549
3549
|
put?: never;
|
|
3550
3550
|
post?: never;
|
|
3551
3551
|
delete?: never;
|
|
@@ -3565,7 +3565,7 @@ export interface paths {
|
|
|
3565
3565
|
* Get properties details
|
|
3566
3566
|
* @description Requires public access key. <br>
|
|
3567
3567
|
*/
|
|
3568
|
-
get: operations["
|
|
3568
|
+
get: operations["getTornProperties"];
|
|
3569
3569
|
put?: never;
|
|
3570
3570
|
post?: never;
|
|
3571
3571
|
delete?: never;
|
|
@@ -3585,7 +3585,7 @@ export interface paths {
|
|
|
3585
3585
|
* Get Subcrimes information
|
|
3586
3586
|
* @description Requires public access key. <br> Return the details about possible actions for a specific crime.
|
|
3587
3587
|
*/
|
|
3588
|
-
get: operations["
|
|
3588
|
+
get: operations["getTornSubcrimes"];
|
|
3589
3589
|
put?: never;
|
|
3590
3590
|
post?: never;
|
|
3591
3591
|
delete?: never;
|
|
@@ -3605,7 +3605,7 @@ export interface paths {
|
|
|
3605
3605
|
* Get territory details
|
|
3606
3606
|
* @description Requires public access key. <br>
|
|
3607
3607
|
*/
|
|
3608
|
-
get: operations["
|
|
3608
|
+
get: operations["getTornTerritory"];
|
|
3609
3609
|
put?: never;
|
|
3610
3610
|
post?: never;
|
|
3611
3611
|
delete?: never;
|
|
@@ -3625,7 +3625,7 @@ export interface paths {
|
|
|
3625
3625
|
* Get all available torn selections
|
|
3626
3626
|
* @description Requires public key. <br>
|
|
3627
3627
|
*/
|
|
3628
|
-
get: operations["
|
|
3628
|
+
get: operations["getTornLookup"];
|
|
3629
3629
|
put?: never;
|
|
3630
3630
|
post?: never;
|
|
3631
3631
|
delete?: never;
|
|
@@ -3645,7 +3645,7 @@ export interface paths {
|
|
|
3645
3645
|
* Get current server time
|
|
3646
3646
|
* @description Requires public key. <br>
|
|
3647
3647
|
*/
|
|
3648
|
-
get: operations["
|
|
3648
|
+
get: operations["getTornTimestamp"];
|
|
3649
3649
|
put?: never;
|
|
3650
3650
|
post?: never;
|
|
3651
3651
|
delete?: never;
|
|
@@ -3665,7 +3665,7 @@ export interface paths {
|
|
|
3665
3665
|
* Get any Torn selection
|
|
3666
3666
|
* @description Requires public access key. <br> Choose one or more selections (comma separated).
|
|
3667
3667
|
*/
|
|
3668
|
-
get: operations["
|
|
3668
|
+
get: operations["getTornGeneric"];
|
|
3669
3669
|
put?: never;
|
|
3670
3670
|
post?: never;
|
|
3671
3671
|
delete?: never;
|
|
@@ -4204,6 +4204,247 @@ export interface components {
|
|
|
4204
4204
|
_metadata: components["schemas"]["RequestMetadataWithLinks"];
|
|
4205
4205
|
};
|
|
4206
4206
|
SelectionCategoryEnum: components["schemas"]["ReportTypeEnum"] | components["schemas"]["UserListEnum"] | components["schemas"]["PersonalStatsCategoryEnum"] | components["schemas"]["RacingRaceTypeEnum"];
|
|
4207
|
+
ErrorUnknown: {
|
|
4208
|
+
/**
|
|
4209
|
+
* Format: int32
|
|
4210
|
+
* @enum {integer}
|
|
4211
|
+
*/
|
|
4212
|
+
code: 0;
|
|
4213
|
+
error: string;
|
|
4214
|
+
};
|
|
4215
|
+
ErrorKeyEmpty: {
|
|
4216
|
+
/**
|
|
4217
|
+
* Format: int32
|
|
4218
|
+
* @enum {integer}
|
|
4219
|
+
*/
|
|
4220
|
+
code: 1;
|
|
4221
|
+
error: string;
|
|
4222
|
+
};
|
|
4223
|
+
ErrorIncorrectKey: {
|
|
4224
|
+
/**
|
|
4225
|
+
* Format: int32
|
|
4226
|
+
* @enum {integer}
|
|
4227
|
+
*/
|
|
4228
|
+
code: 2;
|
|
4229
|
+
error: string;
|
|
4230
|
+
};
|
|
4231
|
+
ErrorWrongType: {
|
|
4232
|
+
/**
|
|
4233
|
+
* Format: int32
|
|
4234
|
+
* @enum {integer}
|
|
4235
|
+
*/
|
|
4236
|
+
code: 3;
|
|
4237
|
+
error: string;
|
|
4238
|
+
};
|
|
4239
|
+
ErrorWrongFields: {
|
|
4240
|
+
/**
|
|
4241
|
+
* Format: int32
|
|
4242
|
+
* @enum {integer}
|
|
4243
|
+
*/
|
|
4244
|
+
code: 4;
|
|
4245
|
+
error: string;
|
|
4246
|
+
};
|
|
4247
|
+
ErrorTooManyRequests: {
|
|
4248
|
+
/**
|
|
4249
|
+
* Format: int32
|
|
4250
|
+
* @enum {integer}
|
|
4251
|
+
*/
|
|
4252
|
+
code: 5;
|
|
4253
|
+
error: string;
|
|
4254
|
+
};
|
|
4255
|
+
ErrorIncorrectId: {
|
|
4256
|
+
/**
|
|
4257
|
+
* Format: int32
|
|
4258
|
+
* @enum {integer}
|
|
4259
|
+
*/
|
|
4260
|
+
code: 6;
|
|
4261
|
+
error: string;
|
|
4262
|
+
};
|
|
4263
|
+
ErrorIncorrectIdEntityRelation: {
|
|
4264
|
+
/**
|
|
4265
|
+
* Format: int32
|
|
4266
|
+
* @enum {integer}
|
|
4267
|
+
*/
|
|
4268
|
+
code: 7;
|
|
4269
|
+
error: string;
|
|
4270
|
+
};
|
|
4271
|
+
ErrorIpBlocked: {
|
|
4272
|
+
/**
|
|
4273
|
+
* Format: int32
|
|
4274
|
+
* @enum {integer}
|
|
4275
|
+
*/
|
|
4276
|
+
code: 8;
|
|
4277
|
+
error: string;
|
|
4278
|
+
};
|
|
4279
|
+
ErrorApiDisabled: {
|
|
4280
|
+
/**
|
|
4281
|
+
* Format: int32
|
|
4282
|
+
* @enum {integer}
|
|
4283
|
+
*/
|
|
4284
|
+
code: 9;
|
|
4285
|
+
error: string;
|
|
4286
|
+
};
|
|
4287
|
+
ErrorKeyOwnerInFederalJail: {
|
|
4288
|
+
/**
|
|
4289
|
+
* Format: int32
|
|
4290
|
+
* @enum {integer}
|
|
4291
|
+
*/
|
|
4292
|
+
code: 10;
|
|
4293
|
+
error: string;
|
|
4294
|
+
};
|
|
4295
|
+
ErrorKeyChangeCooldown: {
|
|
4296
|
+
/**
|
|
4297
|
+
* Format: int32
|
|
4298
|
+
* @enum {integer}
|
|
4299
|
+
*/
|
|
4300
|
+
code: 11;
|
|
4301
|
+
error: string;
|
|
4302
|
+
};
|
|
4303
|
+
ErrorKeyReadError: {
|
|
4304
|
+
/**
|
|
4305
|
+
* Format: int32
|
|
4306
|
+
* @enum {integer}
|
|
4307
|
+
*/
|
|
4308
|
+
code: 12;
|
|
4309
|
+
error: string;
|
|
4310
|
+
};
|
|
4311
|
+
ErrorKeyTemporaryDisabled: {
|
|
4312
|
+
/**
|
|
4313
|
+
* Format: int32
|
|
4314
|
+
* @enum {integer}
|
|
4315
|
+
*/
|
|
4316
|
+
code: 13;
|
|
4317
|
+
error: string;
|
|
4318
|
+
};
|
|
4319
|
+
ErrorDailyReadLimitReached: {
|
|
4320
|
+
/**
|
|
4321
|
+
* Format: int32
|
|
4322
|
+
* @enum {integer}
|
|
4323
|
+
*/
|
|
4324
|
+
code: 14;
|
|
4325
|
+
error: string;
|
|
4326
|
+
};
|
|
4327
|
+
ErrorLogUnavailable: {
|
|
4328
|
+
/**
|
|
4329
|
+
* Format: int32
|
|
4330
|
+
* @enum {integer}
|
|
4331
|
+
*/
|
|
4332
|
+
code: 15;
|
|
4333
|
+
error: string;
|
|
4334
|
+
};
|
|
4335
|
+
ErrorAccessLevelTooLow: {
|
|
4336
|
+
/**
|
|
4337
|
+
* Format: int32
|
|
4338
|
+
* @enum {integer}
|
|
4339
|
+
*/
|
|
4340
|
+
code: 16;
|
|
4341
|
+
error: string;
|
|
4342
|
+
};
|
|
4343
|
+
ErrorBackendError: {
|
|
4344
|
+
/**
|
|
4345
|
+
* Format: int32
|
|
4346
|
+
* @enum {integer}
|
|
4347
|
+
*/
|
|
4348
|
+
code: 17;
|
|
4349
|
+
error: string;
|
|
4350
|
+
};
|
|
4351
|
+
ErrorApiKeyPaused: {
|
|
4352
|
+
/**
|
|
4353
|
+
* Format: int32
|
|
4354
|
+
* @enum {integer}
|
|
4355
|
+
*/
|
|
4356
|
+
code: 18;
|
|
4357
|
+
error: string;
|
|
4358
|
+
};
|
|
4359
|
+
ErrorMustMigrateToCrimesV2: {
|
|
4360
|
+
/**
|
|
4361
|
+
* Format: int32
|
|
4362
|
+
* @enum {integer}
|
|
4363
|
+
*/
|
|
4364
|
+
code: 19;
|
|
4365
|
+
error: string;
|
|
4366
|
+
};
|
|
4367
|
+
ErrorRaceNotFinished: {
|
|
4368
|
+
/**
|
|
4369
|
+
* Format: int32
|
|
4370
|
+
* @enum {integer}
|
|
4371
|
+
*/
|
|
4372
|
+
code: 20;
|
|
4373
|
+
error: string;
|
|
4374
|
+
};
|
|
4375
|
+
ErrorIncorrectCategory: {
|
|
4376
|
+
/**
|
|
4377
|
+
* Format: int32
|
|
4378
|
+
* @enum {integer}
|
|
4379
|
+
*/
|
|
4380
|
+
code: 21;
|
|
4381
|
+
error: string;
|
|
4382
|
+
};
|
|
4383
|
+
ErrorOnlyAvailableInApiV1: {
|
|
4384
|
+
/**
|
|
4385
|
+
* Format: int32
|
|
4386
|
+
* @enum {integer}
|
|
4387
|
+
*/
|
|
4388
|
+
code: 22;
|
|
4389
|
+
error: string;
|
|
4390
|
+
};
|
|
4391
|
+
ErrorOnlyAvailableInApiV2: {
|
|
4392
|
+
/**
|
|
4393
|
+
* Format: int32
|
|
4394
|
+
* @enum {integer}
|
|
4395
|
+
*/
|
|
4396
|
+
code: 23;
|
|
4397
|
+
error: string;
|
|
4398
|
+
};
|
|
4399
|
+
ErrorClosedTemporarily: {
|
|
4400
|
+
/**
|
|
4401
|
+
* Format: int32
|
|
4402
|
+
* @enum {integer}
|
|
4403
|
+
*/
|
|
4404
|
+
code: 24;
|
|
4405
|
+
error: string;
|
|
4406
|
+
};
|
|
4407
|
+
ErrorInvalidStatRequested: {
|
|
4408
|
+
/**
|
|
4409
|
+
* Format: int32
|
|
4410
|
+
* @enum {integer}
|
|
4411
|
+
*/
|
|
4412
|
+
code: 25;
|
|
4413
|
+
error: string;
|
|
4414
|
+
};
|
|
4415
|
+
ErrorOnlyCategoryOrStatsAllowed: {
|
|
4416
|
+
/**
|
|
4417
|
+
* Format: int32
|
|
4418
|
+
* @enum {integer}
|
|
4419
|
+
*/
|
|
4420
|
+
code: 26;
|
|
4421
|
+
error: string;
|
|
4422
|
+
};
|
|
4423
|
+
ErrorMustMigrateToOrganizedCrimesV2: {
|
|
4424
|
+
/**
|
|
4425
|
+
* Format: int32
|
|
4426
|
+
* @enum {integer}
|
|
4427
|
+
*/
|
|
4428
|
+
code: 27;
|
|
4429
|
+
error: string;
|
|
4430
|
+
};
|
|
4431
|
+
ErrorIncorrectLogId: {
|
|
4432
|
+
/**
|
|
4433
|
+
* Format: int32
|
|
4434
|
+
* @enum {integer}
|
|
4435
|
+
*/
|
|
4436
|
+
code: 28;
|
|
4437
|
+
error: string;
|
|
4438
|
+
};
|
|
4439
|
+
ErrorCategorySelectionUnavailableForInteractionLogs: {
|
|
4440
|
+
/**
|
|
4441
|
+
* Format: int32
|
|
4442
|
+
* @enum {integer}
|
|
4443
|
+
*/
|
|
4444
|
+
code: 29;
|
|
4445
|
+
error: string;
|
|
4446
|
+
};
|
|
4447
|
+
ApiError: components["schemas"]["ErrorUnknown"] | components["schemas"]["ErrorKeyEmpty"] | components["schemas"]["ErrorIncorrectKey"] | components["schemas"]["ErrorWrongType"] | components["schemas"]["ErrorWrongFields"] | components["schemas"]["ErrorTooManyRequests"] | components["schemas"]["ErrorIncorrectId"] | components["schemas"]["ErrorIncorrectIdEntityRelation"] | components["schemas"]["ErrorIpBlocked"] | components["schemas"]["ErrorApiDisabled"] | components["schemas"]["ErrorKeyOwnerInFederalJail"] | components["schemas"]["ErrorKeyChangeCooldown"] | components["schemas"]["ErrorKeyReadError"] | components["schemas"]["ErrorKeyTemporaryDisabled"] | components["schemas"]["ErrorDailyReadLimitReached"] | components["schemas"]["ErrorLogUnavailable"] | components["schemas"]["ErrorAccessLevelTooLow"] | components["schemas"]["ErrorBackendError"] | components["schemas"]["ErrorApiKeyPaused"] | components["schemas"]["ErrorMustMigrateToCrimesV2"] | components["schemas"]["ErrorRaceNotFinished"] | components["schemas"]["ErrorIncorrectCategory"] | components["schemas"]["ErrorOnlyAvailableInApiV1"] | components["schemas"]["ErrorOnlyAvailableInApiV2"] | components["schemas"]["ErrorClosedTemporarily"] | components["schemas"]["ErrorInvalidStatRequested"] | components["schemas"]["ErrorOnlyCategoryOrStatsAllowed"] | components["schemas"]["ErrorMustMigrateToOrganizedCrimesV2"] | components["schemas"]["ErrorIncorrectLogId"] | components["schemas"]["ErrorCategorySelectionUnavailableForInteractionLogs"];
|
|
4207
4448
|
UserEquipment: components["schemas"]["TornItemDetails"] & {
|
|
4208
4449
|
/** Format: int32 */
|
|
4209
4450
|
slot: number;
|
|
@@ -8148,7 +8389,7 @@ export interface components {
|
|
|
8148
8389
|
pathItems: never;
|
|
8149
8390
|
}
|
|
8150
8391
|
export interface operations {
|
|
8151
|
-
|
|
8392
|
+
getMyAmmo: {
|
|
8152
8393
|
parameters: {
|
|
8153
8394
|
query?: {
|
|
8154
8395
|
/** @description Timestamp to bypass cache */
|
|
@@ -8175,7 +8416,7 @@ export interface operations {
|
|
|
8175
8416
|
};
|
|
8176
8417
|
};
|
|
8177
8418
|
};
|
|
8178
|
-
|
|
8419
|
+
getMyAttacks: {
|
|
8179
8420
|
parameters: {
|
|
8180
8421
|
query?: {
|
|
8181
8422
|
/**
|
|
@@ -8214,7 +8455,7 @@ export interface operations {
|
|
|
8214
8455
|
};
|
|
8215
8456
|
};
|
|
8216
8457
|
};
|
|
8217
|
-
|
|
8458
|
+
getMyAttacksSimplified: {
|
|
8218
8459
|
parameters: {
|
|
8219
8460
|
query?: {
|
|
8220
8461
|
/**
|
|
@@ -8253,7 +8494,7 @@ export interface operations {
|
|
|
8253
8494
|
};
|
|
8254
8495
|
};
|
|
8255
8496
|
};
|
|
8256
|
-
|
|
8497
|
+
getMyBars: {
|
|
8257
8498
|
parameters: {
|
|
8258
8499
|
query?: {
|
|
8259
8500
|
/** @description Timestamp to bypass cache */
|
|
@@ -8280,7 +8521,7 @@ export interface operations {
|
|
|
8280
8521
|
};
|
|
8281
8522
|
};
|
|
8282
8523
|
};
|
|
8283
|
-
|
|
8524
|
+
getMyBasicInformation: {
|
|
8284
8525
|
parameters: {
|
|
8285
8526
|
query?: {
|
|
8286
8527
|
/** @description Determines if fields include HTML or not ('Hospitalized by <a href=...>user</a>' vs 'Hospitalized by user'). */
|
|
@@ -8309,7 +8550,7 @@ export interface operations {
|
|
|
8309
8550
|
};
|
|
8310
8551
|
};
|
|
8311
8552
|
};
|
|
8312
|
-
|
|
8553
|
+
getUserBasicInformation: {
|
|
8313
8554
|
parameters: {
|
|
8314
8555
|
query?: {
|
|
8315
8556
|
/** @description Determines if fields include HTML or not ('Hospitalized by <a href=...>user</a>' vs 'Hospitalized by user'). */
|
|
@@ -8341,15 +8582,15 @@ export interface operations {
|
|
|
8341
8582
|
};
|
|
8342
8583
|
};
|
|
8343
8584
|
};
|
|
8344
|
-
|
|
8585
|
+
getMyBattlestats: {
|
|
8345
8586
|
parameters: {
|
|
8346
8587
|
query?: {
|
|
8347
8588
|
/** @description Timestamp to bypass cache */
|
|
8348
8589
|
timestamp?: components["parameters"]["ApiTimestamp"];
|
|
8349
8590
|
/** @description Comment for your tool/service/bot/website to be visible in the logs. */
|
|
8350
8591
|
comment?: components["parameters"]["ApiComment"];
|
|
8351
|
-
/** @description API key (
|
|
8352
|
-
key?: components["parameters"]["
|
|
8592
|
+
/** @description API key (Limited).<br>It's not required to use this parameter when passing the API key via the Authorization header. */
|
|
8593
|
+
key?: components["parameters"]["ApiKeyLimited"];
|
|
8353
8594
|
};
|
|
8354
8595
|
header?: never;
|
|
8355
8596
|
path?: never;
|
|
@@ -8368,7 +8609,7 @@ export interface operations {
|
|
|
8368
8609
|
};
|
|
8369
8610
|
};
|
|
8370
8611
|
};
|
|
8371
|
-
|
|
8612
|
+
getMyBounties: {
|
|
8372
8613
|
parameters: {
|
|
8373
8614
|
query?: {
|
|
8374
8615
|
/** @description Timestamp to bypass cache */
|
|
@@ -8395,7 +8636,7 @@ export interface operations {
|
|
|
8395
8636
|
};
|
|
8396
8637
|
};
|
|
8397
8638
|
};
|
|
8398
|
-
|
|
8639
|
+
getUserBounties: {
|
|
8399
8640
|
parameters: {
|
|
8400
8641
|
query?: {
|
|
8401
8642
|
/** @description Timestamp to bypass cache */
|
|
@@ -8425,7 +8666,7 @@ export interface operations {
|
|
|
8425
8666
|
};
|
|
8426
8667
|
};
|
|
8427
8668
|
};
|
|
8428
|
-
|
|
8669
|
+
getMyCalendarTime: {
|
|
8429
8670
|
parameters: {
|
|
8430
8671
|
query?: {
|
|
8431
8672
|
/** @description Timestamp to bypass cache */
|
|
@@ -8452,7 +8693,7 @@ export interface operations {
|
|
|
8452
8693
|
};
|
|
8453
8694
|
};
|
|
8454
8695
|
};
|
|
8455
|
-
|
|
8696
|
+
getMyCompetitionInfo: {
|
|
8456
8697
|
parameters: {
|
|
8457
8698
|
query?: {
|
|
8458
8699
|
/** @description Timestamp to bypass cache */
|
|
@@ -8479,7 +8720,7 @@ export interface operations {
|
|
|
8479
8720
|
};
|
|
8480
8721
|
};
|
|
8481
8722
|
};
|
|
8482
|
-
|
|
8723
|
+
getUserCompetitionInfo: {
|
|
8483
8724
|
parameters: {
|
|
8484
8725
|
query?: {
|
|
8485
8726
|
/** @description Timestamp to bypass cache */
|
|
@@ -8509,7 +8750,7 @@ export interface operations {
|
|
|
8509
8750
|
};
|
|
8510
8751
|
};
|
|
8511
8752
|
};
|
|
8512
|
-
|
|
8753
|
+
getMyCooldowns: {
|
|
8513
8754
|
parameters: {
|
|
8514
8755
|
query?: {
|
|
8515
8756
|
/** @description Timestamp to bypass cache */
|
|
@@ -8536,7 +8777,7 @@ export interface operations {
|
|
|
8536
8777
|
};
|
|
8537
8778
|
};
|
|
8538
8779
|
};
|
|
8539
|
-
|
|
8780
|
+
getMyCrimes: {
|
|
8540
8781
|
parameters: {
|
|
8541
8782
|
query?: {
|
|
8542
8783
|
/** @description Timestamp to bypass cache */
|
|
@@ -8566,7 +8807,7 @@ export interface operations {
|
|
|
8566
8807
|
};
|
|
8567
8808
|
};
|
|
8568
8809
|
};
|
|
8569
|
-
|
|
8810
|
+
getMyDiscord: {
|
|
8570
8811
|
parameters: {
|
|
8571
8812
|
query?: {
|
|
8572
8813
|
/** @description Timestamp to bypass cache */
|
|
@@ -8593,7 +8834,7 @@ export interface operations {
|
|
|
8593
8834
|
};
|
|
8594
8835
|
};
|
|
8595
8836
|
};
|
|
8596
|
-
|
|
8837
|
+
getUserDiscord: {
|
|
8597
8838
|
parameters: {
|
|
8598
8839
|
query?: {
|
|
8599
8840
|
/** @description Timestamp to bypass cache */
|
|
@@ -8623,15 +8864,15 @@ export interface operations {
|
|
|
8623
8864
|
};
|
|
8624
8865
|
};
|
|
8625
8866
|
};
|
|
8626
|
-
|
|
8867
|
+
getMyEducation: {
|
|
8627
8868
|
parameters: {
|
|
8628
8869
|
query?: {
|
|
8629
8870
|
/** @description Timestamp to bypass cache */
|
|
8630
8871
|
timestamp?: components["parameters"]["ApiTimestamp"];
|
|
8631
8872
|
/** @description Comment for your tool/service/bot/website to be visible in the logs. */
|
|
8632
8873
|
comment?: components["parameters"]["ApiComment"];
|
|
8633
|
-
/** @description API key (
|
|
8634
|
-
key?: components["parameters"]["
|
|
8874
|
+
/** @description API key (Minimal).<br>It's not required to use this parameter when passing the API key via the Authorization header. */
|
|
8875
|
+
key?: components["parameters"]["ApiKeyMinimal"];
|
|
8635
8876
|
};
|
|
8636
8877
|
header?: never;
|
|
8637
8878
|
path?: never;
|
|
@@ -8650,7 +8891,7 @@ export interface operations {
|
|
|
8650
8891
|
};
|
|
8651
8892
|
};
|
|
8652
8893
|
};
|
|
8653
|
-
|
|
8894
|
+
getMyEnlistedCars: {
|
|
8654
8895
|
parameters: {
|
|
8655
8896
|
query?: {
|
|
8656
8897
|
/** @description Timestamp to bypass cache */
|
|
@@ -8677,7 +8918,7 @@ export interface operations {
|
|
|
8677
8918
|
};
|
|
8678
8919
|
};
|
|
8679
8920
|
};
|
|
8680
|
-
|
|
8921
|
+
getMyEquipment: {
|
|
8681
8922
|
parameters: {
|
|
8682
8923
|
query?: {
|
|
8683
8924
|
/** @description Timestamp to bypass cache */
|
|
@@ -8704,7 +8945,7 @@ export interface operations {
|
|
|
8704
8945
|
};
|
|
8705
8946
|
};
|
|
8706
8947
|
};
|
|
8707
|
-
|
|
8948
|
+
getMyEvents: {
|
|
8708
8949
|
parameters: {
|
|
8709
8950
|
query?: {
|
|
8710
8951
|
/** @description Determines if fields include HTML or not ('Hospitalized by <a href=...>user</a>' vs 'Hospitalized by user'). */
|
|
@@ -8738,7 +8979,7 @@ export interface operations {
|
|
|
8738
8979
|
};
|
|
8739
8980
|
};
|
|
8740
8981
|
};
|
|
8741
|
-
|
|
8982
|
+
getMyFaction: {
|
|
8742
8983
|
parameters: {
|
|
8743
8984
|
query?: {
|
|
8744
8985
|
/** @description Timestamp to bypass cache */
|
|
@@ -8765,7 +9006,7 @@ export interface operations {
|
|
|
8765
9006
|
};
|
|
8766
9007
|
};
|
|
8767
9008
|
};
|
|
8768
|
-
|
|
9009
|
+
getUserFaction: {
|
|
8769
9010
|
parameters: {
|
|
8770
9011
|
query?: {
|
|
8771
9012
|
/** @description Timestamp to bypass cache */
|
|
@@ -8795,7 +9036,7 @@ export interface operations {
|
|
|
8795
9036
|
};
|
|
8796
9037
|
};
|
|
8797
9038
|
};
|
|
8798
|
-
|
|
9039
|
+
getMyForumFeed: {
|
|
8799
9040
|
parameters: {
|
|
8800
9041
|
query?: {
|
|
8801
9042
|
/** @description Timestamp to bypass cache */
|
|
@@ -8822,7 +9063,7 @@ export interface operations {
|
|
|
8822
9063
|
};
|
|
8823
9064
|
};
|
|
8824
9065
|
};
|
|
8825
|
-
|
|
9066
|
+
getMyForumFriendsUpdates: {
|
|
8826
9067
|
parameters: {
|
|
8827
9068
|
query?: {
|
|
8828
9069
|
/** @description Timestamp to bypass cache */
|
|
@@ -8849,7 +9090,7 @@ export interface operations {
|
|
|
8849
9090
|
};
|
|
8850
9091
|
};
|
|
8851
9092
|
};
|
|
8852
|
-
|
|
9093
|
+
getMyForumPosts: {
|
|
8853
9094
|
parameters: {
|
|
8854
9095
|
query?: {
|
|
8855
9096
|
/** @description Determines if fields include HTML or not ('Hospitalized by <a href=...>user</a>' vs 'Hospitalized by user'). */
|
|
@@ -8885,7 +9126,7 @@ export interface operations {
|
|
|
8885
9126
|
};
|
|
8886
9127
|
};
|
|
8887
9128
|
};
|
|
8888
|
-
|
|
9129
|
+
getUserForumPosts: {
|
|
8889
9130
|
parameters: {
|
|
8890
9131
|
query?: {
|
|
8891
9132
|
/** @description Determines if fields include HTML or not ('Hospitalized by <a href=...>user</a>' vs 'Hospitalized by user'). */
|
|
@@ -8924,7 +9165,7 @@ export interface operations {
|
|
|
8924
9165
|
};
|
|
8925
9166
|
};
|
|
8926
9167
|
};
|
|
8927
|
-
|
|
9168
|
+
getMyForumSubscribedThreads: {
|
|
8928
9169
|
parameters: {
|
|
8929
9170
|
query?: {
|
|
8930
9171
|
/** @description Timestamp to bypass cache */
|
|
@@ -8951,7 +9192,7 @@ export interface operations {
|
|
|
8951
9192
|
};
|
|
8952
9193
|
};
|
|
8953
9194
|
};
|
|
8954
|
-
|
|
9195
|
+
getMyForumThreads: {
|
|
8955
9196
|
parameters: {
|
|
8956
9197
|
query?: {
|
|
8957
9198
|
limit?: components["parameters"]["ApiLimit100Default20"];
|
|
@@ -8985,7 +9226,7 @@ export interface operations {
|
|
|
8985
9226
|
};
|
|
8986
9227
|
};
|
|
8987
9228
|
};
|
|
8988
|
-
|
|
9229
|
+
getUserForumThreads: {
|
|
8989
9230
|
parameters: {
|
|
8990
9231
|
query?: {
|
|
8991
9232
|
limit?: components["parameters"]["ApiLimit100Default20"];
|
|
@@ -9022,7 +9263,7 @@ export interface operations {
|
|
|
9022
9263
|
};
|
|
9023
9264
|
};
|
|
9024
9265
|
};
|
|
9025
|
-
|
|
9266
|
+
getMyHoF: {
|
|
9026
9267
|
parameters: {
|
|
9027
9268
|
query?: {
|
|
9028
9269
|
/** @description Timestamp to bypass cache */
|
|
@@ -9049,7 +9290,7 @@ export interface operations {
|
|
|
9049
9290
|
};
|
|
9050
9291
|
};
|
|
9051
9292
|
};
|
|
9052
|
-
|
|
9293
|
+
getUserHoF: {
|
|
9053
9294
|
parameters: {
|
|
9054
9295
|
query?: {
|
|
9055
9296
|
/** @description Timestamp to bypass cache */
|
|
@@ -9079,15 +9320,15 @@ export interface operations {
|
|
|
9079
9320
|
};
|
|
9080
9321
|
};
|
|
9081
9322
|
};
|
|
9082
|
-
|
|
9323
|
+
getMyHonors: {
|
|
9083
9324
|
parameters: {
|
|
9084
9325
|
query?: {
|
|
9085
9326
|
/** @description Timestamp to bypass cache */
|
|
9086
9327
|
timestamp?: components["parameters"]["ApiTimestamp"];
|
|
9087
9328
|
/** @description Comment for your tool/service/bot/website to be visible in the logs. */
|
|
9088
9329
|
comment?: components["parameters"]["ApiComment"];
|
|
9089
|
-
/** @description API key (
|
|
9090
|
-
key?: components["parameters"]["
|
|
9330
|
+
/** @description API key (Minimal).<br>It's not required to use this parameter when passing the API key via the Authorization header. */
|
|
9331
|
+
key?: components["parameters"]["ApiKeyMinimal"];
|
|
9091
9332
|
};
|
|
9092
9333
|
header?: never;
|
|
9093
9334
|
path?: never;
|
|
@@ -9106,7 +9347,7 @@ export interface operations {
|
|
|
9106
9347
|
};
|
|
9107
9348
|
};
|
|
9108
9349
|
};
|
|
9109
|
-
|
|
9350
|
+
getMyIcons: {
|
|
9110
9351
|
parameters: {
|
|
9111
9352
|
query?: {
|
|
9112
9353
|
/** @description Timestamp to bypass cache */
|
|
@@ -9133,7 +9374,7 @@ export interface operations {
|
|
|
9133
9374
|
};
|
|
9134
9375
|
};
|
|
9135
9376
|
};
|
|
9136
|
-
|
|
9377
|
+
getUserIcons: {
|
|
9137
9378
|
parameters: {
|
|
9138
9379
|
query?: {
|
|
9139
9380
|
/** @description Timestamp to bypass cache */
|
|
@@ -9163,7 +9404,7 @@ export interface operations {
|
|
|
9163
9404
|
};
|
|
9164
9405
|
};
|
|
9165
9406
|
};
|
|
9166
|
-
|
|
9407
|
+
getMyItemMarketListings: {
|
|
9167
9408
|
parameters: {
|
|
9168
9409
|
query?: {
|
|
9169
9410
|
offset?: components["parameters"]["ApiOffset"];
|
|
@@ -9191,7 +9432,7 @@ export interface operations {
|
|
|
9191
9432
|
};
|
|
9192
9433
|
};
|
|
9193
9434
|
};
|
|
9194
|
-
|
|
9435
|
+
getMyJob: {
|
|
9195
9436
|
parameters: {
|
|
9196
9437
|
query?: {
|
|
9197
9438
|
/** @description Timestamp to bypass cache */
|
|
@@ -9218,7 +9459,7 @@ export interface operations {
|
|
|
9218
9459
|
};
|
|
9219
9460
|
};
|
|
9220
9461
|
};
|
|
9221
|
-
|
|
9462
|
+
getUserJob: {
|
|
9222
9463
|
parameters: {
|
|
9223
9464
|
query?: {
|
|
9224
9465
|
/** @description Timestamp to bypass cache */
|
|
@@ -9248,15 +9489,15 @@ export interface operations {
|
|
|
9248
9489
|
};
|
|
9249
9490
|
};
|
|
9250
9491
|
};
|
|
9251
|
-
|
|
9492
|
+
getMyJobPoints: {
|
|
9252
9493
|
parameters: {
|
|
9253
9494
|
query?: {
|
|
9254
9495
|
/** @description Timestamp to bypass cache */
|
|
9255
9496
|
timestamp?: components["parameters"]["ApiTimestamp"];
|
|
9256
9497
|
/** @description Comment for your tool/service/bot/website to be visible in the logs. */
|
|
9257
9498
|
comment?: components["parameters"]["ApiComment"];
|
|
9258
|
-
/** @description API key (
|
|
9259
|
-
key?: components["parameters"]["
|
|
9499
|
+
/** @description API key (Minimal).<br>It's not required to use this parameter when passing the API key via the Authorization header. */
|
|
9500
|
+
key?: components["parameters"]["ApiKeyMinimal"];
|
|
9260
9501
|
};
|
|
9261
9502
|
header?: never;
|
|
9262
9503
|
path?: never;
|
|
@@ -9275,7 +9516,7 @@ export interface operations {
|
|
|
9275
9516
|
};
|
|
9276
9517
|
};
|
|
9277
9518
|
};
|
|
9278
|
-
|
|
9519
|
+
getMyJobRanks: {
|
|
9279
9520
|
parameters: {
|
|
9280
9521
|
query?: {
|
|
9281
9522
|
/** @description Timestamp to bypass cache */
|
|
@@ -9302,7 +9543,7 @@ export interface operations {
|
|
|
9302
9543
|
};
|
|
9303
9544
|
};
|
|
9304
9545
|
};
|
|
9305
|
-
|
|
9546
|
+
getMyContactsList: {
|
|
9306
9547
|
parameters: {
|
|
9307
9548
|
query: {
|
|
9308
9549
|
/** @description Select list type */
|
|
@@ -9337,7 +9578,7 @@ export interface operations {
|
|
|
9337
9578
|
};
|
|
9338
9579
|
};
|
|
9339
9580
|
};
|
|
9340
|
-
|
|
9581
|
+
getMyLogs: {
|
|
9341
9582
|
parameters: {
|
|
9342
9583
|
query?: {
|
|
9343
9584
|
/** @description Log ids, comma separated, e.g. 105,4900,4905 */
|
|
@@ -9375,15 +9616,15 @@ export interface operations {
|
|
|
9375
9616
|
};
|
|
9376
9617
|
};
|
|
9377
9618
|
};
|
|
9378
|
-
|
|
9619
|
+
getMyMedals: {
|
|
9379
9620
|
parameters: {
|
|
9380
9621
|
query?: {
|
|
9381
9622
|
/** @description Timestamp to bypass cache */
|
|
9382
9623
|
timestamp?: components["parameters"]["ApiTimestamp"];
|
|
9383
9624
|
/** @description Comment for your tool/service/bot/website to be visible in the logs. */
|
|
9384
9625
|
comment?: components["parameters"]["ApiComment"];
|
|
9385
|
-
/** @description API key (
|
|
9386
|
-
key?: components["parameters"]["
|
|
9626
|
+
/** @description API key (Minimal).<br>It's not required to use this parameter when passing the API key via the Authorization header. */
|
|
9627
|
+
key?: components["parameters"]["ApiKeyMinimal"];
|
|
9387
9628
|
};
|
|
9388
9629
|
header?: never;
|
|
9389
9630
|
path?: never;
|
|
@@ -9402,15 +9643,15 @@ export interface operations {
|
|
|
9402
9643
|
};
|
|
9403
9644
|
};
|
|
9404
9645
|
};
|
|
9405
|
-
|
|
9646
|
+
getMyMerits: {
|
|
9406
9647
|
parameters: {
|
|
9407
9648
|
query?: {
|
|
9408
9649
|
/** @description Timestamp to bypass cache */
|
|
9409
9650
|
timestamp?: components["parameters"]["ApiTimestamp"];
|
|
9410
9651
|
/** @description Comment for your tool/service/bot/website to be visible in the logs. */
|
|
9411
9652
|
comment?: components["parameters"]["ApiComment"];
|
|
9412
|
-
/** @description API key (
|
|
9413
|
-
key?: components["parameters"]["
|
|
9653
|
+
/** @description API key (Minimal).<br>It's not required to use this parameter when passing the API key via the Authorization header. */
|
|
9654
|
+
key?: components["parameters"]["ApiKeyMinimal"];
|
|
9414
9655
|
};
|
|
9415
9656
|
header?: never;
|
|
9416
9657
|
path?: never;
|
|
@@ -9429,7 +9670,7 @@ export interface operations {
|
|
|
9429
9670
|
};
|
|
9430
9671
|
};
|
|
9431
9672
|
};
|
|
9432
|
-
|
|
9673
|
+
getMyMessages: {
|
|
9433
9674
|
parameters: {
|
|
9434
9675
|
query?: {
|
|
9435
9676
|
limit?: components["parameters"]["ApiLimit100Default20"];
|
|
@@ -9463,7 +9704,7 @@ export interface operations {
|
|
|
9463
9704
|
};
|
|
9464
9705
|
};
|
|
9465
9706
|
};
|
|
9466
|
-
|
|
9707
|
+
getMyMissions: {
|
|
9467
9708
|
parameters: {
|
|
9468
9709
|
query?: {
|
|
9469
9710
|
/** @description Timestamp to bypass cache */
|
|
@@ -9490,15 +9731,15 @@ export interface operations {
|
|
|
9490
9731
|
};
|
|
9491
9732
|
};
|
|
9492
9733
|
};
|
|
9493
|
-
|
|
9734
|
+
getMyMoney: {
|
|
9494
9735
|
parameters: {
|
|
9495
9736
|
query?: {
|
|
9496
9737
|
/** @description Timestamp to bypass cache */
|
|
9497
9738
|
timestamp?: components["parameters"]["ApiTimestamp"];
|
|
9498
9739
|
/** @description Comment for your tool/service/bot/website to be visible in the logs. */
|
|
9499
9740
|
comment?: components["parameters"]["ApiComment"];
|
|
9500
|
-
/** @description API key (
|
|
9501
|
-
key?: components["parameters"]["
|
|
9741
|
+
/** @description API key (Limited).<br>It's not required to use this parameter when passing the API key via the Authorization header. */
|
|
9742
|
+
key?: components["parameters"]["ApiKeyLimited"];
|
|
9502
9743
|
};
|
|
9503
9744
|
header?: never;
|
|
9504
9745
|
path?: never;
|
|
@@ -9517,7 +9758,7 @@ export interface operations {
|
|
|
9517
9758
|
};
|
|
9518
9759
|
};
|
|
9519
9760
|
};
|
|
9520
|
-
|
|
9761
|
+
getMyNewEvents: {
|
|
9521
9762
|
parameters: {
|
|
9522
9763
|
query?: {
|
|
9523
9764
|
/** @description Determines if fields include HTML or not ('Hospitalized by <a href=...>user</a>' vs 'Hospitalized by user'). */
|
|
@@ -9546,7 +9787,7 @@ export interface operations {
|
|
|
9546
9787
|
};
|
|
9547
9788
|
};
|
|
9548
9789
|
};
|
|
9549
|
-
|
|
9790
|
+
getMyNewMessages: {
|
|
9550
9791
|
parameters: {
|
|
9551
9792
|
query?: {
|
|
9552
9793
|
/** @description Timestamp to bypass cache */
|
|
@@ -9573,7 +9814,7 @@ export interface operations {
|
|
|
9573
9814
|
};
|
|
9574
9815
|
};
|
|
9575
9816
|
};
|
|
9576
|
-
|
|
9817
|
+
getMyNotifications: {
|
|
9577
9818
|
parameters: {
|
|
9578
9819
|
query?: {
|
|
9579
9820
|
/** @description Timestamp to bypass cache */
|
|
@@ -9600,7 +9841,7 @@ export interface operations {
|
|
|
9600
9841
|
};
|
|
9601
9842
|
};
|
|
9602
9843
|
};
|
|
9603
|
-
|
|
9844
|
+
getMyOrganizedCrime: {
|
|
9604
9845
|
parameters: {
|
|
9605
9846
|
query?: {
|
|
9606
9847
|
/** @description Timestamp to bypass cache */
|
|
@@ -9627,7 +9868,7 @@ export interface operations {
|
|
|
9627
9868
|
};
|
|
9628
9869
|
};
|
|
9629
9870
|
};
|
|
9630
|
-
|
|
9871
|
+
getMyPersonalStats: {
|
|
9631
9872
|
parameters: {
|
|
9632
9873
|
query?: {
|
|
9633
9874
|
/** @description Stats category. Required unless requesting specific stats via 'stat' query parameter */
|
|
@@ -9658,7 +9899,7 @@ export interface operations {
|
|
|
9658
9899
|
};
|
|
9659
9900
|
};
|
|
9660
9901
|
};
|
|
9661
|
-
|
|
9902
|
+
getUserPersonalStats: {
|
|
9662
9903
|
parameters: {
|
|
9663
9904
|
query?: {
|
|
9664
9905
|
cat?: components["schemas"]["PersonalStatsCategoryEnum"];
|
|
@@ -9691,7 +9932,7 @@ export interface operations {
|
|
|
9691
9932
|
};
|
|
9692
9933
|
};
|
|
9693
9934
|
};
|
|
9694
|
-
|
|
9935
|
+
getMyProfile: {
|
|
9695
9936
|
parameters: {
|
|
9696
9937
|
query?: {
|
|
9697
9938
|
/** @description Determines if fields include HTML or not ('Hospitalized by <a href=...>user</a>' vs 'Hospitalized by user'). */
|
|
@@ -9720,7 +9961,7 @@ export interface operations {
|
|
|
9720
9961
|
};
|
|
9721
9962
|
};
|
|
9722
9963
|
};
|
|
9723
|
-
|
|
9964
|
+
getUserProfile: {
|
|
9724
9965
|
parameters: {
|
|
9725
9966
|
query?: {
|
|
9726
9967
|
/** @description Determines if fields include HTML or not ('Hospitalized by <a href=...>user</a>' vs 'Hospitalized by user'). */
|
|
@@ -9752,7 +9993,7 @@ export interface operations {
|
|
|
9752
9993
|
};
|
|
9753
9994
|
};
|
|
9754
9995
|
};
|
|
9755
|
-
|
|
9996
|
+
getMyProperties: {
|
|
9756
9997
|
parameters: {
|
|
9757
9998
|
query?: {
|
|
9758
9999
|
/** @description It's possible to use this query parameter to filter properties by the key owner or their spouse. */
|
|
@@ -9783,7 +10024,7 @@ export interface operations {
|
|
|
9783
10024
|
};
|
|
9784
10025
|
};
|
|
9785
10026
|
};
|
|
9786
|
-
|
|
10027
|
+
getUserProperties: {
|
|
9787
10028
|
parameters: {
|
|
9788
10029
|
query?: {
|
|
9789
10030
|
/** @description It's possible to use this query parameter to filter properties by the key owner or their spouse. */
|
|
@@ -9817,7 +10058,7 @@ export interface operations {
|
|
|
9817
10058
|
};
|
|
9818
10059
|
};
|
|
9819
10060
|
};
|
|
9820
|
-
|
|
10061
|
+
getMyProperty: {
|
|
9821
10062
|
parameters: {
|
|
9822
10063
|
query?: {
|
|
9823
10064
|
/** @description Timestamp to bypass cache */
|
|
@@ -9844,7 +10085,7 @@ export interface operations {
|
|
|
9844
10085
|
};
|
|
9845
10086
|
};
|
|
9846
10087
|
};
|
|
9847
|
-
|
|
10088
|
+
getUserProperty: {
|
|
9848
10089
|
parameters: {
|
|
9849
10090
|
query?: {
|
|
9850
10091
|
/** @description Timestamp to bypass cache */
|
|
@@ -9874,7 +10115,7 @@ export interface operations {
|
|
|
9874
10115
|
};
|
|
9875
10116
|
};
|
|
9876
10117
|
};
|
|
9877
|
-
|
|
10118
|
+
getMyRaces: {
|
|
9878
10119
|
parameters: {
|
|
9879
10120
|
query?: {
|
|
9880
10121
|
limit?: components["parameters"]["ApiLimit100Default20"];
|
|
@@ -9910,7 +10151,7 @@ export interface operations {
|
|
|
9910
10151
|
};
|
|
9911
10152
|
};
|
|
9912
10153
|
};
|
|
9913
|
-
|
|
10154
|
+
getMyRacingRecords: {
|
|
9914
10155
|
parameters: {
|
|
9915
10156
|
query?: {
|
|
9916
10157
|
/** @description Timestamp to bypass cache */
|
|
@@ -9937,7 +10178,7 @@ export interface operations {
|
|
|
9937
10178
|
};
|
|
9938
10179
|
};
|
|
9939
10180
|
};
|
|
9940
|
-
|
|
10181
|
+
getMyRefills: {
|
|
9941
10182
|
parameters: {
|
|
9942
10183
|
query?: {
|
|
9943
10184
|
/** @description Timestamp to bypass cache */
|
|
@@ -9964,7 +10205,7 @@ export interface operations {
|
|
|
9964
10205
|
};
|
|
9965
10206
|
};
|
|
9966
10207
|
};
|
|
9967
|
-
|
|
10208
|
+
getMyReports: {
|
|
9968
10209
|
parameters: {
|
|
9969
10210
|
query?: {
|
|
9970
10211
|
/** @description Used to filter reports with a specific type. */
|
|
@@ -9999,7 +10240,7 @@ export interface operations {
|
|
|
9999
10240
|
};
|
|
10000
10241
|
};
|
|
10001
10242
|
};
|
|
10002
|
-
|
|
10243
|
+
getMyRevives: {
|
|
10003
10244
|
parameters: {
|
|
10004
10245
|
query?: {
|
|
10005
10246
|
/**
|
|
@@ -10040,7 +10281,7 @@ export interface operations {
|
|
|
10040
10281
|
};
|
|
10041
10282
|
};
|
|
10042
10283
|
};
|
|
10043
|
-
|
|
10284
|
+
getMyRevivesSimplified: {
|
|
10044
10285
|
parameters: {
|
|
10045
10286
|
query?: {
|
|
10046
10287
|
/**
|
|
@@ -10081,15 +10322,15 @@ export interface operations {
|
|
|
10081
10322
|
};
|
|
10082
10323
|
};
|
|
10083
10324
|
};
|
|
10084
|
-
|
|
10325
|
+
getMySkills: {
|
|
10085
10326
|
parameters: {
|
|
10086
10327
|
query?: {
|
|
10087
10328
|
/** @description Timestamp to bypass cache */
|
|
10088
10329
|
timestamp?: components["parameters"]["ApiTimestamp"];
|
|
10089
10330
|
/** @description Comment for your tool/service/bot/website to be visible in the logs. */
|
|
10090
10331
|
comment?: components["parameters"]["ApiComment"];
|
|
10091
|
-
/** @description API key (
|
|
10092
|
-
key?: components["parameters"]["
|
|
10332
|
+
/** @description API key (Minimal).<br>It's not required to use this parameter when passing the API key via the Authorization header. */
|
|
10333
|
+
key?: components["parameters"]["ApiKeyMinimal"];
|
|
10093
10334
|
};
|
|
10094
10335
|
header?: never;
|
|
10095
10336
|
path?: never;
|
|
@@ -10108,7 +10349,7 @@ export interface operations {
|
|
|
10108
10349
|
};
|
|
10109
10350
|
};
|
|
10110
10351
|
};
|
|
10111
|
-
|
|
10352
|
+
getMyTravelInformation: {
|
|
10112
10353
|
parameters: {
|
|
10113
10354
|
query?: {
|
|
10114
10355
|
/** @description Timestamp to bypass cache */
|
|
@@ -10135,7 +10376,7 @@ export interface operations {
|
|
|
10135
10376
|
};
|
|
10136
10377
|
};
|
|
10137
10378
|
};
|
|
10138
|
-
|
|
10379
|
+
getMyVirusCodingInformation: {
|
|
10139
10380
|
parameters: {
|
|
10140
10381
|
query?: {
|
|
10141
10382
|
/** @description Timestamp to bypass cache */
|
|
@@ -10162,7 +10403,7 @@ export interface operations {
|
|
|
10162
10403
|
};
|
|
10163
10404
|
};
|
|
10164
10405
|
};
|
|
10165
|
-
|
|
10406
|
+
getMyWeaponExp: {
|
|
10166
10407
|
parameters: {
|
|
10167
10408
|
query?: {
|
|
10168
10409
|
/** @description Timestamp to bypass cache */
|
|
@@ -10189,15 +10430,15 @@ export interface operations {
|
|
|
10189
10430
|
};
|
|
10190
10431
|
};
|
|
10191
10432
|
};
|
|
10192
|
-
|
|
10433
|
+
getMyWorkstats: {
|
|
10193
10434
|
parameters: {
|
|
10194
10435
|
query?: {
|
|
10195
10436
|
/** @description Timestamp to bypass cache */
|
|
10196
10437
|
timestamp?: components["parameters"]["ApiTimestamp"];
|
|
10197
10438
|
/** @description Comment for your tool/service/bot/website to be visible in the logs. */
|
|
10198
10439
|
comment?: components["parameters"]["ApiComment"];
|
|
10199
|
-
/** @description API key (
|
|
10200
|
-
key?: components["parameters"]["
|
|
10440
|
+
/** @description API key (Minimal).<br>It's not required to use this parameter when passing the API key via the Authorization header. */
|
|
10441
|
+
key?: components["parameters"]["ApiKeyMinimal"];
|
|
10201
10442
|
};
|
|
10202
10443
|
header?: never;
|
|
10203
10444
|
path?: never;
|
|
@@ -10216,7 +10457,7 @@ export interface operations {
|
|
|
10216
10457
|
};
|
|
10217
10458
|
};
|
|
10218
10459
|
};
|
|
10219
|
-
|
|
10460
|
+
getUserLookup: {
|
|
10220
10461
|
parameters: {
|
|
10221
10462
|
query?: {
|
|
10222
10463
|
/** @description Timestamp to bypass cache */
|
|
@@ -10243,7 +10484,7 @@ export interface operations {
|
|
|
10243
10484
|
};
|
|
10244
10485
|
};
|
|
10245
10486
|
};
|
|
10246
|
-
|
|
10487
|
+
getUserTimestamp: {
|
|
10247
10488
|
parameters: {
|
|
10248
10489
|
query?: {
|
|
10249
10490
|
/** @description Timestamp to bypass cache */
|
|
@@ -10270,7 +10511,7 @@ export interface operations {
|
|
|
10270
10511
|
};
|
|
10271
10512
|
};
|
|
10272
10513
|
};
|
|
10273
|
-
|
|
10514
|
+
getUserGeneric: {
|
|
10274
10515
|
parameters: {
|
|
10275
10516
|
query?: {
|
|
10276
10517
|
/** @description Selection names */
|
|
@@ -10319,7 +10560,7 @@ export interface operations {
|
|
|
10319
10560
|
};
|
|
10320
10561
|
};
|
|
10321
10562
|
};
|
|
10322
|
-
|
|
10563
|
+
getMyFactionApplications: {
|
|
10323
10564
|
parameters: {
|
|
10324
10565
|
query?: {
|
|
10325
10566
|
/** @description Timestamp to bypass cache */
|
|
@@ -10346,7 +10587,7 @@ export interface operations {
|
|
|
10346
10587
|
};
|
|
10347
10588
|
};
|
|
10348
10589
|
};
|
|
10349
|
-
|
|
10590
|
+
getMyFactionAttacks: {
|
|
10350
10591
|
parameters: {
|
|
10351
10592
|
query?: {
|
|
10352
10593
|
/**
|
|
@@ -10385,7 +10626,7 @@ export interface operations {
|
|
|
10385
10626
|
};
|
|
10386
10627
|
};
|
|
10387
10628
|
};
|
|
10388
|
-
|
|
10629
|
+
getMyFactionAttacksSimplified: {
|
|
10389
10630
|
parameters: {
|
|
10390
10631
|
query?: {
|
|
10391
10632
|
/**
|
|
@@ -10424,7 +10665,7 @@ export interface operations {
|
|
|
10424
10665
|
};
|
|
10425
10666
|
};
|
|
10426
10667
|
};
|
|
10427
|
-
|
|
10668
|
+
getMyFactionBalance: {
|
|
10428
10669
|
parameters: {
|
|
10429
10670
|
query?: {
|
|
10430
10671
|
/** @description By default, this selection will return only current faction's member balances, and the option 'all' will return all current members balances + additionally those of ex-members which do have money or points on their balance. */
|
|
@@ -10453,7 +10694,7 @@ export interface operations {
|
|
|
10453
10694
|
};
|
|
10454
10695
|
};
|
|
10455
10696
|
};
|
|
10456
|
-
|
|
10697
|
+
getMyFactionBasicInformation: {
|
|
10457
10698
|
parameters: {
|
|
10458
10699
|
query?: {
|
|
10459
10700
|
/** @description Timestamp to bypass cache */
|
|
@@ -10480,7 +10721,7 @@ export interface operations {
|
|
|
10480
10721
|
};
|
|
10481
10722
|
};
|
|
10482
10723
|
};
|
|
10483
|
-
|
|
10724
|
+
getFactionBasicInformation: {
|
|
10484
10725
|
parameters: {
|
|
10485
10726
|
query?: {
|
|
10486
10727
|
/** @description Timestamp to bypass cache */
|
|
@@ -10510,7 +10751,7 @@ export interface operations {
|
|
|
10510
10751
|
};
|
|
10511
10752
|
};
|
|
10512
10753
|
};
|
|
10513
|
-
|
|
10754
|
+
getMyFactionChain: {
|
|
10514
10755
|
parameters: {
|
|
10515
10756
|
query?: {
|
|
10516
10757
|
/** @description Timestamp to bypass cache */
|
|
@@ -10537,7 +10778,7 @@ export interface operations {
|
|
|
10537
10778
|
};
|
|
10538
10779
|
};
|
|
10539
10780
|
};
|
|
10540
|
-
|
|
10781
|
+
getFactionChain: {
|
|
10541
10782
|
parameters: {
|
|
10542
10783
|
query?: {
|
|
10543
10784
|
/** @description Timestamp to bypass cache */
|
|
@@ -10567,7 +10808,7 @@ export interface operations {
|
|
|
10567
10808
|
};
|
|
10568
10809
|
};
|
|
10569
10810
|
};
|
|
10570
|
-
|
|
10811
|
+
getMyFactionCompletedChains: {
|
|
10571
10812
|
parameters: {
|
|
10572
10813
|
query?: {
|
|
10573
10814
|
limit?: components["parameters"]["ApiLimit100"];
|
|
@@ -10601,7 +10842,7 @@ export interface operations {
|
|
|
10601
10842
|
};
|
|
10602
10843
|
};
|
|
10603
10844
|
};
|
|
10604
|
-
|
|
10845
|
+
getFactionCompletedChains: {
|
|
10605
10846
|
parameters: {
|
|
10606
10847
|
query?: {
|
|
10607
10848
|
limit?: components["parameters"]["ApiLimit100"];
|
|
@@ -10638,7 +10879,7 @@ export interface operations {
|
|
|
10638
10879
|
};
|
|
10639
10880
|
};
|
|
10640
10881
|
};
|
|
10641
|
-
|
|
10882
|
+
getMyFactionLatestChainReport: {
|
|
10642
10883
|
parameters: {
|
|
10643
10884
|
query?: {
|
|
10644
10885
|
/** @description Timestamp to bypass cache */
|
|
@@ -10665,7 +10906,7 @@ export interface operations {
|
|
|
10665
10906
|
};
|
|
10666
10907
|
};
|
|
10667
10908
|
};
|
|
10668
|
-
|
|
10909
|
+
getChainReport: {
|
|
10669
10910
|
parameters: {
|
|
10670
10911
|
query?: {
|
|
10671
10912
|
/** @description Timestamp to bypass cache */
|
|
@@ -10695,7 +10936,7 @@ export interface operations {
|
|
|
10695
10936
|
};
|
|
10696
10937
|
};
|
|
10697
10938
|
};
|
|
10698
|
-
|
|
10939
|
+
getMyFactionContributors: {
|
|
10699
10940
|
parameters: {
|
|
10700
10941
|
query: {
|
|
10701
10942
|
/** @description Get contributors for this field. */
|
|
@@ -10706,8 +10947,8 @@ export interface operations {
|
|
|
10706
10947
|
timestamp?: components["parameters"]["ApiTimestamp"];
|
|
10707
10948
|
/** @description Comment for your tool/service/bot/website to be visible in the logs. */
|
|
10708
10949
|
comment?: components["parameters"]["ApiComment"];
|
|
10709
|
-
/** @description API key (
|
|
10710
|
-
key?: components["parameters"]["
|
|
10950
|
+
/** @description API key (Limited).<br>It's not required to use this parameter when passing the API key via the Authorization header. */
|
|
10951
|
+
key?: components["parameters"]["ApiKeyLimited"];
|
|
10711
10952
|
};
|
|
10712
10953
|
header?: never;
|
|
10713
10954
|
path?: never;
|
|
@@ -10726,7 +10967,7 @@ export interface operations {
|
|
|
10726
10967
|
};
|
|
10727
10968
|
};
|
|
10728
10969
|
};
|
|
10729
|
-
|
|
10970
|
+
getMyFactionOrganizedCrimes: {
|
|
10730
10971
|
parameters: {
|
|
10731
10972
|
query?: {
|
|
10732
10973
|
/** @description Category of organized crimes returned. Category 'available' includes both 'recruiting' & 'planning', and category 'completed' includes both 'successful' & 'failure'<br>Default category is 'all'. */
|
|
@@ -10764,7 +11005,7 @@ export interface operations {
|
|
|
10764
11005
|
};
|
|
10765
11006
|
};
|
|
10766
11007
|
};
|
|
10767
|
-
|
|
11008
|
+
getMyFactionOrganizedCrime: {
|
|
10768
11009
|
parameters: {
|
|
10769
11010
|
query?: {
|
|
10770
11011
|
/** @description Timestamp to bypass cache */
|
|
@@ -10794,7 +11035,7 @@ export interface operations {
|
|
|
10794
11035
|
};
|
|
10795
11036
|
};
|
|
10796
11037
|
};
|
|
10797
|
-
|
|
11038
|
+
getMyFactionHoF: {
|
|
10798
11039
|
parameters: {
|
|
10799
11040
|
query?: {
|
|
10800
11041
|
/** @description Timestamp to bypass cache */
|
|
@@ -10821,7 +11062,7 @@ export interface operations {
|
|
|
10821
11062
|
};
|
|
10822
11063
|
};
|
|
10823
11064
|
};
|
|
10824
|
-
|
|
11065
|
+
getFactionHoF: {
|
|
10825
11066
|
parameters: {
|
|
10826
11067
|
query?: {
|
|
10827
11068
|
/** @description Timestamp to bypass cache */
|
|
@@ -10851,7 +11092,7 @@ export interface operations {
|
|
|
10851
11092
|
};
|
|
10852
11093
|
};
|
|
10853
11094
|
};
|
|
10854
|
-
|
|
11095
|
+
getMyFactionMembers: {
|
|
10855
11096
|
parameters: {
|
|
10856
11097
|
query?: {
|
|
10857
11098
|
/** @description Determines if fields include HTML or not ('Hospitalized by <a href=...>user</a>' vs 'Hospitalized by user'). */
|
|
@@ -10880,7 +11121,7 @@ export interface operations {
|
|
|
10880
11121
|
};
|
|
10881
11122
|
};
|
|
10882
11123
|
};
|
|
10883
|
-
|
|
11124
|
+
getFactionMembers: {
|
|
10884
11125
|
parameters: {
|
|
10885
11126
|
query?: {
|
|
10886
11127
|
/** @description Determines if fields include HTML or not ('Hospitalized by <a href=...>user</a>' vs 'Hospitalized by user'). */
|
|
@@ -10912,7 +11153,7 @@ export interface operations {
|
|
|
10912
11153
|
};
|
|
10913
11154
|
};
|
|
10914
11155
|
};
|
|
10915
|
-
|
|
11156
|
+
getMyFactionNews: {
|
|
10916
11157
|
parameters: {
|
|
10917
11158
|
query: {
|
|
10918
11159
|
/** @description Determines if fields include HTML or not ('Hospitalized by <a href=...>user</a>' vs 'Hospitalized by user'). */
|
|
@@ -10950,7 +11191,7 @@ export interface operations {
|
|
|
10950
11191
|
};
|
|
10951
11192
|
};
|
|
10952
11193
|
};
|
|
10953
|
-
|
|
11194
|
+
getMyFactionPositions: {
|
|
10954
11195
|
parameters: {
|
|
10955
11196
|
query?: {
|
|
10956
11197
|
/** @description Timestamp to bypass cache */
|
|
@@ -10977,7 +11218,7 @@ export interface operations {
|
|
|
10977
11218
|
};
|
|
10978
11219
|
};
|
|
10979
11220
|
};
|
|
10980
|
-
|
|
11221
|
+
getFactionRackets: {
|
|
10981
11222
|
parameters: {
|
|
10982
11223
|
query?: {
|
|
10983
11224
|
/** @description Timestamp to bypass cache */
|
|
@@ -11004,7 +11245,7 @@ export interface operations {
|
|
|
11004
11245
|
};
|
|
11005
11246
|
};
|
|
11006
11247
|
};
|
|
11007
|
-
|
|
11248
|
+
getRaidReport: {
|
|
11008
11249
|
parameters: {
|
|
11009
11250
|
query?: {
|
|
11010
11251
|
/** @description Timestamp to bypass cache */
|
|
@@ -11034,7 +11275,7 @@ export interface operations {
|
|
|
11034
11275
|
};
|
|
11035
11276
|
};
|
|
11036
11277
|
};
|
|
11037
|
-
|
|
11278
|
+
getMyFactionRaidsHistory: {
|
|
11038
11279
|
parameters: {
|
|
11039
11280
|
query?: {
|
|
11040
11281
|
/** @description Timestamp that sets the lower limit for the data returned. Data returned will be after this time */
|
|
@@ -11068,7 +11309,7 @@ export interface operations {
|
|
|
11068
11309
|
};
|
|
11069
11310
|
};
|
|
11070
11311
|
};
|
|
11071
|
-
|
|
11312
|
+
getFactionRaidsHistory: {
|
|
11072
11313
|
parameters: {
|
|
11073
11314
|
query?: {
|
|
11074
11315
|
/** @description Timestamp that sets the lower limit for the data returned. Data returned will be after this time */
|
|
@@ -11105,7 +11346,7 @@ export interface operations {
|
|
|
11105
11346
|
};
|
|
11106
11347
|
};
|
|
11107
11348
|
};
|
|
11108
|
-
|
|
11349
|
+
getMyFactionRankedWarsHistory: {
|
|
11109
11350
|
parameters: {
|
|
11110
11351
|
query?: {
|
|
11111
11352
|
offset?: components["parameters"]["ApiOffset"];
|
|
@@ -11140,7 +11381,7 @@ export interface operations {
|
|
|
11140
11381
|
};
|
|
11141
11382
|
};
|
|
11142
11383
|
};
|
|
11143
|
-
|
|
11384
|
+
getFactionRankedWarsHistory: {
|
|
11144
11385
|
parameters: {
|
|
11145
11386
|
query?: {
|
|
11146
11387
|
offset?: components["parameters"]["ApiOffset"];
|
|
@@ -11172,7 +11413,7 @@ export interface operations {
|
|
|
11172
11413
|
};
|
|
11173
11414
|
};
|
|
11174
11415
|
};
|
|
11175
|
-
|
|
11416
|
+
getRankedWarReport: {
|
|
11176
11417
|
parameters: {
|
|
11177
11418
|
query?: {
|
|
11178
11419
|
/** @description Timestamp to bypass cache */
|
|
@@ -11202,7 +11443,7 @@ export interface operations {
|
|
|
11202
11443
|
};
|
|
11203
11444
|
};
|
|
11204
11445
|
};
|
|
11205
|
-
|
|
11446
|
+
getMyFactionReports: {
|
|
11206
11447
|
parameters: {
|
|
11207
11448
|
query?: {
|
|
11208
11449
|
/** @description Used to filter reports with a specific type. */
|
|
@@ -11237,7 +11478,7 @@ export interface operations {
|
|
|
11237
11478
|
};
|
|
11238
11479
|
};
|
|
11239
11480
|
};
|
|
11240
|
-
|
|
11481
|
+
getMyFactionRevives: {
|
|
11241
11482
|
parameters: {
|
|
11242
11483
|
query?: {
|
|
11243
11484
|
/**
|
|
@@ -11278,7 +11519,7 @@ export interface operations {
|
|
|
11278
11519
|
};
|
|
11279
11520
|
};
|
|
11280
11521
|
};
|
|
11281
|
-
|
|
11522
|
+
getMyFactionRevivesSimplified: {
|
|
11282
11523
|
parameters: {
|
|
11283
11524
|
query?: {
|
|
11284
11525
|
/**
|
|
@@ -11319,7 +11560,7 @@ export interface operations {
|
|
|
11319
11560
|
};
|
|
11320
11561
|
};
|
|
11321
11562
|
};
|
|
11322
|
-
|
|
11563
|
+
getFactionSearch: {
|
|
11323
11564
|
parameters: {
|
|
11324
11565
|
query?: {
|
|
11325
11566
|
/** @description Name to search for. */
|
|
@@ -11361,7 +11602,7 @@ export interface operations {
|
|
|
11361
11602
|
};
|
|
11362
11603
|
};
|
|
11363
11604
|
};
|
|
11364
|
-
|
|
11605
|
+
getMyFactionStats: {
|
|
11365
11606
|
parameters: {
|
|
11366
11607
|
query?: {
|
|
11367
11608
|
/** @description Timestamp to bypass cache */
|
|
@@ -11388,7 +11629,7 @@ export interface operations {
|
|
|
11388
11629
|
};
|
|
11389
11630
|
};
|
|
11390
11631
|
};
|
|
11391
|
-
|
|
11632
|
+
getMyFactionTerritory: {
|
|
11392
11633
|
parameters: {
|
|
11393
11634
|
query?: {
|
|
11394
11635
|
/** @description Timestamp to bypass cache */
|
|
@@ -11415,7 +11656,7 @@ export interface operations {
|
|
|
11415
11656
|
};
|
|
11416
11657
|
};
|
|
11417
11658
|
};
|
|
11418
|
-
|
|
11659
|
+
getFactionTerritory: {
|
|
11419
11660
|
parameters: {
|
|
11420
11661
|
query?: {
|
|
11421
11662
|
/** @description Timestamp to bypass cache */
|
|
@@ -11445,7 +11686,7 @@ export interface operations {
|
|
|
11445
11686
|
};
|
|
11446
11687
|
};
|
|
11447
11688
|
};
|
|
11448
|
-
|
|
11689
|
+
getTerritoryOwnership: {
|
|
11449
11690
|
parameters: {
|
|
11450
11691
|
query?: {
|
|
11451
11692
|
offset?: components["parameters"]["ApiOffset"];
|
|
@@ -11474,7 +11715,7 @@ export interface operations {
|
|
|
11474
11715
|
};
|
|
11475
11716
|
};
|
|
11476
11717
|
};
|
|
11477
|
-
|
|
11718
|
+
getMyFactionTerritoryWarsHistory: {
|
|
11478
11719
|
parameters: {
|
|
11479
11720
|
query?: {
|
|
11480
11721
|
/** @description Timestamp that sets the lower limit for the data returned. Data returned will be after this time */
|
|
@@ -11508,7 +11749,7 @@ export interface operations {
|
|
|
11508
11749
|
};
|
|
11509
11750
|
};
|
|
11510
11751
|
};
|
|
11511
|
-
|
|
11752
|
+
getFactionTerritoryWarsHistory: {
|
|
11512
11753
|
parameters: {
|
|
11513
11754
|
query?: {
|
|
11514
11755
|
/** @description Timestamp that sets the lower limit for the data returned. Data returned will be after this time */
|
|
@@ -11545,7 +11786,7 @@ export interface operations {
|
|
|
11545
11786
|
};
|
|
11546
11787
|
};
|
|
11547
11788
|
};
|
|
11548
|
-
|
|
11789
|
+
getTerritoryWarReport: {
|
|
11549
11790
|
parameters: {
|
|
11550
11791
|
query?: {
|
|
11551
11792
|
/** @description Timestamp to bypass cache */
|
|
@@ -11575,7 +11816,7 @@ export interface operations {
|
|
|
11575
11816
|
};
|
|
11576
11817
|
};
|
|
11577
11818
|
};
|
|
11578
|
-
|
|
11819
|
+
getMyFactionUpgrades: {
|
|
11579
11820
|
parameters: {
|
|
11580
11821
|
query?: {
|
|
11581
11822
|
/** @description Timestamp to bypass cache */
|
|
@@ -11602,7 +11843,7 @@ export interface operations {
|
|
|
11602
11843
|
};
|
|
11603
11844
|
};
|
|
11604
11845
|
};
|
|
11605
|
-
|
|
11846
|
+
getWarfare: {
|
|
11606
11847
|
parameters: {
|
|
11607
11848
|
query: {
|
|
11608
11849
|
cat: components["schemas"]["FactionWarfareTypeEnum"];
|
|
@@ -11637,7 +11878,7 @@ export interface operations {
|
|
|
11637
11878
|
};
|
|
11638
11879
|
};
|
|
11639
11880
|
};
|
|
11640
|
-
|
|
11881
|
+
getMyFactionWars: {
|
|
11641
11882
|
parameters: {
|
|
11642
11883
|
query?: {
|
|
11643
11884
|
/** @description Timestamp to bypass cache */
|
|
@@ -11664,7 +11905,7 @@ export interface operations {
|
|
|
11664
11905
|
};
|
|
11665
11906
|
};
|
|
11666
11907
|
};
|
|
11667
|
-
|
|
11908
|
+
getFactionWars: {
|
|
11668
11909
|
parameters: {
|
|
11669
11910
|
query?: {
|
|
11670
11911
|
/** @description Timestamp to bypass cache */
|
|
@@ -11694,7 +11935,7 @@ export interface operations {
|
|
|
11694
11935
|
};
|
|
11695
11936
|
};
|
|
11696
11937
|
};
|
|
11697
|
-
|
|
11938
|
+
getFactionLookup: {
|
|
11698
11939
|
parameters: {
|
|
11699
11940
|
query?: {
|
|
11700
11941
|
/** @description Timestamp to bypass cache */
|
|
@@ -11721,7 +11962,7 @@ export interface operations {
|
|
|
11721
11962
|
};
|
|
11722
11963
|
};
|
|
11723
11964
|
};
|
|
11724
|
-
|
|
11965
|
+
getFactionTimestamp: {
|
|
11725
11966
|
parameters: {
|
|
11726
11967
|
query?: {
|
|
11727
11968
|
/** @description Timestamp to bypass cache */
|
|
@@ -11748,7 +11989,7 @@ export interface operations {
|
|
|
11748
11989
|
};
|
|
11749
11990
|
};
|
|
11750
11991
|
};
|
|
11751
|
-
|
|
11992
|
+
getFactionGeneric: {
|
|
11752
11993
|
parameters: {
|
|
11753
11994
|
query?: {
|
|
11754
11995
|
/** @description Selection names */
|
|
@@ -11796,7 +12037,7 @@ export interface operations {
|
|
|
11796
12037
|
};
|
|
11797
12038
|
};
|
|
11798
12039
|
};
|
|
11799
|
-
|
|
12040
|
+
getForumCategories: {
|
|
11800
12041
|
parameters: {
|
|
11801
12042
|
query?: {
|
|
11802
12043
|
/** @description Timestamp to bypass cache */
|
|
@@ -11823,7 +12064,7 @@ export interface operations {
|
|
|
11823
12064
|
};
|
|
11824
12065
|
};
|
|
11825
12066
|
};
|
|
11826
|
-
|
|
12067
|
+
getForumThreadPosts: {
|
|
11827
12068
|
parameters: {
|
|
11828
12069
|
query?: {
|
|
11829
12070
|
/** @description Determines if fields include HTML or not ('Hospitalized by <a href=...>user</a>' vs 'Hospitalized by user'). */
|
|
@@ -11862,7 +12103,7 @@ export interface operations {
|
|
|
11862
12103
|
};
|
|
11863
12104
|
};
|
|
11864
12105
|
};
|
|
11865
|
-
|
|
12106
|
+
getForumThread: {
|
|
11866
12107
|
parameters: {
|
|
11867
12108
|
query?: {
|
|
11868
12109
|
/** @description Timestamp to bypass cache */
|
|
@@ -11892,7 +12133,7 @@ export interface operations {
|
|
|
11892
12133
|
};
|
|
11893
12134
|
};
|
|
11894
12135
|
};
|
|
11895
|
-
|
|
12136
|
+
getForumAllThreads: {
|
|
11896
12137
|
parameters: {
|
|
11897
12138
|
query?: {
|
|
11898
12139
|
limit?: components["parameters"]["ApiLimit100"];
|
|
@@ -11926,7 +12167,7 @@ export interface operations {
|
|
|
11926
12167
|
};
|
|
11927
12168
|
};
|
|
11928
12169
|
};
|
|
11929
|
-
|
|
12170
|
+
getForumThreads: {
|
|
11930
12171
|
parameters: {
|
|
11931
12172
|
query?: {
|
|
11932
12173
|
limit?: components["parameters"]["ApiLimit100"];
|
|
@@ -11963,7 +12204,7 @@ export interface operations {
|
|
|
11963
12204
|
};
|
|
11964
12205
|
};
|
|
11965
12206
|
};
|
|
11966
|
-
|
|
12207
|
+
getForumLookup: {
|
|
11967
12208
|
parameters: {
|
|
11968
12209
|
query?: {
|
|
11969
12210
|
/** @description Timestamp to bypass cache */
|
|
@@ -11990,7 +12231,7 @@ export interface operations {
|
|
|
11990
12231
|
};
|
|
11991
12232
|
};
|
|
11992
12233
|
};
|
|
11993
|
-
|
|
12234
|
+
getForumTimestamp: {
|
|
11994
12235
|
parameters: {
|
|
11995
12236
|
query?: {
|
|
11996
12237
|
/** @description Timestamp to bypass cache */
|
|
@@ -12017,7 +12258,7 @@ export interface operations {
|
|
|
12017
12258
|
};
|
|
12018
12259
|
};
|
|
12019
12260
|
};
|
|
12020
|
-
|
|
12261
|
+
getForumGeneric: {
|
|
12021
12262
|
parameters: {
|
|
12022
12263
|
query?: {
|
|
12023
12264
|
/** @description Selection names */
|
|
@@ -12058,7 +12299,7 @@ export interface operations {
|
|
|
12058
12299
|
};
|
|
12059
12300
|
};
|
|
12060
12301
|
};
|
|
12061
|
-
|
|
12302
|
+
getKeyLog: {
|
|
12062
12303
|
parameters: {
|
|
12063
12304
|
query?: {
|
|
12064
12305
|
limit?: components["parameters"]["ApiLimit100"];
|
|
@@ -12087,7 +12328,7 @@ export interface operations {
|
|
|
12087
12328
|
};
|
|
12088
12329
|
};
|
|
12089
12330
|
};
|
|
12090
|
-
|
|
12331
|
+
getKeyInfo: {
|
|
12091
12332
|
parameters: {
|
|
12092
12333
|
query?: {
|
|
12093
12334
|
/** @description Timestamp to bypass cache */
|
|
@@ -12114,7 +12355,7 @@ export interface operations {
|
|
|
12114
12355
|
};
|
|
12115
12356
|
};
|
|
12116
12357
|
};
|
|
12117
|
-
|
|
12358
|
+
getKeyGeneric: {
|
|
12118
12359
|
parameters: {
|
|
12119
12360
|
query?: {
|
|
12120
12361
|
/** @description Selection names */
|
|
@@ -12145,7 +12386,7 @@ export interface operations {
|
|
|
12145
12386
|
};
|
|
12146
12387
|
};
|
|
12147
12388
|
};
|
|
12148
|
-
|
|
12389
|
+
getMarketAuctionHouseListing: {
|
|
12149
12390
|
parameters: {
|
|
12150
12391
|
query?: {
|
|
12151
12392
|
/** @description Timestamp to bypass cache */
|
|
@@ -12175,7 +12416,7 @@ export interface operations {
|
|
|
12175
12416
|
};
|
|
12176
12417
|
};
|
|
12177
12418
|
};
|
|
12178
|
-
|
|
12419
|
+
getMarketAuctionHouseItem: {
|
|
12179
12420
|
parameters: {
|
|
12180
12421
|
query?: {
|
|
12181
12422
|
limit?: components["parameters"]["ApiLimit100Default20"];
|
|
@@ -12212,7 +12453,7 @@ export interface operations {
|
|
|
12212
12453
|
};
|
|
12213
12454
|
};
|
|
12214
12455
|
};
|
|
12215
|
-
|
|
12456
|
+
getMarketAuctionHouse: {
|
|
12216
12457
|
parameters: {
|
|
12217
12458
|
query?: {
|
|
12218
12459
|
limit?: components["parameters"]["ApiLimit100Default20"];
|
|
@@ -12246,7 +12487,7 @@ export interface operations {
|
|
|
12246
12487
|
};
|
|
12247
12488
|
};
|
|
12248
12489
|
};
|
|
12249
|
-
|
|
12490
|
+
getMarketBazaar: {
|
|
12250
12491
|
parameters: {
|
|
12251
12492
|
query?: {
|
|
12252
12493
|
/** @description Category of specialized bazaars returned */
|
|
@@ -12275,7 +12516,7 @@ export interface operations {
|
|
|
12275
12516
|
};
|
|
12276
12517
|
};
|
|
12277
12518
|
};
|
|
12278
|
-
|
|
12519
|
+
getMarketBazaarItem: {
|
|
12279
12520
|
parameters: {
|
|
12280
12521
|
query?: {
|
|
12281
12522
|
/** @description Timestamp to bypass cache */
|
|
@@ -12305,7 +12546,7 @@ export interface operations {
|
|
|
12305
12546
|
};
|
|
12306
12547
|
};
|
|
12307
12548
|
};
|
|
12308
|
-
|
|
12549
|
+
getMarketItemMarketItem: {
|
|
12309
12550
|
parameters: {
|
|
12310
12551
|
query?: {
|
|
12311
12552
|
/** @description Used to filter weapons with a specific bonus. */
|
|
@@ -12339,7 +12580,7 @@ export interface operations {
|
|
|
12339
12580
|
};
|
|
12340
12581
|
};
|
|
12341
12582
|
};
|
|
12342
|
-
|
|
12583
|
+
getMarketProperties: {
|
|
12343
12584
|
parameters: {
|
|
12344
12585
|
query?: {
|
|
12345
12586
|
offset?: components["parameters"]["ApiOffset"];
|
|
@@ -12373,7 +12614,7 @@ export interface operations {
|
|
|
12373
12614
|
};
|
|
12374
12615
|
};
|
|
12375
12616
|
};
|
|
12376
|
-
|
|
12617
|
+
getMarketPropertiesRental: {
|
|
12377
12618
|
parameters: {
|
|
12378
12619
|
query?: {
|
|
12379
12620
|
offset?: components["parameters"]["ApiOffset"];
|
|
@@ -12407,7 +12648,7 @@ export interface operations {
|
|
|
12407
12648
|
};
|
|
12408
12649
|
};
|
|
12409
12650
|
};
|
|
12410
|
-
|
|
12651
|
+
getMarketLookup: {
|
|
12411
12652
|
parameters: {
|
|
12412
12653
|
query?: {
|
|
12413
12654
|
/** @description Timestamp to bypass cache */
|
|
@@ -12434,7 +12675,7 @@ export interface operations {
|
|
|
12434
12675
|
};
|
|
12435
12676
|
};
|
|
12436
12677
|
};
|
|
12437
|
-
|
|
12678
|
+
getMarketTimestamp: {
|
|
12438
12679
|
parameters: {
|
|
12439
12680
|
query?: {
|
|
12440
12681
|
/** @description Timestamp to bypass cache */
|
|
@@ -12461,7 +12702,7 @@ export interface operations {
|
|
|
12461
12702
|
};
|
|
12462
12703
|
};
|
|
12463
12704
|
};
|
|
12464
|
-
|
|
12705
|
+
getMarketGeneric: {
|
|
12465
12706
|
parameters: {
|
|
12466
12707
|
query?: {
|
|
12467
12708
|
/** @description Selection names */
|
|
@@ -12502,7 +12743,7 @@ export interface operations {
|
|
|
12502
12743
|
};
|
|
12503
12744
|
};
|
|
12504
12745
|
};
|
|
12505
|
-
|
|
12746
|
+
getRacingCars: {
|
|
12506
12747
|
parameters: {
|
|
12507
12748
|
query?: {
|
|
12508
12749
|
/** @description Timestamp to bypass cache */
|
|
@@ -12529,7 +12770,7 @@ export interface operations {
|
|
|
12529
12770
|
};
|
|
12530
12771
|
};
|
|
12531
12772
|
};
|
|
12532
|
-
|
|
12773
|
+
getRacingCarUpgrades: {
|
|
12533
12774
|
parameters: {
|
|
12534
12775
|
query?: {
|
|
12535
12776
|
/** @description Timestamp to bypass cache */
|
|
@@ -12556,7 +12797,7 @@ export interface operations {
|
|
|
12556
12797
|
};
|
|
12557
12798
|
};
|
|
12558
12799
|
};
|
|
12559
|
-
|
|
12800
|
+
getRacingRaces: {
|
|
12560
12801
|
parameters: {
|
|
12561
12802
|
query?: {
|
|
12562
12803
|
limit?: components["parameters"]["ApiLimit100"];
|
|
@@ -12592,7 +12833,7 @@ export interface operations {
|
|
|
12592
12833
|
};
|
|
12593
12834
|
};
|
|
12594
12835
|
};
|
|
12595
|
-
|
|
12836
|
+
getRacingRaceDetails: {
|
|
12596
12837
|
parameters: {
|
|
12597
12838
|
query?: {
|
|
12598
12839
|
/** @description Timestamp to bypass cache */
|
|
@@ -12622,7 +12863,7 @@ export interface operations {
|
|
|
12622
12863
|
};
|
|
12623
12864
|
};
|
|
12624
12865
|
};
|
|
12625
|
-
|
|
12866
|
+
getRacingTrackRecords: {
|
|
12626
12867
|
parameters: {
|
|
12627
12868
|
query: {
|
|
12628
12869
|
/** @description Car class */
|
|
@@ -12654,7 +12895,7 @@ export interface operations {
|
|
|
12654
12895
|
};
|
|
12655
12896
|
};
|
|
12656
12897
|
};
|
|
12657
|
-
|
|
12898
|
+
getRacingTracks: {
|
|
12658
12899
|
parameters: {
|
|
12659
12900
|
query?: {
|
|
12660
12901
|
/** @description Timestamp to bypass cache */
|
|
@@ -12681,7 +12922,7 @@ export interface operations {
|
|
|
12681
12922
|
};
|
|
12682
12923
|
};
|
|
12683
12924
|
};
|
|
12684
|
-
|
|
12925
|
+
getRacingLookup: {
|
|
12685
12926
|
parameters: {
|
|
12686
12927
|
query?: {
|
|
12687
12928
|
/** @description Timestamp to bypass cache */
|
|
@@ -12708,7 +12949,7 @@ export interface operations {
|
|
|
12708
12949
|
};
|
|
12709
12950
|
};
|
|
12710
12951
|
};
|
|
12711
|
-
|
|
12952
|
+
getRacingTimestamp: {
|
|
12712
12953
|
parameters: {
|
|
12713
12954
|
query?: {
|
|
12714
12955
|
/** @description Timestamp to bypass cache */
|
|
@@ -12735,7 +12976,7 @@ export interface operations {
|
|
|
12735
12976
|
};
|
|
12736
12977
|
};
|
|
12737
12978
|
};
|
|
12738
|
-
|
|
12979
|
+
getRacingGeneric: {
|
|
12739
12980
|
parameters: {
|
|
12740
12981
|
query?: {
|
|
12741
12982
|
/** @description Selection names */
|
|
@@ -12776,7 +13017,7 @@ export interface operations {
|
|
|
12776
13017
|
};
|
|
12777
13018
|
};
|
|
12778
13019
|
};
|
|
12779
|
-
|
|
13020
|
+
getProperty: {
|
|
12780
13021
|
parameters: {
|
|
12781
13022
|
query?: {
|
|
12782
13023
|
/** @description Timestamp to bypass cache */
|
|
@@ -12806,7 +13047,7 @@ export interface operations {
|
|
|
12806
13047
|
};
|
|
12807
13048
|
};
|
|
12808
13049
|
};
|
|
12809
|
-
|
|
13050
|
+
getPropertyLookup: {
|
|
12810
13051
|
parameters: {
|
|
12811
13052
|
query?: {
|
|
12812
13053
|
/** @description Timestamp to bypass cache */
|
|
@@ -12833,7 +13074,7 @@ export interface operations {
|
|
|
12833
13074
|
};
|
|
12834
13075
|
};
|
|
12835
13076
|
};
|
|
12836
|
-
|
|
13077
|
+
getPropertyTimestamp: {
|
|
12837
13078
|
parameters: {
|
|
12838
13079
|
query?: {
|
|
12839
13080
|
/** @description Timestamp to bypass cache */
|
|
@@ -12860,7 +13101,7 @@ export interface operations {
|
|
|
12860
13101
|
};
|
|
12861
13102
|
};
|
|
12862
13103
|
};
|
|
12863
|
-
|
|
13104
|
+
getPropertyGeneric: {
|
|
12864
13105
|
parameters: {
|
|
12865
13106
|
query: {
|
|
12866
13107
|
/** @description Selection names */
|
|
@@ -12891,7 +13132,7 @@ export interface operations {
|
|
|
12891
13132
|
};
|
|
12892
13133
|
};
|
|
12893
13134
|
};
|
|
12894
|
-
|
|
13135
|
+
getTornAttackLog: {
|
|
12895
13136
|
parameters: {
|
|
12896
13137
|
query: {
|
|
12897
13138
|
/** @description Code of the attack log. E.g. d51ad4fe6be884b309b142e2d1d4f807 */
|
|
@@ -12925,7 +13166,7 @@ export interface operations {
|
|
|
12925
13166
|
};
|
|
12926
13167
|
};
|
|
12927
13168
|
};
|
|
12928
|
-
|
|
13169
|
+
getTornBounties: {
|
|
12929
13170
|
parameters: {
|
|
12930
13171
|
query?: {
|
|
12931
13172
|
limit?: components["parameters"]["ApiLimit100"];
|
|
@@ -12954,7 +13195,7 @@ export interface operations {
|
|
|
12954
13195
|
};
|
|
12955
13196
|
};
|
|
12956
13197
|
};
|
|
12957
|
-
|
|
13198
|
+
getTornCalendar: {
|
|
12958
13199
|
parameters: {
|
|
12959
13200
|
query?: {
|
|
12960
13201
|
/** @description Timestamp to bypass cache */
|
|
@@ -12981,7 +13222,7 @@ export interface operations {
|
|
|
12981
13222
|
};
|
|
12982
13223
|
};
|
|
12983
13224
|
};
|
|
12984
|
-
|
|
13225
|
+
getTornCrimes: {
|
|
12985
13226
|
parameters: {
|
|
12986
13227
|
query?: {
|
|
12987
13228
|
/** @description Timestamp to bypass cache */
|
|
@@ -13008,7 +13249,7 @@ export interface operations {
|
|
|
13008
13249
|
};
|
|
13009
13250
|
};
|
|
13010
13251
|
};
|
|
13011
|
-
|
|
13252
|
+
getTornEducation: {
|
|
13012
13253
|
parameters: {
|
|
13013
13254
|
query?: {
|
|
13014
13255
|
/** @description Timestamp to bypass cache */
|
|
@@ -13035,7 +13276,7 @@ export interface operations {
|
|
|
13035
13276
|
};
|
|
13036
13277
|
};
|
|
13037
13278
|
};
|
|
13038
|
-
|
|
13279
|
+
getTornElimination: {
|
|
13039
13280
|
parameters: {
|
|
13040
13281
|
query?: {
|
|
13041
13282
|
/** @description Timestamp to bypass cache */
|
|
@@ -13062,7 +13303,7 @@ export interface operations {
|
|
|
13062
13303
|
};
|
|
13063
13304
|
};
|
|
13064
13305
|
};
|
|
13065
|
-
|
|
13306
|
+
getTornEliminationTeam: {
|
|
13066
13307
|
parameters: {
|
|
13067
13308
|
query?: {
|
|
13068
13309
|
limit?: components["parameters"]["ApiLimit100"];
|
|
@@ -13094,7 +13335,7 @@ export interface operations {
|
|
|
13094
13335
|
};
|
|
13095
13336
|
};
|
|
13096
13337
|
};
|
|
13097
|
-
|
|
13338
|
+
getTornFactionHoF: {
|
|
13098
13339
|
parameters: {
|
|
13099
13340
|
query: {
|
|
13100
13341
|
limit?: components["parameters"]["ApiLimit100"];
|
|
@@ -13125,7 +13366,7 @@ export interface operations {
|
|
|
13125
13366
|
};
|
|
13126
13367
|
};
|
|
13127
13368
|
};
|
|
13128
|
-
|
|
13369
|
+
getTornFactionTree: {
|
|
13129
13370
|
parameters: {
|
|
13130
13371
|
query?: {
|
|
13131
13372
|
/** @description Timestamp to bypass cache */
|
|
@@ -13152,7 +13393,7 @@ export interface operations {
|
|
|
13152
13393
|
};
|
|
13153
13394
|
};
|
|
13154
13395
|
};
|
|
13155
|
-
|
|
13396
|
+
getTornHonors: {
|
|
13156
13397
|
parameters: {
|
|
13157
13398
|
query?: {
|
|
13158
13399
|
limit?: components["parameters"]["ApiLimitDefault20"];
|
|
@@ -13183,7 +13424,7 @@ export interface operations {
|
|
|
13183
13424
|
};
|
|
13184
13425
|
};
|
|
13185
13426
|
};
|
|
13186
|
-
|
|
13427
|
+
getTornHonorsSpecific: {
|
|
13187
13428
|
parameters: {
|
|
13188
13429
|
query?: {
|
|
13189
13430
|
/** @description Timestamp to bypass cache */
|
|
@@ -13213,7 +13454,7 @@ export interface operations {
|
|
|
13213
13454
|
};
|
|
13214
13455
|
};
|
|
13215
13456
|
};
|
|
13216
|
-
|
|
13457
|
+
getTornHoF: {
|
|
13217
13458
|
parameters: {
|
|
13218
13459
|
query: {
|
|
13219
13460
|
limit?: components["parameters"]["ApiLimit100"];
|
|
@@ -13244,7 +13485,7 @@ export interface operations {
|
|
|
13244
13485
|
};
|
|
13245
13486
|
};
|
|
13246
13487
|
};
|
|
13247
|
-
|
|
13488
|
+
getTornItemAmmo: {
|
|
13248
13489
|
parameters: {
|
|
13249
13490
|
query?: {
|
|
13250
13491
|
/** @description Timestamp to bypass cache */
|
|
@@ -13271,7 +13512,7 @@ export interface operations {
|
|
|
13271
13512
|
};
|
|
13272
13513
|
};
|
|
13273
13514
|
};
|
|
13274
|
-
|
|
13515
|
+
getTornItemDetails: {
|
|
13275
13516
|
parameters: {
|
|
13276
13517
|
query?: {
|
|
13277
13518
|
/** @description Timestamp to bypass cache */
|
|
@@ -13301,7 +13542,7 @@ export interface operations {
|
|
|
13301
13542
|
};
|
|
13302
13543
|
};
|
|
13303
13544
|
};
|
|
13304
|
-
|
|
13545
|
+
getTornItemMods: {
|
|
13305
13546
|
parameters: {
|
|
13306
13547
|
query?: {
|
|
13307
13548
|
/** @description Timestamp to bypass cache */
|
|
@@ -13328,7 +13569,7 @@ export interface operations {
|
|
|
13328
13569
|
};
|
|
13329
13570
|
};
|
|
13330
13571
|
};
|
|
13331
|
-
|
|
13572
|
+
getTornItems: {
|
|
13332
13573
|
parameters: {
|
|
13333
13574
|
query?: {
|
|
13334
13575
|
/** @description Item category type */
|
|
@@ -13359,7 +13600,7 @@ export interface operations {
|
|
|
13359
13600
|
};
|
|
13360
13601
|
};
|
|
13361
13602
|
};
|
|
13362
|
-
|
|
13603
|
+
getTornItemsSpecific: {
|
|
13363
13604
|
parameters: {
|
|
13364
13605
|
query?: {
|
|
13365
13606
|
/** @description Sort rows from newest to oldest<br>Default ordering is ascending */
|
|
@@ -13391,7 +13632,7 @@ export interface operations {
|
|
|
13391
13632
|
};
|
|
13392
13633
|
};
|
|
13393
13634
|
};
|
|
13394
|
-
|
|
13635
|
+
getTornLogCategories: {
|
|
13395
13636
|
parameters: {
|
|
13396
13637
|
query?: {
|
|
13397
13638
|
/** @description Timestamp to bypass cache */
|
|
@@ -13418,7 +13659,7 @@ export interface operations {
|
|
|
13418
13659
|
};
|
|
13419
13660
|
};
|
|
13420
13661
|
};
|
|
13421
|
-
|
|
13662
|
+
getTornLogTypes: {
|
|
13422
13663
|
parameters: {
|
|
13423
13664
|
query?: {
|
|
13424
13665
|
/** @description Timestamp to bypass cache */
|
|
@@ -13445,7 +13686,7 @@ export interface operations {
|
|
|
13445
13686
|
};
|
|
13446
13687
|
};
|
|
13447
13688
|
};
|
|
13448
|
-
|
|
13689
|
+
getTornLogTypesSpecific: {
|
|
13449
13690
|
parameters: {
|
|
13450
13691
|
query?: {
|
|
13451
13692
|
/** @description Timestamp to bypass cache */
|
|
@@ -13475,7 +13716,7 @@ export interface operations {
|
|
|
13475
13716
|
};
|
|
13476
13717
|
};
|
|
13477
13718
|
};
|
|
13478
|
-
|
|
13719
|
+
getTornMedals: {
|
|
13479
13720
|
parameters: {
|
|
13480
13721
|
query?: {
|
|
13481
13722
|
/** @description Timestamp to bypass cache */
|
|
@@ -13502,7 +13743,7 @@ export interface operations {
|
|
|
13502
13743
|
};
|
|
13503
13744
|
};
|
|
13504
13745
|
};
|
|
13505
|
-
|
|
13746
|
+
getTornMedalsSpecific: {
|
|
13506
13747
|
parameters: {
|
|
13507
13748
|
query?: {
|
|
13508
13749
|
/** @description Timestamp to bypass cache */
|
|
@@ -13532,7 +13773,7 @@ export interface operations {
|
|
|
13532
13773
|
};
|
|
13533
13774
|
};
|
|
13534
13775
|
};
|
|
13535
|
-
|
|
13776
|
+
getTornMerits: {
|
|
13536
13777
|
parameters: {
|
|
13537
13778
|
query?: {
|
|
13538
13779
|
/** @description Timestamp to bypass cache */
|
|
@@ -13559,7 +13800,7 @@ export interface operations {
|
|
|
13559
13800
|
};
|
|
13560
13801
|
};
|
|
13561
13802
|
};
|
|
13562
|
-
|
|
13803
|
+
getTornOrganizedCrimes: {
|
|
13563
13804
|
parameters: {
|
|
13564
13805
|
query?: {
|
|
13565
13806
|
/** @description Timestamp to bypass cache */
|
|
@@ -13586,7 +13827,7 @@ export interface operations {
|
|
|
13586
13827
|
};
|
|
13587
13828
|
};
|
|
13588
13829
|
};
|
|
13589
|
-
|
|
13830
|
+
getTornProperties: {
|
|
13590
13831
|
parameters: {
|
|
13591
13832
|
query?: {
|
|
13592
13833
|
/** @description Timestamp to bypass cache */
|
|
@@ -13613,7 +13854,7 @@ export interface operations {
|
|
|
13613
13854
|
};
|
|
13614
13855
|
};
|
|
13615
13856
|
};
|
|
13616
|
-
|
|
13857
|
+
getTornSubcrimes: {
|
|
13617
13858
|
parameters: {
|
|
13618
13859
|
query?: {
|
|
13619
13860
|
/** @description Timestamp to bypass cache */
|
|
@@ -13643,7 +13884,7 @@ export interface operations {
|
|
|
13643
13884
|
};
|
|
13644
13885
|
};
|
|
13645
13886
|
};
|
|
13646
|
-
|
|
13887
|
+
getTornTerritory: {
|
|
13647
13888
|
parameters: {
|
|
13648
13889
|
query?: {
|
|
13649
13890
|
/** @description Specific territory id or a list of territory ids (comma separated) */
|
|
@@ -13674,7 +13915,7 @@ export interface operations {
|
|
|
13674
13915
|
};
|
|
13675
13916
|
};
|
|
13676
13917
|
};
|
|
13677
|
-
|
|
13918
|
+
getTornLookup: {
|
|
13678
13919
|
parameters: {
|
|
13679
13920
|
query?: {
|
|
13680
13921
|
/** @description Timestamp to bypass cache */
|
|
@@ -13701,7 +13942,7 @@ export interface operations {
|
|
|
13701
13942
|
};
|
|
13702
13943
|
};
|
|
13703
13944
|
};
|
|
13704
|
-
|
|
13945
|
+
getTornTimestamp: {
|
|
13705
13946
|
parameters: {
|
|
13706
13947
|
query?: {
|
|
13707
13948
|
/** @description Timestamp to bypass cache */
|
|
@@ -13728,7 +13969,7 @@ export interface operations {
|
|
|
13728
13969
|
};
|
|
13729
13970
|
};
|
|
13730
13971
|
};
|
|
13731
|
-
|
|
13972
|
+
getTornGeneric: {
|
|
13732
13973
|
parameters: {
|
|
13733
13974
|
query?: {
|
|
13734
13975
|
/** @description Selection names */
|