torn-client 0.2.1 → 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 +186 -8
- package/dist/index.d.ts +186 -8
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1378,6 +1378,15 @@ type HofValueString = {
|
|
|
1378
1378
|
rank: number | unknown;
|
|
1379
1379
|
};
|
|
1380
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
|
+
|
|
1381
1390
|
/** @category Models */
|
|
1382
1391
|
type ItemId = number;
|
|
1383
1392
|
|
|
@@ -1579,6 +1588,15 @@ type MarketSelectionName = "bazaar" | "itemmarket" | "properties" | "rentals" |
|
|
|
1579
1588
|
/** @category Models */
|
|
1580
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";
|
|
1581
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
|
+
|
|
1582
1600
|
/** @category Models */
|
|
1583
1601
|
type OrganizedCrimeName = string;
|
|
1584
1602
|
|
|
@@ -2818,6 +2836,28 @@ type TornHofWithOffenses = TornHofBasic & {
|
|
|
2818
2836
|
criminal_offenses: number;
|
|
2819
2837
|
};
|
|
2820
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
|
+
|
|
2821
2861
|
/** @category Models */
|
|
2822
2862
|
type TornItem = {
|
|
2823
2863
|
id: ItemId;
|
|
@@ -2957,6 +2997,36 @@ type TornLookupResponse = {
|
|
|
2957
2997
|
selections: TornSelectionName[];
|
|
2958
2998
|
};
|
|
2959
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
|
+
|
|
2960
3030
|
/** @category Models */
|
|
2961
3031
|
type TornOrganizedCrime = {
|
|
2962
3032
|
name: OrganizedCrimeName;
|
|
@@ -3036,10 +3106,10 @@ type TornRacketReward = {
|
|
|
3036
3106
|
type TornRacketType = "Item" | "Points" | "Money";
|
|
3037
3107
|
|
|
3038
3108
|
/** @category Models */
|
|
3039
|
-
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;
|
|
3040
3110
|
|
|
3041
3111
|
/** @category Models */
|
|
3042
|
-
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" | "
|
|
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;
|
|
3043
3113
|
|
|
3044
3114
|
/** @category Models */
|
|
3045
3115
|
type TornSubcrime = {
|
|
@@ -3489,6 +3559,17 @@ type UserHofStats = {
|
|
|
3489
3559
|
battle_stats: HofValue | unknown;
|
|
3490
3560
|
};
|
|
3491
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
|
+
|
|
3492
3573
|
/** @category Models */
|
|
3493
3574
|
type UserId = number;
|
|
3494
3575
|
|
|
@@ -3606,6 +3687,37 @@ type UserLookupResponse = {
|
|
|
3606
3687
|
selections: UserSelectionName[];
|
|
3607
3688
|
};
|
|
3608
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
|
+
|
|
3609
3721
|
/** @category Models */
|
|
3610
3722
|
type UserMoneyResponse = {
|
|
3611
3723
|
money: {
|
|
@@ -3723,6 +3835,11 @@ type UserPropertyDetailsExtendedRented = UserPropertyBasicDetails & {
|
|
|
3723
3835
|
rental_period: number;
|
|
3724
3836
|
rental_period_remaining: number;
|
|
3725
3837
|
rented_by: BasicUser;
|
|
3838
|
+
lease_extension: {
|
|
3839
|
+
cost: number;
|
|
3840
|
+
period: number;
|
|
3841
|
+
created_at: number;
|
|
3842
|
+
} | unknown;
|
|
3726
3843
|
};
|
|
3727
3844
|
|
|
3728
3845
|
/** @category Models */
|
|
@@ -3771,10 +3888,10 @@ type UserRacingRecordsResponse = {
|
|
|
3771
3888
|
};
|
|
3772
3889
|
|
|
3773
3890
|
/** @category Models */
|
|
3774
|
-
type UserResponse = UserCrimesResponse | UserRacesResponse | UserEnlistedCarsResponse | UserForumPostsResponse | UserForumThreadsResponse | UserForumSubscribedThreadsResponse | UserForumFeedResponse | UserForumFriendsResponse | UserHofResponse | UserCalendarResponse | UserRacingRecordsResponse | UserEducationResponse | UserBountiesResponse | UserJobRanksResponse | UserPropertiesResponse | UserFactionBalanceResponse | UserBasicResponse | RevivesResponse | RevivesFullResponse | UserItemMarketResponse | UserListResponse | UserPersonalStatsResponse | UserOrganizedCrimeResponse | FactionAttacksResponse | FactionAttacksFullResponse | UserMoneyResponse | UserJobPointsResponse | UserWorkStatsResponse | UserSkillsResponse | UserBattleStatsResponse | UserLookupResponse | TimestampResponse;
|
|
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;
|
|
3775
3892
|
|
|
3776
3893
|
/** @category Models */
|
|
3777
|
-
type UserSelectionName = "attacks" | "attacksfull" | "basic" | "battlestats" | "bounties" | "calendar" | "crimes" | "enlistedcars" | "factionbalance" | "forumfeed" | "forumfriends" | "forumposts" | "forumsubscribedthreads" | "forumthreads" | "hof" | "itemmarket" | "jobpoints" | "jobranks" | "list" | "lookup" | "money" | "organizedcrime" | "personalstats" | "properties" | "property" | "races" | "racingrecords" | "reports" | "revives" | "revivesfull" | "skills" | "timestamp" | "workstats" | "ammo" | "bars" | "bazaar" | "cooldowns" | "criminalrecord" | "discord" | "display" | "education" | "equipment" | "events" | "gym" | "
|
|
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;
|
|
3778
3895
|
|
|
3779
3896
|
/** @category Models */
|
|
3780
3897
|
type UserSkillDetail = {
|
|
@@ -4378,8 +4495,11 @@ declare class ForumThreadIdContext {
|
|
|
4378
4495
|
* @param params - Optional query parameters
|
|
4379
4496
|
*/
|
|
4380
4497
|
posts(params?: {
|
|
4381
|
-
offset?: number;
|
|
4382
4498
|
striptags?: "true" | "false";
|
|
4499
|
+
offset?: number;
|
|
4500
|
+
sort?: "DESC" | "ASC";
|
|
4501
|
+
from?: number;
|
|
4502
|
+
to?: number;
|
|
4383
4503
|
timestamp?: string;
|
|
4384
4504
|
}): Promise<PaginatedResponse<ForumPostsResponse> & ForumPostsResponse>;
|
|
4385
4505
|
/**
|
|
@@ -4772,6 +4892,13 @@ declare class TornEndpoint {
|
|
|
4772
4892
|
factiontree(params?: {
|
|
4773
4893
|
timestamp?: string;
|
|
4774
4894
|
}): Promise<TornFactionTreeResponse>;
|
|
4895
|
+
/**
|
|
4896
|
+
* Get all honors
|
|
4897
|
+
* @param params - Optional query parameters
|
|
4898
|
+
*/
|
|
4899
|
+
honors(params?: {
|
|
4900
|
+
timestamp?: string;
|
|
4901
|
+
}): Promise<TornHonorsResponse>;
|
|
4775
4902
|
/**
|
|
4776
4903
|
* Get player hall of fame positions for a specific category
|
|
4777
4904
|
* @param params - Optional query parameters
|
|
@@ -4819,6 +4946,20 @@ declare class TornEndpoint {
|
|
|
4819
4946
|
logtypes(params?: {
|
|
4820
4947
|
timestamp?: string;
|
|
4821
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>;
|
|
4822
4963
|
/**
|
|
4823
4964
|
* Get organized crimes information
|
|
4824
4965
|
* @param params - Optional query parameters
|
|
@@ -4863,7 +5004,7 @@ declare class TornEndpoint {
|
|
|
4863
5004
|
*/
|
|
4864
5005
|
get(params?: {
|
|
4865
5006
|
selections?: TornSelectionName[];
|
|
4866
|
-
id?: LogCategoryId | TornCrimeId | ItemId[] | FactionTerritoryEnum[];
|
|
5007
|
+
id?: LogCategoryId | TornCrimeId | ItemId[] | MedalId[] | HonorId[] | FactionTerritoryEnum[];
|
|
4867
5008
|
striptags?: "true" | "false";
|
|
4868
5009
|
limit?: number;
|
|
4869
5010
|
to?: number;
|
|
@@ -4888,6 +5029,13 @@ declare class TornIdsContext {
|
|
|
4888
5029
|
private readonly requester;
|
|
4889
5030
|
private readonly contextId;
|
|
4890
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>;
|
|
4891
5039
|
/**
|
|
4892
5040
|
* Get information about items
|
|
4893
5041
|
* @param params - Optional query parameters
|
|
@@ -4896,6 +5044,13 @@ declare class TornIdsContext {
|
|
|
4896
5044
|
sort?: "DESC" | "ASC";
|
|
4897
5045
|
timestamp?: string;
|
|
4898
5046
|
}): Promise<TornItemsResponse>;
|
|
5047
|
+
/**
|
|
5048
|
+
* Get specific medals
|
|
5049
|
+
* @param params - Optional query parameters
|
|
5050
|
+
*/
|
|
5051
|
+
medals(params?: {
|
|
5052
|
+
timestamp?: string;
|
|
5053
|
+
}): Promise<TornMedalsResponse>;
|
|
4899
5054
|
}
|
|
4900
5055
|
/**
|
|
4901
5056
|
* Context class for Torn API endpoints that require a "logCategoryId"
|
|
@@ -5062,6 +5217,13 @@ declare class UserEndpoint {
|
|
|
5062
5217
|
hof(params?: {
|
|
5063
5218
|
timestamp?: string;
|
|
5064
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>;
|
|
5065
5227
|
/**
|
|
5066
5228
|
* Get your item market listings for a specific item
|
|
5067
5229
|
* @param params - Optional query parameters
|
|
@@ -5107,6 +5269,20 @@ declare class UserEndpoint {
|
|
|
5107
5269
|
from?: number;
|
|
5108
5270
|
timestamp?: string;
|
|
5109
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>;
|
|
5110
5286
|
/**
|
|
5111
5287
|
* Get your current wealth
|
|
5112
5288
|
* @param params - Optional query parameters
|
|
@@ -5135,6 +5311,7 @@ declare class UserEndpoint {
|
|
|
5135
5311
|
* @param params - Optional query parameters
|
|
5136
5312
|
*/
|
|
5137
5313
|
properties(params?: {
|
|
5314
|
+
filters?: "ownedByUser" | "ownedBySpouse";
|
|
5138
5315
|
offset?: number;
|
|
5139
5316
|
limit?: number;
|
|
5140
5317
|
timestamp?: string;
|
|
@@ -5243,7 +5420,7 @@ declare class UserEndpoint {
|
|
|
5243
5420
|
sort?: "DESC" | "ASC";
|
|
5244
5421
|
cat?: ReportTypeEnum | UserListEnum | PersonalStatsCategoryEnum | RacingRaceTypeEnum;
|
|
5245
5422
|
stat?: PersonalStatsStatName[];
|
|
5246
|
-
filters?: "incoming" | "outgoing";
|
|
5423
|
+
filters?: "incoming" | "outgoing" | "ownedByUser" | "ownedBySpouse";
|
|
5247
5424
|
striptags?: "true" | "false";
|
|
5248
5425
|
offset?: number;
|
|
5249
5426
|
timestamp?: string;
|
|
@@ -5320,6 +5497,7 @@ declare class UserIdContext {
|
|
|
5320
5497
|
* @param params - Optional query parameters
|
|
5321
5498
|
*/
|
|
5322
5499
|
properties(params?: {
|
|
5500
|
+
filters?: "ownedByUser" | "ownedBySpouse";
|
|
5323
5501
|
offset?: number;
|
|
5324
5502
|
limit?: number;
|
|
5325
5503
|
timestamp?: string;
|
|
@@ -5490,4 +5668,4 @@ declare class TornRateLimitError extends Error {
|
|
|
5490
5668
|
constructor(message: string);
|
|
5491
5669
|
}
|
|
5492
5670
|
|
|
5493
|
-
export { type AmmoId, type ApiKeyAccessTypeEnum, type ApiKeyBalancing, type Attack, type AttackActionEnum, type AttackCode, type AttackFinishingHitEffect, type AttackId, type AttackLog, type AttackLogResponse, type AttackLogSummary, type AttackPlayer, type AttackPlayerFaction, type AttackPlayerSimplified, type AttackSimplified, type AttackingFinishingHitEffects, type BasicProperty, type BasicUser, type Bazaar, type BazaarAdvancedItemSales, type BazaarBargainSales, type BazaarBulkSales, type BazaarDollarSales, type BazaarRecentFavorites, type BazaarResponse, type BazaarResponseSpecialized, type BazaarSpecialized, type BazaarTotalFavorites, type BazaarWeekly, type BazaarWeeklyCustomers, type BazaarWeeklyIncome, type Bounty, type ChainId, type CompanyId, type CompanyTypeId, type CountryEnum, type DirtyBombId, type EducationId, type Faction, type FactionApplication, type FactionApplicationStatusEnum, type FactionApplicationsResponse, type FactionAttackResult, type FactionAttacksFullResponse, type FactionAttacksResponse, type FactionBalance, type FactionBalanceResponse, type FactionBasic, type FactionBasicResponse, type FactionBranchDetails, type FactionBranchId, type FactionBranchStateEnum, type FactionChain, FactionChainIdContext, type FactionChainReport, type FactionChainReportAttacker, type FactionChainReportAttackerAttacks, type FactionChainReportAttackerRespect, type FactionChainReportBonus, type FactionChainReportDetails, type FactionChainReportResponse, type FactionChainWarfare, type FactionChainsResponse, type FactionContributor, type FactionContributorsResponse, type FactionCrime, type FactionCrimeId, FactionCrimeIdContext, type FactionCrimeItemOutcomeEnum, type FactionCrimeResponse, type FactionCrimeReward, type FactionCrimeRewardItem, type FactionCrimeRewardPayout, type FactionCrimeSlot, type FactionCrimeStatusEnum, type FactionCrimeUser, type FactionCrimeUserItemOutcome, type FactionCrimeUserItemOutcomeEnum, type FactionCrimeUserOutcome, type FactionCrimesResponse, FactionEndpoint, type FactionHofResponse, type FactionHofStats, type FactionHofValues, type FactionId, FactionIdContext, type FactionLookupResponse, type FactionMember, type FactionMembersResponse, type FactionNews, type FactionNewsCategory, type FactionNewsResponse, type FactionOngoingChain, type FactionOngoingChainResponse, type FactionOrganizedCrimePayoutType, type FactionPact, type FactionPosition, type FactionPositionAbilityEnum, type FactionPositionsResponse, type FactionRacketsResponse, type FactionRaidReport, type FactionRaidReportAttacker, type FactionRaidReportFaction, type FactionRaidReportUser, type FactionRaidWar, FactionRaidWarIdContext, type FactionRaidWarParticipant, type FactionRaidWarReportResponse, type FactionRaidWarfare, type FactionRaidWarfareFaction, type FactionRaidsResponse, type FactionRank, type FactionRankEnum, type FactionRankedWar, type FactionRankedWarDetails, FactionRankedWarIdContext, type FactionRankedWarParticipant, type FactionRankedWarReportResponse, type FactionRankedWarResponse, type FactionRankedWarsCategoryEnum, type FactionResponse, type FactionSearch, type FactionSearchLeader, type FactionSearchResponse, type FactionSelectionName, type FactionStat, type FactionStatEnum, type FactionStatsResponse, type FactionTerritoriesOwnershipResponse, type FactionTerritoriesResponse, type FactionTerritory, type FactionTerritoryEnum, type FactionTerritoryOwnership, type FactionTerritoryWar, type FactionTerritoryWarFaction, type FactionTerritoryWarFactionWallPlayers, type FactionTerritoryWarFinished, type FactionTerritoryWarFinishedFaction, FactionTerritoryWarIdContext, type FactionTerritoryWarOngoing, type FactionTerritoryWarOngoingFaction, type FactionTerritoryWarParticipant, type FactionTerritoryWarReport, type FactionTerritoryWarReportFaction, type FactionTerritoryWarReportMembers, type FactionTerritoryWarReportResponse, type FactionTerritoryWarResultEnum, type FactionTerritoryWarfare, type FactionTerritoryWarsCategoryEnum, type FactionTerritoryWarsHistoryResponse, type FactionTerritoryWarsResponse, type FactionUpgradeDetails, type FactionUpgrades, type FactionUpgradesResponse, type FactionWarfareDirtyBomb, type FactionWarfareDirtyBombPlanter, type FactionWarfareDirtyBombTargetFaction, type FactionWarfareResponse, type FactionWarfareTypeEnum, type FactionWars, type FactionWarsResponse, type ForumCategoriesResponse, ForumCategoryIdsContext, ForumEndpoint, type ForumFeed, type ForumFeedTypeEnum, type ForumId, type ForumLookupResponse, type ForumPoll, type ForumPollVote, type ForumPost, type ForumPostId, type ForumPostsResponse, type ForumResponse, type ForumSelectionName, type ForumSubscribedThread, type ForumSubscribedThreadPostsCount, type ForumThreadAuthor, type ForumThreadBase, type ForumThreadExtended, type ForumThreadId, ForumThreadIdContext, type ForumThreadResponse, type ForumThreadUserExtended, type ForumThreadsResponse, type HofValue, type HofValueFloat, type HofValueString, type ItemId, type ItemMarket, type ItemMarketItem, type ItemMarketListingItemBonus, type ItemMarketListingItemDetails, type ItemMarketListingItemStats, type ItemMarketListingNonstackable, type ItemMarketListingStackable, type ItemModId, type ItemUid, type JobPositionArmyEnum, type JobPositionCasinoEnum, type JobPositionEducationEnum, type JobPositionGrocerEnum, type JobPositionLawEnum, type JobPositionMedicalEnum, KeyEndpoint, type KeyInfoAvailableLog, type KeyInfoResponse, type KeyLogResponse, type KeyResponse, type KeySelectionName, type LogCategoryId, type LogId, MarketEndpoint, MarketIdContext, type MarketItemMarketResponse, type MarketLookupResponse, type MarketPropertiesResponse, type MarketPropertyDetails, MarketPropertyTypeIdContext, type MarketRentalDetails, type MarketRentalsResponse, type MarketResponse, type MarketSelectionName, type MarketSpecializedBazaarCategoryEnum, type OrganizedCrimeName, PaginatedResponse, type Parameters, type PersonalStatsAttackingExtended, type PersonalStatsAttackingPopular, type PersonalStatsAttackingPublic, type PersonalStatsBattleStats, type PersonalStatsBounties, type PersonalStatsCategoryEnum, type PersonalStatsCommunication, type PersonalStatsCrimes, type PersonalStatsCrimesPopular, type PersonalStatsCrimesV1, type PersonalStatsCrimesV2, type PersonalStatsDrugs, type PersonalStatsFinishingHits, type PersonalStatsHistoricStat, type PersonalStatsHospital, type PersonalStatsHospitalPopular, type PersonalStatsInvestments, type PersonalStatsItems, type PersonalStatsItemsPopular, type PersonalStatsJail, type PersonalStatsJobsExtended, type PersonalStatsJobsPublic, type PersonalStatsMissions, type PersonalStatsNetworthExtended, type PersonalStatsNetworthPublic, type PersonalStatsOther, type PersonalStatsOtherPopular, type PersonalStatsRacing, type PersonalStatsStatName, type PersonalStatsTrading, type PersonalStatsTravel, type PersonalStatsTravelPopular, PropertyEndpoint, type PropertyId, PropertyIdContext, type PropertyLookupResponse, type PropertyModificationEnum, type PropertyPropertyResponse, type PropertyResponse, type PropertySelectionName, type PropertyStaffEnum, type PropertyTypeId, type Race, type RaceCar, type RaceCarId, type RaceCarUpgrade, type RaceCarUpgradeCategory, type RaceCarUpgradeId, type RaceCarUpgradeSubCategory, type RaceClassEnum, type RaceId, type RaceRecord, type RaceStatusEnum, type RaceTrack, type RaceTrackId, type RacerDetails, type RacingCarUpgradesResponse, type RacingCarsResponse, RacingEndpoint, type RacingLookupResponse, type RacingRaceDetails, type RacingRaceDetailsResponse, RacingRaceIdContext, type RacingRaceTypeEnum, type RacingRacesResponse, type RacingResponse, type RacingSelectionName, RacingTrackIdContext, type RacingTrackRecordsResponse, type RacingTracksResponse, type RaidWarId, type RankedWarId, type RateLimitMode, type Report, type ReportAnonymousBounties, type ReportBase, type ReportCompanyFinancials, type ReportFriendOrFoe, type ReportFriendOrFoeUser, type ReportHistory, type ReportHistoryCompany, type ReportHistoryFaction, type ReportInvestment, type ReportMoney, type ReportMostWanted, type ReportReport, type ReportStats, type ReportStockAnalysis, type ReportTrueLevel, type ReportTypeEnum, type ReportWarrantDetails, type ReportsResponse, type RequestLinks, type RequestMetadata, type RequestMetadataWithLinks, type RequestMetadataWithLinksAndTotal, type Requester, type Revive, type ReviveId, type ReviveSetting, type ReviveSimplified, type RevivesFullResponse, type RevivesResponse, type SelectionCategoryEnum, type TerritoryWarId, type TimestampResponse, TornAPI, type TornAPIOptions, TornApiError, type TornBountiesResponse, type TornCalendarActivity, type TornCalendarResponse, type TornCrime, type TornCrimeId, TornCrimeIdContext, type TornCrimesResponse, type TornEducation, type TornEducationCourses, type TornEducationPrerequisites, type TornEducationResponse, type TornEducationRewards, TornEndpoint, type TornFactionHof, type TornFactionHofCategory, type TornFactionHofResponse, type TornFactionTree, type TornFactionTreeBranch, type TornFactionTreeResponse, type TornHof, type TornHofBasic, type TornHofCategory, type TornHofResponse, type TornHofWithOffenses, TornIdsContext, type TornItem, type TornItemAmmo, type TornItemAmmoResponse, type TornItemAmmoTypeEnum, type TornItemArmorCoverage, type TornItemArmorCoveragePartEnum, type TornItemArmorDetails, type TornItemBaseStats, type TornItemCategory, type TornItemMods, type TornItemModsResponse, type TornItemTypeEnum, type TornItemWeaponCategoryEnum, type TornItemWeaponDetails, type TornItemWeaponTypeEnum, type TornItemsResponse, type TornLog, type TornLogCategoriesResponse, type TornLogCategory, TornLogCategoryIdContext, type TornLogTypesResponse, type TornLookupResponse, type TornOrganizedCrime, type TornOrganizedCrimePositionId, type TornOrganizedCrimeRequiredItem, type TornOrganizedCrimeResponse, type TornOrganizedCrimeScope, type TornOrganizedCrimeSlot, type TornOrganizedCrimeSpawn, type TornProperties, type TornRacket, type TornRacketReward, type TornRacketType, TornRateLimitError, type TornResponse, type TornSelectionName, type TornSubcrime, type TornSubcrimesResponse, type TornTerritoriesNoLinksResponse, type TornTerritoriesResponse, type TornTerritory, type TornTerritoryCoordinates, type User, type UserBasic, type UserBasicResponse, type UserBattleStatDetail, type UserBattleStatModifierDetail, type UserBattleStatsResponse, type UserBountiesResponse, type UserCalendar, type UserCalendarResponse, type UserCompanyPoints, type UserCrime, type UserCrimeAttempts, type UserCrimeDetailsBootlegging, type UserCrimeDetailsCardSkimming, type UserCrimeDetailsCracking, type UserCrimeDetailsGraffiti, type UserCrimeDetailsHustling, type UserCrimeDetailsScamming, type UserCrimeDetailsShoplifting, UserCrimeIdContext, type UserCrimeRewardAmmo, type UserCrimeRewardItem, type UserCrimeRewards, type UserCrimeUniques, type UserCrimeUniquesReward, type UserCrimeUniquesRewardAmmo, type UserCrimeUniquesRewardAmmoEnum, type UserCrimeUniquesRewardMoney, type UserCrimesResponse, type UserCurrentEducation, type UserEducation, type UserEducationResponse, UserEndpoint, type UserEnlistedCarsResponse, type UserFactionBalance, type UserFactionBalanceResponse, type UserForumFeedResponse, type UserForumFriendsResponse, type UserForumPostsResponse, type UserForumSubscribedThreadsResponse, type UserForumThreadsResponse, type UserGenderEnum, type UserHofResponse, type UserHofStats, type UserId, UserIdContext, type UserItemMarkeListingItemDetails, type UserItemMarketListing, type UserItemMarketResponse, type UserJobPointsResponse, type UserJobRanks, type UserJobRanksResponse, type UserLastAction, type UserList, type UserListEnum, type UserListResponse, type UserLog, type UserLogId, type UserLogsResponse, type UserLookupResponse, type UserMoneyResponse, type UserOrganizedCrimeResponse, type UserPersonalStatsCategory, type UserPersonalStatsFull, type UserPersonalStatsFullPublic, type UserPersonalStatsHistoric, type UserPersonalStatsPopular, type UserPersonalStatsResponse, type UserPropertiesResponse, type UserPropertyBasicDetails, type UserPropertyDetails, type UserPropertyDetailsExtended, type UserPropertyDetailsExtendedForRent, type UserPropertyDetailsExtendedForSale, type UserPropertyDetailsExtendedRented, type UserPropertyDetailsExtendedWithRent, type UserPropertyResponse, type UserRaceCarDetails, type UserRacesResponse, type UserRacingRecordsResponse, type UserResponse, type UserSelectionName, type UserSkillDetail, type UserSkillSlugEnum, type UserSkillsResponse, type UserStatus, type UserSubcrime, type UserWorkStatsResponse, type WeaponBonusEnum };
|
|
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 };
|