@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
package/README.md
CHANGED
|
@@ -131,7 +131,7 @@ run();
|
|
|
131
131
|
|
|
132
132
|
* [accountV1SettingsDeveloperAppCreate](docs/sdks/developer/README.md#accountv1settingsdeveloperappcreate) - Add a new Developer App to the account
|
|
133
133
|
* [accountV1SettingsDeveloperAppDelete](docs/sdks/developer/README.md#accountv1settingsdeveloperappdelete) - Delete a developer app from the account
|
|
134
|
-
* [
|
|
134
|
+
* [accountV1SettingsDeveloperAppUpdate](docs/sdks/developer/README.md#accountv1settingsdeveloperappupdate) - Update the developer app/re-generate the api key
|
|
135
135
|
|
|
136
136
|
### [leaderboard](docs/sdks/leaderboard/README.md)
|
|
137
137
|
|
|
@@ -553,7 +553,7 @@ To read more about standalone functions, check [FUNCTIONS.md](./FUNCTIONS.md).
|
|
|
553
553
|
- [dataAccountV1Queue](docs/sdks/data/README.md#accountv1queue)
|
|
554
554
|
- [developerAccountV1SettingsDeveloperAppCreate](docs/sdks/developer/README.md#accountv1settingsdeveloperappcreate)
|
|
555
555
|
- [developerAccountV1SettingsDeveloperAppDelete](docs/sdks/developer/README.md#accountv1settingsdeveloperappdelete)
|
|
556
|
-
- [
|
|
556
|
+
- [developerAccountV1SettingsDeveloperAppUpdate](docs/sdks/developer/README.md#accountv1settingsdeveloperappupdate)
|
|
557
557
|
- [leaderboardLeaderboardV1GetAccount](docs/sdks/leaderboard/README.md#leaderboardv1getaccount)
|
|
558
558
|
- [livenessLiveness](docs/sdks/liveness/README.md#liveness)
|
|
559
559
|
- [locationLocation](docs/sdks/location/README.md#location)
|
|
@@ -9,7 +9,7 @@ Developer App related operations
|
|
|
9
9
|
|
|
10
10
|
* [accountV1SettingsDeveloperAppCreate](#accountv1settingsdeveloperappcreate) - Add a new Developer App to the account
|
|
11
11
|
* [accountV1SettingsDeveloperAppDelete](#accountv1settingsdeveloperappdelete) - Delete a developer app from the account
|
|
12
|
-
* [
|
|
12
|
+
* [accountV1SettingsDeveloperAppUpdate](#accountv1settingsdeveloperappupdate) - Update the developer app/re-generate the api key
|
|
13
13
|
|
|
14
14
|
## accountV1SettingsDeveloperAppCreate
|
|
15
15
|
|
|
@@ -175,9 +175,9 @@ run();
|
|
|
175
175
|
| errors.SDKError | 4xx-5xx | */* |
|
|
176
176
|
|
|
177
177
|
|
|
178
|
-
##
|
|
178
|
+
## accountV1SettingsDeveloperAppUpdate
|
|
179
179
|
|
|
180
|
-
|
|
180
|
+
Update the developer app/re-generate the api key
|
|
181
181
|
|
|
182
182
|
### Example Usage
|
|
183
183
|
|
|
@@ -189,8 +189,12 @@ const steamSets = new SteamSets({
|
|
|
189
189
|
});
|
|
190
190
|
|
|
191
191
|
async function run() {
|
|
192
|
-
const result = await steamSets.developer.
|
|
192
|
+
const result = await steamSets.developer.accountV1SettingsDeveloperAppUpdate({
|
|
193
|
+
description: "My App Description",
|
|
194
|
+
icon: "https://yoururl.com/icon.png",
|
|
195
|
+
name: "My App",
|
|
193
196
|
publicId: "da_123456",
|
|
197
|
+
regenerate: true,
|
|
194
198
|
});
|
|
195
199
|
|
|
196
200
|
// Handle the result
|
|
@@ -206,7 +210,7 @@ The standalone function version of this method:
|
|
|
206
210
|
|
|
207
211
|
```typescript
|
|
208
212
|
import { SteamSetsCore } from "@steamsets/client-ts/core.js";
|
|
209
|
-
import {
|
|
213
|
+
import { developerAccountV1SettingsDeveloperAppUpdate } from "@steamsets/client-ts/funcs/developerAccountV1SettingsDeveloperAppUpdate.js";
|
|
210
214
|
|
|
211
215
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
212
216
|
// You can create one instance of it to use across an application.
|
|
@@ -215,8 +219,12 @@ const steamSets = new SteamSetsCore({
|
|
|
215
219
|
});
|
|
216
220
|
|
|
217
221
|
async function run() {
|
|
218
|
-
const res = await
|
|
222
|
+
const res = await developerAccountV1SettingsDeveloperAppUpdate(steamSets, {
|
|
223
|
+
description: "My App Description",
|
|
224
|
+
icon: "https://yoururl.com/icon.png",
|
|
225
|
+
name: "My App",
|
|
219
226
|
publicId: "da_123456",
|
|
227
|
+
regenerate: true,
|
|
220
228
|
});
|
|
221
229
|
|
|
222
230
|
if (!res.ok) {
|
|
@@ -236,14 +244,14 @@ run();
|
|
|
236
244
|
|
|
237
245
|
| Parameter | Type | Required | Description |
|
|
238
246
|
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
239
|
-
| `request` | [components.
|
|
247
|
+
| `request` | [components.V1AccountDeveloperAppUpdateRequestBody](../../models/components/v1accountdeveloperappupdaterequestbody.md) | :heavy_check_mark: | The request object to use for the request. |
|
|
240
248
|
| `options` | RequestOptions | :heavy_minus_sign: | Used to set various options for making HTTP requests. |
|
|
241
249
|
| `options.fetchOptions` | [RequestInit](https://developer.mozilla.org/en-US/docs/Web/API/Request/Request#options) | :heavy_minus_sign: | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All `Request` options, except `method` and `body`, are allowed. |
|
|
242
250
|
| `options.retries` | [RetryConfig](../../lib/utils/retryconfig.md) | :heavy_minus_sign: | Enables retrying HTTP requests under certain failure conditions. |
|
|
243
251
|
|
|
244
252
|
### Response
|
|
245
253
|
|
|
246
|
-
**Promise\<[operations.
|
|
254
|
+
**Promise\<[operations.AccountV1SettingsDeveloperAppUpdateResponse](../../models/operations/accountv1settingsdeveloperappupdateresponse.md)\>**
|
|
247
255
|
|
|
248
256
|
### Errors
|
|
249
257
|
|
|
@@ -8,7 +8,7 @@ import { SDKValidationError } from "../models/errors/sdkvalidationerror.js";
|
|
|
8
8
|
import * as operations from "../models/operations/index.js";
|
|
9
9
|
import { Result } from "../types/fp.js";
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* Update the developer app/re-generate the api key
|
|
12
12
|
*/
|
|
13
|
-
export declare function
|
|
14
|
-
//# sourceMappingURL=
|
|
13
|
+
export declare function developerAccountV1SettingsDeveloperAppUpdate(client: SteamSetsCore, request: components.V1AccountDeveloperAppUpdateRequestBody, options?: RequestOptions): Promise<Result<operations.AccountV1SettingsDeveloperAppUpdateResponse, errors.ErrorModel | SDKError | SDKValidationError | UnexpectedClientError | InvalidRequestError | RequestAbortedError | RequestTimeoutError | ConnectionError>>;
|
|
14
|
+
//# sourceMappingURL=developerAccountV1SettingsDeveloperAppUpdate.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"developerAccountV1SettingsDeveloperAppUpdate.d.ts","sourceRoot":"","sources":["../src/funcs/developerAccountV1SettingsDeveloperAppUpdate.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAI3C,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAGhD,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EACL,eAAe,EACf,mBAAmB,EACnB,mBAAmB,EACnB,mBAAmB,EACnB,qBAAqB,EACtB,MAAM,sCAAsC,CAAC;AAC9C,OAAO,KAAK,MAAM,MAAM,2BAA2B,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AACxD,OAAO,EAAE,kBAAkB,EAAE,MAAM,wCAAwC,CAAC;AAC5E,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAExC;;GAEG;AACH,wBAAsB,4CAA4C,CAChE,MAAM,EAAE,aAAa,EACrB,OAAO,EAAE,UAAU,CAAC,sCAAsC,EAC1D,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CACR,MAAM,CACJ,UAAU,CAAC,2CAA2C,EACpD,MAAM,CAAC,UAAU,GACjB,QAAQ,GACR,kBAAkB,GAClB,qBAAqB,GACrB,mBAAmB,GACnB,mBAAmB,GACnB,mBAAmB,GACnB,eAAe,CAClB,CACF,CAyFA"}
|
|
@@ -26,7 +26,7 @@ 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.developerAccountV1SettingsDeveloperAppUpdate = developerAccountV1SettingsDeveloperAppUpdate;
|
|
30
30
|
const encodings_js_1 = require("../lib/encodings.js");
|
|
31
31
|
const M = __importStar(require("../lib/matchers.js"));
|
|
32
32
|
const schemas_js_1 = require("../lib/schemas.js");
|
|
@@ -36,18 +36,17 @@ const components = __importStar(require("../models/components/index.js"));
|
|
|
36
36
|
const errors = __importStar(require("../models/errors/index.js"));
|
|
37
37
|
const operations = __importStar(require("../models/operations/index.js"));
|
|
38
38
|
/**
|
|
39
|
-
*
|
|
39
|
+
* Update the developer app/re-generate the api key
|
|
40
40
|
*/
|
|
41
|
-
async function
|
|
41
|
+
async function developerAccountV1SettingsDeveloperAppUpdate(client, request, options) {
|
|
42
42
|
const input = request;
|
|
43
|
-
const parsed = (0, schemas_js_1.safeParse)(input, (value) => components.
|
|
44
|
-
.parse(value), "Input validation failed");
|
|
43
|
+
const parsed = (0, schemas_js_1.safeParse)(input, (value) => components.V1AccountDeveloperAppUpdateRequestBody$outboundSchema.parse(value), "Input validation failed");
|
|
45
44
|
if (!parsed.ok) {
|
|
46
45
|
return parsed;
|
|
47
46
|
}
|
|
48
47
|
const payload = parsed.value;
|
|
49
48
|
const body = (0, encodings_js_1.encodeJSON)("body", payload, { explode: true });
|
|
50
|
-
const path = (0, url_js_1.pathToFunc)("/account.v1.AccountService/
|
|
49
|
+
const path = (0, url_js_1.pathToFunc)("/account.v1.AccountService/DeveloperAppUpdate")();
|
|
51
50
|
const headers = new Headers({
|
|
52
51
|
"Content-Type": "application/json",
|
|
53
52
|
Accept: "application/json",
|
|
@@ -55,7 +54,7 @@ async function developerAccountV1SettingsDeveloperAppGenerateKey(client, request
|
|
|
55
54
|
const secConfig = await (0, security_js_1.extractSecurity)(client._options.session);
|
|
56
55
|
const securityInput = secConfig == null ? {} : { session: secConfig };
|
|
57
56
|
const context = {
|
|
58
|
-
operationID: "account.v1.settings.developer-app-
|
|
57
|
+
operationID: "account.v1.settings.developer-app-update",
|
|
59
58
|
oAuth2Scopes: [],
|
|
60
59
|
securitySource: client._options.session,
|
|
61
60
|
};
|
|
@@ -87,7 +86,7 @@ async function developerAccountV1SettingsDeveloperAppGenerateKey(client, request
|
|
|
87
86
|
const responseFields = {
|
|
88
87
|
HttpMeta: { Response: response, Request: req },
|
|
89
88
|
};
|
|
90
|
-
const [result] = await M.match(M.json(200, operations.
|
|
89
|
+
const [result] = await M.match(M.json(200, operations.AccountV1SettingsDeveloperAppUpdateResponse$inboundSchema, { key: "V1AccountDeveloperAppUpdateResponseBody" }), M.jsonErr([404, 422, 429, 500], errors.ErrorModel$inboundSchema, {
|
|
91
90
|
ctype: "application/problem+json",
|
|
92
91
|
}), M.fail(["4XX", "5XX"]))(response, req, { extraFields: responseFields });
|
|
93
92
|
if (!result.ok) {
|
|
@@ -95,4 +94,4 @@ async function developerAccountV1SettingsDeveloperAppGenerateKey(client, request
|
|
|
95
94
|
}
|
|
96
95
|
return result;
|
|
97
96
|
}
|
|
98
|
-
//# sourceMappingURL=
|
|
97
|
+
//# sourceMappingURL=developerAccountV1SettingsDeveloperAppUpdate.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"developerAccountV1SettingsDeveloperAppUpdate.js","sourceRoot":"","sources":["../src/funcs/developerAccountV1SettingsDeveloperAppUpdate.ts"],"names":[],"mappings":"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"}
|
package/lib/config.d.ts
CHANGED
|
@@ -27,8 +27,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
27
27
|
export declare const SDK_METADATA: {
|
|
28
28
|
readonly language: "typescript";
|
|
29
29
|
readonly openapiDocVersion: "1.0.0";
|
|
30
|
-
readonly sdkVersion: "0.11.
|
|
30
|
+
readonly sdkVersion: "0.11.4";
|
|
31
31
|
readonly genVersion: "2.426.2";
|
|
32
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.11.
|
|
32
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.11.4 2.426.2 1.0.0 @steamsets/client-ts";
|
|
33
33
|
};
|
|
34
34
|
//# sourceMappingURL=config.d.ts.map
|
package/lib/config.js
CHANGED
|
@@ -30,8 +30,8 @@ function serverURLFromOptions(options) {
|
|
|
30
30
|
exports.SDK_METADATA = {
|
|
31
31
|
language: "typescript",
|
|
32
32
|
openapiDocVersion: "1.0.0",
|
|
33
|
-
sdkVersion: "0.11.
|
|
33
|
+
sdkVersion: "0.11.4",
|
|
34
34
|
genVersion: "2.426.2",
|
|
35
|
-
userAgent: "speakeasy-sdk/typescript 0.11.
|
|
35
|
+
userAgent: "speakeasy-sdk/typescript 0.11.4 2.426.2 1.0.0 @steamsets/client-ts",
|
|
36
36
|
};
|
|
37
37
|
//# sourceMappingURL=config.js.map
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import * as z from "zod";
|
|
2
|
+
import { ClosedEnum } from "../../types/enums.js";
|
|
3
|
+
/**
|
|
4
|
+
* The environment of the developer app
|
|
5
|
+
*/
|
|
6
|
+
export declare const DeveloperAppEnvironment: {
|
|
7
|
+
readonly Production: "production";
|
|
8
|
+
readonly Development: "development";
|
|
9
|
+
readonly Staging: "staging";
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* The environment of the developer app
|
|
13
|
+
*/
|
|
14
|
+
export type DeveloperAppEnvironment = ClosedEnum<typeof DeveloperAppEnvironment>;
|
|
15
|
+
export type DeveloperApp = {
|
|
16
|
+
/**
|
|
17
|
+
* The api key of the developer app
|
|
18
|
+
*/
|
|
19
|
+
apiKey: string | null;
|
|
20
|
+
/**
|
|
21
|
+
* The description of the developer app
|
|
22
|
+
*/
|
|
23
|
+
description: string;
|
|
24
|
+
/**
|
|
25
|
+
* The environment of the developer app
|
|
26
|
+
*/
|
|
27
|
+
environment: DeveloperAppEnvironment;
|
|
28
|
+
/**
|
|
29
|
+
* The icon of the developer app
|
|
30
|
+
*/
|
|
31
|
+
icon: string | null;
|
|
32
|
+
/**
|
|
33
|
+
* The id of the developer app
|
|
34
|
+
*/
|
|
35
|
+
id: string;
|
|
36
|
+
/**
|
|
37
|
+
* The name of the developer app
|
|
38
|
+
*/
|
|
39
|
+
name: string;
|
|
40
|
+
};
|
|
41
|
+
/** @internal */
|
|
42
|
+
export declare const DeveloperAppEnvironment$inboundSchema: z.ZodNativeEnum<typeof DeveloperAppEnvironment>;
|
|
43
|
+
/** @internal */
|
|
44
|
+
export declare const DeveloperAppEnvironment$outboundSchema: z.ZodNativeEnum<typeof DeveloperAppEnvironment>;
|
|
45
|
+
/**
|
|
46
|
+
* @internal
|
|
47
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
48
|
+
*/
|
|
49
|
+
export declare namespace DeveloperAppEnvironment$ {
|
|
50
|
+
/** @deprecated use `DeveloperAppEnvironment$inboundSchema` instead. */
|
|
51
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
52
|
+
readonly Production: "production";
|
|
53
|
+
readonly Development: "development";
|
|
54
|
+
readonly Staging: "staging";
|
|
55
|
+
}>;
|
|
56
|
+
/** @deprecated use `DeveloperAppEnvironment$outboundSchema` instead. */
|
|
57
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
58
|
+
readonly Production: "production";
|
|
59
|
+
readonly Development: "development";
|
|
60
|
+
readonly Staging: "staging";
|
|
61
|
+
}>;
|
|
62
|
+
}
|
|
63
|
+
/** @internal */
|
|
64
|
+
export declare const DeveloperApp$inboundSchema: z.ZodType<DeveloperApp, z.ZodTypeDef, unknown>;
|
|
65
|
+
/** @internal */
|
|
66
|
+
export type DeveloperApp$Outbound = {
|
|
67
|
+
apiKey: string | null;
|
|
68
|
+
description: string;
|
|
69
|
+
environment: string;
|
|
70
|
+
icon: string | null;
|
|
71
|
+
id: string;
|
|
72
|
+
name: string;
|
|
73
|
+
};
|
|
74
|
+
/** @internal */
|
|
75
|
+
export declare const DeveloperApp$outboundSchema: z.ZodType<DeveloperApp$Outbound, z.ZodTypeDef, DeveloperApp>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
79
|
+
*/
|
|
80
|
+
export declare namespace DeveloperApp$ {
|
|
81
|
+
/** @deprecated use `DeveloperApp$inboundSchema` instead. */
|
|
82
|
+
const inboundSchema: z.ZodType<DeveloperApp, z.ZodTypeDef, unknown>;
|
|
83
|
+
/** @deprecated use `DeveloperApp$outboundSchema` instead. */
|
|
84
|
+
const outboundSchema: z.ZodType<DeveloperApp$Outbound, z.ZodTypeDef, DeveloperApp>;
|
|
85
|
+
/** @deprecated use `DeveloperApp$Outbound` instead. */
|
|
86
|
+
type Outbound = DeveloperApp$Outbound;
|
|
87
|
+
}
|
|
88
|
+
//# sourceMappingURL=developerapp.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"developerapp.d.ts","sourceRoot":"","sources":["../../src/models/components/developerapp.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,uBAAuB;;;;CAI1B,CAAC;AACX;;GAEG;AACH,MAAM,MAAM,uBAAuB,GAAG,UAAU,CAC9C,OAAO,uBAAuB,CAC/B,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACzB;;OAEG;IACH,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,WAAW,EAAE,uBAAuB,CAAC;IACrC;;OAEG;IACH,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,qCAAqC,EAAE,CAAC,CAAC,aAAa,CACjE,OAAO,uBAAuB,CACS,CAAC;AAE1C,gBAAgB;AAChB,eAAO,MAAM,sCAAsC,EAAE,CAAC,CAAC,aAAa,CAClE,OAAO,uBAAuB,CACS,CAAC;AAE1C;;;GAGG;AACH,yBAAiB,wBAAwB,CAAC;IACxC,uEAAuE;IAChE,MAAM,aAAa;;;;MAAwC,CAAC;IACnE,wEAAwE;IACjE,MAAM,cAAc;;;;MAAyC,CAAC;CACtE;AAED,gBAAgB;AAChB,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAChD,YAAY,EACZ,CAAC,CAAC,UAAU,EACZ,OAAO,CAQP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,qBAAqB,GAAG;IAClC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,OAAO,CACjD,qBAAqB,EACrB,CAAC,CAAC,UAAU,EACZ,YAAY,CAQZ,CAAC;AAEH;;;GAGG;AACH,yBAAiB,aAAa,CAAC;IAC7B,4DAA4D;IACrD,MAAM,aAAa,gDAA6B,CAAC;IACxD,6DAA6D;IACtD,MAAM,cAAc,8DAA8B,CAAC;IAC1D,uDAAuD;IACvD,KAAY,QAAQ,GAAG,qBAAqB,CAAC;CAC9C"}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*
|
|
3
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.DeveloperApp$ = exports.DeveloperApp$outboundSchema = exports.DeveloperApp$inboundSchema = exports.DeveloperAppEnvironment$ = exports.DeveloperAppEnvironment$outboundSchema = exports.DeveloperAppEnvironment$inboundSchema = exports.DeveloperAppEnvironment = void 0;
|
|
30
|
+
const z = __importStar(require("zod"));
|
|
31
|
+
/**
|
|
32
|
+
* The environment of the developer app
|
|
33
|
+
*/
|
|
34
|
+
exports.DeveloperAppEnvironment = {
|
|
35
|
+
Production: "production",
|
|
36
|
+
Development: "development",
|
|
37
|
+
Staging: "staging",
|
|
38
|
+
};
|
|
39
|
+
/** @internal */
|
|
40
|
+
exports.DeveloperAppEnvironment$inboundSchema = z.nativeEnum(exports.DeveloperAppEnvironment);
|
|
41
|
+
/** @internal */
|
|
42
|
+
exports.DeveloperAppEnvironment$outboundSchema = exports.DeveloperAppEnvironment$inboundSchema;
|
|
43
|
+
/**
|
|
44
|
+
* @internal
|
|
45
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
46
|
+
*/
|
|
47
|
+
var DeveloperAppEnvironment$;
|
|
48
|
+
(function (DeveloperAppEnvironment$) {
|
|
49
|
+
/** @deprecated use `DeveloperAppEnvironment$inboundSchema` instead. */
|
|
50
|
+
DeveloperAppEnvironment$.inboundSchema = exports.DeveloperAppEnvironment$inboundSchema;
|
|
51
|
+
/** @deprecated use `DeveloperAppEnvironment$outboundSchema` instead. */
|
|
52
|
+
DeveloperAppEnvironment$.outboundSchema = exports.DeveloperAppEnvironment$outboundSchema;
|
|
53
|
+
})(DeveloperAppEnvironment$ || (exports.DeveloperAppEnvironment$ = DeveloperAppEnvironment$ = {}));
|
|
54
|
+
/** @internal */
|
|
55
|
+
exports.DeveloperApp$inboundSchema = z.object({
|
|
56
|
+
apiKey: z.nullable(z.string()),
|
|
57
|
+
description: z.string(),
|
|
58
|
+
environment: exports.DeveloperAppEnvironment$inboundSchema,
|
|
59
|
+
icon: z.nullable(z.string()),
|
|
60
|
+
id: z.string(),
|
|
61
|
+
name: z.string(),
|
|
62
|
+
});
|
|
63
|
+
/** @internal */
|
|
64
|
+
exports.DeveloperApp$outboundSchema = z.object({
|
|
65
|
+
apiKey: z.nullable(z.string()),
|
|
66
|
+
description: z.string(),
|
|
67
|
+
environment: exports.DeveloperAppEnvironment$outboundSchema,
|
|
68
|
+
icon: z.nullable(z.string()),
|
|
69
|
+
id: z.string(),
|
|
70
|
+
name: z.string(),
|
|
71
|
+
});
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
75
|
+
*/
|
|
76
|
+
var DeveloperApp$;
|
|
77
|
+
(function (DeveloperApp$) {
|
|
78
|
+
/** @deprecated use `DeveloperApp$inboundSchema` instead. */
|
|
79
|
+
DeveloperApp$.inboundSchema = exports.DeveloperApp$inboundSchema;
|
|
80
|
+
/** @deprecated use `DeveloperApp$outboundSchema` instead. */
|
|
81
|
+
DeveloperApp$.outboundSchema = exports.DeveloperApp$outboundSchema;
|
|
82
|
+
})(DeveloperApp$ || (exports.DeveloperApp$ = DeveloperApp$ = {}));
|
|
83
|
+
//# sourceMappingURL=developerapp.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"developerapp.js","sourceRoot":"","sources":["../../src/models/components/developerapp.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGzB;;GAEG;AACU,QAAA,uBAAuB,GAAG;IACrC,UAAU,EAAE,YAAY;IACxB,WAAW,EAAE,aAAa;IAC1B,OAAO,EAAE,SAAS;CACV,CAAC;AAmCX,gBAAgB;AACH,QAAA,qCAAqC,GAE9C,CAAC,CAAC,UAAU,CAAC,+BAAuB,CAAC,CAAC;AAE1C,gBAAgB;AACH,QAAA,sCAAsC,GAE/C,6CAAqC,CAAC;AAE1C;;;GAGG;AACH,IAAiB,wBAAwB,CAKxC;AALD,WAAiB,wBAAwB;IACvC,uEAAuE;IAC1D,sCAAa,GAAG,6CAAqC,CAAC;IACnE,wEAAwE;IAC3D,uCAAc,GAAG,8CAAsC,CAAC;AACvE,CAAC,EALgB,wBAAwB,wCAAxB,wBAAwB,QAKxC;AAED,gBAAgB;AACH,QAAA,0BAA0B,GAInC,CAAC,CAAC,MAAM,CAAC;IACX,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC9B,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;IACvB,WAAW,EAAE,6CAAqC;IAClD,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC5B,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAYH,gBAAgB;AACH,QAAA,2BAA2B,GAIpC,CAAC,CAAC,MAAM,CAAC;IACX,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC9B,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;IACvB,WAAW,EAAE,8CAAsC;IACnD,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC5B,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,aAAa,CAO7B;AAPD,WAAiB,aAAa;IAC5B,4DAA4D;IAC/C,2BAAa,GAAG,kCAA0B,CAAC;IACxD,6DAA6D;IAChD,4BAAc,GAAG,mCAA2B,CAAC;AAG5D,CAAC,EAPgB,aAAa,6BAAb,aAAa,QAO7B"}
|
|
@@ -13,6 +13,7 @@ export * from "./colortag.js";
|
|
|
13
13
|
export * from "./connection.js";
|
|
14
14
|
export * from "./country.js";
|
|
15
15
|
export * from "./designtag.js";
|
|
16
|
+
export * from "./developerapp.js";
|
|
16
17
|
export * from "./emailnotification.js";
|
|
17
18
|
export * from "./errordetail.js";
|
|
18
19
|
export * from "./httpmetadata.js";
|
|
@@ -34,8 +35,8 @@ export * from "./v1accountbadgecompletion.js";
|
|
|
34
35
|
export * from "./v1accountdatapointsresponsebody.js";
|
|
35
36
|
export * from "./v1accountdeveloperappdeleterequestbody.js";
|
|
36
37
|
export * from "./v1accountdeveloperappdeleteresponsebody.js";
|
|
37
|
-
export * from "./
|
|
38
|
-
export * from "./
|
|
38
|
+
export * from "./v1accountdeveloperappupdaterequestbody.js";
|
|
39
|
+
export * from "./v1accountdeveloperappupdateresponsebody.js";
|
|
39
40
|
export * from "./v1accountfriend.js";
|
|
40
41
|
export * from "./v1accountfriendsresponsebody.js";
|
|
41
42
|
export * from "./v1accountleaderboardaccount.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/components/index.ts"],"names":[],"mappings":"AAIA,cAAc,kCAAkC,CAAC;AACjD,cAAc,oCAAoC,CAAC;AACnD,cAAc,sBAAsB,CAAC;AACrC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,oBAAoB,CAAC;AACnC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,0BAA0B,CAAC;AACzC,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,wBAAwB,CAAC;AACvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,YAAY,CAAC;AAC3B,cAAc,yBAAyB,CAAC;AACxC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,eAAe,CAAC;AAC9B,cAAc,uBAAuB,CAAC;AACtC,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,sCAAsC,CAAC;AACrD,cAAc,6CAA6C,CAAC;AAC5D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/components/index.ts"],"names":[],"mappings":"AAIA,cAAc,kCAAkC,CAAC;AACjD,cAAc,oCAAoC,CAAC;AACnD,cAAc,sBAAsB,CAAC;AACrC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,oBAAoB,CAAC;AACnC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,gBAAgB,CAAC;AAC/B,cAAc,0BAA0B,CAAC;AACzC,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,YAAY,CAAC;AAC3B,cAAc,yBAAyB,CAAC;AACxC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,eAAe,CAAC;AAC9B,cAAc,uBAAuB,CAAC;AACtC,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,sCAAsC,CAAC;AACrD,cAAc,6CAA6C,CAAC;AAC5D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,8CAA8C,CAAC;AAC7D,cAAc,sBAAsB,CAAC;AACrC,cAAc,mCAAmC,CAAC;AAClD,cAAc,kCAAkC,CAAC;AACjD,cAAc,oCAAoC,CAAC;AACnD,cAAc,8CAA8C,CAAC;AAC7D,cAAc,sCAAsC,CAAC;AACrD,cAAc,uCAAuC,CAAC;AACtD,cAAc,iCAAiC,CAAC;AAChD,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,oCAAoC,CAAC;AACnD,cAAc,qCAAqC,CAAC;AACpD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,iCAAiC,CAAC;AAChD,cAAc,iCAAiC,CAAC;AAChD,cAAc,kCAAkC,CAAC;AACjD,cAAc,sCAAsC,CAAC;AACrD,cAAc,uCAAuC,CAAC;AACtD,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,0BAA0B,CAAC;AACzC,cAAc,oCAAoC,CAAC;AACnD,cAAc,qCAAqC,CAAC;AACpD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,kCAAkC,CAAC;AACjD,cAAc,mCAAmC,CAAC;AAClD,cAAc,sBAAsB,CAAC;AACrC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,oCAAoC,CAAC;AACnD,cAAc,qCAAqC,CAAC;AACpD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,gCAAgC,CAAC"}
|
|
@@ -32,6 +32,7 @@ __exportStar(require("./colortag.js"), exports);
|
|
|
32
32
|
__exportStar(require("./connection.js"), exports);
|
|
33
33
|
__exportStar(require("./country.js"), exports);
|
|
34
34
|
__exportStar(require("./designtag.js"), exports);
|
|
35
|
+
__exportStar(require("./developerapp.js"), exports);
|
|
35
36
|
__exportStar(require("./emailnotification.js"), exports);
|
|
36
37
|
__exportStar(require("./errordetail.js"), exports);
|
|
37
38
|
__exportStar(require("./httpmetadata.js"), exports);
|
|
@@ -53,8 +54,8 @@ __exportStar(require("./v1accountbadgecompletion.js"), exports);
|
|
|
53
54
|
__exportStar(require("./v1accountdatapointsresponsebody.js"), exports);
|
|
54
55
|
__exportStar(require("./v1accountdeveloperappdeleterequestbody.js"), exports);
|
|
55
56
|
__exportStar(require("./v1accountdeveloperappdeleteresponsebody.js"), exports);
|
|
56
|
-
__exportStar(require("./
|
|
57
|
-
__exportStar(require("./
|
|
57
|
+
__exportStar(require("./v1accountdeveloperappupdaterequestbody.js"), exports);
|
|
58
|
+
__exportStar(require("./v1accountdeveloperappupdateresponsebody.js"), exports);
|
|
58
59
|
__exportStar(require("./v1accountfriend.js"), exports);
|
|
59
60
|
__exportStar(require("./v1accountfriendsresponsebody.js"), exports);
|
|
60
61
|
__exportStar(require("./v1accountleaderboardaccount.js"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/components/index.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;AAEH,mEAAiD;AACjD,qEAAmD;AACnD,uDAAqC;AACrC,iEAA+C;AAC/C,gEAA8C;AAC9C,qDAAmC;AACnC,6DAA2C;AAC3C,iEAA+C;AAC/C,iDAA+B;AAC/B,2DAAyC;AACzC,4CAA0B;AAC1B,gDAA8B;AAC9B,kDAAgC;AAChC,+CAA6B;AAC7B,iDAA+B;AAC/B,yDAAuC;AACvC,mDAAiC;AACjC,oDAAkC;AAClC,6CAA2B;AAC3B,0DAAwC;AACxC,4DAA0C;AAC1C,gDAA8B;AAC9B,wDAAsC;AACtC,8CAA4B;AAC5B,gDAA8B;AAC9B,4CAA0B;AAC1B,gDAA8B;AAC9B,+CAA6B;AAC7B,oDAAkC;AAClC,6CAA2B;AAC3B,oDAAkC;AAClC,yDAAuC;AACvC,gEAA8C;AAC9C,uEAAqD;AACrD,8EAA4D;AAC5D,+EAA6D;AAC7D,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/components/index.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;AAEH,mEAAiD;AACjD,qEAAmD;AACnD,uDAAqC;AACrC,iEAA+C;AAC/C,gEAA8C;AAC9C,qDAAmC;AACnC,6DAA2C;AAC3C,iEAA+C;AAC/C,iDAA+B;AAC/B,2DAAyC;AACzC,4CAA0B;AAC1B,gDAA8B;AAC9B,kDAAgC;AAChC,+CAA6B;AAC7B,iDAA+B;AAC/B,oDAAkC;AAClC,yDAAuC;AACvC,mDAAiC;AACjC,oDAAkC;AAClC,6CAA2B;AAC3B,0DAAwC;AACxC,4DAA0C;AAC1C,gDAA8B;AAC9B,wDAAsC;AACtC,8CAA4B;AAC5B,gDAA8B;AAC9B,4CAA0B;AAC1B,gDAA8B;AAC9B,+CAA6B;AAC7B,oDAAkC;AAClC,6CAA2B;AAC3B,oDAAkC;AAClC,yDAAuC;AACvC,gEAA8C;AAC9C,uEAAqD;AACrD,8EAA4D;AAC5D,+EAA6D;AAC7D,8EAA4D;AAC5D,+EAA6D;AAC7D,uDAAqC;AACrC,oEAAkD;AAClD,mEAAiD;AACjD,qEAAmD;AACnD,+EAA6D;AAC7D,uEAAqD;AACrD,wEAAsD;AACtD,kEAAgD;AAChD,kDAAgC;AAChC,mDAAiC;AACjC,iDAA+B;AAC/B,wDAAsC;AACtC,yDAAuC;AACvC,4DAA0C;AAC1C,6DAA2C;AAC3C,8DAA4C;AAC5C,8DAA4C;AAC5C,+DAA6C;AAC7C,4DAA0C;AAC1C,6DAA2C;AAC3C,2DAAyC;AACzC,qEAAmD;AACnD,sEAAoD;AACpD,iEAA+C;AAC/C,kEAAgD;AAChD,kEAAgD;AAChD,mEAAiD;AACjD,uEAAqD;AACrD,wEAAsD;AACtD,wDAAsC;AACtC,yDAAuC;AACvC,6DAA2C;AAC3C,8DAA4C;AAC5C,2DAAyC;AACzC,qEAAmD;AACnD,sEAAoD;AACpD,gEAA8C;AAC9C,iEAA+C;AAC/C,mEAAiD;AACjD,oEAAkD;AAClD,uDAAqC;AACrC,iEAA+C;AAC/C,qEAAmD;AACnD,sEAAoD;AACpD,gEAA8C;AAC9C,iEAA+C"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import * as z from "zod";
|
|
2
|
+
export type V1AccountDeveloperAppUpdateRequestBody = {
|
|
3
|
+
/**
|
|
4
|
+
* The new description of the developer app
|
|
5
|
+
*/
|
|
6
|
+
description: string | null;
|
|
7
|
+
/**
|
|
8
|
+
* The new icon of the developer app
|
|
9
|
+
*/
|
|
10
|
+
icon: string | null;
|
|
11
|
+
/**
|
|
12
|
+
* The new name of the developer app
|
|
13
|
+
*/
|
|
14
|
+
name: string | null;
|
|
15
|
+
/**
|
|
16
|
+
* The public id of the developer app
|
|
17
|
+
*/
|
|
18
|
+
publicId: string;
|
|
19
|
+
/**
|
|
20
|
+
* Whether to re-generate the key
|
|
21
|
+
*/
|
|
22
|
+
regenerate: boolean;
|
|
23
|
+
};
|
|
24
|
+
/** @internal */
|
|
25
|
+
export declare const V1AccountDeveloperAppUpdateRequestBody$inboundSchema: z.ZodType<V1AccountDeveloperAppUpdateRequestBody, z.ZodTypeDef, unknown>;
|
|
26
|
+
/** @internal */
|
|
27
|
+
export type V1AccountDeveloperAppUpdateRequestBody$Outbound = {
|
|
28
|
+
description: string | null;
|
|
29
|
+
icon: string | null;
|
|
30
|
+
name: string | null;
|
|
31
|
+
publicId: string;
|
|
32
|
+
regenerate: boolean;
|
|
33
|
+
};
|
|
34
|
+
/** @internal */
|
|
35
|
+
export declare const V1AccountDeveloperAppUpdateRequestBody$outboundSchema: z.ZodType<V1AccountDeveloperAppUpdateRequestBody$Outbound, z.ZodTypeDef, V1AccountDeveloperAppUpdateRequestBody>;
|
|
36
|
+
/**
|
|
37
|
+
* @internal
|
|
38
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
39
|
+
*/
|
|
40
|
+
export declare namespace V1AccountDeveloperAppUpdateRequestBody$ {
|
|
41
|
+
/** @deprecated use `V1AccountDeveloperAppUpdateRequestBody$inboundSchema` instead. */
|
|
42
|
+
const inboundSchema: z.ZodType<V1AccountDeveloperAppUpdateRequestBody, z.ZodTypeDef, unknown>;
|
|
43
|
+
/** @deprecated use `V1AccountDeveloperAppUpdateRequestBody$outboundSchema` instead. */
|
|
44
|
+
const outboundSchema: z.ZodType<V1AccountDeveloperAppUpdateRequestBody$Outbound, z.ZodTypeDef, V1AccountDeveloperAppUpdateRequestBody>;
|
|
45
|
+
/** @deprecated use `V1AccountDeveloperAppUpdateRequestBody$Outbound` instead. */
|
|
46
|
+
type Outbound = V1AccountDeveloperAppUpdateRequestBody$Outbound;
|
|
47
|
+
}
|
|
48
|
+
//# sourceMappingURL=v1accountdeveloperappupdaterequestbody.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"v1accountdeveloperappupdaterequestbody.d.ts","sourceRoot":"","sources":["../../src/models/components/v1accountdeveloperappupdaterequestbody.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,MAAM,MAAM,sCAAsC,GAAG;IACnD;;OAEG;IACH,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;OAEG;IACH,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB;;OAEG;IACH,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,UAAU,EAAE,OAAO,CAAC;CACrB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,oDAAoD,EAAE,CAAC,CAAC,OAAO,CAC1E,sCAAsC,EACtC,CAAC,CAAC,UAAU,EACZ,OAAO,CAOP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,+CAA+C,GAAG;IAC5D,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,OAAO,CAAC;CACrB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,qDAAqD,EAAE,CAAC,CAAC,OAAO,CAC3E,+CAA+C,EAC/C,CAAC,CAAC,UAAU,EACZ,sCAAsC,CAOtC,CAAC;AAEH;;;GAGG;AACH,yBAAiB,uCAAuC,CAAC;IACvD,sFAAsF;IAC/E,MAAM,aAAa,0EAC4B,CAAC;IACvD,uFAAuF;IAChF,MAAM,cAAc,kHAC4B,CAAC;IACxD,iFAAiF;IACjF,KAAY,QAAQ,GAAG,+CAA+C,CAAC;CACxE"}
|
|
@@ -26,25 +26,33 @@ 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.V1AccountDeveloperAppUpdateRequestBody$ = exports.V1AccountDeveloperAppUpdateRequestBody$outboundSchema = exports.V1AccountDeveloperAppUpdateRequestBody$inboundSchema = void 0;
|
|
30
30
|
const z = __importStar(require("zod"));
|
|
31
31
|
/** @internal */
|
|
32
|
-
exports.
|
|
32
|
+
exports.V1AccountDeveloperAppUpdateRequestBody$inboundSchema = z.object({
|
|
33
|
+
description: z.nullable(z.string()),
|
|
34
|
+
icon: z.nullable(z.string()),
|
|
35
|
+
name: z.nullable(z.string()),
|
|
33
36
|
publicId: z.string(),
|
|
37
|
+
regenerate: z.boolean(),
|
|
34
38
|
});
|
|
35
39
|
/** @internal */
|
|
36
|
-
exports.
|
|
40
|
+
exports.V1AccountDeveloperAppUpdateRequestBody$outboundSchema = z.object({
|
|
41
|
+
description: z.nullable(z.string()),
|
|
42
|
+
icon: z.nullable(z.string()),
|
|
43
|
+
name: z.nullable(z.string()),
|
|
37
44
|
publicId: z.string(),
|
|
45
|
+
regenerate: z.boolean(),
|
|
38
46
|
});
|
|
39
47
|
/**
|
|
40
48
|
* @internal
|
|
41
49
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
42
50
|
*/
|
|
43
|
-
var
|
|
44
|
-
(function (
|
|
45
|
-
/** @deprecated use `
|
|
46
|
-
|
|
47
|
-
/** @deprecated use `
|
|
48
|
-
|
|
49
|
-
})(
|
|
50
|
-
//# sourceMappingURL=
|
|
51
|
+
var V1AccountDeveloperAppUpdateRequestBody$;
|
|
52
|
+
(function (V1AccountDeveloperAppUpdateRequestBody$) {
|
|
53
|
+
/** @deprecated use `V1AccountDeveloperAppUpdateRequestBody$inboundSchema` instead. */
|
|
54
|
+
V1AccountDeveloperAppUpdateRequestBody$.inboundSchema = exports.V1AccountDeveloperAppUpdateRequestBody$inboundSchema;
|
|
55
|
+
/** @deprecated use `V1AccountDeveloperAppUpdateRequestBody$outboundSchema` instead. */
|
|
56
|
+
V1AccountDeveloperAppUpdateRequestBody$.outboundSchema = exports.V1AccountDeveloperAppUpdateRequestBody$outboundSchema;
|
|
57
|
+
})(V1AccountDeveloperAppUpdateRequestBody$ || (exports.V1AccountDeveloperAppUpdateRequestBody$ = V1AccountDeveloperAppUpdateRequestBody$ = {}));
|
|
58
|
+
//# sourceMappingURL=v1accountdeveloperappupdaterequestbody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"v1accountdeveloperappupdaterequestbody.js","sourceRoot":"","sources":["../../src/models/components/v1accountdeveloperappupdaterequestbody.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAyBzB,gBAAgB;AACH,QAAA,oDAAoD,GAI7D,CAAC,CAAC,MAAM,CAAC;IACX,WAAW,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IACnC,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC5B,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC5B,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;CACxB,CAAC,CAAC;AAWH,gBAAgB;AACH,QAAA,qDAAqD,GAI9D,CAAC,CAAC,MAAM,CAAC;IACX,WAAW,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IACnC,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC5B,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC5B,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;CACxB,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,uCAAuC,CASvD;AATD,WAAiB,uCAAuC;IACtD,sFAAsF;IACzE,qDAAa,GACxB,4DAAoD,CAAC;IACvD,uFAAuF;IAC1E,sDAAc,GACzB,6DAAqD,CAAC;AAG1D,CAAC,EATgB,uCAAuC,uDAAvC,uCAAuC,QASvD"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import * as z from "zod";
|
|
2
|
+
export type V1AccountDeveloperAppUpdateResponseBody = {
|
|
3
|
+
/**
|
|
4
|
+
* A URL to the JSON Schema for this object.
|
|
5
|
+
*/
|
|
6
|
+
dollarSchema?: string | undefined;
|
|
7
|
+
/**
|
|
8
|
+
* The generated API Key
|
|
9
|
+
*/
|
|
10
|
+
apiKey: string | null;
|
|
11
|
+
};
|
|
12
|
+
/** @internal */
|
|
13
|
+
export declare const V1AccountDeveloperAppUpdateResponseBody$inboundSchema: z.ZodType<V1AccountDeveloperAppUpdateResponseBody, z.ZodTypeDef, unknown>;
|
|
14
|
+
/** @internal */
|
|
15
|
+
export type V1AccountDeveloperAppUpdateResponseBody$Outbound = {
|
|
16
|
+
$schema?: string | undefined;
|
|
17
|
+
apiKey: string | null;
|
|
18
|
+
};
|
|
19
|
+
/** @internal */
|
|
20
|
+
export declare const V1AccountDeveloperAppUpdateResponseBody$outboundSchema: z.ZodType<V1AccountDeveloperAppUpdateResponseBody$Outbound, z.ZodTypeDef, V1AccountDeveloperAppUpdateResponseBody>;
|
|
21
|
+
/**
|
|
22
|
+
* @internal
|
|
23
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
24
|
+
*/
|
|
25
|
+
export declare namespace V1AccountDeveloperAppUpdateResponseBody$ {
|
|
26
|
+
/** @deprecated use `V1AccountDeveloperAppUpdateResponseBody$inboundSchema` instead. */
|
|
27
|
+
const inboundSchema: z.ZodType<V1AccountDeveloperAppUpdateResponseBody, z.ZodTypeDef, unknown>;
|
|
28
|
+
/** @deprecated use `V1AccountDeveloperAppUpdateResponseBody$outboundSchema` instead. */
|
|
29
|
+
const outboundSchema: z.ZodType<V1AccountDeveloperAppUpdateResponseBody$Outbound, z.ZodTypeDef, V1AccountDeveloperAppUpdateResponseBody>;
|
|
30
|
+
/** @deprecated use `V1AccountDeveloperAppUpdateResponseBody$Outbound` instead. */
|
|
31
|
+
type Outbound = V1AccountDeveloperAppUpdateResponseBody$Outbound;
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=v1accountdeveloperappupdateresponsebody.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"v1accountdeveloperappupdateresponsebody.d.ts","sourceRoot":"","sources":["../../src/models/components/v1accountdeveloperappupdateresponsebody.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,MAAM,MAAM,uCAAuC,GAAG;IACpD;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAClC;;OAEG;IACH,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;CACvB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,qDAAqD,EAAE,CAAC,CAAC,OAAO,CAC3E,uCAAuC,EACvC,CAAC,CAAC,UAAU,EACZ,OAAO,CAQP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,gDAAgD,GAAG;IAC7D,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC7B,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;CACvB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,sDAAsD,EAAE,CAAC,CAAC,OAAO,CAC5E,gDAAgD,EAChD,CAAC,CAAC,UAAU,EACZ,uCAAuC,CAQvC,CAAC;AAEH;;;GAGG;AACH,yBAAiB,wCAAwC,CAAC;IACxD,uFAAuF;IAChF,MAAM,aAAa,2EAC6B,CAAC;IACxD,wFAAwF;IACjF,MAAM,cAAc,oHAC6B,CAAC;IACzD,kFAAkF;IAClF,KAAY,QAAQ,GAAG,gDAAgD,CAAC;CACzE"}
|