torn-client 0.2.0 → 0.2.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 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
 
@@ -1375,6 +1378,15 @@ type HofValueString = {
1375
1378
  rank: number | unknown;
1376
1379
  };
1377
1380
 
1381
+ /** @category Models */
1382
+ type HonorId = number;
1383
+
1384
+ /** @category Models */
1385
+ type HonorRarityEnum = "Extremely Rare" | "Very Rare" | "Rare" | "Limited" | "Uncommon" | "Common" | "Very Common" | "Unknown";
1386
+
1387
+ /** @category Models */
1388
+ type HonorTypeEnum = "attacking" | "camo" | "weapons" | "education" | "crimes" | "drugs" | "jail" | "hospital" | "travel" | "gym" | "level" | "competitions" | "money" | "items" | "commitment" | "casino" | "missions" | "misc" | "default";
1389
+
1378
1390
  /** @category Models */
1379
1391
  type ItemId = number;
1380
1392
 
@@ -1576,6 +1588,15 @@ type MarketSelectionName = "bazaar" | "itemmarket" | "properties" | "rentals" |
1576
1588
  /** @category Models */
1577
1589
  type MarketSpecializedBazaarCategoryEnum = "Alcohol" | "Artifact" | "Booster" | "Candy" | "Car" | "Clothing" | "Collectible" | "Defensive" | "Drug" | "Energy Drink" | "Enhancer" | "Flower" | "Jewelry" | "Material" | "Medical" | "Melee" | "Other" | "Plushie" | "Primary" | "Secondary" | "Special" | "Supply Pack" | "Temporary" | "Tool";
1578
1590
 
1591
+ /** @category Models */
1592
+ type MedalId = number;
1593
+
1594
+ /** @category Models */
1595
+ type MedalTypeEnum = "combat" | "commitment" | "crime" | "level" | "miscellaneous" | "networth" | "rank";
1596
+
1597
+ /** @category Models */
1598
+ type MeritId = number;
1599
+
1579
1600
  /** @category Models */
1580
1601
  type OrganizedCrimeName = string;
1581
1602
 
@@ -2815,6 +2836,28 @@ type TornHofWithOffenses = TornHofBasic & {
2815
2836
  criminal_offenses: number;
2816
2837
  };
2817
2838
 
2839
+ /**
2840
+ * Properties 'circulation', 'equipped' & 'rarity' are only populated for honors which do not have type.id value 1.
2841
+ * @category Models
2842
+ */
2843
+ type TornHonor = {
2844
+ id: HonorId;
2845
+ name: string;
2846
+ description: string;
2847
+ type: {
2848
+ id: number;
2849
+ title: HonorTypeEnum;
2850
+ };
2851
+ circulation?: number;
2852
+ equipped?: number;
2853
+ rarity?: HonorRarityEnum;
2854
+ };
2855
+
2856
+ /** @category Models */
2857
+ type TornHonorsResponse = {
2858
+ honors: TornHonor[];
2859
+ };
2860
+
2818
2861
  /** @category Models */
