torn-client 0.2.2 → 0.2.4
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.mts +248 -6
- package/dist/index.d.ts +248 -6
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1382,7 +1382,7 @@ type HofValueString = {
|
|
|
1382
1382
|
type HonorId = number;
|
|
1383
1383
|
|
|
1384
1384
|
/** @category Models */
|
|
1385
|
-
type HonorRarityEnum = "Extremely Rare" | "Very Rare" | "Rare" | "Limited" | "Uncommon" | "Common" | "Very Common" | "Unknown";
|
|
1385
|
+
type HonorRarityEnum = "Extremely Rare" | "Very Rare" | "Rare" | "Limited" | "Uncommon" | "Common" | "Very Common" | "Unknown" | "Unknown Rarity";
|
|
1386
1386
|
|
|
1387
1387
|
/** @category Models */
|
|
1388
1388
|
type HonorTypeEnum = "attacking" | "camo" | "weapons" | "education" | "crimes" | "drugs" | "jail" | "hospital" | "travel" | "gym" | "level" | "competitions" | "money" | "items" | "commitment" | "casino" | "missions" | "misc" | "default";
|
|
@@ -1466,6 +1466,9 @@ type JobPositionLawEnum = "Law Student" | "Paralegal" | "Probate Lawyer" | "Tria
|
|
|
1466
1466
|
/** @category Models */
|
|
1467
1467
|
type JobPositionMedicalEnum = "Medical Student" | "Houseman" | "Senior Houseman" | "GP" | "Consultant" | "Surgeon" | "Brain Surgeon";
|
|
1468
1468
|
|
|
1469
|
+
/** @category Models */
|
|
1470
|
+
type JobTypeEnum = "Army" | "Casino" | "Education" | "Grocer" | "Law" | "Medical";
|
|
1471
|
+
|
|
1469
1472
|
/** @category Models */
|
|
1470
1473
|
type KeyInfoAvailableLog = {
|
|
1471
1474
|
category_id: LogCategoryId;
|
|
@@ -2230,6 +2233,17 @@ type PersonalStatsTravelPopular = {
|
|
|
2230
2233
|
};
|
|
2231
2234
|
};
|
|
2232
2235
|
|
|
2236
|
+
/**
|
|
2237
|
+
* The property 'days_married' is not present if the status is 'Engaged'
|
|
2238
|
+
* @category Models
|
|
2239
|
+
*/
|
|
2240
|
+
type ProfileSpouse = {
|
|
2241
|
+
id: UserId;
|
|
2242
|
+
name: string;
|
|
2243
|
+
status: UserMaritalStatusEnum;
|
|
2244
|
+
days_married?: number;
|
|
2245
|
+
};
|
|
2246
|
+
|
|
2233
2247
|
/** @category Models */
|
|
2234
2248
|
type PropertyId = number;
|
|
2235
2249
|
|
|
@@ -2813,7 +2827,7 @@ type TornHofBasic = {
|
|
|
2813
2827
|
faction_id: FactionId;
|
|
2814
2828
|
level: number;
|
|
2815
2829
|
last_action: number;
|
|
2816
|
-
rank_name:
|
|
2830
|
+
rank_name: UserRankEnum;
|
|
2817
2831
|
rank_number: number;
|
|
2818
2832
|
position: number;
|
|
2819
2833
|
signed_up: number;
|
|
@@ -3288,6 +3302,17 @@ type UserCalendarResponse = {
|
|
|
3288
3302
|
calendar: UserCalendar;
|
|
3289
3303
|
};
|
|
3290
3304
|
|
|
3305
|
+
/** @category Models */
|
|
3306
|
+
type UserCompany = {
|
|
3307
|
+
type: "company";
|
|
3308
|
+
id: CompanyId;
|
|
3309
|
+
type_id: CompanyTypeId;
|
|
3310
|
+
name: string;
|
|
3311
|
+
rating: number;
|
|
3312
|
+
position: string;
|
|
3313
|
+
days_in_company: number;
|
|
3314
|
+
};
|
|
3315
|
+
|
|
3291
3316
|
/** @category Models */
|
|
3292
3317
|
type UserCompanyPoints = {
|
|
3293
3318
|
company: {
|
|
@@ -3297,6 +3322,38 @@ type UserCompanyPoints = {
|
|
|
3297
3322
|
points: number;
|
|
3298
3323
|
};
|
|
3299
3324
|
|
|
3325
|
+
/** @category Models */
|
|
3326
|
+
type UserCompetitionEasterEggs = {
|
|
3327
|
+
name: "Easter Egg Hunt";
|
|
3328
|
+
score: number;
|
|
3329
|
+
total: number;
|
|
3330
|
+
};
|
|
3331
|
+
|
|
3332
|
+
/** @category Models */
|
|
3333
|
+
type UserCompetitionHalloween = {
|
|
3334
|
+
name: "Halloween";
|
|
3335
|
+
treats_collected: number;
|
|
3336
|
+
basket: {
|
|
3337
|
+
id: ItemId;
|
|
3338
|
+
name: string;
|
|
3339
|
+
};
|
|
3340
|
+
};
|
|
3341
|
+
|
|
3342
|
+
/** @category Models */
|
|
3343
|
+
type UserCompetitionResponse = {
|
|
3344
|
+
competition: UserCompetitionHalloween | UserCompetitionEasterEggs | UserCompetitionRps;
|
|
3345
|
+
};
|
|
3346
|
+
|
|
3347
|
+
/** @category Models */
|
|
3348
|
+
type UserCompetitionRps = {
|
|
3349
|
+
name: "Rock, Paper, Scissors";
|
|
3350
|
+
status: UserRpsStatus;
|
|
3351
|
+
hp: {
|
|
3352
|
+
current: number;
|
|
3353
|
+
maximum: number;
|
|
3354
|
+
};
|
|
3355
|
+
};
|
|
3356
|
+
|
|
3300
3357
|
/** @category Models */
|
|
3301
3358
|
type UserCrime = {
|
|
3302
3359
|
nerve_spent: number;
|
|
@@ -3478,6 +3535,9 @@ type UserCurrentEducation = {
|
|
|
3478
3535
|
until: number;
|
|
3479
3536
|
};
|
|
3480
3537
|
|
|
3538
|
+
/** @category Models */
|
|
3539
|
+
type UserDonatorStatusEnum = "Donator" | "Subscriber";
|
|
3540
|
+
|
|
3481
3541
|
/** @category Models */
|
|
3482
3542
|
type UserEducation = {
|
|
3483
3543
|
complete: EducationId[];
|
|
@@ -3494,6 +3554,16 @@ type UserEnlistedCarsResponse = {
|
|
|
3494
3554
|
enlistedcars: UserRaceCarDetails[];
|
|
3495
3555
|
};
|
|
3496
3556
|
|
|
3557
|
+
/** @category Models */
|
|
3558
|
+
type UserFaction = {
|
|
3559
|
+
id: FactionId;
|
|
3560
|
+
name: string;
|
|
3561
|
+
tag: string;
|
|
3562
|
+
tag_image: string;
|
|
3563
|
+
position: string;
|
|
3564
|
+
days_in_faction: number;
|
|
3565
|
+
};
|
|
3566
|
+
|
|
3497
3567
|
/** @category Models */
|
|
3498
3568
|
type UserFactionBalance = {
|
|
3499
3569
|
money: number;
|
|
@@ -3505,6 +3575,11 @@ type UserFactionBalanceResponse = {
|
|
|
3505
3575
|
factionBalance: UserFactionBalance | unknown;
|
|
3506
3576
|
};
|
|
3507
3577
|
|
|
3578
|
+
/** @category Models */
|
|
3579
|
+
type UserFactionResponse = {
|
|
3580
|
+
faction: UserFaction | unknown;
|
|
3581
|
+
};
|
|
3582
|
+
|
|
3508
3583
|
/** @category Models */
|
|
3509
3584
|
type UserForumFeedResponse = {
|
|
3510
3585
|
forumFeed: ForumFeed[];
|
|
@@ -3570,6 +3645,26 @@ type UserHonorsResponse = {
|
|
|
3570
3645
|
honors: UserHonor[];
|
|
3571
3646
|
};
|
|
3572
3647
|
|
|
3648
|
+
/** @category Models */
|
|
3649
|
+
type UserIconId = number;
|
|
3650
|
+
|
|
3651
|
+
/** @category Models */
|
|
3652
|
+
type UserIconPrivate = UserIconPublic & {
|
|
3653
|
+
until: number | unknown;
|
|
3654
|
+
};
|
|
3655
|
+
|
|
3656
|
+
/** @category Models */
|
|
3657
|
+
type UserIconPublic = {
|
|
3658
|
+
id: UserIconId;
|
|
3659
|
+
title: string;
|
|
3660
|
+
description: string;
|
|
3661
|
+
};
|
|
3662
|
+
|
|
3663
|
+
/** @category Models */
|
|
3664
|
+
type UserIconsResponse = {
|
|
3665
|
+
icons: UserIconPrivate[] | UserIconPublic[];
|
|
3666
|
+
};
|
|
3667
|
+
|
|
3573
3668
|
/** @category Models */
|
|
3574
3669
|
type UserId = number;
|
|
3575
3670
|
|
|
@@ -3601,6 +3696,13 @@ type UserItemMarketResponse = {
|
|
|
3601
3696
|
_metadata: RequestMetadataWithLinks;
|
|
3602
3697
|
};
|
|
3603
3698
|
|
|
3699
|
+
/** @category Models */
|
|
3700
|
+
type UserJob = {
|
|
3701
|
+
type: "job";
|
|
3702
|
+
name: JobTypeEnum;
|
|
3703
|
+
position: JobPositionArmyEnum | JobPositionGrocerEnum | JobPositionCasinoEnum | JobPositionMedicalEnum | JobPositionLawEnum | JobPositionEducationEnum;
|
|
3704
|
+
};
|
|
3705
|
+
|
|
3604
3706
|
/** @category Models */
|
|
3605
3707
|
type UserJobPointsResponse = {
|
|
3606
3708
|
jobpoints: {
|
|
@@ -3631,6 +3733,11 @@ type UserJobRanksResponse = {
|
|
|
3631
3733
|
jobranks: UserJobRanks;
|
|
3632
3734
|
};
|
|
3633
3735
|
|
|
3736
|
+
/** @category Models */
|
|
3737
|
+
type UserJobResponse = {
|
|
3738
|
+
job: UserJob | UserCompany | unknown;
|
|
3739
|
+
};
|
|
3740
|
+
|
|
3634
3741
|
/**
|
|
3635
3742
|
* Details about a user's last action.
|
|
3636
3743
|
* @category Models
|
|
@@ -3687,6 +3794,9 @@ type UserLookupResponse = {
|
|
|
3687
3794
|
selections: UserSelectionName[];
|
|
3688
3795
|
};
|
|
3689
3796
|
|
|
3797
|
+
/** @category Models */
|
|
3798
|
+
type UserMaritalStatusEnum = "Engaged" | "Newlywed" | "Married";
|
|
3799
|
+
|
|
3690
3800
|
/** @category Models */
|
|
3691
3801
|
type UserMedal = {
|
|
3692
3802
|
id: MedalId;
|
|
@@ -3738,9 +3848,15 @@ type UserMoneyResponse = {
|
|
|
3738
3848
|
};
|
|
3739
3849
|
};
|
|
3740
3850
|
|
|
3851
|
+
/** @category Models */
|
|
3852
|
+
type UserOrganizedCrimeError = {
|
|
3853
|
+
code: number;
|
|
3854
|
+
error: string;
|
|
3855
|
+
};
|
|
3856
|
+
|
|
3741
3857
|
/** @category Models */
|
|
3742
3858
|
type UserOrganizedCrimeResponse = {
|
|
3743
|
-
organizedCrime: FactionCrime | unknown;
|
|
3859
|
+
organizedCrime: FactionCrime | UserOrganizedCrimeError | unknown;
|
|
3744
3860
|
};
|
|
3745
3861
|
|
|
3746
3862
|
/**
|
|
@@ -3774,6 +3890,45 @@ type UserPersonalStatsPopular = {
|
|
|
3774
3890
|
/** @category Models */
|
|
3775
3891
|
type UserPersonalStatsResponse = UserPersonalStatsFull | UserPersonalStatsFullPublic | UserPersonalStatsPopular | UserPersonalStatsCategory | UserPersonalStatsHistoric;
|
|
3776
3892
|
|
|
3893
|
+
/** @category Models */
|
|
3894
|
+
type UserPlaneImageTypeEnum = "private_jet" | "light_aircraft" | "airliner";
|
|
3895
|
+
|
|
3896
|
+
/** @category Models */
|
|
3897
|
+
type UserProfileResponse = {
|
|
3898
|
+
profile: {
|
|
3899
|
+
id: UserId;
|
|
3900
|
+
name: string;
|
|
3901
|
+
level: number;
|
|
3902
|
+
rank: UserRankEnum;
|
|
3903
|
+
title: UserTitleEnum;
|
|
3904
|
+
donator_status: UserDonatorStatusEnum | unknown;
|
|
3905
|
+
age: number;
|
|
3906
|
+
signed_up: number;
|
|
3907
|
+
faction_id: FactionId | unknown;
|
|
3908
|
+
honor_id: HonorId;
|
|
3909
|
+
property: {
|
|
3910
|
+
id: PropertyId;
|
|
3911
|
+
name: string;
|
|
3912
|
+
};
|
|
3913
|
+
image: string | unknown;
|
|
3914
|
+
gender: UserGenderEnum;
|
|
3915
|
+
revivable: boolean;
|
|
3916
|
+
role: UserRoleEnum;
|
|
3917
|
+
status: UserStatus;
|
|
3918
|
+
spouse: ProfileSpouse | unknown;
|
|
3919
|
+
awards: number;
|
|
3920
|
+
friends: number;
|
|
3921
|
+
enemies: number;
|
|
3922
|
+
forum_posts: number;
|
|
3923
|
+
karma: number;
|
|
3924
|
+
last_action: UserLastAction;
|
|
3925
|
+
life: {
|
|
3926
|
+
current: number;
|
|
3927
|
+
maximum: number;
|
|
3928
|
+
};
|
|
3929
|
+
};
|
|
3930
|
+
};
|
|
3931
|
+
|
|
3777
3932
|
/** @category Models */
|
|
3778
3933
|
type UserPropertiesResponse = {
|
|
3779
3934
|
properties: UserPropertyBasicDetails | UserPropertyDetailsExtended | UserPropertyDetailsExtendedRented | UserPropertyDetailsExtendedForRent | UserPropertyDetailsExtendedForSale[];
|
|
@@ -3888,10 +4043,19 @@ type UserRacingRecordsResponse = {
|
|
|
3888
4043
|
};
|
|
3889
4044
|
|
|
3890
4045
|
/** @category Models */
|
|
3891
|
-
type
|
|
4046
|
+
type UserRankEnum = "Absolute beginner" | "Beginner" | "Inexperienced" | "Rookie" | "Novice" | "Below average" | "Average" | "Reasonable" | "Above average" | "Competent" | "Highly competent" | "Veteran" | "Distinguished" | "Highly distinguished" | "Professional" | "Star" | "Master" | "Outstanding" | "Celebrity" | "Supreme" | "Idolized" | "Champion" | "Heroic" | "Legendary" | "Elite" | "Invincible";
|
|
3892
4047
|
|
|
3893
4048
|
/** @category Models */
|
|
3894
|
-
type
|
|
4049
|
+
type UserResponse = UserCrimesResponse | UserRacesResponse | UserEnlistedCarsResponse | UserForumPostsResponse | UserForumThreadsResponse | UserForumSubscribedThreadsResponse | UserForumFeedResponse | UserForumFriendsResponse | UserHofResponse | UserCalendarResponse | UserRacingRecordsResponse | UserEducationResponse | UserBountiesResponse | UserJobRanksResponse | UserPropertiesResponse | UserFactionBalanceResponse | UserBasicResponse | RevivesResponse | UserHonorsResponse | UserMedalsResponse | UserMeritsResponse | RevivesFullResponse | UserProfileResponse | UserJobResponse | UserFactionResponse | UserCompetitionResponse | UserIconsResponse | UserItemMarketResponse | UserListResponse | UserPersonalStatsResponse | UserOrganizedCrimeResponse | FactionAttacksResponse | FactionAttacksFullResponse | UserMoneyResponse | UserJobPointsResponse | UserWorkStatsResponse | UserSkillsResponse | UserBattleStatsResponse | UserLookupResponse | TimestampResponse;
|
|
4050
|
+
|
|
4051
|
+
/** @category Models */
|
|
4052
|
+
type UserRoleEnum = "Admin" | "Officer" | "Moderator" | "Helper" | "Tester" | "NPC" | "Committee" | "Reporter" | "Wiki Contributor" | "Wiki Editor" | "Civilian";
|
|
4053
|
+
|
|
4054
|
+
/** @category Models */
|
|
4055
|
+
type UserRpsStatus = "scissors" | "rock" | "paper";
|
|
4056
|
+
|
|
4057
|
+
/** @category Models */
|
|
4058
|
+
type UserSelectionName = "attacks" | "attacksfull" | "basic" | "battlestats" | "bounties" | "calendar" | "competition" | "crimes" | "enlistedcars" | "faction" | "factionbalance" | "forumfeed" | "forumfriends" | "forumposts" | "forumsubscribedthreads" | "forumthreads" | "hof" | "honors" | "icons" | "itemmarket" | "job" | "jobpoints" | "jobranks" | "list" | "log" | "lookup" | "medals" | "merits" | "money" | "organizedcrime" | "personalstats" | "profile" | "properties" | "property" | "races" | "racingrecords" | "reports" | "revives" | "revivesfull" | "skills" | "timestamp" | "workstats" | "ammo" | "bars" | "bazaar" | "cooldowns" | "criminalrecord" | "discord" | "display" | "education" | "equipment" | "events" | "gym" | "inventory" | "messages" | "missions" | "networth" | "newevents" | "newmessages" | "notifications" | "perks" | "refills" | "stocks" | "travel" | "weaponexp" | string;
|
|
3895
4059
|
|
|
3896
4060
|
/** @category Models */
|
|
3897
4061
|
type UserSkillDetail = {
|
|
@@ -3916,7 +4080,10 @@ type UserStatus = {
|
|
|
3916
4080
|
description: string;
|
|
3917
4081
|
details: string | unknown;
|
|
3918
4082
|
state: string;
|
|
4083
|
+
color: string;
|
|
3919
4084
|
until: number | unknown;
|
|
4085
|
+
travel_type?: string;
|
|
4086
|
+
plane_image_type?: UserPlaneImageTypeEnum;
|
|
3920
4087
|
};
|
|
3921
4088
|
|
|
3922
4089
|
/** @category Models */
|
|
@@ -3927,6 +4094,9 @@ type UserSubcrime = {
|
|
|
3927
4094
|
fail: number;
|
|
3928
4095
|
};
|
|
3929
4096
|
|
|
4097
|
+
/** @category Models */
|
|
4098
|
+
type UserTitleEnum = "Alcoholic" | "Sharpshooter" | "Accomplice" | "Loser" | "Silent Killer" | "Killer" | "Merchant" | "Medalist" | "Tycoon" | "Damage Dealer" | "Slayer" | "Hired Gun" | "Egotist" | "Outcast" | "Punchbag" | "Tank" | "Antagonist" | "Druggy" | "Scavenger" | "Boxer" | "Importer" | "Looter" | "Samaritan" | "Felon" | "Socialite" | "Mercenary" | "Investor" | "Thief" | "One Hit Killer" | "Mobster" | "Addict" | "Bonds Agent" | "Buster" | "Hoarder" | "Racer" | "Soldier" | "Avenger" | "Healer" | "Booster" | "Intimidator" | "Trader" | "Jobsworth" | "Tourist" | "Nudist" | "Sage" | "Coward" | "Newcomer" | "Deserter";
|
|
4099
|
+
|
|
3930
4100
|
/** @category Models */
|
|
3931
4101
|
type UserWorkStatsResponse = {
|
|
3932
4102
|
workstats: {
|
|
@@ -5145,6 +5315,13 @@ declare class UserEndpoint {
|
|
|
5145
5315
|
calendar(params?: {
|
|
5146
5316
|
timestamp?: string;
|
|
5147
5317
|
}): Promise<UserCalendarResponse>;
|
|
5318
|
+
/**
|
|
5319
|
+
* Get your competition information
|
|
5320
|
+
* @param params - Optional query parameters
|
|
5321
|
+
*/
|
|
5322
|
+
competition(params?: {
|
|
5323
|
+
timestamp?: string;
|
|
5324
|
+
}): Promise<UserCompetitionResponse>;
|
|
5148
5325
|
/**
|
|
5149
5326
|
* Get your education information
|
|
5150
5327
|
* @param params - Optional query parameters
|
|
@@ -5159,6 +5336,13 @@ declare class UserEndpoint {
|
|
|
5159
5336
|
enlistedcars(params?: {
|
|
5160
5337
|
timestamp?: string;
|
|
5161
5338
|
}): Promise<UserEnlistedCarsResponse>;
|
|
5339
|
+
/**
|
|
5340
|
+
* Get your faction information
|
|
5341
|
+
* @param params - Optional query parameters
|
|
5342
|
+
*/
|
|
5343
|
+
faction(params?: {
|
|
5344
|
+
timestamp?: string;
|
|
5345
|
+
}): Promise<UserFactionResponse>;
|
|
5162
5346
|
/**
|
|
5163
5347
|
* Deprecated. Use user/money instead
|
|
5164
5348
|
* @param params - Optional query parameters
|
|
@@ -5224,6 +5408,13 @@ declare class UserEndpoint {
|
|
|
5224
5408
|
honors(params?: {
|
|
5225
5409
|
timestamp?: string;
|
|
5226
5410
|
}): Promise<UserHonorsResponse>;
|
|
5411
|
+
/**
|
|
5412
|
+
* Get your icons information
|
|
5413
|
+
* @param params - Optional query parameters
|
|
5414
|
+
*/
|
|
5415
|
+
icons(params?: {
|
|
5416
|
+
timestamp?: string;
|
|
5417
|
+
}): Promise<UserIconsResponse>;
|
|
5227
5418
|
/**
|
|
5228
5419
|
* Get your item market listings for a specific item
|
|
5229
5420
|
* @param params - Optional query parameters
|
|
@@ -5232,6 +5423,13 @@ declare class UserEndpoint {
|
|
|
5232
5423
|
offset?: number;
|
|
5233
5424
|
timestamp?: string;
|
|
5234
5425
|
}): Promise<PaginatedResponse<UserItemMarketResponse> & UserItemMarketResponse>;
|
|
5426
|
+
/**
|
|
5427
|
+
* Get your job information
|
|
5428
|
+
* @param params - Optional query parameters
|
|
5429
|
+
*/
|
|
5430
|
+
job(params?: {
|
|
5431
|
+
timestamp?: string;
|
|
5432
|
+
}): Promise<UserJobResponse>;
|
|
5235
5433
|
/**
|
|
5236
5434
|
* Get your jobpoints
|
|
5237
5435
|
* @param params - Optional query parameters
|
|
@@ -5306,6 +5504,14 @@ declare class UserEndpoint {
|
|
|
5306
5504
|
stat?: PersonalStatsStatName[];
|
|
5307
5505
|
timestamp?: number;
|
|
5308
5506
|
}): Promise<UserPersonalStatsResponse>;
|
|
5507
|
+
/**
|
|
5508
|
+
* Get your own profile
|
|
5509
|
+
* @param params - Optional query parameters
|
|
5510
|
+
*/
|
|
5511
|
+
profile(params?: {
|
|
5512
|
+
striptags?: "true" | "false";
|
|
5513
|
+
timestamp?: string;
|
|
5514
|
+
}): Promise<UserProfileResponse>;
|
|
5309
5515
|
/**
|
|
5310
5516
|
* Get your own properties
|
|
5311
5517
|
* @param params - Optional query parameters
|
|
@@ -5453,6 +5659,20 @@ declare class UserIdContext {
|
|
|
5453
5659
|
bounties(params?: {
|
|
5454
5660
|
timestamp?: string;
|
|
5455
5661
|
}): Promise<UserBountiesResponse>;
|
|
5662
|
+
/**
|
|
5663
|
+
* Get competition information for a specific player
|
|
5664
|
+
* @param params - Optional query parameters
|
|
5665
|
+
*/
|
|
5666
|
+
competition(params?: {
|
|
5667
|
+
timestamp?: string;
|
|
5668
|
+
}): Promise<UserCompetitionResponse>;
|
|
5669
|
+
/**
|
|
5670
|
+
* Get faction information for a specific player
|
|
5671
|
+
* @param params - Optional query parameters
|
|
5672
|
+
*/
|
|
5673
|
+
faction(params?: {
|
|
5674
|
+
timestamp?: string;
|
|
5675
|
+
}): Promise<UserFactionResponse>;
|
|
5456
5676
|
/**
|
|
5457
5677
|
* Get posts for a specific player
|
|
5458
5678
|
* @param params - Optional query parameters
|
|
@@ -5483,6 +5703,20 @@ declare class UserIdContext {
|
|
|
5483
5703
|
hof(params?: {
|
|
5484
5704
|
timestamp?: string;
|
|
5485
5705
|
}): Promise<UserHofResponse>;
|
|
5706
|
+
/**
|
|
5707
|
+
* Get icons information for a specific player
|
|
5708
|
+
* @param params - Optional query parameters
|
|
5709
|
+
*/
|
|
5710
|
+
icons(params?: {
|
|
5711
|
+
timestamp?: string;
|
|
5712
|
+
}): Promise<UserIconsResponse>;
|
|
5713
|
+
/**
|
|
5714
|
+
* Get job information for a specific player
|
|
5715
|
+
* @param params - Optional query parameters
|
|
5716
|
+
*/
|
|
5717
|
+
job(params?: {
|
|
5718
|
+
timestamp?: string;
|
|
5719
|
+
}): Promise<UserJobResponse>;
|
|
5486
5720
|
/**
|
|
5487
5721
|
* Get a player's personal stats
|
|
5488
5722
|
* @param params - Optional query parameters
|
|
@@ -5492,6 +5726,14 @@ declare class UserIdContext {
|
|
|
5492
5726
|
stat?: PersonalStatsStatName[];
|
|
5493
5727
|
timestamp?: number;
|
|
5494
5728
|
}): Promise<UserPersonalStatsResponse>;
|
|
5729
|
+
/**
|
|
5730
|
+
* Get profile information for a specific player
|
|
5731
|
+
* @param params - Optional query parameters
|
|
5732
|
+
*/
|
|
5733
|
+
profile(params?: {
|
|
5734
|
+
striptags?: "true" | "false";
|
|
5735
|
+
timestamp?: string;
|
|
5736
|
+
}): Promise<UserProfileResponse>;
|
|
5495
5737
|
/**
|
|
5496
5738
|
* Get specific user's properties
|
|
5497
5739
|
* @param params - Optional query parameters
|
|
@@ -5668,4 +5910,4 @@ declare class TornRateLimitError extends Error {
|
|
|
5668
5910
|
constructor(message: string);
|
|
5669
5911
|
}
|
|
5670
5912
|
|
|
5671
|
-
export { type AmmoId, type ApiKeyAccessTypeEnum, type ApiKeyBalancing, type Attack, type AttackActionEnum, type AttackCode, type AttackFinishingHitEffect, type AttackId, type AttackLog, type AttackLogResponse, type AttackLogSummary, type AttackPlayer, type AttackPlayerFaction, type AttackPlayerSimplified, type AttackSimplified, type AttackingFinishingHitEffects, type BasicProperty, type BasicUser, type Bazaar, type BazaarAdvancedItemSales, type BazaarBargainSales, type BazaarBulkSales, type BazaarDollarSales, type BazaarRecentFavorites, type BazaarResponse, type BazaarResponseSpecialized, type BazaarSpecialized, type BazaarTotalFavorites, type BazaarWeekly, type BazaarWeeklyCustomers, type BazaarWeeklyIncome, type Bounty, type ChainId, type CompanyId, type CompanyTypeId, type CountryEnum, type DirtyBombId, type EducationId, type Faction, type FactionApplication, type FactionApplicationStatusEnum, type FactionApplicationsResponse, type FactionAttackResult, type FactionAttacksFullResponse, type FactionAttacksResponse, type FactionBalance, type FactionBalanceResponse, type FactionBasic, type FactionBasicResponse, type FactionBranchDetails, type FactionBranchId, type FactionBranchStateEnum, type FactionChain, FactionChainIdContext, type FactionChainReport, type FactionChainReportAttacker, type FactionChainReportAttackerAttacks, type FactionChainReportAttackerRespect, type FactionChainReportBonus, type FactionChainReportDetails, type FactionChainReportResponse, type FactionChainWarfare, type FactionChainsResponse, type FactionContributor, type FactionContributorsResponse, type FactionCrime, type FactionCrimeId, FactionCrimeIdContext, type FactionCrimeItemOutcomeEnum, type FactionCrimeResponse, type FactionCrimeReward, type FactionCrimeRewardItem, type FactionCrimeRewardPayout, type FactionCrimeSlot, type FactionCrimeStatusEnum, type FactionCrimeUser, type FactionCrimeUserItemOutcome, type FactionCrimeUserItemOutcomeEnum, type FactionCrimeUserOutcome, type FactionCrimesResponse, FactionEndpoint, type FactionHofResponse, type FactionHofStats, type FactionHofValues, type FactionId, FactionIdContext, type FactionLookupResponse, type FactionMember, type FactionMembersResponse, type FactionNews, type FactionNewsCategory, type FactionNewsResponse, type FactionOngoingChain, type FactionOngoingChainResponse, type FactionOrganizedCrimePayoutType, type FactionPact, type FactionPosition, type FactionPositionAbilityEnum, type FactionPositionsResponse, type FactionRacketsResponse, type FactionRaidReport, type FactionRaidReportAttacker, type FactionRaidReportFaction, type FactionRaidReportUser, type FactionRaidWar, FactionRaidWarIdContext, type FactionRaidWarParticipant, type FactionRaidWarReportResponse, type FactionRaidWarfare, type FactionRaidWarfareFaction, type FactionRaidsResponse, type FactionRank, type FactionRankEnum, type FactionRankedWar, type FactionRankedWarDetails, FactionRankedWarIdContext, type FactionRankedWarParticipant, type FactionRankedWarReportResponse, type FactionRankedWarResponse, type FactionRankedWarsCategoryEnum, type FactionResponse, type FactionSearch, type FactionSearchLeader, type FactionSearchResponse, type FactionSelectionName, type FactionStat, type FactionStatEnum, type FactionStatsResponse, type FactionTerritoriesOwnershipResponse, type FactionTerritoriesResponse, type FactionTerritory, type FactionTerritoryEnum, type FactionTerritoryOwnership, type FactionTerritoryWar, type FactionTerritoryWarFaction, type FactionTerritoryWarFactionWallPlayers, type FactionTerritoryWarFinished, type FactionTerritoryWarFinishedFaction, FactionTerritoryWarIdContext, type FactionTerritoryWarOngoing, type FactionTerritoryWarOngoingFaction, type FactionTerritoryWarParticipant, type FactionTerritoryWarReport, type FactionTerritoryWarReportFaction, type FactionTerritoryWarReportMembers, type FactionTerritoryWarReportResponse, type FactionTerritoryWarResultEnum, type FactionTerritoryWarfare, type FactionTerritoryWarsCategoryEnum, type FactionTerritoryWarsHistoryResponse, type FactionTerritoryWarsResponse, type FactionUpgradeDetails, type FactionUpgrades, type FactionUpgradesResponse, type FactionWarfareDirtyBomb, type FactionWarfareDirtyBombPlanter, type FactionWarfareDirtyBombTargetFaction, type FactionWarfareResponse, type FactionWarfareTypeEnum, type FactionWars, type FactionWarsResponse, type ForumCategoriesResponse, ForumCategoryIdsContext, ForumEndpoint, type ForumFeed, type ForumFeedTypeEnum, type ForumId, type ForumLookupResponse, type ForumPoll, type ForumPollVote, type ForumPost, type ForumPostId, type ForumPostsResponse, type ForumResponse, type ForumSelectionName, type ForumSubscribedThread, type ForumSubscribedThreadPostsCount, type ForumThreadAuthor, type ForumThreadBase, type ForumThreadExtended, type ForumThreadId, ForumThreadIdContext, type ForumThreadResponse, type ForumThreadUserExtended, type ForumThreadsResponse, type HofValue, type HofValueFloat, type HofValueString, type HonorId, type HonorRarityEnum, type HonorTypeEnum, type ItemId, type ItemMarket, type ItemMarketItem, type ItemMarketListingItemBonus, type ItemMarketListingItemDetails, type ItemMarketListingItemStats, type ItemMarketListingNonstackable, type ItemMarketListingStackable, type ItemModId, type ItemUid, type JobPositionArmyEnum, type JobPositionCasinoEnum, type JobPositionEducationEnum, type JobPositionGrocerEnum, type JobPositionLawEnum, type JobPositionMedicalEnum, KeyEndpoint, type KeyInfoAvailableLog, type KeyInfoResponse, type KeyLogResponse, type KeyResponse, type KeySelectionName, type LogCategoryId, type LogId, MarketEndpoint, MarketIdContext, type MarketItemMarketResponse, type MarketLookupResponse, type MarketPropertiesResponse, type MarketPropertyDetails, MarketPropertyTypeIdContext, type MarketRentalDetails, type MarketRentalsResponse, type MarketResponse, type MarketSelectionName, type MarketSpecializedBazaarCategoryEnum, type MedalId, type MedalTypeEnum, type MeritId, type OrganizedCrimeName, PaginatedResponse, type Parameters, type PersonalStatsAttackingExtended, type PersonalStatsAttackingPopular, type PersonalStatsAttackingPublic, type PersonalStatsBattleStats, type PersonalStatsBounties, type PersonalStatsCategoryEnum, type PersonalStatsCommunication, type PersonalStatsCrimes, type PersonalStatsCrimesPopular, type PersonalStatsCrimesV1, type PersonalStatsCrimesV2, type PersonalStatsDrugs, type PersonalStatsFinishingHits, type PersonalStatsHistoricStat, type PersonalStatsHospital, type PersonalStatsHospitalPopular, type PersonalStatsInvestments, type PersonalStatsItems, type PersonalStatsItemsPopular, type PersonalStatsJail, type PersonalStatsJobsExtended, type PersonalStatsJobsPublic, type PersonalStatsMissions, type PersonalStatsNetworthExtended, type PersonalStatsNetworthPublic, type PersonalStatsOther, type PersonalStatsOtherPopular, type PersonalStatsRacing, type PersonalStatsStatName, type PersonalStatsTrading, type PersonalStatsTravel, type PersonalStatsTravelPopular, PropertyEndpoint, type PropertyId, PropertyIdContext, type PropertyLookupResponse, type PropertyModificationEnum, type PropertyPropertyResponse, type PropertyResponse, type PropertySelectionName, type PropertyStaffEnum, type PropertyTypeId, type Race, type RaceCar, type RaceCarId, type RaceCarUpgrade, type RaceCarUpgradeCategory, type RaceCarUpgradeId, type RaceCarUpgradeSubCategory, type RaceClassEnum, type RaceId, type RaceRecord, type RaceStatusEnum, type RaceTrack, type RaceTrackId, type RacerDetails, type RacingCarUpgradesResponse, type RacingCarsResponse, RacingEndpoint, type RacingLookupResponse, type RacingRaceDetails, type RacingRaceDetailsResponse, RacingRaceIdContext, type RacingRaceTypeEnum, type RacingRacesResponse, type RacingResponse, type RacingSelectionName, RacingTrackIdContext, type RacingTrackRecordsResponse, type RacingTracksResponse, type RaidWarId, type RankedWarId, type RateLimitMode, type Report, type ReportAnonymousBounties, type ReportBase, type ReportCompanyFinancials, type ReportFriendOrFoe, type ReportFriendOrFoeUser, type ReportHistory, type ReportHistoryCompany, type ReportHistoryFaction, type ReportInvestment, type ReportMoney, type ReportMostWanted, type ReportReport, type ReportStats, type ReportStockAnalysis, type ReportTrueLevel, type ReportTypeEnum, type ReportWarrantDetails, type ReportsResponse, type RequestLinks, type RequestMetadata, type RequestMetadataWithLinks, type RequestMetadataWithLinksAndTotal, type Requester, type Revive, type ReviveId, type ReviveSetting, type ReviveSimplified, type RevivesFullResponse, type RevivesResponse, type SelectionCategoryEnum, type TerritoryWarId, type TimestampResponse, TornAPI, type TornAPIOptions, TornApiError, type TornBountiesResponse, type TornCalendarActivity, type TornCalendarResponse, type TornCrime, type TornCrimeId, TornCrimeIdContext, type TornCrimesResponse, type TornEducation, type TornEducationCourses, type TornEducationPrerequisites, type TornEducationResponse, type TornEducationRewards, TornEndpoint, type TornFactionHof, type TornFactionHofCategory, type TornFactionHofResponse, type TornFactionTree, type TornFactionTreeBranch, type TornFactionTreeResponse, type TornHof, type TornHofBasic, type TornHofCategory, type TornHofResponse, type TornHofWithOffenses, type TornHonor, type TornHonorsResponse, TornIdsContext, type TornItem, type TornItemAmmo, type TornItemAmmoResponse, type TornItemAmmoTypeEnum, type TornItemArmorCoverage, type TornItemArmorCoveragePartEnum, type TornItemArmorDetails, type TornItemBaseStats, type TornItemCategory, type TornItemMods, type TornItemModsResponse, type TornItemTypeEnum, type TornItemWeaponCategoryEnum, type TornItemWeaponDetails, type TornItemWeaponTypeEnum, type TornItemsResponse, type TornLog, type TornLogCategoriesResponse, type TornLogCategory, TornLogCategoryIdContext, type TornLogTypesResponse, type TornLookupResponse, type TornMedal, type TornMedalsResponse, type TornMerit, type TornMeritsResponse, type TornOrganizedCrime, type TornOrganizedCrimePositionId, type TornOrganizedCrimeRequiredItem, type TornOrganizedCrimeResponse, type TornOrganizedCrimeScope, type TornOrganizedCrimeSlot, type TornOrganizedCrimeSpawn, type TornProperties, type TornRacket, type TornRacketReward, type TornRacketType, TornRateLimitError, type TornResponse, type TornSelectionName, type TornSubcrime, type TornSubcrimesResponse, type TornTerritoriesNoLinksResponse, type TornTerritoriesResponse, type TornTerritory, type TornTerritoryCoordinates, type User, type UserBasic, type UserBasicResponse, type UserBattleStatDetail, type UserBattleStatModifierDetail, type UserBattleStatsResponse, type UserBountiesResponse, type UserCalendar, type UserCalendarResponse, type UserCompanyPoints, type UserCrime, type UserCrimeAttempts, type UserCrimeDetailsBootlegging, type UserCrimeDetailsCardSkimming, type UserCrimeDetailsCracking, type UserCrimeDetailsGraffiti, type UserCrimeDetailsHustling, type UserCrimeDetailsScamming, type UserCrimeDetailsShoplifting, UserCrimeIdContext, type UserCrimeRewardAmmo, type UserCrimeRewardItem, type UserCrimeRewards, type UserCrimeUniques, type UserCrimeUniquesReward, type UserCrimeUniquesRewardAmmo, type UserCrimeUniquesRewardAmmoEnum, type UserCrimeUniquesRewardMoney, type UserCrimesResponse, type UserCurrentEducation, type UserEducation, type UserEducationResponse, UserEndpoint, type UserEnlistedCarsResponse, type UserFactionBalance, type UserFactionBalanceResponse, type UserForumFeedResponse, type UserForumFriendsResponse, type UserForumPostsResponse, type UserForumSubscribedThreadsResponse, type UserForumThreadsResponse, type UserGenderEnum, type UserHofResponse, type UserHofStats, type UserHonor, type UserHonorsResponse, type UserId, UserIdContext, type UserItemMarkeListingItemDetails, type UserItemMarketListing, type UserItemMarketResponse, type UserJobPointsResponse, type UserJobRanks, type UserJobRanksResponse, type UserLastAction, type UserList, type UserListEnum, type UserListResponse, type UserLog, type UserLogId, type UserLogsResponse, type UserLookupResponse, type UserMedal, type UserMedalsResponse, type UserMeritUpgrade, type UserMerits, type UserMeritsResponse, type UserMoneyResponse, type UserOrganizedCrimeResponse, type UserPersonalStatsCategory, type UserPersonalStatsFull, type UserPersonalStatsFullPublic, type UserPersonalStatsHistoric, type UserPersonalStatsPopular, type UserPersonalStatsResponse, type UserPropertiesResponse, type UserPropertyBasicDetails, type UserPropertyDetails, type UserPropertyDetailsExtended, type UserPropertyDetailsExtendedForRent, type UserPropertyDetailsExtendedForSale, type UserPropertyDetailsExtendedRented, type UserPropertyDetailsExtendedWithRent, type UserPropertyResponse, type UserRaceCarDetails, type UserRacesResponse, type UserRacingRecordsResponse, type UserResponse, type UserSelectionName, type UserSkillDetail, type UserSkillSlugEnum, type UserSkillsResponse, type UserStatus, type UserSubcrime, type UserWorkStatsResponse, type WeaponBonusEnum };
|
|
5913
|
+
export { type AmmoId, type ApiKeyAccessTypeEnum, type ApiKeyBalancing, type Attack, type AttackActionEnum, type AttackCode, type AttackFinishingHitEffect, type AttackId, type AttackLog, type AttackLogResponse, type AttackLogSummary, type AttackPlayer, type AttackPlayerFaction, type AttackPlayerSimplified, type AttackSimplified, type AttackingFinishingHitEffects, type BasicProperty, type BasicUser, type Bazaar, type BazaarAdvancedItemSales, type BazaarBargainSales, type BazaarBulkSales, type BazaarDollarSales, type BazaarRecentFavorites, type BazaarResponse, type BazaarResponseSpecialized, type BazaarSpecialized, type BazaarTotalFavorites, type BazaarWeekly, type BazaarWeeklyCustomers, type BazaarWeeklyIncome, type Bounty, type ChainId, type CompanyId, type CompanyTypeId, type CountryEnum, type DirtyBombId, type EducationId, type Faction, type FactionApplication, type FactionApplicationStatusEnum, type FactionApplicationsResponse, type FactionAttackResult, type FactionAttacksFullResponse, type FactionAttacksResponse, type FactionBalance, type FactionBalanceResponse, type FactionBasic, type FactionBasicResponse, type FactionBranchDetails, type FactionBranchId, type FactionBranchStateEnum, type FactionChain, FactionChainIdContext, type FactionChainReport, type FactionChainReportAttacker, type FactionChainReportAttackerAttacks, type FactionChainReportAttackerRespect, type FactionChainReportBonus, type FactionChainReportDetails, type FactionChainReportResponse, type FactionChainWarfare, type FactionChainsResponse, type FactionContributor, type FactionContributorsResponse, type FactionCrime, type FactionCrimeId, FactionCrimeIdContext, type FactionCrimeItemOutcomeEnum, type FactionCrimeResponse, type FactionCrimeReward, type FactionCrimeRewardItem, type FactionCrimeRewardPayout, type FactionCrimeSlot, type FactionCrimeStatusEnum, type FactionCrimeUser, type FactionCrimeUserItemOutcome, type FactionCrimeUserItemOutcomeEnum, type FactionCrimeUserOutcome, type FactionCrimesResponse, FactionEndpoint, type FactionHofResponse, type FactionHofStats, type FactionHofValues, type FactionId, FactionIdContext, type FactionLookupResponse, type FactionMember, type FactionMembersResponse, type FactionNews, type FactionNewsCategory, type FactionNewsResponse, type FactionOngoingChain, type FactionOngoingChainResponse, type FactionOrganizedCrimePayoutType, type FactionPact, type FactionPosition, type FactionPositionAbilityEnum, type FactionPositionsResponse, type FactionRacketsResponse, type FactionRaidReport, type FactionRaidReportAttacker, type FactionRaidReportFaction, type FactionRaidReportUser, type FactionRaidWar, FactionRaidWarIdContext, type FactionRaidWarParticipant, type FactionRaidWarReportResponse, type FactionRaidWarfare, type FactionRaidWarfareFaction, type FactionRaidsResponse, type FactionRank, type FactionRankEnum, type FactionRankedWar, type FactionRankedWarDetails, FactionRankedWarIdContext, type FactionRankedWarParticipant, type FactionRankedWarReportResponse, type FactionRankedWarResponse, type FactionRankedWarsCategoryEnum, type FactionResponse, type FactionSearch, type FactionSearchLeader, type FactionSearchResponse, type FactionSelectionName, type FactionStat, type FactionStatEnum, type FactionStatsResponse, type FactionTerritoriesOwnershipResponse, type FactionTerritoriesResponse, type FactionTerritory, type FactionTerritoryEnum, type FactionTerritoryOwnership, type FactionTerritoryWar, type FactionTerritoryWarFaction, type FactionTerritoryWarFactionWallPlayers, type FactionTerritoryWarFinished, type FactionTerritoryWarFinishedFaction, FactionTerritoryWarIdContext, type FactionTerritoryWarOngoing, type FactionTerritoryWarOngoingFaction, type FactionTerritoryWarParticipant, type FactionTerritoryWarReport, type FactionTerritoryWarReportFaction, type FactionTerritoryWarReportMembers, type FactionTerritoryWarReportResponse, type FactionTerritoryWarResultEnum, type FactionTerritoryWarfare, type FactionTerritoryWarsCategoryEnum, type FactionTerritoryWarsHistoryResponse, type FactionTerritoryWarsResponse, type FactionUpgradeDetails, type FactionUpgrades, type FactionUpgradesResponse, type FactionWarfareDirtyBomb, type FactionWarfareDirtyBombPlanter, type FactionWarfareDirtyBombTargetFaction, type FactionWarfareResponse, type FactionWarfareTypeEnum, type FactionWars, type FactionWarsResponse, type ForumCategoriesResponse, ForumCategoryIdsContext, ForumEndpoint, type ForumFeed, type ForumFeedTypeEnum, type ForumId, type ForumLookupResponse, type ForumPoll, type ForumPollVote, type ForumPost, type ForumPostId, type ForumPostsResponse, type ForumResponse, type ForumSelectionName, type ForumSubscribedThread, type ForumSubscribedThreadPostsCount, type ForumThreadAuthor, type ForumThreadBase, type ForumThreadExtended, type ForumThreadId, ForumThreadIdContext, type ForumThreadResponse, type ForumThreadUserExtended, type ForumThreadsResponse, type HofValue, type HofValueFloat, type HofValueString, type HonorId, type HonorRarityEnum, type HonorTypeEnum, type ItemId, type ItemMarket, type ItemMarketItem, type ItemMarketListingItemBonus, type ItemMarketListingItemDetails, type ItemMarketListingItemStats, type ItemMarketListingNonstackable, type ItemMarketListingStackable, type ItemModId, type ItemUid, type JobPositionArmyEnum, type JobPositionCasinoEnum, type JobPositionEducationEnum, type JobPositionGrocerEnum, type JobPositionLawEnum, type JobPositionMedicalEnum, type JobTypeEnum, KeyEndpoint, type KeyInfoAvailableLog, type KeyInfoResponse, type KeyLogResponse, type KeyResponse, type KeySelectionName, type LogCategoryId, type LogId, MarketEndpoint, MarketIdContext, type MarketItemMarketResponse, type MarketLookupResponse, type MarketPropertiesResponse, type MarketPropertyDetails, MarketPropertyTypeIdContext, type MarketRentalDetails, type MarketRentalsResponse, type MarketResponse, type MarketSelectionName, type MarketSpecializedBazaarCategoryEnum, type MedalId, type MedalTypeEnum, type MeritId, type OrganizedCrimeName, PaginatedResponse, type Parameters, type PersonalStatsAttackingExtended, type PersonalStatsAttackingPopular, type PersonalStatsAttackingPublic, type PersonalStatsBattleStats, type PersonalStatsBounties, type PersonalStatsCategoryEnum, type PersonalStatsCommunication, type PersonalStatsCrimes, type PersonalStatsCrimesPopular, type PersonalStatsCrimesV1, type PersonalStatsCrimesV2, type PersonalStatsDrugs, type PersonalStatsFinishingHits, type PersonalStatsHistoricStat, type PersonalStatsHospital, type PersonalStatsHospitalPopular, type PersonalStatsInvestments, type PersonalStatsItems, type PersonalStatsItemsPopular, type PersonalStatsJail, type PersonalStatsJobsExtended, type PersonalStatsJobsPublic, type PersonalStatsMissions, type PersonalStatsNetworthExtended, type PersonalStatsNetworthPublic, type PersonalStatsOther, type PersonalStatsOtherPopular, type PersonalStatsRacing, type PersonalStatsStatName, type PersonalStatsTrading, type PersonalStatsTravel, type PersonalStatsTravelPopular, type ProfileSpouse, PropertyEndpoint, type PropertyId, PropertyIdContext, type PropertyLookupResponse, type PropertyModificationEnum, type PropertyPropertyResponse, type PropertyResponse, type PropertySelectionName, type PropertyStaffEnum, type PropertyTypeId, type Race, type RaceCar, type RaceCarId, type RaceCarUpgrade, type RaceCarUpgradeCategory, type RaceCarUpgradeId, type RaceCarUpgradeSubCategory, type RaceClassEnum, type RaceId, type RaceRecord, type RaceStatusEnum, type RaceTrack, type RaceTrackId, type RacerDetails, type RacingCarUpgradesResponse, type RacingCarsResponse, RacingEndpoint, type RacingLookupResponse, type RacingRaceDetails, type RacingRaceDetailsResponse, RacingRaceIdContext, type RacingRaceTypeEnum, type RacingRacesResponse, type RacingResponse, type RacingSelectionName, RacingTrackIdContext, type RacingTrackRecordsResponse, type RacingTracksResponse, type RaidWarId, type RankedWarId, type RateLimitMode, type Report, type ReportAnonymousBounties, type ReportBase, type ReportCompanyFinancials, type ReportFriendOrFoe, type ReportFriendOrFoeUser, type ReportHistory, type ReportHistoryCompany, type ReportHistoryFaction, type ReportInvestment, type ReportMoney, type ReportMostWanted, type ReportReport, type ReportStats, type ReportStockAnalysis, type ReportTrueLevel, type ReportTypeEnum, type ReportWarrantDetails, type ReportsResponse, type RequestLinks, type RequestMetadata, type RequestMetadataWithLinks, type RequestMetadataWithLinksAndTotal, type Requester, type Revive, type ReviveId, type ReviveSetting, type ReviveSimplified, type RevivesFullResponse, type RevivesResponse, type SelectionCategoryEnum, type TerritoryWarId, type TimestampResponse, TornAPI, type TornAPIOptions, TornApiError, type TornBountiesResponse, type TornCalendarActivity, type TornCalendarResponse, type TornCrime, type TornCrimeId, TornCrimeIdContext, type TornCrimesResponse, type TornEducation, type TornEducationCourses, type TornEducationPrerequisites, type TornEducationResponse, type TornEducationRewards, TornEndpoint, type TornFactionHof, type TornFactionHofCategory, type TornFactionHofResponse, type TornFactionTree, type TornFactionTreeBranch, type TornFactionTreeResponse, type TornHof, type TornHofBasic, type TornHofCategory, type TornHofResponse, type TornHofWithOffenses, type TornHonor, type TornHonorsResponse, TornIdsContext, type TornItem, type TornItemAmmo, type TornItemAmmoResponse, type TornItemAmmoTypeEnum, type TornItemArmorCoverage, type TornItemArmorCoveragePartEnum, type TornItemArmorDetails, type TornItemBaseStats, type TornItemCategory, type TornItemMods, type TornItemModsResponse, type TornItemTypeEnum, type TornItemWeaponCategoryEnum, type TornItemWeaponDetails, type TornItemWeaponTypeEnum, type TornItemsResponse, type TornLog, type TornLogCategoriesResponse, type TornLogCategory, TornLogCategoryIdContext, type TornLogTypesResponse, type TornLookupResponse, type TornMedal, type TornMedalsResponse, type TornMerit, type TornMeritsResponse, type TornOrganizedCrime, type TornOrganizedCrimePositionId, type TornOrganizedCrimeRequiredItem, type TornOrganizedCrimeResponse, type TornOrganizedCrimeScope, type TornOrganizedCrimeSlot, type TornOrganizedCrimeSpawn, type TornProperties, type TornRacket, type TornRacketReward, type TornRacketType, TornRateLimitError, type TornResponse, type TornSelectionName, type TornSubcrime, type TornSubcrimesResponse, type TornTerritoriesNoLinksResponse, type TornTerritoriesResponse, type TornTerritory, type TornTerritoryCoordinates, type User, type UserBasic, type UserBasicResponse, type UserBattleStatDetail, type UserBattleStatModifierDetail, type UserBattleStatsResponse, type UserBountiesResponse, type UserCalendar, type UserCalendarResponse, type UserCompany, type UserCompanyPoints, type UserCompetitionEasterEggs, type UserCompetitionHalloween, type UserCompetitionResponse, type UserCompetitionRps, type UserCrime, type UserCrimeAttempts, type UserCrimeDetailsBootlegging, type UserCrimeDetailsCardSkimming, type UserCrimeDetailsCracking, type UserCrimeDetailsGraffiti, type UserCrimeDetailsHustling, type UserCrimeDetailsScamming, type UserCrimeDetailsShoplifting, UserCrimeIdContext, type UserCrimeRewardAmmo, type UserCrimeRewardItem, type UserCrimeRewards, type UserCrimeUniques, type UserCrimeUniquesReward, type UserCrimeUniquesRewardAmmo, type UserCrimeUniquesRewardAmmoEnum, type UserCrimeUniquesRewardMoney, type UserCrimesResponse, type UserCurrentEducation, type UserDonatorStatusEnum, type UserEducation, type UserEducationResponse, UserEndpoint, type UserEnlistedCarsResponse, type UserFaction, type UserFactionBalance, type UserFactionBalanceResponse, type UserFactionResponse, type UserForumFeedResponse, type UserForumFriendsResponse, type UserForumPostsResponse, type UserForumSubscribedThreadsResponse, type UserForumThreadsResponse, type UserGenderEnum, type UserHofResponse, type UserHofStats, type UserHonor, type UserHonorsResponse, type UserIconId, type UserIconPrivate, type UserIconPublic, type UserIconsResponse, type UserId, UserIdContext, type UserItemMarkeListingItemDetails, type UserItemMarketListing, type UserItemMarketResponse, type UserJob, type UserJobPointsResponse, type UserJobRanks, type UserJobRanksResponse, type UserJobResponse, type UserLastAction, type UserList, type UserListEnum, type UserListResponse, type UserLog, type UserLogId, type UserLogsResponse, type UserLookupResponse, type UserMaritalStatusEnum, type UserMedal, type UserMedalsResponse, type UserMeritUpgrade, type UserMerits, type UserMeritsResponse, type UserMoneyResponse, type UserOrganizedCrimeError, type UserOrganizedCrimeResponse, type UserPersonalStatsCategory, type UserPersonalStatsFull, type UserPersonalStatsFullPublic, type UserPersonalStatsHistoric, type UserPersonalStatsPopular, type UserPersonalStatsResponse, type UserPlaneImageTypeEnum, type UserProfileResponse, type UserPropertiesResponse, type UserPropertyBasicDetails, type UserPropertyDetails, type UserPropertyDetailsExtended, type UserPropertyDetailsExtendedForRent, type UserPropertyDetailsExtendedForSale, type UserPropertyDetailsExtendedRented, type UserPropertyDetailsExtendedWithRent, type UserPropertyResponse, type UserRaceCarDetails, type UserRacesResponse, type UserRacingRecordsResponse, type UserRankEnum, type UserResponse, type UserRoleEnum, type UserRpsStatus, type UserSelectionName, type UserSkillDetail, type UserSkillSlugEnum, type UserSkillsResponse, type UserStatus, type UserSubcrime, type UserTitleEnum, type UserWorkStatsResponse, type WeaponBonusEnum };
|