@steamsets/client-ts 0.11.30 → 0.11.32
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/location/README.md +6 -6
- package/funcs/{locationLocation.d.ts → locationLocationV1LocationGet.d.ts} +2 -2
- package/funcs/locationLocationV1LocationGet.d.ts.map +1 -0
- package/funcs/{locationLocation.js → locationLocationV1LocationGet.js} +7 -5
- package/funcs/locationLocationV1LocationGet.js.map +1 -0
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/models/components/country.d.ts +2 -6
- package/models/components/country.d.ts.map +1 -1
- package/models/components/country.js +2 -2
- package/models/components/country.js.map +1 -1
- package/models/components/region.d.ts +2 -6
- package/models/components/region.d.ts.map +1 -1
- package/models/components/region.js +2 -2
- package/models/components/region.js.map +1 -1
- package/models/components/state.d.ts +2 -6
- package/models/components/state.d.ts.map +1 -1
- package/models/components/state.js +2 -2
- package/models/components/state.js.map +1 -1
- 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/models/operations/locationv1locationget.d.ts +31 -0
- package/models/operations/locationv1locationget.d.ts.map +1 -0
- package/models/operations/{location.js → locationv1locationget.js} +11 -11
- package/models/operations/locationv1locationget.js.map +1 -0
- package/package.json +1 -1
- package/sdk/location.d.ts +1 -1
- package/sdk/location.d.ts.map +1 -1
- package/sdk/location.js +3 -3
- package/sdk/location.js.map +1 -1
- package/src/funcs/{locationLocation.ts → locationLocationV1LocationGet.ts} +7 -5
- package/src/lib/config.ts +2 -2
- package/src/models/components/country.ts +4 -4
- package/src/models/components/region.ts +4 -4
- package/src/models/components/state.ts +4 -4
- package/src/models/operations/index.ts +1 -1
- package/src/models/operations/{location.ts → locationv1locationget.ts} +14 -14
- package/src/sdk/location.ts +4 -4
- package/funcs/locationLocation.d.ts.map +0 -1
- package/funcs/locationLocation.js.map +0 -1
- package/models/operations/location.d.ts +0 -31
- package/models/operations/location.d.ts.map +0 -1
- package/models/operations/location.js.map +0 -1
package/README.md
CHANGED
|
@@ -155,7 +155,7 @@ run();
|
|
|
155
155
|
|
|
156
156
|
### [location](docs/sdks/location/README.md)
|
|
157
157
|
|
|
158
|
-
* [
|
|
158
|
+
* [locationV1LocationGet](docs/sdks/location/README.md#locationv1locationget)
|
|
159
159
|
|
|
160
160
|
### [public](docs/sdks/public/README.md)
|
|
161
161
|
|
|
@@ -586,7 +586,7 @@ To read more about standalone functions, check [FUNCTIONS.md](./FUNCTIONS.md).
|
|
|
586
586
|
- [`leaderboardLeaderboardV1GetBadges`](docs/sdks/leaderboard/README.md#leaderboardv1getbadges)
|
|
587
587
|
- [`leaderboardLeaderboardV1GetGroup`](docs/sdks/leaderboard/README.md#leaderboardv1getgroup)
|
|
588
588
|
- [`livenessLiveness`](docs/sdks/liveness/README.md#liveness) - Liveness check
|
|
589
|
-
- [`
|
|
589
|
+
- [`locationLocationV1LocationGet`](docs/sdks/location/README.md#locationv1locationget)
|
|
590
590
|
- [`publicAccountV1GetApps`](docs/sdks/public/README.md#accountv1getapps)
|
|
591
591
|
- [`publicAccountV1GetBadges`](docs/sdks/public/README.md#accountv1getbadges)
|
|
592
592
|
- [`publicAccountV1GetDataPoints`](docs/sdks/public/README.md#accountv1getdatapoints)
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
|
|
6
6
|
### Available Operations
|
|
7
7
|
|
|
8
|
-
* [
|
|
8
|
+
* [locationV1LocationGet](#locationv1locationget)
|
|
9
9
|
|
|
10
|
-
##
|
|
10
|
+
## locationV1LocationGet
|
|
11
11
|
|
|
12
12
|
### Example Usage
|
|
13
13
|
|
|
@@ -19,7 +19,7 @@ const steamSets = new SteamSets({
|
|
|
19
19
|
});
|
|
20
20
|
|
|
21
21
|
async function run() {
|
|
22
|
-
const result = await steamSets.location.
|
|
22
|
+
const result = await steamSets.location.locationV1LocationGet();
|
|
23
23
|
|
|
24
24
|
// Handle the result
|
|
25
25
|
console.log(result);
|
|
@@ -34,7 +34,7 @@ The standalone function version of this method:
|
|
|
34
34
|
|
|
35
35
|
```typescript
|
|
36
36
|
import { SteamSetsCore } from "@steamsets/client-ts/core.js";
|
|
37
|
-
import {
|
|
37
|
+
import { locationLocationV1LocationGet } from "@steamsets/client-ts/funcs/locationLocationV1LocationGet.js";
|
|
38
38
|
|
|
39
39
|
// Use `SteamSetsCore` for best tree-shaking performance.
|
|
40
40
|
// You can create one instance of it to use across an application.
|
|
@@ -43,7 +43,7 @@ const steamSets = new SteamSetsCore({
|
|
|
43
43
|
});
|
|
44
44
|
|
|
45
45
|
async function run() {
|
|
46
|
-
const res = await
|
|
46
|
+
const res = await locationLocationV1LocationGet(steamSets);
|
|
47
47
|
|
|
48
48
|
if (!res.ok) {
|
|
49
49
|
throw res.error;
|
|
@@ -68,7 +68,7 @@ run();
|
|
|
68
68
|
|
|
69
69
|
### Response
|
|
70
70
|
|
|
71
|
-
**Promise\<[operations.
|
|
71
|
+
**Promise\<[operations.LocationV1LocationGetResponse](../../models/operations/locationv1locationgetresponse.md)\>**
|
|
72
72
|
|
|
73
73
|
### Errors
|
|
74
74
|
|
|
@@ -6,5 +6,5 @@ import { SDKError } from "../models/errors/sdkerror.js";
|
|
|
6
6
|
import { SDKValidationError } from "../models/errors/sdkvalidationerror.js";
|
|
7
7
|
import * as operations from "../models/operations/index.js";
|
|
8
8
|
import { Result } from "../types/fp.js";
|
|
9
|
-
export declare function
|
|
10
|
-
//# sourceMappingURL=
|
|
9
|
+
export declare function locationLocationV1LocationGet(client: SteamSetsCore, options?: RequestOptions): Promise<Result<operations.LocationV1LocationGetResponse, errors.ErrorModel | SDKError | SDKValidationError | UnexpectedClientError | InvalidRequestError | RequestAbortedError | RequestTimeoutError | ConnectionError>>;
|
|
10
|
+
//# sourceMappingURL=locationLocationV1LocationGet.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"locationLocationV1LocationGet.d.ts","sourceRoot":"","sources":["../src/funcs/locationLocationV1LocationGet.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3C,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAGhD,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,wBAAsB,6BAA6B,CACjD,MAAM,EAAE,aAAa,EACrB,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CACR,MAAM,CACJ,UAAU,CAAC,6BAA6B,EACtC,MAAM,CAAC,UAAU,GACjB,QAAQ,GACR,kBAAkB,GAClB,qBAAqB,GACrB,mBAAmB,GACnB,mBAAmB,GACnB,mBAAmB,GACnB,eAAe,CAClB,CACF,CAqEA"}
|
|
@@ -26,13 +26,13 @@ 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.locationLocationV1LocationGet = locationLocationV1LocationGet;
|
|
30
30
|
const M = __importStar(require("../lib/matchers.js"));
|
|
31
31
|
const security_js_1 = require("../lib/security.js");
|
|
32
32
|
const url_js_1 = require("../lib/url.js");
|
|
33
33
|
const errors = __importStar(require("../models/errors/index.js"));
|
|
34
34
|
const operations = __importStar(require("../models/operations/index.js"));
|
|
35
|
-
async function
|
|
35
|
+
async function locationLocationV1LocationGet(client, options) {
|
|
36
36
|
const path = (0, url_js_1.pathToFunc)("/location.v1.LocationService/GetLocations")();
|
|
37
37
|
const headers = new Headers({
|
|
38
38
|
Accept: "application/json",
|
|
@@ -40,7 +40,7 @@ async function locationLocation(client, options) {
|
|
|
40
40
|
const secConfig = await (0, security_js_1.extractSecurity)(client._options.token);
|
|
41
41
|
const securityInput = secConfig == null ? {} : { token: secConfig };
|
|
42
42
|
const context = {
|
|
43
|
-
operationID: "location",
|
|
43
|
+
operationID: "location.v1.location.get",
|
|
44
44
|
oAuth2Scopes: [],
|
|
45
45
|
securitySource: client._options.token,
|
|
46
46
|
};
|
|
@@ -71,7 +71,9 @@ async function locationLocation(client, options) {
|
|
|
71
71
|
const responseFields = {
|
|
72
72
|
HttpMeta: { Response: response, Request: req },
|
|
73
73
|
};
|
|
74
|
-
const [result] = await M.match(M.json(200, operations.
|
|
74
|
+
const [result] = await M.match(M.json(200, operations.LocationV1LocationGetResponse$inboundSchema, {
|
|
75
|
+
key: "Regions",
|
|
76
|
+
}), M.jsonErr([401, 500], errors.ErrorModel$inboundSchema, {
|
|
75
77
|
ctype: "application/problem+json",
|
|
76
78
|
}), M.fail(["4XX", "5XX"]))(response, req, { extraFields: responseFields });
|
|
77
79
|
if (!result.ok) {
|
|
@@ -79,4 +81,4 @@ async function locationLocation(client, options) {
|
|
|
79
81
|
}
|
|
80
82
|
return result;
|
|
81
83
|
}
|
|
82
|
-
//# sourceMappingURL=
|
|
84
|
+
//# sourceMappingURL=locationLocationV1LocationGet.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"locationLocationV1LocationGet.js","sourceRoot":"","sources":["../src/funcs/locationLocationV1LocationGet.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.32";
|
|
31
31
|
readonly genVersion: "2.438.15";
|
|
32
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.11.
|
|
32
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.11.32 2.438.15 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.32",
|
|
34
34
|
genVersion: "2.438.15",
|
|
35
|
-
userAgent: "speakeasy-sdk/typescript 0.11.
|
|
35
|
+
userAgent: "speakeasy-sdk/typescript 0.11.32 2.438.15 1.0.0 @steamsets/client-ts",
|
|
36
36
|
};
|
|
37
37
|
//# sourceMappingURL=config.js.map
|
|
@@ -12,9 +12,7 @@ export type Country = {
|
|
|
12
12
|
/**
|
|
13
13
|
* The states of the country
|
|
14
14
|
*/
|
|
15
|
-
states:
|
|
16
|
-
[k: string]: State;
|
|
17
|
-
};
|
|
15
|
+
states: Array<State> | null;
|
|
18
16
|
};
|
|
19
17
|
/** @internal */
|
|
20
18
|
export declare const Country$inboundSchema: z.ZodType<Country, z.ZodTypeDef, unknown>;
|
|
@@ -22,9 +20,7 @@ export declare const Country$inboundSchema: z.ZodType<Country, z.ZodTypeDef, unk
|
|
|
22
20
|
export type Country$Outbound = {
|
|
23
21
|
code: string;
|
|
24
22
|
name: string;
|
|
25
|
-
states:
|
|
26
|
-
[k: string]: State$Outbound;
|
|
27
|
-
};
|
|
23
|
+
states: Array<State$Outbound> | null;
|
|
28
24
|
};
|
|
29
25
|
/** @internal */
|
|
30
26
|
export declare const Country$outboundSchema: z.ZodType<Country$Outbound, z.ZodTypeDef, Country>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"country.d.ts","sourceRoot":"","sources":["../../src/models/components/country.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EACL,KAAK,EAEL,cAAc,EAEf,MAAM,YAAY,CAAC;AAEpB,MAAM,MAAM,OAAO,GAAG;IACpB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,MAAM,EAAE
|
|
1
|
+
{"version":3,"file":"country.d.ts","sourceRoot":"","sources":["../../src/models/components/country.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EACL,KAAK,EAEL,cAAc,EAEf,MAAM,YAAY,CAAC;AAEpB,MAAM,MAAM,OAAO,GAAG;IACpB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,MAAM,EAAE,KAAK,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC;CAC7B,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,qBAAqB,EAAE,CAAC,CAAC,OAAO,CAAC,OAAO,EAAE,CAAC,CAAC,UAAU,EAAE,OAAO,CAKxE,CAAC;AAEL,gBAAgB;AAChB,MAAM,MAAM,gBAAgB,GAAG;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,KAAK,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC;CACtC,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,sBAAsB,EAAE,CAAC,CAAC,OAAO,CAC5C,gBAAgB,EAChB,CAAC,CAAC,UAAU,EACZ,OAAO,CAKP,CAAC;AAEH;;;GAGG;AACH,yBAAiB,QAAQ,CAAC;IACxB,uDAAuD;IAChD,MAAM,aAAa,2CAAwB,CAAC;IACnD,wDAAwD;IACjD,MAAM,cAAc,oDAAyB,CAAC;IACrD,kDAAkD;IAClD,KAAY,QAAQ,GAAG,gBAAgB,CAAC;CACzC"}
|
|
@@ -33,13 +33,13 @@ const state_js_1 = require("./state.js");
|
|
|
33
33
|
exports.Country$inboundSchema = z.object({
|
|
34
34
|
code: z.string(),
|
|
35
35
|
name: z.string(),
|
|
36
|
-
states: z.
|
|
36
|
+
states: z.nullable(z.array(state_js_1.State$inboundSchema)),
|
|
37
37
|
});
|
|
38
38
|
/** @internal */
|
|
39
39
|
exports.Country$outboundSchema = z.object({
|
|
40
40
|
code: z.string(),
|
|
41
41
|
name: z.string(),
|
|
42
|
-
states: z.
|
|
42
|
+
states: z.nullable(z.array(state_js_1.State$outboundSchema)),
|
|
43
43
|
});
|
|
44
44
|
/**
|
|
45
45
|
* @internal
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"country.js","sourceRoot":"","sources":["../../src/models/components/country.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AACzB,yCAKoB;AAiBpB,gBAAgB;AACH,QAAA,qBAAqB,GAChC,CAAC,CAAC,MAAM,CAAC;IACP,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,MAAM,EAAE,CAAC,CAAC,
|
|
1
|
+
{"version":3,"file":"country.js","sourceRoot":"","sources":["../../src/models/components/country.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AACzB,yCAKoB;AAiBpB,gBAAgB;AACH,QAAA,qBAAqB,GAChC,CAAC,CAAC,MAAM,CAAC;IACP,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,8BAAmB,CAAC,CAAC;CACjD,CAAC,CAAC;AASL,gBAAgB;AACH,QAAA,sBAAsB,GAI/B,CAAC,CAAC,MAAM,CAAC;IACX,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,+BAAoB,CAAC,CAAC;CAClD,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,QAAQ,CAOxB;AAPD,WAAiB,QAAQ;IACvB,uDAAuD;IAC1C,sBAAa,GAAG,6BAAqB,CAAC;IACnD,wDAAwD;IAC3C,uBAAc,GAAG,8BAAsB,CAAC;AAGvD,CAAC,EAPgB,QAAQ,wBAAR,QAAQ,QAOxB"}
|
|
@@ -4,9 +4,7 @@ export type Region = {
|
|
|
4
4
|
/**
|
|
5
5
|
* The countries of the region
|
|
6
6
|
*/
|
|
7
|
-
countries:
|
|
8
|
-
[k: string]: Country;
|
|
9
|
-
};
|
|
7
|
+
countries: Array<Country> | null;
|
|
10
8
|
/**
|
|
11
9
|
* The name of the region
|
|
12
10
|
*/
|
|
@@ -16,9 +14,7 @@ export type Region = {
|
|
|
16
14
|
export declare const Region$inboundSchema: z.ZodType<Region, z.ZodTypeDef, unknown>;
|
|
17
15
|
/** @internal */
|
|
18
16
|
export type Region$Outbound = {
|
|
19
|
-
countries:
|
|
20
|
-
[k: string]: Country$Outbound;
|
|
21
|
-
};
|
|
17
|
+
countries: Array<Country$Outbound> | null;
|
|
22
18
|
name: string;
|
|
23
19
|
};
|
|
24
20
|
/** @internal */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"region.d.ts","sourceRoot":"","sources":["../../src/models/components/region.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EACL,OAAO,EAEP,gBAAgB,EAEjB,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,MAAM,GAAG;IACnB;;OAEG;IACH,SAAS,EAAE
|
|
1
|
+
{"version":3,"file":"region.d.ts","sourceRoot":"","sources":["../../src/models/components/region.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EACL,OAAO,EAEP,gBAAgB,EAEjB,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,MAAM,GAAG;IACnB;;OAEG;IACH,SAAS,EAAE,KAAK,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC;IACjC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,oBAAoB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC,UAAU,EAAE,OAAO,CAItE,CAAC;AAEL,gBAAgB;AAChB,MAAM,MAAM,eAAe,GAAG;IAC5B,SAAS,EAAE,KAAK,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC;IAC1C,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,qBAAqB,EAAE,CAAC,CAAC,OAAO,CAC3C,eAAe,EACf,CAAC,CAAC,UAAU,EACZ,MAAM,CAIN,CAAC;AAEH;;;GAGG;AACH,yBAAiB,OAAO,CAAC;IACvB,sDAAsD;IAC/C,MAAM,aAAa,0CAAuB,CAAC;IAClD,uDAAuD;IAChD,MAAM,cAAc,kDAAwB,CAAC;IACpD,iDAAiD;IACjD,KAAY,QAAQ,GAAG,eAAe,CAAC;CACxC"}
|
|
@@ -32,12 +32,12 @@ const country_js_1 = require("./country.js");
|
|
|
32
32
|
/** @internal */
|
|
33
33
|
exports.Region$inboundSchema = z
|
|
34
34
|
.object({
|
|
35
|
-
countries: z.
|
|
35
|
+
countries: z.nullable(z.array(country_js_1.Country$inboundSchema)),
|
|
36
36
|
name: z.string(),
|
|
37
37
|
});
|
|
38
38
|
/** @internal */
|
|
39
39
|
exports.Region$outboundSchema = z.object({
|
|
40
|
-
countries: z.
|
|
40
|
+
countries: z.nullable(z.array(country_js_1.Country$outboundSchema)),
|
|
41
41
|
name: z.string(),
|
|
42
42
|
});
|
|
43
43
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"region.js","sourceRoot":"","sources":["../../src/models/components/region.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AACzB,6CAKsB;AAatB,gBAAgB;AACH,QAAA,oBAAoB,GAA6C,CAAC;KAC5E,MAAM,CAAC;IACN,SAAS,EAAE,CAAC,CAAC,
|
|
1
|
+
{"version":3,"file":"region.js","sourceRoot":"","sources":["../../src/models/components/region.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AACzB,6CAKsB;AAatB,gBAAgB;AACH,QAAA,oBAAoB,GAA6C,CAAC;KAC5E,MAAM,CAAC;IACN,SAAS,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,kCAAqB,CAAC,CAAC;IACrD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAQL,gBAAgB;AACH,QAAA,qBAAqB,GAI9B,CAAC,CAAC,MAAM,CAAC;IACX,SAAS,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,mCAAsB,CAAC,CAAC;IACtD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,OAAO,CAOvB;AAPD,WAAiB,OAAO;IACtB,sDAAsD;IACzC,qBAAa,GAAG,4BAAoB,CAAC;IAClD,uDAAuD;IAC1C,sBAAc,GAAG,6BAAqB,CAAC;AAGtD,CAAC,EAPgB,OAAO,uBAAP,OAAO,QAOvB"}
|
|
@@ -4,9 +4,7 @@ export type State = {
|
|
|
4
4
|
/**
|
|
5
5
|
* The cities of the state
|
|
6
6
|
*/
|
|
7
|
-
cities:
|
|
8
|
-
[k: string]: City;
|
|
9
|
-
};
|
|
7
|
+
cities: Array<City> | null;
|
|
10
8
|
/**
|
|
11
9
|
* The code of the state
|
|
12
10
|
*/
|
|
@@ -20,9 +18,7 @@ export type State = {
|
|
|
20
18
|
export declare const State$inboundSchema: z.ZodType<State, z.ZodTypeDef, unknown>;
|
|
21
19
|
/** @internal */
|
|
22
20
|
export type State$Outbound = {
|
|
23
|
-
cities:
|
|
24
|
-
[k: string]: City$Outbound;
|
|
25
|
-
};
|
|
21
|
+
cities: Array<City$Outbound> | null;
|
|
26
22
|
code: string;
|
|
27
23
|
name: string;
|
|
28
24
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"state.d.ts","sourceRoot":"","sources":["../../src/models/components/state.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EACL,IAAI,EAEJ,aAAa,EAEd,MAAM,WAAW,CAAC;AAEnB,MAAM,MAAM,KAAK,GAAG;IAClB;;OAEG;IACH,MAAM,EAAE
|
|
1
|
+
{"version":3,"file":"state.d.ts","sourceRoot":"","sources":["../../src/models/components/state.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EACL,IAAI,EAEJ,aAAa,EAEd,MAAM,WAAW,CAAC;AAEnB,MAAM,MAAM,KAAK,GAAG;IAClB;;OAEG;IACH,MAAM,EAAE,KAAK,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IAC3B;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,mBAAmB,EAAE,CAAC,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC,CAAC,UAAU,EAAE,OAAO,CAKpE,CAAC;AAEL,gBAAgB;AAChB,MAAM,MAAM,cAAc,GAAG;IAC3B,MAAM,EAAE,KAAK,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC;IACpC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,oBAAoB,EAAE,CAAC,CAAC,OAAO,CAC1C,cAAc,EACd,CAAC,CAAC,UAAU,EACZ,KAAK,CAKL,CAAC;AAEH;;;GAGG;AACH,yBAAiB,MAAM,CAAC;IACtB,qDAAqD;IAC9C,MAAM,aAAa,yCAAsB,CAAC;IACjD,sDAAsD;IAC/C,MAAM,cAAc,gDAAuB,CAAC;IACnD,gDAAgD;IAChD,KAAY,QAAQ,GAAG,cAAc,CAAC;CACvC"}
|
|
@@ -32,13 +32,13 @@ const city_js_1 = require("./city.js");
|
|
|
32
32
|
/** @internal */
|
|
33
33
|
exports.State$inboundSchema = z
|
|
34
34
|
.object({
|
|
35
|
-
cities: z.
|
|
35
|
+
cities: z.nullable(z.array(city_js_1.City$inboundSchema)),
|
|
36
36
|
code: z.string(),
|
|
37
37
|
name: z.string(),
|
|
38
38
|
});
|
|
39
39
|
/** @internal */
|
|
40
40
|
exports.State$outboundSchema = z.object({
|
|
41
|
-
cities: z.
|
|
41
|
+
cities: z.nullable(z.array(city_js_1.City$outboundSchema)),
|
|
42
42
|
code: z.string(),
|
|
43
43
|
name: z.string(),
|
|
44
44
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"state.js","sourceRoot":"","sources":["../../src/models/components/state.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AACzB,uCAKmB;AAiBnB,gBAAgB;AACH,QAAA,mBAAmB,GAA4C,CAAC;KAC1E,MAAM,CAAC;IACN,MAAM,EAAE,CAAC,CAAC,
|
|
1
|
+
{"version":3,"file":"state.js","sourceRoot":"","sources":["../../src/models/components/state.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AACzB,uCAKmB;AAiBnB,gBAAgB;AACH,QAAA,mBAAmB,GAA4C,CAAC;KAC1E,MAAM,CAAC;IACN,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,4BAAkB,CAAC,CAAC;IAC/C,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AASL,gBAAgB;AACH,QAAA,oBAAoB,GAI7B,CAAC,CAAC,MAAM,CAAC;IACX,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,6BAAmB,CAAC,CAAC;IAChD,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;CACjB,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,MAAM,CAOtB;AAPD,WAAiB,MAAM;IACrB,qDAAqD;IACxC,oBAAa,GAAG,2BAAmB,CAAC;IACjD,sDAAsD;IACzC,qBAAc,GAAG,4BAAoB,CAAC;AAGrD,CAAC,EAPgB,MAAM,sBAAN,MAAM,QAOtB"}
|
|
@@ -33,5 +33,5 @@ export * from "./leaderboardv1getaccount.js";
|
|
|
33
33
|
export * from "./leaderboardv1getbadges.js";
|
|
34
34
|
export * from "./leaderboardv1getgroup.js";
|
|
35
35
|
export * from "./liveness.js";
|
|
36
|
-
export * from "./
|
|
36
|
+
export * from "./locationv1locationget.js";
|
|
37
37
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -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,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,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,eAAe,CAAC;AAC9B,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,wBAAwB,CAAC;AACvC,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,eAAe,CAAC;AAC9B,cAAc,4BAA4B,CAAC"}
|
|
@@ -52,5 +52,5 @@ __exportStar(require("./leaderboardv1getaccount.js"), exports);
|
|
|
52
52
|
__exportStar(require("./leaderboardv1getbadges.js"), exports);
|
|
53
53
|
__exportStar(require("./leaderboardv1getgroup.js"), exports);
|
|
54
54
|
__exportStar(require("./liveness.js"), exports);
|
|
55
|
-
__exportStar(require("./
|
|
55
|
+
__exportStar(require("./locationv1locationget.js"), exports);
|
|
56
56
|
//# sourceMappingURL=index.js.map
|
|
@@ -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,2EAAyD;AACzD,4DAA0C;AAC1C,8EAA4D;AAC5D,+DAA6C;AAC7C,oEAAkD;AAClD,qEAAmD;AACnD,mEAAiD;AACjD,yDAAuC;AACvC,gDAA8B;AAC9B,kDAAgC;AAChC,kDAAgC;AAChC,mDAAiC;AACjC,+DAA6C;AAC7C,8DAA4C;AAC5C,6DAA2C;AAC3C,gDAA8B;AAC9B,
|
|
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,yDAAuC;AACvC,gDAA8B;AAC9B,kDAAgC;AAChC,kDAAgC;AAChC,mDAAiC;AACjC,+DAA6C;AAC7C,8DAA4C;AAC5C,6DAA2C;AAC3C,gDAA8B;AAC9B,6DAA2C"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as z from "zod";
|
|
2
|
+
import * as components from "../components/index.js";
|
|
3
|
+
export type LocationV1LocationGetResponse = {
|
|
4
|
+
httpMeta: components.HTTPMetadata;
|
|
5
|
+
/**
|
|
6
|
+
* OK
|
|
7
|
+
*/
|
|
8
|
+
regions?: Array<components.Region> | null | undefined;
|
|
9
|
+
};
|
|
10
|
+
/** @internal */
|
|
11
|
+
export declare const LocationV1LocationGetResponse$inboundSchema: z.ZodType<LocationV1LocationGetResponse, z.ZodTypeDef, unknown>;
|
|
12
|
+
/** @internal */
|
|
13
|
+
export type LocationV1LocationGetResponse$Outbound = {
|
|
14
|
+
HttpMeta: components.HTTPMetadata$Outbound;
|
|
15
|
+
Regions?: Array<components.Region$Outbound> | null | undefined;
|
|
16
|
+
};
|
|
17
|
+
/** @internal */
|
|
18
|
+
export declare const LocationV1LocationGetResponse$outboundSchema: z.ZodType<LocationV1LocationGetResponse$Outbound, z.ZodTypeDef, LocationV1LocationGetResponse>;
|
|
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 LocationV1LocationGetResponse$ {
|
|
24
|
+
/** @deprecated use `LocationV1LocationGetResponse$inboundSchema` instead. */
|
|
25
|
+
const inboundSchema: z.ZodType<LocationV1LocationGetResponse, z.ZodTypeDef, unknown>;
|
|
26
|
+
/** @deprecated use `LocationV1LocationGetResponse$outboundSchema` instead. */
|
|
27
|
+
const outboundSchema: z.ZodType<LocationV1LocationGetResponse$Outbound, z.ZodTypeDef, LocationV1LocationGetResponse>;
|
|
28
|
+
/** @deprecated use `LocationV1LocationGetResponse$Outbound` instead. */
|
|
29
|
+
type Outbound = LocationV1LocationGetResponse$Outbound;
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=locationv1locationget.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"locationv1locationget.d.ts","sourceRoot":"","sources":["../../src/models/operations/locationv1locationget.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,OAAO,KAAK,UAAU,MAAM,wBAAwB,CAAC;AAErD,MAAM,MAAM,6BAA6B,GAAG;IAC1C,QAAQ,EAAE,UAAU,CAAC,YAAY,CAAC;IAClC;;OAEG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,MAAM,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC;CACvD,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,2CAA2C,EAAE,CAAC,CAAC,OAAO,CACjE,6BAA6B,EAC7B,CAAC,CAAC,UAAU,EACZ,OAAO,CASP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,sCAAsC,GAAG;IACnD,QAAQ,EAAE,UAAU,CAAC,qBAAqB,CAAC;IAC3C,OAAO,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,eAAe,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC;CAChE,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,4CAA4C,EAAE,CAAC,CAAC,OAAO,CAClE,sCAAsC,EACtC,CAAC,CAAC,UAAU,EACZ,6BAA6B,CAS7B,CAAC;AAEH;;;GAGG;AACH,yBAAiB,8BAA8B,CAAC;IAC9C,6EAA6E;IACtE,MAAM,aAAa,iEAA8C,CAAC;IACzE,8EAA8E;IACvE,MAAM,cAAc,gGAA+C,CAAC;IAC3E,wEAAwE;IACxE,KAAY,QAAQ,GAAG,sCAAsC,CAAC;CAC/D"}
|
|
@@ -26,12 +26,12 @@ 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.LocationV1LocationGetResponse$ = exports.LocationV1LocationGetResponse$outboundSchema = exports.LocationV1LocationGetResponse$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.LocationV1LocationGetResponse$inboundSchema = z.object({
|
|
35
35
|
HttpMeta: components.HTTPMetadata$inboundSchema,
|
|
36
36
|
Regions: z.nullable(z.array(components.Region$inboundSchema)).optional(),
|
|
37
37
|
}).transform((v) => {
|
|
@@ -41,7 +41,7 @@ exports.LocationResponse$inboundSchema = z.object({
|
|
|
41
41
|
});
|
|
42
42
|
});
|
|
43
43
|
/** @internal */
|
|
44
|
-
exports.
|
|
44
|
+
exports.LocationV1LocationGetResponse$outboundSchema = z.object({
|
|
45
45
|
httpMeta: components.HTTPMetadata$outboundSchema,
|
|
46
46
|
regions: z.nullable(z.array(components.Region$outboundSchema)).optional(),
|
|
47
47
|
}).transform((v) => {
|
|
@@ -54,11 +54,11 @@ exports.LocationResponse$outboundSchema = z.object({
|
|
|
54
54
|
* @internal
|
|
55
55
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
56
56
|
*/
|
|
57
|
-
var
|
|
58
|
-
(function (
|
|
59
|
-
/** @deprecated use `
|
|
60
|
-
|
|
61
|
-
/** @deprecated use `
|
|
62
|
-
|
|
63
|
-
})(
|
|
64
|
-
//# sourceMappingURL=
|
|
57
|
+
var LocationV1LocationGetResponse$;
|
|
58
|
+
(function (LocationV1LocationGetResponse$) {
|
|
59
|
+
/** @deprecated use `LocationV1LocationGetResponse$inboundSchema` instead. */
|
|
60
|
+
LocationV1LocationGetResponse$.inboundSchema = exports.LocationV1LocationGetResponse$inboundSchema;
|
|
61
|
+
/** @deprecated use `LocationV1LocationGetResponse$outboundSchema` instead. */
|
|
62
|
+
LocationV1LocationGetResponse$.outboundSchema = exports.LocationV1LocationGetResponse$outboundSchema;
|
|
63
|
+
})(LocationV1LocationGetResponse$ || (exports.LocationV1LocationGetResponse$ = LocationV1LocationGetResponse$ = {}));
|
|
64
|
+
//# sourceMappingURL=locationv1locationget.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"locationv1locationget.js","sourceRoot":"","sources":["../../src/models/operations/locationv1locationget.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AACzB,2DAA0D;AAC1D,mEAAqD;AAUrD,gBAAgB;AACH,QAAA,2CAA2C,GAIpD,CAAC,CAAC,MAAM,CAAC;IACX,QAAQ,EAAE,UAAU,CAAC,0BAA0B;IAC/C,OAAO,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,oBAAoB,CAAC,CAAC,CAAC,QAAQ,EAAE;CACzE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,UAAU,EAAE,UAAU;QACtB,SAAS,EAAE,SAAS;KACrB,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAQH,gBAAgB;AACH,QAAA,4CAA4C,GAIrD,CAAC,CAAC,MAAM,CAAC;IACX,QAAQ,EAAE,UAAU,CAAC,2BAA2B;IAChD,OAAO,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,qBAAqB,CAAC,CAAC,CAAC,QAAQ,EAAE;CAC1E,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,QAAQ,EAAE,UAAU;QACpB,OAAO,EAAE,SAAS;KACnB,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,8BAA8B,CAO9C;AAPD,WAAiB,8BAA8B;IAC7C,6EAA6E;IAChE,4CAAa,GAAG,mDAA2C,CAAC;IACzE,8EAA8E;IACjE,6CAAc,GAAG,oDAA4C,CAAC;AAG7E,CAAC,EAPgB,8BAA8B,8CAA9B,8BAA8B,QAO9C"}
|
package/package.json
CHANGED
package/sdk/location.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ClientSDK, RequestOptions } from "../lib/sdks.js";
|
|
2
2
|
import * as operations from "../models/operations/index.js";
|
|
3
3
|
export declare class Location extends ClientSDK {
|
|
4
|
-
|
|
4
|
+
locationV1LocationGet(options?: RequestOptions): Promise<operations.LocationV1LocationGetResponse>;
|
|
5
5
|
}
|
|
6
6
|
//# sourceMappingURL=location.d.ts.map
|
package/sdk/location.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"location.d.ts","sourceRoot":"","sources":["../src/sdk/location.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC3D,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAG5D,qBAAa,QAAS,SAAQ,SAAS;IAC/B,
|
|
1
|
+
{"version":3,"file":"location.d.ts","sourceRoot":"","sources":["../src/sdk/location.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC3D,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAG5D,qBAAa,QAAS,SAAQ,SAAS;IAC/B,qBAAqB,CACzB,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,6BAA6B,CAAC;CAMrD"}
|
package/sdk/location.js
CHANGED
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
*/
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.Location = void 0;
|
|
7
|
-
const
|
|
7
|
+
const locationLocationV1LocationGet_js_1 = require("../funcs/locationLocationV1LocationGet.js");
|
|
8
8
|
const sdks_js_1 = require("../lib/sdks.js");
|
|
9
9
|
const fp_js_1 = require("../types/fp.js");
|
|
10
10
|
class Location extends sdks_js_1.ClientSDK {
|
|
11
|
-
async
|
|
12
|
-
return (0, fp_js_1.unwrapAsync)((0,
|
|
11
|
+
async locationV1LocationGet(options) {
|
|
12
|
+
return (0, fp_js_1.unwrapAsync)((0, locationLocationV1LocationGet_js_1.locationLocationV1LocationGet)(this, options));
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
exports.Location = Location;
|
package/sdk/location.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"location.js","sourceRoot":"","sources":["../src/sdk/location.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,
|
|
1
|
+
{"version":3,"file":"location.js","sourceRoot":"","sources":["../src/sdk/location.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,gGAA0F;AAC1F,4CAA2D;AAE3D,0CAA6C;AAE7C,MAAa,QAAS,SAAQ,mBAAS;IACrC,KAAK,CAAC,qBAAqB,CACzB,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,gEAA6B,EAC9C,IAAI,EACJ,OAAO,CACR,CAAC,CAAC;IACL,CAAC;CACF;AATD,4BASC"}
|
|
@@ -20,12 +20,12 @@ import { SDKValidationError } from "../models/errors/sdkvalidationerror.js";
|
|
|
20
20
|
import * as operations from "../models/operations/index.js";
|
|
21
21
|
import { Result } from "../types/fp.js";
|
|
22
22
|
|
|
23
|
-
export async function
|
|
23
|
+
export async function locationLocationV1LocationGet(
|
|
24
24
|
client: SteamSetsCore,
|
|
25
25
|
options?: RequestOptions,
|
|
26
26
|
): Promise<
|
|
27
27
|
Result<
|
|
28
|
-
operations.
|
|
28
|
+
operations.LocationV1LocationGetResponse,
|
|
29
29
|
| errors.ErrorModel
|
|
30
30
|
| SDKError
|
|
31
31
|
| SDKValidationError
|
|
@@ -45,7 +45,7 @@ export async function locationLocation(
|
|
|
45
45
|
const secConfig = await extractSecurity(client._options.token);
|
|
46
46
|
const securityInput = secConfig == null ? {} : { token: secConfig };
|
|
47
47
|
const context = {
|
|
48
|
-
operationID: "location",
|
|
48
|
+
operationID: "location.v1.location.get",
|
|
49
49
|
oAuth2Scopes: [],
|
|
50
50
|
securitySource: client._options.token,
|
|
51
51
|
};
|
|
@@ -81,7 +81,7 @@ export async function locationLocation(
|
|
|
81
81
|
};
|
|
82
82
|
|
|
83
83
|
const [result] = await M.match<
|
|
84
|
-
operations.
|
|
84
|
+
operations.LocationV1LocationGetResponse,
|
|
85
85
|
| errors.ErrorModel
|
|
86
86
|
| SDKError
|
|
87
87
|
| SDKValidationError
|
|
@@ -91,7 +91,9 @@ export async function locationLocation(
|
|
|
91
91
|
| RequestTimeoutError
|
|
92
92
|
| ConnectionError
|
|
93
93
|
>(
|
|
94
|
-
M.json(200, operations.
|
|
94
|
+
M.json(200, operations.LocationV1LocationGetResponse$inboundSchema, {
|
|
95
|
+
key: "Regions",
|
|
96
|
+
}),
|
|
95
97
|
M.jsonErr([401, 500], errors.ErrorModel$inboundSchema, {
|
|
96
98
|
ctype: "application/problem+json",
|
|
97
99
|
}),
|
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.32",
|
|
59
59
|
genVersion: "2.438.15",
|
|
60
60
|
userAgent:
|
|
61
|
-
"speakeasy-sdk/typescript 0.11.
|
|
61
|
+
"speakeasy-sdk/typescript 0.11.32 2.438.15 1.0.0 @steamsets/client-ts",
|
|
62
62
|
} as const;
|
|
@@ -22,7 +22,7 @@ export type Country = {
|
|
|
22
22
|
/**
|
|
23
23
|
* The states of the country
|
|
24
24
|
*/
|
|
25
|
-
states:
|
|
25
|
+
states: Array<State> | null;
|
|
26
26
|
};
|
|
27
27
|
|
|
28
28
|
/** @internal */
|
|
@@ -30,14 +30,14 @@ export const Country$inboundSchema: z.ZodType<Country, z.ZodTypeDef, unknown> =
|
|
|
30
30
|
z.object({
|
|
31
31
|
code: z.string(),
|
|
32
32
|
name: z.string(),
|
|
33
|
-
states: z.
|
|
33
|
+
states: z.nullable(z.array(State$inboundSchema)),
|
|
34
34
|
});
|
|
35
35
|
|
|
36
36
|
/** @internal */
|
|
37
37
|
export type Country$Outbound = {
|
|
38
38
|
code: string;
|
|
39
39
|
name: string;
|
|
40
|
-
states:
|
|
40
|
+
states: Array<State$Outbound> | null;
|
|
41
41
|
};
|
|
42
42
|
|
|
43
43
|
/** @internal */
|
|
@@ -48,7 +48,7 @@ export const Country$outboundSchema: z.ZodType<
|
|
|
48
48
|
> = z.object({
|
|
49
49
|
code: z.string(),
|
|
50
50
|
name: z.string(),
|
|
51
|
-
states: z.
|
|
51
|
+
states: z.nullable(z.array(State$outboundSchema)),
|
|
52
52
|
});
|
|
53
53
|
|
|
54
54
|
/**
|
|
@@ -14,7 +14,7 @@ export type Region = {
|
|
|
14
14
|
/**
|
|
15
15
|
* The countries of the region
|
|
16
16
|
*/
|
|
17
|
-
countries:
|
|
17
|
+
countries: Array<Country> | null;
|
|
18
18
|
/**
|
|
19
19
|
* The name of the region
|
|
20
20
|
*/
|
|
@@ -24,13 +24,13 @@ export type Region = {
|
|
|
24
24
|
/** @internal */
|
|
25
25
|
export const Region$inboundSchema: z.ZodType<Region, z.ZodTypeDef, unknown> = z
|
|
26
26
|
.object({
|
|
27
|
-
countries: z.
|
|
27
|
+
countries: z.nullable(z.array(Country$inboundSchema)),
|
|
28
28
|
name: z.string(),
|
|
29
29
|
});
|
|
30
30
|
|
|
31
31
|
/** @internal */
|
|
32
32
|
export type Region$Outbound = {
|
|
33
|
-
countries:
|
|
33
|
+
countries: Array<Country$Outbound> | null;
|
|
34
34
|
name: string;
|
|
35
35
|
};
|
|
36
36
|
|
|
@@ -40,7 +40,7 @@ export const Region$outboundSchema: z.ZodType<
|
|
|
40
40
|
z.ZodTypeDef,
|
|
41
41
|
Region
|
|
42
42
|
> = z.object({
|
|
43
|
-
countries: z.
|
|
43
|
+
countries: z.nullable(z.array(Country$outboundSchema)),
|
|
44
44
|
name: z.string(),
|
|
45
45
|
});
|
|
46
46
|
|
|
@@ -14,7 +14,7 @@ export type State = {
|
|
|
14
14
|
/**
|
|
15
15
|
* The cities of the state
|
|
16
16
|
*/
|
|
17
|
-
cities:
|
|
17
|
+
cities: Array<City> | null;
|
|
18
18
|
/**
|
|
19
19
|
* The code of the state
|
|
20
20
|
*/
|
|
@@ -28,14 +28,14 @@ export type State = {
|
|
|
28
28
|
/** @internal */
|
|
29
29
|
export const State$inboundSchema: z.ZodType<State, z.ZodTypeDef, unknown> = z
|
|
30
30
|
.object({
|
|
31
|
-
cities: z.
|
|
31
|
+
cities: z.nullable(z.array(City$inboundSchema)),
|
|
32
32
|
code: z.string(),
|
|
33
33
|
name: z.string(),
|
|
34
34
|
});
|
|
35
35
|
|
|
36
36
|
/** @internal */
|
|
37
37
|
export type State$Outbound = {
|
|
38
|
-
cities:
|
|
38
|
+
cities: Array<City$Outbound> | null;
|
|
39
39
|
code: string;
|
|
40
40
|
name: string;
|
|
41
41
|
};
|
|
@@ -46,7 +46,7 @@ export const State$outboundSchema: z.ZodType<
|
|
|
46
46
|
z.ZodTypeDef,
|
|
47
47
|
State
|
|
48
48
|
> = z.object({
|
|
49
|
-
cities: z.
|
|
49
|
+
cities: z.nullable(z.array(City$outboundSchema)),
|
|
50
50
|
code: z.string(),
|
|
51
51
|
name: z.string(),
|
|
52
52
|
});
|
|
@@ -6,7 +6,7 @@ import * as z from "zod";
|
|
|
6
6
|
import { remap as remap$ } from "../../lib/primitives.js";
|
|
7
7
|
import * as components from "../components/index.js";
|
|
8
8
|
|
|
9
|
-
export type
|
|
9
|
+
export type LocationV1LocationGetResponse = {
|
|
10
10
|
httpMeta: components.HTTPMetadata;
|
|
11
11
|
/**
|
|
12
12
|
* OK
|
|
@@ -15,8 +15,8 @@ export type LocationResponse = {
|
|
|
15
15
|
};
|
|
16
16
|
|
|
17
17
|
/** @internal */
|
|
18
|
-
export const
|
|
19
|
-
|
|
18
|
+
export const LocationV1LocationGetResponse$inboundSchema: z.ZodType<
|
|
19
|
+
LocationV1LocationGetResponse,
|
|
20
20
|
z.ZodTypeDef,
|
|
21
21
|
unknown
|
|
22
22
|
> = z.object({
|
|
@@ -30,16 +30,16 @@ export const LocationResponse$inboundSchema: z.ZodType<
|
|
|
30
30
|
});
|
|
31
31
|
|
|
32
32
|
/** @internal */
|
|
33
|
-
export type
|
|
33
|
+
export type LocationV1LocationGetResponse$Outbound = {
|
|
34
34
|
HttpMeta: components.HTTPMetadata$Outbound;
|
|
35
35
|
Regions?: Array<components.Region$Outbound> | null | undefined;
|
|
36
36
|
};
|
|
37
37
|
|
|
38
38
|
/** @internal */
|
|
39
|
-
export const
|
|
40
|
-
|
|
39
|
+
export const LocationV1LocationGetResponse$outboundSchema: z.ZodType<
|
|
40
|
+
LocationV1LocationGetResponse$Outbound,
|
|
41
41
|
z.ZodTypeDef,
|
|
42
|
-
|
|
42
|
+
LocationV1LocationGetResponse
|
|
43
43
|
> = z.object({
|
|
44
44
|
httpMeta: components.HTTPMetadata$outboundSchema,
|
|
45
45
|
regions: z.nullable(z.array(components.Region$outboundSchema)).optional(),
|
|
@@ -54,11 +54,11 @@ export const LocationResponse$outboundSchema: z.ZodType<
|
|
|
54
54
|
* @internal
|
|
55
55
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
56
56
|
*/
|
|
57
|
-
export namespace
|
|
58
|
-
/** @deprecated use `
|
|
59
|
-
export const inboundSchema =
|
|
60
|
-
/** @deprecated use `
|
|
61
|
-
export const outboundSchema =
|
|
62
|
-
/** @deprecated use `
|
|
63
|
-
export type Outbound =
|
|
57
|
+
export namespace LocationV1LocationGetResponse$ {
|
|
58
|
+
/** @deprecated use `LocationV1LocationGetResponse$inboundSchema` instead. */
|
|
59
|
+
export const inboundSchema = LocationV1LocationGetResponse$inboundSchema;
|
|
60
|
+
/** @deprecated use `LocationV1LocationGetResponse$outboundSchema` instead. */
|
|
61
|
+
export const outboundSchema = LocationV1LocationGetResponse$outboundSchema;
|
|
62
|
+
/** @deprecated use `LocationV1LocationGetResponse$Outbound` instead. */
|
|
63
|
+
export type Outbound = LocationV1LocationGetResponse$Outbound;
|
|
64
64
|
}
|
package/src/sdk/location.ts
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
import {
|
|
5
|
+
import { locationLocationV1LocationGet } from "../funcs/locationLocationV1LocationGet.js";
|
|
6
6
|
import { ClientSDK, RequestOptions } from "../lib/sdks.js";
|
|
7
7
|
import * as operations from "../models/operations/index.js";
|
|
8
8
|
import { unwrapAsync } from "../types/fp.js";
|
|
9
9
|
|
|
10
10
|
export class Location extends ClientSDK {
|
|
11
|
-
async
|
|
11
|
+
async locationV1LocationGet(
|
|
12
12
|
options?: RequestOptions,
|
|
13
|
-
): Promise<operations.
|
|
14
|
-
return unwrapAsync(
|
|
13
|
+
): Promise<operations.LocationV1LocationGetResponse> {
|
|
14
|
+
return unwrapAsync(locationLocationV1LocationGet(
|
|
15
15
|
this,
|
|
16
16
|
options,
|
|
17
17
|
));
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"locationLocation.d.ts","sourceRoot":"","sources":["../src/funcs/locationLocation.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3C,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAGhD,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,wBAAsB,gBAAgB,CACpC,MAAM,EAAE,aAAa,EACrB,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CACR,MAAM,CACJ,UAAU,CAAC,gBAAgB,EACzB,MAAM,CAAC,UAAU,GACjB,QAAQ,GACR,kBAAkB,GAClB,qBAAqB,GACrB,mBAAmB,GACnB,mBAAmB,GACnB,mBAAmB,GACnB,eAAe,CAClB,CACF,CAmEA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"locationLocation.js","sourceRoot":"","sources":["../src/funcs/locationLocation.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import * as z from "zod";
|
|
2
|
-
import * as components from "../components/index.js";
|
|
3
|
-
export type LocationResponse = {
|
|
4
|
-
httpMeta: components.HTTPMetadata;
|
|
5
|
-
/**
|
|
6
|
-
* OK
|
|
7
|
-
*/
|
|
8
|
-
regions?: Array<components.Region> | null | undefined;
|
|
9
|
-
};
|
|
10
|
-
/** @internal */
|
|
11
|
-
export declare const LocationResponse$inboundSchema: z.ZodType<LocationResponse, z.ZodTypeDef, unknown>;
|
|
12
|
-
/** @internal */
|
|
13
|
-
export type LocationResponse$Outbound = {
|
|
14
|
-
HttpMeta: components.HTTPMetadata$Outbound;
|
|
15
|
-
Regions?: Array<components.Region$Outbound> | null | undefined;
|
|
16
|
-
};
|
|
17
|
-
/** @internal */
|
|
18
|
-
export declare const LocationResponse$outboundSchema: z.ZodType<LocationResponse$Outbound, z.ZodTypeDef, LocationResponse>;
|
|
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 LocationResponse$ {
|
|
24
|
-
/** @deprecated use `LocationResponse$inboundSchema` instead. */
|
|
25
|
-
const inboundSchema: z.ZodType<LocationResponse, z.ZodTypeDef, unknown>;
|
|
26
|
-
/** @deprecated use `LocationResponse$outboundSchema` instead. */
|
|
27
|
-
const outboundSchema: z.ZodType<LocationResponse$Outbound, z.ZodTypeDef, LocationResponse>;
|
|
28
|
-
/** @deprecated use `LocationResponse$Outbound` instead. */
|
|
29
|
-
type Outbound = LocationResponse$Outbound;
|
|
30
|
-
}
|
|
31
|
-
//# sourceMappingURL=location.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"location.d.ts","sourceRoot":"","sources":["../../src/models/operations/location.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,OAAO,KAAK,UAAU,MAAM,wBAAwB,CAAC;AAErD,MAAM,MAAM,gBAAgB,GAAG;IAC7B,QAAQ,EAAE,UAAU,CAAC,YAAY,CAAC;IAClC;;OAEG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,MAAM,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC;CACvD,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,OAAO,CACpD,gBAAgB,EAChB,CAAC,CAAC,UAAU,EACZ,OAAO,CASP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,yBAAyB,GAAG;IACtC,QAAQ,EAAE,UAAU,CAAC,qBAAqB,CAAC;IAC3C,OAAO,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,eAAe,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC;CAChE,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CACrD,yBAAyB,EACzB,CAAC,CAAC,UAAU,EACZ,gBAAgB,CAShB,CAAC;AAEH;;;GAGG;AACH,yBAAiB,iBAAiB,CAAC;IACjC,gEAAgE;IACzD,MAAM,aAAa,oDAAiC,CAAC;IAC5D,iEAAiE;IAC1D,MAAM,cAAc,sEAAkC,CAAC;IAC9D,2DAA2D;IAC3D,KAAY,QAAQ,GAAG,yBAAyB,CAAC;CAClD"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"location.js","sourceRoot":"","sources":["../../src/models/operations/location.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AACzB,2DAA0D;AAC1D,mEAAqD;AAUrD,gBAAgB;AACH,QAAA,8BAA8B,GAIvC,CAAC,CAAC,MAAM,CAAC;IACX,QAAQ,EAAE,UAAU,CAAC,0BAA0B;IAC/C,OAAO,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,oBAAoB,CAAC,CAAC,CAAC,QAAQ,EAAE;CACzE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,UAAU,EAAE,UAAU;QACtB,SAAS,EAAE,SAAS;KACrB,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAQH,gBAAgB;AACH,QAAA,+BAA+B,GAIxC,CAAC,CAAC,MAAM,CAAC;IACX,QAAQ,EAAE,UAAU,CAAC,2BAA2B;IAChD,OAAO,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,qBAAqB,CAAC,CAAC,CAAC,QAAQ,EAAE;CAC1E,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,QAAQ,EAAE,UAAU;QACpB,OAAO,EAAE,SAAS;KACnB,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,iBAAiB,CAOjC;AAPD,WAAiB,iBAAiB;IAChC,gEAAgE;IACnD,+BAAa,GAAG,sCAA8B,CAAC;IAC5D,iEAAiE;IACpD,gCAAc,GAAG,uCAA+B,CAAC;AAGhE,CAAC,EAPgB,iBAAiB,iCAAjB,iBAAiB,QAOjC"}
|