2819
2862
  type TornItem = {
2820
2863
  id: ItemId;
@@ -2954,6 +2997,36 @@ type TornLookupResponse = {
2954
2997
  selections: TornSelectionName[];
2955
2998
  };
2956
2999
 
3000
+ /** @category Models */
3001
+ type TornMedal = {
3002
+ id: MedalId;
3003
+ name: string;
3004
+ description: string;
3005
+ type: {
3006
+ id: string;
3007
+ title: MedalTypeEnum;
3008
+ };
3009
+ circulation: number;
3010
+ rarity: HonorRarityEnum;
3011
+ };
3012
+
3013
+ /** @category Models */
3014
+ type TornMedalsResponse = {
3015
+ medals: TornMedal[];
3016
+ };
3017
+
3018
+ /** @category Models */
3019
+ type TornMerit = {
3020
+ id: MeritId;
3021
+ name: string;
3022
+ description: string;
3023
+ };
3024
+
3025
+ /** @category Models */
3026
+ type TornMeritsResponse = {
3027
+ merits: TornMerit[];
3028
+ };
3029
+
2957
3030
  /** @category Models */
2958
3031
  type TornOrganizedCrime = {
2959
3032
  name: OrganizedCrimeName;
@@ -3033,10 +3106,10 @@ type TornRacketReward = {
3033
3106
  type TornRacketType = "Item" | "Points" | "Money";
3034
3107
 
3035
3108
  /** @category Models */
3036
- type TornResponse = TornSubcrimesResponse | TornCrimesResponse | TornCalendarResponse | TornHofResponse | TornFactionHofResponse | TornLogTypesResponse | TornItemsResponse | TornLogCategoriesResponse | TornEducationResponse | TornBountiesResponse | TornItemAmmoResponse | TornProperties | TornFactionTreeResponse | AttackLogResponse | TornTerritoriesResponse | TornTerritoriesNoLinksResponse | TornItemModsResponse | TornLookupResponse | TimestampResponse;
3109
+ type TornResponse = TornSubcrimesResponse | TornCrimesResponse | TornCalendarResponse | TornHofResponse | TornFactionHofResponse | TornLogTypesResponse | TornItemsResponse | TornLogCategoriesResponse | TornEducationResponse | TornMeritsResponse | TornHonorsResponse | TornMedalsResponse | TornBountiesResponse | TornItemAmmoResponse | TornProperties | TornFactionTreeResponse | AttackLogResponse | TornTerritoriesResponse | TornTerritoriesNoLinksResponse | TornItemModsResponse | TornLookupResponse | TimestampResponse;
3037
3110
 
3038
3111
  /** @category Models */
3039
- type TornSelectionName = "attacklog" | "bounties" | "calendar" | "crimes" | "education" | "factionhof" | "factiontree" | "hof" | "itemammo" | "itemmods" | "items" | "logcategories" | "logtypes" | "lookup" | "organizedcrimes" | "properties" | "subcrimes" | "territory" | "timestamp" | "bank" | "cards" | "cityshops" | "companies" | "competition" | "gyms" | "honors" | "itemdetails" | "itemstats" | "medals" | "organisedcrimes" | "pawnshop" | "pokertables" | "rockpaperscissors" | "searchforcash" | "shoplifting" | "stats" | "stocks" | string;
3112
+ type TornSelectionName = "attacklog" | "bounties" | "calendar" | "crimes" | "education" | "factionhof" | "factiontree" | "hof" | "honors" | "itemammo" | "itemmods" | "items" | "logcategories" | "logtypes" | "lookup" | "medals" | "merits" | "organizedcrimes" | "properties" | "subcrimes" | "territory" | "timestamp" | "bank" | "cards" | "cityshops" | "companies" | "competition" | "gyms" | "itemdetails" | "itemstats" | "organisedcrimes" | "pawnshop" | "pokertables" | "rockpaperscissors" | "searchforcash" | "shoplifting" | "stats" | "stocks" | string;
3040
3113
 
3041
3114
  /** @category Models */
3042
3115
  type TornSubcrime = {
@@ -3161,6 +3234,45 @@ type User = {
3161
3234
  };
3162
3235
  };
3163
3236
 
3237
+ /** @category Models */
3238
+ type UserBasic = {
3239
+ id: UserId;
3240
+ name: string;
3241
+ level: number;
3242
+ gender: UserGenderEnum;
3243
+ status: UserStatus;
3244
+ };
3245
+
3246
+ /** @category Models */
3247
+ type UserBasicResponse = {
3248
+ profile: UserBasic;
3249
+ };
3250
+
3251
+ /** @category Models */
3252
+ type UserBattleStatDetail = {
3253
+ value: number;
3254
+ modifier: number;
3255
+ modifiers: UserBattleStatModifierDetail[];
3256
+ };
3257
+
3258
+ /** @category Models */
3259
+ type UserBattleStatModifierDetail = {
3260
+ effect: string;
3261
+ value: number;
3262
+ type: string;
3263
+ };
3264
+
3265
+ /** @category Models */
3266
+ type UserBattleStatsResponse = {
3267
+ battlestats: {
3268
+ strength: UserBattleStatDetail;
3269
+ defense: UserBattleStatDetail;
3270
+ speed: UserBattleStatDetail;
3271
+ dexterity: UserBattleStatDetail;
3272
+ total: number;
3273
+ };
3274
+ };
3275
+
3164
3276
  /** @category Models */
3165
3277
  type UserBountiesResponse = {
3166
3278
  bounties: Bounty[];
@@ -3176,6 +3288,15 @@ type UserCalendarResponse = {
3176
3288
  calendar: UserCalendar;
3177
3289
  };
3178
3290
 
3291
+ /** @category Models */
3292
+ type UserCompanyPoints = {
3293
+ company: {
3294
+ id: CompanyTypeId;
3295
+ name: string;
3296
+ };
3297
+ points: number;
3298
+ };
3299
+
3179
3300
  /** @category Models */
3180
3301
  type UserCrime = {
3181
3302
  nerve_spent: number;
@@ -3411,6 +3532,9 @@ type UserForumThreadsResponse = {
3411
3532
  _metadata: RequestMetadataWithLinks;
3412
3533
  };
3413
3534
 
3535
+ /** @category Models */
3536
+ type UserGenderEnum = "Male" | "Female" | "Enby";
3537
+
3414
3538
  /** @category Models */
3415
3539
  type UserHofResponse = {
3416
3540
  hof: UserHofStats;
@@ -3435,6 +3559,17 @@ type UserHofStats = {
3435
3559
  battle_stats: HofValue | unknown;
3436
3560
  };
3437
3561
 
3562
+ /** @category Models */
3563
+ type UserHonor = {
3564
+ id: HonorId;
3565
+ timestamp: number;
3566
+ };
3567
+
3568
+ /** @category Models */
3569
+ type UserHonorsResponse = {
3570
+ honors: UserHonor[];
3571
+ };
3572
+
3438
3573
  /** @category Models */
3439
3574
  type UserId = number;
3440
3575
 
@@ -3466,6 +3601,21 @@ type UserItemMarketResponse = {
3466
3601
  _metadata: RequestMetadataWithLinks;
3467
3602
  };
3468
3603
 
3604
+ /** @category Models */
3605
+ type UserJobPointsResponse = {
3606
+ jobpoints: {
3607
+ jobs: {
3608
+ army: number;
3609
+ casino: number;
3610
+ education: number;
3611
+ grocer: number;
3612
+ law: number;
3613
+ medical: number;
3614
+ };
3615
+ companies: UserCompanyPoints[];
3616
+ };
3617
+ };
3618
+
3469
3619
  /** @category Models */
3470
3620
  type UserJobRanks = {
3471
3621
  army: JobPositionArmyEnum;
@@ -3537,6 +3687,57 @@ type UserLookupResponse = {
3537
3687
  selections: UserSelectionName[];
3538
3688
  };
3539
3689
 
3690
+ /** @category Models */
3691
+ type UserMedal = {
3692
+ id: MedalId;
3693
+ timestamp: number;
3694
+ };
3695
+
3696
+ /** @category Models */
3697
+ type UserMedalsResponse = {
3698
+ medals: UserMedal[];
3699
+ };
3700
+
3701
+ /** @category Models */
3702
+ type UserMerits = {
3703
+ upgrades: UserMeritUpgrade[];
3704
+ available: number;
3705
+ used: number;
3706
+ medals: number;
3707
+ honors: number;
3708
+ };
3709
+
3710
+ /** @category Models */
3711
+ type UserMeritsResponse = {
3712
+ merits: UserMerits;
3713
+ };
3714
+
3715
+ /** @category Models */
3716
+ type UserMeritUpgrade = {
3717
+ id: MeritId;
3718
+ level: number;
3719
+ };
3720
+
3721
+ /** @category Models */
3722
+ type UserMoneyResponse = {
3723
+ money: {
3724
+ points: number;
3725
+ wallet: number;
3726
+ company: number;
3727
+ vault: number;
3728
+ cayman_bank: number;
3729
+ city_bank: {
3730
+ amount: number;
3731
+ until: number;
3732
+ };
3733
+ faction: {
3734
+ money: number;
3735
+ points: number;
3736
+ };
3737
+ daily_networth: number;
3738
+ };
3739
+ };
3740
+
3540
3741
  /** @category Models */
3541
3742
  type UserOrganizedCrimeResponse = {
3542
3743
  organizedCrime: FactionCrime | unknown;
@@ -3634,6 +3835,11 @@ type UserPropertyDetailsExtendedRented = UserPropertyBasicDetails & {
3634
3835
  rental_period: number;
3635
3836
  rental_period_remaining: number;
3636
3837
  rented_by: BasicUser;
3838
+ lease_extension: {
3839
+ cost: number;
3840
+ period: number;
3841
+ created_at: number;
3842
+ } | unknown;
3637
3843
  };
3638
3844
 
3639
3845
  /** @category Models */
@@ -3682,10 +3888,25 @@ type UserRacingRecordsResponse = {
3682
3888
  };
3683
3889
 
3684
3890
  /** @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;
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;
3686
3892
 
3687
3893
  /** @category Models */
3688
- type UserSelectionName = "attacks" | "attacksfull" | "bounties" | "calendar" | "crimes" | "enlistedcars" | "factionbalance" | "forumfeed" | "forumfriends" | "forumposts" | "forumsubscribedthreads" | "forumthreads" | "hof" | "itemmarket" | "jobranks" | "list" | "lookup" | "organizedcrime" | "personalstats" | "properties" | "property" | "races" | "racingrecords" | "revives" | "revivesfull" | "timestamp" | "ammo" | "bars" | "basic" | "battlestats" | "bazaar" | "cooldowns" | "criminalrecord" | "discord" | "display" | "education" | "equipment" | "events" | "gym" | "honors" | "icons" | "inventory" | "jobpoints" | "log" | "medals" | "merits" | "messages" | "missions" | "money" | "networth" | "newevents" | "newmessages" | "notifications" | "perks" | "profile" | "refills" | "reports" | "skills" | "stocks" | "travel" | "weaponexp" | "workstats" | string;
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;
3895
+
3896
+ /** @category Models */
3897
+ type UserSkillDetail = {
3898
+ slug: UserSkillSlugEnum | string;
3899
+ name: string;
3900
+ level: number;
3901
+ };
3902
+
3903
+ /** @category Models */
3904
+ type UserSkillSlugEnum = "hunting" | "racing" | "reviving" | "search_for_cash" | "bootlegging" | "graffiti" | "shoplifting" | "pickpocketing" | "card_skimming" | "burglary" | "hustling" | "disposal" | "cracking" | "forgery" | "scamming" | "arson";
3905
+
3906
+ /** @category Models */
3907
+ type UserSkillsResponse = {
3908
+ skills: UserSkillDetail[];
3909
+ };
3689
3910
 
3690
3911
  /**
3691
3912
  * Details about a user's status.
@@ -3706,6 +3927,16 @@ type UserSubcrime = {
3706
3927
  fail: number;
3707
3928
  };
3708
3929
 
3930
+ /** @category Models */
3931
+ type UserWorkStatsResponse = {
3932
+ workstats: {
3933
+ endurance: number;
3934
+ intelligence: number;
3935
+ manual_labor: number;
3936
+ total: number;
3937
+ };
3938
+ };
3939
+
3709
3940
  /** @category Models */
3710
3941
  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
3942
 
@@ -4264,8 +4495,11 @@ declare class ForumThreadIdContext {
4264
4495
  * @param params - Optional query parameters
4265
4496
  */
4266
4497
  posts(params?: {
4267
- offset?: number;
4268
4498
  striptags?: "true" | "false";
4499
+ offset?: number;
4500
+ sort?: "DESC" | "ASC";
4501
+ from?: number;
4502
+ to?: number;
4269
4503
  timestamp?: string;
4270
4504
  }): Promise<PaginatedResponse<ForumPostsResponse> & ForumPostsResponse>;
4271
4505
  /**
@@ -4658,6 +4892,13 @@ declare class TornEndpoint {
4658
4892
  factiontree(params?: {
4659
4893
  timestamp?: string;
4660
4894
  }): Promise<TornFactionTreeResponse>;
4895
+ /**
4896
+ * Get all honors
4897
+ * @param params - Optional query parameters
4898
+ */
4899
+ honors(params?: {
4900
+ timestamp?: string;
4901
+ }): Promise<TornHonorsResponse>;
4661
4902
  /**
4662
4903
  * Get player hall of fame positions for a specific category
4663
4904
  * @param params - Optional query parameters
@@ -4705,6 +4946,20 @@ declare class TornEndpoint {
4705
4946
  logtypes(params?: {
4706
4947
  timestamp?: string;
4707
4948
  }): Promise<TornLogTypesResponse>;
4949
+ /**
4950
+ * Get all medals
4951
+ * @param params - Optional query parameters
4952
+ */
4953
+ medals(params?: {
4954
+ timestamp?: string;
4955
+ }): Promise<TornMedalsResponse>;
4956
+ /**
4957
+ * Get all merits
4958
+ * @param params - Optional query parameters
4959
+ */
4960
+ merits(params?: {
4961
+ timestamp?: string;
4962
+ }): Promise<TornMeritsResponse>;
4708
4963
  /**
4709
4964
  * Get organized crimes information
4710
4965
  * @param params - Optional query parameters
@@ -4749,7 +5004,7 @@ declare class TornEndpoint {
4749
5004
  */
4750
5005
  get(params?: {
4751
5006
  selections?: TornSelectionName[];
4752
- id?: LogCategoryId | TornCrimeId | ItemId[] | FactionTerritoryEnum[];
5007
+ id?: LogCategoryId | TornCrimeId | ItemId[] | MedalId[] | HonorId[] | FactionTerritoryEnum[];
4753
5008
  striptags?: "true" | "false";
4754
5009
  limit?: number;
4755
5010
  to?: number;
@@ -4774,6 +5029,13 @@ declare class TornIdsContext {
4774
5029
  private readonly requester;
4775
5030
  private readonly contextId;
4776
5031
  constructor(requester: Requester, contextId: string | number);
5032
+ /**
5033
+ * Get specific honors
5034
+ * @param params - Optional query parameters
5035
+ */
5036
+ honors(params?: {
5037
+ timestamp?: string;
5038
+ }): Promise<TornHonorsResponse>;
4777
5039
  /**
4778
5040
  * Get information about items
4779
5041
  * @param params - Optional query parameters
@@ -4782,6 +5044,13 @@ declare class TornIdsContext {
4782
5044
  sort?: "DESC" | "ASC";
4783
5045
  timestamp?: string;
4784
5046
  }): Promise<TornItemsResponse>;
5047
+ /**
5048
+ * Get specific medals
5049
+ * @param params - Optional query parameters
5050
+ */
5051
+ medals(params?: {
5052
+ timestamp?: string;
5053
+ }): Promise<TornMedalsResponse>;
4785
5054
  }
4786
5055
  /**
4787
5056
  * Context class for Torn API endpoints that require a "logCategoryId"
@@ -4847,6 +5116,14 @@ declare class UserEndpoint {
4847
5116
  from?: number;
4848
5117
  timestamp?: string;
4849
5118
  }): Promise<PaginatedResponse<FactionAttacksFullResponse> & FactionAttacksFullResponse>;
5119
+ /**
5120
+ * Get your basic profile information
5121
+ * @param params - Optional query parameters
5122
+ */
5123
+ basic(params?: {
5124
+ striptags?: "true" | "false";
5125
+ timestamp?: string;
5126
+ }): Promise<UserBasicResponse>;
4850
5127
  /**
4851
5128
  * Get bounties placed on you
4852
5129
  * @param params - Optional query parameters
@@ -4854,6 +5131,13 @@ declare class UserEndpoint {
4854
5131
  bounties(params?: {
4855
5132
  timestamp?: string;
4856
5133
  }): Promise<UserBountiesResponse>;
5134
+ /**
5135
+ * Get your battlestats
5136
+ * @param params - Optional query parameters
5137
+ */
5138
+ battlestats(params?: {
5139
+ timestamp?: string;
5140
+ }): Promise<UserBattleStatsResponse>;
4857
5141
  /**
4858
5142
  * Get your competition's event start time
4859
5143
  * @param params - Optional query parameters
@@ -4876,7 +5160,7 @@ declare class UserEndpoint {
4876
5160
  timestamp?: string;
4877
5161
  }): Promise<UserEnlistedCarsResponse>;
4878
5162
  /**
4879
- * Get your current faction balance
5163
+ * Deprecated. Use user/money instead
4880
5164
  * @param params - Optional query parameters
4881
5165
  */
4882
5166
  factionbalance(params?: {
@@ -4933,6 +5217,13 @@ declare class UserEndpoint {
4933
5217
  hof(params?: {
4934
5218
  timestamp?: string;
4935
5219
  }): Promise<UserHofResponse>;
5220
+ /**
5221
+ * Get your achieved honors
5222
+ * @param params - Optional query parameters
5223
+ */
5224
+ honors(params?: {
5225
+ timestamp?: string;
5226
+ }): Promise<UserHonorsResponse>;
4936
5227
  /**
4937
5228
  * Get your item market listings for a specific item
4938
5229
  * @param params - Optional query parameters
@@ -4941,6 +5232,13 @@ declare class UserEndpoint {
4941
5232
  offset?: number;
4942
5233
  timestamp?: string;
4943
5234
  }): Promise<PaginatedResponse<UserItemMarketResponse> & UserItemMarketResponse>;
5235
+ /**
5236
+ * Get your jobpoints
5237
+ * @param params - Optional query parameters
5238
+ */
5239
+ jobpoints(params?: {
5240
+ timestamp?: string;
5241
+ }): Promise<UserJobPointsResponse>;
4944
5242
  /**
4945
5243
  * Get your starter job positions
4946
5244
  * @param params - Optional query parameters
@@ -4971,6 +5269,27 @@ declare class UserEndpoint {
4971
5269
  from?: number;
4972
5270
  timestamp?: string;
4973
5271
  }): Promise<PaginatedResponse<UserLogsResponse> & UserLogsResponse>;
5272
+ /**
5273
+ * Get your achieved medals
5274
+ * @param params - Optional query parameters
5275
+ */
5276
+ medals(params?: {
5277
+ timestamp?: string;
5278
+ }): Promise<UserMedalsResponse>;
5279
+ /**
5280
+ * Get your merits
5281
+ * @param params - Optional query parameters
5282
+ */
5283
+ merits(params?: {
5284
+ timestamp?: string;
5285
+ }): Promise<UserMeritsResponse>;
5286
+ /**
5287
+ * Get your current wealth
5288
+ * @param params - Optional query parameters
5289
+ */
5290
+ money(params?: {
5291
+ timestamp?: string;
5292
+ }): Promise<UserMoneyResponse>;
4974
5293
  /**
4975
5294
  * Get your current ongoing organized crime
4976
5295
  * @param params - Optional query parameters
@@ -4992,6 +5311,7 @@ declare class UserEndpoint {
4992
5311
  * @param params - Optional query parameters
4993
5312
  */
4994
5313
  properties(params?: {
5314
+ filters?: "ownedByUser" | "ownedBySpouse";
4995
5315
  offset?: number;
4996
5316
  limit?: number;
4997
5317
  timestamp?: string;
@@ -5059,6 +5379,20 @@ declare class UserEndpoint {
5059
5379
  striptags?: "true" | "false";
5060
5380
  timestamp?: string;
5061
5381
  }): Promise<PaginatedResponse<RevivesFullResponse> & RevivesFullResponse>;
5382
+ /**
5383
+ * Get your skills
5384
+ * @param params - Optional query parameters
5385
+ */
5386
+ skills(params?: {
5387
+ timestamp?: string;
5388
+ }): Promise<UserSkillsResponse>;
5389
+ /**
5390
+ * Get your working stats
5391
+ * @param params - Optional query parameters
5392
+ */
5393
+ workstats(params?: {
5394
+ timestamp?: string;
5395
+ }): Promise<UserWorkStatsResponse>;
5062
5396
  /**
5063
5397
  * Get all available user selections
5064
5398
  * @param params - Optional query parameters
@@ -5086,7 +5420,7 @@ declare class UserEndpoint {
5086
5420
  sort?: "DESC" | "ASC";
5087
5421
  cat?: ReportTypeEnum | UserListEnum | PersonalStatsCategoryEnum | RacingRaceTypeEnum;
5088
5422
  stat?: PersonalStatsStatName[];
5089
- filters?: "incoming" | "outgoing";
5423
+ filters?: "incoming" | "outgoing" | "ownedByUser" | "ownedBySpouse";
5090
5424
  striptags?: "true" | "false";
5091
5425
  offset?: number;
5092
5426
  timestamp?: string;
@@ -5104,6 +5438,14 @@ declare class UserIdContext {
5104
5438
  private readonly requester;
5105
5439
  private readonly contextId;
5106
5440
  constructor(requester: Requester, contextId: string | number);
5441
+ /**
5442
+ * Get basic profile information for a specific user
5443
+ * @param params - Optional query parameters
5444
+ */
5445
+ basic(params?: {
5446
+ striptags?: "true" | "false";
5447
+ timestamp?: string;
5448
+ }): Promise<UserBasicResponse>;
5107
5449
  /**
5108
5450
  * Get bounties placed on a specific user
5109
5451
  * @param params - Optional query parameters
@@ -5155,6 +5497,7 @@ declare class UserIdContext {
5155
5497
  * @param params - Optional query parameters
5156
5498
  */
5157
5499
  properties(params?: {
5500
+ filters?: "ownedByUser" | "ownedBySpouse";
5158
5501
  offset?: number;
5159
5502
  limit?: number;
5160
5503
  timestamp?: string;
@@ -5325,4 +5668,4 @@ declare class TornRateLimitError extends Error {
5325
5668
  constructor(message: string);
5326
5669
  }
5327
5670
 
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 };
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 };