@steamsets/client-ts 0.11.20 → 0.11.22

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 (64) hide show
  1. package/docs/sdks/account/README.md +2 -0
  2. package/docs/sdks/settings/README.md +2 -0
  3. package/lib/config.d.ts +2 -2
  4. package/lib/config.js +2 -2
  5. package/models/components/accountbadgeinfo.d.ts +38 -0
  6. package/models/components/accountbadgeinfo.d.ts.map +1 -0
  7. package/models/components/{leaderboardaccountbadgeinfo.js → accountbadgeinfo.js} +11 -11
  8. package/models/components/accountbadgeinfo.js.map +1 -0
  9. package/models/components/index.d.ts +1 -5
  10. package/models/components/index.d.ts.map +1 -1
  11. package/models/components/index.js +1 -5
  12. package/models/components/index.js.map +1 -1
  13. package/models/components/v1accountdatapointsresponsebody.d.ts +5 -6
  14. package/models/components/v1accountdatapointsresponsebody.d.ts.map +1 -1
  15. package/models/components/v1accountdatapointsresponsebody.js +5 -6
  16. package/models/components/v1accountdatapointsresponsebody.js.map +1 -1
  17. package/models/components/v1accountleaderboardaccount.d.ts +3 -3
  18. package/models/components/v1accountleaderboardaccount.d.ts.map +1 -1
  19. package/models/components/v1accountleaderboardaccount.js +3 -3
  20. package/models/components/v1accountleaderboardaccount.js.map +1 -1
  21. package/models/components/v1appbadge.d.ts +25 -7
  22. package/models/components/v1appbadge.d.ts.map +1 -1
  23. package/models/components/v1appbadge.js +19 -7
  24. package/models/components/v1appbadge.js.map +1 -1
  25. package/models/components/v1badgesresponsebody.d.ts +3 -3
  26. package/models/components/v1badgesresponsebody.d.ts.map +1 -1
  27. package/models/components/v1badgesresponsebody.js +3 -3
  28. package/models/components/v1badgesresponsebody.js.map +1 -1
  29. package/models/components/v1updatesettingsrequestbody.d.ts +48 -0
  30. package/models/components/v1updatesettingsrequestbody.d.ts.map +1 -1
  31. package/models/components/v1updatesettingsrequestbody.js +29 -1
  32. package/models/components/v1updatesettingsrequestbody.js.map +1 -1
  33. package/package.json +1 -1
  34. package/src/lib/config.ts +2 -2
  35. package/src/models/components/{leaderboardaccountbadgeinfo.ts → accountbadgeinfo.ts} +14 -14
  36. package/src/models/components/index.ts +1 -5
  37. package/src/models/components/v1accountdatapointsresponsebody.ts +14 -20
  38. package/src/models/components/v1accountleaderboardaccount.ts +9 -9
  39. package/src/models/components/v1appbadge.ts +47 -17
  40. package/src/models/components/v1badgesresponsebody.ts +9 -9
  41. package/src/models/components/v1updatesettingsrequestbody.ts +46 -0
  42. package/models/components/leaderboardaccountbadgeinfo.d.ts +0 -38
  43. package/models/components/leaderboardaccountbadgeinfo.d.ts.map +0 -1
  44. package/models/components/leaderboardaccountbadgeinfo.js.map +0 -1
  45. package/models/components/v1accountappbadge.d.ts +0 -55
  46. package/models/components/v1accountappbadge.d.ts.map +0 -1
  47. package/models/components/v1accountappbadge.js +0 -80
  48. package/models/components/v1accountappbadge.js.map +0 -1
  49. package/models/components/v1accountbadgecompletion.d.ts +0 -29
  50. package/models/components/v1accountbadgecompletion.d.ts.map +0 -1
  51. package/models/components/v1accountbadgecompletion.js +0 -54
  52. package/models/components/v1accountbadgecompletion.js.map +0 -1
  53. package/models/components/v1accountbadgemostxpdatapoint.d.ts +0 -83
  54. package/models/components/v1accountbadgemostxpdatapoint.d.ts.map +0 -1
  55. package/models/components/v1accountbadgemostxpdatapoint.js +0 -72
  56. package/models/components/v1accountbadgemostxpdatapoint.js.map +0 -1
  57. package/models/components/v1accountbadgescarcitydatapoint.d.ts +0 -83
  58. package/models/components/v1accountbadgescarcitydatapoint.d.ts.map +0 -1
  59. package/models/components/v1accountbadgescarcitydatapoint.js +0 -72
  60. package/models/components/v1accountbadgescarcitydatapoint.js.map +0 -1
  61. package/src/models/components/v1accountappbadge.ts +0 -107
  62. package/src/models/components/v1accountbadgecompletion.ts +0 -55
  63. package/src/models/components/v1accountbadgemostxpdatapoint.ts +0 -127
  64. package/src/models/components/v1accountbadgescarcitydatapoint.ts +0 -127
