torn-client 0.2.4 → 0.2.6
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 +251 -26
- package/dist/index.d.ts +251 -26
- 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
|
@@ -292,7 +292,7 @@ type CompanyId = number;
|
|
|
292
292
|
type CompanyTypeId = number;
|
|
293
293
|
|
|
294
294
|
/** @category Models */
|
|
295
|
-
type CountryEnum = "Mexico" | "Hawaii" | "South Africa" | "Japan" | "China" | "Argentina" | "Switzerland" | "Canada" | "United Kingdom" | "UAE" | "Cayman Islands";
|
|
295
|
+
type CountryEnum = "Mexico" | "Hawaii" | "South Africa" | "Japan" | "China" | "Argentina" | "Switzerland" | "Canada" | "United Kingdom" | "UAE" | "Cayman Islands" | "Torn";
|
|
296
296
|
|
|
297
297
|
/** @category Models */
|
|
298
298
|
type DirtyBombId = number;
|
|
@@ -915,7 +915,7 @@ type FactionRankedWarsCategoryEnum = "all" | "ongoing";
|
|
|
915
915
|
type FactionRankEnum = "Unranked" | "Bronze" | "Silver" | "Gold" | "Platinum" | "Diamond";
|
|
916
916
|
|
|
917
917
|
/** @category Models */
|
|
918
|
-
type FactionResponse = FactionHofResponse | FactionMembersResponse | FactionBasicResponse | FactionWarsResponse | FactionNewsResponse | RevivesResponse | FactionTerritoryWarsHistoryResponse | FactionAttacksResponse | FactionBalanceResponse | FactionRaidWarReportResponse | FactionTerritoriesOwnershipResponse | FactionPositionsResponse | RevivesFullResponse | FactionAttacksFullResponse | FactionApplicationsResponse | FactionOngoingChainResponse | FactionChainsResponse | FactionChainReportResponse | FactionCrimesResponse | FactionCrimeResponse | FactionRaidsResponse | FactionWarfareResponse | FactionRankedWarReportResponse | FactionTerritoryWarReportResponse | FactionTerritoriesResponse | FactionUpgradesResponse | FactionStatsResponse |
|
|
918
|
+
type FactionResponse = FactionHofResponse | FactionMembersResponse | FactionBasicResponse | FactionWarsResponse | FactionNewsResponse | RevivesResponse | FactionTerritoryWarsHistoryResponse | FactionAttacksResponse | FactionBalanceResponse | FactionRaidWarReportResponse | FactionTerritoriesOwnershipResponse | FactionPositionsResponse | RevivesFullResponse | FactionAttacksFullResponse | FactionApplicationsResponse | FactionOngoingChainResponse | FactionChainsResponse | FactionChainReportResponse | FactionCrimesResponse | FactionCrimeResponse | FactionRaidsResponse | FactionWarfareResponse | FactionRankedWarReportResponse | FactionTerritoryWarReportResponse | FactionTerritoriesResponse | FactionUpgradesResponse | FactionStatsResponse | FactionContributorsResponse | FactionRacketsResponse | FactionRankedWarResponse | FactionLookupResponse | TimestampResponse;
|
|
919
919
|
|
|
920
920
|
/** @category Models */
|
|
921
921
|
type FactionSearch = {
|
|
@@ -1132,11 +1132,6 @@ type FactionTerritoryWarsHistoryResponse = {
|
|
|
1132
1132
|
territorywars: FactionTerritoryWarFinished[];
|
|
1133
1133
|
};
|
|
1134
1134
|
|
|
1135
|
-
/** @category Models */
|
|
1136
|
-
type FactionTerritoryWarsResponse = {
|
|
1137
|
-
territorywars: FactionTerritoryWarOngoing[] | FactionTerritoryWarFinished[];
|
|
1138
|
-
};
|
|
1139
|
-
|
|
1140
1135
|
/** @category Models */
|
|
1141
1136
|
type FactionUpgradeDetails = {
|
|
1142
1137
|
id: FactionBranchId;
|
|
@@ -1498,9 +1493,7 @@ type KeyInfoResponse = {
|
|
|
1498
1493
|
level: number;
|
|
1499
1494
|
type: ApiKeyAccessTypeEnum;
|
|
1500
1495
|
faction: boolean;
|
|
1501
|
-
faction_id?: FactionId | unknown;
|
|
1502
1496
|
company: boolean;
|
|
1503
|
-
company_id?: CompanyId | unknown;
|
|
1504
1497
|
log: {
|
|
1505
1498
|
custom_permissions: boolean;
|
|
1506
1499
|
available: KeyInfoAvailableLog[];
|
|
@@ -3248,6 +3241,30 @@ type User = {
|
|
|
3248
3241
|
};
|
|
3249
3242
|
};
|
|
3250
3243
|
|
|
3244
|
+
/** @category Models */
|
|
3245
|
+
type UserBar = {
|
|
3246
|
+
current: number;
|
|
3247
|
+
maximum: number;
|
|
3248
|
+
increment: number;
|
|
3249
|
+
interval: number;
|
|
3250
|
+
tick_time: number;
|
|
3251
|
+
full_time: number;
|
|
3252
|
+
};
|
|
3253
|
+
|
|
3254
|
+
/** @category Models */
|
|
3255
|
+
type UserBars = {
|
|
3256
|
+
energy: UserBar;
|
|
3257
|
+
nerve: UserBar;
|
|
3258
|
+
happy: UserBar;
|
|
3259
|
+
life: UserBar;
|
|
3260
|
+
chain: FactionOngoingChain | unknown;
|
|
3261
|
+
};
|
|
3262
|
+
|
|
3263
|
+
/** @category Models */
|
|
3264
|
+
type UserBarsResponse = {
|
|
3265
|
+
bars: UserBars;
|
|
3266
|
+
};
|
|
3267
|
+
|
|
3251
3268
|
/** @category Models */
|
|
3252
3269
|
type UserBasic = {
|
|
3253
3270
|
id: UserId;
|
|
@@ -3354,6 +3371,15 @@ type UserCompetitionRps = {
|
|
|
3354
3371
|
};
|
|
3355
3372
|
};
|
|
3356
3373
|
|
|
3374
|
+
/** @category Models */
|
|
3375
|
+
type UserCooldownsResponse = {
|
|
3376
|
+
cooldowns: {
|
|
3377
|
+
drug: number;
|
|
3378
|
+
medical: number;
|
|
3379
|
+
booster: number;
|
|
3380
|
+
};
|
|
3381
|
+
};
|
|
3382
|
+
|
|
3357
3383
|
/** @category Models */
|
|
3358
3384
|
type UserCrime = {
|
|
3359
3385
|
nerve_spent: number;
|
|
@@ -3554,6 +3580,22 @@ type UserEnlistedCarsResponse = {
|
|
|
3554
3580
|
enlistedcars: UserRaceCarDetails[];
|
|
3555
3581
|
};
|
|
3556
3582
|
|
|
3583
|
+
/** @category Models */
|
|
3584
|
+
type UserEvent = {
|
|
3585
|
+
id: UserEventId;
|
|
3586
|
+
timestamp: number;
|
|
3587
|
+
event: string;
|
|
3588
|
+
};
|
|
3589
|
+
|
|
3590
|
+
/** @category Models */
|
|
3591
|
+
type UserEventId = string;
|
|
3592
|
+
|
|
3593
|
+
/** @category Models */
|
|
3594
|
+
type UserEventsResponse = {
|
|
3595
|
+
events: UserEvent[];
|
|
3596
|
+
_metadata: RequestMetadataWithLinks;
|
|
3597
|
+
};
|
|
3598
|
+
|
|
3557
3599
|
/** @category Models */
|
|
3558
3600
|
type UserFaction = {
|
|
3559
3601
|
id: FactionId;
|
|
@@ -3580,6 +3622,9 @@ type UserFactionResponse = {
|
|
|
3580
3622
|
faction: UserFaction | unknown;
|
|
3581
3623
|
};
|
|
3582
3624
|
|
|
3625
|
+
/** @category Models */
|
|
3626
|
+
type UserFlyMethodEnum = "Private" | "Business" | "Airstrip" | "Standard";
|
|
3627
|
+
|
|
3583
3628
|
/** @category Models */
|
|
3584
3629
|
type UserForumFeedResponse = {
|
|
3585
3630
|
forumFeed: ForumFeed[];
|
|
@@ -3828,6 +3873,29 @@ type UserMeritUpgrade = {
|
|
|
3828
3873
|
level: number;
|
|
3829
3874
|
};
|
|
3830
3875
|
|
|
3876
|
+
/** @category Models */
|
|
3877
|
+
type UserMessage = {
|
|
3878
|
+
id: UserMessageId;
|
|
3879
|
+
sender: BasicUser;
|
|
3880
|
+
timestamp: number;
|
|
3881
|
+
topic: string;
|
|
3882
|
+
type: UserMessageTypeEnum;
|
|
3883
|
+
seen: boolean;
|
|
3884
|
+
read: boolean;
|
|
3885
|
+
};
|
|
3886
|
+
|
|
3887
|
+
/** @category Models */
|
|
3888
|
+
type UserMessageId = number;
|
|
3889
|
+
|
|
3890
|
+
/** @category Models */
|
|
3891
|
+
type UserMessagesResponse = {
|
|
3892
|
+
messages: UserMessage[];
|
|
3893
|
+
_metadata: RequestMetadataWithLinks;
|
|
3894
|
+
};
|
|
3895
|
+
|
|
3896
|
+
/** @category Models */
|
|
3897
|
+
type UserMessageTypeEnum = "Company newsletter" | "Faction newsletter" | "Warning" | "User message";
|
|
3898
|
+
|
|
3831
3899
|
/** @category Models */
|
|
3832
3900
|
type UserMoneyResponse = {
|
|
3833
3901
|
money: {
|
|
@@ -3848,6 +3916,26 @@ type UserMoneyResponse = {
|
|
|
3848
3916
|
};
|
|
3849
3917
|
};
|
|
3850
3918
|
|
|
3919
|
+
/** @category Models */
|
|
3920
|
+
type UserNewEventsResponse = {
|
|
3921
|
+
events: UserEvent[];
|
|
3922
|
+
};
|
|
3923
|
+
|
|
3924
|
+
/** @category Models */
|
|
3925
|
+
type UserNewMessagesResponse = {
|
|
3926
|
+
messages: UserMessage[];
|
|
3927
|
+
};
|
|
3928
|
+
|
|
3929
|
+
/** @category Models */
|
|
3930
|
+
type UserNotificationsResponse = {
|
|
3931
|
+
notifications: {
|
|
3932
|
+
messages: number;
|
|
3933
|
+
events: number;
|
|
3934
|
+
awards: number;
|
|
3935
|
+
competition: number;
|
|
3936
|
+
};
|
|
3937
|
+
};
|
|
3938
|
+
|
|
3851
3939
|
/** @category Models */
|
|
3852
3940
|
type UserOrganizedCrimeError = {
|
|
3853
3941
|
code: number;
|
|
@@ -3899,8 +3987,8 @@ type UserProfileResponse = {
|
|
|
3899
3987
|
id: UserId;
|
|
3900
3988
|
name: string;
|
|
3901
3989
|
level: number;
|
|
3902
|
-
rank: UserRankEnum;
|
|
3903
|
-
title: UserTitleEnum;
|
|
3990
|
+
rank: UserRankEnum | string;
|
|
3991
|
+
title: UserTitleEnum | string;
|
|
3904
3992
|
donator_status: UserDonatorStatusEnum | unknown;
|
|
3905
3993
|
age: number;
|
|
3906
3994
|
signed_up: number;
|
|
@@ -4046,7 +4134,17 @@ type UserRacingRecordsResponse = {
|
|
|
4046
4134
|
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";
|
|
4047
4135
|
|
|
4048
4136
|
/** @category Models */
|
|
4049
|
-
type
|
|
4137
|
+
type UserRefillsResponse = {
|
|
4138
|
+
refills: {
|
|
4139
|
+
energy: boolean;
|
|
4140
|
+
nerve: boolean;
|
|
4141
|
+
token: boolean;
|
|
4142
|
+
special_count: number;
|
|
4143
|
+
};
|
|
4144
|
+
};
|
|
4145
|
+
|
|
4146
|
+
/** @category Models */
|
|
4147
|
+
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 | UserBarsResponse | UserCooldownsResponse | UserNotificationsResponse | UserRefillsResponse | UserTravelResponse | UserVirusResponse | FactionAttacksFullResponse | UserMoneyResponse | UserJobPointsResponse | UserWorkStatsResponse | UserSkillsResponse | UserBattleStatsResponse | UserNewEventsResponse | UserEventsResponse | UserMessagesResponse | UserNewMessagesResponse | UserLookupResponse | TimestampResponse;
|
|
4050
4148
|
|
|
4051
4149
|
/** @category Models */
|
|
4052
4150
|
type UserRoleEnum = "Admin" | "Officer" | "Moderator" | "Helper" | "Tester" | "NPC" | "Committee" | "Reporter" | "Wiki Contributor" | "Wiki Editor" | "Civilian";
|
|
@@ -4055,7 +4153,7 @@ type UserRoleEnum = "Admin" | "Officer" | "Moderator" | "Helper" | "Tester" | "N
|
|
|
4055
4153
|
type UserRpsStatus = "scissors" | "rock" | "paper";
|
|
4056
4154
|
|
|
4057
4155
|
/** @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" | "
|
|
4156
|
+
type UserSelectionName = "attacks" | "attacksfull" | "bars" | "basic" | "battlestats" | "bounties" | "calendar" | "competition" | "cooldowns" | "crimes" | "enlistedcars" | "events" | "faction" | "factionbalance" | "forumfeed" | "forumfriends" | "forumposts" | "forumsubscribedthreads" | "forumthreads" | "hof" | "honors" | "icons" | "itemmarket" | "job" | "jobpoints" | "jobranks" | "list" | "log" | "lookup" | "medals" | "merits" | "messages" | "money" | "newevents" | "newmessages" | "notifications" | "organizedcrime" | "personalstats" | "profile" | "properties" | "property" | "races" | "racingrecords" | "refills" | "reports" | "revives" | "revivesfull" | "skills" | "timestamp" | "travel" | "workstats" | "ammo" | "bazaar" | "criminalrecord" | "discord" | "display" | "education" | "equipment" | "gym" | "inventory" | "missions" | "networth" | "perks" | "stocks" | "weaponexp" | string;
|
|
4059
4157
|
|
|
4060
4158
|
/** @category Models */
|
|
4061
4159
|
type UserSkillDetail = {
|
|
@@ -4079,13 +4177,16 @@ type UserSkillsResponse = {
|
|
|
4079
4177
|
type UserStatus = {
|
|
4080
4178
|
description: string;
|
|
4081
4179
|
details: string | unknown;
|
|
4082
|
-
state: string;
|
|
4180
|
+
state: UserStatusStateEnum | string;
|
|
4083
4181
|
color: string;
|
|
4084
4182
|
until: number | unknown;
|
|
4085
4183
|
travel_type?: string;
|
|
4086
4184
|
plane_image_type?: UserPlaneImageTypeEnum;
|
|
4087
4185
|
};
|
|
4088
4186
|
|
|
4187
|
+
/** @category Models */
|
|
4188
|
+
type UserStatusStateEnum = "Abroad" | "Awoken" | "Dormant" | "Fallen" | "Federal" | "Hospital" | "Jail" | "Okay" | "Traveling";
|
|
4189
|
+
|
|
4089
4190
|
/** @category Models */
|
|
4090
4191
|
type UserSubcrime = {
|
|
4091
4192
|
id: number;
|
|
@@ -4095,7 +4196,32 @@ type UserSubcrime = {
|
|
|
4095
4196
|
};
|
|
4096
4197
|
|
|
4097
4198
|
/** @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";
|
|
4199
|
+
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" | "Citizen";
|
|
4200
|
+
|
|
4201
|
+
/** @category Models */
|
|
4202
|
+
type UserTravelResponse = {
|
|
4203
|
+
travel: {
|
|
4204
|
+
destination: CountryEnum;
|
|
4205
|
+
method: UserFlyMethodEnum | unknown;
|
|
4206
|
+
departed_at: number | unknown;
|
|
4207
|
+
arrival_at: number | unknown;
|
|
4208
|
+
time_left: number;
|
|
4209
|
+
};
|
|
4210
|
+
};
|
|
4211
|
+
|
|
4212
|
+
/** @category Models */
|
|
4213
|
+
type UserVirus = {
|
|
4214
|
+
item: {
|
|
4215
|
+
id: ItemId;
|
|
4216
|
+
name: string;
|
|
4217
|
+
};
|
|
4218
|
+
until: number;
|
|
4219
|
+
};
|
|
4220
|
+
|
|
4221
|
+
/** @category Models */
|
|
4222
|
+
type UserVirusResponse = {
|
|
4223
|
+
virus: UserVirus | unknown;
|
|
4224
|
+
};
|
|
4099
4225
|
|
|
4100
4226
|
/** @category Models */
|
|
4101
4227
|
type UserWorkStatsResponse = {
|
|
@@ -4259,6 +4385,7 @@ declare class FactionEndpoint {
|
|
|
4259
4385
|
from?: number;
|
|
4260
4386
|
to?: number;
|
|
4261
4387
|
sort?: "DESC" | "ASC";
|
|
4388
|
+
limit?: number;
|
|
4262
4389
|
timestamp?: string;
|
|
4263
4390
|
}): Promise<PaginatedResponse<FactionRaidsResponse> & FactionRaidsResponse>;
|
|
4264
4391
|
/**
|
|
@@ -4266,7 +4393,8 @@ declare class FactionEndpoint {
|
|
|
4266
4393
|
* @param params - Optional query parameters
|
|
4267
4394
|
*/
|
|
4268
4395
|
rankedwars(params?: {
|
|
4269
|
-
|
|
4396
|
+
offset?: number;
|
|
4397
|
+
limit?: number;
|
|
4270
4398
|
from?: number;
|
|
4271
4399
|
to?: number;
|
|
4272
4400
|
sort?: "DESC" | "ASC";
|
|
@@ -4348,13 +4476,12 @@ declare class FactionEndpoint {
|
|
|
4348
4476
|
* @param params - Optional query parameters
|
|
4349
4477
|
*/
|
|
4350
4478
|
territorywars(params?: {
|
|
4351
|
-
cat?: FactionTerritoryWarsCategoryEnum;
|
|
4352
4479
|
from?: number;
|
|
4353
4480
|
to?: number;
|
|
4354
4481
|
sort?: "DESC" | "ASC";
|
|
4355
4482
|
limit?: number;
|
|
4356
4483
|
timestamp?: string;
|
|
4357
|
-
}): Promise<
|
|
4484
|
+
}): Promise<FactionTerritoryWarsHistoryResponse>;
|
|
4358
4485
|
/**
|
|
4359
4486
|
* Get your faction's upgrades
|
|
4360
4487
|
* @param params - Optional query parameters
|
|
@@ -4402,6 +4529,7 @@ declare class FactionEndpoint {
|
|
|
4402
4529
|
get(params?: {
|
|
4403
4530
|
selections?: FactionSelectionName[];
|
|
4404
4531
|
id?: FactionId | FactionCrimeId | ChainId | RankedWarId | TerritoryWarId | RaidWarId;
|
|
4532
|
+
legacy?: FactionSelectionName[];
|
|
4405
4533
|
limit?: number;
|
|
4406
4534
|
from?: number;
|
|
4407
4535
|
to?: number;
|
|
@@ -4479,6 +4607,10 @@ declare class FactionIdContext {
|
|
|
4479
4607
|
* @param params - Optional query parameters
|
|
4480
4608
|
*/
|
|
4481
4609
|
raids(params?: {
|
|
4610
|
+
from?: number;
|
|
4611
|
+
to?: number;
|
|
4612
|
+
sort?: "DESC" | "ASC";
|
|
4613
|
+
limit?: number;
|
|
4482
4614
|
timestamp?: string;
|
|
4483
4615
|
}): Promise<PaginatedResponse<FactionRaidsResponse> & FactionRaidsResponse>;
|
|
4484
4616
|
/**
|
|
@@ -4486,6 +4618,8 @@ declare class FactionIdContext {
|
|
|
4486
4618
|
* @param params - Optional query parameters
|
|
4487
4619
|
*/
|
|
4488
4620
|
rankedwars(params?: {
|
|
4621
|
+
offset?: number;
|
|
4622
|
+
limit?: number;
|
|
4489
4623
|
timestamp?: string;
|
|
4490
4624
|
}): Promise<PaginatedResponse<FactionRankedWarResponse> & FactionRankedWarResponse>;
|
|
4491
4625
|
/**
|
|
@@ -4500,6 +4634,10 @@ declare class FactionIdContext {
|
|
|
4500
4634
|
* @param params - Optional query parameters
|
|
4501
4635
|
*/
|
|
4502
4636
|
territorywars(params?: {
|
|
4637
|
+
from?: number;
|
|
4638
|
+
to?: number;
|
|
4639
|
+
sort?: "DESC" | "ASC";
|
|
4640
|
+
limit?: number;
|
|
4503
4641
|
timestamp?: string;
|
|
4504
4642
|
}): Promise<FactionTerritoryWarsHistoryResponse>;
|
|
4505
4643
|
/**
|
|
@@ -4772,6 +4910,7 @@ declare class MarketEndpoint {
|
|
|
4772
4910
|
get(params?: {
|
|
4773
4911
|
selections?: MarketSelectionName[];
|
|
4774
4912
|
id?: ItemId | PropertyTypeId;
|
|
4913
|
+
legacy?: MarketSelectionName[];
|
|
4775
4914
|
cat?: MarketSpecializedBazaarCategoryEnum;
|
|
4776
4915
|
bonus?: WeaponBonusEnum;
|
|
4777
4916
|
sort?: "DESC" | "ASC";
|
|
@@ -4805,6 +4944,7 @@ declare class MarketIdContext {
|
|
|
4805
4944
|
*/
|
|
4806
4945
|
itemmarket(params?: {
|
|
4807
4946
|
bonus?: WeaponBonusEnum;
|
|
4947
|
+
limit?: number;
|
|
4808
4948
|
offset?: number;
|
|
4809
4949
|
timestamp?: string;
|
|
4810
4950
|
}): Promise<PaginatedResponse<MarketItemMarketResponse> & MarketItemMarketResponse>;
|
|
@@ -5067,6 +5207,9 @@ declare class TornEndpoint {
|
|
|
5067
5207
|
* @param params - Optional query parameters
|
|
5068
5208
|
*/
|
|
5069
5209
|
honors(params?: {
|
|
5210
|
+
limit?: number;
|
|
5211
|
+
offset?: number;
|
|
5212
|
+
sort?: "DESC" | "ASC";
|
|
5070
5213
|
timestamp?: string;
|
|
5071
5214
|
}): Promise<TornHonorsResponse>;
|
|
5072
5215
|
/**
|
|
@@ -5175,6 +5318,7 @@ declare class TornEndpoint {
|
|
|
5175
5318
|
get(params?: {
|
|
5176
5319
|
selections?: TornSelectionName[];
|
|
5177
5320
|
id?: LogCategoryId | TornCrimeId | ItemId[] | MedalId[] | HonorId[] | FactionTerritoryEnum[];
|
|
5321
|
+
legacy?: TornSelectionName[];
|
|
5178
5322
|
striptags?: "true" | "false";
|
|
5179
5323
|
limit?: number;
|
|
5180
5324
|
to?: number;
|
|
@@ -5286,6 +5430,13 @@ declare class UserEndpoint {
|
|
|
5286
5430
|
from?: number;
|
|
5287
5431
|
timestamp?: string;
|
|
5288
5432
|
}): Promise<PaginatedResponse<FactionAttacksFullResponse> & FactionAttacksFullResponse>;
|
|
5433
|
+
/**
|
|
5434
|
+
* Get your bars information
|
|
5435
|
+
* @param params - Optional query parameters
|
|
5436
|
+
*/
|
|
5437
|
+
bars(params?: {
|
|
5438
|
+
timestamp?: string;
|
|
5439
|
+
}): Promise<UserBarsResponse>;
|
|
5289
5440
|
/**
|
|
5290
5441
|
* Get your basic profile information
|
|
5291
5442
|
* @param params - Optional query parameters
|
|
@@ -5295,19 +5446,19 @@ declare class UserEndpoint {
|
|
|
5295
5446
|
timestamp?: string;
|
|
5296
5447
|
}): Promise<UserBasicResponse>;
|
|
5297
5448
|
/**
|
|
5298
|
-
* Get
|
|
5449
|
+
* Get your battlestats
|
|
5299
5450
|
* @param params - Optional query parameters
|
|
5300
5451
|
*/
|
|
5301
|
-
|
|
5452
|
+
battlestats(params?: {
|
|
5302
5453
|
timestamp?: string;
|
|
5303
|
-
}): Promise<
|
|
5454
|
+
}): Promise<UserBattleStatsResponse>;
|
|
5304
5455
|
/**
|
|
5305
|
-
* Get
|
|
5456
|
+
* Get bounties placed on you
|
|
5306
5457
|
* @param params - Optional query parameters
|
|
5307
5458
|
*/
|
|
5308
|
-
|
|
5459
|
+
bounties(params?: {
|
|
5309
5460
|
timestamp?: string;
|
|
5310
|
-
}): Promise<
|
|
5461
|
+
}): Promise<UserBountiesResponse>;
|
|
5311
5462
|
/**
|
|
5312
5463
|
* Get your competition's event start time
|
|
5313
5464
|
* @param params - Optional query parameters
|
|
@@ -5322,6 +5473,13 @@ declare class UserEndpoint {
|
|
|
5322
5473
|
competition(params?: {
|
|
5323
5474
|
timestamp?: string;
|
|
5324
5475
|
}): Promise<UserCompetitionResponse>;
|
|
5476
|
+
/**
|
|
5477
|
+
* Get your cooldowns information
|
|
5478
|
+
* @param params - Optional query parameters
|
|
5479
|
+
*/
|
|
5480
|
+
cooldowns(params?: {
|
|
5481
|
+
timestamp?: string;
|
|
5482
|
+
}): Promise<UserCooldownsResponse>;
|
|
5325
5483
|
/**
|
|
5326
5484
|
* Get your education information
|
|
5327
5485
|
* @param params - Optional query parameters
|
|
@@ -5330,12 +5488,23 @@ declare class UserEndpoint {
|
|
|
5330
5488
|
timestamp?: string;
|
|
5331
5489
|
}): Promise<UserEducationResponse>;
|
|
5332
5490
|
/**
|
|
5333
|
-
* Get
|
|
5491
|
+
* Get your enlisted cars
|
|
5334
5492
|
* @param params - Optional query parameters
|
|
5335
5493
|
*/
|
|
5336
5494
|
enlistedcars(params?: {
|
|
5337
5495
|
timestamp?: string;
|
|
5338
5496
|
}): Promise<UserEnlistedCarsResponse>;
|
|
5497
|
+
/**
|
|
5498
|
+
* Get your events
|
|
5499
|
+
* @param params - Optional query parameters
|
|
5500
|
+
*/
|
|
5501
|
+
events(params?: {
|
|
5502
|
+
striptags?: "true" | "false";
|
|
5503
|
+
limit?: number;
|
|
5504
|
+
from?: number;
|
|
5505
|
+
to?: number;
|
|
5506
|
+
timestamp?: string;
|
|
5507
|
+
}): Promise<PaginatedResponse<UserEventsResponse> & UserEventsResponse>;
|
|
5339
5508
|
/**
|
|
5340
5509
|
* Get your faction information
|
|
5341
5510
|
* @param params - Optional query parameters
|
|
@@ -5450,6 +5619,7 @@ declare class UserEndpoint {
|
|
|
5450
5619
|
*/
|
|
5451
5620
|
list(params?: {
|
|
5452
5621
|
cat?: UserListEnum;
|
|
5622
|
+
striptags?: "true" | "false";
|
|
5453
5623
|
limit?: number;
|
|
5454
5624
|
offset?: number;
|
|
5455
5625
|
sort?: "DESC" | "ASC";
|
|
@@ -5481,6 +5651,17 @@ declare class UserEndpoint {
|
|
|
5481
5651
|
merits(params?: {
|
|
5482
5652
|
timestamp?: string;
|
|
5483
5653
|
}): Promise<UserMeritsResponse>;
|
|
5654
|
+
/**
|
|
5655
|
+
* Get your messages
|
|
5656
|
+
* @param params - Optional query parameters
|
|
5657
|
+
*/
|
|
5658
|
+
messages(params?: {
|
|
5659
|
+
limit?: number;
|
|
5660
|
+
from?: number;
|
|
5661
|
+
to?: number;
|
|
5662
|
+
sort?: "DESC" | "ASC";
|
|
5663
|
+
timestamp?: string;
|
|
5664
|
+
}): Promise<PaginatedResponse<UserMessagesResponse> & UserMessagesResponse>;
|
|
5484
5665
|
/**
|
|
5485
5666
|
* Get your current wealth
|
|
5486
5667
|
* @param params - Optional query parameters
|
|
@@ -5488,6 +5669,28 @@ declare class UserEndpoint {
|
|
|
5488
5669
|
money(params?: {
|
|
5489
5670
|
timestamp?: string;
|
|
5490
5671
|
}): Promise<UserMoneyResponse>;
|
|
5672
|
+
/**
|
|
5673
|
+
* Get your unseen events
|
|
5674
|
+
* @param params - Optional query parameters
|
|
5675
|
+
*/
|
|
5676
|
+
newevents(params?: {
|
|
5677
|
+
striptags?: "true" | "false";
|
|
5678
|
+
timestamp?: string;
|
|
5679
|
+
}): Promise<UserNewEventsResponse>;
|
|
5680
|
+
/**
|
|
5681
|
+
* Get your unseen messages
|
|
5682
|
+
* @param params - Optional query parameters
|
|
5683
|
+
*/
|
|
5684
|
+
newmessages(params?: {
|
|
5685
|
+
timestamp?: string;
|
|
5686
|
+
}): Promise<UserNewMessagesResponse>;
|
|
5687
|
+
/**
|
|
5688
|
+
* Get your notifications
|
|
5689
|
+
* @param params - Optional query parameters
|
|
5690
|
+
*/
|
|
5691
|
+
notifications(params?: {
|
|
5692
|
+
timestamp?: string;
|
|
5693
|
+
}): Promise<UserNotificationsResponse>;
|
|
5491
5694
|
/**
|
|
5492
5695
|
* Get your current ongoing organized crime
|
|
5493
5696
|
* @param params - Optional query parameters
|
|
@@ -5548,6 +5751,13 @@ declare class UserEndpoint {
|
|
|
5548
5751
|
racingrecords(params?: {
|
|
5549
5752
|
timestamp?: string;
|
|
5550
5753
|
}): Promise<UserRacingRecordsResponse>;
|
|
5754
|
+
/**
|
|
5755
|
+
* Get your refills information
|
|
5756
|
+
* @param params - Optional query parameters
|
|
5757
|
+
*/
|
|
5758
|
+
refills(params?: {
|
|
5759
|
+
timestamp?: string;
|
|
5760
|
+
}): Promise<UserRefillsResponse>;
|
|
5551
5761
|
/**
|
|
5552
5762
|
* Get your reports
|
|
5553
5763
|
* @param params - Optional query parameters
|
|
@@ -5592,6 +5802,20 @@ declare class UserEndpoint {
|
|
|
5592
5802
|
skills(params?: {
|
|
5593
5803
|
timestamp?: string;
|
|
5594
5804
|
}): Promise<UserSkillsResponse>;
|
|
5805
|
+
/**
|
|
5806
|
+
* Get your travel information
|
|
5807
|
+
* @param params - Optional query parameters
|
|
5808
|
+
*/
|
|
5809
|
+
travel(params?: {
|
|
5810
|
+
timestamp?: string;
|
|
5811
|
+
}): Promise<UserTravelResponse>;
|
|
5812
|
+
/**
|
|
5813
|
+
* Get your virus information
|
|
5814
|
+
* @param params - Optional query parameters
|
|
5815
|
+
*/
|
|
5816
|
+
virus(params?: {
|
|
5817
|
+
timestamp?: string;
|
|
5818
|
+
}): Promise<UserVirusResponse>;
|
|
5595
5819
|
/**
|
|
5596
5820
|
* Get your working stats
|
|
5597
5821
|
* @param params - Optional query parameters
|
|
@@ -5620,6 +5844,7 @@ declare class UserEndpoint {
|
|
|
5620
5844
|
get(params?: {
|
|
5621
5845
|
selections?: UserSelectionName[];
|
|
5622
5846
|
id?: UserId | TornCrimeId | string;
|
|
5847
|
+
legacy?: UserSelectionName[];
|
|
5623
5848
|
limit?: number;
|
|
5624
5849
|
from?: number;
|
|
5625
5850
|
to?: number;
|
|
@@ -5910,4 +6135,4 @@ declare class TornRateLimitError extends Error {
|
|
|
5910
6135
|
constructor(message: string);
|
|
5911
6136
|
}
|
|
5912
6137
|
|
|
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 };
|
|
6138
|
+
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 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 UserBar, type UserBars, type UserBarsResponse, 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 UserCooldownsResponse, 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 UserEvent, type UserEventId, type UserEventsResponse, type UserFaction, type UserFactionBalance, type UserFactionBalanceResponse, type UserFactionResponse, type UserFlyMethodEnum, 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 UserMessage, type UserMessageId, type UserMessageTypeEnum, type UserMessagesResponse, type UserMoneyResponse, type UserNewEventsResponse, type UserNewMessagesResponse, type UserNotificationsResponse, 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 UserRefillsResponse, type UserResponse, type UserRoleEnum, type UserRpsStatus, type UserSelectionName, type UserSkillDetail, type UserSkillSlugEnum, type UserSkillsResponse, type UserStatus, type UserStatusStateEnum, type UserSubcrime, type UserTitleEnum, type UserTravelResponse, type UserVirus, type UserVirusResponse, type UserWorkStatsResponse, type WeaponBonusEnum };
|