@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
|
@@ -29,15 +29,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
29
29
|
exports.V1AccountDataPointsResponseBody$ = exports.V1AccountDataPointsResponseBody$outboundSchema = exports.V1AccountDataPointsResponseBody$inboundSchema = void 0;
|
|
30
30
|
const z = __importStar(require("zod"));
|
|
31
31
|
const primitives_js_1 = require("../../lib/primitives.js");
|
|
32
|
-
const
|
|
33
|
-
const
|
|
34
|
-
const
|
|
32
|
+
const v1accountbadgemostxpdatapoint_js_1 = require("./v1accountbadgemostxpdatapoint.js");
|
|
33
|
+
const v1accountbadgescarcitydatapoint_js_1 = require("./v1accountbadgescarcitydatapoint.js");
|
|
34
|
+
const v1accountplaytimedatapoint_js_1 = require("./v1accountplaytimedatapoint.js");
|
|
35
35
|
/** @internal */
|
|
36
36
|
exports.V1AccountDataPointsResponseBody$inboundSchema = z.object({
|
|
37
37
|
$schema: z.string().optional(),
|
|
38
|
-
mostXp: z.nullable(z.array(
|
|
39
|
-
playtime: z.nullable(z.array(
|
|
40
|
-
scarcity: z.nullable(z.array(
|
|
38
|
+
mostXp: z.nullable(z.array(v1accountbadgemostxpdatapoint_js_1.V1AccountBadgeMostXpDataPoint$inboundSchema)),
|
|
39
|
+
playtime: z.nullable(z.array(v1accountplaytimedatapoint_js_1.V1AccountPlaytimeDataPoint$inboundSchema)),
|
|
40
|
+
scarcity: z.nullable(z.array(v1accountbadgescarcitydatapoint_js_1.V1AccountBadgeScarcityDataPoint$inboundSchema)),
|
|
41
41
|
xp: z.record(z.record(z.number().int())),
|
|
42
42
|
}).transform((v) => {
|
|
43
43
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -47,9 +47,9 @@ exports.V1AccountDataPointsResponseBody$inboundSchema = z.object({
|
|
|
47
47
|
/** @internal */
|
|
48
48
|
exports.V1AccountDataPointsResponseBody$outboundSchema = z.object({
|
|
49
49
|
dollarSchema: z.string().optional(),
|
|
50
|
-
mostXp: z.nullable(z.array(
|
|
51
|
-
playtime: z.nullable(z.array(
|
|
52
|
-
scarcity: z.nullable(z.array(
|
|
50
|
+
mostXp: z.nullable(z.array(v1accountbadgemostxpdatapoint_js_1.V1AccountBadgeMostXpDataPoint$outboundSchema)),
|
|
51
|
+
playtime: z.nullable(z.array(v1accountplaytimedatapoint_js_1.V1AccountPlaytimeDataPoint$outboundSchema)),
|
|
52
|
+
scarcity: z.nullable(z.array(v1accountbadgescarcitydatapoint_js_1.V1AccountBadgeScarcityDataPoint$outboundSchema)),
|
|
53
53
|
xp: z.record(z.record(z.number().int())),
|
|
54
54
|
}).transform((v) => {
|
|
55
55
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"v1accountdatapointsresponsebody.js","sourceRoot":"","sources":["../../src/models/components/v1accountdatapointsresponsebody.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AACzB,2DAA0D;AAC1D,
|
|
1
|
+
{"version":3,"file":"v1accountdatapointsresponsebody.js","sourceRoot":"","sources":["../../src/models/components/v1accountdatapointsresponsebody.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AACzB,2DAA0D;AAC1D,yFAK4C;AAC5C,6FAK8C;AAC9C,mFAKyC;AAazC,gBAAgB;AACH,QAAA,6CAA6C,GAItD,CAAC,CAAC,MAAM,CAAC;IACX,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,8EAA2C,CAAC,CAAC;IACxE,QAAQ,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,wEAAwC,CAAC,CAAC;IACvE,QAAQ,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,kFAA6C,CAAC,CAAC;IAC5E,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,CAAC;CACzC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,SAAS,EAAE,cAAc;KAC1B,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAWH,gBAAgB;AACH,QAAA,8CAA8C,GAIvD,CAAC,CAAC,MAAM,CAAC;IACX,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,+EAA4C,CAAC,CAAC;IACzE,QAAQ,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,yEAAyC,CAAC,CAAC;IACxE,QAAQ,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,mFAA8C,CAAC,CAAC;IAC7E,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,CAAC;CACzC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,YAAY,EAAE,SAAS;KACxB,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,gCAAgC,CAOhD;AAPD,WAAiB,gCAAgC;IAC/C,+EAA+E;IAClE,8CAAa,GAAG,qDAA6C,CAAC;IAC3E,gFAAgF;IACnE,+CAAc,GAAG,sDAA8C,CAAC;AAG/E,CAAC,EAPgB,gCAAgC,gDAAhC,gCAAgC,QAOhD"}
|
|
@@ -7,6 +7,10 @@ export type V1AccountLeaderboardAccount = {
|
|
|
7
7
|
* The cost of an app
|
|
8
8
|
*/
|
|
9
9
|
appCost: number;
|
|
10
|
+
/**
|
|
11
|
+
* For the app playtime leaderboard
|
|
12
|
+
*/
|
|
13
|
+
appPlaytime: number | null;
|
|
10
14
|
/**
|
|
11
15
|
* The number of apps the account has
|
|
12
16
|
*/
|
|
@@ -142,6 +146,7 @@ export declare const V1AccountLeaderboardAccount$inboundSchema: z.ZodType<V1Acco
|
|
|
142
146
|
/** @internal */
|
|
143
147
|
export type V1AccountLeaderboardAccount$Outbound = {
|
|
144
148
|
appCost: number;
|
|
149
|
+
appPlaytime: number | null;
|
|
145
150
|
apps: number;
|
|
146
151
|
avatar: string;
|
|
147
152
|
averagePlaytime: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"v1accountleaderboardaccount.d.ts","sourceRoot":"","sources":["../../src/models/components/v1accountleaderboardaccount.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EACL,2BAA2B,EAE3B,oCAAoC,EAErC,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EACL,QAAQ,EAER,iBAAiB,EAElB,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,IAAI,EAEJ,aAAa,EAEd,MAAM,WAAW,CAAC;AAEnB,MAAM,MAAM,2BAA2B,GAAG;IACxC;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,CAAC,EAAE,2BAA2B,GAAG,IAAI,GAAG,SAAS,CAAC;IAC3D;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,QAAQ,GAAG,IAAI,GAAG,SAAS,CAAC;IACnC,OAAO,CAAC,EAAE,QAAQ,GAAG,IAAI,GAAG,SAAS,CAAC;IACtC;;OAEG;IACH,SAAS,EAAE,IAAI,CAAC;IAChB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,MAAM,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,QAAQ,GAAG,IAAI,GAAG,SAAS,CAAC;IACrC;;OAEG;IACH,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IAC1B,KAAK,CAAC,EAAE,QAAQ,GAAG,IAAI,GAAG,SAAS,CAAC;IACpC;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;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,
|
|
1
|
+
{"version":3,"file":"v1accountleaderboardaccount.d.ts","sourceRoot":"","sources":["../../src/models/components/v1accountleaderboardaccount.ts"],"names":[],"mappings":"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"}
|
|
@@ -34,6 +34,7 @@ const role_js_1 = require("./role.js");
|
|
|
34
34
|
/** @internal */
|
|
35
35
|
exports.V1AccountLeaderboardAccount$inboundSchema = z.object({
|
|
36
36
|
appCost: z.number().int(),
|
|
37
|
+
appPlaytime: z.nullable(z.number().int()),
|
|
37
38
|
apps: z.number().int(),
|
|
38
39
|
avatar: z.string(),
|
|
39
40
|
averagePlaytime: z.number().int(),
|
|
@@ -74,6 +75,7 @@ exports.V1AccountLeaderboardAccount$inboundSchema = z.object({
|
|
|
74
75
|
/** @internal */
|
|
75
76
|
exports.V1AccountLeaderboardAccount$outboundSchema = z.object({
|
|
76
77
|
appCost: z.number().int(),
|
|
78
|
+
appPlaytime: z.nullable(z.number().int()),
|
|
77
79
|
apps: z.number().int(),
|
|
78
80
|
avatar: z.string(),
|
|
79
81
|
averagePlaytime: z.number().int(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"v1accountleaderboardaccount.js","sourceRoot":"","sources":["../../src/models/components/v1accountleaderboardaccount.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AACzB,qFAK0C;AAC1C,+CAKuB;AACvB,uCAKmB;
|
|
1
|
+
{"version":3,"file":"v1accountleaderboardaccount.js","sourceRoot":"","sources":["../../src/models/components/v1accountleaderboardaccount.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import * as z from "zod";
|
|
2
|
+
export type V1AccountPlaytimeDataPoint = {
|
|
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 V1AccountPlaytimeDataPoint$inboundSchema: z.ZodType<V1AccountPlaytimeDataPoint, z.ZodTypeDef, unknown>;
|
|
22
|
+
/** @internal */
|
|
23
|
+
export type V1AccountPlaytimeDataPoint$Outbound = {
|
|
24
|
+
appId: number;
|
|
25
|
+
image: string;
|
|
26
|
+
name: string;
|
|
27
|
+
playtime: number;
|
|
28
|
+
};
|
|
29
|
+
/** @internal */
|
|
30
|
+
export declare const V1AccountPlaytimeDataPoint$outboundSchema: z.ZodType<V1AccountPlaytimeDataPoint$Outbound, z.ZodTypeDef, V1AccountPlaytimeDataPoint>;
|
|
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 V1AccountPlaytimeDataPoint$ {
|
|
36
|
+
/** @deprecated use `V1AccountPlaytimeDataPoint$inboundSchema` instead. */
|
|
37
|
+
const inboundSchema: z.ZodType<V1AccountPlaytimeDataPoint, z.ZodTypeDef, unknown>;
|
|
38
|
+
/** @deprecated use `V1AccountPlaytimeDataPoint$outboundSchema` instead. */
|
|
39
|
+
const outboundSchema: z.ZodType<V1AccountPlaytimeDataPoint$Outbound, z.ZodTypeDef, V1AccountPlaytimeDataPoint>;
|
|
40
|
+
/** @deprecated use `V1AccountPlaytimeDataPoint$Outbound` instead. */
|
|
41
|
+
type Outbound = V1AccountPlaytimeDataPoint$Outbound;
|
|
42
|
+
}
|
|
43
|
+
//# sourceMappingURL=v1accountplaytimedatapoint.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"v1accountplaytimedatapoint.d.ts","sourceRoot":"","sources":["../../src/models/components/v1accountplaytimedatapoint.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,MAAM,MAAM,0BAA0B,GAAG;IACvC;;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,wCAAwC,EAAE,CAAC,CAAC,OAAO,CAC9D,0BAA0B,EAC1B,CAAC,CAAC,UAAU,EACZ,OAAO,CAMP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,mCAAmC,GAAG;IAChD,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,yCAAyC,EAAE,CAAC,CAAC,OAAO,CAC/D,mCAAmC,EACnC,CAAC,CAAC,UAAU,EACZ,0BAA0B,CAM1B,CAAC;AAEH;;;GAGG;AACH,yBAAiB,2BAA2B,CAAC;IAC3C,0EAA0E;IACnE,MAAM,aAAa,8DAA2C,CAAC;IACtE,2EAA2E;IACpE,MAAM,cAAc,0FAA4C,CAAC;IACxE,qEAAqE;IACrE,KAAY,QAAQ,GAAG,mCAAmC,CAAC;CAC5D"}
|
|
@@ -26,17 +26,17 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
26
26
|
return result;
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
exports.
|
|
29
|
+
exports.V1AccountPlaytimeDataPoint$ = exports.V1AccountPlaytimeDataPoint$outboundSchema = exports.V1AccountPlaytimeDataPoint$inboundSchema = void 0;
|
|
30
30
|
const z = __importStar(require("zod"));
|
|
31
31
|
/** @internal */
|
|
32
|
-
exports.
|
|
32
|
+
exports.V1AccountPlaytimeDataPoint$inboundSchema = z.object({
|
|
33
33
|
appId: z.number().int(),
|
|
34
34
|
image: z.string(),
|
|
35
35
|
name: z.string(),
|
|
36
36
|
playtime: z.number().int(),
|
|
37
37
|
});
|
|
38
38
|
/** @internal */
|
|
39
|
-
exports.
|
|
39
|
+
exports.V1AccountPlaytimeDataPoint$outboundSchema = z.object({
|
|
40
40
|
appId: z.number().int(),
|
|
41
41
|
image: z.string(),
|
|
42
42
|
name: z.string(),
|
|
@@ -46,11 +46,11 @@ exports.AccountPlaytimeDataPoint$outboundSchema = z.object({
|
|
|
46
46
|
* @internal
|
|
47
47
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
48
48
|
*/
|
|
49
|
-
var
|
|
50
|
-
(function (
|
|
51
|
-
/** @deprecated use `
|
|
52
|
-
|
|
53
|
-
/** @deprecated use `
|
|
54
|
-
|
|
55
|
-
})(
|
|
56
|
-
//# sourceMappingURL=
|
|
49
|
+
var V1AccountPlaytimeDataPoint$;
|
|
50
|
+
(function (V1AccountPlaytimeDataPoint$) {
|
|
51
|
+
/** @deprecated use `V1AccountPlaytimeDataPoint$inboundSchema` instead. */
|
|
52
|
+
V1AccountPlaytimeDataPoint$.inboundSchema = exports.V1AccountPlaytimeDataPoint$inboundSchema;
|
|
53
|
+
/** @deprecated use `V1AccountPlaytimeDataPoint$outboundSchema` instead. */
|
|
54
|
+
V1AccountPlaytimeDataPoint$.outboundSchema = exports.V1AccountPlaytimeDataPoint$outboundSchema;
|
|
55
|
+
})(V1AccountPlaytimeDataPoint$ || (exports.V1AccountPlaytimeDataPoint$ = V1AccountPlaytimeDataPoint$ = {}));
|
|
56
|
+
//# sourceMappingURL=v1accountplaytimedatapoint.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"v1accountplaytimedatapoint.js","sourceRoot":"","sources":["../../src/models/components/v1accountplaytimedatapoint.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAqBzB,gBAAgB;AACH,QAAA,wCAAwC,GAIjD,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,yCAAyC,GAIlD,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,2BAA2B,CAO3C;AAPD,WAAiB,2BAA2B;IAC1C,0EAA0E;IAC7D,yCAAa,GAAG,gDAAwC,CAAC;IACtE,2EAA2E;IAC9D,0CAAc,GAAG,iDAAyC,CAAC;AAG1E,CAAC,EAPgB,2BAA2B,2CAA3B,2BAA2B,QAO3C"}
|
package/package.json
CHANGED
package/src/lib/config.ts
CHANGED
|
@@ -55,8 +55,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
55
55
|
export const SDK_METADATA = {
|
|
56
56
|
language: "typescript",
|
|
57
57
|
openapiDocVersion: "1.0.0",
|
|
58
|
-
sdkVersion: "0.11.
|
|
59
|
-
genVersion: "2.
|
|
58
|
+
sdkVersion: "0.11.12",
|
|
59
|
+
genVersion: "2.438.3",
|
|
60
60
|
userAgent:
|
|
61
|
-
"speakeasy-sdk/typescript 0.11.
|
|
61
|
+
"speakeasy-sdk/typescript 0.11.12 2.438.3 1.0.0 @steamsets/client-ts",
|
|
62
62
|
} as const;
|
|
@@ -2,11 +2,8 @@
|
|
|
2
2
|
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
export * from "./accountbadgemostxpdatapoint.js";
|
|
6
|
-
export * from "./accountbadgescarcitydatapoint.js";
|
|
7
5
|
export * from "./accountinfobody.js";
|
|
8
6
|
export * from "./accountleaderboardhistory.js";
|
|
9
|
-
export * from "./accountplaytimedatapoint.js";
|
|
10
7
|
export * from "./accountsearch.js";
|
|
11
8
|
export * from "./accountsearchidstruct.js";
|
|
12
9
|
export * from "./accountsearchvanitystruct.js";
|
|
@@ -37,6 +34,8 @@ export * from "./state.js";
|
|
|
37
34
|
export * from "./v1accountapp.js";
|
|
38
35
|
export * from "./v1accountappbadge.js";
|
|
39
36
|
export * from "./v1accountbadgecompletion.js";
|
|
37
|
+
export * from "./v1accountbadgemostxpdatapoint.js";
|
|
38
|
+
export * from "./v1accountbadgescarcitydatapoint.js";
|
|
40
39
|
export * from "./v1accountdatapointsresponsebody.js";
|
|
41
40
|
export * from "./v1accountdeveloperappdeleterequestbody.js";
|
|
42
41
|
export * from "./v1accountdeveloperappdeleteresponsebody.js";
|
|
@@ -52,6 +51,7 @@ export * from "./v1accountleaderboardpreviewrequestbody.js";
|
|
|
52
51
|
export * from "./v1accountleaderboardpreviewresponsebody.js";
|
|
53
52
|
export * from "./v1accountleaderboardrequestbody.js";
|
|
54
53
|
export * from "./v1accountleaderboardresponsebody.js";
|
|
54
|
+
export * from "./v1accountplaytimedatapoint.js";
|
|
55
55
|
export * from "./v1accountqueuerequestbody.js";
|
|
56
56
|
export * from "./v1accountsappsresponsebody.js";
|
|
57
57
|
export * from "./v1appbadge.js";
|
|
@@ -22,7 +22,6 @@ export const ResourceResource = {
|
|
|
22
22
|
SocialLinks: "social_links",
|
|
23
23
|
Theme: "theme",
|
|
24
24
|
VanityLength: "vanity_length",
|
|
25
|
-
SocialLinkAmount: "social_link_amount",
|
|
26
25
|
DeveloperApps: "developer_apps",
|
|
27
26
|
} as const;
|
|
28
27
|
export type ResourceResource = ClosedEnum<typeof ResourceResource>;
|
package/src/models/components/{accountbadgemostxpdatapoint.ts → v1accountbadgemostxpdatapoint.ts}
RENAMED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
import * as z from "zod";
|
|
6
6
|
|
|
7
|
-
export type
|
|
7
|
+
export type V1AccountBadgeMostXpDataPoint = {
|
|
8
8
|
/**
|
|
9
9
|
* The app id
|
|
10
10
|
*/
|
|
@@ -56,8 +56,8 @@ export type AccountBadgeMostXpDataPoint = {
|
|
|
56
56
|
};
|
|
57
57
|
|
|
58
58
|
/** @internal */
|
|
59
|
-
export const
|
|
60
|
-
|
|
59
|
+
export const V1AccountBadgeMostXpDataPoint$inboundSchema: z.ZodType<
|
|
60
|
+
V1AccountBadgeMostXpDataPoint,
|
|
61
61
|
z.ZodTypeDef,
|
|
62
62
|
unknown
|
|
63
63
|
> = z.object({
|
|
@@ -78,7 +78,7 @@ export const AccountBadgeMostXpDataPoint$inboundSchema: z.ZodType<
|
|
|
78
78
|
});
|
|
79
79
|
|
|
80
80
|
/** @internal */
|
|
81
|
-
export type
|
|
81
|
+
export type V1AccountBadgeMostXpDataPoint$Outbound = {
|
|
82
82
|
appId: number;
|
|
83
83
|
badgeCompletedAt: string;
|
|
84
84
|
badgeId: string;
|
|
@@ -94,10 +94,10 @@ export type AccountBadgeMostXpDataPoint$Outbound = {
|
|
|
94
94
|
};
|
|
95
95
|
|
|
96
96
|
/** @internal */
|
|
97
|
-
export const
|
|
98
|
-
|
|
97
|
+
export const V1AccountBadgeMostXpDataPoint$outboundSchema: z.ZodType<
|
|
98
|
+
V1AccountBadgeMostXpDataPoint$Outbound,
|
|
99
99
|
z.ZodTypeDef,
|
|
100
|
-
|
|
100
|
+
V1AccountBadgeMostXpDataPoint
|
|
101
101
|
> = z.object({
|
|
102
102
|
appId: z.number().int(),
|
|
103
103
|
badgeCompletedAt: z.date().transform(v => v.toISOString()),
|
|
@@ -117,11 +117,11 @@ export const AccountBadgeMostXpDataPoint$outboundSchema: z.ZodType<
|
|
|
117
117
|
* @internal
|
|
118
118
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
119
119
|
*/
|
|
120
|
-
export namespace
|
|
121
|
-
/** @deprecated use `
|
|
122
|
-
export const inboundSchema =
|
|
123
|
-
/** @deprecated use `
|
|
124
|
-
export const outboundSchema =
|
|
125
|
-
/** @deprecated use `
|
|
126
|
-
export type Outbound =
|
|
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
127
|
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
import * as z from "zod";
|
|
6
6
|
|
|
7
|
-
export type
|
|
7
|
+
export type V1AccountBadgeScarcityDataPoint = {
|
|
8
8
|
/**
|
|
9
9
|
* The app id
|
|
10
10
|
*/
|
|
@@ -44,8 +44,8 @@ export type AccountBadgeScarcityDataPoint = {
|
|
|
44
44
|
};
|
|
45
45
|
|
|
46
46
|
/** @internal */
|
|
47
|
-
export const
|
|
48
|
-
|
|
47
|
+
export const V1AccountBadgeScarcityDataPoint$inboundSchema: z.ZodType<
|
|
48
|
+
V1AccountBadgeScarcityDataPoint,
|
|
49
49
|
z.ZodTypeDef,
|
|
50
50
|
unknown
|
|
51
51
|
> = z.object({
|
|
@@ -61,7 +61,7 @@ export const AccountBadgeScarcityDataPoint$inboundSchema: z.ZodType<
|
|
|
61
61
|
});
|
|
62
62
|
|
|
63
63
|
/** @internal */
|
|
64
|
-
export type
|
|
64
|
+
export type V1AccountBadgeScarcityDataPoint$Outbound = {
|
|
65
65
|
appId: number;
|
|
66
66
|
badgeId: string;
|
|
67
67
|
badgeImage: string;
|
|
@@ -74,10 +74,10 @@ export type AccountBadgeScarcityDataPoint$Outbound = {
|
|
|
74
74
|
};
|
|
75
75
|
|
|
76
76
|
/** @internal */
|
|
77
|
-
export const
|
|
78
|
-
|
|
77
|
+
export const V1AccountBadgeScarcityDataPoint$outboundSchema: z.ZodType<
|
|
78
|
+
V1AccountBadgeScarcityDataPoint$Outbound,
|
|
79
79
|
z.ZodTypeDef,
|
|
80
|
-
|
|
80
|
+
V1AccountBadgeScarcityDataPoint
|
|
81
81
|
> = z.object({
|
|
82
82
|
appId: z.number().int(),
|
|
83
83
|
badgeId: z.string(),
|
|
@@ -94,11 +94,11 @@ export const AccountBadgeScarcityDataPoint$outboundSchema: z.ZodType<
|
|
|
94
94
|
* @internal
|
|
95
95
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
96
96
|
*/
|
|
97
|
-
export namespace
|
|
98
|
-
/** @deprecated use `
|
|
99
|
-
export const inboundSchema =
|
|
100
|
-
/** @deprecated use `
|
|
101
|
-
export const outboundSchema =
|
|
102
|
-
/** @deprecated use `
|
|
103
|
-
export type Outbound =
|
|
97
|
+
export namespace V1AccountBadgeScarcityDataPoint$ {
|
|
98
|
+
/** @deprecated use `V1AccountBadgeScarcityDataPoint$inboundSchema` instead. */
|
|
99
|
+
export const inboundSchema = V1AccountBadgeScarcityDataPoint$inboundSchema;
|
|
100
|
+
/** @deprecated use `V1AccountBadgeScarcityDataPoint$outboundSchema` instead. */
|
|
101
|
+
export const outboundSchema = V1AccountBadgeScarcityDataPoint$outboundSchema;
|
|
102
|
+
/** @deprecated use `V1AccountBadgeScarcityDataPoint$Outbound` instead. */
|
|
103
|
+
export type Outbound = V1AccountBadgeScarcityDataPoint$Outbound;
|
|
104
104
|
}
|
|
@@ -5,32 +5,32 @@
|
|
|
5
5
|
import * as z from "zod";
|
|
6
6
|
import { remap as remap$ } from "../../lib/primitives.js";
|
|
7
7
|
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
} from "./
|
|
8
|
+
V1AccountBadgeMostXpDataPoint,
|
|
9
|
+
V1AccountBadgeMostXpDataPoint$inboundSchema,
|
|
10
|
+
V1AccountBadgeMostXpDataPoint$Outbound,
|
|
11
|
+
V1AccountBadgeMostXpDataPoint$outboundSchema,
|
|
12
|
+
} from "./v1accountbadgemostxpdatapoint.js";
|
|
13
13
|
import {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
} from "./
|
|
14
|
+
V1AccountBadgeScarcityDataPoint,
|
|
15
|
+
V1AccountBadgeScarcityDataPoint$inboundSchema,
|
|
16
|
+
V1AccountBadgeScarcityDataPoint$Outbound,
|
|
17
|
+
V1AccountBadgeScarcityDataPoint$outboundSchema,
|
|
18
|
+
} from "./v1accountbadgescarcitydatapoint.js";
|
|
19
19
|
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
} from "./
|
|
20
|
+
V1AccountPlaytimeDataPoint,
|
|
21
|
+
V1AccountPlaytimeDataPoint$inboundSchema,
|
|
22
|
+
V1AccountPlaytimeDataPoint$Outbound,
|
|
23
|
+
V1AccountPlaytimeDataPoint$outboundSchema,
|
|
24
|
+
} from "./v1accountplaytimedatapoint.js";
|
|
25
25
|
|
|
26
26
|
export type V1AccountDataPointsResponseBody = {
|
|
27
27
|
/**
|
|
28
28
|
* A URL to the JSON Schema for this object.
|
|
29
29
|
*/
|
|
30
30
|
dollarSchema?: string | undefined;
|
|
31
|
-
mostXp: Array<
|
|
32
|
-
playtime: Array<
|
|
33
|
-
scarcity: Array<
|
|
31
|
+
mostXp: Array<V1AccountBadgeMostXpDataPoint> | null;
|
|
32
|
+
playtime: Array<V1AccountPlaytimeDataPoint> | null;
|
|
33
|
+
scarcity: Array<V1AccountBadgeScarcityDataPoint> | null;
|
|
34
34
|
xp: { [k: string]: { [k: string]: number } };
|
|
35
35
|
};
|
|
36
36
|
|
|
@@ -41,9 +41,9 @@ export const V1AccountDataPointsResponseBody$inboundSchema: z.ZodType<
|
|
|
41
41
|
unknown
|
|
42
42
|
> = z.object({
|
|
43
43
|
$schema: z.string().optional(),
|
|
44
|
-
mostXp: z.nullable(z.array(
|
|
45
|
-
playtime: z.nullable(z.array(
|
|
46
|
-
scarcity: z.nullable(z.array(
|
|
44
|
+
mostXp: z.nullable(z.array(V1AccountBadgeMostXpDataPoint$inboundSchema)),
|
|
45
|
+
playtime: z.nullable(z.array(V1AccountPlaytimeDataPoint$inboundSchema)),
|
|
46
|
+
scarcity: z.nullable(z.array(V1AccountBadgeScarcityDataPoint$inboundSchema)),
|
|
47
47
|
xp: z.record(z.record(z.number().int())),
|
|
48
48
|
}).transform((v) => {
|
|
49
49
|
return remap$(v, {
|
|
@@ -54,9 +54,9 @@ export const V1AccountDataPointsResponseBody$inboundSchema: z.ZodType<
|
|
|
54
54
|
/** @internal */
|
|
55
55
|
export type V1AccountDataPointsResponseBody$Outbound = {
|
|
56
56
|
$schema?: string | undefined;
|
|
57
|
-
mostXp: Array<
|
|
58
|
-
playtime: Array<
|
|
59
|
-
scarcity: Array<
|
|
57
|
+
mostXp: Array<V1AccountBadgeMostXpDataPoint$Outbound> | null;
|
|
58
|
+
playtime: Array<V1AccountPlaytimeDataPoint$Outbound> | null;
|
|
59
|
+
scarcity: Array<V1AccountBadgeScarcityDataPoint$Outbound> | null;
|
|
60
60
|
xp: { [k: string]: { [k: string]: number } };
|
|
61
61
|
};
|
|
62
62
|
|
|
@@ -67,9 +67,9 @@ export const V1AccountDataPointsResponseBody$outboundSchema: z.ZodType<
|
|
|
67
67
|
V1AccountDataPointsResponseBody
|
|
68
68
|
> = z.object({
|
|
69
69
|
dollarSchema: z.string().optional(),
|
|
70
|
-
mostXp: z.nullable(z.array(
|
|
71
|
-
playtime: z.nullable(z.array(
|
|
72
|
-
scarcity: z.nullable(z.array(
|
|
70
|
+
mostXp: z.nullable(z.array(V1AccountBadgeMostXpDataPoint$outboundSchema)),
|
|
71
|
+
playtime: z.nullable(z.array(V1AccountPlaytimeDataPoint$outboundSchema)),
|
|
72
|
+
scarcity: z.nullable(z.array(V1AccountBadgeScarcityDataPoint$outboundSchema)),
|
|
73
73
|
xp: z.record(z.record(z.number().int())),
|
|
74
74
|
}).transform((v) => {
|
|
75
75
|
return remap$(v, {
|
|
@@ -27,6 +27,10 @@ export type V1AccountLeaderboardAccount = {
|
|
|
27
27
|
* The cost of an app
|
|
28
28
|
*/
|
|
29
29
|
appCost: number;
|
|
30
|
+
/**
|
|
31
|
+
* For the app playtime leaderboard
|
|
32
|
+
*/
|
|
33
|
+
appPlaytime: number | null;
|
|
30
34
|
/**
|
|
31
35
|
* The number of apps the account has
|
|
32
36
|
*/
|
|
@@ -165,6 +169,7 @@ export const V1AccountLeaderboardAccount$inboundSchema: z.ZodType<
|
|
|
165
169
|
unknown
|
|
166
170
|
> = z.object({
|
|
167
171
|
appCost: z.number().int(),
|
|
172
|
+
appPlaytime: z.nullable(z.number().int()),
|
|
168
173
|
apps: z.number().int(),
|
|
169
174
|
avatar: z.string(),
|
|
170
175
|
averagePlaytime: z.number().int(),
|
|
@@ -206,6 +211,7 @@ export const V1AccountLeaderboardAccount$inboundSchema: z.ZodType<
|
|
|
206
211
|
/** @internal */
|
|
207
212
|
export type V1AccountLeaderboardAccount$Outbound = {
|
|
208
213
|
appCost: number;
|
|
214
|
+
appPlaytime: number | null;
|
|
209
215
|
apps: number;
|
|
210
216
|
avatar: string;
|
|
211
217
|
averagePlaytime: number;
|
|
@@ -251,6 +257,7 @@ export const V1AccountLeaderboardAccount$outboundSchema: z.ZodType<
|
|
|
251
257
|
V1AccountLeaderboardAccount
|
|
252
258
|
> = z.object({
|
|
253
259
|
appCost: z.number().int(),
|
|
260
|
+
appPlaytime: z.nullable(z.number().int()),
|
|
254
261
|
apps: z.number().int(),
|
|
255
262
|
avatar: z.string(),
|
|
256
263
|
averagePlaytime: z.number().int(),
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
import * as z from "zod";
|
|
6
6
|
|
|
7
|
-
export type
|
|
7
|
+
export type V1AccountPlaytimeDataPoint = {
|
|
8
8
|
/**
|
|
9
9
|
* The app id
|
|
10
10
|
*/
|
|
@@ -24,8 +24,8 @@ export type AccountPlaytimeDataPoint = {
|
|
|
24
24
|
};
|
|
25
25
|
|
|
26
26
|
/** @internal */
|
|
27
|
-
export const
|
|
28
|
-
|
|
27
|
+
export const V1AccountPlaytimeDataPoint$inboundSchema: z.ZodType<
|
|
28
|
+
V1AccountPlaytimeDataPoint,
|
|
29
29
|
z.ZodTypeDef,
|
|
30
30
|
unknown
|
|
31
31
|
> = z.object({
|
|
@@ -36,7 +36,7 @@ export const AccountPlaytimeDataPoint$inboundSchema: z.ZodType<
|
|
|
36
36
|
});
|
|
37
37
|
|
|
38
38
|
/** @internal */
|
|
39
|
-
export type
|
|
39
|
+
export type V1AccountPlaytimeDataPoint$Outbound = {
|
|
40
40
|
appId: number;
|
|
41
41
|
image: string;
|
|
42
42
|
name: string;
|
|
@@ -44,10 +44,10 @@ export type AccountPlaytimeDataPoint$Outbound = {
|
|
|
44
44
|
};
|
|
45
45
|
|
|
46
46
|
/** @internal */
|
|
47
|
-
export const
|
|
48
|
-
|
|
47
|
+
export const V1AccountPlaytimeDataPoint$outboundSchema: z.ZodType<
|
|
48
|
+
V1AccountPlaytimeDataPoint$Outbound,
|
|
49
49
|
z.ZodTypeDef,
|
|
50
|
-
|
|
50
|
+
V1AccountPlaytimeDataPoint
|
|
51
51
|
> = z.object({
|
|
52
52
|
appId: z.number().int(),
|
|
53
53
|
image: z.string(),
|
|
@@ -59,11 +59,11 @@ export const AccountPlaytimeDataPoint$outboundSchema: z.ZodType<
|
|
|
59
59
|
* @internal
|
|
60
60
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
61
61
|
*/
|
|
62
|
-
export namespace
|
|
63
|
-
/** @deprecated use `
|
|
64
|
-
export const inboundSchema =
|
|
65
|
-
/** @deprecated use `
|
|
66
|
-
export const outboundSchema =
|
|
67
|
-
/** @deprecated use `
|
|
68
|
-
export type Outbound =
|
|
62
|
+
export namespace V1AccountPlaytimeDataPoint$ {
|
|
63
|
+
/** @deprecated use `V1AccountPlaytimeDataPoint$inboundSchema` instead. */
|
|
64
|
+
export const inboundSchema = V1AccountPlaytimeDataPoint$inboundSchema;
|
|
65
|
+
/** @deprecated use `V1AccountPlaytimeDataPoint$outboundSchema` instead. */
|
|
66
|
+
export const outboundSchema = V1AccountPlaytimeDataPoint$outboundSchema;
|
|
67
|
+
/** @deprecated use `V1AccountPlaytimeDataPoint$Outbound` instead. */
|
|
68
|
+
export type Outbound = V1AccountPlaytimeDataPoint$Outbound;
|
|
69
69
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"accountbadgemostxpdatapoint.d.ts","sourceRoot":"","sources":["../../src/models/components/accountbadgemostxpdatapoint.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,MAAM,MAAM,2BAA2B,GAAG;IACxC;;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,yCAAyC,EAAE,CAAC,CAAC,OAAO,CAC/D,2BAA2B,EAC3B,CAAC,CAAC,UAAU,EACZ,OAAO,CAgBP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,oCAAoC,GAAG;IACjD,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,0CAA0C,EAAE,CAAC,CAAC,OAAO,CAChE,oCAAoC,EACpC,CAAC,CAAC,UAAU,EACZ,2BAA2B,CAc3B,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":"accountbadgemostxpdatapoint.js","sourceRoot":"","sources":["../../src/models/components/accountbadgemostxpdatapoint.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAqDzB,gBAAgB;AACH,QAAA,yCAAyC,GAIlD,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,0CAA0C,GAInD,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,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"}
|