@foxglove/schemas 1.7.1 → 1.7.3
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/internal/exportTypeScriptSchemas.d.ts.map +1 -1
- package/dist/internal/exportTypeScriptSchemas.js +10 -6
- package/dist/internal/exportTypeScriptSchemas.js.map +1 -1
- package/dist/internal/generateFlatbufferSchema.d.ts +6 -2
- package/dist/internal/generateFlatbufferSchema.d.ts.map +1 -1
- package/dist/internal/generateFlatbufferSchema.js +26 -15
- package/dist/internal/generateFlatbufferSchema.js.map +1 -1
- package/dist/internal/generateJsonSchema.d.ts.map +1 -1
- package/dist/internal/generateJsonSchema.js +36 -24
- package/dist/internal/generateJsonSchema.js.map +1 -1
- package/dist/internal/generateOmgIdl.d.ts +2 -3
- package/dist/internal/generateOmgIdl.d.ts.map +1 -1
- package/dist/internal/generateOmgIdl.js +16 -35
- package/dist/internal/generateOmgIdl.js.map +1 -1
- package/dist/internal/generateOmgIdl.test.js +4 -6
- package/dist/internal/generateOmgIdl.test.js.map +1 -1
- package/dist/internal/generateProto.d.ts.map +1 -1
- package/dist/internal/generateProto.js +23 -13
- package/dist/internal/generateProto.js.map +1 -1
- package/dist/internal/generatePyclass.d.ts +1 -1
- package/dist/internal/generatePyclass.d.ts.map +1 -1
- package/dist/internal/generatePyclass.js +174 -62
- package/dist/internal/generatePyclass.js.map +1 -1
- package/dist/internal/generatePyclass.test.js +152 -140
- package/dist/internal/generatePyclass.test.js.map +1 -1
- package/dist/internal/generateRos.d.ts.map +1 -1
- package/dist/internal/generateRos.js +20 -9
- package/dist/internal/generateRos.js.map +1 -1
- package/dist/internal/generateSdkCpp.d.ts +4 -0
- package/dist/internal/generateSdkCpp.d.ts.map +1 -0
- package/dist/internal/generateSdkCpp.js +362 -0
- package/dist/internal/generateSdkCpp.js.map +1 -0
- package/dist/internal/generateSdkRustCTypes.d.ts +8 -0
- package/dist/internal/generateSdkRustCTypes.d.ts.map +1 -0
- package/dist/internal/generateSdkRustCTypes.js +315 -0
- package/dist/internal/generateSdkRustCTypes.js.map +1 -0
- package/dist/internal/generateTypeScript.d.ts +0 -1
- package/dist/internal/generateTypeScript.d.ts.map +1 -1
- package/dist/internal/generateTypeScript.js +10 -18
- package/dist/internal/generateTypeScript.js.map +1 -1
- package/dist/internal/schemas.d.ts +2 -0
- package/dist/internal/schemas.d.ts.map +1 -1
- package/dist/internal/schemas.js +149 -46
- package/dist/internal/schemas.js.map +1 -1
- package/dist/internal/testFixtures.d.ts.map +1 -1
- package/dist/internal/testFixtures.js +37 -9
- package/dist/internal/testFixtures.js.map +1 -1
- package/dist/internal/types.d.ts +3 -1
- package/dist/internal/types.d.ts.map +1 -1
- package/dist/jsonschema/index.d.ts +62 -12
- package/dist/jsonschema/index.d.ts.map +1 -1
- package/dist/jsonschema/index.js +122 -47
- package/dist/jsonschema/index.js.map +1 -1
- package/dist/types/CameraCalibration.d.ts +1 -1
- package/dist/types/Duration.d.ts +3 -0
- package/dist/types/Duration.d.ts.map +1 -1
- package/dist/types/Duration.js +2 -0
- package/dist/types/Duration.js.map +1 -1
- package/dist/types/Grid.d.ts +1 -1
- package/dist/types/Grid.d.ts.map +1 -1
- package/dist/types/LogLevel.d.ts +6 -0
- package/dist/types/LogLevel.d.ts.map +1 -1
- package/dist/types/LogLevel.js +6 -0
- package/dist/types/LogLevel.js.map +1 -1
- package/dist/types/NumericType.d.ts +9 -0
- package/dist/types/NumericType.d.ts.map +1 -1
- package/dist/types/NumericType.js +9 -0
- package/dist/types/NumericType.js.map +1 -1
- package/dist/types/PointsAnnotationType.d.ts +1 -0
- package/dist/types/PointsAnnotationType.d.ts.map +1 -1
- package/dist/types/PointsAnnotationType.js +1 -0
- package/dist/types/PointsAnnotationType.js.map +1 -1
- package/dist/types/PositionCovarianceType.d.ts +4 -0
- package/dist/types/PositionCovarianceType.d.ts.map +1 -1
- package/dist/types/PositionCovarianceType.js +4 -0
- package/dist/types/PositionCovarianceType.js.map +1 -1
- package/dist/types/RawImage.d.ts +58 -8
- package/dist/types/RawImage.d.ts.map +1 -1
- package/dist/types/index.d.ts +2 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +2 -0
- package/dist/types/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,15 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.exampleMessageWithoutArrayOfBytes = exports.exampleMessage = exports.exampleEnum = void 0;
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
"boolean",
|
|
8
|
-
"bytes",
|
|
9
|
-
"float64",
|
|
10
|
-
"uint32",
|
|
11
|
-
"string",
|
|
12
|
-
];
|
|
4
|
+
const schemas_1 = require("./schemas");
|
|
5
|
+
const { Duration, Timestamp } = schemas_1.foxgloveMessageSchemas;
|
|
6
|
+
const allPrimitives = ["boolean", "bytes", "float64", "uint32", "string"];
|
|
13
7
|
exports.exampleEnum = {
|
|
14
8
|
type: "enum",
|
|
15
9
|
name: "ExampleEnum",
|
|
@@ -38,6 +32,16 @@ exports.exampleMessage = {
|
|
|
38
32
|
name: "ExampleMessage",
|
|
39
33
|
description: "An example type",
|
|
40
34
|
fields: [
|
|
35
|
+
{
|
|
36
|
+
name: "field_duration",
|
|
37
|
+
description: "duration field",
|
|
38
|
+
type: { type: "nested", schema: Duration },
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
name: "field_time",
|
|
42
|
+
description: "time field",
|
|
43
|
+
type: { type: "nested", schema: Timestamp },
|
|
44
|
+
},
|
|
41
45
|
...allPrimitives.map((name) => ({
|
|
42
46
|
name: `field_${name}`,
|
|
43
47
|
description: `${name} field`,
|
|
@@ -53,12 +57,36 @@ exports.exampleMessage = {
|
|
|
53
57
|
: // time and duration and bytes
|
|
54
58
|
undefined,
|
|
55
59
|
})),
|
|
60
|
+
{
|
|
61
|
+
name: "field_duration_array",
|
|
62
|
+
description: "duration array field",
|
|
63
|
+
type: { type: "nested", schema: Duration },
|
|
64
|
+
array: true,
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
name: "field_time_array",
|
|
68
|
+
description: "time array field",
|
|
69
|
+
type: { type: "nested", schema: Timestamp },
|
|
70
|
+
array: true,
|
|
71
|
+
},
|
|
56
72
|
...allPrimitives.map((name) => ({
|
|
57
73
|
name: `field_${name}_array`,
|
|
58
74
|
description: `${name} array field`,
|
|
59
75
|
type: { type: "primitive", name },
|
|
60
76
|
array: true,
|
|
61
77
|
})),
|
|
78
|
+
{
|
|
79
|
+
name: "field_duration_fixed_array",
|
|
80
|
+
description: "duration fixed-length array field",
|
|
81
|
+
type: { type: "nested", schema: Duration },
|
|
82
|
+
array: 3,
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
name: "field_time_fixed_array",
|
|
86
|
+
description: "time fixed-length array field",
|
|
87
|
+
type: { type: "nested", schema: Timestamp },
|
|
88
|
+
array: 3,
|
|
89
|
+
},
|
|
62
90
|
...allPrimitives.map((name) => ({
|
|
63
91
|
name: `field_${name}_fixed_array`,
|
|
64
92
|
description: `${name} fixed-length array field`,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"testFixtures.js","sourceRoot":"","sources":["../../src/internal/testFixtures.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"testFixtures.js","sourceRoot":"","sources":["../../src/internal/testFixtures.ts"],"names":[],"mappings":";;;AAAA,uCAAmD;AAGnD,MAAM,EAAE,QAAQ,EAAE,SAAS,EAAE,GAAG,gCAAsB,CAAC;AAEvD,MAAM,aAAa,GAAwB,CAAC,SAAS,EAAE,OAAO,EAAE,SAAS,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;AAElF,QAAA,WAAW,GAAuB;IAC7C,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,aAAa;IACnB,gBAAgB,EAAE,kBAAkB;IACpC,gBAAgB,EAAE,gBAAgB;IAClC,WAAW,EAAE,iBAAiB;IAC9B,MAAM,EAAE;QACN,EAAE,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,CAAC,EAAE,WAAW,EAAE,SAAS,EAAE;QAC/C,EAAE,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,CAAC,EAAE,WAAW,EAAE,SAAS,EAAE;KAChD;CACF,CAAC;AAEF,MAAM,oBAAoB,GAA0B;IAClD,IAAI,EAAE,SAAS;IACf,IAAI,EAAE,eAAe;IACrB,WAAW,EAAE,2BAA2B;IACxC,MAAM,EAAE;QACN;YACE,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,QAAQ,EAAE;SAC5C;KACF;CACF,CAAC;AAEW,QAAA,cAAc,GAA0B;IACnD,IAAI,EAAE,SAAS;IACf,IAAI,EAAE,gBAAgB;IACtB,WAAW,EAAE,iBAAiB;IAC9B,MAAM,EAAE;QACN;YACE,IAAI,EAAE,gBAAgB;YACtB,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE;SAC3C;QACD;YACE,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,YAAY;YACzB,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,SAAS,EAAE;SAC5C;QACD,GAAG,aAAa,CAAC,GAAG,CAAC,CAAC,IAAI,EAAsC,EAAE,CAAC,CAAC;YAClE,IAAI,EAAE,SAAS,IAAI,EAAE;YACrB,WAAW,EAAE,GAAG,IAAI,QAAQ;YAC5B,IAAI,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE;YACjC,YAAY,EACV,IAAI,KAAK,SAAS;gBAChB,CAAC,CAAC,IAAI;gBACN,CAAC,CAAC,IAAI,KAAK,QAAQ;oBACjB,CAAC,CAAC,aAAa;oBACf,CAAC,CAAC,IAAI,KAAK,QAAQ;wBACjB,CAAC,CAAC,CAAC;wBACH,CAAC,CAAC,IAAI,KAAK,SAAS;4BAClB,CAAC,CAAC,GAAG;4BACL,CAAC,CAAC,8BAA8B;gCAC9B,SAAS;SACtB,CAAC,CAAC;QACH;YACE,IAAI,EAAE,sBAAsB;YAC5B,WAAW,EAAE,sBAAsB;YACnC,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE;YAC1C,KAAK,EAAE,IAAI;SACZ;QACD;YACE,IAAI,EAAE,kBAAkB;YACxB,WAAW,EAAE,kBAAkB;YAC/B,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,SAAS,EAAE;YAC3C,KAAK,EAAE,IAAI;SACZ;QACD,GAAG,aAAa,CAAC,GAAG,CAAC,CAAC,IAAI,EAAsC,EAAE,CAAC,CAAC;YAClE,IAAI,EAAE,SAAS,IAAI,QAAQ;YAC3B,WAAW,EAAE,GAAG,IAAI,cAAc;YAClC,IAAI,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE;YACjC,KAAK,EAAE,IAAI;SACZ,CAAC,CAAC;QACH;YACE,IAAI,EAAE,4BAA4B;YAClC,WAAW,EAAE,mCAAmC;YAChD,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE;YAC1C,KAAK,EAAE,CAAC;SACT;QACD;YACE,IAAI,EAAE,wBAAwB;YAC9B,WAAW,EAAE,+BAA+B;YAC5C,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,SAAS,EAAE;YAC3C,KAAK,EAAE,CAAC;SACT;QACD,GAAG,aAAa,CAAC,GAAG,CAAC,CAAC,IAAI,EAAsC,EAAE,CAAC,CAAC;YAClE,IAAI,EAAE,SAAS,IAAI,cAAc;YACjC,WAAW,EAAE,GAAG,IAAI,2BAA2B;YAC/C,IAAI,EAAE,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE;YACjC,KAAK,EAAE,CAAC;SACT,CAAC,CAAC;QACH;YACE,IAAI,EAAE,YAAY;YAClB,WAAW,EAAE,eAAe;YAC5B,IAAI,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,mBAAW,EAAE;SAC1C;QACD;YACE,IAAI,EAAE,kBAAkB;YACxB,WAAW,EAAE,qBAAqB;YAClC,IAAI,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,mBAAW,EAAE;YACzC,KAAK,EAAE,IAAI;SACZ;QACD;YACE,IAAI,EAAE,cAAc;YACpB,WAAW,EAAE,gBAAgB;YAC7B,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,oBAAoB,EAAE;SACvD;QACD;YACE,IAAI,EAAE,oBAAoB;YAC1B,WAAW,EAAE,wDAAwD;YACrE,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,oBAAoB,EAAE;YACtD,KAAK,EAAE,IAAI;YACX,mBAAmB,EAAE,CAAC;SACvB;KACF;CACF,CAAC;AAEW,QAAA,iCAAiC,GAA0B;IACtE,GAAG,sBAAc;IACjB,MAAM,EAAE,sBAAc,CAAC,MAAM,CAAC,MAAM,CAClC,CAAC,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,IAAI,KAAK,mBAAmB,IAAI,IAAI,KAAK,yBAAyB,CACjF;CACF,CAAC"}
|
package/dist/internal/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type FoxglovePrimitive = "string" | "float64" | "
|
|
1
|
+
export type FoxglovePrimitive = "string" | "float64" | "int32" | "uint32" | "boolean" | "bytes";
|
|
2
2
|
export type FoxgloveEnumSchema = {
|
|
3
3
|
type: "enum";
|
|
4
4
|
name: string;
|
|
@@ -34,6 +34,8 @@ export type FoxgloveMessageSchema = {
|
|
|
34
34
|
name: string;
|
|
35
35
|
description: string;
|
|
36
36
|
rosEquivalent?: keyof typeof import("@foxglove/rosmsg-msgs-common").ros1;
|
|
37
|
+
ros2Equivalent?: keyof typeof import("@foxglove/rosmsg-msgs-common").ros2jazzy;
|
|
38
|
+
protoEquivalent?: "google.protobuf.Timestamp" | "google.protobuf.Duration";
|
|
37
39
|
fields: ReadonlyArray<FoxgloveMessageField>;
|
|
38
40
|
};
|
|
39
41
|
export type FoxgloveSchema = FoxgloveMessageSchema | FoxgloveEnumSchema;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/internal/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,iBAAiB,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/internal/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,iBAAiB,GAAG,QAAQ,GAAG,SAAS,GAAG,OAAO,GAAG,QAAQ,GAAG,SAAS,GAAG,OAAO,CAAC;AAEhG,MAAM,MAAM,kBAAkB,GAAG;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,gBAAgB,EAAE,MAAM,CAAC;IACzB,gBAAgB,EAAE,MAAM,CAAC;IACzB,MAAM,EAAE,aAAa,CAAC;QACpB,KAAK,EAAE,MAAM,CAAC;QACd,IAAI,EAAE,MAAM,CAAC;QACb,WAAW,CAAC,EAAE,MAAM,CAAC;KACtB,CAAC,CAAC;CACJ,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EACA;QAAE,IAAI,EAAE,WAAW,CAAC;QAAC,IAAI,EAAE,iBAAiB,CAAA;KAAE,GAC9C;QAAE,IAAI,EAAE,QAAQ,CAAC;QAAC,MAAM,EAAE,qBAAqB,CAAA;KAAE,GACjD;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,kBAAkB,CAAA;KAAE,CAAC;IAC/C,KAAK,CAAC,EAAE,IAAI,GAAG,MAAM,CAAC;IACtB,QAAQ,CAAC,EAAE,IAAI,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC;CAC1C,CAAC;AAGF,MAAM,MAAM,qBAAqB,GAAG;IAClC,IAAI,EAAE,SAAS,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,cAAc,8BAA8B,EAAE,IAAI,CAAC;IACzE,cAAc,CAAC,EAAE,MAAM,cAAc,8BAA8B,EAAE,SAAS,CAAC;IAC/E,eAAe,CAAC,EAAE,2BAA2B,GAAG,0BAA0B,CAAC;IAC3E,MAAM,EAAE,aAAa,CAAC,oBAAoB,CAAC,CAAC;CAC7C,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,qBAAqB,GAAG,kBAAkB,CAAC"}
|
|
@@ -567,6 +567,23 @@ export declare const CubePrimitive: {
|
|
|
567
567
|
};
|
|
568
568
|
};
|
|
569
569
|
};
|
|
570
|
+
export declare const Duration: {
|
|
571
|
+
title: string;
|
|
572
|
+
description: string;
|
|
573
|
+
$comment: string;
|
|
574
|
+
type: string;
|
|
575
|
+
properties: {
|
|
576
|
+
sec: {
|
|
577
|
+
type: string;
|
|
578
|
+
description: string;
|
|
579
|
+
};
|
|
580
|
+
nsec: {
|
|
581
|
+
type: string;
|
|
582
|
+
minimum: number;
|
|
583
|
+
description: string;
|
|
584
|
+
};
|
|
585
|
+
};
|
|
586
|
+
};
|
|
570
587
|
export declare const FrameTransform: {
|
|
571
588
|
title: string;
|
|
572
589
|
description: string;
|
|
@@ -865,6 +882,7 @@ export declare const Grid: {
|
|
|
865
882
|
oneOf: {
|
|
866
883
|
title: string;
|
|
867
884
|
const: number;
|
|
885
|
+
description: string;
|
|
868
886
|
}[];
|
|
869
887
|
};
|
|
870
888
|
};
|
|
@@ -1006,15 +1024,11 @@ export declare const ImageAnnotations: {
|
|
|
1006
1024
|
type: {
|
|
1007
1025
|
title: string;
|
|
1008
1026
|
description: string;
|
|
1009
|
-
oneOf:
|
|
1010
|
-
title: string;
|
|
1011
|
-
const: number;
|
|
1012
|
-
description?: undefined;
|
|
1013
|
-
} | {
|
|
1027
|
+
oneOf: {
|
|
1014
1028
|
title: string;
|
|
1015
1029
|
const: number;
|
|
1016
1030
|
description: string;
|
|
1017
|
-
}
|
|
1031
|
+
}[];
|
|
1018
1032
|
};
|
|
1019
1033
|
points: {
|
|
1020
1034
|
type: string;
|
|
@@ -1537,6 +1551,7 @@ export declare const LocationFix: {
|
|
|
1537
1551
|
oneOf: {
|
|
1538
1552
|
title: string;
|
|
1539
1553
|
const: number;
|
|
1554
|
+
description: string;
|
|
1540
1555
|
}[];
|
|
1541
1556
|
};
|
|
1542
1557
|
};
|
|
@@ -1569,6 +1584,7 @@ export declare const Log: {
|
|
|
1569
1584
|
oneOf: {
|
|
1570
1585
|
title: string;
|
|
1571
1586
|
const: number;
|
|
1587
|
+
description: string;
|
|
1572
1588
|
}[];
|
|
1573
1589
|
};
|
|
1574
1590
|
message: {
|
|
@@ -3815,6 +3831,7 @@ export declare const PackedElementField: {
|
|
|
3815
3831
|
oneOf: {
|
|
3816
3832
|
title: string;
|
|
3817
3833
|
const: number;
|
|
3834
|
+
description: string;
|
|
3818
3835
|
}[];
|
|
3819
3836
|
};
|
|
3820
3837
|
};
|
|
@@ -3957,6 +3974,7 @@ export declare const PointCloud: {
|
|
|
3957
3974
|
oneOf: {
|
|
3958
3975
|
title: string;
|
|
3959
3976
|
const: number;
|
|
3977
|
+
description: string;
|
|
3960
3978
|
}[];
|
|
3961
3979
|
};
|
|
3962
3980
|
};
|
|
@@ -3995,15 +4013,11 @@ export declare const PointsAnnotation: {
|
|
|
3995
4013
|
type: {
|
|
3996
4014
|
title: string;
|
|
3997
4015
|
description: string;
|
|
3998
|
-
oneOf:
|
|
3999
|
-
title: string;
|
|
4000
|
-
const: number;
|
|
4001
|
-
description?: undefined;
|
|
4002
|
-
} | {
|
|
4016
|
+
oneOf: {
|
|
4003
4017
|
title: string;
|
|
4004
4018
|
const: number;
|
|
4005
4019
|
description: string;
|
|
4006
|
-
}
|
|
4020
|
+
}[];
|
|
4007
4021
|
};
|
|
4008
4022
|
points: {
|
|
4009
4023
|
type: string;
|
|
@@ -4718,6 +4732,24 @@ export declare const TextPrimitive: {
|
|
|
4718
4732
|
};
|
|
4719
4733
|
};
|
|
4720
4734
|
};
|
|
4735
|
+
export declare const Timestamp: {
|
|
4736
|
+
title: string;
|
|
4737
|
+
description: string;
|
|
4738
|
+
$comment: string;
|
|
4739
|
+
type: string;
|
|
4740
|
+
properties: {
|
|
4741
|
+
sec: {
|
|
4742
|
+
type: string;
|
|
4743
|
+
minimum: number;
|
|
4744
|
+
description: string;
|
|
4745
|
+
};
|
|
4746
|
+
nsec: {
|
|
4747
|
+
type: string;
|
|
4748
|
+
minimum: number;
|
|
4749
|
+
description: string;
|
|
4750
|
+
};
|
|
4751
|
+
};
|
|
4752
|
+
};
|
|
4721
4753
|
export declare const TriangleListPrimitive: {
|
|
4722
4754
|
title: string;
|
|
4723
4755
|
description: string;
|
|
@@ -4892,4 +4924,22 @@ export declare const Vector3: {
|
|
|
4892
4924
|
};
|
|
4893
4925
|
};
|
|
4894
4926
|
};
|
|
4927
|
+
export declare const Time: {
|
|
4928
|
+
title: string;
|
|
4929
|
+
description: string;
|
|
4930
|
+
$comment: string;
|
|
4931
|
+
type: string;
|
|
4932
|
+
properties: {
|
|
4933
|
+
sec: {
|
|
4934
|
+
type: string;
|
|
4935
|
+
minimum: number;
|
|
4936
|
+
description: string;
|
|
4937
|
+
};
|
|
4938
|
+
nsec: {
|
|
4939
|
+
type: string;
|
|
4940
|
+
minimum: number;
|
|
4941
|
+
description: string;
|
|
4942
|
+
};
|
|
4943
|
+
};
|
|
4944
|
+
};
|
|
4895
4945
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/jsonschema/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+F1B,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2E7B,CAAC;AAEF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4F5B,CAAC;AAEF,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;CAuBjB,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoC3B,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoC3B,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0G7B,CAAC;AAEF,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkGzB,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyE1B,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoF3B,CAAC;AAEF,eAAO,MAAM,OAAO;;;;;;;;;;;CAWnB,CAAC;AAEF,eAAO,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/jsonschema/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAm/BvB,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|