torn-client 0.2.0 → 0.2.1
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 +169 -4
- package/dist/index.d.ts +169 -4
- 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
|
@@ -288,6 +288,9 @@ type ChainId = number;
|
|
|
288
288
|
/** @category Models */
|
|
289
289
|
type CompanyId = number;
|
|
290
290
|
|
|
291
|
+
/** @category Models */
|
|
292
|
+
type CompanyTypeId = number;
|
|
293
|
+
|
|
291
294
|
/** @category Models */
|
|
292
295
|
type CountryEnum = "Mexico" | "Hawaii" | "South Africa" | "Japan" | "China" | "Argentina" | "Switzerland" | "Canada" | "United Kingdom" | "UAE" | "Cayman Islands";
|
|
293
296
|
|
|
@@ -3161,6 +3164,45 @@ type User = {
|
|
|
3161
3164
|
};
|
|
3162
3165
|
};
|
|
3163
3166
|
|
|
3167
|
+
/** @category Models */
|
|
3168
|
+
type UserBasic = {
|
|
3169
|
+
id: UserId;
|
|
3170
|
+
name: string;
|
|
3171
|
+
level: number;
|
|
3172
|
+
gender: UserGenderEnum;
|
|
3173
|
+
status: UserStatus;
|
|
3174
|
+
};
|
|
3175
|
+
|
|
3176
|
+
/** @category Models */
|
|
3177
|
+
type UserBasicResponse = {
|
|
3178
|
+
profile: UserBasic;
|
|
3179
|
+
};
|
|
3180
|
+
|
|
3181
|
+
/** @category Models */
|
|
3182
|
+
type UserBattleStatDetail = {
|
|
3183
|
+
value: number;
|
|
3184
|
+
modifier: number;
|
|
3185
|
+
modifiers: UserBattleStatModifierDetail[];
|
|
3186
|
+
};
|
|
3187
|
+
|
|
3188
|
+
/** @category Models */
|
|
3189
|
+
type UserBattleStatModifierDetail = {
|
|
3190
|
+
effect: string;
|
|
3191
|
+
value: number;
|
|
3192
|
+
type: string;
|
|
3193
|
+
};
|
|
3194
|
+
|
|
3195
|
+
/** @category Models */
|
|
3196
|
+
type UserBattleStatsResponse = {
|
|
3197
|
+
battlestats: {
|
|
3198
|
+
strength: UserBattleStatDetail;
|
|
3199
|
+
defense: UserBattleStatDetail;
|
|
3200
|
+
speed: UserBattleStatDetail;
|
|
3201
|
+
dexterity: UserBattleStatDetail;
|
|
3202
|
+
total: number;
|
|
3203
|
+
};
|
|
3204
|
+
};
|
|
3205
|
+
|
|
3164
3206
|
/** @category Models */
|
|
3165
3207
|
type UserBountiesResponse = {
|
|
3166
3208
|
bounties: Bounty[];
|
|
@@ -3176,6 +3218,15 @@ type UserCalendarResponse = {
|
|
|
3176
3218
|
calendar: UserCalendar;
|
|
3177
3219
|
};
|
|
3178
3220
|
|
|
3221
|
+
/** @category Models */
|
|
3222
|
+
type UserCompanyPoints = {
|
|
3223
|
+
company: {
|
|
3224
|
+
id: CompanyTypeId;
|
|
3225
|
+
name: string;
|
|
3226
|
+
};
|
|
3227
|
+
points: number;
|
|
3228
|
+
};
|
|
3229
|
+
|
|
3179
3230
|
/** @category Models */
|
|
3180
3231
|
type UserCrime = {
|
|
3181
3232
|
nerve_spent: number;
|
|
@@ -3411,6 +3462,9 @@ type UserForumThreadsResponse = {
|
|
|
3411
3462
|
_metadata: RequestMetadataWithLinks;
|
|
3412
3463
|
};
|
|
3413
3464
|
|
|
3465
|
+
/** @category Models */
|
|
3466
|
+
type UserGenderEnum = "Male" | "Female" | "Enby";
|
|
3467
|
+
|
|
3414
3468
|
/** @category Models */
|
|
3415
3469
|
type UserHofResponse = {
|
|
3416
3470
|
hof: UserHofStats;
|
|
@@ -3466,6 +3520,21 @@ type UserItemMarketResponse = {
|
|
|
3466
3520
|
_metadata: RequestMetadataWithLinks;
|
|
3467
3521
|
};
|
|
3468
3522
|
|
|
3523
|
+
/** @category Models */
|
|
3524
|
+
type UserJobPointsResponse = {
|
|
3525
|
+
jobpoints: {
|
|
3526
|
+
jobs: {
|
|
3527
|
+
army: number;
|
|
3528
|
+
casino: number;
|
|
3529
|
+
education: number;
|
|
3530
|
+
grocer: number;
|
|
3531
|
+
law: number;
|
|
3532
|
+
medical: number;
|
|
3533
|
+
};
|
|
3534
|
+
companies: UserCompanyPoints[];
|
|
3535
|
+
};
|
|
3536
|
+
};
|
|
3537
|
+
|
|
3469
3538
|
/** @category Models */
|
|
3470
3539
|
type UserJobRanks = {
|
|
3471
3540
|
army: JobPositionArmyEnum;
|
|
@@ -3537,6 +3606,26 @@ type UserLookupResponse = {
|
|
|
3537
3606
|
selections: UserSelectionName[];
|
|
3538
3607
|
};
|
|
3539
3608
|
|
|
3609
|
+
/** @category Models */
|
|
3610
|
+
type UserMoneyResponse = {
|
|
3611
|
+
money: {
|
|
3612
|
+
points: number;
|
|
3613
|
+
wallet: number;
|
|
3614
|
+
company: number;
|
|
3615
|
+
vault: number;
|
|
3616
|
+
cayman_bank: number;
|
|
3617
|
+
city_bank: {
|
|
3618
|
+
amount: number;
|
|
3619
|
+
until: number;
|
|
3620
|
+
};
|
|
3621
|
+
faction: {
|
|
3622
|
+
money: number;
|
|
3623
|
+
points: number;
|
|
3624
|
+
};
|
|
3625
|
+
daily_networth: number;
|
|
3626
|
+
};
|
|
3627
|
+
};
|
|
3628
|
+
|
|
3540
3629
|
/** @category Models */
|
|
3541
3630
|
type UserOrganizedCrimeResponse = {
|
|
3542
3631
|
organizedCrime: FactionCrime | unknown;
|
|
@@ -3682,10 +3771,25 @@ type UserRacingRecordsResponse = {
|
|
|
3682
3771
|
};
|
|
3683
3772
|
|
|
3684
3773
|
/** @category Models */
|
|
3685
|
-
type UserResponse = UserCrimesResponse | UserRacesResponse | UserEnlistedCarsResponse | UserForumPostsResponse | UserForumThreadsResponse | UserForumSubscribedThreadsResponse | UserForumFeedResponse | UserForumFriendsResponse | UserHofResponse | UserCalendarResponse | UserRacingRecordsResponse | UserEducationResponse | UserBountiesResponse | UserJobRanksResponse | UserPropertiesResponse | UserFactionBalanceResponse | RevivesResponse | RevivesFullResponse | UserItemMarketResponse | UserListResponse | UserPersonalStatsResponse | UserOrganizedCrimeResponse | FactionAttacksResponse | FactionAttacksFullResponse | UserLookupResponse | TimestampResponse;
|
|
3774
|
+
type UserResponse = UserCrimesResponse | UserRacesResponse | UserEnlistedCarsResponse | UserForumPostsResponse | UserForumThreadsResponse | UserForumSubscribedThreadsResponse | UserForumFeedResponse | UserForumFriendsResponse | UserHofResponse | UserCalendarResponse | UserRacingRecordsResponse | UserEducationResponse | UserBountiesResponse | UserJobRanksResponse | UserPropertiesResponse | UserFactionBalanceResponse | UserBasicResponse | RevivesResponse | RevivesFullResponse | UserItemMarketResponse | UserListResponse | UserPersonalStatsResponse | UserOrganizedCrimeResponse | FactionAttacksResponse | FactionAttacksFullResponse | UserMoneyResponse | UserJobPointsResponse | UserWorkStatsResponse | UserSkillsResponse | UserBattleStatsResponse | UserLookupResponse | TimestampResponse;
|
|
3775
|
+
|
|
3776
|
+
/** @category Models */
|
|
3777
|
+
type UserSelectionName = "attacks" | "attacksfull" | "basic" | "battlestats" | "bounties" | "calendar" | "crimes" | "enlistedcars" | "factionbalance" | "forumfeed" | "forumfriends" | "forumposts" | "forumsubscribedthreads" | "forumthreads" | "hof" | "itemmarket" | "jobpoints" | "jobranks" | "list" | "lookup" | "money" | "organizedcrime" | "personalstats" | "properties" | "property" | "races" | "racingrecords" | "reports" | "revives" | "revivesfull" | "skills" | "timestamp" | "workstats" | "ammo" | "bars" | "bazaar" | "cooldowns" | "criminalrecord" | "discord" | "display" | "education" | "equipment" | "events" | "gym" | "honors" | "icons" | "inventory" | "log" | "medals" | "merits" | "messages" | "missions" | "networth" | "newevents" | "newmessages" | "notifications" | "perks" | "profile" | "refills" | "stocks" | "travel" | "weaponexp" | string;
|
|
3686
3778
|
|
|
3687
3779
|
/** @category Models */
|
|
3688
|
-
type
|
|
3780
|
+
type UserSkillDetail = {
|
|
3781
|
+
slug: UserSkillSlugEnum | string;
|
|
3782
|
+
name: string;
|
|
3783
|
+
level: number;
|
|
3784
|
+
};
|
|
3785
|
+
|
|
3786
|
+
/** @category Models */
|
|
3787
|
+
type UserSkillSlugEnum = "hunting" | "racing" | "reviving" | "search_for_cash" | "bootlegging" | "graffiti" | "shoplifting" | "pickpocketing" | "card_skimming" | "burglary" | "hustling" | "disposal" | "cracking" | "forgery" | "scamming" | "arson";
|
|
3788
|
+
|
|
3789
|
+
/** @category Models */
|
|
3790
|
+
type UserSkillsResponse = {
|
|
3791
|
+
skills: UserSkillDetail[];
|
|
3792
|
+
};
|
|
3689
3793
|
|
|
3690
3794
|
/**
|
|
3691
3795
|
* Details about a user's status.
|
|
@@ -3706,6 +3810,16 @@ type UserSubcrime = {
|
|
|
3706
3810
|
fail: number;
|
|
3707
3811
|
};
|
|
3708
3812
|
|
|
3813
|
+
/** @category Models */
|
|
3814
|
+
type UserWorkStatsResponse = {
|
|
3815
|
+
workstats: {
|
|
3816
|
+
endurance: number;
|
|
3817
|
+
intelligence: number;
|
|
3818
|
+
manual_labor: number;
|
|
3819
|
+
total: number;
|
|
3820
|
+
};
|
|
3821
|
+
};
|
|
3822
|
+
|
|
3709
3823
|
/** @category Models */
|
|
3710
3824
|
type WeaponBonusEnum = "Any" | "Double" | "Yellow" | "Orange" | "Red" | "Achilles" | "Assassinate" | "Backstab" | "Berserk" | "Bleed" | "Blindfire" | "Blindside" | "Bloodlust" | "Burn" | "Comeback" | "Conserve" | "Cripple" | "Crusher" | "Cupid" | "Deadeye" | "Deadly" | "Demoralize" | "Disarm" | "Double-edged" | "Double Tap" | "Emasculate" | "Empower" | "Eviscerate" | "Execute" | "Expose" | "Finale" | "Focus" | "Freeze" | "Frenzy" | "Fury" | "Grace" | "Hazardous" | "Home run" | "Irradiate" | "Lacerate" | "Motivation" | "Paralyze" | "Parry" | "Penetrate" | "Plunder" | "Poison" | "Powerful" | "Proficience" | "Puncture" | "Quicken" | "Rage" | "Revitalize" | "Roshambo" | "Shock" | "Sleep" | "Slow" | "Smash" | "Smurf" | "Specialist" | "Spray" | "Storage" | "Stricken" | "Stun" | "Suppress" | "Sure Shot" | "Throttle" | "Toxin" | "Warlord" | "Weaken" | "Wind-up" | "Wither";
|
|
3711
3825
|
|
|
@@ -4847,6 +4961,14 @@ declare class UserEndpoint {
|
|
|
4847
4961
|
from?: number;
|
|
4848
4962
|
timestamp?: string;
|
|
4849
4963
|
}): Promise<PaginatedResponse<FactionAttacksFullResponse> & FactionAttacksFullResponse>;
|
|
4964
|
+
/**
|
|
4965
|
+
* Get your basic profile information
|
|
4966
|
+
* @param params - Optional query parameters
|
|
4967
|
+
*/
|
|
4968
|
+
basic(params?: {
|
|
4969
|
+
striptags?: "true" | "false";
|
|
4970
|
+
timestamp?: string;
|
|
4971
|
+
}): Promise<UserBasicResponse>;
|
|
4850
4972
|
/**
|
|
4851
4973
|
* Get bounties placed on you
|
|
4852
4974
|
* @param params - Optional query parameters
|
|
@@ -4854,6 +4976,13 @@ declare class UserEndpoint {
|
|
|
4854
4976
|
bounties(params?: {
|
|
4855
4977
|
timestamp?: string;
|
|
4856
4978
|
}): Promise<UserBountiesResponse>;
|
|
4979
|
+
/**
|
|
4980
|
+
* Get your battlestats
|
|
4981
|
+
* @param params - Optional query parameters
|
|
4982
|
+
*/
|
|
4983
|
+
battlestats(params?: {
|
|
4984
|
+
timestamp?: string;
|
|
4985
|
+
}): Promise<UserBattleStatsResponse>;
|
|
4857
4986
|
/**
|
|
4858
4987
|
* Get your competition's event start time
|
|
4859
4988
|
* @param params - Optional query parameters
|
|
@@ -4876,7 +5005,7 @@ declare class UserEndpoint {
|
|
|
4876
5005
|
timestamp?: string;
|
|
4877
5006
|
}): Promise<UserEnlistedCarsResponse>;
|
|
4878
5007
|
/**
|
|
4879
|
-
*
|
|
5008
|
+
* Deprecated. Use user/money instead
|
|
4880
5009
|
* @param params - Optional query parameters
|
|
4881
5010
|
*/
|
|
4882
5011
|
factionbalance(params?: {
|
|
@@ -4941,6 +5070,13 @@ declare class UserEndpoint {
|
|
|
4941
5070
|
offset?: number;
|
|
4942
5071
|
timestamp?: string;
|
|
4943
5072
|
}): Promise<PaginatedResponse<UserItemMarketResponse> & UserItemMarketResponse>;
|
|
5073
|
+
/**
|
|
5074
|
+
* Get your jobpoints
|
|
5075
|
+
* @param params - Optional query parameters
|
|
5076
|
+
*/
|
|
5077
|
+
jobpoints(params?: {
|
|
5078
|
+
timestamp?: string;
|
|
5079
|
+
}): Promise<UserJobPointsResponse>;
|
|
4944
5080
|
/**
|
|
4945
5081
|
* Get your starter job positions
|
|
4946
5082
|
* @param params - Optional query parameters
|
|
@@ -4971,6 +5107,13 @@ declare class UserEndpoint {
|
|
|
4971
5107
|
from?: number;
|
|
4972
5108
|
timestamp?: string;
|
|
4973
5109
|
}): Promise<PaginatedResponse<UserLogsResponse> & UserLogsResponse>;
|
|
5110
|
+
/**
|
|
5111
|
+
* Get your current wealth
|
|
5112
|
+
* @param params - Optional query parameters
|
|
5113
|
+
*/
|
|
5114
|
+
money(params?: {
|
|
5115
|
+
timestamp?: string;
|
|
5116
|
+
}): Promise<UserMoneyResponse>;
|
|
4974
5117
|
/**
|
|
4975
5118
|
* Get your current ongoing organized crime
|
|
4976
5119
|
* @param params - Optional query parameters
|
|
@@ -5059,6 +5202,20 @@ declare class UserEndpoint {
|
|
|
5059
5202
|
striptags?: "true" | "false";
|
|
5060
5203
|
timestamp?: string;
|
|
5061
5204
|
}): Promise<PaginatedResponse<RevivesFullResponse> & RevivesFullResponse>;
|
|
5205
|
+
/**
|
|
5206
|
+
* Get your skills
|
|
5207
|
+
* @param params - Optional query parameters
|
|
5208
|
+
*/
|
|
5209
|
+
skills(params?: {
|
|
5210
|
+
timestamp?: string;
|
|
5211
|
+
}): Promise<UserSkillsResponse>;
|
|
5212
|
+
/**
|
|
5213
|
+
* Get your working stats
|
|
5214
|
+
* @param params - Optional query parameters
|
|
5215
|
+
*/
|
|
5216
|
+
workstats(params?: {
|
|
5217
|
+
timestamp?: string;
|
|
5218
|
+
}): Promise<UserWorkStatsResponse>;
|
|
5062
5219
|
/**
|
|
5063
5220
|
* Get all available user selections
|
|
5064
5221
|
* @param params - Optional query parameters
|
|
@@ -5104,6 +5261,14 @@ declare class UserIdContext {
|
|
|
5104
5261
|
private readonly requester;
|
|
5105
5262
|
private readonly contextId;
|
|
5106
5263
|
constructor(requester: Requester, contextId: string | number);
|
|
5264
|
+
/**
|
|
5265
|
+
* Get basic profile information for a specific user
|
|
5266
|
+
* @param params - Optional query parameters
|
|
5267
|
+
*/
|
|
5268
|
+
basic(params?: {
|
|
5269
|
+
striptags?: "true" | "false";
|
|
5270
|
+
timestamp?: string;
|
|
5271
|
+
}): Promise<UserBasicResponse>;
|
|
5107
5272
|
/**
|
|
5108
5273
|
* Get bounties placed on a specific user
|
|
5109
5274
|
* @param params - Optional query parameters
|
|
@@ -5325,4 +5490,4 @@ declare class TornRateLimitError extends Error {
|
|
|
5325
5490
|
constructor(message: string);
|
|
5326
5491
|
}
|
|
5327
5492
|
|
|
5328
|
-
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 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 ItemId, type ItemMarket, type ItemMarketItem, type ItemMarketListingItemBonus, type ItemMarketListingItemDetails, type ItemMarketListingItemStats, type ItemMarketListingNonstackable, type ItemMarketListingStackable, type ItemModId, type ItemUid, type JobPositionArmyEnum, type JobPositionCasinoEnum, type JobPositionEducationEnum, type JobPositionGrocerEnum, type JobPositionLawEnum, type JobPositionMedicalEnum, KeyEndpoint, type KeyInfoAvailableLog, type KeyInfoResponse, type KeyLogResponse, type KeyResponse, type KeySelectionName, type LogCategoryId, type LogId, MarketEndpoint, MarketIdContext, type MarketItemMarketResponse, type MarketLookupResponse, type MarketPropertiesResponse, type MarketPropertyDetails, MarketPropertyTypeIdContext, type MarketRentalDetails, type MarketRentalsResponse, type MarketResponse, type MarketSelectionName, type MarketSpecializedBazaarCategoryEnum, type OrganizedCrimeName, PaginatedResponse, type Parameters, type PersonalStatsAttackingExtended, type PersonalStatsAttackingPopular, type PersonalStatsAttackingPublic, type PersonalStatsBattleStats, type PersonalStatsBounties, type PersonalStatsCategoryEnum, type PersonalStatsCommunication, type PersonalStatsCrimes, type PersonalStatsCrimesPopular, type PersonalStatsCrimesV1, type PersonalStatsCrimesV2, type PersonalStatsDrugs, type PersonalStatsFinishingHits, type PersonalStatsHistoricStat, type PersonalStatsHospital, type PersonalStatsHospitalPopular, type PersonalStatsInvestments, type PersonalStatsItems, type PersonalStatsItemsPopular, type PersonalStatsJail, type PersonalStatsJobsExtended, type PersonalStatsJobsPublic, type PersonalStatsMissions, type PersonalStatsNetworthExtended, type PersonalStatsNetworthPublic, type PersonalStatsOther, type PersonalStatsOtherPopular, type PersonalStatsRacing, type PersonalStatsStatName, type PersonalStatsTrading, type PersonalStatsTravel, type PersonalStatsTravelPopular, PropertyEndpoint, type PropertyId, PropertyIdContext, type PropertyLookupResponse, type PropertyModificationEnum, type PropertyPropertyResponse, type PropertyResponse, type PropertySelectionName, type PropertyStaffEnum, type PropertyTypeId, type Race, type RaceCar, type RaceCarId, type RaceCarUpgrade, type RaceCarUpgradeCategory, type RaceCarUpgradeId, type RaceCarUpgradeSubCategory, type RaceClassEnum, type RaceId, type RaceRecord, type RaceStatusEnum, type RaceTrack, type RaceTrackId, type RacerDetails, type RacingCarUpgradesResponse, type RacingCarsResponse, RacingEndpoint, type RacingLookupResponse, type RacingRaceDetails, type RacingRaceDetailsResponse, RacingRaceIdContext, type RacingRaceTypeEnum, type RacingRacesResponse, type RacingResponse, type RacingSelectionName, RacingTrackIdContext, type RacingTrackRecordsResponse, type RacingTracksResponse, type RaidWarId, type RankedWarId, type RateLimitMode, type Report, type ReportAnonymousBounties, type ReportBase, type ReportCompanyFinancials, type ReportFriendOrFoe, type ReportFriendOrFoeUser, type ReportHistory, type ReportHistoryCompany, type ReportHistoryFaction, type ReportInvestment, type ReportMoney, type ReportMostWanted, type ReportReport, type ReportStats, type ReportStockAnalysis, type ReportTrueLevel, type ReportTypeEnum, type ReportWarrantDetails, type ReportsResponse, type RequestLinks, type RequestMetadata, type RequestMetadataWithLinks, type RequestMetadataWithLinksAndTotal, type Requester, type Revive, type ReviveId, type ReviveSetting, type ReviveSimplified, type RevivesFullResponse, type RevivesResponse, type SelectionCategoryEnum, type TerritoryWarId, type TimestampResponse, TornAPI, type TornAPIOptions, TornApiError, type TornBountiesResponse, type TornCalendarActivity, type TornCalendarResponse, type TornCrime, type TornCrimeId, TornCrimeIdContext, type TornCrimesResponse, type TornEducation, type TornEducationCourses, type TornEducationPrerequisites, type TornEducationResponse, type TornEducationRewards, TornEndpoint, type TornFactionHof, type TornFactionHofCategory, type TornFactionHofResponse, type TornFactionTree, type TornFactionTreeBranch, type TornFactionTreeResponse, type TornHof, type TornHofBasic, type TornHofCategory, type TornHofResponse, type TornHofWithOffenses, 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 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 UserBountiesResponse, type UserCalendar, type UserCalendarResponse, type UserCrime, type UserCrimeAttempts, type UserCrimeDetailsBootlegging, type UserCrimeDetailsCardSkimming, type UserCrimeDetailsCracking, type UserCrimeDetailsGraffiti, type UserCrimeDetailsHustling, type UserCrimeDetailsScamming, type UserCrimeDetailsShoplifting, UserCrimeIdContext, type UserCrimeRewardAmmo, type UserCrimeRewardItem, type UserCrimeRewards, type UserCrimeUniques, type UserCrimeUniquesReward, type UserCrimeUniquesRewardAmmo, type UserCrimeUniquesRewardAmmoEnum, type UserCrimeUniquesRewardMoney, type UserCrimesResponse, type UserCurrentEducation, type UserEducation, type UserEducationResponse, UserEndpoint, type UserEnlistedCarsResponse, type UserFactionBalance, type UserFactionBalanceResponse, type UserForumFeedResponse, type UserForumFriendsResponse, type UserForumPostsResponse, type UserForumSubscribedThreadsResponse, type UserForumThreadsResponse, type UserHofResponse, type UserHofStats, type UserId, UserIdContext, type UserItemMarkeListingItemDetails, type UserItemMarketListing, type UserItemMarketResponse, type UserJobRanks, type UserJobRanksResponse, type UserLastAction, type UserList, type UserListEnum, type UserListResponse, type UserLog, type UserLogId, type UserLogsResponse, type UserLookupResponse, type UserOrganizedCrimeResponse, type UserPersonalStatsCategory, type UserPersonalStatsFull, type UserPersonalStatsFullPublic, type UserPersonalStatsHistoric, type UserPersonalStatsPopular, type UserPersonalStatsResponse, type UserPropertiesResponse, type UserPropertyBasicDetails, type UserPropertyDetails, type UserPropertyDetailsExtended, type UserPropertyDetailsExtendedForRent, type UserPropertyDetailsExtendedForSale, type UserPropertyDetailsExtendedRented, type UserPropertyDetailsExtendedWithRent, type UserPropertyResponse, type UserRaceCarDetails, type UserRacesResponse, type UserRacingRecordsResponse, type UserResponse, type UserSelectionName, type UserStatus, type UserSubcrime, type WeaponBonusEnum };
|
|
5493
|
+
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 ItemId, type ItemMarket, type ItemMarketItem, type ItemMarketListingItemBonus, type ItemMarketListingItemDetails, type ItemMarketListingItemStats, type ItemMarketListingNonstackable, type ItemMarketListingStackable, type ItemModId, type ItemUid, type JobPositionArmyEnum, type JobPositionCasinoEnum, type JobPositionEducationEnum, type JobPositionGrocerEnum, type JobPositionLawEnum, type JobPositionMedicalEnum, KeyEndpoint, type KeyInfoAvailableLog, type KeyInfoResponse, type KeyLogResponse, type KeyResponse, type KeySelectionName, type LogCategoryId, type LogId, MarketEndpoint, MarketIdContext, type MarketItemMarketResponse, type MarketLookupResponse, type MarketPropertiesResponse, type MarketPropertyDetails, MarketPropertyTypeIdContext, type MarketRentalDetails, type MarketRentalsResponse, type MarketResponse, type MarketSelectionName, type MarketSpecializedBazaarCategoryEnum, type OrganizedCrimeName, PaginatedResponse, type Parameters, type PersonalStatsAttackingExtended, type PersonalStatsAttackingPopular, type PersonalStatsAttackingPublic, type PersonalStatsBattleStats, type PersonalStatsBounties, type PersonalStatsCategoryEnum, type PersonalStatsCommunication, type PersonalStatsCrimes, type PersonalStatsCrimesPopular, type PersonalStatsCrimesV1, type PersonalStatsCrimesV2, type PersonalStatsDrugs, type PersonalStatsFinishingHits, type PersonalStatsHistoricStat, type PersonalStatsHospital, type PersonalStatsHospitalPopular, type PersonalStatsInvestments, type PersonalStatsItems, type PersonalStatsItemsPopular, type PersonalStatsJail, type PersonalStatsJobsExtended, type PersonalStatsJobsPublic, type PersonalStatsMissions, type PersonalStatsNetworthExtended, type PersonalStatsNetworthPublic, type PersonalStatsOther, type PersonalStatsOtherPopular, type PersonalStatsRacing, type PersonalStatsStatName, type PersonalStatsTrading, type PersonalStatsTravel, type PersonalStatsTravelPopular, PropertyEndpoint, type PropertyId, PropertyIdContext, type PropertyLookupResponse, type PropertyModificationEnum, type PropertyPropertyResponse, type PropertyResponse, type PropertySelectionName, type PropertyStaffEnum, type PropertyTypeId, type Race, type RaceCar, type RaceCarId, type RaceCarUpgrade, type RaceCarUpgradeCategory, type RaceCarUpgradeId, type RaceCarUpgradeSubCategory, type RaceClassEnum, type RaceId, type RaceRecord, type RaceStatusEnum, type RaceTrack, type RaceTrackId, type RacerDetails, type RacingCarUpgradesResponse, type RacingCarsResponse, RacingEndpoint, type RacingLookupResponse, type RacingRaceDetails, type RacingRaceDetailsResponse, RacingRaceIdContext, type RacingRaceTypeEnum, type RacingRacesResponse, type RacingResponse, type RacingSelectionName, RacingTrackIdContext, type RacingTrackRecordsResponse, type RacingTracksResponse, type RaidWarId, type RankedWarId, type RateLimitMode, type Report, type ReportAnonymousBounties, type ReportBase, type ReportCompanyFinancials, type ReportFriendOrFoe, type ReportFriendOrFoeUser, type ReportHistory, type ReportHistoryCompany, type ReportHistoryFaction, type ReportInvestment, type ReportMoney, type ReportMostWanted, type ReportReport, type ReportStats, type ReportStockAnalysis, type ReportTrueLevel, type ReportTypeEnum, type ReportWarrantDetails, type ReportsResponse, type RequestLinks, type RequestMetadata, type RequestMetadataWithLinks, type RequestMetadataWithLinksAndTotal, type Requester, type Revive, type ReviveId, type ReviveSetting, type ReviveSimplified, type RevivesFullResponse, type RevivesResponse, type SelectionCategoryEnum, type TerritoryWarId, type TimestampResponse, TornAPI, type TornAPIOptions, TornApiError, type TornBountiesResponse, type TornCalendarActivity, type TornCalendarResponse, type TornCrime, type TornCrimeId, TornCrimeIdContext, type TornCrimesResponse, type TornEducation, type TornEducationCourses, type TornEducationPrerequisites, type TornEducationResponse, type TornEducationRewards, TornEndpoint, type TornFactionHof, type TornFactionHofCategory, type TornFactionHofResponse, type TornFactionTree, type TornFactionTreeBranch, type TornFactionTreeResponse, type TornHof, type TornHofBasic, type TornHofCategory, type TornHofResponse, type TornHofWithOffenses, 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 TornOrganizedCrime, type TornOrganizedCrimePositionId, type TornOrganizedCrimeRequiredItem, type TornOrganizedCrimeResponse, type TornOrganizedCrimeScope, type TornOrganizedCrimeSlot, type TornOrganizedCrimeSpawn, type TornProperties, type TornRacket, type TornRacketReward, type TornRacketType, TornRateLimitError, type TornResponse, type TornSelectionName, type TornSubcrime, type TornSubcrimesResponse, type TornTerritoriesNoLinksResponse, type TornTerritoriesResponse, type TornTerritory, type TornTerritoryCoordinates, type User, type UserBasic, type UserBasicResponse, type UserBattleStatDetail, type UserBattleStatModifierDetail, type UserBattleStatsResponse, type UserBountiesResponse, type UserCalendar, type UserCalendarResponse, type UserCompanyPoints, type UserCrime, type UserCrimeAttempts, type UserCrimeDetailsBootlegging, type UserCrimeDetailsCardSkimming, type UserCrimeDetailsCracking, type UserCrimeDetailsGraffiti, type UserCrimeDetailsHustling, type UserCrimeDetailsScamming, type UserCrimeDetailsShoplifting, UserCrimeIdContext, type UserCrimeRewardAmmo, type UserCrimeRewardItem, type UserCrimeRewards, type UserCrimeUniques, type UserCrimeUniquesReward, type UserCrimeUniquesRewardAmmo, type UserCrimeUniquesRewardAmmoEnum, type UserCrimeUniquesRewardMoney, type UserCrimesResponse, type UserCurrentEducation, type UserEducation, type UserEducationResponse, UserEndpoint, type UserEnlistedCarsResponse, type UserFactionBalance, type UserFactionBalanceResponse, type UserForumFeedResponse, type UserForumFriendsResponse, type UserForumPostsResponse, type UserForumSubscribedThreadsResponse, type UserForumThreadsResponse, type UserGenderEnum, type UserHofResponse, type UserHofStats, type UserId, UserIdContext, type UserItemMarkeListingItemDetails, type UserItemMarketListing, type UserItemMarketResponse, type UserJobPointsResponse, type UserJobRanks, type UserJobRanksResponse, type UserLastAction, type UserList, type UserListEnum, type UserListResponse, type UserLog, type UserLogId, type UserLogsResponse, type UserLookupResponse, type UserMoneyResponse, type UserOrganizedCrimeResponse, type UserPersonalStatsCategory, type UserPersonalStatsFull, type UserPersonalStatsFullPublic, type UserPersonalStatsHistoric, type UserPersonalStatsPopular, type UserPersonalStatsResponse, type UserPropertiesResponse, type UserPropertyBasicDetails, type UserPropertyDetails, type UserPropertyDetailsExtended, type UserPropertyDetailsExtendedForRent, type UserPropertyDetailsExtendedForSale, type UserPropertyDetailsExtendedRented, type UserPropertyDetailsExtendedWithRent, type UserPropertyResponse, type UserRaceCarDetails, type UserRacesResponse, type UserRacingRecordsResponse, type UserResponse, type UserSelectionName, type UserSkillDetail, type UserSkillSlugEnum, type UserSkillsResponse, type UserStatus, type UserSubcrime, type UserWorkStatsResponse, type WeaponBonusEnum };
|