@steamsets/client-ts 0.25.13 → 0.25.14
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/docs/sdks/account/README.md +20 -10
- package/docs/sdks/admin/README.md +2 -6
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/lib/matchers.d.ts +3 -1
- package/lib/matchers.d.ts.map +1 -1
- package/lib/matchers.js +12 -0
- package/lib/matchers.js.map +1 -1
- package/lib/sdks.js +7 -2
- package/lib/sdks.js.map +1 -1
- package/models/components/index.d.ts +2 -0
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +2 -0
- package/models/components/index.js.map +1 -1
- package/models/components/v1accountcompare.d.ts +72 -0
- package/models/components/v1accountcompare.d.ts.map +1 -0
- package/models/components/v1accountcompare.js +84 -0
- package/models/components/v1accountcompare.js.map +1 -0
- package/models/components/v1accountcomparebadgeorder.d.ts +88 -0
- package/models/components/v1accountcomparebadgeorder.d.ts.map +1 -0
- package/models/components/v1accountcomparebadgeorder.js +102 -0
- package/models/components/v1accountcomparebadgeorder.js.map +1 -0
- package/models/components/v1accountcomparebadgesrequestbody.d.ts +69 -0
- package/models/components/v1accountcomparebadgesrequestbody.d.ts.map +1 -1
- package/models/components/v1accountcomparebadgesrequestbody.js +55 -1
- package/models/components/v1accountcomparebadgesrequestbody.js.map +1 -1
- package/models/components/v1accountcomparebadgesresponsebody.d.ts +10 -0
- package/models/components/v1accountcomparebadgesresponsebody.d.ts.map +1 -1
- package/models/components/v1accountcomparebadgesresponsebody.js +4 -0
- package/models/components/v1accountcomparebadgesresponsebody.js.map +1 -1
- package/models/components/v1accountlistbadgesrequestbody.d.ts +8 -8
- package/models/components/v1accountlistbadgesrequestbody.d.ts.map +1 -1
- package/models/components/v1accountlistbadgesrequestbody.js +13 -14
- package/models/components/v1accountlistbadgesrequestbody.js.map +1 -1
- package/models/components/v1apporder.d.ts +16 -16
- package/models/components/v1apporder.d.ts.map +1 -1
- package/models/components/v1apporder.js +25 -26
- package/models/components/v1apporder.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/lib/matchers.ts +20 -0
- package/src/lib/sdks.ts +8 -2
- package/src/models/components/index.ts +2 -0
- package/src/models/components/v1accountcompare.ts +104 -0
- package/src/models/components/v1accountcomparebadgeorder.ts +121 -0
- package/src/models/components/v1accountcomparebadgesrequestbody.ts +85 -0
- package/src/models/components/v1accountcomparebadgesresponsebody.ts +14 -0
- package/src/models/components/v1accountlistbadgesrequestbody.ts +25 -14
- package/src/models/components/v1apporder.ts +30 -26
|
@@ -8,57 +8,61 @@ import { ClosedEnum } from "../../types/enums.js";
|
|
|
8
8
|
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
9
9
|
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
10
10
|
|
|
11
|
-
export const
|
|
11
|
+
export const V1AppOrderBy = {
|
|
12
12
|
AppId: "appId",
|
|
13
13
|
Playtime: "playtime",
|
|
14
14
|
} as const;
|
|
15
|
-
export type
|
|
15
|
+
export type V1AppOrderBy = ClosedEnum<typeof V1AppOrderBy>;
|
|
16
16
|
|
|
17
|
-
export const
|
|
17
|
+
export const V1AppOrderDirection = {
|
|
18
18
|
Asc: "asc",
|
|
19
19
|
Desc: "desc",
|
|
20
20
|
} as const;
|
|
21
|
-
export type
|
|
21
|
+
export type V1AppOrderDirection = ClosedEnum<typeof V1AppOrderDirection>;
|
|
22
22
|
|
|
23
23
|
export type V1AppOrder = {
|
|
24
|
-
by:
|
|
25
|
-
direction?:
|
|
24
|
+
by: V1AppOrderBy;
|
|
25
|
+
direction?: V1AppOrderDirection | undefined;
|
|
26
26
|
};
|
|
27
27
|
|
|
28
28
|
/** @internal */
|
|
29
|
-
export const
|
|
29
|
+
export const V1AppOrderBy$inboundSchema: z.ZodNativeEnum<typeof V1AppOrderBy> =
|
|
30
|
+
z.nativeEnum(V1AppOrderBy);
|
|
30
31
|
|
|
31
32
|
/** @internal */
|
|
32
|
-
export const
|
|
33
|
+
export const V1AppOrderBy$outboundSchema: z.ZodNativeEnum<typeof V1AppOrderBy> =
|
|
34
|
+
V1AppOrderBy$inboundSchema;
|
|
33
35
|
|
|
34
36
|
/**
|
|
35
37
|
* @internal
|
|
36
38
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
37
39
|
*/
|
|
38
|
-
export namespace
|
|
39
|
-
/** @deprecated use `
|
|
40
|
-
export const inboundSchema =
|
|
41
|
-
/** @deprecated use `
|
|
42
|
-
export const outboundSchema =
|
|
40
|
+
export namespace V1AppOrderBy$ {
|
|
41
|
+
/** @deprecated use `V1AppOrderBy$inboundSchema` instead. */
|
|
42
|
+
export const inboundSchema = V1AppOrderBy$inboundSchema;
|
|
43
|
+
/** @deprecated use `V1AppOrderBy$outboundSchema` instead. */
|
|
44
|
+
export const outboundSchema = V1AppOrderBy$outboundSchema;
|
|
43
45
|
}
|
|
44
46
|
|
|
45
47
|
/** @internal */
|
|
46
|
-
export const
|
|
47
|
-
|
|
48
|
+
export const V1AppOrderDirection$inboundSchema: z.ZodNativeEnum<
|
|
49
|
+
typeof V1AppOrderDirection
|
|
50
|
+
> = z.nativeEnum(V1AppOrderDirection);
|
|
48
51
|
|
|
49
52
|
/** @internal */
|
|
50
|
-
export const
|
|
51
|
-
|
|
53
|
+
export const V1AppOrderDirection$outboundSchema: z.ZodNativeEnum<
|
|
54
|
+
typeof V1AppOrderDirection
|
|
55
|
+
> = V1AppOrderDirection$inboundSchema;
|
|
52
56
|
|
|
53
57
|
/**
|
|
54
58
|
* @internal
|
|
55
59
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
56
60
|
*/
|
|
57
|
-
export namespace
|
|
58
|
-
/** @deprecated use `
|
|
59
|
-
export const inboundSchema =
|
|
60
|
-
/** @deprecated use `
|
|
61
|
-
export const outboundSchema =
|
|
61
|
+
export namespace V1AppOrderDirection$ {
|
|
62
|
+
/** @deprecated use `V1AppOrderDirection$inboundSchema` instead. */
|
|
63
|
+
export const inboundSchema = V1AppOrderDirection$inboundSchema;
|
|
64
|
+
/** @deprecated use `V1AppOrderDirection$outboundSchema` instead. */
|
|
65
|
+
export const outboundSchema = V1AppOrderDirection$outboundSchema;
|
|
62
66
|
}
|
|
63
67
|
|
|
64
68
|
/** @internal */
|
|
@@ -67,8 +71,8 @@ export const V1AppOrder$inboundSchema: z.ZodType<
|
|
|
67
71
|
z.ZodTypeDef,
|
|
68
72
|
unknown
|
|
69
73
|
> = z.object({
|
|
70
|
-
by:
|
|
71
|
-
direction:
|
|
74
|
+
by: V1AppOrderBy$inboundSchema,
|
|
75
|
+
direction: V1AppOrderDirection$inboundSchema.default("desc"),
|
|
72
76
|
});
|
|
73
77
|
|
|
74
78
|
/** @internal */
|
|
@@ -83,8 +87,8 @@ export const V1AppOrder$outboundSchema: z.ZodType<
|
|
|
83
87
|
z.ZodTypeDef,
|
|
84
88
|
V1AppOrder
|
|
85
89
|
> = z.object({
|
|
86
|
-
by:
|
|
87
|
-
direction:
|
|
90
|
+
by: V1AppOrderBy$outboundSchema,
|
|
91
|
+
direction: V1AppOrderDirection$outboundSchema.default("desc"),
|
|
88
92
|
});
|
|
89
93
|
|
|
90
94
|
/**
|