@xyo-network/location-payload-plugin 7.0.3 → 7.1.0
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/dist/neutral/index.d.ts +1 -6
- package/dist/neutral/index.d.ts.map +1 -1
- package/dist/neutral/index.mjs +2 -126
- package/dist/neutral/index.mjs.map +4 -4
- package/package.json +15 -42
- package/dist/neutral/GeographicCoordinateSystemLocationPayload.d.ts +0 -253
- package/dist/neutral/GeographicCoordinateSystemLocationPayload.d.ts.map +0 -1
- package/dist/neutral/GeographicCoordinateSystemLocationSchema.d.ts +0 -13
- package/dist/neutral/GeographicCoordinateSystemLocationSchema.d.ts.map +0 -1
- package/dist/neutral/HeadingPayload.d.ts +0 -116
- package/dist/neutral/HeadingPayload.d.ts.map +0 -1
- package/dist/neutral/HeadingSchema.d.ts +0 -5
- package/dist/neutral/HeadingSchema.d.ts.map +0 -1
- package/dist/neutral/Plugin.d.ts +0 -18
- package/dist/neutral/Plugin.d.ts.map +0 -1
- package/dist/neutral/Schema.d.ts +0 -5
- package/dist/neutral/Schema.d.ts.map +0 -1
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,7 +1,2 @@
|
|
|
1
|
-
export * from '
|
|
2
|
-
export * from './GeographicCoordinateSystemLocationSchema.ts';
|
|
3
|
-
export * from './HeadingPayload.ts';
|
|
4
|
-
export * from './HeadingSchema.ts';
|
|
5
|
-
export { LocationPayloadPlugin as default, LocationPayloadPlugin } from './Plugin.ts';
|
|
6
|
-
export * from './Schema.ts';
|
|
1
|
+
export * from '@xyo-network/payload-plugins/location';
|
|
7
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,cAAc,uCAAuC,CAAA"}
|
package/dist/neutral/index.mjs
CHANGED
|
@@ -1,127 +1,3 @@
|
|
|
1
|
-
// src/
|
|
2
|
-
|
|
3
|
-
zodAsFactory,
|
|
4
|
-
zodIsFactory,
|
|
5
|
-
zodToFactory
|
|
6
|
-
} from "@ariestools/sdk";
|
|
7
|
-
import { PayloadZodOfSchema } from "@xyo-network/sdk";
|
|
8
|
-
import * as z from "zod/mini";
|
|
9
|
-
|
|
10
|
-
// src/GeographicCoordinateSystemLocationSchema.ts
|
|
11
|
-
import { asSchema } from "@xyo-network/sdk";
|
|
12
|
-
var GeographicCoordinateSystemLocationSchema = asSchema("network.xyo.location.gcs", true);
|
|
13
|
-
var QuadkeyLocationSchema = asSchema("network.xyo.location.quadkey", true);
|
|
14
|
-
var LocationSchema = asSchema("network.xyo.location", true);
|
|
15
|
-
|
|
16
|
-
// src/GeographicCoordinateSystemLocationPayload.ts
|
|
17
|
-
var GeographicCoordinateSystemLocationZod = z.object({
|
|
18
|
-
accuracy: z.optional(z.number()),
|
|
19
|
-
altitude: z.optional(z.number()),
|
|
20
|
-
altitudeAccuracy: z.optional(z.number()),
|
|
21
|
-
latitude: z.number(),
|
|
22
|
-
longitude: z.number()
|
|
23
|
-
});
|
|
24
|
-
var QuadkeyLocationZod = z.object({
|
|
25
|
-
altitude: z.optional(z.number()),
|
|
26
|
-
altitudeAccuracy: z.optional(z.number()),
|
|
27
|
-
quadkey: z.string()
|
|
28
|
-
});
|
|
29
|
-
var LocationZod = z.union([GeographicCoordinateSystemLocationZod, QuadkeyLocationZod]);
|
|
30
|
-
var GeographicCoordinateSystemLocationPayloadZod = z.extend(PayloadZodOfSchema(GeographicCoordinateSystemLocationSchema), { ...GeographicCoordinateSystemLocationZod.shape });
|
|
31
|
-
var isGeographicCoordinateSystemLocationPayload = zodIsFactory(GeographicCoordinateSystemLocationPayloadZod);
|
|
32
|
-
var asGeographicCoordinateSystemLocationPayload = zodAsFactory(
|
|
33
|
-
GeographicCoordinateSystemLocationPayloadZod,
|
|
34
|
-
"asGeographicCoordinateSystemLocationPayload"
|
|
35
|
-
);
|
|
36
|
-
var toGeographicCoordinateSystemLocationPayload = zodToFactory(
|
|
37
|
-
GeographicCoordinateSystemLocationPayloadZod,
|
|
38
|
-
"toGeographicCoordinateSystemLocationPayload"
|
|
39
|
-
);
|
|
40
|
-
var QuadkeyLocationPayloadZod = z.extend(PayloadZodOfSchema(QuadkeyLocationSchema), { ...QuadkeyLocationZod.shape });
|
|
41
|
-
var isQuadkeyLocationPayload = zodIsFactory(QuadkeyLocationPayloadZod);
|
|
42
|
-
var asQuadkeyLocationPayload = zodAsFactory(QuadkeyLocationPayloadZod, "asQuadkeyLocationPayload");
|
|
43
|
-
var toQuadkeyLocationPayload = zodToFactory(QuadkeyLocationPayloadZod, "toQuadkeyLocationPayload");
|
|
44
|
-
var LocationPayloadZod = z.union([
|
|
45
|
-
z.extend(PayloadZodOfSchema(LocationSchema), { ...GeographicCoordinateSystemLocationZod.shape }),
|
|
46
|
-
z.extend(PayloadZodOfSchema(LocationSchema), { ...QuadkeyLocationZod.shape })
|
|
47
|
-
]);
|
|
48
|
-
var isLocationPayload = zodIsFactory(LocationPayloadZod);
|
|
49
|
-
var asLocationPayload = zodAsFactory(LocationPayloadZod, "asLocationPayload");
|
|
50
|
-
var toLocationPayload = zodToFactory(LocationPayloadZod, "toLocationPayload");
|
|
51
|
-
|
|
52
|
-
// src/HeadingPayload.ts
|
|
53
|
-
import {
|
|
54
|
-
zodAsFactory as zodAsFactory2,
|
|
55
|
-
zodIsFactory as zodIsFactory2,
|
|
56
|
-
zodToFactory as zodToFactory2
|
|
57
|
-
} from "@ariestools/sdk";
|
|
58
|
-
import { PayloadZodOfSchema as PayloadZodOfSchema2 } from "@xyo-network/sdk";
|
|
59
|
-
import * as z2 from "zod/mini";
|
|
60
|
-
|
|
61
|
-
// src/HeadingSchema.ts
|
|
62
|
-
import { asSchema as asSchema2 } from "@xyo-network/sdk";
|
|
63
|
-
var LocationHeadingSchema = asSchema2("network.xyo.location.heading", true);
|
|
64
|
-
|
|
65
|
-
// src/HeadingPayload.ts
|
|
66
|
-
var AccelerationZod = z2.object({ acceleration: z2.number() });
|
|
67
|
-
var HeadingZod = z2.object({ heading: z2.number() });
|
|
68
|
-
var SpeedZod = z2.object({ speed: z2.number() });
|
|
69
|
-
var VelocityZod = z2.object({
|
|
70
|
-
...HeadingZod.shape,
|
|
71
|
-
...SpeedZod.shape
|
|
72
|
-
});
|
|
73
|
-
var MotionZod = z2.object({
|
|
74
|
-
...VelocityZod.shape,
|
|
75
|
-
acceleration: z2.optional(z2.number())
|
|
76
|
-
});
|
|
77
|
-
var LocationHeadingZod = z2.union([MotionZod, HeadingZod]);
|
|
78
|
-
var LocationHeadingPayloadZod = z2.union([
|
|
79
|
-
z2.extend(PayloadZodOfSchema2(LocationHeadingSchema), { ...MotionZod.shape }),
|
|
80
|
-
z2.extend(PayloadZodOfSchema2(LocationHeadingSchema), { ...HeadingZod.shape })
|
|
81
|
-
]);
|
|
82
|
-
var isLocationHeadingPayload = zodIsFactory2(LocationHeadingPayloadZod);
|
|
83
|
-
var asLocationHeadingPayload = zodAsFactory2(LocationHeadingPayloadZod, "asLocationHeadingPayload");
|
|
84
|
-
var toLocationHeadingPayload = zodToFactory2(LocationHeadingPayloadZod, "toLocationHeadingPayload");
|
|
85
|
-
|
|
86
|
-
// src/Plugin.ts
|
|
87
|
-
import { createPayloadPlugin } from "@xyo-network/sdk";
|
|
88
|
-
var LocationPayloadPlugin = () => createPayloadPlugin({ schema: LocationSchema });
|
|
89
|
-
|
|
90
|
-
// src/Schema.ts
|
|
91
|
-
import { asSchema as asSchema3 } from "@xyo-network/sdk";
|
|
92
|
-
var CurrentLocationSchema = asSchema3("network.xyo.location.current", true);
|
|
93
|
-
export {
|
|
94
|
-
AccelerationZod,
|
|
95
|
-
CurrentLocationSchema,
|
|
96
|
-
GeographicCoordinateSystemLocationPayloadZod,
|
|
97
|
-
GeographicCoordinateSystemLocationSchema,
|
|
98
|
-
GeographicCoordinateSystemLocationZod,
|
|
99
|
-
HeadingZod,
|
|
100
|
-
LocationHeadingPayloadZod,
|
|
101
|
-
LocationHeadingSchema,
|
|
102
|
-
LocationHeadingZod,
|
|
103
|
-
LocationPayloadPlugin,
|
|
104
|
-
LocationPayloadZod,
|
|
105
|
-
LocationSchema,
|
|
106
|
-
LocationZod,
|
|
107
|
-
MotionZod,
|
|
108
|
-
QuadkeyLocationPayloadZod,
|
|
109
|
-
QuadkeyLocationSchema,
|
|
110
|
-
QuadkeyLocationZod,
|
|
111
|
-
SpeedZod,
|
|
112
|
-
VelocityZod,
|
|
113
|
-
asGeographicCoordinateSystemLocationPayload,
|
|
114
|
-
asLocationHeadingPayload,
|
|
115
|
-
asLocationPayload,
|
|
116
|
-
asQuadkeyLocationPayload,
|
|
117
|
-
LocationPayloadPlugin as default,
|
|
118
|
-
isGeographicCoordinateSystemLocationPayload,
|
|
119
|
-
isLocationHeadingPayload,
|
|
120
|
-
isLocationPayload,
|
|
121
|
-
isQuadkeyLocationPayload,
|
|
122
|
-
toGeographicCoordinateSystemLocationPayload,
|
|
123
|
-
toLocationHeadingPayload,
|
|
124
|
-
toLocationPayload,
|
|
125
|
-
toQuadkeyLocationPayload
|
|
126
|
-
};
|
|
1
|
+
// src/index.ts
|
|
2
|
+
export * from "@xyo-network/payload-plugins/location";
|
|
127
3
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["../../src/
|
|
4
|
-
"sourcesContent": ["
|
|
5
|
-
"mappings": ";
|
|
6
|
-
"names": [
|
|
3
|
+
"sources": ["../../src/index.ts"],
|
|
4
|
+
"sourcesContent": ["// Compatibility shim: this package re-exports from @xyo-network/payload-plugins/location.\nexport * from '@xyo-network/payload-plugins/location'\n"],
|
|
5
|
+
"mappings": ";AACA,cAAc;",
|
|
6
|
+
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/location-payload-plugin",
|
|
3
|
-
"version": "7.0
|
|
3
|
+
"version": "7.1.0",
|
|
4
4
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -30,58 +30,30 @@
|
|
|
30
30
|
"dist",
|
|
31
31
|
"README.md"
|
|
32
32
|
],
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"@xyo-network/payload-plugins": "~7.1.0"
|
|
35
|
+
},
|
|
33
36
|
"devDependencies": {
|
|
34
|
-
"@ariestools/sdk": "~8.0.
|
|
35
|
-
"@ariestools/
|
|
36
|
-
"@ariestools/
|
|
37
|
-
"@bitauth/libauth": "~3.0.0",
|
|
38
|
-
"@metamask/providers": "~22.1.1",
|
|
39
|
-
"@noble/post-quantum": "~0.6.1",
|
|
37
|
+
"@ariestools/sdk": "~8.0.8",
|
|
38
|
+
"@ariestools/toolchain": "~8.7.7",
|
|
39
|
+
"@ariestools/tsconfig": "~8.7.7",
|
|
40
40
|
"@opentelemetry/api": "~1.9.1",
|
|
41
|
-
"@
|
|
42
|
-
"@
|
|
43
|
-
"@scure/bip39": "~2.2.0",
|
|
44
|
-
"@xylabs/toolchain": "~8.6.5",
|
|
45
|
-
"@xylabs/tsconfig": "~8.6.5",
|
|
46
|
-
"@xyo-network/sdk": "~7.0.9",
|
|
47
|
-
"@xyo-network/sdk-protocol": "~7.0.14",
|
|
41
|
+
"@xyo-network/sdk": "~7.1.0",
|
|
42
|
+
"@xyo-network/sdk-protocol": "~7.1.0",
|
|
48
43
|
"ajv": "~8.20.0",
|
|
49
|
-
"
|
|
50
|
-
"debug": "~4.4.3",
|
|
51
|
-
"eslint": "~10.6.0",
|
|
44
|
+
"eslint": "~10.7.0",
|
|
52
45
|
"eslint-import-resolver-typescript": "~4.4.5",
|
|
53
46
|
"ethers": "~6.17.0",
|
|
54
|
-
"hash-wasm": "~4.12.0",
|
|
55
|
-
"idb": "~8.0.3",
|
|
56
|
-
"lru-cache": "~11.5.1",
|
|
57
|
-
"observable-fns": "~0.6.1",
|
|
58
47
|
"typescript": "~6.0.3",
|
|
59
|
-
"vite": "~8.1.3",
|
|
60
|
-
"vitest": "~4.1.9",
|
|
61
|
-
"webextension-polyfill": "~0.12.0",
|
|
62
48
|
"zod": "~4.4.3"
|
|
63
49
|
},
|
|
64
50
|
"peerDependencies": {
|
|
65
|
-
"@ariestools/sdk": "^8.0.
|
|
66
|
-
"@ariestools/threads": "^8.0.2",
|
|
67
|
-
"@bitauth/libauth": "^3.0.0",
|
|
68
|
-
"@metamask/providers": "^22.1.1",
|
|
69
|
-
"@noble/post-quantum": "^0.6.1",
|
|
51
|
+
"@ariestools/sdk": "^8.0.8",
|
|
70
52
|
"@opentelemetry/api": "^1.9.1",
|
|
71
|
-
"@
|
|
72
|
-
"@
|
|
73
|
-
"@scure/bip39": "^2.2.0",
|
|
74
|
-
"@xyo-network/sdk": "^7.0.9",
|
|
75
|
-
"@xyo-network/sdk-protocol": "^7.0.14",
|
|
53
|
+
"@xyo-network/sdk": "^7.1.0",
|
|
54
|
+
"@xyo-network/sdk-protocol": "^7.1.0",
|
|
76
55
|
"ajv": "^8.20.0",
|
|
77
|
-
"async-mutex": "^0.5.0",
|
|
78
|
-
"debug": "^4.4.3",
|
|
79
56
|
"ethers": "^6.17.0",
|
|
80
|
-
"hash-wasm": "^4.12.0",
|
|
81
|
-
"idb": "^8.0.3",
|
|
82
|
-
"lru-cache": "^11.5.1",
|
|
83
|
-
"observable-fns": "^0.6.1",
|
|
84
|
-
"webextension-polyfill": "^0.12.0",
|
|
85
57
|
"zod": "^4.4.3"
|
|
86
58
|
},
|
|
87
59
|
"engines": {
|
|
@@ -89,5 +61,6 @@
|
|
|
89
61
|
},
|
|
90
62
|
"publishConfig": {
|
|
91
63
|
"access": "public"
|
|
92
|
-
}
|
|
64
|
+
},
|
|
65
|
+
"deprecated": "Use @xyo-network/payload-plugins/location instead. Replace @xyo-network/location-payload-plugin with @xyo-network/payload-plugins/location. This package is a compatibility shim only and will not receive further updates."
|
|
93
66
|
}
|
|
@@ -1,253 +0,0 @@
|
|
|
1
|
-
import * as z from 'zod/mini';
|
|
2
|
-
export declare const GeographicCoordinateSystemLocationZod: z.ZodMiniObject<{
|
|
3
|
-
accuracy: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
4
|
-
altitude: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
5
|
-
altitudeAccuracy: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
6
|
-
latitude: z.ZodMiniNumber<number>;
|
|
7
|
-
longitude: z.ZodMiniNumber<number>;
|
|
8
|
-
}, z.core.$strip>;
|
|
9
|
-
export type GeographicCoordinateSystemLocation = z.infer<typeof GeographicCoordinateSystemLocationZod>;
|
|
10
|
-
export declare const QuadkeyLocationZod: z.ZodMiniObject<{
|
|
11
|
-
altitude: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
12
|
-
altitudeAccuracy: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
13
|
-
quadkey: z.ZodMiniString<string>;
|
|
14
|
-
}, z.core.$strip>;
|
|
15
|
-
export type QuadkeyLocation = z.infer<typeof QuadkeyLocationZod>;
|
|
16
|
-
export declare const LocationZod: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
17
|
-
accuracy: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
18
|
-
altitude: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
19
|
-
altitudeAccuracy: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
20
|
-
latitude: z.ZodMiniNumber<number>;
|
|
21
|
-
longitude: z.ZodMiniNumber<number>;
|
|
22
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
23
|
-
altitude: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
24
|
-
altitudeAccuracy: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
25
|
-
quadkey: z.ZodMiniString<string>;
|
|
26
|
-
}, z.core.$strip>]>;
|
|
27
|
-
export type Location = z.infer<typeof LocationZod>;
|
|
28
|
-
export declare const GeographicCoordinateSystemLocationPayloadZod: z.ZodMiniObject<{
|
|
29
|
-
schema: z.ZodMiniLiteral<"network.xyo.location.gcs" & {
|
|
30
|
-
readonly __schema: true;
|
|
31
|
-
}>;
|
|
32
|
-
accuracy: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
33
|
-
altitude: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
34
|
-
altitudeAccuracy: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
35
|
-
latitude: z.ZodMiniNumber<number>;
|
|
36
|
-
longitude: z.ZodMiniNumber<number>;
|
|
37
|
-
}, z.core.$strip>;
|
|
38
|
-
export type GeographicCoordinateSystemLocationPayload = z.infer<typeof GeographicCoordinateSystemLocationPayloadZod>;
|
|
39
|
-
export declare const isGeographicCoordinateSystemLocationPayload: <T>(value: T) => value is T & {
|
|
40
|
-
schema: "network.xyo.location.gcs" & {
|
|
41
|
-
readonly __schema: true;
|
|
42
|
-
};
|
|
43
|
-
latitude: number;
|
|
44
|
-
longitude: number;
|
|
45
|
-
accuracy?: number | undefined;
|
|
46
|
-
altitude?: number | undefined;
|
|
47
|
-
altitudeAccuracy?: number | undefined;
|
|
48
|
-
};
|
|
49
|
-
export declare const asGeographicCoordinateSystemLocationPayload: {
|
|
50
|
-
<T>(value: T): (T & {
|
|
51
|
-
schema: "network.xyo.location.gcs" & {
|
|
52
|
-
readonly __schema: true;
|
|
53
|
-
};
|
|
54
|
-
latitude: number;
|
|
55
|
-
longitude: number;
|
|
56
|
-
accuracy?: number | undefined;
|
|
57
|
-
altitude?: number | undefined;
|
|
58
|
-
altitudeAccuracy?: number | undefined;
|
|
59
|
-
}) | undefined;
|
|
60
|
-
<T>(value: T, assert: import("@ariestools/sdk").ZodFactoryConfig): T & {
|
|
61
|
-
schema: "network.xyo.location.gcs" & {
|
|
62
|
-
readonly __schema: true;
|
|
63
|
-
};
|
|
64
|
-
latitude: number;
|
|
65
|
-
longitude: number;
|
|
66
|
-
accuracy?: number | undefined;
|
|
67
|
-
altitude?: number | undefined;
|
|
68
|
-
altitudeAccuracy?: number | undefined;
|
|
69
|
-
};
|
|
70
|
-
};
|
|
71
|
-
export declare const toGeographicCoordinateSystemLocationPayload: {
|
|
72
|
-
<T>(value: T): (T & {
|
|
73
|
-
schema: "network.xyo.location.gcs" & {
|
|
74
|
-
readonly __schema: true;
|
|
75
|
-
};
|
|
76
|
-
latitude: number;
|
|
77
|
-
longitude: number;
|
|
78
|
-
accuracy?: number | undefined;
|
|
79
|
-
altitude?: number | undefined;
|
|
80
|
-
altitudeAccuracy?: number | undefined;
|
|
81
|
-
}) | undefined;
|
|
82
|
-
<T>(value: T, assert: import("@ariestools/sdk").ZodFactoryConfig): T & {
|
|
83
|
-
schema: "network.xyo.location.gcs" & {
|
|
84
|
-
readonly __schema: true;
|
|
85
|
-
};
|
|
86
|
-
latitude: number;
|
|
87
|
-
longitude: number;
|
|
88
|
-
accuracy?: number | undefined;
|
|
89
|
-
altitude?: number | undefined;
|
|
90
|
-
altitudeAccuracy?: number | undefined;
|
|
91
|
-
};
|
|
92
|
-
};
|
|
93
|
-
export declare const QuadkeyLocationPayloadZod: z.ZodMiniObject<{
|
|
94
|
-
schema: z.ZodMiniLiteral<"network.xyo.location.quadkey" & {
|
|
95
|
-
readonly __schema: true;
|
|
96
|
-
}>;
|
|
97
|
-
altitude: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
98
|
-
altitudeAccuracy: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
99
|
-
quadkey: z.ZodMiniString<string>;
|
|
100
|
-
}, z.core.$strip>;
|
|
101
|
-
export type QuadkeyLocationPayload = z.infer<typeof QuadkeyLocationPayloadZod>;
|
|
102
|
-
export declare const isQuadkeyLocationPayload: <T>(value: T) => value is T & {
|
|
103
|
-
schema: "network.xyo.location.quadkey" & {
|
|
104
|
-
readonly __schema: true;
|
|
105
|
-
};
|
|
106
|
-
quadkey: string;
|
|
107
|
-
altitude?: number | undefined;
|
|
108
|
-
altitudeAccuracy?: number | undefined;
|
|
109
|
-
};
|
|
110
|
-
export declare const asQuadkeyLocationPayload: {
|
|
111
|
-
<T>(value: T): (T & {
|
|
112
|
-
schema: "network.xyo.location.quadkey" & {
|
|
113
|
-
readonly __schema: true;
|
|
114
|
-
};
|
|
115
|
-
quadkey: string;
|
|
116
|
-
altitude?: number | undefined;
|
|
117
|
-
altitudeAccuracy?: number | undefined;
|
|
118
|
-
}) | undefined;
|
|
119
|
-
<T>(value: T, assert: import("@ariestools/sdk").ZodFactoryConfig): T & {
|
|
120
|
-
schema: "network.xyo.location.quadkey" & {
|
|
121
|
-
readonly __schema: true;
|
|
122
|
-
};
|
|
123
|
-
quadkey: string;
|
|
124
|
-
altitude?: number | undefined;
|
|
125
|
-
altitudeAccuracy?: number | undefined;
|
|
126
|
-
};
|
|
127
|
-
};
|
|
128
|
-
export declare const toQuadkeyLocationPayload: {
|
|
129
|
-
<T>(value: T): (T & {
|
|
130
|
-
schema: "network.xyo.location.quadkey" & {
|
|
131
|
-
readonly __schema: true;
|
|
132
|
-
};
|
|
133
|
-
quadkey: string;
|
|
134
|
-
altitude?: number | undefined;
|
|
135
|
-
altitudeAccuracy?: number | undefined;
|
|
136
|
-
}) | undefined;
|
|
137
|
-
<T>(value: T, assert: import("@ariestools/sdk").ZodFactoryConfig): T & {
|
|
138
|
-
schema: "network.xyo.location.quadkey" & {
|
|
139
|
-
readonly __schema: true;
|
|
140
|
-
};
|
|
141
|
-
quadkey: string;
|
|
142
|
-
altitude?: number | undefined;
|
|
143
|
-
altitudeAccuracy?: number | undefined;
|
|
144
|
-
};
|
|
145
|
-
};
|
|
146
|
-
export declare const LocationPayloadZod: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
147
|
-
schema: z.ZodMiniLiteral<"network.xyo.location" & {
|
|
148
|
-
readonly __schema: true;
|
|
149
|
-
}>;
|
|
150
|
-
accuracy: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
151
|
-
altitude: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
152
|
-
altitudeAccuracy: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
153
|
-
latitude: z.ZodMiniNumber<number>;
|
|
154
|
-
longitude: z.ZodMiniNumber<number>;
|
|
155
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
156
|
-
schema: z.ZodMiniLiteral<"network.xyo.location" & {
|
|
157
|
-
readonly __schema: true;
|
|
158
|
-
}>;
|
|
159
|
-
altitude: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
160
|
-
altitudeAccuracy: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
161
|
-
quadkey: z.ZodMiniString<string>;
|
|
162
|
-
}, z.core.$strip>]>;
|
|
163
|
-
export type LocationPayload = z.infer<typeof LocationPayloadZod>;
|
|
164
|
-
export declare const isLocationPayload: <T>(value: T) => value is T & ({
|
|
165
|
-
schema: "network.xyo.location" & {
|
|
166
|
-
readonly __schema: true;
|
|
167
|
-
};
|
|
168
|
-
latitude: number;
|
|
169
|
-
longitude: number;
|
|
170
|
-
accuracy?: number | undefined;
|
|
171
|
-
altitude?: number | undefined;
|
|
172
|
-
altitudeAccuracy?: number | undefined;
|
|
173
|
-
} | {
|
|
174
|
-
schema: "network.xyo.location" & {
|
|
175
|
-
readonly __schema: true;
|
|
176
|
-
};
|
|
177
|
-
quadkey: string;
|
|
178
|
-
altitude?: number | undefined;
|
|
179
|
-
altitudeAccuracy?: number | undefined;
|
|
180
|
-
});
|
|
181
|
-
export declare const asLocationPayload: {
|
|
182
|
-
<T>(value: T): (T & ({
|
|
183
|
-
schema: "network.xyo.location" & {
|
|
184
|
-
readonly __schema: true;
|
|
185
|
-
};
|
|
186
|
-
latitude: number;
|
|
187
|
-
longitude: number;
|
|
188
|
-
accuracy?: number | undefined;
|
|
189
|
-
altitude?: number | undefined;
|
|
190
|
-
altitudeAccuracy?: number | undefined;
|
|
191
|
-
} | {
|
|
192
|
-
schema: "network.xyo.location" & {
|
|
193
|
-
readonly __schema: true;
|
|
194
|
-
};
|
|
195
|
-
quadkey: string;
|
|
196
|
-
altitude?: number | undefined;
|
|
197
|
-
altitudeAccuracy?: number | undefined;
|
|
198
|
-
})) | undefined;
|
|
199
|
-
<T>(value: T, assert: import("@ariestools/sdk").ZodFactoryConfig): T & ({
|
|
200
|
-
schema: "network.xyo.location" & {
|
|
201
|
-
readonly __schema: true;
|
|
202
|
-
};
|
|
203
|
-
latitude: number;
|
|
204
|
-
longitude: number;
|
|
205
|
-
accuracy?: number | undefined;
|
|
206
|
-
altitude?: number | undefined;
|
|
207
|
-
altitudeAccuracy?: number | undefined;
|
|
208
|
-
} | {
|
|
209
|
-
schema: "network.xyo.location" & {
|
|
210
|
-
readonly __schema: true;
|
|
211
|
-
};
|
|
212
|
-
quadkey: string;
|
|
213
|
-
altitude?: number | undefined;
|
|
214
|
-
altitudeAccuracy?: number | undefined;
|
|
215
|
-
});
|
|
216
|
-
};
|
|
217
|
-
export declare const toLocationPayload: {
|
|
218
|
-
<T>(value: T): (T & ({
|
|
219
|
-
schema: "network.xyo.location" & {
|
|
220
|
-
readonly __schema: true;
|
|
221
|
-
};
|
|
222
|
-
latitude: number;
|
|
223
|
-
longitude: number;
|
|
224
|
-
accuracy?: number | undefined;
|
|
225
|
-
altitude?: number | undefined;
|
|
226
|
-
altitudeAccuracy?: number | undefined;
|
|
227
|
-
} | {
|
|
228
|
-
schema: "network.xyo.location" & {
|
|
229
|
-
readonly __schema: true;
|
|
230
|
-
};
|
|
231
|
-
quadkey: string;
|
|
232
|
-
altitude?: number | undefined;
|
|
233
|
-
altitudeAccuracy?: number | undefined;
|
|
234
|
-
})) | undefined;
|
|
235
|
-
<T>(value: T, assert: import("@ariestools/sdk").ZodFactoryConfig): T & ({
|
|
236
|
-
schema: "network.xyo.location" & {
|
|
237
|
-
readonly __schema: true;
|
|
238
|
-
};
|
|
239
|
-
latitude: number;
|
|
240
|
-
longitude: number;
|
|
241
|
-
accuracy?: number | undefined;
|
|
242
|
-
altitude?: number | undefined;
|
|
243
|
-
altitudeAccuracy?: number | undefined;
|
|
244
|
-
} | {
|
|
245
|
-
schema: "network.xyo.location" & {
|
|
246
|
-
readonly __schema: true;
|
|
247
|
-
};
|
|
248
|
-
quadkey: string;
|
|
249
|
-
altitude?: number | undefined;
|
|
250
|
-
altitudeAccuracy?: number | undefined;
|
|
251
|
-
});
|
|
252
|
-
};
|
|
253
|
-
//# sourceMappingURL=GeographicCoordinateSystemLocationPayload.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GeographicCoordinateSystemLocationPayload.d.ts","sourceRoot":"","sources":["../../src/GeographicCoordinateSystemLocationPayload.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAO7B,eAAO,MAAM,qCAAqC;;;;;;iBAMhD,CAAA;AAEF,MAAM,MAAM,kCAAkC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qCAAqC,CAAC,CAAA;AAEtG,eAAO,MAAM,kBAAkB;;;;iBAI7B,CAAA;AAEF,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAEhE,eAAO,MAAM,WAAW;;;;;;;;;;mBAAuE,CAAA;AAE/F,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAA;AAElD,eAAO,MAAM,4CAA4C;;;;;;;;;iBAA6H,CAAA;AAEtL,MAAM,MAAM,yCAAyC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4CAA4C,CAAC,CAAA;AAEpH,eAAO,MAAM,2CAA2C;;;;;;;;;CAA6D,CAAA;AACrH,eAAO,MAAM,2CAA2C;;;;;;;;;;;;;;;;;;;;;CAGvD,CAAA;AACD,eAAO,MAAM,2CAA2C;;;;;;;;;;;;;;;;;;;;;CAGvD,CAAA;AAED,eAAO,MAAM,yBAAyB;;;;;;;iBAAuF,CAAA;AAE7H,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAA;AAE9E,eAAO,MAAM,wBAAwB;;;;;;;CAA0C,CAAA;AAC/E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;CAAsE,CAAA;AAC3G,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;CAAsE,CAAA;AAE3G,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;mBAG7B,CAAA;AAEF,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAEhE,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;EAAmC,CAAA;AACjE,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAwD,CAAA;AACtF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAwD,CAAA"}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export type GeographicCoordinateSystemLocationSchema = typeof GeographicCoordinateSystemLocationSchema;
|
|
2
|
-
export declare const GeographicCoordinateSystemLocationSchema: "network.xyo.location.gcs" & {
|
|
3
|
-
readonly __schema: true;
|
|
4
|
-
};
|
|
5
|
-
export type QuadkeyLocationSchema = typeof QuadkeyLocationSchema;
|
|
6
|
-
export declare const QuadkeyLocationSchema: "network.xyo.location.quadkey" & {
|
|
7
|
-
readonly __schema: true;
|
|
8
|
-
};
|
|
9
|
-
export type LocationSchema = typeof LocationSchema;
|
|
10
|
-
export declare const LocationSchema: "network.xyo.location" & {
|
|
11
|
-
readonly __schema: true;
|
|
12
|
-
};
|
|
13
|
-
//# sourceMappingURL=GeographicCoordinateSystemLocationSchema.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GeographicCoordinateSystemLocationSchema.d.ts","sourceRoot":"","sources":["../../src/GeographicCoordinateSystemLocationSchema.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,wCAAwC,GAAG,OAAO,wCAAwC,CAAA;AACtG,eAAO,MAAM,wCAAwC;;CAA6C,CAAA;AAElG,MAAM,MAAM,qBAAqB,GAAG,OAAO,qBAAqB,CAAA;AAChE,eAAO,MAAM,qBAAqB;;CAAiD,CAAA;AAEnF,MAAM,MAAM,cAAc,GAAG,OAAO,cAAc,CAAA;AAClD,eAAO,MAAM,cAAc;;CAAyC,CAAA"}
|
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
import * as z from 'zod/mini';
|
|
2
|
-
export declare const AccelerationZod: z.ZodMiniObject<{
|
|
3
|
-
acceleration: z.ZodMiniNumber<number>;
|
|
4
|
-
}, z.core.$strip>;
|
|
5
|
-
export type Acceleration = z.infer<typeof AccelerationZod>;
|
|
6
|
-
export declare const HeadingZod: z.ZodMiniObject<{
|
|
7
|
-
heading: z.ZodMiniNumber<number>;
|
|
8
|
-
}, z.core.$strip>;
|
|
9
|
-
export type Heading = z.infer<typeof HeadingZod>;
|
|
10
|
-
export declare const SpeedZod: z.ZodMiniObject<{
|
|
11
|
-
speed: z.ZodMiniNumber<number>;
|
|
12
|
-
}, z.core.$strip>;
|
|
13
|
-
export type Speed = z.infer<typeof SpeedZod>;
|
|
14
|
-
export declare const VelocityZod: z.ZodMiniObject<{
|
|
15
|
-
speed: z.ZodMiniNumber<number>;
|
|
16
|
-
heading: z.ZodMiniNumber<number>;
|
|
17
|
-
}, z.core.$strip>;
|
|
18
|
-
export type Velocity = z.infer<typeof VelocityZod>;
|
|
19
|
-
export declare const MotionZod: z.ZodMiniObject<{
|
|
20
|
-
acceleration: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
21
|
-
speed: z.ZodMiniNumber<number>;
|
|
22
|
-
heading: z.ZodMiniNumber<number>;
|
|
23
|
-
}, z.core.$strip>;
|
|
24
|
-
export type Motion = z.infer<typeof MotionZod>;
|
|
25
|
-
export declare const LocationHeadingZod: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
26
|
-
acceleration: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
27
|
-
speed: z.ZodMiniNumber<number>;
|
|
28
|
-
heading: z.ZodMiniNumber<number>;
|
|
29
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
30
|
-
heading: z.ZodMiniNumber<number>;
|
|
31
|
-
}, z.core.$strip>]>;
|
|
32
|
-
export type LocationHeading = z.infer<typeof LocationHeadingZod>;
|
|
33
|
-
export declare const LocationHeadingPayloadZod: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
34
|
-
schema: z.ZodMiniLiteral<"network.xyo.location.heading" & {
|
|
35
|
-
readonly __schema: true;
|
|
36
|
-
}>;
|
|
37
|
-
acceleration: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
38
|
-
speed: z.ZodMiniNumber<number>;
|
|
39
|
-
heading: z.ZodMiniNumber<number>;
|
|
40
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
41
|
-
schema: z.ZodMiniLiteral<"network.xyo.location.heading" & {
|
|
42
|
-
readonly __schema: true;
|
|
43
|
-
}>;
|
|
44
|
-
heading: z.ZodMiniNumber<number>;
|
|
45
|
-
}, z.core.$strip>]>;
|
|
46
|
-
export type LocationHeadingPayload = z.infer<typeof LocationHeadingPayloadZod>;
|
|
47
|
-
export declare const isLocationHeadingPayload: <T>(value: T) => value is T & ({
|
|
48
|
-
schema: "network.xyo.location.heading" & {
|
|
49
|
-
readonly __schema: true;
|
|
50
|
-
};
|
|
51
|
-
speed: number;
|
|
52
|
-
heading: number;
|
|
53
|
-
acceleration?: number | undefined;
|
|
54
|
-
} | {
|
|
55
|
-
schema: "network.xyo.location.heading" & {
|
|
56
|
-
readonly __schema: true;
|
|
57
|
-
};
|
|
58
|
-
heading: number;
|
|
59
|
-
});
|
|
60
|
-
export declare const asLocationHeadingPayload: {
|
|
61
|
-
<T>(value: T): (T & ({
|
|
62
|
-
schema: "network.xyo.location.heading" & {
|
|
63
|
-
readonly __schema: true;
|
|
64
|
-
};
|
|
65
|
-
speed: number;
|
|
66
|
-
heading: number;
|
|
67
|
-
acceleration?: number | undefined;
|
|
68
|
-
} | {
|
|
69
|
-
schema: "network.xyo.location.heading" & {
|
|
70
|
-
readonly __schema: true;
|
|
71
|
-
};
|
|
72
|
-
heading: number;
|
|
73
|
-
})) | undefined;
|
|
74
|
-
<T>(value: T, assert: import("@ariestools/sdk").ZodFactoryConfig): T & ({
|
|
75
|
-
schema: "network.xyo.location.heading" & {
|
|
76
|
-
readonly __schema: true;
|
|
77
|
-
};
|
|
78
|
-
speed: number;
|
|
79
|
-
heading: number;
|
|
80
|
-
acceleration?: number | undefined;
|
|
81
|
-
} | {
|
|
82
|
-
schema: "network.xyo.location.heading" & {
|
|
83
|
-
readonly __schema: true;
|
|
84
|
-
};
|
|
85
|
-
heading: number;
|
|
86
|
-
});
|
|
87
|
-
};
|
|
88
|
-
export declare const toLocationHeadingPayload: {
|
|
89
|
-
<T>(value: T): (T & ({
|
|
90
|
-
schema: "network.xyo.location.heading" & {
|
|
91
|
-
readonly __schema: true;
|
|
92
|
-
};
|
|
93
|
-
speed: number;
|
|
94
|
-
heading: number;
|
|
95
|
-
acceleration?: number | undefined;
|
|
96
|
-
} | {
|
|
97
|
-
schema: "network.xyo.location.heading" & {
|
|
98
|
-
readonly __schema: true;
|
|
99
|
-
};
|
|
100
|
-
heading: number;
|
|
101
|
-
})) | undefined;
|
|
102
|
-
<T>(value: T, assert: import("@ariestools/sdk").ZodFactoryConfig): T & ({
|
|
103
|
-
schema: "network.xyo.location.heading" & {
|
|
104
|
-
readonly __schema: true;
|
|
105
|
-
};
|
|
106
|
-
speed: number;
|
|
107
|
-
heading: number;
|
|
108
|
-
acceleration?: number | undefined;
|
|
109
|
-
} | {
|
|
110
|
-
schema: "network.xyo.location.heading" & {
|
|
111
|
-
readonly __schema: true;
|
|
112
|
-
};
|
|
113
|
-
heading: number;
|
|
114
|
-
});
|
|
115
|
-
};
|
|
116
|
-
//# sourceMappingURL=HeadingPayload.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"HeadingPayload.d.ts","sourceRoot":"","sources":["../../src/HeadingPayload.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAI7B,eAAO,MAAM,eAAe;;iBAAyC,CAAA;AAErE,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAA;AAE1D,eAAO,MAAM,UAAU;;iBAAoC,CAAA;AAE3D,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAA;AAEhD,eAAO,MAAM,QAAQ;;iBAAkC,CAAA;AAEvD,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,QAAQ,CAAC,CAAA;AAE5C,eAAO,MAAM,WAAW;;;iBAGtB,CAAA;AAEF,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAA;AAElD,eAAO,MAAM,SAAS;;;;iBAGpB,CAAA;AAEF,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAA;AAE9C,eAAO,MAAM,kBAAkB;;;;;;mBAAmC,CAAA;AAElE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAEhE,eAAO,MAAM,yBAAyB;;;;;;;;;;;;mBAGpC,CAAA;AAEF,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAA;AAE9E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;EAA0C,CAAA;AAC/E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAsE,CAAA;AAC3G,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAsE,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"HeadingSchema.d.ts","sourceRoot":"","sources":["../../src/HeadingSchema.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,qBAAqB,GAAG,OAAO,qBAAqB,CAAA;AAChE,eAAO,MAAM,qBAAqB;;CAAiD,CAAA"}
|
package/dist/neutral/Plugin.d.ts
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
export declare const LocationPayloadPlugin: () => import("@xyo-network/sdk").PayloadPlugin<{
|
|
2
|
-
schema: "network.xyo.location" & {
|
|
3
|
-
readonly __schema: true;
|
|
4
|
-
};
|
|
5
|
-
latitude: number;
|
|
6
|
-
longitude: number;
|
|
7
|
-
accuracy?: number | undefined;
|
|
8
|
-
altitude?: number | undefined;
|
|
9
|
-
altitudeAccuracy?: number | undefined;
|
|
10
|
-
} | {
|
|
11
|
-
schema: "network.xyo.location" & {
|
|
12
|
-
readonly __schema: true;
|
|
13
|
-
};
|
|
14
|
-
quadkey: string;
|
|
15
|
-
altitude?: number | undefined;
|
|
16
|
-
altitudeAccuracy?: number | undefined;
|
|
17
|
-
}>;
|
|
18
|
-
//# sourceMappingURL=Plugin.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;EACgC,CAAA"}
|
package/dist/neutral/Schema.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../../src/Schema.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,qBAAqB,GAAG,OAAO,qBAAqB,CAAA;AAChE,eAAO,MAAM,qBAAqB;;CAAiD,CAAA"}
|