@steamsets/client-ts 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +63 -9
- package/docs/sdks/account/README.md +225 -76
- package/docs/sdks/data/README.md +315 -0
- package/docs/sdks/location/README.md +80 -0
- package/docs/sdks/public/README.md +241 -0
- package/docs/sdks/session/README.md +62 -62
- package/funcs/accountAccountV1GetApps.d.ts.map +1 -1
- package/funcs/accountAccountV1GetApps.js +4 -0
- package/funcs/accountAccountV1GetApps.js.map +1 -1
- package/funcs/accountAccountV1GetBadges.d.ts.map +1 -1
- package/funcs/accountAccountV1GetBadges.js +4 -0
- package/funcs/accountAccountV1GetBadges.js.map +1 -1
- package/funcs/accountAccountV1GetInfo.d.ts +14 -0
- package/funcs/accountAccountV1GetInfo.d.ts.map +1 -0
- package/funcs/accountAccountV1GetInfo.js +96 -0
- package/funcs/accountAccountV1GetInfo.js.map +1 -0
- package/funcs/accountAccountV1GetStaff.d.ts +13 -0
- package/funcs/accountAccountV1GetStaff.d.ts.map +1 -0
- package/funcs/accountAccountV1GetStaff.js +86 -0
- package/funcs/accountAccountV1GetStaff.js.map +1 -0
- package/funcs/accountAccountV1SessionCreate.js +1 -1
- package/funcs/accountAccountV1SessionLogin.js +2 -2
- package/funcs/accountAccountV1SessionLogin.js.map +1 -1
- package/funcs/dataAccountV1GetApps.d.ts +13 -0
- package/funcs/dataAccountV1GetApps.d.ts.map +1 -0
- package/funcs/dataAccountV1GetApps.js +105 -0
- package/funcs/dataAccountV1GetApps.js.map +1 -0
- package/funcs/dataAccountV1GetBadges.d.ts +13 -0
- package/funcs/dataAccountV1GetBadges.d.ts.map +1 -0
- package/funcs/dataAccountV1GetBadges.js +105 -0
- package/funcs/dataAccountV1GetBadges.js.map +1 -0
- package/funcs/dataAccountV1GetInfo.d.ts +14 -0
- package/funcs/dataAccountV1GetInfo.d.ts.map +1 -0
- package/funcs/dataAccountV1GetInfo.js +96 -0
- package/funcs/dataAccountV1GetInfo.js.map +1 -0
- package/funcs/dataAccountV1GetStaff.d.ts +13 -0
- package/funcs/dataAccountV1GetStaff.d.ts.map +1 -0
- package/funcs/dataAccountV1GetStaff.js +86 -0
- package/funcs/dataAccountV1GetStaff.js.map +1 -0
- package/funcs/locationLocation.d.ts +16 -0
- package/funcs/locationLocation.d.ts.map +1 -0
- package/funcs/locationLocation.js +87 -0
- package/funcs/locationLocation.js.map +1 -0
- package/funcs/publicAccountV1GetApps.d.ts +13 -0
- package/funcs/publicAccountV1GetApps.d.ts.map +1 -0
- package/funcs/publicAccountV1GetApps.js +105 -0
- package/funcs/publicAccountV1GetApps.js.map +1 -0
- package/funcs/publicAccountV1GetBadges.d.ts +13 -0
- package/funcs/publicAccountV1GetBadges.d.ts.map +1 -0
- package/funcs/publicAccountV1GetBadges.js +105 -0
- package/funcs/publicAccountV1GetBadges.js.map +1 -0
- package/funcs/publicAccountV1GetInfo.d.ts +14 -0
- package/funcs/publicAccountV1GetInfo.d.ts.map +1 -0
- package/funcs/publicAccountV1GetInfo.js +96 -0
- package/funcs/publicAccountV1GetInfo.js.map +1 -0
- package/funcs/sessionAccountV1SessionCreate.js +1 -1
- package/funcs/sessionAccountV1SessionLogin.js +2 -2
- package/funcs/sessionAccountV1SessionLogin.js.map +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/lib/security.d.ts +6 -1
- package/lib/security.d.ts.map +1 -1
- package/lib/security.js +5 -0
- package/lib/security.js.map +1 -1
- package/models/components/accountinfobody.d.ts +379 -0
- package/models/components/accountinfobody.d.ts.map +1 -0
- package/models/components/accountinfobody.js +254 -0
- package/models/components/accountinfobody.js.map +1 -0
- package/models/components/bestleaderboardrank.d.ts +110 -0
- package/models/components/bestleaderboardrank.d.ts.map +1 -0
- package/models/components/bestleaderboardrank.js +89 -0
- package/models/components/bestleaderboardrank.js.map +1 -0
- package/models/components/city.d.ts +28 -0
- package/models/components/city.d.ts.map +1 -0
- package/models/components/city.js +50 -0
- package/models/components/city.js.map +1 -0
- package/models/components/country.d.ts +43 -0
- package/models/components/country.d.ts.map +1 -0
- package/models/components/country.js +55 -0
- package/models/components/country.js.map +1 -0
- package/models/components/index.d.ts +9 -0
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +9 -0
- package/models/components/index.js.map +1 -1
- package/models/components/leaderboardaccount.d.ts +196 -0
- package/models/components/leaderboardaccount.d.ts.map +1 -0
- package/models/components/leaderboardaccount.js +128 -0
- package/models/components/leaderboardaccount.js.map +1 -0
- package/models/components/leaderboardbadgeinfo.d.ts +33 -0
- package/models/components/leaderboardbadgeinfo.d.ts.map +1 -0
- package/models/components/leaderboardbadgeinfo.js +55 -0
- package/models/components/leaderboardbadgeinfo.js.map +1 -0
- package/models/components/location.d.ts +38 -0
- package/models/components/location.d.ts.map +1 -0
- package/models/components/location.js +54 -0
- package/models/components/location.js.map +1 -0
- package/models/components/region.d.ts +38 -0
- package/models/components/region.d.ts.map +1 -0
- package/models/components/region.js +53 -0
- package/models/components/region.js.map +1 -0
- package/models/components/role.d.ts +2 -2
- package/models/components/role.d.ts.map +1 -1
- package/models/components/role.js +4 -17
- package/models/components/role.js.map +1 -1
- package/models/components/state.d.ts +43 -0
- package/models/components/state.d.ts.map +1 -0
- package/models/components/state.js +55 -0
- package/models/components/state.js.map +1 -0
- package/models/errors/errormodel.d.ts +5 -5
- package/models/errors/errormodel.d.ts.map +1 -1
- package/models/errors/errormodel.js +4 -2
- package/models/errors/errormodel.js.map +1 -1
- package/models/operations/accountv1getapps.d.ts +2 -0
- package/models/operations/accountv1getapps.d.ts.map +1 -1
- package/models/operations/accountv1getapps.js +4 -0
- package/models/operations/accountv1getapps.js.map +1 -1
- package/models/operations/accountv1getbadges.d.ts +2 -0
- package/models/operations/accountv1getbadges.d.ts.map +1 -1
- package/models/operations/accountv1getbadges.js +4 -0
- package/models/operations/accountv1getbadges.js.map +1 -1
- package/models/operations/accountv1getinfo.d.ts +31 -0
- package/models/operations/accountv1getinfo.d.ts.map +1 -0
- package/models/operations/accountv1getinfo.js +68 -0
- package/models/operations/accountv1getinfo.js.map +1 -0
- package/models/operations/accountv1getstaff.d.ts +31 -0
- package/models/operations/accountv1getstaff.d.ts.map +1 -0
- package/models/operations/accountv1getstaff.js +72 -0
- package/models/operations/accountv1getstaff.js.map +1 -0
- package/models/operations/index.d.ts +3 -0
- package/models/operations/index.d.ts.map +1 -1
- package/models/operations/index.js +3 -0
- package/models/operations/index.js.map +1 -1
- package/models/operations/location.d.ts +31 -0
- package/models/operations/location.d.ts.map +1 -0
- package/models/operations/location.js +68 -0
- package/models/operations/location.js.map +1 -0
- package/package.json +1 -1
- package/sdk/account.d.ts +12 -4
- package/sdk/account.d.ts.map +1 -1
- package/sdk/account.js +20 -6
- package/sdk/account.js.map +1 -1
- package/sdk/data.d.ts +22 -0
- package/sdk/data.d.ts.map +1 -0
- package/sdk/data.js +40 -0
- package/sdk/data.js.map +1 -0
- package/sdk/location.d.ts +12 -0
- package/sdk/location.d.ts.map +1 -0
- package/sdk/location.js +22 -0
- package/sdk/location.js.map +1 -0
- package/sdk/public.d.ts +18 -0
- package/sdk/public.d.ts.map +1 -0
- package/sdk/public.js +33 -0
- package/sdk/public.js.map +1 -0
- package/sdk/sdk.d.ts +11 -2
- package/sdk/sdk.d.ts.map +1 -1
- package/sdk/sdk.js +17 -2
- package/sdk/sdk.js.map +1 -1
- package/sdk/session.d.ts +4 -4
- package/sdk/session.d.ts.map +1 -1
- package/sdk/session.js +6 -6
- package/sdk/session.js.map +1 -1
- package/src/funcs/accountAccountV1GetApps.ts +4 -0
- package/src/funcs/accountAccountV1GetBadges.ts +4 -0
- package/src/funcs/accountAccountV1GetInfo.ts +130 -0
- package/src/funcs/accountAccountV1GetStaff.ts +113 -0
- package/src/funcs/accountAccountV1SessionCreate.ts +1 -1
- package/src/funcs/accountAccountV1SessionLogin.ts +2 -2
- package/src/funcs/dataAccountV1GetApps.ts +139 -0
- package/src/funcs/dataAccountV1GetBadges.ts +139 -0
- package/src/funcs/dataAccountV1GetInfo.ts +130 -0
- package/src/funcs/dataAccountV1GetStaff.ts +113 -0
- package/src/funcs/locationLocation.ts +114 -0
- package/src/funcs/publicAccountV1GetApps.ts +139 -0
- package/src/funcs/publicAccountV1GetBadges.ts +139 -0
- package/src/funcs/publicAccountV1GetInfo.ts +130 -0
- package/src/funcs/sessionAccountV1SessionCreate.ts +1 -1
- package/src/funcs/sessionAccountV1SessionLogin.ts +2 -2
- package/src/lib/config.ts +3 -3
- package/src/lib/security.ts +12 -1
- package/src/models/components/accountinfobody.ts +532 -0
- package/src/models/components/bestleaderboardrank.ts +102 -0
- package/src/models/components/city.ts +40 -0
- package/src/models/components/country.ts +55 -0
- package/src/models/components/index.ts +9 -0
- package/src/models/components/leaderboardaccount.ts +301 -0
- package/src/models/components/leaderboardbadgeinfo.ts +58 -0
- package/src/models/components/location.ts +55 -0
- package/src/models/components/region.ts +53 -0
- package/src/models/components/role.ts +14 -27
- package/src/models/components/state.ts +55 -0
- package/src/models/errors/errormodel.ts +8 -6
- package/src/models/operations/accountv1getapps.ts +6 -0
- package/src/models/operations/accountv1getbadges.ts +6 -0
- package/src/models/operations/accountv1getinfo.ts +68 -0
- package/src/models/operations/accountv1getstaff.ts +72 -0
- package/src/models/operations/index.ts +3 -0
- package/src/models/operations/location.ts +64 -0
- package/src/sdk/account.ts +31 -10
- package/src/sdk/data.ts +53 -0
- package/src/sdk/location.ts +20 -0
- package/src/sdk/public.ts +43 -0
- package/src/sdk/sdk.ts +21 -3
- package/src/sdk/session.ts +10 -10
|
@@ -0,0 +1,379 @@
|
|
|
1
|
+
import { ClosedEnum } from "../../types/enums.js";
|
|
2
|
+
import { BestLeaderboardRank, BestLeaderboardRank$Outbound } from "./bestleaderboardrank.js";
|
|
3
|
+
import { Connection, Connection$Outbound } from "./connection.js";
|
|
4
|
+
import { Image, Image$Outbound } from "./image.js";
|
|
5
|
+
import { Location, Location$Outbound } from "./location.js";
|
|
6
|
+
import { Role, Role$Outbound } from "./role.js";
|
|
7
|
+
import * as z from "zod";
|
|
8
|
+
/**
|
|
9
|
+
* The privacy of the account
|
|
10
|
+
*/
|
|
11
|
+
export declare const AppPrivacy: {
|
|
12
|
+
readonly Private: "private";
|
|
13
|
+
readonly Public: "public";
|
|
14
|
+
readonly FriendsOnly: "friends_only";
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* The privacy of the account
|
|
18
|
+
*/
|
|
19
|
+
export type AppPrivacy = ClosedEnum<typeof AppPrivacy>;
|
|
20
|
+
/**
|
|
21
|
+
* The privacy of the account
|
|
22
|
+
*/
|
|
23
|
+
export declare const FriendPrivacy: {
|
|
24
|
+
readonly Private: "private";
|
|
25
|
+
readonly Public: "public";
|
|
26
|
+
readonly FriendsOnly: "friends_only";
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* The privacy of the account
|
|
30
|
+
*/
|
|
31
|
+
export type FriendPrivacy = ClosedEnum<typeof FriendPrivacy>;
|
|
32
|
+
/**
|
|
33
|
+
* The privacy of the account
|
|
34
|
+
*/
|
|
35
|
+
export declare const Privacy: {
|
|
36
|
+
readonly Private: "private";
|
|
37
|
+
readonly Public: "public";
|
|
38
|
+
readonly FriendsOnly: "friends_only";
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* The privacy of the account
|
|
42
|
+
*/
|
|
43
|
+
export type Privacy = ClosedEnum<typeof Privacy>;
|
|
44
|
+
export type AccountInfoBody = {
|
|
45
|
+
/**
|
|
46
|
+
* A URL to the JSON Schema for this object.
|
|
47
|
+
*/
|
|
48
|
+
dollarSchema?: string | undefined;
|
|
49
|
+
/**
|
|
50
|
+
* The account id
|
|
51
|
+
*/
|
|
52
|
+
accountId: number;
|
|
53
|
+
/**
|
|
54
|
+
* The animated avatar of the account
|
|
55
|
+
*/
|
|
56
|
+
animatedAvatar: string;
|
|
57
|
+
/**
|
|
58
|
+
* The cost of an app
|
|
59
|
+
*/
|
|
60
|
+
appCost: number;
|
|
61
|
+
/**
|
|
62
|
+
* The privacy of the account
|
|
63
|
+
*/
|
|
64
|
+
appPrivacy: AppPrivacy;
|
|
65
|
+
/**
|
|
66
|
+
* The number of apps the account has
|
|
67
|
+
*/
|
|
68
|
+
apps: number;
|
|
69
|
+
/**
|
|
70
|
+
* The time the apps were updated
|
|
71
|
+
*/
|
|
72
|
+
appsUpdatedAt: Date;
|
|
73
|
+
/**
|
|
74
|
+
* The avatar hash of the account
|
|
75
|
+
*/
|
|
76
|
+
avatar: string;
|
|
77
|
+
/**
|
|
78
|
+
* The avatar frame of the account
|
|
79
|
+
*/
|
|
80
|
+
avatarFrame: string;
|
|
81
|
+
/**
|
|
82
|
+
* The average playtime of the account
|
|
83
|
+
*/
|
|
84
|
+
averagePlaytime: number;
|
|
85
|
+
/**
|
|
86
|
+
* The number of awards the account has
|
|
87
|
+
*/
|
|
88
|
+
awardsGiven: number;
|
|
89
|
+
/**
|
|
90
|
+
* The number of awards the account has
|
|
91
|
+
*/
|
|
92
|
+
awardsReceived: number;
|
|
93
|
+
/**
|
|
94
|
+
* The background of the account
|
|
95
|
+
*/
|
|
96
|
+
background: string;
|
|
97
|
+
/**
|
|
98
|
+
* The number of badges the account has
|
|
99
|
+
*/
|
|
100
|
+
badges: number;
|
|
101
|
+
/**
|
|
102
|
+
* The time the badges were updated
|
|
103
|
+
*/
|
|
104
|
+
badgesUpdatedAt: Date;
|
|
105
|
+
/**
|
|
106
|
+
* The number of bans
|
|
107
|
+
*/
|
|
108
|
+
bans: number;
|
|
109
|
+
city?: Location | undefined;
|
|
110
|
+
/**
|
|
111
|
+
* The connections of the account
|
|
112
|
+
*/
|
|
113
|
+
connections: Array<Connection> | null;
|
|
114
|
+
country?: Location | undefined;
|
|
115
|
+
/**
|
|
116
|
+
* The time the account was created
|
|
117
|
+
*/
|
|
118
|
+
createdAt: Date;
|
|
119
|
+
/**
|
|
120
|
+
* The current best ranks
|
|
121
|
+
*/
|
|
122
|
+
currentBestRanks: Array<BestLeaderboardRank> | null;
|
|
123
|
+
/**
|
|
124
|
+
* The current ranks
|
|
125
|
+
*/
|
|
126
|
+
currentRanks: Array<BestLeaderboardRank> | null;
|
|
127
|
+
/**
|
|
128
|
+
* The economy ban of the account
|
|
129
|
+
*/
|
|
130
|
+
economyBan: string;
|
|
131
|
+
/**
|
|
132
|
+
* The cost of a foil badge
|
|
133
|
+
*/
|
|
134
|
+
foilBadgeCost: number;
|
|
135
|
+
/**
|
|
136
|
+
* The number of foil badges the account has
|
|
137
|
+
*/
|
|
138
|
+
foilBadges: number;
|
|
139
|
+
/**
|
|
140
|
+
* The privacy of the account
|
|
141
|
+
*/
|
|
142
|
+
friendPrivacy: FriendPrivacy;
|
|
143
|
+
/**
|
|
144
|
+
* The number of friends the account has
|
|
145
|
+
*/
|
|
146
|
+
friends: number;
|
|
147
|
+
/**
|
|
148
|
+
* The time the friends were updated
|
|
149
|
+
*/
|
|
150
|
+
friendsUpdatedAt: Date;
|
|
151
|
+
/**
|
|
152
|
+
* The number of game bans
|
|
153
|
+
*/
|
|
154
|
+
gameBans: number;
|
|
155
|
+
/**
|
|
156
|
+
* Whether the account is hidden in the leaderboards
|
|
157
|
+
*/
|
|
158
|
+
hidden: boolean;
|
|
159
|
+
/**
|
|
160
|
+
* The images of the account
|
|
161
|
+
*/
|
|
162
|
+
images: Array<Image> | null;
|
|
163
|
+
/**
|
|
164
|
+
* The level of the account
|
|
165
|
+
*/
|
|
166
|
+
level: number;
|
|
167
|
+
/**
|
|
168
|
+
* The number of limited apps the account has
|
|
169
|
+
*/
|
|
170
|
+
limitedApps: number;
|
|
171
|
+
/**
|
|
172
|
+
* The mini background of the account
|
|
173
|
+
*/
|
|
174
|
+
miniBackground: string;
|
|
175
|
+
/**
|
|
176
|
+
* The name of the account
|
|
177
|
+
*/
|
|
178
|
+
name: string;
|
|
179
|
+
/**
|
|
180
|
+
* The cost of a normal badge
|
|
181
|
+
*/
|
|
182
|
+
normalBadgeCost: number;
|
|
183
|
+
/**
|
|
184
|
+
* The number of normal badges the account has
|
|
185
|
+
*/
|
|
186
|
+
normalBadges: number;
|
|
187
|
+
/**
|
|
188
|
+
* The playtime of the account
|
|
189
|
+
*/
|
|
190
|
+
playtime: number;
|
|
191
|
+
/**
|
|
192
|
+
* The number of points the account has
|
|
193
|
+
*/
|
|
194
|
+
pointsGiven: number;
|
|
195
|
+
/**
|
|
196
|
+
* The number of points the account has
|
|
197
|
+
*/
|
|
198
|
+
pointsReceived: number;
|
|
199
|
+
/**
|
|
200
|
+
* The privacy of the account
|
|
201
|
+
*/
|
|
202
|
+
privacy: Privacy;
|
|
203
|
+
region?: Location | undefined;
|
|
204
|
+
/**
|
|
205
|
+
* The roles of the account
|
|
206
|
+
*/
|
|
207
|
+
roles: Array<Role> | null;
|
|
208
|
+
state?: Location | undefined;
|
|
209
|
+
/**
|
|
210
|
+
* The steam id
|
|
211
|
+
*/
|
|
212
|
+
steamId: string;
|
|
213
|
+
/**
|
|
214
|
+
* The steam sets score
|
|
215
|
+
*/
|
|
216
|
+
steamSetsScore: number;
|
|
217
|
+
/**
|
|
218
|
+
* The vanity of the account
|
|
219
|
+
*/
|
|
220
|
+
steamSetsVanity: string;
|
|
221
|
+
/**
|
|
222
|
+
* The vanity of the account
|
|
223
|
+
*/
|
|
224
|
+
steamVanity: string;
|
|
225
|
+
/**
|
|
226
|
+
* The theme of the account
|
|
227
|
+
*/
|
|
228
|
+
theme: string;
|
|
229
|
+
/**
|
|
230
|
+
* The time the account was updated
|
|
231
|
+
*/
|
|
232
|
+
updatedAt: Date;
|
|
233
|
+
/**
|
|
234
|
+
* The number of vac bans
|
|
235
|
+
*/
|
|
236
|
+
vacBans: number;
|
|
237
|
+
/**
|
|
238
|
+
* The number of xp the account has
|
|
239
|
+
*/
|
|
240
|
+
xp: number;
|
|
241
|
+
};
|
|
242
|
+
/** @internal */
|
|
243
|
+
export declare const AppPrivacy$inboundSchema: z.ZodNativeEnum<typeof AppPrivacy>;
|
|
244
|
+
/** @internal */
|
|
245
|
+
export declare const AppPrivacy$outboundSchema: z.ZodNativeEnum<typeof AppPrivacy>;
|
|
246
|
+
/**
|
|
247
|
+
* @internal
|
|
248
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
249
|
+
*/
|
|
250
|
+
export declare namespace AppPrivacy$ {
|
|
251
|
+
/** @deprecated use `AppPrivacy$inboundSchema` instead. */
|
|
252
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
253
|
+
readonly Private: "private";
|
|
254
|
+
readonly Public: "public";
|
|
255
|
+
readonly FriendsOnly: "friends_only";
|
|
256
|
+
}>;
|
|
257
|
+
/** @deprecated use `AppPrivacy$outboundSchema` instead. */
|
|
258
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
259
|
+
readonly Private: "private";
|
|
260
|
+
readonly Public: "public";
|
|
261
|
+
readonly FriendsOnly: "friends_only";
|
|
262
|
+
}>;
|
|
263
|
+
}
|
|
264
|
+
/** @internal */
|
|
265
|
+
export declare const FriendPrivacy$inboundSchema: z.ZodNativeEnum<typeof FriendPrivacy>;
|
|
266
|
+
/** @internal */
|
|
267
|
+
export declare const FriendPrivacy$outboundSchema: z.ZodNativeEnum<typeof FriendPrivacy>;
|
|
268
|
+
/**
|
|
269
|
+
* @internal
|
|
270
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
271
|
+
*/
|
|
272
|
+
export declare namespace FriendPrivacy$ {
|
|
273
|
+
/** @deprecated use `FriendPrivacy$inboundSchema` instead. */
|
|
274
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
275
|
+
readonly Private: "private";
|
|
276
|
+
readonly Public: "public";
|
|
277
|
+
readonly FriendsOnly: "friends_only";
|
|
278
|
+
}>;
|
|
279
|
+
/** @deprecated use `FriendPrivacy$outboundSchema` instead. */
|
|
280
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
281
|
+
readonly Private: "private";
|
|
282
|
+
readonly Public: "public";
|
|
283
|
+
readonly FriendsOnly: "friends_only";
|
|
284
|
+
}>;
|
|
285
|
+
}
|
|
286
|
+
/** @internal */
|
|
287
|
+
export declare const Privacy$inboundSchema: z.ZodNativeEnum<typeof Privacy>;
|
|
288
|
+
/** @internal */
|
|
289
|
+
export declare const Privacy$outboundSchema: z.ZodNativeEnum<typeof Privacy>;
|
|
290
|
+
/**
|
|
291
|
+
* @internal
|
|
292
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
293
|
+
*/
|
|
294
|
+
export declare namespace Privacy$ {
|
|
295
|
+
/** @deprecated use `Privacy$inboundSchema` instead. */
|
|
296
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
297
|
+
readonly Private: "private";
|
|
298
|
+
readonly Public: "public";
|
|
299
|
+
readonly FriendsOnly: "friends_only";
|
|
300
|
+
}>;
|
|
301
|
+
/** @deprecated use `Privacy$outboundSchema` instead. */
|
|
302
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
303
|
+
readonly Private: "private";
|
|
304
|
+
readonly Public: "public";
|
|
305
|
+
readonly FriendsOnly: "friends_only";
|
|
306
|
+
}>;
|
|
307
|
+
}
|
|
308
|
+
/** @internal */
|
|
309
|
+
export declare const AccountInfoBody$inboundSchema: z.ZodType<AccountInfoBody, z.ZodTypeDef, unknown>;
|
|
310
|
+
/** @internal */
|
|
311
|
+
export type AccountInfoBody$Outbound = {
|
|
312
|
+
$schema?: string | undefined;
|
|
313
|
+
accountId: number;
|
|
314
|
+
animatedAvatar: string;
|
|
315
|
+
appCost: number;
|
|
316
|
+
appPrivacy: string;
|
|
317
|
+
apps: number;
|
|
318
|
+
appsUpdatedAt: string;
|
|
319
|
+
avatar: string;
|
|
320
|
+
avatarFrame: string;
|
|
321
|
+
averagePlaytime: number;
|
|
322
|
+
awardsGiven: number;
|
|
323
|
+
awardsReceived: number;
|
|
324
|
+
background: string;
|
|
325
|
+
badges: number;
|
|
326
|
+
badgesUpdatedAt: string;
|
|
327
|
+
bans: number;
|
|
328
|
+
city?: Location$Outbound | undefined;
|
|
329
|
+
connections: Array<Connection$Outbound> | null;
|
|
330
|
+
country?: Location$Outbound | undefined;
|
|
331
|
+
createdAt: string;
|
|
332
|
+
currentBestRanks: Array<BestLeaderboardRank$Outbound> | null;
|
|
333
|
+
currentRanks: Array<BestLeaderboardRank$Outbound> | null;
|
|
334
|
+
economyBan: string;
|
|
335
|
+
foilBadgeCost: number;
|
|
336
|
+
foilBadges: number;
|
|
337
|
+
friendPrivacy: string;
|
|
338
|
+
friends: number;
|
|
339
|
+
friendsUpdatedAt: string;
|
|
340
|
+
gameBans: number;
|
|
341
|
+
hidden: boolean;
|
|
342
|
+
images: Array<Image$Outbound> | null;
|
|
343
|
+
level: number;
|
|
344
|
+
limitedApps: number;
|
|
345
|
+
miniBackground: string;
|
|
346
|
+
name: string;
|
|
347
|
+
normalBadgeCost: number;
|
|
348
|
+
normalBadges: number;
|
|
349
|
+
playtime: number;
|
|
350
|
+
pointsGiven: number;
|
|
351
|
+
pointsReceived: number;
|
|
352
|
+
privacy: string;
|
|
353
|
+
region?: Location$Outbound | undefined;
|
|
354
|
+
roles: Array<Role$Outbound> | null;
|
|
355
|
+
state?: Location$Outbound | undefined;
|
|
356
|
+
steamId: string;
|
|
357
|
+
steamSetsScore: number;
|
|
358
|
+
steamSetsVanity: string;
|
|
359
|
+
steamVanity: string;
|
|
360
|
+
theme: string;
|
|
361
|
+
updatedAt: string;
|
|
362
|
+
vacBans: number;
|
|
363
|
+
xp: number;
|
|
364
|
+
};
|
|
365
|
+
/** @internal */
|
|
366
|
+
export declare const AccountInfoBody$outboundSchema: z.ZodType<AccountInfoBody$Outbound, z.ZodTypeDef, AccountInfoBody>;
|
|
367
|
+
/**
|
|
368
|
+
* @internal
|
|
369
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
370
|
+
*/
|
|
371
|
+
export declare namespace AccountInfoBody$ {
|
|
372
|
+
/** @deprecated use `AccountInfoBody$inboundSchema` instead. */
|
|
373
|
+
const inboundSchema: z.ZodType<AccountInfoBody, z.ZodTypeDef, unknown>;
|
|
374
|
+
/** @deprecated use `AccountInfoBody$outboundSchema` instead. */
|
|
375
|
+
const outboundSchema: z.ZodType<AccountInfoBody$Outbound, z.ZodTypeDef, AccountInfoBody>;
|
|
376
|
+
/** @deprecated use `AccountInfoBody$Outbound` instead. */
|
|
377
|
+
type Outbound = AccountInfoBody$Outbound;
|
|
378
|
+
}
|
|
379
|
+
//# sourceMappingURL=accountinfobody.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"accountinfobody.d.ts","sourceRoot":"","sources":["../../src/models/components/accountinfobody.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,254 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*
|
|
3
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.AccountInfoBody$ = exports.AccountInfoBody$outboundSchema = exports.AccountInfoBody$inboundSchema = exports.Privacy$ = exports.Privacy$outboundSchema = exports.Privacy$inboundSchema = exports.FriendPrivacy$ = exports.FriendPrivacy$outboundSchema = exports.FriendPrivacy$inboundSchema = exports.AppPrivacy$ = exports.AppPrivacy$outboundSchema = exports.AppPrivacy$inboundSchema = exports.Privacy = exports.FriendPrivacy = exports.AppPrivacy = void 0;
|
|
30
|
+
const primitives_js_1 = require("../../lib/primitives.js");
|
|
31
|
+
const bestleaderboardrank_js_1 = require("./bestleaderboardrank.js");
|
|
32
|
+
const connection_js_1 = require("./connection.js");
|
|
33
|
+
const image_js_1 = require("./image.js");
|
|
34
|
+
const location_js_1 = require("./location.js");
|
|
35
|
+
const role_js_1 = require("./role.js");
|
|
36
|
+
const z = __importStar(require("zod"));
|
|
37
|
+
/**
|
|
38
|
+
* The privacy of the account
|
|
39
|
+
*/
|
|
40
|
+
exports.AppPrivacy = {
|
|
41
|
+
Private: "private",
|
|
42
|
+
Public: "public",
|
|
43
|
+
FriendsOnly: "friends_only",
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* The privacy of the account
|
|
47
|
+
*/
|
|
48
|
+
exports.FriendPrivacy = {
|
|
49
|
+
Private: "private",
|
|
50
|
+
Public: "public",
|
|
51
|
+
FriendsOnly: "friends_only",
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* The privacy of the account
|
|
55
|
+
*/
|
|
56
|
+
exports.Privacy = {
|
|
57
|
+
Private: "private",
|
|
58
|
+
Public: "public",
|
|
59
|
+
FriendsOnly: "friends_only",
|
|
60
|
+
};
|
|
61
|
+
/** @internal */
|
|
62
|
+
exports.AppPrivacy$inboundSchema = z.nativeEnum(exports.AppPrivacy);
|
|
63
|
+
/** @internal */
|
|
64
|
+
exports.AppPrivacy$outboundSchema = exports.AppPrivacy$inboundSchema;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
68
|
+
*/
|
|
69
|
+
var AppPrivacy$;
|
|
70
|
+
(function (AppPrivacy$) {
|
|
71
|
+
/** @deprecated use `AppPrivacy$inboundSchema` instead. */
|
|
72
|
+
AppPrivacy$.inboundSchema = exports.AppPrivacy$inboundSchema;
|
|
73
|
+
/** @deprecated use `AppPrivacy$outboundSchema` instead. */
|
|
74
|
+
AppPrivacy$.outboundSchema = exports.AppPrivacy$outboundSchema;
|
|
75
|
+
})(AppPrivacy$ || (exports.AppPrivacy$ = AppPrivacy$ = {}));
|
|
76
|
+
/** @internal */
|
|
77
|
+
exports.FriendPrivacy$inboundSchema = z.nativeEnum(exports.FriendPrivacy);
|
|
78
|
+
/** @internal */
|
|
79
|
+
exports.FriendPrivacy$outboundSchema = exports.FriendPrivacy$inboundSchema;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
83
|
+
*/
|
|
84
|
+
var FriendPrivacy$;
|
|
85
|
+
(function (FriendPrivacy$) {
|
|
86
|
+
/** @deprecated use `FriendPrivacy$inboundSchema` instead. */
|
|
87
|
+
FriendPrivacy$.inboundSchema = exports.FriendPrivacy$inboundSchema;
|
|
88
|
+
/** @deprecated use `FriendPrivacy$outboundSchema` instead. */
|
|
89
|
+
FriendPrivacy$.outboundSchema = exports.FriendPrivacy$outboundSchema;
|
|
90
|
+
})(FriendPrivacy$ || (exports.FriendPrivacy$ = FriendPrivacy$ = {}));
|
|
91
|
+
/** @internal */
|
|
92
|
+
exports.Privacy$inboundSchema = z.nativeEnum(exports.Privacy);
|
|
93
|
+
/** @internal */
|
|
94
|
+
exports.Privacy$outboundSchema = exports.Privacy$inboundSchema;
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
98
|
+
*/
|
|
99
|
+
var Privacy$;
|
|
100
|
+
(function (Privacy$) {
|
|
101
|
+
/** @deprecated use `Privacy$inboundSchema` instead. */
|
|
102
|
+
Privacy$.inboundSchema = exports.Privacy$inboundSchema;
|
|
103
|
+
/** @deprecated use `Privacy$outboundSchema` instead. */
|
|
104
|
+
Privacy$.outboundSchema = exports.Privacy$outboundSchema;
|
|
105
|
+
})(Privacy$ || (exports.Privacy$ = Privacy$ = {}));
|
|
106
|
+
/** @internal */
|
|
107
|
+
exports.AccountInfoBody$inboundSchema = z
|
|
108
|
+
.object({
|
|
109
|
+
$schema: z.string().optional(),
|
|
110
|
+
accountId: z.number().int(),
|
|
111
|
+
animatedAvatar: z.string(),
|
|
112
|
+
appCost: z.number().int(),
|
|
113
|
+
appPrivacy: exports.AppPrivacy$inboundSchema,
|
|
114
|
+
apps: z.number().int(),
|
|
115
|
+
appsUpdatedAt: z
|
|
116
|
+
.string()
|
|
117
|
+
.datetime({ offset: true })
|
|
118
|
+
.transform((v) => new Date(v)),
|
|
119
|
+
avatar: z.string(),
|
|
120
|
+
avatarFrame: z.string(),
|
|
121
|
+
averagePlaytime: z.number().int(),
|
|
122
|
+
awardsGiven: z.number().int(),
|
|
123
|
+
awardsReceived: z.number().int(),
|
|
124
|
+
background: z.string(),
|
|
125
|
+
badges: z.number().int(),
|
|
126
|
+
badgesUpdatedAt: z
|
|
127
|
+
.string()
|
|
128
|
+
.datetime({ offset: true })
|
|
129
|
+
.transform((v) => new Date(v)),
|
|
130
|
+
bans: z.number().int(),
|
|
131
|
+
city: location_js_1.Location$inboundSchema.optional(),
|
|
132
|
+
connections: z.nullable(z.array(connection_js_1.Connection$inboundSchema)),
|
|
133
|
+
country: location_js_1.Location$inboundSchema.optional(),
|
|
134
|
+
createdAt: z
|
|
135
|
+
.string()
|
|
136
|
+
.datetime({ offset: true })
|
|
137
|
+
.transform((v) => new Date(v)),
|
|
138
|
+
currentBestRanks: z.nullable(z.array(bestleaderboardrank_js_1.BestLeaderboardRank$inboundSchema)),
|
|
139
|
+
currentRanks: z.nullable(z.array(bestleaderboardrank_js_1.BestLeaderboardRank$inboundSchema)),
|
|
140
|
+
economyBan: z.string(),
|
|
141
|
+
foilBadgeCost: z.number().int(),
|
|
142
|
+
foilBadges: z.number().int(),
|
|
143
|
+
friendPrivacy: exports.FriendPrivacy$inboundSchema,
|
|
144
|
+
friends: z.number().int(),
|
|
145
|
+
friendsUpdatedAt: z
|
|
146
|
+
.string()
|
|
147
|
+
.datetime({ offset: true })
|
|
148
|
+
.transform((v) => new Date(v)),
|
|
149
|
+
gameBans: z.number().int(),
|
|
150
|
+
hidden: z.boolean(),
|
|
151
|
+
images: z.nullable(z.array(image_js_1.Image$inboundSchema)),
|
|
152
|
+
level: z.number().int(),
|
|
153
|
+
limitedApps: z.number().int(),
|
|
154
|
+
miniBackground: z.string(),
|
|
155
|
+
name: z.string(),
|
|
156
|
+
normalBadgeCost: z.number().int(),
|
|
157
|
+
normalBadges: z.number().int(),
|
|
158
|
+
playtime: z.number().int(),
|
|
159
|
+
pointsGiven: z.number().int(),
|
|
160
|
+
pointsReceived: z.number().int(),
|
|
161
|
+
privacy: exports.Privacy$inboundSchema,
|
|
162
|
+
region: location_js_1.Location$inboundSchema.optional(),
|
|
163
|
+
roles: z.nullable(z.array(role_js_1.Role$inboundSchema)),
|
|
164
|
+
state: location_js_1.Location$inboundSchema.optional(),
|
|
165
|
+
steamId: z.string(),
|
|
166
|
+
steamSetsScore: z.number().int(),
|
|
167
|
+
steamSetsVanity: z.string(),
|
|
168
|
+
steamVanity: z.string(),
|
|
169
|
+
theme: z.string(),
|
|
170
|
+
updatedAt: z
|
|
171
|
+
.string()
|
|
172
|
+
.datetime({ offset: true })
|
|
173
|
+
.transform((v) => new Date(v)),
|
|
174
|
+
vacBans: z.number().int(),
|
|
175
|
+
xp: z.number().int(),
|
|
176
|
+
})
|
|
177
|
+
.transform((v) => {
|
|
178
|
+
return (0, primitives_js_1.remap)(v, {
|
|
179
|
+
$schema: "dollarSchema",
|
|
180
|
+
});
|
|
181
|
+
});
|
|
182
|
+
/** @internal */
|
|
183
|
+
exports.AccountInfoBody$outboundSchema = z
|
|
184
|
+
.object({
|
|
185
|
+
dollarSchema: z.string().optional(),
|
|
186
|
+
accountId: z.number().int(),
|
|
187
|
+
animatedAvatar: z.string(),
|
|
188
|
+
appCost: z.number().int(),
|
|
189
|
+
appPrivacy: exports.AppPrivacy$outboundSchema,
|
|
190
|
+
apps: z.number().int(),
|
|
191
|
+
appsUpdatedAt: z.date().transform((v) => v.toISOString()),
|
|
192
|
+
avatar: z.string(),
|
|
193
|
+
avatarFrame: z.string(),
|
|
194
|
+
averagePlaytime: z.number().int(),
|
|
195
|
+
awardsGiven: z.number().int(),
|
|
196
|
+
awardsReceived: z.number().int(),
|
|
197
|
+
background: z.string(),
|
|
198
|
+
badges: z.number().int(),
|
|
199
|
+
badgesUpdatedAt: z.date().transform((v) => v.toISOString()),
|
|
200
|
+
bans: z.number().int(),
|
|
201
|
+
city: location_js_1.Location$outboundSchema.optional(),
|
|
202
|
+
connections: z.nullable(z.array(connection_js_1.Connection$outboundSchema)),
|
|
203
|
+
country: location_js_1.Location$outboundSchema.optional(),
|
|
204
|
+
createdAt: z.date().transform((v) => v.toISOString()),
|
|
205
|
+
currentBestRanks: z.nullable(z.array(bestleaderboardrank_js_1.BestLeaderboardRank$outboundSchema)),
|
|
206
|
+
currentRanks: z.nullable(z.array(bestleaderboardrank_js_1.BestLeaderboardRank$outboundSchema)),
|
|
207
|
+
economyBan: z.string(),
|
|
208
|
+
foilBadgeCost: z.number().int(),
|
|
209
|
+
foilBadges: z.number().int(),
|
|
210
|
+
friendPrivacy: exports.FriendPrivacy$outboundSchema,
|
|
211
|
+
friends: z.number().int(),
|
|
212
|
+
friendsUpdatedAt: z.date().transform((v) => v.toISOString()),
|
|
213
|
+
gameBans: z.number().int(),
|
|
214
|
+
hidden: z.boolean(),
|
|
215
|
+
images: z.nullable(z.array(image_js_1.Image$outboundSchema)),
|
|
216
|
+
level: z.number().int(),
|
|
217
|
+
limitedApps: z.number().int(),
|
|
218
|
+
miniBackground: z.string(),
|
|
219
|
+
name: z.string(),
|
|
220
|
+
normalBadgeCost: z.number().int(),
|
|
221
|
+
normalBadges: z.number().int(),
|
|
222
|
+
playtime: z.number().int(),
|
|
223
|
+
pointsGiven: z.number().int(),
|
|
224
|
+
pointsReceived: z.number().int(),
|
|
225
|
+
privacy: exports.Privacy$outboundSchema,
|
|
226
|
+
region: location_js_1.Location$outboundSchema.optional(),
|
|
227
|
+
roles: z.nullable(z.array(role_js_1.Role$outboundSchema)),
|
|
228
|
+
state: location_js_1.Location$outboundSchema.optional(),
|
|
229
|
+
steamId: z.string(),
|
|
230
|
+
steamSetsScore: z.number().int(),
|
|
231
|
+
steamSetsVanity: z.string(),
|
|
232
|
+
steamVanity: z.string(),
|
|
233
|
+
theme: z.string(),
|
|
234
|
+
updatedAt: z.date().transform((v) => v.toISOString()),
|
|
235
|
+
vacBans: z.number().int(),
|
|
236
|
+
xp: z.number().int(),
|
|
237
|
+
})
|
|
238
|
+
.transform((v) => {
|
|
239
|
+
return (0, primitives_js_1.remap)(v, {
|
|
240
|
+
dollarSchema: "$schema",
|
|
241
|
+
});
|
|
242
|
+
});
|
|
243
|
+
/**
|
|
244
|
+
* @internal
|
|
245
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
246
|
+
*/
|
|
247
|
+
var AccountInfoBody$;
|
|
248
|
+
(function (AccountInfoBody$) {
|
|
249
|
+
/** @deprecated use `AccountInfoBody$inboundSchema` instead. */
|
|
250
|
+
AccountInfoBody$.inboundSchema = exports.AccountInfoBody$inboundSchema;
|
|
251
|
+
/** @deprecated use `AccountInfoBody$outboundSchema` instead. */
|
|
252
|
+
AccountInfoBody$.outboundSchema = exports.AccountInfoBody$outboundSchema;
|
|
253
|
+
})(AccountInfoBody$ || (exports.AccountInfoBody$ = AccountInfoBody$ = {}));
|
|
254
|
+
//# sourceMappingURL=accountinfobody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"accountinfobody.js","sourceRoot":"","sources":["../../src/models/components/accountinfobody.ts"],"names":[],"mappings":"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"}
|