torn-client 0.2.2 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1466,6 +1466,9 @@ type JobPositionLawEnum = "Law Student" | "Paralegal" | "Probate Lawyer" | "Tria
1466
1466
  /** @category Models */
1467
1467
  type JobPositionMedicalEnum = "Medical Student" | "Houseman" | "Senior Houseman" | "GP" | "Consultant" | "Surgeon" | "Brain Surgeon";
1468
1468
 
1469
+ /** @category Models */
1470
+ type JobTypeEnum = "Army" | "Casino" | "Education" | "Grocer" | "Law" | "Medical";
1471
+
1469
1472
  /** @category Models */
1470
1473
  type KeyInfoAvailableLog = {
1471
1474
  category_id: LogCategoryId;
@@ -2230,6 +2233,14 @@ type PersonalStatsTravelPopular = {
2230
2233
  };
2231
2234
  };
2232
2235
 
2236
+ /** @category Models */
2237
+ type ProfileSpouse = {
2238
+ id: UserId;
2239
+ name: string;
2240
+ status: UserMaritalStatusEnum;
2241
+ days_married: number;
2242
+ };
2243
+
2233
2244
  /** @category Models */
2234
2245
  type PropertyId = number;
2235
2246
 
@@ -2813,7 +2824,7 @@ type TornHofBasic = {
2813
2824
  faction_id: FactionId;
2814
2825
  level: number;
2815
2826
  last_action: number;
2816
- rank_name: string;
2827
+ rank_name: UserRankEnum;
2817
2828
  rank_number: number;
2818
2829
  position: number;
2819
2830
  signed_up: number;
@@ -3288,6 +3299,16 @@ type UserCalendarResponse = {
3288
3299
  calendar: UserCalendar;
3289
3300
  };
3290
3301
 
3302
+ /** @category Models */
3303
+ type UserCompany = {
3304
+ type: "company";
3305
+ id: CompanyId;
3306
+ type_id: CompanyTypeId;
3307
+ name: string;
3308
+ position: string;
3309
+ days_in_company: number;
3310
+ };
3311
+
3291
3312
  /** @category Models */
3292
3313
  type UserCompanyPoints = {
3293
3314
  company: {
@@ -3297,6 +3318,38 @@ type UserCompanyPoints = {
3297
3318
  points: number;
3298
3319
  };
3299
3320
 
3321
+ /** @category Models */
3322
+ type UserCompetitionEasterEggs = {
3323
+ name: "Easter Egg Hunt";
3324
+ score: number;
3325
+ total: number;
3326
+ };
3327
+
3328
+ /** @category Models */
3329
+ type UserCompetitionHalloween = {
3330
+ name: "Halloween";
3331
+ treats_collected: number;
3332
+ basket: {
3333
+ id: ItemId;
3334
+ name: string;
3335
+ };
3336
+ };
3337
+
3338
+ /** @category Models */
3339
+ type UserCompetitionResponse = {
3340
+ competition: UserCompetitionHalloween | UserCompetitionEasterEggs | UserCompetitionRps;
3341
+ };
3342
+
3343
+ /** @category Models */
3344
+ type UserCompetitionRps = {
3345
+ name: "Rock, Paper, Scissors";
3346
+ status: UserRpsStatus;
3347
+ hp: {
3348
+ current: number;
3349
+ maximum: number;
3350
+ };
3351
+ };
3352
+
3300
3353
  /** @category Models */
3301
3354
  type UserCrime = {
3302
3355
  nerve_spent: number;
@@ -3494,6 +3547,16 @@ type UserEnlistedCarsResponse = {
3494
3547
  enlistedcars: UserRaceCarDetails[];
3495
3548
  };
3496
3549
 
3550
+ /** @category Models */
3551
+ type UserFaction = {
3552
+ id: FactionId;
3553
+ name: string;
3554
+ tag: string;
3555
+ tag_image: string;
3556
+ position: string;
3557
+ days_in_faction: number;
3558
+ };
3559
+
3497
3560
  /** @category Models */
3498
3561
  type UserFactionBalance = {
3499
3562
  money: number;
@@ -3505,6 +3568,11 @@ type UserFactionBalanceResponse = {
3505
3568
  factionBalance: UserFactionBalance | unknown;
3506
3569
  };
3507
3570
 
3571
+ /** @category Models */
3572
+ type UserFactionResponse = {
3573
+ faction: UserFaction | unknown;
3574
+ };
3575
+
3508
3576
  /** @category Models */
3509
3577
  type UserForumFeedResponse = {
3510
3578
  forumFeed: ForumFeed[];
@@ -3570,6 +3638,26 @@ type UserHonorsResponse = {
3570
3638
  honors: UserHonor[];
3571
3639
  };
3572
3640
 
3641
+ /** @category Models */
3642
+ type UserIconId = number;
3643
+
3644
+ /** @category Models */
3645
+ type UserIconPrivate = UserIconPublic & {
3646
+ until: number | unknown;
3647
+ };
3648
+
3649
+ /** @category Models */
3650
+ type UserIconPublic = {
3651
+ id: UserIconId;
3652
+ title: string;
3653
+ description: string;
3654
+ };
3655
+
3656
+ /** @category Models */
3657
+ type UserIconsResponse = {
3658
+ icons: UserIconPrivate[] | UserIconPublic[];
3659
+ };
3660
+
3573
3661
  /** @category Models */
3574
3662
  type UserId = number;
3575
3663
 
@@ -3601,6 +3689,13 @@ type UserItemMarketResponse = {
3601
3689
  _metadata: RequestMetadataWithLinks;
3602
3690
  };
3603
3691
 
3692
+ /** @category Models */
3693
+ type UserJob = {
3694
+ type: "job";
3695
+ name: JobTypeEnum;
3696
+ position: JobPositionArmyEnum | JobPositionGrocerEnum | JobPositionCasinoEnum | JobPositionMedicalEnum | JobPositionLawEnum | JobPositionEducationEnum;
3697
+ };
3698
+
3604
3699
  /** @category Models */
3605
3700
  type UserJobPointsResponse = {
3606
3701
  jobpoints: {
@@ -3631,6 +3726,11 @@ type UserJobRanksResponse = {
3631
3726
  jobranks: UserJobRanks;
3632
3727
  };
3633
3728
 
3729
+ /** @category Models */
3730
+ type UserJobResponse = {
3731
+ job: UserJob | UserCompany | unknown;
3732
+ };
3733
+
3634
3734
  /**
3635
3735
  * Details about a user's last action.
3636
3736
  * @category Models
@@ -3687,6 +3787,9 @@ type UserLookupResponse = {
3687
3787
  selections: UserSelectionName[];
3688
3788
  };
3689
3789
 
3790
+ /** @category Models */
3791
+ type UserMaritalStatusEnum = "Engaged" | "Newlywed" | "Married";
3792
+
3690
3793
  /** @category Models */
3691
3794
  type UserMedal = {
3692
3795
  id: MedalId;
@@ -3774,6 +3877,41 @@ type UserPersonalStatsPopular = {
3774
3877
  /** @category Models */
3775
3878
  type UserPersonalStatsResponse = UserPersonalStatsFull | UserPersonalStatsFullPublic | UserPersonalStatsPopular | UserPersonalStatsCategory | UserPersonalStatsHistoric;
3776
3879
 
3880
+ /** @category Models */
3881
+ type UserProfileResponse = {
3882
+ profile: {
3883
+ id: UserId;
3884
+ name: string;
3885
+ level: number;
3886
+ rank: UserRankEnum;
3887
+ title: UserTitleEnum;
3888
+ age: number;
3889
+ signed_up: number;
3890
+ faction_id: FactionId | unknown;
3891
+ honor_id: HonorId;
3892
+ property: {
3893
+ id: PropertyId;
3894
+ name: string;
3895
+ };
3896
+ image: string | unknown;
3897
+ gender: UserGenderEnum;
3898
+ revivable: boolean;
3899
+ role: UserRoleEnum;
3900
+ status: UserStatus;
3901
+ spouse: ProfileSpouse | unknown;
3902
+ awards: number;
3903
+ friends: number;
3904
+ enemies: number;
3905
+ forum_posts: number;
3906
+ karma: number;
3907
+ last_action: UserLastAction;
3908
+ life: {
3909
+ current: number;
3910
+ maximum: number;
3911
+ };
3912
+ };
3913
+ };
3914
+
3777
3915
  /** @category Models */
3778
3916
  type UserPropertiesResponse = {
3779
3917
  properties: UserPropertyBasicDetails | UserPropertyDetailsExtended | UserPropertyDetailsExtendedRented | UserPropertyDetailsExtendedForRent | UserPropertyDetailsExtendedForSale[];
@@ -3888,10 +4026,19 @@ type UserRacingRecordsResponse = {
3888
4026
  };
3889
4027
 
3890
4028
  /** @category Models */
3891
- type UserResponse = UserCrimesResponse | UserRacesResponse | UserEnlistedCarsResponse | UserForumPostsResponse | UserForumThreadsResponse | UserForumSubscribedThreadsResponse | UserForumFeedResponse | UserForumFriendsResponse | UserHofResponse | UserCalendarResponse | UserRacingRecordsResponse | UserEducationResponse | UserBountiesResponse | UserJobRanksResponse | UserPropertiesResponse | UserFactionBalanceResponse | UserBasicResponse | RevivesResponse | UserHonorsResponse | UserMedalsResponse | UserMeritsResponse | RevivesFullResponse | UserItemMarketResponse | UserListResponse | UserPersonalStatsResponse | UserOrganizedCrimeResponse | FactionAttacksResponse | FactionAttacksFullResponse | UserMoneyResponse | UserJobPointsResponse | UserWorkStatsResponse | UserSkillsResponse | UserBattleStatsResponse | UserLookupResponse | TimestampResponse;
4029
+ 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";
4030
+
4031
+ /** @category Models */
4032
+ type UserResponse = UserCrimesResponse | UserRacesResponse | UserEnlistedCarsResponse | UserForumPostsResponse | UserForumThreadsResponse | UserForumSubscribedThreadsResponse | UserForumFeedResponse | UserForumFriendsResponse | UserHofResponse | UserCalendarResponse | UserRacingRecordsResponse | UserEducationResponse | UserBountiesResponse | UserJobRanksResponse | UserPropertiesResponse | UserFactionBalanceResponse | UserBasicResponse | RevivesResponse | UserHonorsResponse | UserMedalsResponse | UserMeritsResponse | RevivesFullResponse | UserProfileResponse | UserJobResponse | UserFactionResponse | UserCompetitionResponse | UserIconsResponse | UserItemMarketResponse | UserListResponse | UserPersonalStatsResponse | UserOrganizedCrimeResponse | FactionAttacksResponse | FactionAttacksFullResponse | UserMoneyResponse | UserJobPointsResponse | UserWorkStatsResponse | UserSkillsResponse | UserBattleStatsResponse | UserLookupResponse | TimestampResponse;
3892
4033
 
3893
4034
  /** @category Models */
3894
- type UserSelectionName = "attacks" | "attacksfull" | "basic" | "battlestats" | "bounties" | "calendar" | "crimes" | "enlistedcars" | "factionbalance" | "forumfeed" | "forumfriends" | "forumposts" | "forumsubscribedthreads" | "forumthreads" | "hof" | "honors" | "itemmarket" | "jobpoints" | "jobranks" | "list" | "log" | "lookup" | "medals" | "merits" | "money" | "organizedcrime" | "personalstats" | "properties" | "property" | "races" | "racingrecords" | "reports" | "revives" | "revivesfull" | "skills" | "timestamp" | "workstats" | "ammo" | "bars" | "bazaar" | "cooldowns" | "criminalrecord" | "discord" | "display" | "education" | "equipment" | "events" | "gym" | "icons" | "inventory" | "messages" | "missions" | "networth" | "newevents" | "newmessages" | "notifications" | "perks" | "profile" | "refills" | "stocks" | "travel" | "weaponexp" | string;
4035
+ type UserRoleEnum = "Admin" | "Officer" | "Moderator" | "Helper" | "Tester" | "NPC" | "Committee" | "Reporter" | "Wiki Contributor" | "Wiki Editor" | "Civilian";
4036
+
4037
+ /** @category Models */
4038
+ type UserRpsStatus = "scissors" | "rock" | "paper";
4039
+
4040
+ /** @category Models */
4041
+ type UserSelectionName = "attacks" | "attacksfull" | "basic" | "battlestats" | "bounties" | "calendar" | "competition" | "crimes" | "enlistedcars" | "faction" | "factionbalance" | "forumfeed" | "forumfriends" | "forumposts" | "forumsubscribedthreads" | "forumthreads" | "hof" | "honors" | "icons" | "itemmarket" | "job" | "jobpoints" | "jobranks" | "list" | "log" | "lookup" | "medals" | "merits" | "money" | "organizedcrime" | "personalstats" | "profile" | "properties" | "property" | "races" | "racingrecords" | "reports" | "revives" | "revivesfull" | "skills" | "timestamp" | "workstats" | "ammo" | "bars" | "bazaar" | "cooldowns" | "criminalrecord" | "discord" | "display" | "education" | "equipment" | "events" | "gym" | "inventory" | "messages" | "missions" | "networth" | "newevents" | "newmessages" | "notifications" | "perks" | "refills" | "stocks" | "travel" | "weaponexp" | string;
3895
4042
 
3896
4043
  /** @category Models */
3897
4044
  type UserSkillDetail = {
@@ -3917,6 +4064,7 @@ type UserStatus = {
3917
4064
  details: string | unknown;
3918
4065
  state: string;
3919
4066
  until: number | unknown;
4067
+ travel_type?: string;
3920
4068
  };
3921
4069
 
3922
4070
  /** @category Models */
@@ -3927,6 +4075,9 @@ type UserSubcrime = {
3927
4075
  fail: number;
3928
4076
  };
3929
4077
 
4078
+ /** @category Models */
4079
+ 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";
4080
+
3930
4081
  /** @category Models */
3931
4082
  type UserWorkStatsResponse = {
3932
4083
  workstats: {
@@ -5145,6 +5296,13 @@ declare class UserEndpoint {
5145
5296
  calendar(params?: {
5146
5297
  timestamp?: string;
5147
5298
  }): Promise<UserCalendarResponse>;
5299
+ /**
5300
+ * Get your competition information
5301
+ * @param params - Optional query parameters
5302
+ */
5303
+ competition(params?: {
5304
+ timestamp?: string;
5305
+ }): Promise<UserCompetitionResponse>;
5148
5306
  /**
5149
5307
  * Get your education information
5150
5308
  * @param params - Optional query parameters
@@ -5159,6 +5317,13 @@ declare class UserEndpoint {
5159
5317
  enlistedcars(params?: {
5160
5318
  timestamp?: string;
5161
5319
  }): Promise<UserEnlistedCarsResponse>;
5320
+ /**
5321
+ * Get your faction information
5322
+ * @param params - Optional query parameters
5323
+ */
5324
+ faction(params?: {
5325
+ timestamp?: string;
5326
+ }): Promise<UserFactionResponse>;
5162
5327
  /**
5163
5328
  * Deprecated. Use user/money instead
5164
5329
  * @param params - Optional query parameters
@@ -5224,6 +5389,13 @@ declare class UserEndpoint {
5224
5389
  honors(params?: {
5225
5390
  timestamp?: string;
5226
5391
  }): Promise<UserHonorsResponse>;
5392
+ /**
5393
+ * Get your icons information
5394
+ * @param params - Optional query parameters
5395
+ */
5396
+ icons(params?: {
5397
+ timestamp?: string;
5398
+ }): Promise<UserIconsResponse>;
5227
5399
  /**
5228
5400
  * Get your item market listings for a specific item
5229
5401
  * @param params - Optional query parameters
@@ -5232,6 +5404,13 @@ declare class UserEndpoint {
5232
5404
  offset?: number;
5233
5405
  timestamp?: string;
5234
5406
  }): Promise<PaginatedResponse<UserItemMarketResponse> & UserItemMarketResponse>;
5407
+ /**
5408
+ * Get your job information
5409
+ * @param params - Optional query parameters
5410
+ */
5411
+ job(params?: {
5412
+ timestamp?: string;
5413
+ }): Promise<UserJobResponse>;
5235
5414
  /**
5236
5415
  * Get your jobpoints
5237
5416
  * @param params - Optional query parameters
@@ -5306,6 +5485,14 @@ declare class UserEndpoint {
5306
5485
  stat?: PersonalStatsStatName[];
5307
5486
  timestamp?: number;
5308
5487
  }): Promise<UserPersonalStatsResponse>;
5488
+ /**
5489
+ * Get your own profile
5490
+ * @param params - Optional query parameters
5491
+ */
5492
+ profile(params?: {
5493
+ striptags?: "true" | "false";
5494
+ timestamp?: string;
5495
+ }): Promise<UserProfileResponse>;
5309
5496
  /**
5310
5497
  * Get your own properties
5311
5498
  * @param params - Optional query parameters
@@ -5453,6 +5640,20 @@ declare class UserIdContext {
5453
5640
  bounties(params?: {
5454
5641
  timestamp?: string;
5455
5642
  }): Promise<UserBountiesResponse>;
5643
+ /**
5644
+ * Get competition information for a specific player
5645
+ * @param params - Optional query parameters
5646
+ */
5647
+ competition(params?: {
5648
+ timestamp?: string;
5649
+ }): Promise<UserCompetitionResponse>;
5650
+ /**
5651
+ * Get faction information for a specific player
5652
+ * @param params - Optional query parameters
5653
+ */
5654
+ faction(params?: {
5655
+ timestamp?: string;
5656
+ }): Promise<UserFactionResponse>;
5456
5657
  /**
5457
5658
  * Get posts for a specific player
5458
5659
  * @param params - Optional query parameters
@@ -5483,6 +5684,20 @@ declare class UserIdContext {
5483
5684
  hof(params?: {
5484
5685
  timestamp?: string;
5485
5686
  }): Promise<UserHofResponse>;
5687
+ /**
5688
+ * Get icons information for a specific player
5689
+ * @param params - Optional query parameters
5690
+ */
5691
+ icons(params?: {
5692
+ timestamp?: string;
5693
+ }): Promise<UserIconsResponse>;
5694
+ /**
5695
+ * Get job information for a specific player
5696
+ * @param params - Optional query parameters
5697
+ */
5698
+ job(params?: {
5699
+ timestamp?: string;
5700
+ }): Promise<UserJobResponse>;
5486
5701
  /**
5487
5702
  * Get a player's personal stats
5488
5703
  * @param params - Optional query parameters
@@ -5492,6 +5707,14 @@ declare class UserIdContext {
5492
5707
  stat?: PersonalStatsStatName[];
5493
5708
  timestamp?: number;
5494
5709
  }): Promise<UserPersonalStatsResponse>;
5710
+ /**
5711
+ * Get profile information for a specific player
5712
+ * @param params - Optional query parameters
5713
+ */
5714
+ profile(params?: {
5715
+ striptags?: "true" | "false";
5716
+ timestamp?: string;
5717
+ }): Promise<UserProfileResponse>;
5495
5718
  /**
5496
5719
  * Get specific user's properties
5497
5720
  * @param params - Optional query parameters
@@ -5668,4 +5891,4 @@ declare class TornRateLimitError extends Error {
5668
5891
  constructor(message: string);
5669
5892
  }
5670
5893
 
5671
- export { type AmmoId, type ApiKeyAccessTypeEnum, type ApiKeyBalancing, type Attack, type AttackActionEnum, type AttackCode, type AttackFinishingHitEffect, type AttackId, type AttackLog, type AttackLogResponse, type AttackLogSummary, type AttackPlayer, type AttackPlayerFaction, type AttackPlayerSimplified, type AttackSimplified, type AttackingFinishingHitEffects, type BasicProperty, type BasicUser, type Bazaar, type BazaarAdvancedItemSales, type BazaarBargainSales, type BazaarBulkSales, type BazaarDollarSales, type BazaarRecentFavorites, type BazaarResponse, type BazaarResponseSpecialized, type BazaarSpecialized, type BazaarTotalFavorites, type BazaarWeekly, type BazaarWeeklyCustomers, type BazaarWeeklyIncome, type Bounty, type ChainId, type CompanyId, type CompanyTypeId, type CountryEnum, type DirtyBombId, type EducationId, type Faction, type FactionApplication, type FactionApplicationStatusEnum, type FactionApplicationsResponse, type FactionAttackResult, type FactionAttacksFullResponse, type FactionAttacksResponse, type FactionBalance, type FactionBalanceResponse, type FactionBasic, type FactionBasicResponse, type FactionBranchDetails, type FactionBranchId, type FactionBranchStateEnum, type FactionChain, FactionChainIdContext, type FactionChainReport, type FactionChainReportAttacker, type FactionChainReportAttackerAttacks, type FactionChainReportAttackerRespect, type FactionChainReportBonus, type FactionChainReportDetails, type FactionChainReportResponse, type FactionChainWarfare, type FactionChainsResponse, type FactionContributor, type FactionContributorsResponse, type FactionCrime, type FactionCrimeId, FactionCrimeIdContext, type FactionCrimeItemOutcomeEnum, type FactionCrimeResponse, type FactionCrimeReward, type FactionCrimeRewardItem, type FactionCrimeRewardPayout, type FactionCrimeSlot, type FactionCrimeStatusEnum, type FactionCrimeUser, type FactionCrimeUserItemOutcome, type FactionCrimeUserItemOutcomeEnum, type FactionCrimeUserOutcome, type FactionCrimesResponse, FactionEndpoint, type FactionHofResponse, type FactionHofStats, type FactionHofValues, type FactionId, FactionIdContext, type FactionLookupResponse, type FactionMember, type FactionMembersResponse, type FactionNews, type FactionNewsCategory, type FactionNewsResponse, type FactionOngoingChain, type FactionOngoingChainResponse, type FactionOrganizedCrimePayoutType, type FactionPact, type FactionPosition, type FactionPositionAbilityEnum, type FactionPositionsResponse, type FactionRacketsResponse, type FactionRaidReport, type FactionRaidReportAttacker, type FactionRaidReportFaction, type FactionRaidReportUser, type FactionRaidWar, FactionRaidWarIdContext, type FactionRaidWarParticipant, type FactionRaidWarReportResponse, type FactionRaidWarfare, type FactionRaidWarfareFaction, type FactionRaidsResponse, type FactionRank, type FactionRankEnum, type FactionRankedWar, type FactionRankedWarDetails, FactionRankedWarIdContext, type FactionRankedWarParticipant, type FactionRankedWarReportResponse, type FactionRankedWarResponse, type FactionRankedWarsCategoryEnum, type FactionResponse, type FactionSearch, type FactionSearchLeader, type FactionSearchResponse, type FactionSelectionName, type FactionStat, type FactionStatEnum, type FactionStatsResponse, type FactionTerritoriesOwnershipResponse, type FactionTerritoriesResponse, type FactionTerritory, type FactionTerritoryEnum, type FactionTerritoryOwnership, type FactionTerritoryWar, type FactionTerritoryWarFaction, type FactionTerritoryWarFactionWallPlayers, type FactionTerritoryWarFinished, type FactionTerritoryWarFinishedFaction, FactionTerritoryWarIdContext, type FactionTerritoryWarOngoing, type FactionTerritoryWarOngoingFaction, type FactionTerritoryWarParticipant, type FactionTerritoryWarReport, type FactionTerritoryWarReportFaction, type FactionTerritoryWarReportMembers, type FactionTerritoryWarReportResponse, type FactionTerritoryWarResultEnum, type FactionTerritoryWarfare, type FactionTerritoryWarsCategoryEnum, type FactionTerritoryWarsHistoryResponse, type FactionTerritoryWarsResponse, type FactionUpgradeDetails, type FactionUpgrades, type FactionUpgradesResponse, type FactionWarfareDirtyBomb, type FactionWarfareDirtyBombPlanter, type FactionWarfareDirtyBombTargetFaction, type FactionWarfareResponse, type FactionWarfareTypeEnum, type FactionWars, type FactionWarsResponse, type ForumCategoriesResponse, ForumCategoryIdsContext, ForumEndpoint, type ForumFeed, type ForumFeedTypeEnum, type ForumId, type ForumLookupResponse, type ForumPoll, type ForumPollVote, type ForumPost, type ForumPostId, type ForumPostsResponse, type ForumResponse, type ForumSelectionName, type ForumSubscribedThread, type ForumSubscribedThreadPostsCount, type ForumThreadAuthor, type ForumThreadBase, type ForumThreadExtended, type ForumThreadId, ForumThreadIdContext, type ForumThreadResponse, type ForumThreadUserExtended, type ForumThreadsResponse, type HofValue, type HofValueFloat, type HofValueString, type HonorId, type HonorRarityEnum, type HonorTypeEnum, type ItemId, type ItemMarket, type ItemMarketItem, type ItemMarketListingItemBonus, type ItemMarketListingItemDetails, type ItemMarketListingItemStats, type ItemMarketListingNonstackable, type ItemMarketListingStackable, type ItemModId, type ItemUid, type JobPositionArmyEnum, type JobPositionCasinoEnum, type JobPositionEducationEnum, type JobPositionGrocerEnum, type JobPositionLawEnum, type JobPositionMedicalEnum, KeyEndpoint, type KeyInfoAvailableLog, type KeyInfoResponse, type KeyLogResponse, type KeyResponse, type KeySelectionName, type LogCategoryId, type LogId, MarketEndpoint, MarketIdContext, type MarketItemMarketResponse, type MarketLookupResponse, type MarketPropertiesResponse, type MarketPropertyDetails, MarketPropertyTypeIdContext, type MarketRentalDetails, type MarketRentalsResponse, type MarketResponse, type MarketSelectionName, type MarketSpecializedBazaarCategoryEnum, type MedalId, type MedalTypeEnum, type MeritId, type OrganizedCrimeName, PaginatedResponse, type Parameters, type PersonalStatsAttackingExtended, type PersonalStatsAttackingPopular, type PersonalStatsAttackingPublic, type PersonalStatsBattleStats, type PersonalStatsBounties, type PersonalStatsCategoryEnum, type PersonalStatsCommunication, type PersonalStatsCrimes, type PersonalStatsCrimesPopular, type PersonalStatsCrimesV1, type PersonalStatsCrimesV2, type PersonalStatsDrugs, type PersonalStatsFinishingHits, type PersonalStatsHistoricStat, type PersonalStatsHospital, type PersonalStatsHospitalPopular, type PersonalStatsInvestments, type PersonalStatsItems, type PersonalStatsItemsPopular, type PersonalStatsJail, type PersonalStatsJobsExtended, type PersonalStatsJobsPublic, type PersonalStatsMissions, type PersonalStatsNetworthExtended, type PersonalStatsNetworthPublic, type PersonalStatsOther, type PersonalStatsOtherPopular, type PersonalStatsRacing, type PersonalStatsStatName, type PersonalStatsTrading, type PersonalStatsTravel, type PersonalStatsTravelPopular, PropertyEndpoint, type PropertyId, PropertyIdContext, type PropertyLookupResponse, type PropertyModificationEnum, type PropertyPropertyResponse, type PropertyResponse, type PropertySelectionName, type PropertyStaffEnum, type PropertyTypeId, type Race, type RaceCar, type RaceCarId, type RaceCarUpgrade, type RaceCarUpgradeCategory, type RaceCarUpgradeId, type RaceCarUpgradeSubCategory, type RaceClassEnum, type RaceId, type RaceRecord, type RaceStatusEnum, type RaceTrack, type RaceTrackId, type RacerDetails, type RacingCarUpgradesResponse, type RacingCarsResponse, RacingEndpoint, type RacingLookupResponse, type RacingRaceDetails, type RacingRaceDetailsResponse, RacingRaceIdContext, type RacingRaceTypeEnum, type RacingRacesResponse, type RacingResponse, type RacingSelectionName, RacingTrackIdContext, type RacingTrackRecordsResponse, type RacingTracksResponse, type RaidWarId, type RankedWarId, type RateLimitMode, type Report, type ReportAnonymousBounties, type ReportBase, type ReportCompanyFinancials, type ReportFriendOrFoe, type ReportFriendOrFoeUser, type ReportHistory, type ReportHistoryCompany, type ReportHistoryFaction, type ReportInvestment, type ReportMoney, type ReportMostWanted, type ReportReport, type ReportStats, type ReportStockAnalysis, type ReportTrueLevel, type ReportTypeEnum, type ReportWarrantDetails, type ReportsResponse, type RequestLinks, type RequestMetadata, type RequestMetadataWithLinks, type RequestMetadataWithLinksAndTotal, type Requester, type Revive, type ReviveId, type ReviveSetting, type ReviveSimplified, type RevivesFullResponse, type RevivesResponse, type SelectionCategoryEnum, type TerritoryWarId, type TimestampResponse, TornAPI, type TornAPIOptions, TornApiError, type TornBountiesResponse, type TornCalendarActivity, type TornCalendarResponse, type TornCrime, type TornCrimeId, TornCrimeIdContext, type TornCrimesResponse, type TornEducation, type TornEducationCourses, type TornEducationPrerequisites, type TornEducationResponse, type TornEducationRewards, TornEndpoint, type TornFactionHof, type TornFactionHofCategory, type TornFactionHofResponse, type TornFactionTree, type TornFactionTreeBranch, type TornFactionTreeResponse, type TornHof, type TornHofBasic, type TornHofCategory, type TornHofResponse, type TornHofWithOffenses, type TornHonor, type TornHonorsResponse, TornIdsContext, type TornItem, type TornItemAmmo, type TornItemAmmoResponse, type TornItemAmmoTypeEnum, type TornItemArmorCoverage, type TornItemArmorCoveragePartEnum, type TornItemArmorDetails, type TornItemBaseStats, type TornItemCategory, type TornItemMods, type TornItemModsResponse, type TornItemTypeEnum, type TornItemWeaponCategoryEnum, type TornItemWeaponDetails, type TornItemWeaponTypeEnum, type TornItemsResponse, type TornLog, type TornLogCategoriesResponse, type TornLogCategory, TornLogCategoryIdContext, type TornLogTypesResponse, type TornLookupResponse, type TornMedal, type TornMedalsResponse, type TornMerit, type TornMeritsResponse, type TornOrganizedCrime, type TornOrganizedCrimePositionId, type TornOrganizedCrimeRequiredItem, type TornOrganizedCrimeResponse, type TornOrganizedCrimeScope, type TornOrganizedCrimeSlot, type TornOrganizedCrimeSpawn, type TornProperties, type TornRacket, type TornRacketReward, type TornRacketType, TornRateLimitError, type TornResponse, type TornSelectionName, type TornSubcrime, type TornSubcrimesResponse, type TornTerritoriesNoLinksResponse, type TornTerritoriesResponse, type TornTerritory, type TornTerritoryCoordinates, type User, type UserBasic, type UserBasicResponse, type UserBattleStatDetail, type UserBattleStatModifierDetail, type UserBattleStatsResponse, type UserBountiesResponse, type UserCalendar, type UserCalendarResponse, type UserCompanyPoints, type UserCrime, type UserCrimeAttempts, type UserCrimeDetailsBootlegging, type UserCrimeDetailsCardSkimming, type UserCrimeDetailsCracking, type UserCrimeDetailsGraffiti, type UserCrimeDetailsHustling, type UserCrimeDetailsScamming, type UserCrimeDetailsShoplifting, UserCrimeIdContext, type UserCrimeRewardAmmo, type UserCrimeRewardItem, type UserCrimeRewards, type UserCrimeUniques, type UserCrimeUniquesReward, type UserCrimeUniquesRewardAmmo, type UserCrimeUniquesRewardAmmoEnum, type UserCrimeUniquesRewardMoney, type UserCrimesResponse, type UserCurrentEducation, type UserEducation, type UserEducationResponse, UserEndpoint, type UserEnlistedCarsResponse, type UserFactionBalance, type UserFactionBalanceResponse, type UserForumFeedResponse, type UserForumFriendsResponse, type UserForumPostsResponse, type UserForumSubscribedThreadsResponse, type UserForumThreadsResponse, type UserGenderEnum, type UserHofResponse, type UserHofStats, type UserHonor, type UserHonorsResponse, type UserId, UserIdContext, type UserItemMarkeListingItemDetails, type UserItemMarketListing, type UserItemMarketResponse, type UserJobPointsResponse, type UserJobRanks, type UserJobRanksResponse, type UserLastAction, type UserList, type UserListEnum, type UserListResponse, type UserLog, type UserLogId, type UserLogsResponse, type UserLookupResponse, type UserMedal, type UserMedalsResponse, type UserMeritUpgrade, type UserMerits, type UserMeritsResponse, type UserMoneyResponse, type UserOrganizedCrimeResponse, type UserPersonalStatsCategory, type UserPersonalStatsFull, type UserPersonalStatsFullPublic, type UserPersonalStatsHistoric, type UserPersonalStatsPopular, type UserPersonalStatsResponse, type UserPropertiesResponse, type UserPropertyBasicDetails, type UserPropertyDetails, type UserPropertyDetailsExtended, type UserPropertyDetailsExtendedForRent, type UserPropertyDetailsExtendedForSale, type UserPropertyDetailsExtendedRented, type UserPropertyDetailsExtendedWithRent, type UserPropertyResponse, type UserRaceCarDetails, type UserRacesResponse, type UserRacingRecordsResponse, type UserResponse, type UserSelectionName, type UserSkillDetail, type UserSkillSlugEnum, type UserSkillsResponse, type UserStatus, type UserSubcrime, type UserWorkStatsResponse, type WeaponBonusEnum };
5894
+ 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 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 UserOrganizedCrimeResponse, type UserPersonalStatsCategory, type UserPersonalStatsFull, type UserPersonalStatsFullPublic, type UserPersonalStatsHistoric, type UserPersonalStatsPopular, type UserPersonalStatsResponse, 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 };