torn-client 0.4.0 → 0.4.2
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 +185 -13
- package/dist/index.d.ts +185 -13
- 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.ts
CHANGED
|
@@ -160,13 +160,7 @@ type AttackPlayer = {
|
|
|
160
160
|
id: UserId;
|
|
161
161
|
name: string;
|
|
162
162
|
level: number;
|
|
163
|
-
faction:
|
|
164
|
-
};
|
|
165
|
-
|
|
166
|
-
/** @category Models */
|
|
167
|
-
type AttackPlayerFaction = {
|
|
168
|
-
id: FactionId;
|
|
169
|
-
name: string;
|
|
163
|
+
faction: UserFactionBasic | null;
|
|
170
164
|
};
|
|
171
165
|
|
|
172
166
|
/** @category Models */
|
|
@@ -957,7 +951,7 @@ type FactionPosition = {
|
|
|
957
951
|
};
|
|
958
952
|
|
|
959
953
|
/** @category Models */
|
|
960
|
-
type FactionPositionAbilityEnum = "Medical
|
|
954
|
+
type FactionPositionAbilityEnum = "Medical Usage" | "Booster Usage" | "Drug Usage" | "Energy Refill Usage" | "Nerve Refill Usage" | "Temporary Loaning" | "Weapon & Armor Loaning" | "Item Retrieving" | "Organised Crimes" | "Faction API Access" | "Item Giving" | "Money Giving" | "Points Giving" | "Forum Management" | "Application Management" | "Kick Members" | "Balance Adjustment" | "War Management" | "Upgrade Management" | "Newsletter Sending" | "Announcement Changes" | "Description Changes" | "Utility Loaning" | "Consumable Usage" | "Medical Loaning" | "Consumable Loaning" | "Drug Loaning" | "Booster Loaning";
|
|
961
955
|
|
|
962
956
|
/** @category Models */
|
|
963
957
|
type FactionPositionsResponse = {
|
|
@@ -1622,6 +1616,7 @@ type ItemMarket = {
|
|
|
1622
1616
|
item: ItemMarketItem;
|
|
1623
1617
|
listings: ItemMarketListingNonstackable | ItemMarketListingStackable[];
|
|
1624
1618
|
cache_timestamp: number;
|
|
1619
|
+
cache_delay?: number;
|
|
1625
1620
|
};
|
|
1626
1621
|
|
|
1627
1622
|
/** @category Models */
|
|
@@ -1773,6 +1768,7 @@ type MarketLookupResponse = {
|
|
|
1773
1768
|
type MarketPropertiesResponse = {
|
|
1774
1769
|
properties: MarketPropertyDetails;
|
|
1775
1770
|
properties_timestamp: number;
|
|
1771
|
+
properties_delay?: number;
|
|
1776
1772
|
_metadata: RequestMetadataWithLinks;
|
|
1777
1773
|
};
|
|
1778
1774
|
|
|
@@ -1806,6 +1802,7 @@ type MarketRentalDetails = {
|
|
|
1806
1802
|
type MarketRentalsResponse = {
|
|
1807
1803
|
rentals: MarketRentalDetails;
|
|
1808
1804
|
rentals_timestamp: number;
|
|
1805
|
+
rentals_delay?: number;
|
|
1809
1806
|
_metadata: RequestMetadataWithLinks;
|
|
1810
1807
|
};
|
|
1811
1808
|
|
|
@@ -2952,6 +2949,7 @@ type TimestampResponse = {
|
|
|
2952
2949
|
type TornBountiesResponse = {
|
|
2953
2950
|
bounties: Bounty[];
|
|
2954
2951
|
bounties_timestamp: number;
|
|
2952
|
+
bounties_delay?: number;
|
|
2955
2953
|
_metadata: RequestMetadataWithLinks;
|
|
2956
2954
|
};
|
|
2957
2955
|
|
|
@@ -3178,6 +3176,9 @@ type TornHonorsResponse = {
|
|
|
3178
3176
|
honors: TornHonor[];
|
|
3179
3177
|
};
|
|
3180
3178
|
|
|
3179
|
+
/** @category Models */
|
|
3180
|
+
type TornInventoryItemType = "Collectible" | "Clothing" | "Other" | "Tool" | "Melee" | "Defensive" | "Material" | "Car" | "Primary" | "Secondary" | "Book" | "Special" | "Supply Pack" | "Temporary" | "Enhancer" | "Artifact" | "Flower" | "Booster" | "Medical" | "Candy" | "Jewelry" | "Alcohol" | "Plushie" | "Drug" | "Energy Drink";
|
|
3181
|
+
|
|
3181
3182
|
/** @category Models */
|
|
3182
3183
|
type TornItem = {
|
|
3183
3184
|
id: ItemId;
|
|
@@ -3558,6 +3559,77 @@ type TornTerritoryCoordinates = {
|
|
|
3558
3559
|
y: number;
|
|
3559
3560
|
};
|
|
3560
3561
|
|
|
3562
|
+
/** @category Models */
|
|
3563
|
+
type TradeCategoryEnum = "finished" | "ongoing";
|
|
3564
|
+
|
|
3565
|
+
/** @category Models */
|
|
3566
|
+
type TradeId = number;
|
|
3567
|
+
|
|
3568
|
+
/** @category Models */
|
|
3569
|
+
type TradeItem = TradeItemMoney | TradeItemItem | TradeItemFaction | TradeItemCompany | TradeItemProperty | TradeItemNap;
|
|
3570
|
+
|
|
3571
|
+
/** @category Models */
|
|
3572
|
+
type TradeItemCompany = {
|
|
3573
|
+
user_id: UserId;
|
|
3574
|
+
type: "Company";
|
|
3575
|
+
details: {
|
|
3576
|
+
id: CompanyId;
|
|
3577
|
+
name: string;
|
|
3578
|
+
value: number;
|
|
3579
|
+
};
|
|
3580
|
+
};
|
|
3581
|
+
|
|
3582
|
+
/** @category Models */
|
|
3583
|
+
type TradeItemFaction = {
|
|
3584
|
+
user_id: UserId;
|
|
3585
|
+
type: "Faction";
|
|
3586
|
+
details: {
|
|
3587
|
+
id: FactionId;
|
|
3588
|
+
name: string;
|
|
3589
|
+
respect: number;
|
|
3590
|
+
};
|
|
3591
|
+
};
|
|
3592
|
+
|
|
3593
|
+
/** @category Models */
|
|
3594
|
+
type TradeItemItem = {
|
|
3595
|
+
user_id: UserId;
|
|
3596
|
+
type: "Item";
|
|
3597
|
+
details: {
|
|
3598
|
+
id: ItemId;
|
|
3599
|
+
uid: ItemUid | null;
|
|
3600
|
+
amount: number;
|
|
3601
|
+
};
|
|
3602
|
+
};
|
|
3603
|
+
|
|
3604
|
+
/** @category Models */
|
|
3605
|
+
type TradeItemMoney = {
|
|
3606
|
+
user_id: UserId;
|
|
3607
|
+
type: "Money";
|
|
3608
|
+
details: {
|
|
3609
|
+
amount: number;
|
|
3610
|
+
};
|
|
3611
|
+
};
|
|
3612
|
+
|
|
3613
|
+
/** @category Models */
|
|
3614
|
+
type TradeItemNap = {
|
|
3615
|
+
user_id: UserId;
|
|
3616
|
+
type: "NAP";
|
|
3617
|
+
details: {
|
|
3618
|
+
days: number;
|
|
3619
|
+
factions: UserFactionBasic[];
|
|
3620
|
+
};
|
|
3621
|
+
};
|
|
3622
|
+
|
|
3623
|
+
/** @category Models */
|
|
3624
|
+
type TradeItemProperty = {
|
|
3625
|
+
user_id: UserId;
|
|
3626
|
+
type: "Property";
|
|
3627
|
+
details: {
|
|
3628
|
+
id: PropertyId;
|
|
3629
|
+
happiness: number;
|
|
3630
|
+
};
|
|
3631
|
+
};
|
|
3632
|
+
|
|
3561
3633
|
/** @category Models */
|
|
3562
3634
|
type User = {
|
|
3563
3635
|
rank?: string;
|
|
@@ -3722,6 +3794,7 @@ type UserBattleStatsResponse = {
|
|
|
3722
3794
|
type UserBountiesResponse = {
|
|
3723
3795
|
bounties: Bounty[];
|
|
3724
3796
|
bounties_timestamp: number;
|
|
3797
|
+
bounties_delay?: number;
|
|
3725
3798
|
};
|
|
3726
3799
|
|
|
3727
3800
|
/** @category Models */
|
|
@@ -4070,6 +4143,12 @@ type UserFactionBalanceResponse = {
|
|
|
4070
4143
|
factionBalance: UserFactionBalance | null;
|
|
4071
4144
|
};
|
|
4072
4145
|
|
|
4146
|
+
/** @category Models */
|
|
4147
|
+
type UserFactionBasic = {
|
|
4148
|
+
id: FactionId;
|
|
4149
|
+
name: string;
|
|
4150
|
+
};
|
|
4151
|
+
|
|
4073
4152
|
/** @category Models */
|
|
4074
4153
|
type UserFactionResponse = {
|
|
4075
4154
|
faction: UserFaction | null;
|
|
@@ -4166,6 +4245,28 @@ type UserIconsResponse = {
|
|
|
4166
4245
|
/** @category Models */
|
|
4167
4246
|
type UserId = number;
|
|
4168
4247
|
|
|
4248
|
+
/** @category Models */
|
|
4249
|
+
type UserInventory = {
|
|
4250
|
+
items: UserInventoryItem[];
|
|
4251
|
+
timestamp: number;
|
|
4252
|
+
};
|
|
4253
|
+
|
|
4254
|
+
/** @category Models */
|
|
4255
|
+
type UserInventoryItem = {
|
|
4256
|
+
id: ItemId;
|
|
4257
|
+
amount: number;
|
|
4258
|
+
equipped: boolean;
|
|
4259
|
+
name: string;
|
|
4260
|
+
faction_owned: boolean;
|
|
4261
|
+
uid: ItemUid | null;
|
|
4262
|
+
};
|
|
4263
|
+
|
|
4264
|
+
/** @category Models */
|
|
4265
|
+
type UserInventoryResponse = {
|
|
4266
|
+
inventory: UserInventory;
|
|
4267
|
+
_metadata: RequestMetadataWithLinksAndTotal;
|
|
4268
|
+
};
|
|
4269
|
+
|
|
4169
4270
|
/** @category Models */
|
|
4170
4271
|
type UserItemMarkeListingItemDetails = {
|
|
4171
4272
|
id: number;
|
|
@@ -4646,7 +4747,7 @@ type UserRefillsResponse = {
|
|
|
4646
4747
|
};
|
|
4647
4748
|
|
|
4648
4749
|
/** @category Models */
|
|
4649
|
-
type UserResponse = UserCrimesResponse | UserWeaponExpResponse | UserAmmoResponse | UserDiscordResponse | UserRacesResponse | UserEnlistedCarsResponse | UserForumPostsResponse | UserForumThreadsResponse | UserForumSubscribedThreadsResponse | UserForumFeedResponse | UserForumFriendsResponse | UserPropertyResponse | ReportsResponse | UserHofResponse | UserCalendarResponse | UserRacingRecordsResponse | UserEducationResponse | UserStocksResponse | UserBountiesResponse | UserJobRanksResponse | UserPropertiesResponse | UserFactionBalanceResponse | UserBasicResponse | RevivesResponse | UserHonorsResponse | UserMedalsResponse | UserMeritsResponse | RevivesFullResponse | UserProfileResponse | UserJobResponse | UserFactionResponse | UserCompetitionResponse | UserIconsResponse | UserItemMarketResponse | UserListResponse | UserEquipmentResponse | UserMissionsResponse | UserPersonalStatsResponse | UserOrganizedCrimeResponse | AttacksResponse | UserBarsResponse | UserCooldownsResponse | UserNotificationsResponse | UserRefillsResponse | UserTravelResponse | UserVirusResponse | AttacksFullResponse | UserMoneyResponse | UserJobPointsResponse | UserWorkStatsResponse | UserSkillsResponse | UserBattleStatsResponse | UserNewEventsResponse | UserEventsResponse | UserMessagesResponse | UserNewMessagesResponse | UserLookupResponse | TimestampResponse;
|
|
4750
|
+
type UserResponse = UserCrimesResponse | UserWeaponExpResponse | UserAmmoResponse | UserDiscordResponse | UserRacesResponse | UserEnlistedCarsResponse | UserForumPostsResponse | UserForumThreadsResponse | UserForumSubscribedThreadsResponse | UserForumFeedResponse | UserForumFriendsResponse | UserPropertyResponse | ReportsResponse | UserHofResponse | UserCalendarResponse | UserRacingRecordsResponse | UserEducationResponse | UserStocksResponse | UserBountiesResponse | UserJobRanksResponse | UserPropertiesResponse | UserFactionBalanceResponse | UserBasicResponse | RevivesResponse | UserHonorsResponse | UserMedalsResponse | UserMeritsResponse | RevivesFullResponse | UserProfileResponse | UserJobResponse | UserFactionResponse | UserCompetitionResponse | UserIconsResponse | UserItemMarketResponse | UserListResponse | UserEquipmentResponse | UserMissionsResponse | UserPersonalStatsResponse | UserOrganizedCrimeResponse | AttacksResponse | UserBarsResponse | UserCooldownsResponse | UserNotificationsResponse | UserRefillsResponse | UserTravelResponse | UserVirusResponse | AttacksFullResponse | UserMoneyResponse | UserJobPointsResponse | UserWorkStatsResponse | UserSkillsResponse | UserBattleStatsResponse | UserTradeResponse | UserTradesResponse | UserNewEventsResponse | UserEventsResponse | UserMessagesResponse | UserNewMessagesResponse | UserLookupResponse | UserInventoryResponse | TimestampResponse;
|
|
4650
4751
|
|
|
4651
4752
|
/** @category Models */
|
|
4652
4753
|
type UserRoleEnum = "Admin" | "Officer" | "Moderator" | "Helper" | "Tester" | "NPC" | "Committee" | "Reporter" | "Wiki Contributor" | "Wiki Editor" | "Civilian";
|
|
@@ -4655,7 +4756,7 @@ type UserRoleEnum = "Admin" | "Officer" | "Moderator" | "Helper" | "Tester" | "N
|
|
|
4655
4756
|
type UserRpsStatus = "scissors" | "rock" | "paper";
|
|
4656
4757
|
|
|
4657
4758
|
/** @category Models */
|
|
4658
|
-
type UserSelectionName = "ammo" | "attacks" | "attacksfull" | "bars" | "basic" | "battlestats" | "bounties" | "calendar" | "competition" | "cooldowns" | "crimes" | "discord" | "enlistedcars" | "equipment" | "events" | "faction" | "factionbalance" | "forumfeed" | "forumfriends" | "forumposts" | "forumsubscribedthreads" | "forumthreads" | "hof" | "honors" | "icons" | "itemmarket" | "job" | "jobpoints" | "jobranks" | "list" | "log" | "lookup" | "medals" | "merits" | "messages" | "missions" | "money" | "newevents" | "newmessages" | "notifications" | "organizedcrime" | "personalstats" | "profile" | "properties" | "property" | "races" | "racingrecords" | "refills" | "reports" | "revives" | "revivesfull" | "skills" | "stocks" | "
|
|
4759
|
+
type UserSelectionName = "ammo" | "attacks" | "attacksfull" | "bars" | "basic" | "battlestats" | "bounties" | "calendar" | "competition" | "cooldowns" | "crimes" | "discord" | "enlistedcars" | "equipment" | "events" | "faction" | "factionbalance" | "forumfeed" | "forumfriends" | "forumposts" | "forumsubscribedthreads" | "forumthreads" | "hof" | "honors" | "icons" | "inventory" | "itemmarket" | "job" | "jobpoints" | "jobranks" | "list" | "log" | "lookup" | "medals" | "merits" | "messages" | "missions" | "money" | "newevents" | "newmessages" | "notifications" | "organizedcrime" | "personalstats" | "profile" | "properties" | "property" | "races" | "racingrecords" | "refills" | "reports" | "revives" | "revivesfull" | "skills" | "stocks" | "trades" | "trade" | "travel" | "timestamp" | "weaponexp" | "workstats" | "bazaar" | "criminalrecord" | "display" | "education" | "gym" | "networth" | "perks" | string;
|
|
4659
4760
|
|
|
4660
4761
|
/** @category Models */
|
|
4661
4762
|
type UserSkillDetail = {
|
|
@@ -4725,6 +4826,36 @@ type UserSubcrime = {
|
|
|
4725
4826
|
/** @category Models */
|
|
4726
4827
|
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";
|
|
4727
4828
|
|
|
4829
|
+
/** @category Models */
|
|
4830
|
+
type UserTrade = {
|
|
4831
|
+
id: TradeId;
|
|
4832
|
+
timestamp: number;
|
|
4833
|
+
user: UserTradeParticipant;
|
|
4834
|
+
trader: UserTradeParticipant;
|
|
4835
|
+
};
|
|
4836
|
+
|
|
4837
|
+
/** @category Models */
|
|
4838
|
+
type UserTradeDetailed = UserTrade & {
|
|
4839
|
+
items: TradeItem[];
|
|
4840
|
+
};
|
|
4841
|
+
|
|
4842
|
+
/** @category Models */
|
|
4843
|
+
type UserTradeParticipant = {
|
|
4844
|
+
id: UserId;
|
|
4845
|
+
name: string;
|
|
4846
|
+
};
|
|
4847
|
+
|
|
4848
|
+
/** @category Models */
|
|
4849
|
+
type UserTradeResponse = {
|
|
4850
|
+
trade: UserTradeDetailed;
|
|
4851
|
+
};
|
|
4852
|
+
|
|
4853
|
+
/** @category Models */
|
|
4854
|
+
type UserTradesResponse = {
|
|
4855
|
+
trades: UserTrade[];
|
|
4856
|
+
_metadata: RequestMetadataWithLinks;
|
|
4857
|
+
};
|
|
4858
|
+
|
|
4728
4859
|
/** @category Models */
|
|
4729
4860
|
type UserTravelResponse = {
|
|
4730
4861
|
travel: {
|
|
@@ -4869,6 +5000,7 @@ declare class FactionEndpoint {
|
|
|
4869
5000
|
crimes(params?: {
|
|
4870
5001
|
cat?: "all" | "recruiting" | "planning" | "failure" | "successful" | "expired" | "available" | "completed";
|
|
4871
5002
|
filters?: "created_at" | "executed_at" | "ready_at" | "expired_at";
|
|
5003
|
+
limit?: number;
|
|
4872
5004
|
offset?: number;
|
|
4873
5005
|
from?: number;
|
|
4874
5006
|
to?: number;
|
|
@@ -6227,6 +6359,16 @@ declare class UserEndpoint {
|
|
|
6227
6359
|
icons(params?: {
|
|
6228
6360
|
timestamp?: string;
|
|
6229
6361
|
}): Promise<UserIconsResponse>;
|
|
6362
|
+
/**
|
|
6363
|
+
* Get your inventory
|
|
6364
|
+
* @param params - Optional query parameters
|
|
6365
|
+
*/
|
|
6366
|
+
inventory(params?: {
|
|
6367
|
+
cat?: TornInventoryItemType;
|
|
6368
|
+
offset?: number;
|
|
6369
|
+
limit?: number;
|
|
6370
|
+
timestamp?: string;
|
|
6371
|
+
}): Promise<PaginatedResponse<UserInventoryResponse> & UserInventoryResponse>;
|
|
6230
6372
|
/**
|
|
6231
6373
|
* Get your item market listings
|
|
6232
6374
|
* @param params - Optional query parameters
|
|
@@ -6468,6 +6610,18 @@ declare class UserEndpoint {
|
|
|
6468
6610
|
stocks(params?: {
|
|
6469
6611
|
timestamp?: string;
|
|
6470
6612
|
}): Promise<UserStocksResponse>;
|
|
6613
|
+
/**
|
|
6614
|
+
* Get your trades
|
|
6615
|
+
* @param params - Optional query parameters
|
|
6616
|
+
*/
|
|
6617
|
+
trades(params?: {
|
|
6618
|
+
cat?: TradeCategoryEnum;
|
|
6619
|
+
limit?: number;
|
|
6620
|
+
sort?: "DESC" | "ASC";
|
|
6621
|
+
to?: number;
|
|
6622
|
+
from?: number;
|
|
6623
|
+
timestamp?: string;
|
|
6624
|
+
}): Promise<PaginatedResponse<UserTradesResponse> & UserTradesResponse>;
|
|
6471
6625
|
/**
|
|
6472
6626
|
* Get your travel information
|
|
6473
6627
|
* @param params - Optional query parameters
|
|
@@ -6516,13 +6670,13 @@ declare class UserEndpoint {
|
|
|
6516
6670
|
*/
|
|
6517
6671
|
get(params?: {
|
|
6518
6672
|
selections?: UserSelectionName[];
|
|
6519
|
-
id?: UserDiscordPathId | TornCrimeId | string;
|
|
6673
|
+
id?: UserDiscordPathId | TornCrimeId | TradeId | string;
|
|
6520
6674
|
legacy?: UserSelectionName[];
|
|
6521
6675
|
limit?: number;
|
|
6522
6676
|
from?: number;
|
|
6523
6677
|
to?: number;
|
|
6524
6678
|
sort?: "DESC" | "ASC";
|
|
6525
|
-
cat?: ReportTypeEnum | UserListEnum | PersonalStatsCategoryEnum | RacingRaceTypeEnum;
|
|
6679
|
+
cat?: ReportTypeEnum | UserListEnum | PersonalStatsCategoryEnum | RacingRaceTypeEnum | TornInventoryItemType | TradeCategoryEnum;
|
|
6526
6680
|
stat?: PersonalStatsStatName[];
|
|
6527
6681
|
filters?: "incoming" | "outgoing" | "ownedByUser" | "ownedBySpouse";
|
|
6528
6682
|
striptags?: "true" | "false";
|
|
@@ -6533,6 +6687,8 @@ declare class UserEndpoint {
|
|
|
6533
6687
|
withId(id: string | number): UserIdContext;
|
|
6534
6688
|
/** @param crimeId - The ID for this context */
|
|
6535
6689
|
withCrimeId(crimeId: string | number): UserCrimeIdContext;
|
|
6690
|
+
/** @param tradeId - The ID for this context */
|
|
6691
|
+
withTradeId(tradeId: string | number): UserTradeIdContext;
|
|
6536
6692
|
}
|
|
6537
6693
|
/**
|
|
6538
6694
|
* Context class for User API endpoints that require a "id"
|
|
@@ -6675,6 +6831,22 @@ declare class UserCrimeIdContext {
|
|
|
6675
6831
|
timestamp?: string;
|
|
6676
6832
|
}): Promise<UserCrimesResponse>;
|
|
6677
6833
|
}
|
|
6834
|
+
/**
|
|
6835
|
+
* Context class for User API endpoints that require a "tradeId"
|
|
6836
|
+
* @category Endpoints
|
|
6837
|
+
*/
|
|
6838
|
+
declare class UserTradeIdContext {
|
|
6839
|
+
private readonly requester;
|
|
6840
|
+
private readonly contextId;
|
|
6841
|
+
constructor(requester: Requester, contextId: string | number);
|
|
6842
|
+
/**
|
|
6843
|
+
* Get your detailed trade
|
|
6844
|
+
* @param params - Optional query parameters
|
|
6845
|
+
*/
|
|
6846
|
+
trade(params?: {
|
|
6847
|
+
timestamp?: string;
|
|
6848
|
+
}): Promise<UserTradeResponse>;
|
|
6849
|
+
}
|
|
6678
6850
|
|
|
6679
6851
|
/**
|
|
6680
6852
|
* Defines the configuration options for the RequestHandler
|
|
@@ -6815,4 +6987,4 @@ declare class TornRateLimitError extends Error {
|
|
|
6815
6987
|
constructor(message: string);
|
|
6816
6988
|
}
|
|
6817
6989
|
|
|
6818
|
-
export { type AmmoId, type ApiError, type ApiFiltersAttacksRevivesEnum, 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 AttacksFullResponse, type AttacksResponse, type AuctionHouseListing, type AuctionHouseResponse, type AuctionHouseStackableItem, type AuctionListingId, type AwardCrimesVersionEnum, 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 DiscordId, type EducationId, type EliminationTeamId, type ErrorAccessLevelTooLow, type ErrorApiDisabled, type ErrorApiKeyPaused, type ErrorBackendError, type ErrorCategorySelectionUnavailableForInteractionLogs, type ErrorClosedTemporarily, type ErrorDailyReadLimitReached, type ErrorIncorrectCategory, type ErrorIncorrectId, type ErrorIncorrectIdEntityRelation, type ErrorIncorrectKey, type ErrorIncorrectLogId, type ErrorInvalidStatRequested, type ErrorIpBlocked, type ErrorKeyChangeCooldown, type ErrorKeyEmpty, type ErrorKeyOwnerInFederalJail, type ErrorKeyReadError, type ErrorKeyTemporaryDisabled, type ErrorLogUnavailable, type ErrorMustMigrateToCrimesV2, type ErrorMustMigrateToOrganizedCrimesV2, type ErrorOnlyAvailableInApiV1, type ErrorOnlyAvailableInApiV2, type ErrorOnlyCategoryOrStatsAllowed, type ErrorRaceNotFinished, type ErrorTooManyRequests, type ErrorUnknown, type ErrorWrongFields, type ErrorWrongType, type Faction, type FactionApplication, type FactionApplicationStatusEnum, type FactionApplicationsResponse, type FactionAttackResult, 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 FactionSlotPositionInfo, 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 MissionDifficultyEnum, type MissionRewardDetailsAmmo, type MissionRewardDetailsItem, type MissionRewardDetailsUpgrade, type MissionRewardUpgrade, type MissionStatusEnum, 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 StockId, 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, type TornEliminationTeam, type TornEliminationTeamLeader, type TornEliminationTeamPlayer, type TornEliminationTeamPlayersResponse, type TornEliminationTeamsResponse, 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, TornIdContext, TornIdsContext, type TornItem, type TornItemAmmo, type TornItemAmmoResponse, type TornItemAmmoTypeEnum, type TornItemArmorCoverage, type TornItemArmorCoveragePartEnum, type TornItemArmorDetails, type TornItemBaseStats, type TornItemCategory, type TornItemDetails, type TornItemDetailsResponse, 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 TornOrganizedCrimePositionIdDeprecated, type TornOrganizedCrimeRequiredItem, type TornOrganizedCrimeResponse, type TornOrganizedCrimeScope, type TornOrganizedCrimeSlot, type TornOrganizedCrimeSpawn, type TornProperties, type TornRacket, type TornRacketReward, type TornRacketType, TornRateLimitError, type TornResponse, type TornSelectionName, type TornStock, type TornStockDetailed, type TornStockDetailedResponse, type TornStockHistory, TornStockIdContext, type TornStockPerformance, type TornStocksResponse, type TornSubcrime, type TornSubcrimesResponse, type TornTerritoriesNoLinksResponse, type TornTerritoriesResponse, type TornTerritory, type TornTerritoryCoordinates, type User, type UserAmmo, type UserAmmoResponse, type UserAmmoType, type UserBar, type UserBars, type UserBarsResponse, type UserBasic, type UserBasicResponse, type UserBattleStatDetail, type UserBattleStatModifierDetail, type UserBattleStatsResponse, type UserBountiesResponse, type UserCalendar, type UserCalendarResponse, type UserClothing, type UserCompany, type UserCompanyPoints, type UserCompetitionEasterEggs, type UserCompetitionElimination, 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 UserDiscordPathId, type UserDiscordResponse, type UserDonatorStatusEnum, type UserEducation, type UserEducationResponse, UserEndpoint, type UserEnlistedCarsResponse, type UserEquipment, type UserEquipmentResponse, 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 UserLastActionStatusEnum, 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 UserMissionsResponse, type UserMoneyResponse, type UserNewEventsResponse, type UserNewMessagesResponse, type UserNotificationsResponse, type UserOrganizedCrimeError, type UserOrganizedCrimeResponse, type UserOrganizedCrimesResponse, 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 UserRaceDetails, 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 UserStock, type UserStockTransaction, type UserStocksResponse, type UserSubcrime, type UserTitleEnum, type UserTravelResponse, type UserVirus, type UserVirusResponse, type UserWeaponExp, type UserWeaponExpResponse, type UserWorkStatsResponse, type WeaponBonusEnum };
|
|
6990
|
+
export { type AmmoId, type ApiError, type ApiFiltersAttacksRevivesEnum, type ApiKeyAccessTypeEnum, type ApiKeyBalancing, type Attack, type AttackActionEnum, type AttackCode, type AttackFinishingHitEffect, type AttackId, type AttackLog, type AttackLogResponse, type AttackLogSummary, type AttackPlayer, type AttackPlayerSimplified, type AttackSimplified, type AttackingFinishingHitEffects, type AttacksFullResponse, type AttacksResponse, type AuctionHouseListing, type AuctionHouseResponse, type AuctionHouseStackableItem, type AuctionListingId, type AwardCrimesVersionEnum, 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 DiscordId, type EducationId, type EliminationTeamId, type ErrorAccessLevelTooLow, type ErrorApiDisabled, type ErrorApiKeyPaused, type ErrorBackendError, type ErrorCategorySelectionUnavailableForInteractionLogs, type ErrorClosedTemporarily, type ErrorDailyReadLimitReached, type ErrorIncorrectCategory, type ErrorIncorrectId, type ErrorIncorrectIdEntityRelation, type ErrorIncorrectKey, type ErrorIncorrectLogId, type ErrorInvalidStatRequested, type ErrorIpBlocked, type ErrorKeyChangeCooldown, type ErrorKeyEmpty, type ErrorKeyOwnerInFederalJail, type ErrorKeyReadError, type ErrorKeyTemporaryDisabled, type ErrorLogUnavailable, type ErrorMustMigrateToCrimesV2, type ErrorMustMigrateToOrganizedCrimesV2, type ErrorOnlyAvailableInApiV1, type ErrorOnlyAvailableInApiV2, type ErrorOnlyCategoryOrStatsAllowed, type ErrorRaceNotFinished, type ErrorTooManyRequests, type ErrorUnknown, type ErrorWrongFields, type ErrorWrongType, type Faction, type FactionApplication, type FactionApplicationStatusEnum, type FactionApplicationsResponse, type FactionAttackResult, 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 FactionSlotPositionInfo, 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 MissionDifficultyEnum, type MissionRewardDetailsAmmo, type MissionRewardDetailsItem, type MissionRewardDetailsUpgrade, type MissionRewardUpgrade, type MissionStatusEnum, 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 StockId, 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, type TornEliminationTeam, type TornEliminationTeamLeader, type TornEliminationTeamPlayer, type TornEliminationTeamPlayersResponse, type TornEliminationTeamsResponse, 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, TornIdContext, TornIdsContext, type TornInventoryItemType, type TornItem, type TornItemAmmo, type TornItemAmmoResponse, type TornItemAmmoTypeEnum, type TornItemArmorCoverage, type TornItemArmorCoveragePartEnum, type TornItemArmorDetails, type TornItemBaseStats, type TornItemCategory, type TornItemDetails, type TornItemDetailsResponse, 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 TornOrganizedCrimePositionIdDeprecated, type TornOrganizedCrimeRequiredItem, type TornOrganizedCrimeResponse, type TornOrganizedCrimeScope, type TornOrganizedCrimeSlot, type TornOrganizedCrimeSpawn, type TornProperties, type TornRacket, type TornRacketReward, type TornRacketType, TornRateLimitError, type TornResponse, type TornSelectionName, type TornStock, type TornStockDetailed, type TornStockDetailedResponse, type TornStockHistory, TornStockIdContext, type TornStockPerformance, type TornStocksResponse, type TornSubcrime, type TornSubcrimesResponse, type TornTerritoriesNoLinksResponse, type TornTerritoriesResponse, type TornTerritory, type TornTerritoryCoordinates, type TradeCategoryEnum, type TradeId, type TradeItem, type TradeItemCompany, type TradeItemFaction, type TradeItemItem, type TradeItemMoney, type TradeItemNap, type TradeItemProperty, type User, type UserAmmo, type UserAmmoResponse, type UserAmmoType, type UserBar, type UserBars, type UserBarsResponse, type UserBasic, type UserBasicResponse, type UserBattleStatDetail, type UserBattleStatModifierDetail, type UserBattleStatsResponse, type UserBountiesResponse, type UserCalendar, type UserCalendarResponse, type UserClothing, type UserCompany, type UserCompanyPoints, type UserCompetitionEasterEggs, type UserCompetitionElimination, 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 UserDiscordPathId, type UserDiscordResponse, type UserDonatorStatusEnum, type UserEducation, type UserEducationResponse, UserEndpoint, type UserEnlistedCarsResponse, type UserEquipment, type UserEquipmentResponse, type UserEvent, type UserEventId, type UserEventsResponse, type UserFaction, type UserFactionBalance, type UserFactionBalanceResponse, type UserFactionBasic, 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 UserInventory, type UserInventoryItem, type UserInventoryResponse, type UserItemMarkeListingItemDetails, type UserItemMarketListing, type UserItemMarketResponse, type UserJob, type UserJobPointsResponse, type UserJobRanks, type UserJobRanksResponse, type UserJobResponse, type UserLastAction, type UserLastActionStatusEnum, 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 UserMissionsResponse, type UserMoneyResponse, type UserNewEventsResponse, type UserNewMessagesResponse, type UserNotificationsResponse, type UserOrganizedCrimeError, type UserOrganizedCrimeResponse, type UserOrganizedCrimesResponse, 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 UserRaceDetails, 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 UserStock, type UserStockTransaction, type UserStocksResponse, type UserSubcrime, type UserTitleEnum, type UserTrade, type UserTradeDetailed, UserTradeIdContext, type UserTradeParticipant, type UserTradeResponse, type UserTradesResponse, type UserTravelResponse, type UserVirus, type UserVirusResponse, type UserWeaponExp, type UserWeaponExpResponse, type UserWorkStatsResponse, type WeaponBonusEnum };
|