@@ -11,6 +11,24 @@ import {
11
11
  EmailNotification$outboundSchema,
12
12
  } from "./emailnotification.js";
13
13
 
14
+ /**
15
+ * The role the account should have between one of the 6 donation roles
16
+ */
17
+ export const V1UpdateSettingsRequestBodyRole = {
18
+ Amber: "amber",
19
+ Amethyst: "amethyst",
20
+ Emerald: "emerald",
21
+ Sapphire: "sapphire",
22
+ Ruby: "ruby",
23
+ Diamond: "diamond",
24
+ } as const;
25
+ /**
26
+ * The role the account should have between one of the 6 donation roles
27
+ */
28
+ export type V1UpdateSettingsRequestBodyRole = ClosedEnum<
29
+ typeof V1UpdateSettingsRequestBodyRole
30
+ >;
31
+
14
32
  /**
15
33
  * The theme the account should use, only if the account is private
16
34
  */
@@ -50,6 +68,10 @@ export type V1UpdateSettingsRequestBody = {
50
68
  * The language the account should use, only if the account is private
51
69
  */
52
70
  language: string;
71
+ /**
72
+ * The role the account should have between one of the 6 donation roles
73
+ */
74
+ role: V1UpdateSettingsRequestBodyRole | null;
53
75
  /**
54
76
  * The theme the account should use, only if the account is private
55
77
  */
@@ -60,6 +82,27 @@ export type V1UpdateSettingsRequestBody = {
60
82
  vanity: string;
61
83
  };
62
84
 
85
+ /** @internal */
86
+ export const V1UpdateSettingsRequestBodyRole$inboundSchema: z.ZodNativeEnum<
87
+ typeof V1UpdateSettingsRequestBodyRole
88
+ > = z.nativeEnum(V1UpdateSettingsRequestBodyRole);
89
+
90
+ /** @internal */
91
+ export const V1UpdateSettingsRequestBodyRole$outboundSchema: z.ZodNativeEnum<
92
+ typeof V1UpdateSettingsRequestBodyRole
93
+ > = V1UpdateSettingsRequestBodyRole$inboundSchema;
94
+
95
+ /**
96
+ * @internal
97
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
98
+ */
99
+ export namespace V1UpdateSettingsRequestBodyRole$ {
100
+ /** @deprecated use `V1UpdateSettingsRequestBodyRole$inboundSchema` instead. */
101
+ export const inboundSchema = V1UpdateSettingsRequestBodyRole$inboundSchema;
102
+ /** @deprecated use `V1UpdateSettingsRequestBodyRole$outboundSchema` instead. */
103
+ export const outboundSchema = V1UpdateSettingsRequestBodyRole$outboundSchema;
104
+ }
105
+
63
106
  /** @internal */
64
107
  export const V1UpdateSettingsRequestBodyTheme$inboundSchema: z.ZodNativeEnum<
65
108
  typeof V1UpdateSettingsRequestBodyTheme
@@ -93,6 +136,7 @@ export const V1UpdateSettingsRequestBody$inboundSchema: z.ZodType<
93
136
  emailNotifications: z.nullable(z.array(EmailNotification$inboundSchema)),
94
137
  hidden: z.boolean(),
95
138
  language: z.string(),
139
+ role: z.nullable(V1UpdateSettingsRequestBodyRole$inboundSchema),
96
140
  theme: V1UpdateSettingsRequestBodyTheme$inboundSchema,
97
141
  vanity: z.string(),
98
142
  });
@@ -105,6 +149,7 @@ export type V1UpdateSettingsRequestBody$Outbound = {
105
149
  emailNotifications: Array<EmailNotification$Outbound> | null;
106
150
  hidden: boolean;
107
151
  language: string;
152
+ role: string | null;
108
153
  theme: string;
109
154
  vanity: string;
110
155
  };
@@ -121,6 +166,7 @@ export const V1UpdateSettingsRequestBody$outboundSchema: z.ZodType<
121
166
  emailNotifications: z.nullable(z.array(EmailNotification$outboundSchema)),
