@steamsets/client-ts 0.33.6 → 0.33.7
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 +2 -0
- package/funcs/accountCompareBadges.d.ts +16 -0
- package/funcs/accountCompareBadges.d.ts.map +1 -0
- package/funcs/accountCompareBadges.js +134 -0
- package/funcs/accountCompareBadges.js.map +1 -0
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/models/components/comparedtuple.d.ts +23 -0
- package/models/components/comparedtuple.d.ts.map +1 -0
- package/models/components/comparedtuple.js +63 -0
- package/models/components/comparedtuple.js.map +1 -0
- package/models/components/index.d.ts +7 -0
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +7 -0
- package/models/components/index.js.map +1 -1
- package/models/components/order.d.ts +32 -0
- package/models/components/order.d.ts.map +1 -0
- package/models/components/order.js +66 -0
- package/models/components/order.js.map +1 -0
- package/models/components/rangefilter.d.ts +23 -0
- package/models/components/rangefilter.d.ts.map +1 -0
- package/models/components/rangefilter.js +56 -0
- package/models/components/rangefilter.js.map +1 -0
- package/models/components/resolvedaccount.d.ts +13 -0
- package/models/components/resolvedaccount.d.ts.map +1 -0
- package/models/components/resolvedaccount.js +53 -0
- package/models/components/resolvedaccount.js.map +1 -0
- package/models/components/tupleaccount.d.ts +13 -0
- package/models/components/tupleaccount.d.ts.map +1 -0
- package/models/components/tupleaccount.js +54 -0
- package/models/components/tupleaccount.js.map +1 -0
- package/models/components/v1accountcomparebadgesrequestbody.d.ts +74 -0
- package/models/components/v1accountcomparebadgesrequestbody.d.ts.map +1 -0
- package/models/components/v1accountcomparebadgesrequestbody.js +94 -0
- package/models/components/v1accountcomparebadgesrequestbody.js.map +1 -0
- package/models/components/v1accountcomparebadgesresponsebody.d.ts +25 -0
- package/models/components/v1accountcomparebadgesresponsebody.d.ts.map +1 -0
- package/models/components/v1accountcomparebadgesresponsebody.js +61 -0
- package/models/components/v1accountcomparebadgesresponsebody.js.map +1 -0
- package/models/components/v1accountlistbadgesrequestbody.d.ts +4 -4
- package/models/components/v1accountlistbadgesrequestbody.d.ts.map +1 -1
- package/models/components/v1accountlistbadgesrequestbody.js +4 -5
- package/models/components/v1accountlistbadgesrequestbody.js.map +1 -1
- package/models/components/v1apporder.d.ts +8 -8
- package/models/components/v1apporder.d.ts.map +1 -1
- package/models/components/v1apporder.js +7 -8
- package/models/components/v1apporder.js.map +1 -1
- package/models/operations/comparebadges.d.ts +15 -0
- package/models/operations/comparebadges.d.ts.map +1 -0
- package/models/operations/comparebadges.js +59 -0
- package/models/operations/comparebadges.js.map +1 -0
- package/models/operations/index.d.ts +1 -0
- package/models/operations/index.d.ts.map +1 -1
- package/models/operations/index.js +1 -0
- package/models/operations/index.js.map +1 -1
- package/package.json +1 -1
- package/sdk/account.d.ts +4 -0
- package/sdk/account.d.ts.map +1 -1
- package/sdk/account.js +7 -0
- package/sdk/account.js.map +1 -1
- package/src/funcs/accountCompareBadges.ts +188 -0
- package/src/lib/config.ts +2 -2
- package/src/models/components/comparedtuple.ts +56 -0
- package/src/models/components/index.ts +7 -0
- package/src/models/components/order.ts +53 -0
- package/src/models/components/rangefilter.ts +44 -0
- package/src/models/components/resolvedaccount.ts +37 -0
- package/src/models/components/tupleaccount.ts +38 -0
- package/src/models/components/v1accountcomparebadgesrequestbody.ts +128 -0
- package/src/models/components/v1accountcomparebadgesresponsebody.ts +59 -0
- package/src/models/components/v1accountlistbadgesrequestbody.ts +12 -6
- package/src/models/components/v1apporder.ts +13 -11
- package/src/models/operations/comparebadges.ts +46 -0
- package/src/models/operations/index.ts +1 -0
- package/src/sdk/account.ts +15 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as z from "zod/v3";
|
|
2
|
+
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
3
|
+
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
4
|
+
export type ResolvedAccount = {
|
|
5
|
+
accountId: number;
|
|
6
|
+
avatar: string;
|
|
7
|
+
steamId: string;
|
|
8
|
+
vanity?: string | undefined;
|
|
9
|
+
};
|
|
10
|
+
/** @internal */
|
|
11
|
+
export declare const ResolvedAccount$inboundSchema: z.ZodType<ResolvedAccount, z.ZodTypeDef, unknown>;
|
|
12
|
+
export declare function resolvedAccountFromJSON(jsonString: string): SafeParseResult<ResolvedAccount, SDKValidationError>;
|
|
13
|
+
//# sourceMappingURL=resolvedaccount.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resolvedaccount.d.ts","sourceRoot":"","sources":["../../src/models/components/resolvedaccount.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAE5B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAErE,MAAM,MAAM,eAAe,GAAG;IAC5B,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC7B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,OAAO,CACnD,eAAe,EACf,CAAC,CAAC,UAAU,EACZ,OAAO,CAMP,CAAC;AAEH,wBAAgB,uBAAuB,CACrC,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,eAAe,EAAE,kBAAkB,CAAC,CAMtD"}
|
|
@@ -0,0 +1,53 @@
|
|
|
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 () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.ResolvedAccount$inboundSchema = void 0;
|
|
40
|
+
exports.resolvedAccountFromJSON = resolvedAccountFromJSON;
|
|
41
|
+
const z = __importStar(require("zod/v3"));
|
|
42
|
+
const schemas_js_1 = require("../../lib/schemas.js");
|
|
43
|
+
/** @internal */
|
|
44
|
+
exports.ResolvedAccount$inboundSchema = z.object({
|
|
45
|
+
accountId: z.number().int(),
|
|
46
|
+
avatar: z.string(),
|
|
47
|
+
steamId: z.string(),
|
|
48
|
+
vanity: z.string().optional(),
|
|
49
|
+
});
|
|
50
|
+
function resolvedAccountFromJSON(jsonString) {
|
|
51
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.ResolvedAccount$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'ResolvedAccount' from JSON`);
|
|
52
|
+
}
|
|
53
|
+
//# sourceMappingURL=resolvedaccount.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resolvedaccount.js","sourceRoot":"","sources":["../../src/models/components/resolvedaccount.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0BH,0DAQC;AAhCD,0CAA4B;AAC5B,qDAAiD;AAWjD,gBAAgB;AACH,QAAA,6BAA6B,GAItC,CAAC,CAAC,MAAM,CAAC;IACX,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IAC3B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC9B,CAAC,CAAC;AAEH,SAAgB,uBAAuB,CACrC,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,qCAA6B,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACzD,6CAA6C,CAC9C,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as z from "zod/v3";
|
|
2
|
+
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
3
|
+
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
4
|
+
export type TupleAccount = {
|
|
5
|
+
completedAt?: Date | undefined;
|
|
6
|
+
level: number;
|
|
7
|
+
steamId: string;
|
|
8
|
+
xp: number;
|
|
9
|
+
};
|
|
10
|
+
/** @internal */
|
|
11
|
+
export declare const TupleAccount$inboundSchema: z.ZodType<TupleAccount, z.ZodTypeDef, unknown>;
|
|
12
|
+
export declare function tupleAccountFromJSON(jsonString: string): SafeParseResult<TupleAccount, SDKValidationError>;
|
|
13
|
+
//# sourceMappingURL=tupleaccount.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tupleaccount.d.ts","sourceRoot":"","sources":["../../src/models/components/tupleaccount.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAE5B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAErE,MAAM,MAAM,YAAY,GAAG;IACzB,WAAW,CAAC,EAAE,IAAI,GAAG,SAAS,CAAC;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAChD,YAAY,EACZ,CAAC,CAAC,UAAU,EACZ,OAAO,CAOP,CAAC;AAEH,wBAAgB,oBAAoB,CAClC,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,YAAY,EAAE,kBAAkB,CAAC,CAMnD"}
|
|
@@ -0,0 +1,54 @@
|
|
|
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 () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.TupleAccount$inboundSchema = void 0;
|
|
40
|
+
exports.tupleAccountFromJSON = tupleAccountFromJSON;
|
|
41
|
+
const z = __importStar(require("zod/v3"));
|
|
42
|
+
const schemas_js_1 = require("../../lib/schemas.js");
|
|
43
|
+
/** @internal */
|
|
44
|
+
exports.TupleAccount$inboundSchema = z.object({
|
|
45
|
+
completedAt: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
46
|
+
.optional(),
|
|
47
|
+
level: z.number().int(),
|
|
48
|
+
steamId: z.string(),
|
|
49
|
+
xp: z.number().int(),
|
|
50
|
+
});
|
|
51
|
+
function tupleAccountFromJSON(jsonString) {
|
|
52
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.TupleAccount$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'TupleAccount' from JSON`);
|
|
53
|
+
}
|
|
54
|
+
//# sourceMappingURL=tupleaccount.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tupleaccount.js","sourceRoot":"","sources":["../../src/models/components/tupleaccount.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2BH,oDAQC;AAjCD,0CAA4B;AAC5B,qDAAiD;AAWjD,gBAAgB;AACH,QAAA,0BAA0B,GAInC,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,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC;SAC3E,QAAQ,EAAE;IACb,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;CACrB,CAAC,CAAC;AAEH,SAAgB,oBAAoB,CAClC,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,kCAA0B,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACtD,0CAA0C,CAC3C,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import * as z from "zod/v3";
|
|
2
|
+
import { ClosedEnum } from "../../types/enums.js";
|
|
3
|
+
import { AccountSearch, AccountSearch$Outbound } from "./accountsearch.js";
|
|
4
|
+
import { Order, Order$Outbound } from "./order.js";
|
|
5
|
+
import { RangeFilter, RangeFilter$Outbound } from "./rangefilter.js";
|
|
6
|
+
export declare const Filter: {
|
|
7
|
+
readonly All: "all";
|
|
8
|
+
readonly Normal: "normal";
|
|
9
|
+
readonly Foil: "foil";
|
|
10
|
+
};
|
|
11
|
+
export type Filter = ClosedEnum<typeof Filter>;
|
|
12
|
+
export declare const Ignore: {
|
|
13
|
+
readonly Event: "event";
|
|
14
|
+
readonly Sale: "sale";
|
|
15
|
+
readonly Steam: "steam";
|
|
16
|
+
readonly Infinite: "infinite";
|
|
17
|
+
};
|
|
18
|
+
export type Ignore = ClosedEnum<typeof Ignore>;
|
|
19
|
+
export declare const Match: {
|
|
20
|
+
readonly Tuple: "tuple";
|
|
21
|
+
readonly TupleLevel: "tupleLevel";
|
|
22
|
+
readonly TupleMinLevel: "tupleMinLevel";
|
|
23
|
+
};
|
|
24
|
+
export type Match = ClosedEnum<typeof Match>;
|
|
25
|
+
export declare const Mode: {
|
|
26
|
+
readonly Missing: "missing";
|
|
27
|
+
readonly OwnedByAll: "ownedByAll";
|
|
28
|
+
readonly Unique: "unique";
|
|
29
|
+
};
|
|
30
|
+
export type Mode = ClosedEnum<typeof Mode>;
|
|
31
|
+
export type V1AccountCompareBadgesRequestBody = {
|
|
32
|
+
accounts: Array<AccountSearch> | null;
|
|
33
|
+
appIds?: Array<number> | null | undefined;
|
|
34
|
+
appTypes?: Array<string> | null | undefined;
|
|
35
|
+
excludeAppIds?: Array<number> | null | undefined;
|
|
36
|
+
filter?: Filter | undefined;
|
|
37
|
+
ignore?: Array<Ignore> | null | undefined;
|
|
38
|
+
match?: Match | undefined;
|
|
39
|
+
/**
|
|
40
|
+
* Only used when match=tupleMinLevel
|
|
41
|
+
*/
|
|
42
|
+
minLevel?: number | undefined;
|
|
43
|
+
mode?: Mode | undefined;
|
|
44
|
+
order?: Order | undefined;
|
|
45
|
+
page?: number | undefined;
|
|
46
|
+
ranges?: Array<RangeFilter> | null | undefined;
|
|
47
|
+
};
|
|
48
|
+
/** @internal */
|
|
49
|
+
export declare const Filter$outboundSchema: z.ZodNativeEnum<typeof Filter>;
|
|
50
|
+
/** @internal */
|
|
51
|
+
export declare const Ignore$outboundSchema: z.ZodNativeEnum<typeof Ignore>;
|
|
52
|
+
/** @internal */
|
|
53
|
+
export declare const Match$outboundSchema: z.ZodNativeEnum<typeof Match>;
|
|
54
|
+
/** @internal */
|
|
55
|
+
export declare const Mode$outboundSchema: z.ZodNativeEnum<typeof Mode>;
|
|
56
|
+
/** @internal */
|
|
57
|
+
export type V1AccountCompareBadgesRequestBody$Outbound = {
|
|
58
|
+
accounts: Array<AccountSearch$Outbound> | null;
|
|
59
|
+
appIds?: Array<number> | null | undefined;
|
|
60
|
+
appTypes?: Array<string> | null | undefined;
|
|
61
|
+
excludeAppIds?: Array<number> | null | undefined;
|
|
62
|
+
filter: string;
|
|
63
|
+
ignore?: Array<string> | null | undefined;
|
|
64
|
+
match: string;
|
|
65
|
+
minLevel?: number | undefined;
|
|
66
|
+
mode: string;
|
|
67
|
+
order?: Order$Outbound | undefined;
|
|
68
|
+
page: number;
|
|
69
|
+
ranges?: Array<RangeFilter$Outbound> | null | undefined;
|
|
70
|
+
};
|
|
71
|
+
/** @internal */
|
|
72
|
+
export declare const V1AccountCompareBadgesRequestBody$outboundSchema: z.ZodType<V1AccountCompareBadgesRequestBody$Outbound, z.ZodTypeDef, V1AccountCompareBadgesRequestBody>;
|
|
73
|
+
export declare function v1AccountCompareBadgesRequestBodyToJSON(v1AccountCompareBadgesRequestBody: V1AccountCompareBadgesRequestBody): string;
|
|
74
|
+
//# sourceMappingURL=v1accountcomparebadgesrequestbody.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"v1accountcomparebadgesrequestbody.d.ts","sourceRoot":"","sources":["../../src/models/components/v1accountcomparebadgesrequestbody.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,94 @@
|
|
|
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 () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.V1AccountCompareBadgesRequestBody$outboundSchema = exports.Mode$outboundSchema = exports.Match$outboundSchema = exports.Ignore$outboundSchema = exports.Filter$outboundSchema = exports.Mode = exports.Match = exports.Ignore = exports.Filter = void 0;
|
|
40
|
+
exports.v1AccountCompareBadgesRequestBodyToJSON = v1AccountCompareBadgesRequestBodyToJSON;
|
|
41
|
+
const z = __importStar(require("zod/v3"));
|
|
42
|
+
const accountsearch_js_1 = require("./accountsearch.js");
|
|
43
|
+
const order_js_1 = require("./order.js");
|
|
44
|
+
const rangefilter_js_1 = require("./rangefilter.js");
|
|
45
|
+
exports.Filter = {
|
|
46
|
+
All: "all",
|
|
47
|
+
Normal: "normal",
|
|
48
|
+
Foil: "foil",
|
|
49
|
+
};
|
|
50
|
+
exports.Ignore = {
|
|
51
|
+
Event: "event",
|
|
52
|
+
Sale: "sale",
|
|
53
|
+
Steam: "steam",
|
|
54
|
+
Infinite: "infinite",
|
|
55
|
+
};
|
|
56
|
+
exports.Match = {
|
|
57
|
+
Tuple: "tuple",
|
|
58
|
+
TupleLevel: "tupleLevel",
|
|
59
|
+
TupleMinLevel: "tupleMinLevel",
|
|
60
|
+
};
|
|
61
|
+
exports.Mode = {
|
|
62
|
+
Missing: "missing",
|
|
63
|
+
OwnedByAll: "ownedByAll",
|
|
64
|
+
Unique: "unique",
|
|
65
|
+
};
|
|
66
|
+
/** @internal */
|
|
67
|
+
exports.Filter$outboundSchema = z
|
|
68
|
+
.nativeEnum(exports.Filter);
|
|
69
|
+
/** @internal */
|
|
70
|
+
exports.Ignore$outboundSchema = z
|
|
71
|
+
.nativeEnum(exports.Ignore);
|
|
72
|
+
/** @internal */
|
|
73
|
+
exports.Match$outboundSchema = z.nativeEnum(exports.Match);
|
|
74
|
+
/** @internal */
|
|
75
|
+
exports.Mode$outboundSchema = z.nativeEnum(exports.Mode);
|
|
76
|
+
/** @internal */
|
|
77
|
+
exports.V1AccountCompareBadgesRequestBody$outboundSchema = z.object({
|
|
78
|
+
accounts: z.nullable(z.array(accountsearch_js_1.AccountSearch$outboundSchema)),
|
|
79
|
+
appIds: z.nullable(z.array(z.number().int())).optional(),
|
|
80
|
+
appTypes: z.nullable(z.array(z.string())).optional(),
|
|
81
|
+
excludeAppIds: z.nullable(z.array(z.number().int())).optional(),
|
|
82
|
+
filter: exports.Filter$outboundSchema.default("all"),
|
|
83
|
+
ignore: z.nullable(z.array(exports.Ignore$outboundSchema)).optional(),
|
|
84
|
+
match: exports.Match$outboundSchema.default("tuple"),
|
|
85
|
+
minLevel: z.number().int().optional(),
|
|
86
|
+
mode: exports.Mode$outboundSchema.default("missing"),
|
|
87
|
+
order: order_js_1.Order$outboundSchema.optional(),
|
|
88
|
+
page: z.number().int().default(1),
|
|
89
|
+
ranges: z.nullable(z.array(rangefilter_js_1.RangeFilter$outboundSchema)).optional(),
|
|
90
|
+
});
|
|
91
|
+
function v1AccountCompareBadgesRequestBodyToJSON(v1AccountCompareBadgesRequestBody) {
|
|
92
|
+
return JSON.stringify(exports.V1AccountCompareBadgesRequestBody$outboundSchema.parse(v1AccountCompareBadgesRequestBody));
|
|
93
|
+
}
|
|
94
|
+
//# sourceMappingURL=v1accountcomparebadgesrequestbody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"v1accountcomparebadgesrequestbody.js","sourceRoot":"","sources":["../../src/models/components/v1accountcomparebadgesrequestbody.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqHH,0FAQC;AA3HD,0CAA4B;AAE5B,yDAI4B;AAC5B,yCAAyE;AACzE,qDAI0B;AAEb,QAAA,MAAM,GAAG;IACpB,GAAG,EAAE,KAAK;IACV,MAAM,EAAE,QAAQ;IAChB,IAAI,EAAE,MAAM;CACJ,CAAC;AAGE,QAAA,MAAM,GAAG;IACpB,KAAK,EAAE,OAAO;IACd,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;CACZ,CAAC;AAGE,QAAA,KAAK,GAAG;IACnB,KAAK,EAAE,OAAO;IACd,UAAU,EAAE,YAAY;IACxB,aAAa,EAAE,eAAe;CACtB,CAAC;AAGE,QAAA,IAAI,GAAG;IAClB,OAAO,EAAE,SAAS;IAClB,UAAU,EAAE,YAAY;IACxB,MAAM,EAAE,QAAQ;CACR,CAAC;AAqBX,gBAAgB;AACH,QAAA,qBAAqB,GAAmC,CAAC;KACnE,UAAU,CAAC,cAAM,CAAC,CAAC;AAEtB,gBAAgB;AACH,QAAA,qBAAqB,GAAmC,CAAC;KACnE,UAAU,CAAC,cAAM,CAAC,CAAC;AAEtB,gBAAgB;AACH,QAAA,oBAAoB,GAAkC,CAAC,CAAC,UAAU,CAC7E,aAAK,CACN,CAAC;AAEF,gBAAgB;AACH,QAAA,mBAAmB,GAAiC,CAAC,CAAC,UAAU,CAC3E,YAAI,CACL,CAAC;AAkBF,gBAAgB;AACH,QAAA,gDAAgD,GAIzD,CAAC,CAAC,MAAM,CAAC;IACX,QAAQ,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,+CAA4B,CAAC,CAAC;IAC3D,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;IACxD,QAAQ,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;IACpD,aAAa,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;IAC/D,MAAM,EAAE,6BAAqB,CAAC,OAAO,CAAC,KAAK,CAAC;IAC5C,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,6BAAqB,CAAC,CAAC,CAAC,QAAQ,EAAE;IAC7D,KAAK,EAAE,4BAAoB,CAAC,OAAO,CAAC,OAAO,CAAC;IAC5C,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACrC,IAAI,EAAE,2BAAmB,CAAC,OAAO,CAAC,SAAS,CAAC;IAC5C,KAAK,EAAE,+BAAoB,CAAC,QAAQ,EAAE;IACtC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC;IACjC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,2CAA0B,CAAC,CAAC,CAAC,QAAQ,EAAE;CACnE,CAAC,CAAC;AAEH,SAAgB,uCAAuC,CACrD,iCAAoE;IAEpE,OAAO,IAAI,CAAC,SAAS,CACnB,wDAAgD,CAAC,KAAK,CACpD,iCAAiC,CAClC,CACF,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as z from "zod/v3";
|
|
2
|
+
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
3
|
+
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
4
|
+
import { ComparedTuple } from "./comparedtuple.js";
|
|
5
|
+
import { ResolvedAccount } from "./resolvedaccount.js";
|
|
6
|
+
export type V1AccountCompareBadgesResponseBody = {
|
|
7
|
+
/**
|
|
8
|
+
* A URL to the JSON Schema for this object.
|
|
9
|
+
*/
|
|
10
|
+
dollarSchema?: string | undefined;
|
|
11
|
+
accounts: Array<ResolvedAccount> | null;
|
|
12
|
+
/**
|
|
13
|
+
* The number of pages
|
|
14
|
+
*/
|
|
15
|
+
pages: number;
|
|
16
|
+
/**
|
|
17
|
+
* The total number of hits for all pages
|
|
18
|
+
*/
|
|
19
|
+
totalHits: number;
|
|
20
|
+
tuples: Array<ComparedTuple> | null;
|
|
21
|
+
};
|
|
22
|
+
/** @internal */
|
|
23
|
+
export declare const V1AccountCompareBadgesResponseBody$inboundSchema: z.ZodType<V1AccountCompareBadgesResponseBody, z.ZodTypeDef, unknown>;
|
|
24
|
+
export declare function v1AccountCompareBadgesResponseBodyFromJSON(jsonString: string): SafeParseResult<V1AccountCompareBadgesResponseBody, SDKValidationError>;
|
|
25
|
+
//# sourceMappingURL=v1accountcomparebadgesresponsebody.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"v1accountcomparebadgesresponsebody.d.ts","sourceRoot":"","sources":["../../src/models/components/v1accountcomparebadgesresponsebody.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAG5B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EAAE,aAAa,EAA+B,MAAM,oBAAoB,CAAC;AAChF,OAAO,EACL,eAAe,EAEhB,MAAM,sBAAsB,CAAC;AAE9B,MAAM,MAAM,kCAAkC,GAAG;IAC/C;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAClC,QAAQ,EAAE,KAAK,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC;IACxC;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,KAAK,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC;CACrC,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,gDAAgD,EAAE,CAAC,CAAC,OAAO,CACtE,kCAAkC,EAClC,CAAC,CAAC,UAAU,EACZ,OAAO,CAWP,CAAC;AAEH,wBAAgB,0CAA0C,CACxD,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,kCAAkC,EAAE,kBAAkB,CAAC,CAOzE"}
|
|
@@ -0,0 +1,61 @@
|
|
|
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 () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.V1AccountCompareBadgesResponseBody$inboundSchema = void 0;
|
|
40
|
+
exports.v1AccountCompareBadgesResponseBodyFromJSON = v1AccountCompareBadgesResponseBodyFromJSON;
|
|
41
|
+
const z = __importStar(require("zod/v3"));
|
|
42
|
+
const primitives_js_1 = require("../../lib/primitives.js");
|
|
43
|
+
const schemas_js_1 = require("../../lib/schemas.js");
|
|
44
|
+
const comparedtuple_js_1 = require("./comparedtuple.js");
|
|
45
|
+
const resolvedaccount_js_1 = require("./resolvedaccount.js");
|
|
46
|
+
/** @internal */
|
|
47
|
+
exports.V1AccountCompareBadgesResponseBody$inboundSchema = z.object({
|
|
48
|
+
$schema: z.string().optional(),
|
|
49
|
+
accounts: z.nullable(z.array(resolvedaccount_js_1.ResolvedAccount$inboundSchema)),
|
|
50
|
+
pages: z.number().int(),
|
|
51
|
+
totalHits: z.number().int(),
|
|
52
|
+
tuples: z.nullable(z.array(comparedtuple_js_1.ComparedTuple$inboundSchema)),
|
|
53
|
+
}).transform((v) => {
|
|
54
|
+
return (0, primitives_js_1.remap)(v, {
|
|
55
|
+
"$schema": "dollarSchema",
|
|
56
|
+
});
|
|
57
|
+
});
|
|
58
|
+
function v1AccountCompareBadgesResponseBodyFromJSON(jsonString) {
|
|
59
|
+
return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.V1AccountCompareBadgesResponseBody$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'V1AccountCompareBadgesResponseBody' from JSON`);
|
|
60
|
+
}
|
|
61
|
+
//# sourceMappingURL=v1accountcomparebadgesresponsebody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"v1accountcomparebadgesresponsebody.js","sourceRoot":"","sources":["../../src/models/components/v1accountcomparebadgesresponsebody.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+CH,gGASC;AAtDD,0CAA4B;AAC5B,2DAA0D;AAC1D,qDAAiD;AAGjD,yDAAgF;AAChF,6DAG8B;AAmB9B,gBAAgB;AACH,QAAA,gDAAgD,GAIzD,CAAC,CAAC,MAAM,CAAC;IACX,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,QAAQ,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,kDAA6B,CAAC,CAAC;IAC5D,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACvB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IAC3B,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,8CAA2B,CAAC,CAAC;CACzD,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;AAEH,SAAgB,0CAA0C,CACxD,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CACJ,wDAAgD,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACvE,gEAAgE,CACjE,CAAC;AACJ,CAAC"}
|
|
@@ -5,17 +5,17 @@ import { IDSearch, IDSearch$Outbound } from "./idsearch.js";
|
|
|
5
5
|
import { V1BadgeFilters, V1BadgeFilters$Outbound } from "./v1badgefilters.js";
|
|
6
6
|
import { V1BadgeOrder, V1BadgeOrder$Outbound } from "./v1badgeorder.js";
|
|
7
7
|
import { VanitySearch, VanitySearch$Outbound } from "./vanitysearch.js";
|
|
8
|
-
export declare const
|
|
8
|
+
export declare const V1AccountListBadgesRequestBodyFilter: {
|
|
9
9
|
readonly Foil: "foil";
|
|
10
10
|
readonly Sale: "sale";
|
|
11
11
|
readonly Event: "event";
|
|
12
12
|
};
|
|
13
|
-
export type
|
|
13
|
+
export type V1AccountListBadgesRequestBodyFilter = ClosedEnum<typeof V1AccountListBadgesRequestBodyFilter>;
|
|
14
14
|
export type V1AccountListBadgesRequestBody = {
|
|
15
15
|
/**
|
|
16
16
|
* @deprecated field: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
17
17
|
*/
|
|
18
|
-
filter?: Array<
|
|
18
|
+
filter?: Array<V1AccountListBadgesRequestBodyFilter> | null | undefined;
|
|
19
19
|
filters?: V1BadgeFilters | undefined;
|
|
20
20
|
id?: IDSearch | undefined;
|
|
21
21
|
order?: V1BadgeOrder | null | undefined;
|
|
@@ -28,7 +28,7 @@ export type V1AccountListBadgesRequestBody = {
|
|
|
28
28
|
vanity?: VanitySearch | undefined;
|
|
29
29
|
};
|
|
30
30
|
/** @internal */
|
|
31
|
-
export declare const
|
|
31
|
+
export declare const V1AccountListBadgesRequestBodyFilter$outboundSchema: z.ZodNativeEnum<typeof V1AccountListBadgesRequestBodyFilter>;
|
|
32
32
|
/** @internal */
|
|
33
33
|
export type V1AccountListBadgesRequestBody$Outbound = {
|
|
34
34
|
filter?: Array<string> | null | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"v1accountlistbadgesrequestbody.d.ts","sourceRoot":"","sources":["../../src/models/components/v1accountlistbadgesrequestbody.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAC5B,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EACL,gBAAgB,EAChB,yBAAyB,EAE1B,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EACL,QAAQ,EACR,iBAAiB,EAElB,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,cAAc,EACd,uBAAuB,EAExB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,YAAY,EACZ,qBAAqB,EAEtB,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EACL,YAAY,EACZ,qBAAqB,EAEtB,MAAM,mBAAmB,CAAC;AAE3B,eAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"v1accountlistbadgesrequestbody.d.ts","sourceRoot":"","sources":["../../src/models/components/v1accountlistbadgesrequestbody.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAC5B,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EACL,gBAAgB,EAChB,yBAAyB,EAE1B,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EACL,QAAQ,EACR,iBAAiB,EAElB,MAAM,eAAe,CAAC;AACvB,OAAO,EACL,cAAc,EACd,uBAAuB,EAExB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,YAAY,EACZ,qBAAqB,EAEtB,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EACL,YAAY,EACZ,qBAAqB,EAEtB,MAAM,mBAAmB,CAAC;AAE3B,eAAO,MAAM,oCAAoC;;;;CAIvC,CAAC;AACX,MAAM,MAAM,oCAAoC,GAAG,UAAU,CAC3D,OAAO,oCAAoC,CAC5C,CAAC;AAEF,MAAM,MAAM,8BAA8B,GAAG;IAC3C;;OAEG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC,oCAAoC,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC;IACxE,OAAO,CAAC,EAAE,cAAc,GAAG,SAAS,CAAC;IACrC,EAAE,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,YAAY,GAAG,IAAI,GAAG,SAAS,CAAC;IACxC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACnC;;OAEG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,gBAAgB,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC;IACzD,MAAM,CAAC,EAAE,YAAY,GAAG,SAAS,CAAC;CACnC,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,mDAAmD,EAC9D,CAAC,CAAC,aAAa,CAAC,OAAO,oCAAoC,CAE1D,CAAC;AAEJ,gBAAgB;AAChB,MAAM,MAAM,uCAAuC,GAAG;IACpD,MAAM,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC;IAC1C,OAAO,CAAC,EAAE,uBAAuB,GAAG,SAAS,CAAC;IAC9C,EAAE,CAAC,EAAE,iBAAiB,GAAG,SAAS,CAAC;IACnC,KAAK,CAAC,EAAE,qBAAqB,GAAG,IAAI,GAAG,SAAS,CAAC;IACjD,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACnC,WAAW,CAAC,EAAE,KAAK,CAAC,yBAAyB,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC;IAClE,MAAM,CAAC,EAAE,qBAAqB,GAAG,SAAS,CAAC;CAC5C,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,6CAA6C,EAAE,CAAC,CAAC,OAAO,CACnE,uCAAuC,EACvC,CAAC,CAAC,UAAU,EACZ,8BAA8B,CAY9B,CAAC;AAEH,wBAAgB,oCAAoC,CAClD,8BAA8B,EAAE,8BAA8B,GAC7D,MAAM,CAMR"}
|
|
@@ -36,7 +36,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
36
36
|
};
|
|
37
37
|
})();
|
|
38
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
-
exports.V1AccountListBadgesRequestBody$outboundSchema = exports.
|
|
39
|
+
exports.V1AccountListBadgesRequestBody$outboundSchema = exports.V1AccountListBadgesRequestBodyFilter$outboundSchema = exports.V1AccountListBadgesRequestBodyFilter = void 0;
|
|
40
40
|
exports.v1AccountListBadgesRequestBodyToJSON = v1AccountListBadgesRequestBodyToJSON;
|
|
41
41
|
const z = __importStar(require("zod/v3"));
|
|
42
42
|
const badgevaluefilter_js_1 = require("./badgevaluefilter.js");
|
|
@@ -44,17 +44,16 @@ const idsearch_js_1 = require("./idsearch.js");
|
|
|
44
44
|
const v1badgefilters_js_1 = require("./v1badgefilters.js");
|
|
45
45
|
const v1badgeorder_js_1 = require("./v1badgeorder.js");
|
|
46
46
|
const vanitysearch_js_1 = require("./vanitysearch.js");
|
|
47
|
-
exports.
|
|
47
|
+
exports.V1AccountListBadgesRequestBodyFilter = {
|
|
48
48
|
Foil: "foil",
|
|
49
49
|
Sale: "sale",
|
|
50
50
|
Event: "event",
|
|
51
51
|
};
|
|
52
52
|
/** @internal */
|
|
53
|
-
exports.
|
|
54
|
-
.nativeEnum(exports.Filter);
|
|
53
|
+
exports.V1AccountListBadgesRequestBodyFilter$outboundSchema = z.nativeEnum(exports.V1AccountListBadgesRequestBodyFilter);
|
|
55
54
|
/** @internal */
|
|
56
55
|
exports.V1AccountListBadgesRequestBody$outboundSchema = z.object({
|
|
57
|
-
filter: z.nullable(z.array(exports.
|
|
56
|
+
filter: z.nullable(z.array(exports.V1AccountListBadgesRequestBodyFilter$outboundSchema)).optional(),
|
|
58
57
|
filters: v1badgefilters_js_1.V1BadgeFilters$outboundSchema.optional(),
|
|
59
58
|
id: idsearch_js_1.IDSearch$outboundSchema.optional(),
|
|
60
59
|
order: z.nullable(v1badgeorder_js_1.V1BadgeOrder$outboundSchema).optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"v1accountlistbadgesrequestbody.js","sourceRoot":"","sources":["../../src/models/components/v1accountlistbadgesrequestbody.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"v1accountlistbadgesrequestbody.js","sourceRoot":"","sources":["../../src/models/components/v1accountlistbadgesrequestbody.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA4FH,oFAQC;AAlGD,0CAA4B;AAE5B,+DAI+B;AAC/B,+CAIuB;AACvB,2DAI6B;AAC7B,uDAI2B;AAC3B,uDAI2B;AAEd,QAAA,oCAAoC,GAAG;IAClD,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;CACN,CAAC;AAsBX,gBAAgB;AACH,QAAA,mDAAmD,GACC,CAAC,CAAC,UAAU,CACzE,4CAAoC,CACrC,CAAC;AAcJ,gBAAgB;AACH,QAAA,6CAA6C,GAItD,CAAC,CAAC,MAAM,CAAC;IACX,MAAM,EAAE,CAAC,CAAC,QAAQ,CAChB,CAAC,CAAC,KAAK,CAAC,2DAAmD,CAAC,CAC7D,CAAC,QAAQ,EAAE;IACZ,OAAO,EAAE,iDAA6B,CAAC,QAAQ,EAAE;IACjD,EAAE,EAAE,qCAAuB,CAAC,QAAQ,EAAE;IACtC,KAAK,EAAE,CAAC,CAAC,QAAQ,CAAC,6CAA2B,CAAC,CAAC,QAAQ,EAAE;IACzD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC,CAAC,CAAC;IACjC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IACzC,WAAW,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,qDAA+B,CAAC,CAAC,CAAC,QAAQ,EAAE;IAC5E,MAAM,EAAE,6CAA2B,CAAC,QAAQ,EAAE;CAC/C,CAAC,CAAC;AAEH,SAAgB,oCAAoC,CAClD,8BAA8D;IAE9D,OAAO,IAAI,CAAC,SAAS,CACnB,qDAA6C,CAAC,KAAK,CACjD,8BAA8B,CAC/B,CACF,CAAC;AACJ,CAAC"}
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
import * as z from "zod/v3";
|
|
2
2
|
import { ClosedEnum } from "../../types/enums.js";
|
|
3
|
-
export declare const
|
|
3
|
+
export declare const V1AppOrderBy: {
|
|
4
4
|
readonly AppId: "appId";
|
|
5
5
|
readonly Playtime: "playtime";
|
|
6
6
|
};
|
|
7
|
-
export type
|
|
8
|
-
export declare const
|
|
7
|
+
export type V1AppOrderBy = ClosedEnum<typeof V1AppOrderBy>;
|
|
8
|
+
export declare const V1AppOrderDirection: {
|
|
9
9
|
readonly Asc: "asc";
|
|
10
10
|
readonly Desc: "desc";
|
|
11
11
|
};
|
|
12
|
-
export type
|
|
12
|
+
export type V1AppOrderDirection = ClosedEnum<typeof V1AppOrderDirection>;
|
|
13
13
|
export type V1AppOrder = {
|
|
14
|
-
by:
|
|
15
|
-
direction?:
|
|
14
|
+
by: V1AppOrderBy;
|
|
15
|
+
direction?: V1AppOrderDirection | undefined;
|
|
16
16
|
};
|
|
17
17
|
/** @internal */
|
|
18
|
-
export declare const
|
|
18
|
+
export declare const V1AppOrderBy$outboundSchema: z.ZodNativeEnum<typeof V1AppOrderBy>;
|
|
19
19
|
/** @internal */
|
|
20
|
-
export declare const
|
|
20
|
+
export declare const V1AppOrderDirection$outboundSchema: z.ZodNativeEnum<typeof V1AppOrderDirection>;
|
|
21
21
|
/** @internal */
|
|
22
22
|
export type V1AppOrder$Outbound = {
|
|
23
23
|
by: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"v1apporder.d.ts","sourceRoot":"","sources":["../../src/models/components/v1apporder.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAC5B,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,eAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"v1apporder.d.ts","sourceRoot":"","sources":["../../src/models/components/v1apporder.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAC5B,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,eAAO,MAAM,YAAY;;;CAGf,CAAC;AACX,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,CAAC;AAE3D,eAAO,MAAM,mBAAmB;;;CAGtB,CAAC;AACX,MAAM,MAAM,mBAAmB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEzE,MAAM,MAAM,UAAU,GAAG;IACvB,EAAE,EAAE,YAAY,CAAC;IACjB,SAAS,CAAC,EAAE,mBAAmB,GAAG,SAAS,CAAC;CAC7C,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,aAAa,CAAC,OAAO,YAAY,CACjD,CAAC;AAE7B,gBAAgB;AAChB,eAAO,MAAM,kCAAkC,EAAE,CAAC,CAAC,aAAa,CAC9D,OAAO,mBAAmB,CACS,CAAC;AAEtC,gBAAgB;AAChB,MAAM,MAAM,mBAAmB,GAAG;IAChC,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,OAAO,CAC/C,mBAAmB,EACnB,CAAC,CAAC,UAAU,EACZ,UAAU,CAIV,CAAC;AAEH,wBAAgB,gBAAgB,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM,CAE/D"}
|
|
@@ -36,26 +36,25 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
36
36
|
};
|
|
37
37
|
})();
|
|
38
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
-
exports.V1AppOrder$outboundSchema = exports.
|
|
39
|
+
exports.V1AppOrder$outboundSchema = exports.V1AppOrderDirection$outboundSchema = exports.V1AppOrderBy$outboundSchema = exports.V1AppOrderDirection = exports.V1AppOrderBy = void 0;
|
|
40
40
|
exports.v1AppOrderToJSON = v1AppOrderToJSON;
|
|
41
41
|
const z = __importStar(require("zod/v3"));
|
|
42
|
-
exports.
|
|
42
|
+
exports.V1AppOrderBy = {
|
|
43
43
|
AppId: "appId",
|
|
44
44
|
Playtime: "playtime",
|
|
45
45
|
};
|
|
46
|
-
exports.
|
|
46
|
+
exports.V1AppOrderDirection = {
|
|
47
47
|
Asc: "asc",
|
|
48
48
|
Desc: "desc",
|
|
49
49
|
};
|
|
50
50
|
/** @internal */
|
|
51
|
-
exports.
|
|
51
|
+
exports.V1AppOrderBy$outboundSchema = z.nativeEnum(exports.V1AppOrderBy);
|
|
52
52
|
/** @internal */
|
|
53
|
-
exports.
|
|
54
|
-
.nativeEnum(exports.Direction);
|
|
53
|
+
exports.V1AppOrderDirection$outboundSchema = z.nativeEnum(exports.V1AppOrderDirection);
|
|
55
54
|
/** @internal */
|
|
56
55
|
exports.V1AppOrder$outboundSchema = z.object({
|
|
57
|
-
by: exports.
|
|
58
|
-
direction: exports.
|
|
56
|
+
by: exports.V1AppOrderBy$outboundSchema,
|
|
57
|
+
direction: exports.V1AppOrderDirection$outboundSchema.default("desc"),
|
|
59
58
|
});
|
|
60
59
|
function v1AppOrderToJSON(v1AppOrder) {
|
|
61
60
|
return JSON.stringify(exports.V1AppOrder$outboundSchema.parse(v1AppOrder));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"v1apporder.js","sourceRoot":"","sources":["../../src/models/components/v1apporder.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"v1apporder.js","sourceRoot":"","sources":["../../src/models/components/v1apporder.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+CH,4CAEC;AA/CD,0CAA4B;AAGf,QAAA,YAAY,GAAG;IAC1B,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,UAAU;CACZ,CAAC;AAGE,QAAA,mBAAmB,GAAG;IACjC,GAAG,EAAE,KAAK;IACV,IAAI,EAAE,MAAM;CACJ,CAAC;AAQX,gBAAgB;AACH,QAAA,2BAA2B,GACtC,CAAC,CAAC,UAAU,CAAC,oBAAY,CAAC,CAAC;AAE7B,gBAAgB;AACH,QAAA,kCAAkC,GAE3C,CAAC,CAAC,UAAU,CAAC,2BAAmB,CAAC,CAAC;AAQtC,gBAAgB;AACH,QAAA,yBAAyB,GAIlC,CAAC,CAAC,MAAM,CAAC;IACX,EAAE,EAAE,mCAA2B;IAC/B,SAAS,EAAE,0CAAkC,CAAC,OAAO,CAAC,MAAM,CAAC;CAC9D,CAAC,CAAC;AAEH,SAAgB,gBAAgB,CAAC,UAAsB;IACrD,OAAO,IAAI,CAAC,SAAS,CAAC,iCAAyB,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC;AACrE,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as z from "zod/v3";
|
|
2
|
+
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
3
|
+
import * as components from "../components/index.js";
|
|
4
|
+
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
5
|
+
export type CompareBadgesResponse = {
|
|
6
|
+
httpMeta: components.HTTPMetadata;
|
|
7
|
+
/**
|
|
8
|
+
* OK
|
|
9
|
+
*/
|
|
10
|
+
v1AccountCompareBadgesResponseBody?: components.V1AccountCompareBadgesResponseBody | undefined;
|
|
11
|
+
};
|
|
12
|
+
/** @internal */
|
|
13
|
+
export declare const CompareBadgesResponse$inboundSchema: z.ZodType<CompareBadgesResponse, z.ZodTypeDef, unknown>;
|
|
14
|
+
export declare function compareBadgesResponseFromJSON(jsonString: string): SafeParseResult<CompareBadgesResponse, SDKValidationError>;
|
|
15
|
+
//# sourceMappingURL=comparebadges.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"comparebadges.d.ts","sourceRoot":"","sources":["../../src/models/operations/comparebadges.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAG5B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,KAAK,UAAU,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAErE,MAAM,MAAM,qBAAqB,GAAG;IAClC,QAAQ,EAAE,UAAU,CAAC,YAAY,CAAC;IAClC;;OAEG;IACH,kCAAkC,CAAC,EAC/B,UAAU,CAAC,kCAAkC,GAC7C,SAAS,CAAC;CACf,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,OAAO,CACzD,qBAAqB,EACrB,CAAC,CAAC,UAAU,EACZ,OAAO,CAUP,CAAC;AAEH,wBAAgB,6BAA6B,CAC3C,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,qBAAqB,EAAE,kBAAkB,CAAC,CAM5D"}
|