@steamsets/client-ts 0.11.3 → 0.11.4
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 -2
- package/docs/sdks/developer/README.md +16 -8
- package/funcs/{developerAccountV1SettingsDeveloperAppGenerateKey.d.ts → developerAccountV1SettingsDeveloperAppUpdate.d.ts} +3 -3
- package/funcs/developerAccountV1SettingsDeveloperAppUpdate.d.ts.map +1 -0
- package/funcs/{developerAccountV1SettingsDeveloperAppGenerateKey.js → developerAccountV1SettingsDeveloperAppUpdate.js} +8 -9
- package/funcs/developerAccountV1SettingsDeveloperAppUpdate.js.map +1 -0
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/models/components/developerapp.d.ts +88 -0
- package/models/components/developerapp.d.ts.map +1 -0
- package/models/components/developerapp.js +83 -0
- package/models/components/developerapp.js.map +1 -0
- package/models/components/index.d.ts +3 -2
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +3 -2
- package/models/components/index.js.map +1 -1
- package/models/components/v1accountdeveloperappupdaterequestbody.d.ts +48 -0
- package/models/components/v1accountdeveloperappupdaterequestbody.d.ts.map +1 -0
- package/models/components/{v1accountdeveloperappgeneratekeyrequestbody.js → v1accountdeveloperappupdaterequestbody.js} +19 -11
- package/models/components/v1accountdeveloperappupdaterequestbody.js.map +1 -0
- package/models/components/v1accountdeveloperappupdateresponsebody.d.ts +33 -0
- package/models/components/v1accountdeveloperappupdateresponsebody.d.ts.map +1 -0
- package/models/components/{v1accountdeveloperappgeneratekeyresponsebody.js → v1accountdeveloperappupdateresponsebody.js} +13 -13
- package/models/components/v1accountdeveloperappupdateresponsebody.js.map +1 -0
- package/models/components/v1getsettingsbody.d.ts +6 -0
- package/models/components/v1getsettingsbody.d.ts.map +1 -1
- package/models/components/v1getsettingsbody.js +3 -0
- package/models/components/v1getsettingsbody.js.map +1 -1
- package/models/operations/accountv1settingsdeveloperappupdate.d.ts +31 -0
- package/models/operations/accountv1settingsdeveloperappupdate.d.ts.map +1 -0
- package/models/operations/{accountv1settingsdeveloperappgeneratekey.js → accountv1settingsdeveloperappupdate.js} +17 -17
- package/models/operations/accountv1settingsdeveloperappupdate.js.map +1 -0
- package/models/operations/index.d.ts +1 -1
- package/models/operations/index.d.ts.map +1 -1
- package/models/operations/index.js +1 -1
- package/models/operations/index.js.map +1 -1
- package/package.json +1 -1
- package/sdk/developer.d.ts +2 -2
- package/sdk/developer.d.ts.map +1 -1
- package/sdk/developer.js +4 -4
- package/sdk/developer.js.map +1 -1
- package/src/funcs/{developerAccountV1SettingsDeveloperAppGenerateKey.ts → developerAccountV1SettingsDeveloperAppUpdate.ts} +12 -13
- package/src/lib/config.ts +2 -2
- package/src/models/components/developerapp.ts +120 -0
- package/src/models/components/index.ts +3 -2
- package/src/models/components/v1accountdeveloperappupdaterequestbody.ts +78 -0
- package/src/models/components/v1accountdeveloperappupdateresponsebody.ts +66 -0
- package/src/models/components/v1getsettingsbody.ts +13 -0
- package/src/models/operations/accountv1settingsdeveloperappupdate.ts +76 -0
- package/src/models/operations/index.ts +1 -1
- package/src/sdk/developer.ts +6 -6
- package/funcs/developerAccountV1SettingsDeveloperAppGenerateKey.d.ts.map +0 -1
- package/funcs/developerAccountV1SettingsDeveloperAppGenerateKey.js.map +0 -1
- package/models/components/v1accountdeveloperappgeneratekeyrequestbody.d.ts +0 -28
- package/models/components/v1accountdeveloperappgeneratekeyrequestbody.d.ts.map +0 -1
- package/models/components/v1accountdeveloperappgeneratekeyrequestbody.js.map +0 -1
- package/models/components/v1accountdeveloperappgeneratekeyresponsebody.d.ts +0 -33
- package/models/components/v1accountdeveloperappgeneratekeyresponsebody.d.ts.map +0 -1
- package/models/components/v1accountdeveloperappgeneratekeyresponsebody.js.map +0 -1
- package/models/operations/accountv1settingsdeveloperappgeneratekey.d.ts +0 -31
- package/models/operations/accountv1settingsdeveloperappgeneratekey.d.ts.map +0 -1
- package/models/operations/accountv1settingsdeveloperappgeneratekey.js.map +0 -1
- package/src/models/components/v1accountdeveloperappgeneratekeyrequestbody.ts +0 -52
- package/src/models/components/v1accountdeveloperappgeneratekeyresponsebody.ts +0 -68
- package/src/models/operations/accountv1settingsdeveloperappgeneratekey.ts +0 -77
|
@@ -26,22 +26,22 @@ 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.V1AccountDeveloperAppUpdateResponseBody$ = exports.V1AccountDeveloperAppUpdateResponseBody$outboundSchema = exports.V1AccountDeveloperAppUpdateResponseBody$inboundSchema = void 0;
|
|
30
30
|
const z = __importStar(require("zod"));
|
|
31
31
|
const primitives_js_1 = require("../../lib/primitives.js");
|
|
32
32
|
/** @internal */
|
|
33
|
-
exports.
|
|
33
|
+
exports.V1AccountDeveloperAppUpdateResponseBody$inboundSchema = z.object({
|
|
34
34
|
$schema: z.string().optional(),
|
|
35
|
-
apiKey: z.string(),
|
|
35
|
+
apiKey: z.nullable(z.string()),
|
|
36
36
|
}).transform((v) => {
|
|
37
37
|
return (0, primitives_js_1.remap)(v, {
|
|
38
38
|
"$schema": "dollarSchema",
|
|
39
39
|
});
|
|
40
40
|
});
|
|
41
41
|
/** @internal */
|
|
42
|
-
exports.
|
|
42
|
+
exports.V1AccountDeveloperAppUpdateResponseBody$outboundSchema = z.object({
|
|
43
43
|
dollarSchema: z.string().optional(),
|
|
44
|
-
apiKey: z.string(),
|
|
44
|
+
apiKey: z.nullable(z.string()),
|
|
45
45
|
}).transform((v) => {
|
|
46
46
|
return (0, primitives_js_1.remap)(v, {
|
|
47
47
|
dollarSchema: "$schema",
|
|
@@ -51,11 +51,11 @@ exports.V1AccountDeveloperAppGenerateKeyResponseBody$outboundSchema = z.object({
|
|
|
51
51
|
* @internal
|
|
52
52
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
53
53
|
*/
|
|
54
|
-
var
|
|
55
|
-
(function (
|
|
56
|
-
/** @deprecated use `
|
|
57
|
-
|
|
58
|
-
/** @deprecated use `
|
|
59
|
-
|
|
60
|
-
})(
|
|
61
|
-
//# sourceMappingURL=
|
|
54
|
+
var V1AccountDeveloperAppUpdateResponseBody$;
|
|
55
|
+
(function (V1AccountDeveloperAppUpdateResponseBody$) {
|
|
56
|
+
/** @deprecated use `V1AccountDeveloperAppUpdateResponseBody$inboundSchema` instead. */
|
|
57
|
+
V1AccountDeveloperAppUpdateResponseBody$.inboundSchema = exports.V1AccountDeveloperAppUpdateResponseBody$inboundSchema;
|
|
58
|
+
/** @deprecated use `V1AccountDeveloperAppUpdateResponseBody$outboundSchema` instead. */
|
|
59
|
+
V1AccountDeveloperAppUpdateResponseBody$.outboundSchema = exports.V1AccountDeveloperAppUpdateResponseBody$outboundSchema;
|
|
60
|
+
})(V1AccountDeveloperAppUpdateResponseBody$ || (exports.V1AccountDeveloperAppUpdateResponseBody$ = V1AccountDeveloperAppUpdateResponseBody$ = {}));
|
|
61
|
+
//# sourceMappingURL=v1accountdeveloperappupdateresponsebody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"v1accountdeveloperappupdateresponsebody.js","sourceRoot":"","sources":["../../src/models/components/v1accountdeveloperappupdateresponsebody.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AACzB,2DAA0D;AAa1D,gBAAgB;AACH,QAAA,qDAAqD,GAI9D,CAAC,CAAC,MAAM,CAAC;IACX,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CAC/B,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;AAQH,gBAAgB;AACH,QAAA,sDAAsD,GAI/D,CAAC,CAAC,MAAM,CAAC;IACX,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CAC/B,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,wCAAwC,CASxD;AATD,WAAiB,wCAAwC;IACvD,uFAAuF;IAC1E,sDAAa,GACxB,6DAAqD,CAAC;IACxD,wFAAwF;IAC3E,uDAAc,GACzB,8DAAsD,CAAC;AAG3D,CAAC,EATgB,wCAAwC,wDAAxC,wCAAwC,QASxD"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as z from "zod";
|
|
2
2
|
import { ClosedEnum } from "../../types/enums.js";
|
|
3
3
|
import { Connection, Connection$Outbound } from "./connection.js";
|
|
4
|
+
import { DeveloperApp, DeveloperApp$Outbound } from "./developerapp.js";
|
|
4
5
|
import { EmailNotification, EmailNotification$Outbound } from "./emailnotification.js";
|
|
5
6
|
import { Image, Image$Outbound } from "./image.js";
|
|
6
7
|
import { Session, Session$Outbound } from "./session.js";
|
|
@@ -32,6 +33,10 @@ export type V1GetSettingsBody = {
|
|
|
32
33
|
* The connections the account has
|
|
33
34
|
*/
|
|
34
35
|
connections: Array<Connection> | null;
|
|
36
|
+
/**
|
|
37
|
+
* The developer apps the account has
|
|
38
|
+
*/
|
|
39
|
+
developerApps: Array<DeveloperApp> | null;
|
|
35
40
|
/**
|
|
36
41
|
* The email the account is using
|
|
37
42
|
*/
|
|
@@ -97,6 +102,7 @@ export type V1GetSettingsBody$Outbound = {
|
|
|
97
102
|
color: string;
|
|
98
103
|
colors: string;
|
|
99
104
|
connections: Array<Connection$Outbound> | null;
|
|
105
|
+
developerApps: Array<DeveloperApp$Outbound> | null;
|
|
100
106
|
email: string;
|
|
101
107
|
emailNotifications: Array<EmailNotification$Outbound> | null;
|
|
102
108
|
emailVerified: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"v1getsettingsbody.d.ts","sourceRoot":"","sources":["../../src/models/components/v1getsettingsbody.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EACL,UAAU,EAEV,mBAAmB,EAEpB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EACL,iBAAiB,EAEjB,0BAA0B,EAE3B,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,KAAK,EAEL,cAAc,EAEf,MAAM,YAAY,CAAC;AACpB,OAAO,EACL,OAAO,EAEP,gBAAgB,EAEjB,MAAM,cAAc,CAAC;AAEtB;;GAEG;AACH,eAAO,MAAM,KAAK;;;CAGR,CAAC;AACX;;GAEG;AACH,MAAM,MAAM,KAAK,GAAG,UAAU,CAAC,OAAO,KAAK,CAAC,CAAC;AAE7C,MAAM,MAAM,iBAAiB,GAAG;IAC9B;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAClC;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,WAAW,EAAE,KAAK,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC;IACtC;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,kBAAkB,EAAE,KAAK,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC;IACpD;;OAEG;IACH,aAAa,EAAE,OAAO,CAAC;IACvB;;OAEG;IACH,MAAM,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,EAAE,KAAK,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC;IAC5B;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,QAAQ,EAAE,KAAK,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC;IAChC;;OAEG;IACH,KAAK,EAAE,KAAK,CAAC;IACb;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,mBAAmB,EAAE,CAAC,CAAC,aAAa,CAAC,OAAO,KAAK,CAE7D,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,oBAAoB,EAAE,CAAC,CAAC,aAAa,CAAC,OAAO,KAAK,CAC1C,CAAC;AAEtB;;;GAGG;AACH,yBAAiB,MAAM,CAAC;IACtB,qDAAqD;IAC9C,MAAM,aAAa;;;MAAsB,CAAC;IACjD,sDAAsD;IAC/C,MAAM,cAAc;;;MAAuB,CAAC;CACpD;AAED,gBAAgB;AAChB,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CACrD,iBAAiB,EACjB,CAAC,CAAC,UAAU,EACZ,OAAO,
|
|
1
|
+
{"version":3,"file":"v1getsettingsbody.d.ts","sourceRoot":"","sources":["../../src/models/components/v1getsettingsbody.ts"],"names":[],"mappings":"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"}
|
|
@@ -30,6 +30,7 @@ exports.V1GetSettingsBody$ = exports.V1GetSettingsBody$outboundSchema = exports.
|
|
|
30
30
|
const z = __importStar(require("zod"));
|
|
31
31
|
const primitives_js_1 = require("../../lib/primitives.js");
|
|
32
32
|
const connection_js_1 = require("./connection.js");
|
|
33
|
+
const developerapp_js_1 = require("./developerapp.js");
|
|
33
34
|
const emailnotification_js_1 = require("./emailnotification.js");
|
|
34
35
|
const image_js_1 = require("./image.js");
|
|
35
36
|
const session_js_1 = require("./session.js");
|
|
@@ -61,6 +62,7 @@ exports.V1GetSettingsBody$inboundSchema = z.object({
|
|
|
61
62
|
color: z.string(),
|
|
62
63
|
colors: z.string(),
|
|
63
64
|
connections: z.nullable(z.array(connection_js_1.Connection$inboundSchema)),
|
|
65
|
+
developerApps: z.nullable(z.array(developerapp_js_1.DeveloperApp$inboundSchema)),
|
|
64
66
|
email: z.string(),
|
|
65
67
|
emailNotifications: z.nullable(z.array(emailnotification_js_1.EmailNotification$inboundSchema)),
|
|
66
68
|
emailVerified: z.boolean(),
|
|
@@ -81,6 +83,7 @@ exports.V1GetSettingsBody$outboundSchema = z.object({
|
|
|
81
83
|
color: z.string(),
|
|
82
84
|
colors: z.string(),
|
|
83
85
|
connections: z.nullable(z.array(connection_js_1.Connection$outboundSchema)),
|
|
86
|
+
developerApps: z.nullable(z.array(developerapp_js_1.DeveloperApp$outboundSchema)),
|
|
84
87
|
email: z.string(),
|
|
85
88
|
emailNotifications: z.nullable(z.array(emailnotification_js_1.EmailNotification$outboundSchema)),
|
|
86
89
|
emailVerified: z.boolean(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"v1getsettingsbody.js","sourceRoot":"","sources":["../../src/models/components/v1getsettingsbody.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AACzB,2DAA0D;AAE1D,mDAKyB;AACzB,iEAKgC;AAChC,yCAKoB;AACpB,6CAKsB;AAEtB;;GAEG;AACU,QAAA,KAAK,GAAG;IACnB,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;CACN,CAAC;
|
|
1
|
+
{"version":3,"file":"v1getsettingsbody.js","sourceRoot":"","sources":["../../src/models/components/v1getsettingsbody.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as z from "zod";
|
|
2
|
+
import * as components from "../components/index.js";
|
|
3
|
+
export type AccountV1SettingsDeveloperAppUpdateResponse = {
|
|
4
|
+
httpMeta: components.HTTPMetadata;
|
|
5
|
+
/**
|
|
6
|
+
* OK
|
|
7
|
+
*/
|
|
8
|
+
v1AccountDeveloperAppUpdateResponseBody?: components.V1AccountDeveloperAppUpdateResponseBody | undefined;
|
|
9
|
+
};
|
|
10
|
+
/** @internal */
|
|
11
|
+
export declare const AccountV1SettingsDeveloperAppUpdateResponse$inboundSchema: z.ZodType<AccountV1SettingsDeveloperAppUpdateResponse, z.ZodTypeDef, unknown>;
|
|
12
|
+
/** @internal */
|
|
13
|
+
export type AccountV1SettingsDeveloperAppUpdateResponse$Outbound = {
|
|
14
|
+
HttpMeta: components.HTTPMetadata$Outbound;
|
|
15
|
+
V1AccountDeveloperAppUpdateResponseBody?: components.V1AccountDeveloperAppUpdateResponseBody$Outbound | undefined;
|
|
16
|
+
};
|
|
17
|
+
/** @internal */
|
|
18
|
+
export declare const AccountV1SettingsDeveloperAppUpdateResponse$outboundSchema: z.ZodType<AccountV1SettingsDeveloperAppUpdateResponse$Outbound, z.ZodTypeDef, AccountV1SettingsDeveloperAppUpdateResponse>;
|
|
19
|
+
/**
|
|
20
|
+
* @internal
|
|
21
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
22
|
+
*/
|
|
23
|
+
export declare namespace AccountV1SettingsDeveloperAppUpdateResponse$ {
|
|
24
|
+
/** @deprecated use `AccountV1SettingsDeveloperAppUpdateResponse$inboundSchema` instead. */
|
|
25
|
+
const inboundSchema: z.ZodType<AccountV1SettingsDeveloperAppUpdateResponse, z.ZodTypeDef, unknown>;
|
|
26
|
+
/** @deprecated use `AccountV1SettingsDeveloperAppUpdateResponse$outboundSchema` instead. */
|
|
27
|
+
const outboundSchema: z.ZodType<AccountV1SettingsDeveloperAppUpdateResponse$Outbound, z.ZodTypeDef, AccountV1SettingsDeveloperAppUpdateResponse>;
|
|
28
|
+
/** @deprecated use `AccountV1SettingsDeveloperAppUpdateResponse$Outbound` instead. */
|
|
29
|
+
type Outbound = AccountV1SettingsDeveloperAppUpdateResponse$Outbound;
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=accountv1settingsdeveloperappupdate.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"accountv1settingsdeveloperappupdate.d.ts","sourceRoot":"","sources":["../../src/models/operations/accountv1settingsdeveloperappupdate.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,OAAO,KAAK,UAAU,MAAM,wBAAwB,CAAC;AAErD,MAAM,MAAM,2CAA2C,GAAG;IACxD,QAAQ,EAAE,UAAU,CAAC,YAAY,CAAC;IAClC;;OAEG;IACH,uCAAuC,CAAC,EACpC,UAAU,CAAC,uCAAuC,GAClD,SAAS,CAAC;CACf,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,yDAAyD,EACpE,CAAC,CAAC,OAAO,CACP,2CAA2C,EAC3C,CAAC,CAAC,UAAU,EACZ,OAAO,CAWP,CAAC;AAEL,gBAAgB;AAChB,MAAM,MAAM,oDAAoD,GAAG;IACjE,QAAQ,EAAE,UAAU,CAAC,qBAAqB,CAAC;IAC3C,uCAAuC,CAAC,EACpC,UAAU,CAAC,gDAAgD,GAC3D,SAAS,CAAC;CACf,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,0DAA0D,EACrE,CAAC,CAAC,OAAO,CACP,oDAAoD,EACpD,CAAC,CAAC,UAAU,EACZ,2CAA2C,CAW3C,CAAC;AAEL;;;GAGG;AACH,yBAAiB,4CAA4C,CAAC;IAC5D,2FAA2F;IACpF,MAAM,aAAa,+EACiC,CAAC;IAC5D,4FAA4F;IACrF,MAAM,cAAc,4HACiC,CAAC;IAC7D,sFAAsF;IACtF,KAAY,QAAQ,GAAG,oDAAoD,CAAC;CAC7E"}
|
|
@@ -26,41 +26,41 @@ 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.AccountV1SettingsDeveloperAppUpdateResponse$ = exports.AccountV1SettingsDeveloperAppUpdateResponse$outboundSchema = exports.AccountV1SettingsDeveloperAppUpdateResponse$inboundSchema = void 0;
|
|
30
30
|
const z = __importStar(require("zod"));
|
|
31
31
|
const primitives_js_1 = require("../../lib/primitives.js");
|
|
32
32
|
const components = __importStar(require("../components/index.js"));
|
|
33
33
|
/** @internal */
|
|
34
|
-
exports.
|
|
34
|
+
exports.AccountV1SettingsDeveloperAppUpdateResponse$inboundSchema = z.object({
|
|
35
35
|
HttpMeta: components.HTTPMetadata$inboundSchema,
|
|
36
|
-
|
|
37
|
-
.
|
|
36
|
+
V1AccountDeveloperAppUpdateResponseBody: components
|
|
37
|
+
.V1AccountDeveloperAppUpdateResponseBody$inboundSchema.optional(),
|
|
38
38
|
}).transform((v) => {
|
|
39
39
|
return (0, primitives_js_1.remap)(v, {
|
|
40
40
|
"HttpMeta": "httpMeta",
|
|
41
|
-
"
|
|
41
|
+
"V1AccountDeveloperAppUpdateResponseBody": "v1AccountDeveloperAppUpdateResponseBody",
|
|
42
42
|
});
|
|
43
43
|
});
|
|
44
44
|
/** @internal */
|
|
45
|
-
exports.
|
|
45
|
+
exports.AccountV1SettingsDeveloperAppUpdateResponse$outboundSchema = z.object({
|
|
46
46
|
httpMeta: components.HTTPMetadata$outboundSchema,
|
|
47
|
-
|
|
48
|
-
.
|
|
47
|
+
v1AccountDeveloperAppUpdateResponseBody: components
|
|
48
|
+
.V1AccountDeveloperAppUpdateResponseBody$outboundSchema.optional(),
|
|
49
49
|
}).transform((v) => {
|
|
50
50
|
return (0, primitives_js_1.remap)(v, {
|
|
51
51
|
httpMeta: "HttpMeta",
|
|
52
|
-
|
|
52
|
+
v1AccountDeveloperAppUpdateResponseBody: "V1AccountDeveloperAppUpdateResponseBody",
|
|
53
53
|
});
|
|
54
54
|
});
|
|
55
55
|
/**
|
|
56
56
|
* @internal
|
|
57
57
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
58
58
|
*/
|
|
59
|
-
var
|
|
60
|
-
(function (
|
|
61
|
-
/** @deprecated use `
|
|
62
|
-
|
|
63
|
-
/** @deprecated use `
|
|
64
|
-
|
|
65
|
-
})(
|
|
66
|
-
//# sourceMappingURL=
|
|
59
|
+
var AccountV1SettingsDeveloperAppUpdateResponse$;
|
|
60
|
+
(function (AccountV1SettingsDeveloperAppUpdateResponse$) {
|
|
61
|
+
/** @deprecated use `AccountV1SettingsDeveloperAppUpdateResponse$inboundSchema` instead. */
|
|
62
|
+
AccountV1SettingsDeveloperAppUpdateResponse$.inboundSchema = exports.AccountV1SettingsDeveloperAppUpdateResponse$inboundSchema;
|
|
63
|
+
/** @deprecated use `AccountV1SettingsDeveloperAppUpdateResponse$outboundSchema` instead. */
|
|
64
|
+
AccountV1SettingsDeveloperAppUpdateResponse$.outboundSchema = exports.AccountV1SettingsDeveloperAppUpdateResponse$outboundSchema;
|
|
65
|
+
})(AccountV1SettingsDeveloperAppUpdateResponse$ || (exports.AccountV1SettingsDeveloperAppUpdateResponse$ = AccountV1SettingsDeveloperAppUpdateResponse$ = {}));
|
|
66
|
+
//# sourceMappingURL=accountv1settingsdeveloperappupdate.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"accountv1settingsdeveloperappupdate.js","sourceRoot":"","sources":["../../src/models/operations/accountv1settingsdeveloperappupdate.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AACzB,2DAA0D;AAC1D,mEAAqD;AAYrD,gBAAgB;AACH,QAAA,yDAAyD,GAKhE,CAAC,CAAC,MAAM,CAAC;IACX,QAAQ,EAAE,UAAU,CAAC,0BAA0B;IAC/C,uCAAuC,EAAE,UAAU;SAChD,qDAAqD,CAAC,QAAQ,EAAE;CACpE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,UAAU,EAAE,UAAU;QACtB,yCAAyC,EACvC,yCAAyC;KAC5C,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAUL,gBAAgB;AACH,QAAA,0DAA0D,GAKjE,CAAC,CAAC,MAAM,CAAC;IACX,QAAQ,EAAE,UAAU,CAAC,2BAA2B;IAChD,uCAAuC,EAAE,UAAU;SAChD,sDAAsD,CAAC,QAAQ,EAAE;CACrE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,QAAQ,EAAE,UAAU;QACpB,uCAAuC,EACrC,yCAAyC;KAC5C,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEL;;;GAGG;AACH,IAAiB,4CAA4C,CAS5D;AATD,WAAiB,4CAA4C;IAC3D,2FAA2F;IAC9E,0DAAa,GACxB,iEAAyD,CAAC;IAC5D,4FAA4F;IAC/E,2DAAc,GACzB,kEAA0D,CAAC;AAG/D,CAAC,EATgB,4CAA4C,4DAA5C,4CAA4C,QAS5D"}
|
|
@@ -17,7 +17,7 @@ export * from "./accountv1sessionlogin.js";
|
|
|
17
17
|
export * from "./accountv1settingsdeleteimages.js";
|
|
18
18
|
export * from "./accountv1settingsdeveloperappcreate.js";
|
|
19
19
|
export * from "./accountv1settingsdeveloperappdelete.js";
|
|
20
|
-
export * from "./
|
|
20
|
+
export * from "./accountv1settingsdeveloperappupdate.js";
|
|
21
21
|
export * from "./accountv1settingsget.js";
|
|
22
22
|
export * from "./accountv1settingssendemailverification.js";
|
|
23
23
|
export * from "./accountv1settingsupdate.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/operations/index.ts"],"names":[],"mappings":"AAIA,cAAc,iCAAiC,CAAC;AAChD,cAAc,0CAA0C,CAAC;AACzD,cAAc,0CAA0C,CAAC;AACzD,cAAc,0CAA0C,CAAC;AACzD,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,qCAAqC,CAAC;AACpD,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,0BAA0B,CAAC;AACzC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,oCAAoC,CAAC;AACnD,cAAc,0CAA0C,CAAC;AACzD,cAAc,0CAA0C,CAAC;AACzD,cAAc
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/operations/index.ts"],"names":[],"mappings":"AAIA,cAAc,iCAAiC,CAAC;AAChD,cAAc,0CAA0C,CAAC;AACzD,cAAc,0CAA0C,CAAC;AACzD,cAAc,0CAA0C,CAAC;AACzD,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,qCAAqC,CAAC;AACpD,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,0BAA0B,CAAC;AACzC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,oCAAoC,CAAC;AACnD,cAAc,0CAA0C,CAAC;AACzD,cAAc,0CAA0C,CAAC;AACzD,cAAc,0CAA0C,CAAC;AACzD,cAAc,2BAA2B,CAAC;AAC1C,cAAc,6CAA6C,CAAC;AAC5D,cAAc,8BAA8B,CAAC;AAC7C,cAAc,mCAAmC,CAAC;AAClD,cAAc,oCAAoC,CAAC;AACnD,cAAc,kCAAkC,CAAC;AACjD,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC"}
|
|
@@ -36,7 +36,7 @@ __exportStar(require("./accountv1sessionlogin.js"), exports);
|
|
|
36
36
|
__exportStar(require("./accountv1settingsdeleteimages.js"), exports);
|
|
37
37
|
__exportStar(require("./accountv1settingsdeveloperappcreate.js"), exports);
|
|
38
38
|
__exportStar(require("./accountv1settingsdeveloperappdelete.js"), exports);
|
|
39
|
-
__exportStar(require("./
|
|
39
|
+
__exportStar(require("./accountv1settingsdeveloperappupdate.js"), exports);
|
|
40
40
|
__exportStar(require("./accountv1settingsget.js"), exports);
|
|
41
41
|
__exportStar(require("./accountv1settingssendemailverification.js"), exports);
|
|
42
42
|
__exportStar(require("./accountv1settingsupdate.js"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/operations/index.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;AAEH,kEAAgD;AAChD,2EAAyD;AACzD,2EAAyD;AACzD,2EAAyD;AACzD,wDAAsC;AACtC,0DAAwC;AACxC,8DAA4C;AAC5C,2DAAyC;AACzC,wDAAsC;AACtC,sEAAoD;AACpD,yDAAuC;AACvC,sDAAoC;AACpC,8DAA4C;AAC5C,8DAA4C;AAC5C,2DAAyC;AACzC,6DAA2C;AAC3C,qEAAmD;AACnD,2EAAyD;AACzD,2EAAyD;AACzD,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/operations/index.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;AAEH,kEAAgD;AAChD,2EAAyD;AACzD,2EAAyD;AACzD,2EAAyD;AACzD,wDAAsC;AACtC,0DAAwC;AACxC,8DAA4C;AAC5C,2DAAyC;AACzC,wDAAsC;AACtC,sEAAoD;AACpD,yDAAuC;AACvC,sDAAoC;AACpC,8DAA4C;AAC5C,8DAA4C;AAC5C,2DAAyC;AACzC,6DAA2C;AAC3C,qEAAmD;AACnD,2EAAyD;AACzD,2EAAyD;AACzD,2EAAyD;AACzD,4DAA0C;AAC1C,8EAA4D;AAC5D,+DAA6C;AAC7C,oEAAkD;AAClD,qEAAmD;AACnD,mEAAiD;AACjD,gDAA8B;AAC9B,kDAAgC;AAChC,mDAAiC;AACjC,+DAA6C;AAC7C,gDAA8B;AAC9B,gDAA8B"}
|
package/package.json
CHANGED
package/sdk/developer.d.ts
CHANGED
|
@@ -11,8 +11,8 @@ export declare class Developer extends ClientSDK {
|
|
|
11
11
|
*/
|
|
12
12
|
accountV1SettingsDeveloperAppDelete(request: components.V1AccountDeveloperAppDeleteRequestBody, options?: RequestOptions): Promise<operations.AccountV1SettingsDeveloperAppDeleteResponse>;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* Update the developer app/re-generate the api key
|
|
15
15
|
*/
|
|
16
|
-
|
|
16
|
+
accountV1SettingsDeveloperAppUpdate(request: components.V1AccountDeveloperAppUpdateRequestBody, options?: RequestOptions): Promise<operations.AccountV1SettingsDeveloperAppUpdateResponse>;
|
|
17
17
|
}
|
|
18
18
|
//# sourceMappingURL=developer.d.ts.map
|
package/sdk/developer.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"developer.d.ts","sourceRoot":"","sources":["../src/sdk/developer.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC3D,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAC5D,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAG5D,qBAAa,SAAU,SAAQ,SAAS;IACtC;;OAEG;IACG,mCAAmC,CACvC,OAAO,EAAE,UAAU,CAAC,+BAA+B,EACnD,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,2CAA2C,CAAC;IAQlE;;OAEG;IACG,mCAAmC,CACvC,OAAO,EAAE,UAAU,CAAC,sCAAsC,EAC1D,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,2CAA2C,CAAC;IAQlE;;OAEG;IACG,
|
|
1
|
+
{"version":3,"file":"developer.d.ts","sourceRoot":"","sources":["../src/sdk/developer.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC3D,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAC5D,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAG5D,qBAAa,SAAU,SAAQ,SAAS;IACtC;;OAEG;IACG,mCAAmC,CACvC,OAAO,EAAE,UAAU,CAAC,+BAA+B,EACnD,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,2CAA2C,CAAC;IAQlE;;OAEG;IACG,mCAAmC,CACvC,OAAO,EAAE,UAAU,CAAC,sCAAsC,EAC1D,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,2CAA2C,CAAC;IAQlE;;OAEG;IACG,mCAAmC,CACvC,OAAO,EAAE,UAAU,CAAC,sCAAsC,EAC1D,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,2CAA2C,CAAC;CAOnE"}
|
package/sdk/developer.js
CHANGED
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.Developer = void 0;
|
|
7
7
|
const developerAccountV1SettingsDeveloperAppCreate_js_1 = require("../funcs/developerAccountV1SettingsDeveloperAppCreate.js");
|
|
8
8
|
const developerAccountV1SettingsDeveloperAppDelete_js_1 = require("../funcs/developerAccountV1SettingsDeveloperAppDelete.js");
|
|
9
|
-
const
|
|
9
|
+
const developerAccountV1SettingsDeveloperAppUpdate_js_1 = require("../funcs/developerAccountV1SettingsDeveloperAppUpdate.js");
|
|
10
10
|
const sdks_js_1 = require("../lib/sdks.js");
|
|
11
11
|
const fp_js_1 = require("../types/fp.js");
|
|
12
12
|
class Developer extends sdks_js_1.ClientSDK {
|
|
@@ -23,10 +23,10 @@ class Developer extends sdks_js_1.ClientSDK {
|
|
|
23
23
|
return (0, fp_js_1.unwrapAsync)((0, developerAccountV1SettingsDeveloperAppDelete_js_1.developerAccountV1SettingsDeveloperAppDelete)(this, request, options));
|
|
24
24
|
}
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* Update the developer app/re-generate the api key
|
|
27
27
|
*/
|
|
28
|
-
async
|
|
29
|
-
return (0, fp_js_1.unwrapAsync)((0,
|
|
28
|
+
async accountV1SettingsDeveloperAppUpdate(request, options) {
|
|
29
|
+
return (0, fp_js_1.unwrapAsync)((0, developerAccountV1SettingsDeveloperAppUpdate_js_1.developerAccountV1SettingsDeveloperAppUpdate)(this, request, options));
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
exports.Developer = Developer;
|
package/sdk/developer.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"developer.js","sourceRoot":"","sources":["../src/sdk/developer.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,8HAAwH;AACxH,8HAAwH;AACxH,
|
|
1
|
+
{"version":3,"file":"developer.js","sourceRoot":"","sources":["../src/sdk/developer.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,8HAAwH;AACxH,8HAAwH;AACxH,8HAAwH;AACxH,4CAA2D;AAG3D,0CAA6C;AAE7C,MAAa,SAAU,SAAQ,mBAAS;IACtC;;OAEG;IACH,KAAK,CAAC,mCAAmC,CACvC,OAAmD,EACnD,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,8FAA4C,EAC7D,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,mCAAmC,CACvC,OAA0D,EAC1D,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,8FAA4C,EAC7D,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,mCAAmC,CACvC,OAA0D,EAC1D,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,8FAA4C,EAC7D,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;CACF;AA1CD,8BA0CC"}
|
|
@@ -24,15 +24,15 @@ import * as operations from "../models/operations/index.js";
|
|
|
24
24
|
import { Result } from "../types/fp.js";
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
27
|
+
* Update the developer app/re-generate the api key
|
|
28
28
|
*/
|
|
29
|
-
export async function
|
|
29
|
+
export async function developerAccountV1SettingsDeveloperAppUpdate(
|
|
30
30
|
client: SteamSetsCore,
|
|
31
|
-
request: components.
|
|
31
|
+
request: components.V1AccountDeveloperAppUpdateRequestBody,
|
|
32
32
|
options?: RequestOptions,
|
|
33
33
|
): Promise<
|
|
34
34
|
Result<
|
|
35
|
-
operations.
|
|
35
|
+
operations.AccountV1SettingsDeveloperAppUpdateResponse,
|
|
36
36
|
| errors.ErrorModel
|
|
37
37
|
| SDKError
|
|
38
38
|
| SDKValidationError
|
|
@@ -48,8 +48,9 @@ export async function developerAccountV1SettingsDeveloperAppGenerateKey(
|
|
|
48
48
|
const parsed = safeParse(
|
|
49
49
|
input,
|
|
50
50
|
(value) =>
|
|
51
|
-
components.
|
|
52
|
-
|
|
51
|
+
components.V1AccountDeveloperAppUpdateRequestBody$outboundSchema.parse(
|
|
52
|
+
value,
|
|
53
|
+
),
|
|
53
54
|
"Input validation failed",
|
|
54
55
|
);
|
|
55
56
|
if (!parsed.ok) {
|
|
@@ -58,9 +59,7 @@ export async function developerAccountV1SettingsDeveloperAppGenerateKey(
|
|
|
58
59
|
const payload = parsed.value;
|
|
59
60
|
const body = encodeJSON("body", payload, { explode: true });
|
|
60
61
|
|
|
61
|
-
const path = pathToFunc(
|
|
62
|
-
"/account.v1.AccountService/GenerateDeveloperAppKey",
|
|
63
|
-
)();
|
|
62
|
+
const path = pathToFunc("/account.v1.AccountService/DeveloperAppUpdate")();
|
|
64
63
|
|
|
65
64
|
const headers = new Headers({
|
|
66
65
|
"Content-Type": "application/json",
|
|
@@ -70,7 +69,7 @@ export async function developerAccountV1SettingsDeveloperAppGenerateKey(
|
|
|
70
69
|
const secConfig = await extractSecurity(client._options.session);
|
|
71
70
|
const securityInput = secConfig == null ? {} : { session: secConfig };
|
|
72
71
|
const context = {
|
|
73
|
-
operationID: "account.v1.settings.developer-app-
|
|
72
|
+
operationID: "account.v1.settings.developer-app-update",
|
|
74
73
|
oAuth2Scopes: [],
|
|
75
74
|
securitySource: client._options.session,
|
|
76
75
|
};
|
|
@@ -107,7 +106,7 @@ export async function developerAccountV1SettingsDeveloperAppGenerateKey(
|
|
|
107
106
|
};
|
|
108
107
|
|
|
109
108
|
const [result] = await M.match<
|
|
110
|
-
operations.
|
|
109
|
+
operations.AccountV1SettingsDeveloperAppUpdateResponse,
|
|
111
110
|
| errors.ErrorModel
|
|
112
111
|
| SDKError
|
|
113
112
|
| SDKValidationError
|
|
@@ -119,8 +118,8 @@ export async function developerAccountV1SettingsDeveloperAppGenerateKey(
|
|
|
119
118
|
>(
|
|
120
119
|
M.json(
|
|
121
120
|
200,
|
|
122
|
-
operations.
|
|
123
|
-
{ key: "
|
|
121
|
+
operations.AccountV1SettingsDeveloperAppUpdateResponse$inboundSchema,
|
|
122
|
+
{ key: "V1AccountDeveloperAppUpdateResponseBody" },
|
|
124
123
|
),
|
|
125
124
|
M.jsonErr([404, 422, 429, 500], errors.ErrorModel$inboundSchema, {
|
|
126
125
|
ctype: "application/problem+json",
|
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.
|
|
58
|
+
sdkVersion: "0.11.4",
|
|
59
59
|
genVersion: "2.426.2",
|
|
60
60
|
userAgent:
|
|
61
|
-
"speakeasy-sdk/typescript 0.11.
|
|
61
|
+
"speakeasy-sdk/typescript 0.11.4 2.426.2 1.0.0 @steamsets/client-ts",
|
|
62
62
|
} as const;
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod";
|
|
6
|
+
import { ClosedEnum } from "../../types/enums.js";
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* The environment of the developer app
|
|
10
|
+
*/
|
|
11
|
+
export const DeveloperAppEnvironment = {
|
|
12
|
+
Production: "production",
|
|
13
|
+
Development: "development",
|
|
14
|
+
Staging: "staging",
|
|
15
|
+
} as const;
|
|
16
|
+
/**
|
|
17
|
+
* The environment of the developer app
|
|
18
|
+
*/
|
|
19
|
+
export type DeveloperAppEnvironment = ClosedEnum<
|
|
20
|
+
typeof DeveloperAppEnvironment
|
|
21
|
+
>;
|
|
22
|
+
|
|
23
|
+
export type DeveloperApp = {
|
|
24
|
+
/**
|
|
25
|
+
* The api key of the developer app
|
|
26
|
+
*/
|
|
27
|
+
apiKey: string | null;
|
|
28
|
+
/**
|
|
29
|
+
* The description of the developer app
|
|
30
|
+
*/
|
|
31
|
+
description: string;
|
|
32
|
+
/**
|
|
33
|
+
* The environment of the developer app
|
|
34
|
+
*/
|
|
35
|
+
environment: DeveloperAppEnvironment;
|
|
36
|
+
/**
|
|
37
|
+
* The icon of the developer app
|
|
38
|
+
*/
|
|
39
|
+
icon: string | null;
|
|
40
|
+
/**
|
|
41
|
+
* The id of the developer app
|
|
42
|
+
*/
|
|
43
|
+
id: string;
|
|
44
|
+
/**
|
|
45
|
+
* The name of the developer app
|
|
46
|
+
*/
|
|
47
|
+
name: string;
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
/** @internal */
|
|
51
|
+
export const DeveloperAppEnvironment$inboundSchema: z.ZodNativeEnum<
|
|
52
|
+
typeof DeveloperAppEnvironment
|
|
53
|
+
> = z.nativeEnum(DeveloperAppEnvironment);
|
|
54
|
+
|
|
55
|
+
/** @internal */
|
|
56
|
+
export const DeveloperAppEnvironment$outboundSchema: z.ZodNativeEnum<
|
|
57
|
+
typeof DeveloperAppEnvironment
|
|
58
|
+
> = DeveloperAppEnvironment$inboundSchema;
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* @internal
|
|
62
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
63
|
+
*/
|
|
64
|
+
export namespace DeveloperAppEnvironment$ {
|
|
65
|
+
/** @deprecated use `DeveloperAppEnvironment$inboundSchema` instead. */
|
|
66
|
+
export const inboundSchema = DeveloperAppEnvironment$inboundSchema;
|
|
67
|
+
/** @deprecated use `DeveloperAppEnvironment$outboundSchema` instead. */
|
|
68
|
+
export const outboundSchema = DeveloperAppEnvironment$outboundSchema;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/** @internal */
|
|
72
|
+
export const DeveloperApp$inboundSchema: z.ZodType<
|
|
73
|
+
DeveloperApp,
|
|
74
|
+
z.ZodTypeDef,
|
|
75
|
+
unknown
|
|
76
|
+
> = z.object({
|
|
77
|
+
apiKey: z.nullable(z.string()),
|
|
78
|
+
description: z.string(),
|
|
79
|
+
environment: DeveloperAppEnvironment$inboundSchema,
|
|
80
|
+
icon: z.nullable(z.string()),
|
|
81
|
+
id: z.string(),
|
|
82
|
+
name: z.string(),
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
/** @internal */
|
|
86
|
+
export type DeveloperApp$Outbound = {
|
|
87
|
+
apiKey: string | null;
|
|
88
|
+
description: string;
|
|
89
|
+
environment: string;
|
|
90
|
+
icon: string | null;
|
|
91
|
+
id: string;
|
|
92
|
+
name: string;
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
/** @internal */
|
|
96
|
+
export const DeveloperApp$outboundSchema: z.ZodType<
|
|
97
|
+
DeveloperApp$Outbound,
|
|
98
|
+
z.ZodTypeDef,
|
|
99
|
+
DeveloperApp
|
|
100
|
+
> = z.object({
|
|
101
|
+
apiKey: z.nullable(z.string()),
|
|
102
|
+
description: z.string(),
|
|
103
|
+
environment: DeveloperAppEnvironment$outboundSchema,
|
|
104
|
+
icon: z.nullable(z.string()),
|
|
105
|
+
id: z.string(),
|
|
106
|
+
name: z.string(),
|
|
107
|
+
});
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* @internal
|
|
111
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
112
|
+
*/
|
|
113
|
+
export namespace DeveloperApp$ {
|
|
114
|
+
/** @deprecated use `DeveloperApp$inboundSchema` instead. */
|
|
115
|
+
export const inboundSchema = DeveloperApp$inboundSchema;
|
|
116
|
+
/** @deprecated use `DeveloperApp$outboundSchema` instead. */
|
|
117
|
+
export const outboundSchema = DeveloperApp$outboundSchema;
|
|
118
|
+
/** @deprecated use `DeveloperApp$Outbound` instead. */
|
|
119
|
+
export type Outbound = DeveloperApp$Outbound;
|
|
120
|
+
}
|
|
@@ -17,6 +17,7 @@ export * from "./colortag.js";
|
|
|
17
17
|
export * from "./connection.js";
|
|
18
18
|
export * from "./country.js";
|
|
19
19
|
export * from "./designtag.js";
|
|
20
|
+
export * from "./developerapp.js";
|
|
20
21
|
export * from "./emailnotification.js";
|
|
21
22
|
export * from "./errordetail.js";
|
|
22
23
|
export * from "./httpmetadata.js";
|
|
@@ -38,8 +39,8 @@ export * from "./v1accountbadgecompletion.js";
|
|
|
38
39
|
export * from "./v1accountdatapointsresponsebody.js";
|
|
39
40
|
export * from "./v1accountdeveloperappdeleterequestbody.js";
|
|
40
41
|
export * from "./v1accountdeveloperappdeleteresponsebody.js";
|
|
41
|
-
export * from "./
|
|
42
|
-
export * from "./
|
|
42
|
+
export * from "./v1accountdeveloperappupdaterequestbody.js";
|
|
43
|
+
export * from "./v1accountdeveloperappupdateresponsebody.js";
|
|
43
44
|
export * from "./v1accountfriend.js";
|
|
44
45
|
export * from "./v1accountfriendsresponsebody.js";
|
|
45
46
|
export * from "./v1accountleaderboardaccount.js";
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod";
|
|
6
|
+
|
|
7
|
+
export type V1AccountDeveloperAppUpdateRequestBody = {
|
|
8
|
+
/**
|
|
9
|
+
* The new description of the developer app
|
|
10
|
+
*/
|
|
11
|
+
description: string | null;
|
|
12
|
+
/**
|
|
13
|
+
* The new icon of the developer app
|
|
14
|
+
*/
|
|
15
|
+
icon: string | null;
|
|
16
|
+
/**
|
|
17
|
+
* The new name of the developer app
|
|
18
|
+
*/
|
|
19
|
+
name: string | null;
|
|
20
|
+
/**
|
|
21
|
+
* The public id of the developer app
|
|
22
|
+
*/
|
|
23
|
+
publicId: string;
|
|
24
|
+
/**
|
|
25
|
+
* Whether to re-generate the key
|
|
26
|
+
*/
|
|
27
|
+
regenerate: boolean;
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
/** @internal */
|
|
31
|
+
export const V1AccountDeveloperAppUpdateRequestBody$inboundSchema: z.ZodType<
|
|
32
|
+
V1AccountDeveloperAppUpdateRequestBody,
|
|
33
|
+
z.ZodTypeDef,
|
|
34
|
+
unknown
|
|
35
|
+
> = z.object({
|
|
36
|
+
description: z.nullable(z.string()),
|
|
37
|
+
icon: z.nullable(z.string()),
|
|
38
|
+
name: z.nullable(z.string()),
|
|
39
|
+
publicId: z.string(),
|
|
40
|
+
regenerate: z.boolean(),
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
/** @internal */
|
|
44
|
+
export type V1AccountDeveloperAppUpdateRequestBody$Outbound = {
|
|
45
|
+
description: string | null;
|
|
46
|
+
icon: string | null;
|
|
47
|
+
name: string | null;
|
|
48
|
+
publicId: string;
|
|
49
|
+
regenerate: boolean;
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
/** @internal */
|
|
53
|
+
export const V1AccountDeveloperAppUpdateRequestBody$outboundSchema: z.ZodType<
|
|
54
|
+
V1AccountDeveloperAppUpdateRequestBody$Outbound,
|
|
55
|
+
z.ZodTypeDef,
|
|
56
|
+
V1AccountDeveloperAppUpdateRequestBody
|
|
57
|
+
> = z.object({
|
|
58
|
+
description: z.nullable(z.string()),
|
|
59
|
+
icon: z.nullable(z.string()),
|
|
60
|
+
name: z.nullable(z.string()),
|
|
61
|
+
publicId: z.string(),
|
|
62
|
+
regenerate: z.boolean(),
|
|
63
|
+
});
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
68
|
+
*/
|
|
69
|
+
export namespace V1AccountDeveloperAppUpdateRequestBody$ {
|
|
70
|
+
/** @deprecated use `V1AccountDeveloperAppUpdateRequestBody$inboundSchema` instead. */
|
|
71
|
+
export const inboundSchema =
|
|
72
|
+
V1AccountDeveloperAppUpdateRequestBody$inboundSchema;
|
|
73
|
+
/** @deprecated use `V1AccountDeveloperAppUpdateRequestBody$outboundSchema` instead. */
|
|
74
|
+
export const outboundSchema =
|
|
75
|
+
V1AccountDeveloperAppUpdateRequestBody$outboundSchema;
|
|
76
|
+
/** @deprecated use `V1AccountDeveloperAppUpdateRequestBody$Outbound` instead. */
|
|
77
|
+
export type Outbound = V1AccountDeveloperAppUpdateRequestBody$Outbound;
|
|
78
|
+
}
|