@steamsets/client-ts 0.11.10 → 0.11.12
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 +70 -71
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/models/components/index.d.ts +3 -3
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +3 -3
- package/models/components/index.js.map +1 -1
- package/models/components/resource.d.ts +0 -3
- package/models/components/resource.d.ts.map +1 -1
- package/models/components/resource.js +0 -1
- package/models/components/resource.js.map +1 -1
- package/models/components/{accountbadgemostxpdatapoint.d.ts → v1accountbadgemostxpdatapoint.d.ts} +12 -12
- package/models/components/v1accountbadgemostxpdatapoint.d.ts.map +1 -0
- package/models/components/{accountbadgemostxpdatapoint.js → v1accountbadgemostxpdatapoint.js} +11 -11
- package/models/components/v1accountbadgemostxpdatapoint.js.map +1 -0
- package/models/components/v1accountbadgescarcitydatapoint.d.ts +68 -0
- package/models/components/v1accountbadgescarcitydatapoint.d.ts.map +1 -0
- package/models/components/{accountbadgescarcitydatapoint.js → v1accountbadgescarcitydatapoint.js} +11 -11
- package/models/components/v1accountbadgescarcitydatapoint.js.map +1 -0
- package/models/components/v1accountdatapointsresponsebody.d.ts +9 -9
- package/models/components/v1accountdatapointsresponsebody.d.ts.map +1 -1
- package/models/components/v1accountdatapointsresponsebody.js +9 -9
- package/models/components/v1accountdatapointsresponsebody.js.map +1 -1
- package/models/components/v1accountleaderboardaccount.d.ts +5 -0
- package/models/components/v1accountleaderboardaccount.d.ts.map +1 -1
- package/models/components/v1accountleaderboardaccount.js +2 -0
- package/models/components/v1accountleaderboardaccount.js.map +1 -1
- package/models/components/v1accountplaytimedatapoint.d.ts +43 -0
- package/models/components/v1accountplaytimedatapoint.d.ts.map +1 -0
- package/models/components/{accountplaytimedatapoint.js → v1accountplaytimedatapoint.js} +11 -11
- package/models/components/v1accountplaytimedatapoint.js.map +1 -0
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/models/components/index.ts +3 -3
- package/src/models/components/resource.ts +0 -1
- package/src/models/components/{accountbadgemostxpdatapoint.ts → v1accountbadgemostxpdatapoint.ts} +14 -14
- package/src/models/components/{accountbadgescarcitydatapoint.ts → v1accountbadgescarcitydatapoint.ts} +14 -14
- package/src/models/components/v1accountdatapointsresponsebody.ts +27 -27
- package/src/models/components/v1accountleaderboardaccount.ts +7 -0
- package/src/models/components/{accountplaytimedatapoint.ts → v1accountplaytimedatapoint.ts} +14 -14
- package/models/components/accountbadgemostxpdatapoint.d.ts.map +0 -1
- package/models/components/accountbadgemostxpdatapoint.js.map +0 -1
- package/models/components/accountbadgescarcitydatapoint.d.ts +0 -68
- package/models/components/accountbadgescarcitydatapoint.d.ts.map +0 -1
- package/models/components/accountbadgescarcitydatapoint.js.map +0 -1
- package/models/components/accountplaytimedatapoint.d.ts +0 -43
- package/models/components/accountplaytimedatapoint.d.ts.map +0 -1
- package/models/components/accountplaytimedatapoint.js.map +0 -1
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
import * as z from "zod";
|
|
2
|
-
export type AccountBadgeScarcityDataPoint = {
|
|
3
|
-
/**
|
|
4
|
-
* The app id
|
|
5
|
-
*/
|
|
6
|
-
appId: number;
|
|
7
|
-
/**
|
|
8
|
-
* The badge id
|
|
9
|
-
*/
|
|
10
|
-
badgeId: string;
|
|
11
|
-
/**
|
|
12
|
-
* The badge image
|
|
13
|
-
*/
|
|
14
|
-
badgeImage: string;
|
|
15
|
-
/**
|
|
16
|
-
* Whether the badge is foil
|
|
17
|
-
*/
|
|
18
|
-
badgeIsFoil: boolean;
|
|
19
|
-
/**
|
|
20
|
-
* The badge level
|
|
21
|
-
*/
|
|
22
|
-
badgeLevel: number;
|
|
23
|
-
/**
|
|
24
|
-
* The badge name
|
|
25
|
-
*/
|
|
26
|
-
badgeName: string;
|
|
27
|
-
/**
|
|
28
|
-
* The badge scarcity
|
|
29
|
-
*/
|
|
30
|
-
badgeScarcity: number;
|
|
31
|
-
/**
|
|
32
|
-
* The image of the app
|
|
33
|
-
*/
|
|
34
|
-
image: string;
|
|
35
|
-
/**
|
|
36
|
-
* The name of the app
|
|
37
|
-
*/
|
|
38
|
-
name: string;
|
|
39
|
-
};
|
|
40
|
-
/** @internal */
|
|
41
|
-
export declare const AccountBadgeScarcityDataPoint$inboundSchema: z.ZodType<AccountBadgeScarcityDataPoint, z.ZodTypeDef, unknown>;
|
|
42
|
-
/** @internal */
|
|
43
|
-
export type AccountBadgeScarcityDataPoint$Outbound = {
|
|
44
|
-
appId: number;
|
|
45
|
-
badgeId: string;
|
|
46
|
-
badgeImage: string;
|
|
47
|
-
badgeIsFoil: boolean;
|
|
48
|
-
badgeLevel: number;
|
|
49
|
-
badgeName: string;
|
|
50
|
-
badgeScarcity: number;
|
|
51
|
-
image: string;
|
|
52
|
-
name: string;
|
|
53
|
-
};
|
|
54
|
-
/** @internal */
|
|
55
|
-
export declare const AccountBadgeScarcityDataPoint$outboundSchema: z.ZodType<AccountBadgeScarcityDataPoint$Outbound, z.ZodTypeDef, AccountBadgeScarcityDataPoint>;
|
|
56
|
-
/**
|
|
57
|
-
* @internal
|
|
58
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
59
|
-
*/
|
|
60
|
-
export declare namespace AccountBadgeScarcityDataPoint$ {
|
|
61
|
-
/** @deprecated use `AccountBadgeScarcityDataPoint$inboundSchema` instead. */
|
|
62
|
-
const inboundSchema: z.ZodType<AccountBadgeScarcityDataPoint, z.ZodTypeDef, unknown>;
|
|
63
|
-
/** @deprecated use `AccountBadgeScarcityDataPoint$outboundSchema` instead. */
|
|
64
|
-
const outboundSchema: z.ZodType<AccountBadgeScarcityDataPoint$Outbound, z.ZodTypeDef, AccountBadgeScarcityDataPoint>;
|
|
65
|
-
/** @deprecated use `AccountBadgeScarcityDataPoint$Outbound` instead. */
|
|
66
|
-
type Outbound = AccountBadgeScarcityDataPoint$Outbound;
|
|
67
|
-
}
|
|
68
|
-
//# sourceMappingURL=accountbadgescarcitydatapoint.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"accountbadgescarcitydatapoint.d.ts","sourceRoot":"","sources":["../../src/models/components/accountbadgescarcitydatapoint.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,MAAM,MAAM,6BAA6B,GAAG;IAC1C;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,WAAW,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,2CAA2C,EAAE,CAAC,CAAC,OAAO,CACjE,6BAA6B,EAC7B,CAAC,CAAC,UAAU,EACZ,OAAO,CAWP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,sCAAsC,GAAG;IACnD,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,OAAO,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;IACtB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,4CAA4C,EAAE,CAAC,CAAC,OAAO,CAClE,sCAAsC,EACtC,CAAC,CAAC,UAAU,EACZ,6BAA6B,CAW7B,CAAC;AAEH;;;GAGG;AACH,yBAAiB,8BAA8B,CAAC;IAC9C,6EAA6E;IACtE,MAAM,aAAa,iEAA8C,CAAC;IACzE,8EAA8E;IACvE,MAAM,cAAc,gGAA+C,CAAC;IAC3E,wEAAwE;IACxE,KAAY,QAAQ,GAAG,sCAAsC,CAAC;CAC/D"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"accountbadgescarcitydatapoint.js","sourceRoot":"","sources":["../../src/models/components/accountbadgescarcitydatapoint.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAyCzB,gBAAgB;AACH,QAAA,2CAA2C,GAIpD,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,WAAW,EAAE,CAAC,CAAC,OAAO,EAAE;IACxB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IAC5B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IAC/B,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAeH,gBAAgB;AACH,QAAA,4CAA4C,GAIrD,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,WAAW,EAAE,CAAC,CAAC,OAAO,EAAE;IACxB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IAC5B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IAC/B,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,8BAA8B,CAO9C;AAPD,WAAiB,8BAA8B;IAC7C,6EAA6E;IAChE,4CAAa,GAAG,mDAA2C,CAAC;IACzE,8EAA8E;IACjE,6CAAc,GAAG,oDAA4C,CAAC;AAG7E,CAAC,EAPgB,8BAA8B,8CAA9B,8BAA8B,QAO9C"}
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import * as z from "zod";
|
|
2
|
-
export type AccountPlaytimeDataPoint = {
|
|
3
|
-
/**
|
|
4
|
-
* The app id
|
|
5
|
-
*/
|
|
6
|
-
appId: number;
|
|
7
|
-
/**
|
|
8
|
-
* The image of the app
|
|
9
|
-
*/
|
|
10
|
-
image: string;
|
|
11
|
-
/**
|
|
12
|
-
* The name of the app
|
|
13
|
-
*/
|
|
14
|
-
name: string;
|
|
15
|
-
/**
|
|
16
|
-
* The playtime of the app
|
|
17
|
-
*/
|
|
18
|
-
playtime: number;
|
|
19
|
-
};
|
|
20
|
-
/** @internal */
|
|
21
|
-
export declare const AccountPlaytimeDataPoint$inboundSchema: z.ZodType<AccountPlaytimeDataPoint, z.ZodTypeDef, unknown>;
|
|
22
|
-
/** @internal */
|
|
23
|
-
export type AccountPlaytimeDataPoint$Outbound = {
|
|
24
|
-
appId: number;
|
|
25
|
-
image: string;
|
|
26
|
-
name: string;
|
|
27
|
-
playtime: number;
|
|
28
|
-
};
|
|
29
|
-
/** @internal */
|
|
30
|
-
export declare const AccountPlaytimeDataPoint$outboundSchema: z.ZodType<AccountPlaytimeDataPoint$Outbound, z.ZodTypeDef, AccountPlaytimeDataPoint>;
|
|
31
|
-
/**
|
|
32
|
-
* @internal
|
|
33
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
34
|
-
*/
|
|
35
|
-
export declare namespace AccountPlaytimeDataPoint$ {
|
|
36
|
-
/** @deprecated use `AccountPlaytimeDataPoint$inboundSchema` instead. */
|
|
37
|
-
const inboundSchema: z.ZodType<AccountPlaytimeDataPoint, z.ZodTypeDef, unknown>;
|
|
38
|
-
/** @deprecated use `AccountPlaytimeDataPoint$outboundSchema` instead. */
|
|
39
|
-
const outboundSchema: z.ZodType<AccountPlaytimeDataPoint$Outbound, z.ZodTypeDef, AccountPlaytimeDataPoint>;
|
|
40
|
-
/** @deprecated use `AccountPlaytimeDataPoint$Outbound` instead. */
|
|
41
|
-
type Outbound = AccountPlaytimeDataPoint$Outbound;
|
|
42
|
-
}
|
|
43
|
-
//# sourceMappingURL=accountplaytimedatapoint.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"accountplaytimedatapoint.d.ts","sourceRoot":"","sources":["../../src/models/components/accountplaytimedatapoint.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,MAAM,MAAM,wBAAwB,GAAG;IACrC;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,sCAAsC,EAAE,CAAC,CAAC,OAAO,CAC5D,wBAAwB,EACxB,CAAC,CAAC,UAAU,EACZ,OAAO,CAMP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,iCAAiC,GAAG;IAC9C,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,uCAAuC,EAAE,CAAC,CAAC,OAAO,CAC7D,iCAAiC,EACjC,CAAC,CAAC,UAAU,EACZ,wBAAwB,CAMxB,CAAC;AAEH;;;GAGG;AACH,yBAAiB,yBAAyB,CAAC;IACzC,wEAAwE;IACjE,MAAM,aAAa,4DAAyC,CAAC;IACpE,yEAAyE;IAClE,MAAM,cAAc,sFAA0C,CAAC;IACtE,mEAAmE;IACnE,KAAY,QAAQ,GAAG,iCAAiC,CAAC;CAC1D"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"accountplaytimedatapoint.js","sourceRoot":"","sources":["../../src/models/components/accountplaytimedatapoint.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAqBzB,gBAAgB;AACH,QAAA,sCAAsC,GAI/C,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;CAC3B,CAAC,CAAC;AAUH,gBAAgB;AACH,QAAA,uCAAuC,GAIhD,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;CAC3B,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,yBAAyB,CAOzC;AAPD,WAAiB,yBAAyB;IACxC,wEAAwE;IAC3D,uCAAa,GAAG,8CAAsC,CAAC;IACpE,yEAAyE;IAC5D,wCAAc,GAAG,+CAAuC,CAAC;AAGxE,CAAC,EAPgB,yBAAyB,yCAAzB,yBAAyB,QAOzC"}
|