@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,196 @@
|
|
|
1
|
+
import { LeaderboardBadgeInfo, LeaderboardBadgeInfo$Outbound } from "./leaderboardbadgeinfo.js";
|
|
2
|
+
import { Location, Location$Outbound } from "./location.js";
|
|
3
|
+
import { Role, Role$Outbound } from "./role.js";
|
|
4
|
+
import * as z from "zod";
|
|
5
|
+
export type LeaderboardAccount = {
|
|
6
|
+
/**
|
|
7
|
+
* The cost of an app
|
|
8
|
+
*/
|
|
9
|
+
appCost: number;
|
|
10
|
+
/**
|
|
11
|
+
* The playtime of the account, incase of an app leaderboard
|
|
12
|
+
*/
|
|
13
|
+
appPlaytime?: number | null | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* The number of apps the account has
|
|
16
|
+
*/
|
|
17
|
+
apps: number;
|
|
18
|
+
/**
|
|
19
|
+
* The avatar hash of the account
|
|
20
|
+
*/
|
|
21
|
+
avatar: string;
|
|
22
|
+
/**
|
|
23
|
+
* The average playtime of the account
|
|
24
|
+
*/
|
|
25
|
+
averagePlaytime: number;
|
|
26
|
+
/**
|
|
27
|
+
* The number of awards the account has
|
|
28
|
+
*/
|
|
29
|
+
awardsGiven: number;
|
|
30
|
+
/**
|
|
31
|
+
* The number of awards the account has
|
|
32
|
+
*/
|
|
33
|
+
awardsReceived: number;
|
|
34
|
+
badgeInfo?: LeaderboardBadgeInfo | undefined;
|
|
35
|
+
/**
|
|
36
|
+
* The number of badges the account has
|
|
37
|
+
*/
|
|
38
|
+
badges: number;
|
|
39
|
+
/**
|
|
40
|
+
* The number of bans
|
|
41
|
+
*/
|
|
42
|
+
bans: number;
|
|
43
|
+
city?: Location | undefined;
|
|
44
|
+
country?: Location | undefined;
|
|
45
|
+
/**
|
|
46
|
+
* The time the account was created
|
|
47
|
+
*/
|
|
48
|
+
createdAt: Date;
|
|
49
|
+
/**
|
|
50
|
+
* The economy ban of the account
|
|
51
|
+
*/
|
|
52
|
+
economyBan: string;
|
|
53
|
+
/**
|
|
54
|
+
* The cost of a foil badge
|
|
55
|
+
*/
|
|
56
|
+
foilBadgeCost: number;
|
|
57
|
+
/**
|
|
58
|
+
* The number of foil badges the account has
|
|
59
|
+
*/
|
|
60
|
+
foilBadges: number;
|
|
61
|
+
/**
|
|
62
|
+
* The number of friends the account has
|
|
63
|
+
*/
|
|
64
|
+
friends: number;
|
|
65
|
+
/**
|
|
66
|
+
* The number of game bans
|
|
67
|
+
*/
|
|
68
|
+
gameBans: number;
|
|
69
|
+
/**
|
|
70
|
+
* Whether the account is hidden in the leaderboards
|
|
71
|
+
*/
|
|
72
|
+
hidden: boolean;
|
|
73
|
+
/**
|
|
74
|
+
* The level of the account
|
|
75
|
+
*/
|
|
76
|
+
level: number;
|
|
77
|
+
/**
|
|
78
|
+
* The number of limited apps the account has
|
|
79
|
+
*/
|
|
80
|
+
limitedApps: number;
|
|
81
|
+
/**
|
|
82
|
+
* The name of the account
|
|
83
|
+
*/
|
|
84
|
+
name: string;
|
|
85
|
+
/**
|
|
86
|
+
* The cost of a normal badge
|
|
87
|
+
*/
|
|
88
|
+
normalBadgeCost: number;
|
|
89
|
+
/**
|
|
90
|
+
* The number of normal badges the account has
|
|
91
|
+
*/
|
|
92
|
+
normalBadges: number;
|
|
93
|
+
/**
|
|
94
|
+
* The playtime of the account
|
|
95
|
+
*/
|
|
96
|
+
playtime: number;
|
|
97
|
+
/**
|
|
98
|
+
* The number of points the account has
|
|
99
|
+
*/
|
|
100
|
+
pointsGiven: number;
|
|
101
|
+
/**
|
|
102
|
+
* The number of points the account has
|
|
103
|
+
*/
|
|
104
|
+
pointsReceived: number;
|
|
105
|
+
/**
|
|
106
|
+
* The privacy of the account
|
|
107
|
+
*/
|
|
108
|
+
privacy: string;
|
|
109
|
+
region?: Location | undefined;
|
|
110
|
+
/**
|
|
111
|
+
* The roles of the account
|
|
112
|
+
*/
|
|
113
|
+
roles: Array<Role> | null;
|
|
114
|
+
state?: Location | undefined;
|
|
115
|
+
/**
|
|
116
|
+
* The steam id
|
|
117
|
+
*/
|
|
118
|
+
steamId: string;
|
|
119
|
+
/**
|
|
120
|
+
* The steam sets score
|
|
121
|
+
*/
|
|
122
|
+
steamSetsScore: number;
|
|
123
|
+
/**
|
|
124
|
+
* The vanity of the account
|
|
125
|
+
*/
|
|
126
|
+
steamSetsVanity: string;
|
|
127
|
+
/**
|
|
128
|
+
* The vanity of the account
|
|
129
|
+
*/
|
|
130
|
+
steamVanity: string;
|
|
131
|
+
/**
|
|
132
|
+
* The number of vac bans
|
|
133
|
+
*/
|
|
134
|
+
vacBans: number;
|
|
135
|
+
/**
|
|
136
|
+
* The number of xp the account has
|
|
137
|
+
*/
|
|
138
|
+
xp: number;
|
|
139
|
+
};
|
|
140
|
+
/** @internal */
|
|
141
|
+
export declare const LeaderboardAccount$inboundSchema: z.ZodType<LeaderboardAccount, z.ZodTypeDef, unknown>;
|
|
142
|
+
/** @internal */
|
|
143
|
+
export type LeaderboardAccount$Outbound = {
|
|
144
|
+
appCost: number;
|
|
145
|
+
appPlaytime?: number | null | undefined;
|
|
146
|
+
apps: number;
|
|
147
|
+
avatar: string;
|
|
148
|
+
averagePlaytime: number;
|
|
149
|
+
awardsGiven: number;
|
|
150
|
+
awardsReceived: number;
|
|
151
|
+
badgeInfo?: LeaderboardBadgeInfo$Outbound | undefined;
|
|
152
|
+
badges: number;
|
|
153
|
+
bans: number;
|
|
154
|
+
city?: Location$Outbound | undefined;
|
|
155
|
+
country?: Location$Outbound | undefined;
|
|
156
|
+
createdAt: string;
|
|
157
|
+
economyBan: string;
|
|
158
|
+
foilBadgeCost: number;
|
|
159
|
+
foilBadges: number;
|
|
160
|
+
friends: number;
|
|
161
|
+
gameBans: number;
|
|
162
|
+
hidden: boolean;
|
|
163
|
+
level: number;
|
|
164
|
+
limitedApps: number;
|
|
165
|
+
name: string;
|
|
166
|
+
normalBadgeCost: number;
|
|
167
|
+
normalBadges: number;
|
|
168
|
+
playtime: number;
|
|
169
|
+
pointsGiven: number;
|
|
170
|
+
pointsReceived: number;
|
|
171
|
+
privacy: string;
|
|
172
|
+
region?: Location$Outbound | undefined;
|
|
173
|
+
roles: Array<Role$Outbound> | null;
|
|
174
|
+
state?: Location$Outbound | undefined;
|
|
175
|
+
steamId: string;
|
|
176
|
+
steamSetsScore: number;
|
|
177
|
+
steamSetsVanity: string;
|
|
178
|
+
steamVanity: string;
|
|
179
|
+
vacBans: number;
|
|
180
|
+
xp: number;
|
|
181
|
+
};
|
|
182
|
+
/** @internal */
|
|
183
|
+
export declare const LeaderboardAccount$outboundSchema: z.ZodType<LeaderboardAccount$Outbound, z.ZodTypeDef, LeaderboardAccount>;
|
|
184
|
+
/**
|
|
185
|
+
* @internal
|
|
186
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
187
|
+
*/
|
|
188
|
+
export declare namespace LeaderboardAccount$ {
|
|
189
|
+
/** @deprecated use `LeaderboardAccount$inboundSchema` instead. */
|
|
190
|
+
const inboundSchema: z.ZodType<LeaderboardAccount, z.ZodTypeDef, unknown>;
|
|
191
|
+
/** @deprecated use `LeaderboardAccount$outboundSchema` instead. */
|
|
192
|
+
const outboundSchema: z.ZodType<LeaderboardAccount$Outbound, z.ZodTypeDef, LeaderboardAccount>;
|
|
193
|
+
/** @deprecated use `LeaderboardAccount$Outbound` instead. */
|
|
194
|
+
type Outbound = LeaderboardAccount$Outbound;
|
|
195
|
+
}
|
|
196
|
+
//# sourceMappingURL=leaderboardaccount.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"leaderboardaccount.d.ts","sourceRoot":"","sources":["../../src/models/components/leaderboardaccount.ts"],"names":[],"mappings":"AAIA,OAAO,EACH,oBAAoB,EAEpB,6BAA6B,EAEhC,MAAM,2BAA2B,CAAC;AACnC,OAAO,EACH,QAAQ,EAER,iBAAiB,EAEpB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,IAAI,EAAsB,aAAa,EAAuB,MAAM,WAAW,CAAC;AACzF,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,MAAM,MAAM,kBAAkB,GAAG;IAC7B;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACxC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,CAAC,EAAE,oBAAoB,GAAG,SAAS,CAAC;IAC7C;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IAC5B,OAAO,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IAC/B;;OAEG;IACH,SAAS,EAAE,IAAI,CAAC;IAChB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,MAAM,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IAC9B;;OAEG;IACH,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IAC1B,KAAK,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IAC7B;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,OAAO,CACpD,kBAAkB,EAClB,CAAC,CAAC,UAAU,EACZ,OAAO,CA0CT,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,2BAA2B,GAAG;IACtC,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACxC,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,eAAe,EAAE,MAAM,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,CAAC,EAAE,6BAA6B,GAAG,SAAS,CAAC;IACtD,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,iBAAiB,GAAG,SAAS,CAAC;IACrC,OAAO,CAAC,EAAE,iBAAiB,GAAG,SAAS,CAAC;IACxC,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,OAAO,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,eAAe,EAAE,MAAM,CAAC;IACxB,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;IACvB,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,iBAAiB,GAAG,SAAS,CAAC;IACvC,KAAK,EAAE,KAAK,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC;IACnC,KAAK,CAAC,EAAE,iBAAiB,GAAG,SAAS,CAAC;IACtC,OAAO,EAAE,MAAM,CAAC;IAChB,cAAc,EAAE,MAAM,CAAC;IACvB,eAAe,EAAE,MAAM,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,EAAE,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,OAAO,CACrD,2BAA2B,EAC3B,CAAC,CAAC,UAAU,EACZ,kBAAkB,CAuCpB,CAAC;AAEH;;;GAGG;AACH,yBAAiB,mBAAmB,CAAC;IACjC,kEAAkE;IAC3D,MAAM,aAAa,sDAAmC,CAAC;IAC9D,mEAAmE;IAC5D,MAAM,cAAc,0EAAoC,CAAC;IAChE,6DAA6D;IAC7D,KAAY,QAAQ,GAAG,2BAA2B,CAAC;CACtD"}
|
|
@@ -0,0 +1,128 @@
|
|
|
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.LeaderboardAccount$ = exports.LeaderboardAccount$outboundSchema = exports.LeaderboardAccount$inboundSchema = void 0;
|
|
30
|
+
const leaderboardbadgeinfo_js_1 = require("./leaderboardbadgeinfo.js");
|
|
31
|
+
const location_js_1 = require("./location.js");
|
|
32
|
+
const role_js_1 = require("./role.js");
|
|
33
|
+
const z = __importStar(require("zod"));
|
|
34
|
+
/** @internal */
|
|
35
|
+
exports.LeaderboardAccount$inboundSchema = z.object({
|
|
36
|
+
appCost: z.number().int(),
|
|
37
|
+
appPlaytime: z.nullable(z.number().int()).optional(),
|
|
38
|
+
apps: z.number().int(),
|
|
39
|
+
avatar: z.string(),
|
|
40
|
+
averagePlaytime: z.number().int(),
|
|
41
|
+
awardsGiven: z.number().int(),
|
|
42
|
+
awardsReceived: z.number().int(),
|
|
43
|
+
badgeInfo: leaderboardbadgeinfo_js_1.LeaderboardBadgeInfo$inboundSchema.optional(),
|
|
44
|
+
badges: z.number().int(),
|
|
45
|
+
bans: z.number().int(),
|
|
46
|
+
city: location_js_1.Location$inboundSchema.optional(),
|
|
47
|
+
country: location_js_1.Location$inboundSchema.optional(),
|
|
48
|
+
createdAt: z
|
|
49
|
+
.string()
|
|
50
|
+
.datetime({ offset: true })
|
|
51
|
+
.transform((v) => new Date(v)),
|
|
52
|
+
economyBan: z.string(),
|
|
53
|
+
foilBadgeCost: z.number().int(),
|
|
54
|
+
foilBadges: z.number().int(),
|
|
55
|
+
friends: z.number().int(),
|
|
56
|
+
gameBans: z.number().int(),
|
|
57
|
+
hidden: z.boolean(),
|
|
58
|
+
level: z.number().int(),
|
|
59
|
+
limitedApps: z.number().int(),
|
|
60
|
+
name: z.string(),
|
|
61
|
+
normalBadgeCost: z.number().int(),
|
|
62
|
+
normalBadges: z.number().int(),
|
|
63
|
+
playtime: z.number().int(),
|
|
64
|
+
pointsGiven: z.number().int(),
|
|
65
|
+
pointsReceived: z.number().int(),
|
|
66
|
+
privacy: z.string(),
|
|
67
|
+
region: location_js_1.Location$inboundSchema.optional(),
|
|
68
|
+
roles: z.nullable(z.array(role_js_1.Role$inboundSchema)),
|
|
69
|
+
state: location_js_1.Location$inboundSchema.optional(),
|
|
70
|
+
steamId: z.string(),
|
|
71
|
+
steamSetsScore: z.number().int(),
|
|
72
|
+
steamSetsVanity: z.string(),
|
|
73
|
+
steamVanity: z.string(),
|
|
74
|
+
vacBans: z.number().int(),
|
|
75
|
+
xp: z.number().int(),
|
|
76
|
+
});
|
|
77
|
+
/** @internal */
|
|
78
|
+
exports.LeaderboardAccount$outboundSchema = z.object({
|
|
79
|
+
appCost: z.number().int(),
|
|
80
|
+
appPlaytime: z.nullable(z.number().int()).optional(),
|
|
81
|
+
apps: z.number().int(),
|
|
82
|
+
avatar: z.string(),
|
|
83
|
+
averagePlaytime: z.number().int(),
|
|
84
|
+
awardsGiven: z.number().int(),
|
|
85
|
+
awardsReceived: z.number().int(),
|
|
86
|
+
badgeInfo: leaderboardbadgeinfo_js_1.LeaderboardBadgeInfo$outboundSchema.optional(),
|
|
87
|
+
badges: z.number().int(),
|
|
88
|
+
bans: z.number().int(),
|
|
89
|
+
city: location_js_1.Location$outboundSchema.optional(),
|
|
90
|
+
country: location_js_1.Location$outboundSchema.optional(),
|
|
91
|
+
createdAt: z.date().transform((v) => v.toISOString()),
|
|
92
|
+
economyBan: z.string(),
|
|
93
|
+
foilBadgeCost: z.number().int(),
|
|
94
|
+
foilBadges: z.number().int(),
|
|
95
|
+
friends: z.number().int(),
|
|
96
|
+
gameBans: z.number().int(),
|
|
97
|
+
hidden: z.boolean(),
|
|
98
|
+
level: z.number().int(),
|
|
99
|
+
limitedApps: z.number().int(),
|
|
100
|
+
name: z.string(),
|
|
101
|
+
normalBadgeCost: z.number().int(),
|
|
102
|
+
normalBadges: z.number().int(),
|
|
103
|
+
playtime: z.number().int(),
|
|
104
|
+
pointsGiven: z.number().int(),
|
|
105
|
+
pointsReceived: z.number().int(),
|
|
106
|
+
privacy: z.string(),
|
|
107
|
+
region: location_js_1.Location$outboundSchema.optional(),
|
|
108
|
+
roles: z.nullable(z.array(role_js_1.Role$outboundSchema)),
|
|
109
|
+
state: location_js_1.Location$outboundSchema.optional(),
|
|
110
|
+
steamId: z.string(),
|
|
111
|
+
steamSetsScore: z.number().int(),
|
|
112
|
+
steamSetsVanity: z.string(),
|
|
113
|
+
steamVanity: z.string(),
|
|
114
|
+
vacBans: z.number().int(),
|
|
115
|
+
xp: z.number().int(),
|
|
116
|
+
});
|
|
117
|
+
/**
|
|
118
|
+
* @internal
|
|
119
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
120
|
+
*/
|
|
121
|
+
var LeaderboardAccount$;
|
|
122
|
+
(function (LeaderboardAccount$) {
|
|
123
|
+
/** @deprecated use `LeaderboardAccount$inboundSchema` instead. */
|
|
124
|
+
LeaderboardAccount$.inboundSchema = exports.LeaderboardAccount$inboundSchema;
|
|
125
|
+
/** @deprecated use `LeaderboardAccount$outboundSchema` instead. */
|
|
126
|
+
LeaderboardAccount$.outboundSchema = exports.LeaderboardAccount$outboundSchema;
|
|
127
|
+
})(LeaderboardAccount$ || (exports.LeaderboardAccount$ = LeaderboardAccount$ = {}));
|
|
128
|
+
//# sourceMappingURL=leaderboardaccount.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"leaderboardaccount.js","sourceRoot":"","sources":["../../src/models/components/leaderboardaccount.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as z from "zod";
|
|
2
|
+
export type LeaderboardBadgeInfo = {
|
|
3
|
+
/**
|
|
4
|
+
* The time the badge was completed
|
|
5
|
+
*/
|
|
6
|
+
completionTime: Date;
|
|
7
|
+
/**
|
|
8
|
+
* The level of the badge
|
|
9
|
+
*/
|
|
10
|
+
level: number;
|
|
11
|
+
};
|
|
12
|
+
/** @internal */
|
|
13
|
+
export declare const LeaderboardBadgeInfo$inboundSchema: z.ZodType<LeaderboardBadgeInfo, z.ZodTypeDef, unknown>;
|
|
14
|
+
/** @internal */
|
|
15
|
+
export type LeaderboardBadgeInfo$Outbound = {
|
|
16
|
+
completionTime: string;
|
|
17
|
+
level: number;
|
|
18
|
+
};
|
|
19
|
+
/** @internal */
|
|
20
|
+
export declare const LeaderboardBadgeInfo$outboundSchema: z.ZodType<LeaderboardBadgeInfo$Outbound, z.ZodTypeDef, LeaderboardBadgeInfo>;
|
|
21
|
+
/**
|
|
22
|
+
* @internal
|
|
23
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
24
|
+
*/
|
|
25
|
+
export declare namespace LeaderboardBadgeInfo$ {
|
|
26
|
+
/** @deprecated use `LeaderboardBadgeInfo$inboundSchema` instead. */
|
|
27
|
+
const inboundSchema: z.ZodType<LeaderboardBadgeInfo, z.ZodTypeDef, unknown>;
|
|
28
|
+
/** @deprecated use `LeaderboardBadgeInfo$outboundSchema` instead. */
|
|
29
|
+
const outboundSchema: z.ZodType<LeaderboardBadgeInfo$Outbound, z.ZodTypeDef, LeaderboardBadgeInfo>;
|
|
30
|
+
/** @deprecated use `LeaderboardBadgeInfo$Outbound` instead. */
|
|
31
|
+
type Outbound = LeaderboardBadgeInfo$Outbound;
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=leaderboardbadgeinfo.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"leaderboardbadgeinfo.d.ts","sourceRoot":"","sources":["../../src/models/components/leaderboardbadgeinfo.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,MAAM,MAAM,oBAAoB,GAAG;IAC/B;;OAEG;IACH,cAAc,EAAE,IAAI,CAAC;IACrB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,kCAAkC,EAAE,CAAC,CAAC,OAAO,CACtD,oBAAoB,EACpB,CAAC,CAAC,UAAU,EACZ,OAAO,CAOT,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,6BAA6B,GAAG;IACxC,cAAc,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,OAAO,CACvD,6BAA6B,EAC7B,CAAC,CAAC,UAAU,EACZ,oBAAoB,CAItB,CAAC;AAEH;;;GAGG;AACH,yBAAiB,qBAAqB,CAAC;IACnC,oEAAoE;IAC7D,MAAM,aAAa,wDAAqC,CAAC;IAChE,qEAAqE;IAC9D,MAAM,cAAc,8EAAsC,CAAC;IAClE,+DAA+D;IAC/D,KAAY,QAAQ,GAAG,6BAA6B,CAAC;CACxD"}
|
|
@@ -0,0 +1,55 @@
|
|
|
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.LeaderboardBadgeInfo$ = exports.LeaderboardBadgeInfo$outboundSchema = exports.LeaderboardBadgeInfo$inboundSchema = void 0;
|
|
30
|
+
const z = __importStar(require("zod"));
|
|
31
|
+
/** @internal */
|
|
32
|
+
exports.LeaderboardBadgeInfo$inboundSchema = z.object({
|
|
33
|
+
completionTime: z
|
|
34
|
+
.string()
|
|
35
|
+
.datetime({ offset: true })
|
|
36
|
+
.transform((v) => new Date(v)),
|
|
37
|
+
level: z.number().int(),
|
|
38
|
+
});
|
|
39
|
+
/** @internal */
|
|
40
|
+
exports.LeaderboardBadgeInfo$outboundSchema = z.object({
|
|
41
|
+
completionTime: z.date().transform((v) => v.toISOString()),
|
|
42
|
+
level: z.number().int(),
|
|
43
|
+
});
|
|
44
|
+
/**
|
|
45
|
+
* @internal
|
|
46
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
47
|
+
*/
|
|
48
|
+
var LeaderboardBadgeInfo$;
|
|
49
|
+
(function (LeaderboardBadgeInfo$) {
|
|
50
|
+
/** @deprecated use `LeaderboardBadgeInfo$inboundSchema` instead. */
|
|
51
|
+
LeaderboardBadgeInfo$.inboundSchema = exports.LeaderboardBadgeInfo$inboundSchema;
|
|
52
|
+
/** @deprecated use `LeaderboardBadgeInfo$outboundSchema` instead. */
|
|
53
|
+
LeaderboardBadgeInfo$.outboundSchema = exports.LeaderboardBadgeInfo$outboundSchema;
|
|
54
|
+
})(LeaderboardBadgeInfo$ || (exports.LeaderboardBadgeInfo$ = LeaderboardBadgeInfo$ = {}));
|
|
55
|
+
//# sourceMappingURL=leaderboardbadgeinfo.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"leaderboardbadgeinfo.js","sourceRoot":"","sources":["../../src/models/components/leaderboardbadgeinfo.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAazB,gBAAgB;AACH,QAAA,kCAAkC,GAI3C,CAAC,CAAC,MAAM,CAAC;IACT,cAAc,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;SAC1B,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC;IAClC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;CAC1B,CAAC,CAAC;AAQH,gBAAgB;AACH,QAAA,mCAAmC,GAI5C,CAAC,CAAC,MAAM,CAAC;IACT,cAAc,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;IAC1D,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;CAC1B,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,qBAAqB,CAOrC;AAPD,WAAiB,qBAAqB;IAClC,oEAAoE;IACvD,mCAAa,GAAG,0CAAkC,CAAC;IAChE,qEAAqE;IACxD,oCAAc,GAAG,2CAAmC,CAAC;AAGtE,CAAC,EAPgB,qBAAqB,qCAArB,qBAAqB,QAOrC"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import * as z from "zod";
|
|
2
|
+
export type Location = {
|
|
3
|
+
/**
|
|
4
|
+
* The code of the location
|
|
5
|
+
*/
|
|
6
|
+
code?: string | null | undefined;
|
|
7
|
+
/**
|
|
8
|
+
* The id of the location
|
|
9
|
+
*/
|
|
10
|
+
id: number;
|
|
11
|
+
/**
|
|
12
|
+
* The name of the location
|
|
13
|
+
*/
|
|
14
|
+
name: string;
|
|
15
|
+
};
|
|
16
|
+
/** @internal */
|
|
17
|
+
export declare const Location$inboundSchema: z.ZodType<Location, z.ZodTypeDef, unknown>;
|
|
18
|
+
/** @internal */
|
|
19
|
+
export type Location$Outbound = {
|
|
20
|
+
code?: string | null | undefined;
|
|
21
|
+
id: number;
|
|
22
|
+
name: string;
|
|
23
|
+
};
|
|
24
|
+
/** @internal */
|
|
25
|
+
export declare const Location$outboundSchema: z.ZodType<Location$Outbound, z.ZodTypeDef, Location>;
|
|
26
|
+
/**
|
|
27
|
+
* @internal
|
|
28
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
29
|
+
*/
|
|
30
|
+
export declare namespace Location$ {
|
|
31
|
+
/** @deprecated use `Location$inboundSchema` instead. */
|
|
32
|
+
const inboundSchema: z.ZodType<Location, z.ZodTypeDef, unknown>;
|
|
33
|
+
/** @deprecated use `Location$outboundSchema` instead. */
|
|
34
|
+
const outboundSchema: z.ZodType<Location$Outbound, z.ZodTypeDef, Location>;
|
|
35
|
+
/** @deprecated use `Location$Outbound` instead. */
|
|
36
|
+
type Outbound = Location$Outbound;
|
|
37
|
+
}
|
|
38
|
+
//# sourceMappingURL=location.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"location.d.ts","sourceRoot":"","sources":["../../src/models/components/location.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,MAAM,MAAM,QAAQ,GAAG;IACnB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACjC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,sBAAsB,EAAE,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC,UAAU,EAAE,OAAO,CAI5E,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,iBAAiB,GAAG;IAC5B,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,uBAAuB,EAAE,CAAC,CAAC,OAAO,CAAC,iBAAiB,EAAE,CAAC,CAAC,UAAU,EAAE,QAAQ,CAKnF,CAAC;AAEP;;;GAGG;AACH,yBAAiB,SAAS,CAAC;IACvB,wDAAwD;IACjD,MAAM,aAAa,4CAAyB,CAAC;IACpD,yDAAyD;IAClD,MAAM,cAAc,sDAA0B,CAAC;IACtD,mDAAmD;IACnD,KAAY,QAAQ,GAAG,iBAAiB,CAAC;CAC5C"}
|
|
@@ -0,0 +1,54 @@
|
|
|
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.Location$ = exports.Location$outboundSchema = exports.Location$inboundSchema = void 0;
|
|
30
|
+
const z = __importStar(require("zod"));
|
|
31
|
+
/** @internal */
|
|
32
|
+
exports.Location$inboundSchema = z.object({
|
|
33
|
+
code: z.nullable(z.string()).optional(),
|
|
34
|
+
id: z.number().int(),
|
|
35
|
+
name: z.string(),
|
|
36
|
+
});
|
|
37
|
+
/** @internal */
|
|
38
|
+
exports.Location$outboundSchema = z.object({
|
|
39
|
+
code: z.nullable(z.string()).optional(),
|
|
40
|
+
id: z.number().int(),
|
|
41
|
+
name: z.string(),
|
|
42
|
+
});
|
|
43
|
+
/**
|
|
44
|
+
* @internal
|
|
45
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
46
|
+
*/
|
|
47
|
+
var Location$;
|
|
48
|
+
(function (Location$) {
|
|
49
|
+
/** @deprecated use `Location$inboundSchema` instead. */
|
|
50
|
+
Location$.inboundSchema = exports.Location$inboundSchema;
|
|
51
|
+
/** @deprecated use `Location$outboundSchema` instead. */
|
|
52
|
+
Location$.outboundSchema = exports.Location$outboundSchema;
|
|
53
|
+
})(Location$ || (exports.Location$ = Location$ = {}));
|
|
54
|
+
//# sourceMappingURL=location.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"location.js","sourceRoot":"","sources":["../../src/models/components/location.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAiBzB,gBAAgB;AACH,QAAA,sBAAsB,GAA+C,CAAC,CAAC,MAAM,CAAC;IACvF,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IACvC,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACpB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;CACnB,CAAC,CAAC;AASH,gBAAgB;AACH,QAAA,uBAAuB,GAChC,CAAC,CAAC,MAAM,CAAC;IACL,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IACvC,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACpB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;CACnB,CAAC,CAAC;AAEP;;;GAGG;AACH,IAAiB,SAAS,CAOzB;AAPD,WAAiB,SAAS;IACtB,wDAAwD;IAC3C,uBAAa,GAAG,8BAAsB,CAAC;IACpD,yDAAyD;IAC5C,wBAAc,GAAG,+BAAuB,CAAC;AAG1D,CAAC,EAPgB,SAAS,yBAAT,SAAS,QAOzB"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Country, Country$Outbound } from "./country.js";
|
|
2
|
+
import * as z from "zod";
|
|
3
|
+
export type Region = {
|
|
4
|
+
/**
|
|
5
|
+
* The countries of the region
|
|
6
|
+
*/
|
|
7
|
+
countries: {
|
|
8
|
+
[k: string]: Country;
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* The name of the region
|
|
12
|
+
*/
|
|
13
|
+
name: string;
|
|
14
|
+
};
|
|
15
|
+
/** @internal */
|
|
16
|
+
export declare const Region$inboundSchema: z.ZodType<Region, z.ZodTypeDef, unknown>;
|
|
17
|
+
/** @internal */
|
|
18
|
+
export type Region$Outbound = {
|
|
19
|
+
countries: {
|
|
20
|
+
[k: string]: Country$Outbound;
|
|
21
|
+
};
|
|
22
|
+
name: string;
|
|
23
|
+
};
|
|
24
|
+
/** @internal */
|
|
25
|
+
export declare const Region$outboundSchema: z.ZodType<Region$Outbound, z.ZodTypeDef, Region>;
|
|
26
|
+
/**
|
|
27
|
+
* @internal
|
|
28
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
29
|
+
*/
|
|
30
|
+
export declare namespace Region$ {
|
|
31
|
+
/** @deprecated use `Region$inboundSchema` instead. */
|
|
32
|
+
const inboundSchema: z.ZodType<Region, z.ZodTypeDef, unknown>;
|
|
33
|
+
/** @deprecated use `Region$outboundSchema` instead. */
|
|
34
|
+
const outboundSchema: z.ZodType<Region$Outbound, z.ZodTypeDef, Region>;
|
|
35
|
+
/** @deprecated use `Region$Outbound` instead. */
|
|
36
|
+
type Outbound = Region$Outbound;
|
|
37
|
+
}
|
|
38
|
+
//# sourceMappingURL=region.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"region.d.ts","sourceRoot":"","sources":["../../src/models/components/region.ts"],"names":[],"mappings":"AAIA,OAAO,EACH,OAAO,EAEP,gBAAgB,EAEnB,MAAM,cAAc,CAAC;AACtB,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,MAAM,MAAM,MAAM,GAAG;IACjB;;OAEG;IACH,SAAS,EAAE;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;IACpC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,oBAAoB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC,UAAU,EAAE,OAAO,CAGxE,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,eAAe,GAAG;IAC1B,SAAS,EAAE;QAAE,CAAC,CAAC,EAAE,MAAM,GAAG,gBAAgB,CAAA;KAAE,CAAC;IAC7C,IAAI,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,qBAAqB,EAAE,CAAC,CAAC,OAAO,CAAC,eAAe,EAAE,CAAC,CAAC,UAAU,EAAE,MAAM,CAGjF,CAAC;AAEH;;;GAGG;AACH,yBAAiB,OAAO,CAAC;IACrB,sDAAsD;IAC/C,MAAM,aAAa,0CAAuB,CAAC;IAClD,uDAAuD;IAChD,MAAM,cAAc,kDAAwB,CAAC;IACpD,iDAAiD;IACjD,KAAY,QAAQ,GAAG,eAAe,CAAC;CAC1C"}
|
|
@@ -0,0 +1,53 @@
|
|
|
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.Region$ = exports.Region$outboundSchema = exports.Region$inboundSchema = void 0;
|
|
30
|
+
const country_js_1 = require("./country.js");
|
|
31
|
+
const z = __importStar(require("zod"));
|
|
32
|
+
/** @internal */
|
|
33
|
+
exports.Region$inboundSchema = z.object({
|
|
34
|
+
countries: z.record(country_js_1.Country$inboundSchema),
|
|
35
|
+
name: z.string(),
|
|
36
|
+
});
|
|
37
|
+
/** @internal */
|
|
38
|
+
exports.Region$outboundSchema = z.object({
|
|
39
|
+
countries: z.record(country_js_1.Country$outboundSchema),
|
|
40
|
+
name: z.string(),
|
|
41
|
+
});
|
|
42
|
+
/**
|
|
43
|
+
* @internal
|
|
44
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
45
|
+
*/
|
|
46
|
+
var Region$;
|
|
47
|
+
(function (Region$) {
|
|
48
|
+
/** @deprecated use `Region$inboundSchema` instead. */
|
|
49
|
+
Region$.inboundSchema = exports.Region$inboundSchema;
|
|
50
|
+
/** @deprecated use `Region$outboundSchema` instead. */
|
|
51
|
+
Region$.outboundSchema = exports.Region$outboundSchema;
|
|
52
|
+
})(Region$ || (exports.Region$ = Region$ = {}));
|
|
53
|
+
//# sourceMappingURL=region.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"region.js","sourceRoot":"","sources":["../../src/models/components/region.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,6CAKsB;AACtB,uCAAyB;AAazB,gBAAgB;AACH,QAAA,oBAAoB,GAA6C,CAAC,CAAC,MAAM,CAAC;IACnF,SAAS,EAAE,CAAC,CAAC,MAAM,CAAC,kCAAqB,CAAC;IAC1C,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;CACnB,CAAC,CAAC;AAQH,gBAAgB;AACH,QAAA,qBAAqB,GAAqD,CAAC,CAAC,MAAM,CAAC;IAC5F,SAAS,EAAE,CAAC,CAAC,MAAM,CAAC,mCAAsB,CAAC;IAC3C,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;CACnB,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,OAAO,CAOvB;AAPD,WAAiB,OAAO;IACpB,sDAAsD;IACzC,qBAAa,GAAG,4BAAoB,CAAC;IAClD,uDAAuD;IAC1C,sBAAc,GAAG,6BAAqB,CAAC;AAGxD,CAAC,EAPgB,OAAO,uBAAP,OAAO,QAOvB"}
|
|
@@ -3,7 +3,7 @@ export type Role = {
|
|
|
3
3
|
/**
|
|
4
4
|
* The role color
|
|
5
5
|
*/
|
|
6
|
-
|
|
6
|
+
colorr: string;
|
|
7
7
|
/**
|
|
8
8
|
* The role icon
|
|
9
9
|
*/
|
|
@@ -18,7 +18,7 @@ export type Role = {
|
|
|
18
18
|
export declare const Role$inboundSchema: z.ZodType<Role, z.ZodTypeDef, unknown>;
|
|
19
19
|
/** @internal */
|
|
20
20
|
export type Role$Outbound = {
|
|
21
|
-
|
|
21
|
+
colorr: string;
|
|
22
22
|
icon: string;
|
|
23
23
|
name: string;
|
|
24
24
|
role: string;
|