@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.
Files changed (50) hide show
  1. package/docs/sdks/account/README.md +20 -10
  2. package/docs/sdks/admin/README.md +2 -6
  3. package/jsr.json +1 -1
  4. package/lib/config.d.ts +3 -3
  5. package/lib/config.js +3 -3
  6. package/lib/matchers.d.ts +3 -1
  7. package/lib/matchers.d.ts.map +1 -1
  8. package/lib/matchers.js +12 -0
  9. package/lib/matchers.js.map +1 -1
  10. package/lib/sdks.js +7 -2
  11. package/lib/sdks.js.map +1 -1
  12. package/models/components/index.d.ts +2 -0
  13. package/models/components/index.d.ts.map +1 -1
  14. package/models/components/index.js +2 -0
  15. package/models/components/index.js.map +1 -1
  16. package/models/components/v1accountcompare.d.ts +72 -0
  17. package/models/components/v1accountcompare.d.ts.map +1 -0
  18. package/models/components/v1accountcompare.js +84 -0
  19. package/models/components/v1accountcompare.js.map +1 -0
  20. package/models/components/v1accountcomparebadgeorder.d.ts +88 -0
  21. package/models/components/v1accountcomparebadgeorder.d.ts.map +1 -0
  22. package/models/components/v1accountcomparebadgeorder.js +102 -0
  23. package/models/components/v1accountcomparebadgeorder.js.map +1 -0
  24. package/models/components/v1accountcomparebadgesrequestbody.d.ts +69 -0
  25. package/models/components/v1accountcomparebadgesrequestbody.d.ts.map +1 -1
  26. package/models/components/v1accountcomparebadgesrequestbody.js +55 -1
  27. package/models/components/v1accountcomparebadgesrequestbody.js.map +1 -1
  28. package/models/components/v1accountcomparebadgesresponsebody.d.ts +10 -0
  29. package/models/components/v1accountcomparebadgesresponsebody.d.ts.map +1 -1
  30. package/models/components/v1accountcomparebadgesresponsebody.js +4 -0
  31. package/models/components/v1accountcomparebadgesresponsebody.js.map +1 -1
  32. package/models/components/v1accountlistbadgesrequestbody.d.ts +8 -8
  33. package/models/components/v1accountlistbadgesrequestbody.d.ts.map +1 -1
  34. package/models/components/v1accountlistbadgesrequestbody.js +13 -14
  35. package/models/components/v1accountlistbadgesrequestbody.js.map +1 -1
  36. package/models/components/v1apporder.d.ts +16 -16
  37. package/models/components/v1apporder.d.ts.map +1 -1
  38. package/models/components/v1apporder.js +25 -26
  39. package/models/components/v1apporder.js.map +1 -1
  40. package/package.json +1 -1
  41. package/src/lib/config.ts +3 -3
  42. package/src/lib/matchers.ts +20 -0
  43. package/src/lib/sdks.ts +8 -2
  44. package/src/models/components/index.ts +2 -0
  45. package/src/models/components/v1accountcompare.ts +104 -0
  46. package/src/models/components/v1accountcomparebadgeorder.ts +121 -0
  47. package/src/models/components/v1accountcomparebadgesrequestbody.ts +85 -0
  48. package/src/models/components/v1accountcomparebadgesresponsebody.ts +14 -0
  49. package/src/models/components/v1accountlistbadgesrequestbody.ts +25 -14
  50. 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 By = {
11
+ export const V1AppOrderBy = {
12
12
  AppId: "appId",
13
13
  Playtime: "playtime",
14
14
  } as const;
15
- export type By = ClosedEnum<typeof By>;
15
+ export type V1AppOrderBy = ClosedEnum<typeof V1AppOrderBy>;
16
16
 
17
- export const Direction = {
17
+ export const V1AppOrderDirection = {
18
18
  Asc: "asc",
19
19
  Desc: "desc",
20
20
  } as const;
21
- export type Direction = ClosedEnum<typeof Direction>;
21
+ export type V1AppOrderDirection = ClosedEnum<typeof V1AppOrderDirection>;
22
22
 
23
23
  export type V1AppOrder = {
24
- by: By;
25
- direction?: Direction | undefined;
24
+ by: V1AppOrderBy;
25
+ direction?: V1AppOrderDirection | undefined;
26
26
  };
27
27
 
28
28
  /** @internal */
29
- export const By$inboundSchema: z.ZodNativeEnum<typeof By> = z.nativeEnum(By);
29
+ export const V1AppOrderBy$inboundSchema: z.ZodNativeEnum<typeof V1AppOrderBy> =
30
+ z.nativeEnum(V1AppOrderBy);
30
31
 
31
32
  /** @internal */
32
- export const By$outboundSchema: z.ZodNativeEnum<typeof By> = By$inboundSchema;
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 By$ {
39
- /** @deprecated use `By$inboundSchema` instead. */
40
- export const inboundSchema = By$inboundSchema;
41
- /** @deprecated use `By$outboundSchema` instead. */
42
- export const outboundSchema = By$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 Direction$inboundSchema: z.ZodNativeEnum<typeof Direction> = z
47
- .nativeEnum(Direction);
48
+ export const V1AppOrderDirection$inboundSchema: z.ZodNativeEnum<
49
+ typeof V1AppOrderDirection
50
+ > = z.nativeEnum(V1AppOrderDirection);
48
51
 
49
52
  /** @internal */
50
- export const Direction$outboundSchema: z.ZodNativeEnum<typeof Direction> =
51
- Direction$inboundSchema;
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 Direction$ {
58
- /** @deprecated use `Direction$inboundSchema` instead. */
59
- export const inboundSchema = Direction$inboundSchema;
60
- /** @deprecated use `Direction$outboundSchema` instead. */
61
- export const outboundSchema = Direction$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: By$inboundSchema,
71
- direction: Direction$inboundSchema.default("desc"),
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: By$outboundSchema,
87
- direction: Direction$outboundSchema.default("desc"),
90
+ by: V1AppOrderBy$outboundSchema,
91
+ direction: V1AppOrderDirection$outboundSchema.default("desc"),
88
92
  });
89
93
 
90
94
  /**