122
167
  hidden: z.boolean(),
123
168
  language: z.string(),
169
+ role: z.nullable(V1UpdateSettingsRequestBodyRole$outboundSchema),
124
170
  theme: V1UpdateSettingsRequestBodyTheme$outboundSchema,
125
171
  vanity: z.string(),
126
172
  });
@@ -1,38 +0,0 @@
1
- import * as z from "zod";
2
- export type LeaderboardAccountBadgeInfo = {
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
- * The xp of the badge
13
- */
14
- xp: number;
15
- };
16
- /** @internal */
17
- export declare const LeaderboardAccountBadgeInfo$inboundSchema: z.ZodType<LeaderboardAccountBadgeInfo, z.ZodTypeDef, unknown>;
18
- /** @internal */
19
- export type LeaderboardAccountBadgeInfo$Outbound = {
20
- completionTime: string;
21
- level: number;
22
- xp: number;
23
- };
24
- /** @internal */
25
- export declare const LeaderboardAccountBadgeInfo$outboundSchema: z.ZodType<LeaderboardAccountBadgeInfo$Outbound, z.ZodTypeDef, LeaderboardAccountBadgeInfo>;
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 LeaderboardAccountBadgeInfo$ {
31
- /** @deprecated use `LeaderboardAccountBadgeInfo$inboundSchema` instead. */
32
- const inboundSchema: z.ZodType<LeaderboardAccountBadgeInfo, z.ZodTypeDef, unknown>;
33
- /** @deprecated use `LeaderboardAccountBadgeInfo$outboundSchema` instead. */
34
- const outboundSchema: z.ZodType<LeaderboardAccountBadgeInfo$Outbound, z.ZodTypeDef, LeaderboardAccountBadgeInfo>;
35
- /** @deprecated use `LeaderboardAccountBadgeInfo$Outbound` instead. */
36
- type Outbound = LeaderboardAccountBadgeInfo$Outbound;
37
- }
38
- //# sourceMappingURL=leaderboardaccountbadgeinfo.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"leaderboardaccountbadgeinfo.d.ts","sourceRoot":"","sources":["../../src/models/components/leaderboardaccountbadgeinfo.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,MAAM,MAAM,2BAA2B,GAAG;IACxC;;OAEG;IACH,cAAc,EAAE,IAAI,CAAC;IACrB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,yCAAyC,EAAE,CAAC,CAAC,OAAO,CAC/D,2BAA2B,EAC3B,CAAC,CAAC,UAAU,EACZ,OAAO,CAOP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,oCAAoC,GAAG;IACjD,cAAc,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,0CAA0C,EAAE,CAAC,CAAC,OAAO,CAChE,oCAAoC,EACpC,CAAC,CAAC,UAAU,EACZ,2BAA2B,CAK3B,CAAC;AAEH;;;GAGG;AACH,yBAAiB,4BAA4B,CAAC;IAC5C,2EAA2E;IACpE,MAAM,aAAa,+DAA4C,CAAC;IACvE,4EAA4E;IACrE,MAAM,cAAc,4FAA6C,CAAC;IACzE,sEAAsE;IACtE,KAAY,QAAQ,GAAG,oCAAoC,CAAC;CAC7D"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"leaderboardaccountbadgeinfo.js","sourceRoot":"","sources":["../../src/models/components/leaderboardaccountbadgeinfo.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAiBzB,gBAAgB;AACH,QAAA,yCAAyC,GAIlD,CAAC,CAAC,MAAM,CAAC;IACX,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAClE,IAAI,IAAI,CAAC,CAAC,CAAC,CACZ;IACD,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;CACrB,CAAC,CAAC;AASH,gBAAgB;AACH,QAAA,0CAA0C,GAInD,CAAC,CAAC,MAAM,CAAC;IACX,cAAc,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;IACxD,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;CACrB,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,4BAA4B,CAO5C;AAPD,WAAiB,4BAA4B;IAC3C,2EAA2E;IAC9D,0CAAa,GAAG,iDAAyC,CAAC;IACvE,4EAA4E;IAC/D,2CAAc,GAAG,kDAA0C,CAAC;AAG3E,CAAC,EAPgB,4BAA4B,4CAA5B,4BAA4B,QAO5C"}
@@ -1,55 +0,0 @@
1
- import * as z from "zod";
2
- export type V1AccountAppBadge = {
3
- appId: number;
4
- appImage: string;
5
- appName: string;
6
- appShortName: string;
7
- badgeImage: string;
8
- completedAt: Date;
9
- isEvent: boolean;
10
- isFoil: boolean;
11
- isSale: boolean;
12
- level: number;
13
- name: string;
14
- price: number;
15
- publicId: string;
16
- scarcity: number;
17
- steamId: number;
18
- xp: number;
19
- };
20
- /** @internal */
21
- export declare const V1AccountAppBadge$inboundSchema: z.ZodType<V1AccountAppBadge, z.ZodTypeDef, unknown>;
22
- /** @internal */
23
- export type V1AccountAppBadge$Outbound = {
24
- appId: number;
25
- appImage: string;
26
- appName: string;
27
- appShortName: string;
28
- badgeImage: string;
29
- completedAt: string;
30
- isEvent: boolean;
31
- isFoil: boolean;
32
- isSale: boolean;
33
- level: number;
34
- name: string;
35
- price: number;
36
- publicId: string;
37
- scarcity: number;
38
- steamId: number;
39
- xp: number;
40
- };
41
- /** @internal */
42
- export declare const V1AccountAppBadge$outboundSchema: z.ZodType<V1AccountAppBadge$Outbound, z.ZodTypeDef, V1AccountAppBadge>;
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
- export declare namespace V1AccountAppBadge$ {
48
- /** @deprecated use `V1AccountAppBadge$inboundSchema` instead. */
49
- const inboundSchema: z.ZodType<V1AccountAppBadge, z.ZodTypeDef, unknown>;
50
- /** @deprecated use `V1AccountAppBadge$outboundSchema` instead. */
51
- const outboundSchema: z.ZodType<V1AccountAppBadge$Outbound, z.ZodTypeDef, V1AccountAppBadge>;
52
- /** @deprecated use `V1AccountAppBadge$Outbound` instead. */
53
- type Outbound = V1AccountAppBadge$Outbound;
54
- }
55
- //# sourceMappingURL=v1accountappbadge.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"v1accountappbadge.d.ts","sourceRoot":"","sources":["../../src/models/components/v1accountappbadge.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,MAAM,MAAM,iBAAiB,GAAG;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,IAAI,CAAC;IAClB,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,OAAO,CAAC;IAChB,MAAM,EAAE,OAAO,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CACrD,iBAAiB,EACjB,CAAC,CAAC,UAAU,EACZ,OAAO,CAoBP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,0BAA0B,GAAG;IACvC,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,OAAO,CAAC;IAChB,MAAM,EAAE,OAAO,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,OAAO,CACtD,0BAA0B,EAC1B,CAAC,CAAC,UAAU,EACZ,iBAAiB,CAkBjB,CAAC;AAEH;;;GAGG;AACH,yBAAiB,kBAAkB,CAAC;IAClC,iEAAiE;IAC1D,MAAM,aAAa,qDAAkC,CAAC;IAC7D,kEAAkE;IAC3D,MAAM,cAAc,wEAAmC,CAAC;IAC/D,4DAA4D;IAC5D,KAAY,QAAQ,GAAG,0BAA0B,CAAC;CACnD"}
@@ -1,80 +0,0 @@
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.V1AccountAppBadge$ = exports.V1AccountAppBadge$outboundSchema = exports.V1AccountAppBadge$inboundSchema = void 0;
30
- const z = __importStar(require("zod"));
31
- /** @internal */
32
- exports.V1AccountAppBadge$inboundSchema = z.object({
33
- appId: z.number().int(),
34
- appImage: z.string(),
35
- appName: z.string(),
36
- appShortName: z.string(),
37
- badgeImage: z.string(),
38
- completedAt: z.string().datetime({ offset: true }).transform(v => new Date(v)),
39
- isEvent: z.boolean(),
40
- isFoil: z.boolean(),
41
- isSale: z.boolean(),
42
- level: z.number().int(),
43
- name: z.string(),
44
- price: z.number().int(),
45
- publicId: z.string(),
46
- scarcity: z.number().int(),
47
- steamId: z.number().int(),
48
- xp: z.number().int(),
49
- });
50
- /** @internal */
51
- exports.V1AccountAppBadge$outboundSchema = z.object({
52
- appId: z.number().int(),
53
- appImage: z.string(),
54
- appName: z.string(),
55
- appShortName: z.string(),
56
- badgeImage: z.string(),
57
- completedAt: z.date().transform(v => v.toISOString()),
58
- isEvent: z.boolean(),
59
- isFoil: z.boolean(),
60
- isSale: z.boolean(),
61
- level: z.number().int(),
62
- name: z.string(),
63
- price: z.number().int(),
64
- publicId: z.string(),
65
- scarcity: z.number().int(),
66
- steamId: z.number().int(),
67
- xp: z.number().int(),
68
- });
69
- /**
70
- * @internal
71
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
72
- */
73
- var V1AccountAppBadge$;
74
- (function (V1AccountAppBadge$) {
75
- /** @deprecated use `V1AccountAppBadge$inboundSchema` instead. */
76
- V1AccountAppBadge$.inboundSchema = exports.V1AccountAppBadge$inboundSchema;
77
- /** @deprecated use `V1AccountAppBadge$outboundSchema` instead. */
78
- V1AccountAppBadge$.outboundSchema = exports.V1AccountAppBadge$outboundSchema;
79
- })(V1AccountAppBadge$ || (exports.V1AccountAppBadge$ = V1AccountAppBadge$ = {}));
80
- //# sourceMappingURL=v1accountappbadge.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"v1accountappbadge.js","sourceRoot":"","sources":["../../src/models/components/v1accountappbadge.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAqBzB,gBAAgB;AACH,QAAA,+BAA+B,GAIxC,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAC/D,IAAI,IAAI,CAAC,CAAC,CAAC,CACZ;IACD,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE;IACpB,MAAM,EAAE,CAAC,CAAC,OAAO,EAAE;IACnB,MAAM,EAAE,CAAC,CAAC,OAAO,EAAE;IACnB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IAC1B,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACzB,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;CACrB,CAAC,CAAC;AAsBH,gBAAgB;AACH,QAAA,gCAAgC,GAIzC,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,WAAW,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;IACrD,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE;IACpB,MAAM,EAAE,CAAC,CAAC,OAAO,EAAE;IACnB,MAAM,EAAE,CAAC,CAAC,OAAO,EAAE;IACnB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IAC1B,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACzB,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;CACrB,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,kBAAkB,CAOlC;AAPD,WAAiB,kBAAkB;IACjC,iEAAiE;IACpD,gCAAa,GAAG,uCAA+B,CAAC;IAC7D,kEAAkE;IACrD,iCAAc,GAAG,wCAAgC,CAAC;AAGjE,CAAC,EAPgB,kBAAkB,kCAAlB,kBAAkB,QAOlC"}
@@ -1,29 +0,0 @@
1
- import * as z from "zod";
2
- export type V1AccountBadgeCompletion = {
3
- completedAt: Date;
4
- level: number;
5
- xp: number;
6
- };
7
- /** @internal */
8
- export declare const V1AccountBadgeCompletion$inboundSchema: z.ZodType<V1AccountBadgeCompletion, z.ZodTypeDef, unknown>;
9
- /** @internal */
10
- export type V1AccountBadgeCompletion$Outbound = {
11
- completedAt: string;
12
- level: number;
13
- xp: number;
14
- };
15
- /** @internal */
16
- export declare const V1AccountBadgeCompletion$outboundSchema: z.ZodType<V1AccountBadgeCompletion$Outbound, z.ZodTypeDef, V1AccountBadgeCompletion>;
17
- /**
18
- * @internal
19
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
20
- */
21
- export declare namespace V1AccountBadgeCompletion$ {
22
- /** @deprecated use `V1AccountBadgeCompletion$inboundSchema` instead. */
23
- const inboundSchema: z.ZodType<V1AccountBadgeCompletion, z.ZodTypeDef, unknown>;
24
- /** @deprecated use `V1AccountBadgeCompletion$outboundSchema` instead. */
25
- const outboundSchema: z.ZodType<V1AccountBadgeCompletion$Outbound, z.ZodTypeDef, V1AccountBadgeCompletion>;
26
- /** @deprecated use `V1AccountBadgeCompletion$Outbound` instead. */
27
- type Outbound = V1AccountBadgeCompletion$Outbound;
28
- }
29
- //# sourceMappingURL=v1accountbadgecompletion.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"v1accountbadgecompletion.d.ts","sourceRoot":"","sources":["../../src/models/components/v1accountbadgecompletion.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,MAAM,MAAM,wBAAwB,GAAG;IACrC,WAAW,EAAE,IAAI,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,sCAAsC,EAAE,CAAC,CAAC,OAAO,CAC5D,wBAAwB,EACxB,CAAC,CAAC,UAAU,EACZ,OAAO,CAOP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,iCAAiC,GAAG;IAC9C,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,uCAAuC,EAAE,CAAC,CAAC,OAAO,CAC7D,iCAAiC,EACjC,CAAC,CAAC,UAAU,EACZ,wBAAwB,CAKxB,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,54 +0,0 @@
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.V1AccountBadgeCompletion$ = exports.V1AccountBadgeCompletion$outboundSchema = exports.V1AccountBadgeCompletion$inboundSchema = void 0;
30
- const z = __importStar(require("zod"));
31
- /** @internal */
32
- exports.V1AccountBadgeCompletion$inboundSchema = z.object({
33
- completedAt: z.string().datetime({ offset: true }).transform(v => new Date(v)),
34
- level: z.number().int(),
35
- xp: z.number().int(),
36
- });
37
- /** @internal */
38
- exports.V1AccountBadgeCompletion$outboundSchema = z.object({
39
- completedAt: z.date().transform(v => v.toISOString()),
40
- level: z.number().int(),
41
- xp: z.number().int(),
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 V1AccountBadgeCompletion$;
48
- (function (V1AccountBadgeCompletion$) {
49
- /** @deprecated use `V1AccountBadgeCompletion$inboundSchema` instead. */
50
- V1AccountBadgeCompletion$.inboundSchema = exports.V1AccountBadgeCompletion$inboundSchema;
51
- /** @deprecated use `V1AccountBadgeCompletion$outboundSchema` instead. */
52
- V1AccountBadgeCompletion$.outboundSchema = exports.V1AccountBadgeCompletion$outboundSchema;
53
- })(V1AccountBadgeCompletion$ || (exports.V1AccountBadgeCompletion$ = V1AccountBadgeCompletion$ = {}));
54
- //# sourceMappingURL=v1accountbadgecompletion.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"v1accountbadgecompletion.js","sourceRoot":"","sources":["../../src/models/components/v1accountbadgecompletion.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAQzB,gBAAgB;AACH,QAAA,sCAAsC,GAI/C,CAAC,CAAC,MAAM,CAAC;IACX,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAC/D,IAAI,IAAI,CAAC,CAAC,CAAC,CACZ;IACD,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;CACrB,CAAC,CAAC;AASH,gBAAgB;AACH,QAAA,uCAAuC,GAIhD,CAAC,CAAC,MAAM,CAAC;IACX,WAAW,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;IACrD,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;CACrB,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"}
@@ -1,83 +0,0 @@
1
- import * as z from "zod";
2
- export type V1AccountBadgeMostXpDataPoint = {
3
- /**
4
- * The app id
5
- */
6
- appId: number;
7
- /**
8
- * The badge completed at
9
- */
10
- badgeCompletedAt: Date;
11
- /**
12
- * The badge id
13
- */
14
- badgeId: string;
15
- /**
16
- * The badge image
17
- */
18
- badgeImage: string;
19
- /**
20
- * Whether the badge is foil
21
- */
22
- badgeIsFoil: boolean;
23
- /**
24
- * The badge level
25
- */
26
- badgeLevel: number;
27
- /**
28
- * The badge name
29
- */
30
- badgeName: string;
31
- /**
32
- * The badge scarcity
33
- */
34
- badgeScarcity: number;
35
- /**
36
- * The badge steam id
37
- */
38
- badgeSteamID: number;
39
- /**
40
- * The badge xp
41
- */
42
- badgeXP: number;
43
- /**
44
- * The image of the app
45
- */
46
- image: string;
47
- /**
48
- * The name of the app
49
- */
50
- name: string;
51
- };
52
- /** @internal */
53
- export declare const V1AccountBadgeMostXpDataPoint$inboundSchema: z.ZodType<V1AccountBadgeMostXpDataPoint, z.ZodTypeDef, unknown>;
54
- /** @internal */
55
- export type V1AccountBadgeMostXpDataPoint$Outbound = {
56
- appId: number;
57
- badgeCompletedAt: string;
58
- badgeId: string;
59
- badgeImage: string;
60
- badgeIsFoil: boolean;
61
- badgeLevel: number;
62
- badgeName: string;
63
- badgeScarcity: number;
64
- badgeSteamID: number;
65
- badgeXP: number;
66
- image: string;
67
- name: string;
68
- };
69
- /** @internal */
70
- export declare const V1AccountBadgeMostXpDataPoint$outboundSchema: z.ZodType<V1AccountBadgeMostXpDataPoint$Outbound, z.ZodTypeDef, V1AccountBadgeMostXpDataPoint>;
71
- /**
72
- * @internal
73
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
74
- */
75
- export declare namespace V1AccountBadgeMostXpDataPoint$ {
76
- /** @deprecated use `V1AccountBadgeMostXpDataPoint$inboundSchema` instead. */
77
- const inboundSchema: z.ZodType<V1AccountBadgeMostXpDataPoint, z.ZodTypeDef, unknown>;
78
- /** @deprecated use `V1AccountBadgeMostXpDataPoint$outboundSchema` instead. */
79
- const outboundSchema: z.ZodType<V1AccountBadgeMostXpDataPoint$Outbound, z.ZodTypeDef, V1AccountBadgeMostXpDataPoint>;
80
- /** @deprecated use `V1AccountBadgeMostXpDataPoint$Outbound` instead. */
81
- type Outbound = V1AccountBadgeMostXpDataPoint$Outbound;
82
- }
83
- //# sourceMappingURL=v1accountbadgemostxpdatapoint.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"v1accountbadgemostxpdatapoint.d.ts","sourceRoot":"","sources":["../../src/models/components/v1accountbadgemostxpdatapoint.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,gBAAgB,EAAE,IAAI,CAAC;IACvB;;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,YAAY,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;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,CAgBP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,sCAAsC,GAAG;IACnD,KAAK,EAAE,MAAM,CAAC;IACd,gBAAgB,EAAE,MAAM,CAAC;IACzB,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,YAAY,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,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,CAc7B,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,72 +0,0 @@
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.V1AccountBadgeMostXpDataPoint$ = exports.V1AccountBadgeMostXpDataPoint$outboundSchema = exports.V1AccountBadgeMostXpDataPoint$inboundSchema = void 0;
30
- const z = __importStar(require("zod"));
31
- /** @internal */
32
- exports.V1AccountBadgeMostXpDataPoint$inboundSchema = z.object({
33
- appId: z.number().int(),
34
- badgeCompletedAt: z.string().datetime({ offset: true }).transform(v => new Date(v)),
35
- badgeId: z.string(),
36
- badgeImage: z.string(),
37
- badgeIsFoil: z.boolean(),
38
- badgeLevel: z.number().int(),
39
- badgeName: z.string(),
40
- badgeScarcity: z.number().int(),
41
- badgeSteamID: z.number().int(),
42
- badgeXP: z.number().int(),
43
- image: z.string(),
44
- name: z.string(),
45
- });
46
- /** @internal */
47
- exports.V1AccountBadgeMostXpDataPoint$outboundSchema = z.object({
48
- appId: z.number().int(),
49
- badgeCompletedAt: z.date().transform(v => v.toISOString()),
50
- badgeId: z.string(),
51
- badgeImage: z.string(),
52
- badgeIsFoil: z.boolean(),
53
- badgeLevel: z.number().int(),
54
- badgeName: z.string(),
55
- badgeScarcity: z.number().int(),
56
- badgeSteamID: z.number().int(),
57
- badgeXP: z.number().int(),
58
- image: z.string(),
59
- name: z.string(),
60
- });
61
- /**
62
- * @internal
63
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
64
- */
65
- var V1AccountBadgeMostXpDataPoint$;
66
- (function (V1AccountBadgeMostXpDataPoint$) {
67
- /** @deprecated use `V1AccountBadgeMostXpDataPoint$inboundSchema` instead. */
68
- V1AccountBadgeMostXpDataPoint$.inboundSchema = exports.V1AccountBadgeMostXpDataPoint$inboundSchema;
69
- /** @deprecated use `V1AccountBadgeMostXpDataPoint$outboundSchema` instead. */
70
- V1AccountBadgeMostXpDataPoint$.outboundSchema = exports.V1AccountBadgeMostXpDataPoint$outboundSchema;
71
- })(V1AccountBadgeMostXpDataPoint$ || (exports.V1AccountBadgeMostXpDataPoint$ = V1AccountBadgeMostXpDataPoint$ = {}));
72
- //# sourceMappingURL=v1accountbadgemostxpdatapoint.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"v1accountbadgemostxpdatapoint.js","sourceRoot":"","sources":["../../src/models/components/v1accountbadgemostxpdatapoint.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAqDzB,gBAAgB;AACH,QAAA,2CAA2C,GAIpD,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CACpE,IAAI,IAAI,CAAC,CAAC,CAAC,CACZ;IACD,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,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IAC9B,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACzB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAkBH,gBAAgB;AACH,QAAA,4CAA4C,GAIrD,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,gBAAgB,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC;IAC1D,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,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IAC9B,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACzB,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,83 +0,0 @@
1
- import * as z from "zod";
2
- export type V1AccountBadgeScarcityDataPoint = {
3
- /**
4
- * The app id
5
- */
6
- appId: number;
7
- /**
8
- * The badge completed at
9
- */
10
- badgeCompletedAt: Date;
11
- /**
12
- * The badge id
13
- */
14
- badgeId: string;
15
- /**
16
- * The badge image
17
- */
18
- badgeImage: string;
19
- /**
20
- * Whether the badge is foil
21
- */
22
- badgeIsFoil: boolean;
23
- /**
24
- * The badge level
25
- */
26
- badgeLevel: number;
27
- /**
28
- * The badge name
29
- */
30
- badgeName: string;
31
- /**
32
- * The badge scarcity
33
- */
34
- badgeScarcity: number;
35
- /**
36
- * The badge steam id
37
- */
38
- badgeSteamId: number;
39
- /**
40
- * The badge xp
41
- */
42
- badgeXP: number;
43
- /**
44
- * The image of the app
45
- */
46
- image: string;
47
- /**
48
- * The name of the app
49
- */
50
- name: string;
51
- };
52
- /** @internal */
53
- export declare const V1AccountBadgeScarcityDataPoint$inboundSchema: z.ZodType<V1AccountBadgeScarcityDataPoint, z.ZodTypeDef, unknown>;
54
- /** @internal */
55
- export type V1AccountBadgeScarcityDataPoint$Outbound = {
56
- appId: number;
57
- badgeCompletedAt: string;
58
- badgeId: string;
59
- badgeImage: string;
60
- badgeIsFoil: boolean;
61
- badgeLevel: number;
62
- badgeName: string;
63
- badgeScarcity: number;
64
- badgeSteamId: number;
65
- badgeXP: number;
66
- image: string;
67
- name: string;
68
- };
69
- /** @internal */
70
- export declare const V1AccountBadgeScarcityDataPoint$outboundSchema: z.ZodType<V1AccountBadgeScarcityDataPoint$Outbound, z.ZodTypeDef, V1AccountBadgeScarcityDataPoint>;
71
- /**
72
- * @internal
73
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
74
- */
75
- export declare namespace V1AccountBadgeScarcityDataPoint$ {
76
- /** @deprecated use `V1AccountBadgeScarcityDataPoint$inboundSchema` instead. */
77
- const inboundSchema: z.ZodType<V1AccountBadgeScarcityDataPoint, z.ZodTypeDef, unknown>;
78
- /** @deprecated use `V1AccountBadgeScarcityDataPoint$outboundSchema` instead. */
79
- const outboundSchema: z.ZodType<V1AccountBadgeScarcityDataPoint$Outbound, z.ZodTypeDef, V1AccountBadgeScarcityDataPoint>;
80
- /** @deprecated use `V1AccountBadgeScarcityDataPoint$Outbound` instead. */
81
- type Outbound = V1AccountBadgeScarcityDataPoint$Outbound;
82
- }
83
- //# sourceMappingURL=v1accountbadgescarcitydatapoint.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"v1accountbadgescarcitydatapoint.d.ts","sourceRoot":"","sources":["../../src/models/components/v1accountbadgescarcitydatapoint.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,MAAM,MAAM,+BAA+B,GAAG;IAC5C;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,gBAAgB,EAAE,IAAI,CAAC;IACvB;;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,YAAY,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,6CAA6C,EAAE,CAAC,CAAC,OAAO,CACnE,+BAA+B,EAC/B,CAAC,CAAC,UAAU,EACZ,OAAO,CAgBP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,wCAAwC,GAAG;IACrD,KAAK,EAAE,MAAM,CAAC;IACd,gBAAgB,EAAE,MAAM,CAAC;IACzB,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,YAAY,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,8CAA8C,EAAE,CAAC,CAAC,OAAO,CACpE,wCAAwC,EACxC,CAAC,CAAC,UAAU,EACZ,+BAA+B,CAc/B,CAAC;AAEH;;;GAGG;AACH,yBAAiB,gCAAgC,CAAC;IAChD,+EAA+E;IACxE,MAAM,aAAa,mEAAgD,CAAC;IAC3E,gFAAgF;IACzE,MAAM,cAAc,oGAAiD,CAAC;IAC7E,0EAA0E;IAC1E,KAAY,QAAQ,GAAG,wCAAwC,CAAC;CACjE"}