@steamsets/client-ts 0.11.21 → 0.11.23
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/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/models/components/accountbadgeinfo.d.ts +38 -0
- package/models/components/accountbadgeinfo.d.ts.map +1 -0
- package/models/components/{leaderboardaccountbadgeinfo.js → accountbadgeinfo.js} +11 -11
- package/models/components/accountbadgeinfo.js.map +1 -0
- package/models/components/index.d.ts +1 -5
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +1 -5
- package/models/components/index.js.map +1 -1
- package/models/components/v1accountdatapointsresponsebody.d.ts +5 -6
- package/models/components/v1accountdatapointsresponsebody.d.ts.map +1 -1
- package/models/components/v1accountdatapointsresponsebody.js +5 -6
- package/models/components/v1accountdatapointsresponsebody.js.map +1 -1
- package/models/components/v1accountleaderboardaccount.d.ts +3 -3
- package/models/components/v1accountleaderboardaccount.d.ts.map +1 -1
- package/models/components/v1accountleaderboardaccount.js +3 -3
- package/models/components/v1accountleaderboardaccount.js.map +1 -1
- package/models/components/v1appbadge.d.ts +25 -7
- package/models/components/v1appbadge.d.ts.map +1 -1
- package/models/components/v1appbadge.js +19 -7
- package/models/components/v1appbadge.js.map +1 -1
- package/models/components/v1badgesresponsebody.d.ts +3 -3
- package/models/components/v1badgesresponsebody.d.ts.map +1 -1
- package/models/components/v1badgesresponsebody.js +3 -3
- package/models/components/v1badgesresponsebody.js.map +1 -1
- package/models/components/v1connectresponsebody.d.ts +5 -0
- package/models/components/v1connectresponsebody.d.ts.map +1 -1
- package/models/components/v1connectresponsebody.js +4 -0
- package/models/components/v1connectresponsebody.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/models/components/{leaderboardaccountbadgeinfo.ts → accountbadgeinfo.ts} +14 -14
- package/src/models/components/index.ts +1 -5
- package/src/models/components/v1accountdatapointsresponsebody.ts +14 -20
- package/src/models/components/v1accountleaderboardaccount.ts +9 -9
- package/src/models/components/v1appbadge.ts +47 -17
- package/src/models/components/v1badgesresponsebody.ts +9 -9
- package/src/models/components/v1connectresponsebody.ts +9 -0
- package/models/components/leaderboardaccountbadgeinfo.d.ts +0 -38
- package/models/components/leaderboardaccountbadgeinfo.d.ts.map +0 -1
- package/models/components/leaderboardaccountbadgeinfo.js.map +0 -1
- package/models/components/v1accountappbadge.d.ts +0 -55
- package/models/components/v1accountappbadge.d.ts.map +0 -1
- package/models/components/v1accountappbadge.js +0 -80
- package/models/components/v1accountappbadge.js.map +0 -1
- package/models/components/v1accountbadgecompletion.d.ts +0 -29
- package/models/components/v1accountbadgecompletion.d.ts.map +0 -1
- package/models/components/v1accountbadgecompletion.js +0 -54
- package/models/components/v1accountbadgecompletion.js.map +0 -1
- package/models/components/v1accountbadgemostxpdatapoint.d.ts +0 -83
- package/models/components/v1accountbadgemostxpdatapoint.d.ts.map +0 -1
- package/models/components/v1accountbadgemostxpdatapoint.js +0 -72
- package/models/components/v1accountbadgemostxpdatapoint.js.map +0 -1
- package/models/components/v1accountbadgescarcitydatapoint.d.ts +0 -83
- package/models/components/v1accountbadgescarcitydatapoint.d.ts.map +0 -1
- package/models/components/v1accountbadgescarcitydatapoint.js +0 -72
- package/models/components/v1accountbadgescarcitydatapoint.js.map +0 -1
- package/src/models/components/v1accountappbadge.ts +0 -107
- package/src/models/components/v1accountbadgecompletion.ts +0 -55
- package/src/models/components/v1accountbadgemostxpdatapoint.ts +0 -127
- package/src/models/components/v1accountbadgescarcitydatapoint.ts +0 -127
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
import * as z from "zod";
|
|
6
|
-
|
|
7
|
-
export type V1AccountBadgeCompletion = {
|
|
8
|
-
completedAt: Date;
|
|
9
|
-
level: number;
|
|
10
|
-
xp: number;
|
|
11
|
-
};
|
|
12
|
-
|
|
13
|
-
/** @internal */
|
|
14
|
-
export const V1AccountBadgeCompletion$inboundSchema: z.ZodType<
|
|
15
|
-
V1AccountBadgeCompletion,
|
|
16
|
-
z.ZodTypeDef,
|
|
17
|
-
unknown
|
|
18
|
-
> = z.object({
|
|
19
|
-
completedAt: z.string().datetime({ offset: true }).transform(v =>
|
|
20
|
-
new Date(v)
|
|
21
|
-
),
|
|
22
|
-
level: z.number().int(),
|
|
23
|
-
xp: z.number().int(),
|
|
24
|
-
});
|
|
25
|
-
|
|
26
|
-
/** @internal */
|
|
27
|
-
export type V1AccountBadgeCompletion$Outbound = {
|
|
28
|
-
completedAt: string;
|
|
29
|
-
level: number;
|
|
30
|
-
xp: number;
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
/** @internal */
|
|
34
|
-
export const V1AccountBadgeCompletion$outboundSchema: z.ZodType<
|
|
35
|
-
V1AccountBadgeCompletion$Outbound,
|
|
36
|
-
z.ZodTypeDef,
|
|
37
|
-
V1AccountBadgeCompletion
|
|
38
|
-
> = z.object({
|
|
39
|
-
completedAt: z.date().transform(v => v.toISOString()),
|
|
40
|
-
level: z.number().int(),
|
|
41
|
-
xp: z.number().int(),
|
|
42
|
-
});
|
|
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
|
-
export namespace V1AccountBadgeCompletion$ {
|
|
49
|
-
/** @deprecated use `V1AccountBadgeCompletion$inboundSchema` instead. */
|
|
50
|
-
export const inboundSchema = V1AccountBadgeCompletion$inboundSchema;
|
|
51
|
-
/** @deprecated use `V1AccountBadgeCompletion$outboundSchema` instead. */
|
|
52
|
-
export const outboundSchema = V1AccountBadgeCompletion$outboundSchema;
|
|
53
|
-
/** @deprecated use `V1AccountBadgeCompletion$Outbound` instead. */
|
|
54
|
-
export type Outbound = V1AccountBadgeCompletion$Outbound;
|
|
55
|
-
}
|
|
@@ -1,127 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
import * as z from "zod";
|
|
6
|
-
|
|
7
|
-
export type V1AccountBadgeMostXpDataPoint = {
|
|
8
|
-
/**
|
|
9
|
-
* The app id
|
|
10
|
-
*/
|
|
11
|
-
appId: number;
|
|
12
|
-
/**
|
|
13
|
-
* The badge completed at
|
|
14
|
-
*/
|
|
15
|
-
badgeCompletedAt: Date;
|
|
16
|
-
/**
|
|
17
|
-
* The badge id
|
|
18
|
-
*/
|
|
19
|
-
badgeId: string;
|
|
20
|
-
/**
|
|
21
|
-
* The badge image
|
|
22
|
-
*/
|
|
23
|
-
badgeImage: string;
|
|
24
|
-
/**
|
|
25
|
-
* Whether the badge is foil
|
|
26
|
-
*/
|
|
27
|
-
badgeIsFoil: boolean;
|
|
28
|
-
/**
|
|
29
|
-
* The badge level
|
|
30
|
-
*/
|
|
31
|
-
badgeLevel: number;
|
|
32
|
-
/**
|
|
33
|
-
* The badge name
|
|
34
|
-
*/
|
|
35
|
-
badgeName: string;
|
|
36
|
-
/**
|
|
37
|
-
* The badge scarcity
|
|
38
|
-
*/
|
|
39
|
-
badgeScarcity: number;
|
|
40
|
-
/**
|
|
41
|
-
* The badge steam id
|
|
42
|
-
*/
|
|
43
|
-
badgeSteamID: number;
|
|
44
|
-
/**
|
|
45
|
-
* The badge xp
|
|
46
|
-
*/
|
|
47
|
-
badgeXP: number;
|
|
48
|
-
/**
|
|
49
|
-
* The image of the app
|
|
50
|
-
*/
|
|
51
|
-
image: string;
|
|
52
|
-
/**
|
|
53
|
-
* The name of the app
|
|
54
|
-
*/
|
|
55
|
-
name: string;
|
|
56
|
-
};
|
|
57
|
-
|
|
58
|
-
/** @internal */
|
|
59
|
-
export const V1AccountBadgeMostXpDataPoint$inboundSchema: z.ZodType<
|
|
60
|
-
V1AccountBadgeMostXpDataPoint,
|
|
61
|
-
z.ZodTypeDef,
|
|
62
|
-
unknown
|
|
63
|
-
> = z.object({
|
|
64
|
-
appId: z.number().int(),
|
|
65
|
-
badgeCompletedAt: z.string().datetime({ offset: true }).transform(v =>
|
|
66
|
-
new Date(v)
|
|
67
|
-
),
|
|
68
|
-
badgeId: z.string(),
|
|
69
|
-
badgeImage: z.string(),
|
|
70
|
-
badgeIsFoil: z.boolean(),
|
|
71
|
-
badgeLevel: z.number().int(),
|
|
72
|
-
badgeName: z.string(),
|
|
73
|
-
badgeScarcity: z.number().int(),
|
|
74
|
-
badgeSteamID: z.number().int(),
|
|
75
|
-
badgeXP: z.number().int(),
|
|
76
|
-
image: z.string(),
|
|
77
|
-
name: z.string(),
|
|
78
|
-
});
|
|
79
|
-
|
|
80
|
-
/** @internal */
|
|
81
|
-
export type V1AccountBadgeMostXpDataPoint$Outbound = {
|
|
82
|
-
appId: number;
|
|
83
|
-
badgeCompletedAt: string;
|
|
84
|
-
badgeId: string;
|
|
85
|
-
badgeImage: string;
|
|
86
|
-
badgeIsFoil: boolean;
|
|
87
|
-
badgeLevel: number;
|
|
88
|
-
badgeName: string;
|
|
89
|
-
badgeScarcity: number;
|
|
90
|
-
badgeSteamID: number;
|
|
91
|
-
badgeXP: number;
|
|
92
|
-
image: string;
|
|
93
|
-
name: string;
|
|
94
|
-
};
|
|
95
|
-
|
|
96
|
-
/** @internal */
|
|
97
|
-
export const V1AccountBadgeMostXpDataPoint$outboundSchema: z.ZodType<
|
|
98
|
-
V1AccountBadgeMostXpDataPoint$Outbound,
|
|
99
|
-
z.ZodTypeDef,
|
|
100
|
-
V1AccountBadgeMostXpDataPoint
|
|
101
|
-
> = z.object({
|
|
102
|
-
appId: z.number().int(),
|
|
103
|
-
badgeCompletedAt: z.date().transform(v => v.toISOString()),
|
|
104
|
-
badgeId: z.string(),
|
|
105
|
-
badgeImage: z.string(),
|
|
106
|
-
badgeIsFoil: z.boolean(),
|
|
107
|
-
badgeLevel: z.number().int(),
|
|
108
|
-
badgeName: z.string(),
|
|
109
|
-
badgeScarcity: z.number().int(),
|
|
110
|
-
badgeSteamID: z.number().int(),
|
|
111
|
-
badgeXP: z.number().int(),
|
|
112
|
-
image: z.string(),
|
|
113
|
-
name: z.string(),
|
|
114
|
-
});
|
|
115
|
-
|
|
116
|
-
/**
|
|
117
|
-
* @internal
|
|
118
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
119
|
-
*/
|
|
120
|
-
export namespace V1AccountBadgeMostXpDataPoint$ {
|
|
121
|
-
/** @deprecated use `V1AccountBadgeMostXpDataPoint$inboundSchema` instead. */
|
|
122
|
-
export const inboundSchema = V1AccountBadgeMostXpDataPoint$inboundSchema;
|
|
123
|
-
/** @deprecated use `V1AccountBadgeMostXpDataPoint$outboundSchema` instead. */
|
|
124
|
-
export const outboundSchema = V1AccountBadgeMostXpDataPoint$outboundSchema;
|
|
125
|
-
/** @deprecated use `V1AccountBadgeMostXpDataPoint$Outbound` instead. */
|
|
126
|
-
export type Outbound = V1AccountBadgeMostXpDataPoint$Outbound;
|
|
127
|
-
}
|
|
@@ -1,127 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
import * as z from "zod";
|
|
6
|
-
|
|
7
|
-
export type V1AccountBadgeScarcityDataPoint = {
|
|
8
|
-
/**
|
|
9
|
-
* The app id
|
|
10
|
-
*/
|
|
11
|
-
appId: number;
|
|
12
|
-
/**
|
|
13
|
-
* The badge completed at
|
|
14
|
-
*/
|
|
15
|
-
badgeCompletedAt: Date;
|
|
16
|
-
/**
|
|
17
|
-
* The badge id
|
|
18
|
-
*/
|
|
19
|
-
badgeId: string;
|
|
20
|
-
/**
|
|
21
|
-
* The badge image
|
|
22
|
-
*/
|
|
23
|
-
badgeImage: string;
|
|
24
|
-
/**
|
|
25
|
-
* Whether the badge is foil
|
|
26
|
-
*/
|
|
27
|
-
badgeIsFoil: boolean;
|
|
28
|
-
/**
|
|
29
|
-
* The badge level
|
|
30
|
-
*/
|
|
31
|
-
badgeLevel: number;
|
|
32
|
-
/**
|
|
33
|
-
* The badge name
|
|
34
|
-
*/
|
|
35
|
-
badgeName: string;
|
|
36
|
-
/**
|
|
37
|
-
* The badge scarcity
|
|
38
|
-
*/
|
|
39
|
-
badgeScarcity: number;
|
|
40
|
-
/**
|
|
41
|
-
* The badge steam id
|
|
42
|
-
*/
|
|
43
|
-
badgeSteamId: number;
|
|
44
|
-
/**
|
|
45
|
-
* The badge xp
|
|
46
|
-
*/
|
|
47
|
-
badgeXP: number;
|
|
48
|
-
/**
|
|
49
|
-
* The image of the app
|
|
50
|
-
*/
|
|
51
|
-
image: string;
|
|
52
|
-
/**
|
|
53
|
-
* The name of the app
|
|
54
|
-
*/
|
|
55
|
-
name: string;
|
|
56
|
-
};
|
|
57
|
-
|
|
58
|
-
/** @internal */
|
|
59
|
-
export const V1AccountBadgeScarcityDataPoint$inboundSchema: z.ZodType<
|
|
60
|
-
V1AccountBadgeScarcityDataPoint,
|
|
61
|
-
z.ZodTypeDef,
|
|
62
|
-
unknown
|
|
63
|
-
> = z.object({
|
|
64
|
-
appId: z.number().int(),
|
|
65
|
-
badgeCompletedAt: z.string().datetime({ offset: true }).transform(v =>
|
|
66
|
-
new Date(v)
|
|
67
|
-
),
|
|
68
|
-
badgeId: z.string(),
|
|
69
|
-
badgeImage: z.string(),
|
|
70
|
-
badgeIsFoil: z.boolean(),
|
|
71
|
-
badgeLevel: z.number().int(),
|
|
72
|
-
badgeName: z.string(),
|
|
73
|
-
badgeScarcity: z.number().int(),
|
|
74
|
-
badgeSteamId: z.number().int(),
|
|
75
|
-
badgeXP: z.number().int(),
|
|
76
|
-
image: z.string(),
|
|
77
|
-
name: z.string(),
|
|
78
|
-
});
|
|
79
|
-
|
|
80
|
-
/** @internal */
|
|
81
|
-
export type V1AccountBadgeScarcityDataPoint$Outbound = {
|
|
82
|
-
appId: number;
|
|
83
|
-
badgeCompletedAt: string;
|
|
84
|
-
badgeId: string;
|
|
85
|
-
badgeImage: string;
|
|
86
|
-
badgeIsFoil: boolean;
|
|
87
|
-
badgeLevel: number;
|
|
88
|
-
badgeName: string;
|
|
89
|
-
badgeScarcity: number;
|
|
90
|
-
badgeSteamId: number;
|
|
91
|
-
badgeXP: number;
|
|
92
|
-
image: string;
|
|
93
|
-
name: string;
|
|
94
|
-
};
|
|
95
|
-
|
|
96
|
-
/** @internal */
|
|
97
|
-
export const V1AccountBadgeScarcityDataPoint$outboundSchema: z.ZodType<
|
|
98
|
-
V1AccountBadgeScarcityDataPoint$Outbound,
|
|
99
|
-
z.ZodTypeDef,
|
|
100
|
-
V1AccountBadgeScarcityDataPoint
|
|
101
|
-
> = z.object({
|
|
102
|
-
appId: z.number().int(),
|
|
103
|
-
badgeCompletedAt: z.date().transform(v => v.toISOString()),
|
|
104
|
-
badgeId: z.string(),
|
|
105
|
-
badgeImage: z.string(),
|
|
106
|
-
badgeIsFoil: z.boolean(),
|
|
107
|
-
badgeLevel: z.number().int(),
|
|
108
|
-
badgeName: z.string(),
|
|
109
|
-
badgeScarcity: z.number().int(),
|
|
110
|
-
badgeSteamId: z.number().int(),
|
|
111
|
-
badgeXP: z.number().int(),
|
|
112
|
-
image: z.string(),
|
|
113
|
-
name: z.string(),
|
|
114
|
-
});
|
|
115
|
-
|
|
116
|
-
/**
|
|
117
|
-
* @internal
|
|
118
|
-
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
119
|
-
*/
|
|
120
|
-
export namespace V1AccountBadgeScarcityDataPoint$ {
|
|
121
|
-
/** @deprecated use `V1AccountBadgeScarcityDataPoint$inboundSchema` instead. */
|
|
122
|
-
export const inboundSchema = V1AccountBadgeScarcityDataPoint$inboundSchema;
|
|
123
|
-
/** @deprecated use `V1AccountBadgeScarcityDataPoint$outboundSchema` instead. */
|
|
124
|
-
export const outboundSchema = V1AccountBadgeScarcityDataPoint$outboundSchema;
|
|
125
|
-
/** @deprecated use `V1AccountBadgeScarcityDataPoint$Outbound` instead. */
|
|
126
|
-
export type Outbound = V1AccountBadgeScarcityDataPoint$Outbound;
|
|
127
|
-
}
|